@charset "utf-8";
/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
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: -apple-system, 'Yu Gothic Medium', YuGothic, '游ゴシック Medium', "メイリオ", Meiryo, Osaka, "ヒラギノ角ゴ Pro W3", Hiragino Kaku Gothic Pro, " ＭＳ Ｐゴシック", MS PGothic, " sans-serif";
}
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
    display: block;
}
ol, ul {
    list-style: none;
    box-sizing: border-box;
}
blockquote, q {
    quotes: none;
}
:focus {
    outline: 0;
}
ins {
    text-decoration: none;
}
del {
    text-decoration: line-through;
}
img {
    vertical-align: top;
    max-width: 100%;
    height: auto;
}
a, a:link {
    color: #333;
    text-decoration: none;
}
a:visited {
    color: #333;
}
a:hover {
    color: #333;
}
a:active {
    color: #333;
}
/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {
    min-width: 1280px;
    color: #333;
    font-size: 1.6rem;
    line-height: 1.5;
    text-size-adjust: none;
    -webkit-text-size-adjust: none;
    background-color: #FFF;
}
.fixed {
    position: fixed;
    width: 100%;
    height: 100%;
}
#container {
    position: relative;
    text-align: left;
    overflow: hidden;
}
#main {
    margin-bottom: 281px;
    display: block;
}
a[href^="tel:"] {
    cursor: default;
    pointer-events: none;
}
@media all and (min-width: 897px) {
    .sp {
        display: none !important;
    }
}
@media all and (max-width: 896px) {
    body {
        min-width: inherit;
        font-size: 1.3rem;
    }
    body.fixed {
        width: 100%;
        position: fixed;
        left: 0;
        top: 0;
        overflow: auto;
    }
    a:hover, a:hover img {
        opacity: 1 !important;
    }
    .pc {
        display: none !important;
    }
    a[href^="tel:"] {
        cursor: pointer;
        pointer-events: auto;
    }
    #main {
        margin-bottom: 100px !important;
    }
}
/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/
#gHeader {
    margin-bottom: 38px;
    padding: 21px 60px 23px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 1px solid #dcdcdc;
}
#gNavi {
    margin-top: 6px;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
}
#gNavi li:not(:first-child) {
    margin-left: 41px;
}
#gNavi li a {
    display: block;
    font-size: 1.4rem;
    line-height: 23px;
}
#gNavi li a:hover {
    opacity: 0.7;
}
#gNavi .languageList {
    margin-left: 50px;
}
#gNavi .languageList li:not(:first-child) {
    margin-left: 4px;
}
#gNavi .languageList li a {
	padding: 4px 0 3px;
    width: 60px;
    color: #c30d23;
	line-height: 1.2;
    text-align: center;
    border-radius: 50px;
    background: #fff;
    opacity: 1;
}
#gNavi .languageList li.on a {
    color: #fff !important;
    background: #c30d23;
}
@media all and (min-width: 897px) {
    #gNavi .languageList li a:hover {
        color: #fff;
        background: #c30d23;
    }
    #gNavi {
        display: flex !important;
    }
	#gNavi .naviList {
		margin-top: 2px;
	}
}
@media all and (max-width: 896px) {
    #gHeader {
        margin-bottom: 30px;
        padding: 10px;
        transition: .3s;
    }
    #gHeader.on {
        background-color: #fff
    }
    #gHeader h1 {
        width: 180px;
    }
    #gHeader .menu {
        margin-right: 5px;
        width: 30px;
        height: 20px;
        position: relative;
        cursor: pointer;
        z-index: 100;
    }
    #gHeader .menu span {
        width: 100%;
        height: 2px;
        position: absolute;
        top: 0;
        left: 0;
        cursor: pointer;
        border: none;
        background: #c30d23;
        transition: all .3s ease;
    }
    #gHeader .menu span:nth-of-type(2) {
        top: 8px;
    }
    #gHeader .menu span:nth-of-type(3) {
        top: 16px;
    }
    #gHeader .menu.on span:first-child {
        transform: translateY(8px) translateX(0) rotate(45deg);
    }
    #gHeader .menu.on span:nth-of-type(2) {
        opacity: 0;
    }
    #gHeader .menu.on span:nth-of-type(3) {
        transform: translateY(-8px) translateX(0) rotate(-45deg);
    }
    #gNavi {
        margin-top: 0;
        padding-bottom: 50px;
        width: 100%;
        height: calc(100% - 59px);
        display: none;
        position: fixed;
        left: 0;
        top: 58px;
        text-align: center;
        overflow: auto;
        background: #fff;
        border-top: 1px solid #dcdcdc;
        z-index: 1000;
    }
    #gNavi .naviList {
        margin-bottom: 20px;
        display: block;
    }
    #gNavi li:not(:first-child) {
        margin-left: 0;
    }
    #gNavi li a {
        padding: 10px;
        display: block;
        color: #333 !important;
        font-size: 1.4rem;
        line-height: 23px;
        border-bottom: 1px solid #dcdcdc;
    }
    #gNavi .languageList {
        margin: 0 0 50px;
        justify-content: center;
    }
    #gNavi .languageList li {
        margin: 0 5px !important;
    }
    #gNavi .languageList li a {
        padding: 0;
    }
}
/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/
#gFooter {
    margin: 0 30px;
    padding-bottom: 5px;
    position: relative;
    border-top: 1px solid #dcdcdc;
}
#gFooter .fLogo {
    padding-right: 45px;
    position: absolute;
    left: 0;
    top: -28px;
    background: #fff;
}
#gFooter .pageTop {
    position: absolute;
    right: 48px;
    top: 2px;
}
#gFooter .pageTop a:hover {
    opacity: 0.7;
}
#gFooter .fBox {
    margin: 0 auto;
    padding: 48px 63px 325px;
    position: relative;
}
#gFooter .fBox::before {
    width: 340px;
    height: 207px;
    position: absolute;
    right: 6px;
    bottom: 22px;
    background: url(../img/common/bg01.png) no-repeat right bottom / cover;
    content: "";
    z-index: -1;
}
#gFooter .fText {
    margin-top: -4px;
    font-size: 1.4rem;
    line-height: 2;
}
#gFooter .fNavi ul {
    width: 200px;
}
#gFooter .fNavi ul:nth-child(2n) {
    width: 233px;
}
#gFooter .fNavi ul:nth-child(3n) {
    width: 281px;
}
#gFooter .fNavi li:not(:last-child) {
    margin-bottom: 55px;
}
#gFooter .fNavi li a {
    font-weight: 700;
}
#gFooter .fNavi li a:hover {
    opacity: 0.7;
}
#gFooter .fEnTitle {
    position: absolute;
    left: 55px;
    bottom: 40px;
    color: #c30d23;
    font-size: 6.4rem;
    font-weight: bold;
    line-height: 1.15625;
}
#gFooter .fPhoto {
    position: absolute;
    right: 75px;
    bottom: 37px;
}
#gFooter address {
    color: #b5b5b5;
    font-size: 1.4rem;
    font-style: normal;
    text-align: center;
}
@media all and (min-width: 897px) {
    #gFooter .fText a:hover {
        text-decoration: underline;
    }
}
@media all and (max-width: 896px) {
    #gFooter {
        margin: 0 10px;
        padding-bottom: 5px;
    }
    #gFooter .fLogo {
        padding-right: 10px;
        width: 180px;
        top: -18px;
    }
    #gFooter .pageTop {
        right: 0;
    }
    #gFooter .fBox {
        margin: 0 auto 22px;
        padding: 70px 0 0;
        max-width: 360px;
        display: block;
        position: static;
    }
    #gFooter .fBox::before {
        display: none;
    }
    #gFooter .fText {
        font-size: 1.3rem;
    }
    #gFooter .fNavi {
        display: none;
    }
    #gFooter .fEnTitle {
        margin: 20px 0 0;
        position: static;
        left: auto;
        bottom: auto;
        font-size: 4rem;
    }
    #gFooter .fPhoto {
        margin-left: auto;
        max-width: 250px;
        position: static;
        right: auto;
        bottom: auto;
    }
    #gFooter address {
        font-size: 1rem;
    }
}