@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Noto+Serif+JP:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
/*------------------------------------------------------------
	default style
------------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	outline: 0;
	font-size: 1em;
}
html {
	font-size: 62.5%;
}
body, table, input, textarea, select, option {
	font-family: 'Noto Sans JP', sans-serif;
}
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
:focus {
	outline: 0;
}
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
img {
	vertical-align: top;
	max-width: 100%;
}
a,
a:link {
	color: #000;
	text-decoration: none;
    cursor: pointer;
}
a:visited {
	color: #303030;
}
a:hover {
	color: #303030;
}
a:active {
	color: #303030;
}
/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {
	min-width: 1200px;
	color: #303030;
	font-size: 1.4rem;
	line-height: 1.5;
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
	background-color: #FFF;
}
body.fixed {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
}
#container {
	text-align: left;
}
a[href^="tel:"] {
	cursor: default;
	pointer-events: none;
}
@media all and (min-width: 768px) {
	.sp {
		display: none !important;
	}
}
@media all and (max-width: 767px) {
	body {
		min-width: inherit;
	}
	a:hover,
	a:hover img {
		opacity: 1 !important;
	}
	.pc {
		display: none !important;
	}
	a[href^="tel:"] {
		cursor: pointer;
		pointer-events: auto;
	}
}
/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/
#gHeader {
    width: 100%;
    height: 88px;
    padding: 12px 0 4px;
	background: #fff;
    box-sizing: border-box;
    transition: .3s;
    z-index: 9;
}
#gHeader.fix {
    position: fixed;
    left: 0;
    top: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
#gHeader .hBox {
    max-width: 1200px;
    margin: 0 auto;
    padding-right: 145px;
    position: relative;
    box-sizing: border-box;
}
#gHeader h1 {
    float: left;
    width: 267px;
}
#gHeader .hLink {
    position: absolute;
    right: 0;
    top: 16px;
    width: 136px;
}
#gHeader .hLink a {
    padding: 5px 0 7px 16px;
    display: block;
    text-align: center;
    font-size: 1.3rem;
    color: #fff;
    background: url("../../img/common/icon01.png") no-repeat left 16px center #273866;
    background-size: 16px auto;
    border-radius: 4px;
}
#gHeader .hLink a:hover {
    opacity: 0.7;
}

@media all and (min-width: 768px) {
	.menuBox {
		display: none !important;
	}
}

@media all and (max-width: 767px) {
	#gHeader {
        position: fixed;
        left: 0;
        top: 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        height: 52px;
        padding: 8px 16px 4px;
    }
    #gHeader .hBox {
        max-width: inherit;
        padding-right: 0;
    }
    #gHeader h1 {
        float: none;
        width: 150px;
    }
    #gHeader .hLink {
        display: none;
    }
    .menu-trigger, .menu-trigger span {
        display: inline-block;
        transition: all .4s;
        box-sizing: border-box;
        cursor: pointer;
    }
    .menu-trigger {
        position: absolute;
        width: 52px;
        height: 52px;
        background-color: #bfbec5;
        right: 0;
        top: 0;
        z-index: 100;
    }
    .menu-trigger span {
        margin-left: -12px;
        position: absolute;
        left: 50%;
        width: 24px;
        height: 2px;
        background-color: #fff;
    }
    .menu-trigger span:nth-of-type(1) {
        top: 16px;
    }
    .menu-trigger span:nth-of-type(2) {
        top: 25px;
    }
    .menu-trigger span:nth-of-type(3) {
        top: 34px;
    }
    .menuBox {
        display: none;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow-y: auto;
        background-color: #bfbec7;
        z-index: 99;
    }
    .menuBox .menuInner {
        position: relative;
        padding: 80px 10px;
    }
    .menuBox .close {
        position: absolute;
        width: 52px;
        height: 52px;
        background-color: #bfbec7;
        right: 0;
        top: 1px;
        z-index: 100;
        cursor: pointer;
    }
    .menuBox .close span {
        display: inline-block;
        margin-left: -12px;
        position: absolute;
        left: 50%;
        width: 24px;
        height: 2px;
        background-color: #fff;
    }
    .menuBox .close span:nth-of-type(1) {
        top: 16px;
        -webkit-transform: translateY(8px) rotate(-45deg);
        transform: translateY(8px) rotate(-45deg);
    }
    .menuBox .close span:nth-of-type(2) {
        top: 34px;
        -webkit-transform: translateY(-10px) rotate(45deg);
        transform: translateY(-10px) rotate(45deg);
    }
    .menuBox .menuLogo {
        width: 240px;
        margin: 0 auto 46px;
    }
    .menuBox li a {
        padding: 10px 0;
        display: block;
        text-align: center;
        color: #fff;
        font-size: 1.4rem;
    }
    .menuBox li:not(:last-child) {
        margin-bottom: 11px;
    }
    .menuBox .menuLink {
        width: 240px;
        margin: 46px auto 0;
    }
    .menuBox .menuLink a {
        padding: 7px 0 9px 22px;
        display: block;
        text-align: center;
        font-size: 1.6rem;
        color: #203058;
        background: url("../../img/common/icon04.png") no-repeat left 58px center #fff;
        background-size: 16px auto;
        border-radius: 4px;
    }
    
}
/*------------------------------------------------------------
	gNavi
------------------------------------------------------------*/
#gNavi {
    margin-top: 20px;
    float: right;
    text-align: right;
}
#gNavi li {
    display: inline-block;
    color: #E8E8E8;
    font-size: 1.3rem;
}
#gNavi li a {
    padding: 0 15px 0 12px;
}
#gNavi li a:hover {
    color: #203058;
}

@media all and (max-width: 767px) {
    #gNavi {
        display: none;
    }
}

/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/
#gFooter {
    padding: 80px 0 26px;
    position: relative;
    background-color: #bfbec5;
}
#gFooter .pageTop {
    position: absolute;
    top: -44px;
    right: 15px;
    width: 96px;
}
#gFooter .pageTop a:hover img {
    opacity: 0.7;
}
#gFooter .fBox {
    width: 1200px;
    margin: 0 auto 27px;
    padding-bottom: 46px;
    border-bottom: 1px solid #3E5988;
}
#gFooter .fBox .fLogo {
    float: left;
    width: 267px;
}
#gFooter .fBox .fInner {
    float: right;
    width: 740px;
}
#gFooter .fNavi {
    margin: -5px -14px 22px 0;
    text-align: right;
}
#gFooter .fNavi li {
    display: inline-block;
    color: #fff;
    font-size: 1.3rem;
}
#gFooter .fNavi li a {
    padding: 0 14px 0 14px;
    color: #fff;
}
#gFooter .fNavi li a:hover {
    opacity: 0.7;
}
#gFooter .fLink {
    width: 136px;
    float: right;
}
#gFooter .fLink a {
    padding: 5px 0 7px 16px;
    display: block;
    text-align: center;
    font-size: 1.3rem;
    color: #203058;
    background: url("../../img/common/icon04.png") no-repeat left 16px center #fff;
    background-size: 16px auto;
    border-radius: 4px;
}
#gFooter .fLink a:hover {
    opacity: 0.7;
}
#gFooter .fUl {
    margin: 4px 10px 0 0;
    text-align: right;
    float: right;
}
#gFooter .fUl li {
    display: inline-block;
    color: #fff;
    font-size: 1.3rem;
}
#gFooter .fUl li a {
    padding: 0 14px 0 14px;
    color: #fff;
}
#gFooter .fUl li a:hover {
    opacity: 0.7;
}
#gFooter .copyright {
    text-align: center;
    font-size: 1.2rem;
    color: #ffffff;
}

@media all and (max-width: 767px) {
    #gFooter {
        padding: 40px 28px 53px;
    }
    #gFooter .pageTop {
        top: -32px;
        right: 0;
        width: 60px;
    }
    #gFooter .fBox {
        width: auto;
        margin: 0 auto 46px;
        padding-bottom: 59px;
    }
    #gFooter .fBox .fLogo {
        float: none;
        width: 240px;
        margin: 0 auto 58px;
    }
    #gFooter .fBox .fInner {
        float: none;
        width: auto;
    }
    #gFooter .fNavi {
        margin: -20px 0 38px;
        text-align: center;
    }
    #gFooter .fNavi li {
        margin-top: 20px;
    }
    #gFooter .fLink {
        width: 240px;
        margin: 0 auto 33px;
        float: none;
    }
    #gFooter .fLink a {
        padding: 7px 0 9px 22px;
        font-size: 1.6rem;
        background-position: left 58px center;
    }
    #gFooter .fUl {
        margin: 0;
        text-align: center;
        float: none;
    }
    #gFooter .fUl li {
        font-size: 1.2rem;
    }
    #gFooter .fUl li a {
        padding: 0 14px 0 14px;
    }

}