@charset "UTF-8";
/* CSS Document */

/* ----------------------------------------------- COMMON ---------- */

.pc {
    display: block !important;
}

.sp {
    display: none !important;
}

html {
    font-family: "M PLUS Rounded 1c";
    font-size: 10px;
    line-height: 1.8em;
    color: #4e4743;
}

body {
    margin: 0;
    padding: 0;
    background-image: url(../img/cmn_body_bg.png);
    min-width: 1000px;
}

* {
    outline: none;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

p {
    margin: 0;
}

img {
    border: 0;
}

ul {
    margin: 0;
    padding: 0;
    text-indent: 0;
    list-style: none;
}

li {
    margin: 0;
    padding: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

a *:hover {
    color: inherit;
    cursor: pointer;
}

a:hover {
    color: inherit;
    cursor: pointer;
}

a:hover img {
    opacity: 0.8;
    filter: alpha(opacity=80);
}

a:hover img.no_opacity {
    opacity: 1;
    filter: alpha(opacity=100);
}

h2 {
    font-weight: normal;
    letter-spacing: 0.2em;
}

dt,
dd {
    margin-inline-start: 0;
    text-indent: 0;
}

/* ----------------------------------------------- HDR ---------- */

header {
    border-top: 6px solid #ea545f;
    height: 70px;
    width: 100%;
    background: #fff;
    position: fixed;
    z-index: 999;
}

header:after {
    clear: both;
    display: block;
    font-size: 0;
    content: '';
}

header h1 {
    float: left;
    margin-left: 40px;
}

header nav {
    width: 720px;
    float: right;
}

header nav li {
    font-size: 1.4rem;
    float: left;
    padding: 5px 10px 0;
    margin-top: 6px;
    position: relative;
}

header nav li.bar {
    margin-top: -6px;
}

header nav div {
    width: 30px;
    margin-left: 20px;
}

/* ----------------------------------------------- FTR ---------- */
footer {
    background: #ee737c;
    width: 100%;
    color: #fff;
    font-size: 12px;
    padding-top: 40px;
}

footer .wrap {
    width: 1000px;
    height: 160px;
    margin: 0 auto;
    background: none;
    padding: 0;
}

footer .logo {
    width: 220px;
    float: left;
    margin-right: 30px;
    padding-top: 30px;
}

footer .txt {
    width: 280px;
    float: left;
}

footer .txt .address {
    margin-bottom: 6px;
}

footer .txt .tel {
    margin-bottom: 6px;
    font-size: 2.4rem;
    font-weight: bold;
}

footer ul {
    width: 440px;
    float: right;
}

footer ul img {
    width: 140px;
    height: auto;
}

footer ul li {
    float: left;
    margin-right: 10px;
}

/* footer ul li:nth-child(2) {
    margin-right: 100px;
} */

footer ul li:nth-child(3),
footer ul li:nth-child(6) {
    margin-right: 0;
}

footer .copyright {
    text-align: center;
    background: #fff;
    color: #999;
    clear: both;
    padding: 10px 0;
}

/* ドロワーメニュー */
.menu-trigger,
.menu-trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
    cursor: pointer;
}

.menu-trigger {
    position: fixed;
    top: 28px;
    right: 2%;
    width: 40px;
    height: 40px;
    z-index: 9999;
	text-align: center;
}

.menu-trigger span.menu {
    font-size: 0.8rem;
    margin-top: 30px;
    font-weight: bold;
}

.menu-trigger span.bar {
    position: absolute;
    background: #533931;
    width: 24px;
    height: 2px;
    left: 0;
    right: 0;
    margin: auto;
}

.menu-trigger span.bar:nth-of-type(1) {
    top: 12px;
}

.menu-trigger span.bar:nth-of-type(2) {
    top: 0;
    bottom: 0;
}

.menu-trigger span.bar:nth-of-type(3) {
    bottom: 12px;
}

.menu-trigger.active span.bar:nth-of-type(1) {
    -webkit-transform: translateY(7px) rotate(-45deg);
    transform: translateY(7px) rotate(-45deg);
}

.menu-trigger.active span.bar:nth-of-type(2) {
    opacity: 0;
}

.menu-trigger.active span.bar:nth-of-type(3) {
    -webkit-transform: translateY(-7px) rotate(45deg);
    transform: translateY(-7px) rotate(45deg);
}

.g-nav {
    display: none;
    position: fixed;
    top: 0;
    z-index: 9998;
    background: #fef5f5;
    width: 100%;
    height: 100%;
    margin-top: 70px;
    overflow-y: scroll;
}

.g-nav .list {
    margin-top: 20px;
    position: relative;
}

.g-nav .list li {
    width: 80%;
    margin: 0 auto;
    border-bottom: 1px dashed #ea545d;
    font-size: 1.4rem;
}

.g-nav .list li a span {
    font-size: 0.8rem;
}

.g-nav .list a {
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 15px 0;
}

.g-nav .list li:last-of-type {
    border-bottom: none;
}

.g-nav .btn {
    width: 100%;
    text-align: center;
}


.g-nav .btn a {
    text-align: center;
    display: inline-block;
    margin-right: 10px;
}

.g-nav .btn a:last-of-type {
    margin-right: 0;
}

/* ----------------------------------------------- SP ---------- */

@media screen and (max-width: 750px) {
    .pc {
        display: none !important;
    }

    .sp {
        display: block !important;
    }

    body {
        min-width: inherit;
    }

    .g-nav {
        margin-top: 60px;
        padding-bottom: 80px;
    }

    /* ----------------------------------------------- HDR ---------- */

    header {
        border-top: 6px solid #ea545f;
        height: 60px;
        width: 100%;
        background: #fff;
    }

    header:after {
        clear: both;
        display: block;
        font-size: 0;
        content: '';
    }

    header h1 {
        float: left;
        margin-left: 40px;
		margin-top: 18px;
    }



    header nav li {
        font-size: 1.2rem;
        float: left;
        padding: 5px 10px 0;
        margin-top: 6px;
    }

    header nav li.bar {
        margin-top: -6px;
    }

    header nav div {
        width: 30px;
        margin-left: 20px;
    }
	
	.menu-trigger {
		top: 25px;
	}

    #cv {
        position: fixed;
        top: 77px;
        width: 100%;
        height: 40px;
        z-index: 999;
        font-size: 1.5rem;
    }

    #cv:after {
        content: '';
        clear: both;
        display: block;
        font-size: 0;
    }

    #cv .mail {
        width: 50%;
        height: 40px;
        background: #ea545f;
        text-align: center;
        float: left;
        color: #fff;
        border-right: 2px solid #fff;
        padding-top: 12px;
    }

    #cv .mail img {
        height: 20px;
        width: auto;
        margin-right: 5px;
        vertical-align: -5px;
    }

    #cv .tel {
        width: 50%;
        height: 40px;
        background: #ea545f;
        text-align: center;
        float: right;
        color: #fff;
        padding-top: 12px;
    }

    #cv .tel img {
        height: 20px;
        width: auto;
        margin-right: 5px;
        vertical-align: -5px;
    }

    /* ----------------------------------------------- FTR ---------- */
    footer {
        background: #ee737c;
        width: 100%;
        color: #fff;
        font-size: 12px;
        padding-top: 40px;
    }

    footer a:hover {
        color: #fff;
    }

    footer .wrap {
        width: 96%;
        height: 240px;
        margin: 0 auto;
        background: none;
        padding: 0;
    }

    footer .logo {
        width: 220px;
        float: none;
        margin-right: 0;
        padding-top: 20px;
    }

    footer .txt {
        width: 100%;
        float: none;
    }

    footer .txt .address {
        margin-bottom: 6px;
    }

    footer .txt .tel {
        margin-bottom: 6px;
        font-size: 2.0rem;
        font-weight: bold;
    }

    footer .bnr {
        width: 100%;
        float: none;
    }

    footer .bnr img {
        width: 30%;
        height: auto;
        margin-right: 10px;
    }

    footer .bnr img:nth-child(3) {
        margin-right: 0;
    }

    footer .copyright {
        text-align: center;
        background: #fff;
        color: #999;
        clear: both;
        padding: 10px 0;
    }



}
