@charset "UTF-8";
/*====================================================*/
/* common */
/*====================================================*/
/* Light */
@font-face {
    font-family: "Barlow Condensed";
    font-style: normal;
    font-weight: 300;
    src: url("../fonts/BarlowCondensed-Light") format("truetype"), url("../fonts/BarlowCondensed-Light.woff") format("woff");
}
/* Regular */
@font-face {
    font-family: "Barlow Condensed";
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/BarlowCondensed-Regular.ttf") format("truetype"), url("../fonts/BarlowCondensed-Regular.woff") format("woff");
}
/* Medium */
@font-face {
    font-family: "Barlow Condensed";
    font-style: normal;
    font-weight: 500;
    src: url("../fonts/BarlowCondensed-Medium.ttf") format("truetype"), url("../fonts/BarlowCondensed-Medium.woff") format("woff");
}
/* SemiBold */
@font-face {
    font-family: "Barlow Condensed";
    font-style: normal;
    font-weight: 600;
    src: url("../fonts/BarlowCondensed-SemiBold.ttf") format("truetype"), url("../fonts/BarlowCondensed-SemiBold.woff") format("woff");
}
/* Bold */
@font-face {
    font-family: "Barlow Condensed";
    font-style: normal;
    font-weight: 700;
    src: url("../fonts/BarlowCondensed-Bold.ttf") format("truetype"), url("../fonts/BarlowCondensed-Bold.woff") format("woff");
}


html{
    font-size: 62.5%;
}
body {
    color: #1F1F1F;
    font-family: 'Noto Sans JP', serif;
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.04em;
}
img {
    max-width: 100%;
}
a {
    display: block;
}
dt {
    font-weight: normal;
}
:root {
    --blue: #0168B7;
    --deepblue: #00478B;
    --rightblue: #EEF5FA;
    --clearblue: #DBE9F5;
    --filter-White: brightness(0) invert(1);
    --filter-blue: invert(25%) sepia(25%) saturate(7352%) hue-rotate(191deg) brightness(95%) contrast(99%);
    --font-Barlow: "Barlow Condensed", serif;
    --transition: all .3s ease;
}

@media print,screen and (min-width: 1025px){
    body {
        font-size: 1.6rem;
        letter-spacing: 0.08em;
    }
}

/*管理画面から設定できる「右寄せ」「中央揃え」などのCSS定義*/
.aligncenter {
    display: block;
    margin-right: auto;
    margin-left: auto;
}
.alignright {
    float: right;
    margin-bottom: 20px;
    margin-left: 20px;
}
.alignleft {
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
}
.wp-caption,
[class*='wp-image'] {
    display: block;
    max-width: 100% !important;
    margin-top: 1.5em;
    text-align: center;
}
.wp-caption-text {
    margin-top: 0;
}

/*====================================================*/
/* layout */
/*====================================================*/
.wrap_p {
    padding-left: calc( 50 * 100% / 750 );
    padding-right: calc( 50 * 100% / 750 );
}
.wrap_m {
    margin-left: calc( 50 * 100% / 750 );
    margin-right: calc( 50 * 100% / 750 );
}

@media print,screen and (min-width: 550px) and (max-width:1024px){
    .wrap_p {
        padding-left: calc( 100 * 100% / 1025 );
        padding-right: calc( 100 * 100% / 1025 );
    }
    .wrap_m {
        margin-left: calc( 100 * 100% / 1025 );
        margin-right: calc( 100 * 100% / 1025 );
    }
}
@media print,screen and (min-width: 1025px){
    .wrap_p {
        padding-left: calc( 135 * 100% / 1500 );
        padding-right: calc( 135 * 100% / 1500 );
    }
    .wrap_m {
        margin-left: calc( 135 * 100% / 1500 );
        margin-right: calc( 135 * 100% / 1500 );
    }
}
@media print,screen and (min-width: 1500px){
    .wrap_p {
        padding-left: calc( ( 1500px - 1230px ) / 2 );
        padding-right: calc( ( 1500px - 1230px ) / 2 );
    }
    .wrap_m {
        margin-left: calc( ( 100% - 1230px ) / 2 );
        margin-right: calc( ( 100% - 1230px ) / 2 );
    }
}


/*====================================================*/
/* 共通 */
/*====================================================*/
/* モバイルとPCの表示切替 */
@media print,screen and (max-width: 1024px){
    .pc_only {
        display: none;
    }
}
@media print,screen and (min-width: 1025px){
    .sp_only {
        display: none;
    }
}

/* タイトル */
.title {
    font-size: 1.4rem;
    /* letter-spacing: 0.08em; */
    text-align: center;
}
.title span {
    display: block;
    margin-bottom: 8px;
    color: var(--blue);
    font-family: var(--font-Barlow);
    font-size: 3.2rem;
    font-weight: 600;
    letter-spacing: normal;
    line-height: 1;
}
@media print,screen and (min-width: 1025px){
    .title {
        font-size: 1.6rem;
        text-align: left;
    }
    .title span {
        margin-bottom: 1rem;
        font-size: 5.6rem;
    }
}
/* 下層 - キャッチ タイトル */
.under_title {
    font-size: 2rem;
}
.under_title span {
    margin-bottom: 10px;
    font-size: 5rem;
    font-weight: 700;
}
@media print,screen and (min-width: 1025px){
    .under_title {
        font-size: 3.6rem;
    }
    .under_title span {
        margin-bottom: 2.5rem;
        font-size: 10rem;
    }
}


/* 丸 リンクボタン */
.link-btn {
    width: 3rem;
    height: 3rem;
    border-radius: 60vh;
    border: 0.5px solid var(--blue);
    text-align: center;
    position: relative;
    transition: var(--transition);
}
.link-btn img {
    width: 9px;
    filter: invert(43%) sepia(81%) saturate(7313%) hue-rotate(192deg) brightness(87%) contrast(99%);
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translateY(-52%) translateX(-50%);
}
.link-btn:hover,
.link-btn:active {
    opacity: .35;
}
@media print,screen and (min-width: 1025px){
    .link-btn {
        width: 4.3rem;
        height: 4.3rem;
        border-width: 1px;
    }
    .link-btn img {
        width: 12px;
    }
}


/* more リンクボタン */
.more-btn {
    color: var(--blue);
    font-family: var(--font-Barlow);
    font-weight: 500;
    letter-spacing: normal;
    transition: var(--transition);
}
.more-btn .circle {
    display: block;
    width: 1.5em;
    height: 1.5em;
    border-radius: 30vh;
    vertical-align: middle;
    position: relative;
}
.more-btn .circle img {
    display: block;
    width: 30%;
    filter: var(--filter-White);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
}
.more-btn:hover,
.more-btn:active {
    opacity: .35;
}
@media print,screen and (max-width: 1024px){
    .more-btn {
        padding: 1em 0;
        background-color: #fff;
        border-radius: 5px;
        border: 0.5px solid var(--blue);
        text-align: center;
        position: relative;
    }
    .more-btn .circle {
        background-color: var(--blue);
        position: absolute;
        top: 50%;
        right: 1em;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
    }
}
@media print,screen and (min-width: 1025px){
    .more-btn {
        display: inline-block;
        text-decoration: underline;
        text-underline-offset: 2px;
    }
    .more-btn .circle {
        display: inline-block;
        margin-left: 0.5em;
        border: 1px solid var(--blue);
    }
    .more-btn .circle img {
        width: 7px;
        filter: var(--filter-blue);
    }
}


/*====================================================*/
/* header */
/*====================================================*/
#header {
    width: 100%;
    background-color: #fff;
    position: relative;
    z-index: 100;
}
#header.is_fixed {
    position: fixed;
    top: 0;
    left: 0;
    animation-name: anime;
    animation-duration: 0.3s;
}
@keyframes anime {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
}
#header a {
    transition: var(--transition);
}
#header a:hover {
    opacity: 0.5;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: calc( 50 * 100% / 750 );
    margin-right: calc( 50 * 100% / 750 );
    padding: 1rem 0;
}
.header-logo {
    width: min(38%, 245px);
}

@media print,screen and (max-width: 1024px){
    .header-navi > ul {
        display: none;
    }
    .header-container {
        position: relative;
        z-index: 100;
    }
    .header-links {
        display: grid;
        grid-template-columns: 0.9fr 1fr;
        grid-column-gap: min(5.3vw, 40px);
        align-items: center;
    }
    .cart {
        filter: invert(25%) sepia(89%) saturate(1985%) hue-rotate(189deg) brightness(89%) contrast(99%);
    }
    .toggle {
        width: clamp(31px, 9.68vw, 62px);
        height: clamp(18px, 5.62vw, 36px);
        position: relative;
        cursor: pointer;
    }
    .toggle span {
        display: block;
        width: 100%;
        height: 1.5px;
        background-color: var(--blue);
        position: absolute;
        transition: opacity .3s,transform .3s;
    }
    .toggle span:first-of-type {
        top: 0;
    }
    .toggle span:nth-of-type(2) {
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
    }
    .toggle span:last-of-type {
        bottom: 0;
    }
    /* 閉じる */
    .toggle.active span:first-of-type {
        top: 50%;
        transform: translateY(-50%) rotate(30deg);
        -webkit-transform: translateY(-50%) rotate(30deg);
    }
    .toggle.active span:nth-of-type(2) {
        opacity: 0;
    }
    .toggle.active span:last-of-type {
        top: 50%;
        transform: translateY(-50%) rotate(-30deg);
        -webkit-transform: translateY(-50%) rotate(-30deg);
    }
    /* トグルナビゲーション */
    .toggle-container {
        width: 100%;
        height: 100vh;
        background-color: #fff;
        position: absolute;
        left: 0;
        transform: translateY(-120%);
        transition: var(--transition);
    }
    .toggle-container.active {
        transform: translateY(0);
    }
    .toggle-inner {
        padding-top: 3.75rem;
        padding-bottom: 6rem;
        padding-left: calc( 50 * 100% / 750 );
        padding-right: calc( 50 * 100% / 750 );
    }
    .toggle-navi {
        font-family: var(--font-Barlow);
        font-size: 2rem;
        font-weight: 500;
        letter-spacing: 0.03em;
    }
    .toggle-navi li {
        padding: 1.25rem 0;
        border-bottom: 0.5px solid #E2E2E2;
    }
    .toggle-navi li:first-of-type {
        border-top: 0.5px solid #E2E2E2;
    }
    .toggle-navi li a {
        padding: 1.25rem 0;
    }
    .toggle-insta {
        width: min(7.8vw, 50px);
        margin-top: 6rem;
    }
}
@media print,screen and (min-width: 1025px){
    .toggle,
    .toggle-container {
        display: none;
    }
    .header-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-left: calc( 50 * 100% / 1500 );
        margin-right: calc( 50 * 100% / 1500 );
        max-width: 1400px;
        padding: 2.5rem 0;
    }
    .header-logo {
        width: min(15%, 210px);
    }
    nav.header-navi {
        display: grid;
        grid-template-columns: 9fr 1fr;
        grid-column-gap: min(4vw, 60px);
        align-items: center;
        justify-content: end;
    }
    .header-navi > ul {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-family: var(--font-Barlow);
        font-size: 1.7rem;
        font-weight: 500;
        letter-spacing: 0.03em;
    }
    .header-navi > div {
        display: grid;
        grid-template-columns: repeat(2, 21px);
        grid-column-gap: 23px;
    }
    .header-navi > div a {
        filter: invert(10%) sepia(1%) saturate(1465%) hue-rotate(101deg) brightness(94%) contrast(92%);
    }
}
@media print,screen and (min-width: 1500px){
    .header-container {
        margin: auto;
    }
}


/*====================================================*/
/* footer */
/*====================================================*/
#footer a {
    transition: var(--transition);
}
#footer a:hover {
    opacity: 0.5;
}
.footer-wrap {
    padding-top: 5.5rem;
    padding-bottom: 5.25rem;
    padding-left : calc( 50 * 100% / 750 );
    padding-right : calc( 50 * 100% / 750 );
}
.footer-logo {
    width: min(43%, 280px);
}
.footer-info {
    font-size: 1.3rem;
    line-height: 1.8;
    /* letter-spacing: 0.08em; */
}
.tel {
    display: flex;
    align-items: center;
}
.tel p:last-of-type {
    display: inline-block;
    margin-left: 0.5em;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.group {
    display: flex;
    align-items: center;
    margin-top: 4rem;
    line-height: 1;
}
.group a {
    text-decoration: underline;
    text-underline-offset: 2px;
}
.group a img {
    display: inline-block;
    width: 0.9em;
    margin-left: 1em;
    vertical-align: bottom;
}
.footer-links > div a {
    width: min(6.6vw, 50px);
}
.footer-links small {
    color: #9B9B9B;
    font-family: var(--font-Barlow);
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.03em;
}

@media print,screen and (max-width: 1024px){
    .footer-navi {
        display: none;
    }
    .footer-info {
        margin: 4rem 0 6rem;
    }
    .footer-links > div {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
    }
}
@media print,screen and (min-width: 1025px){
    .footer-wrap {
        padding-top: 9.5rem;
        padding-bottom: 10.5rem;
        padding-left : calc( 125 * 100% / 1500 );
        padding-right : calc( 125 * 100% / 1500 );
    }
    .footer-logo {
        width: min(24%, 240px);
    }
    .footer-guid {
        display: grid;
        grid-template-columns: 1fr 2fr;
        justify-content: space-between;
        margin-top: 4.7rem;
    }
    .footer-info {
        font-size: 1.5rem;
        line-height: 2;
    }
    .group {
        margin-top: 4.5rem;
    }
    .footer-links {
        display: grid;
        grid-template-rows: 1em 1fr;
        grid-row-gap: 3.8rem;
        padding-right: 1.5rem;
    }
    .footer-navi {
        display: flex;
        align-items: center;
        justify-content: end;
        font-family: var(--font-Barlow);
        font-size: 1.7rem;
        font-weight: 500;
        letter-spacing: 0.03em;
    }
    .footer-navi li:not(:last-of-type) {
        margin-right: min(3.6vw, 55px);
    }
    .footer-links > div {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-end;
    }
    .footer-links > div a {
        width: 2rem;
        margin-left: auto;
    }
    .footer-links small {
        font-size: 1.3rem;
    }
}
@media print,screen and (min-width: 1250px){
    .footer-wrap {
        max-width: 1500px;
        margin: auto;
    }
}


/*====================================================*/
/* cta お問い合わせ */
/*====================================================*/
.cta-contact {
    background: var(--clearblue);
}
.cta-wrap {
    margin-left: calc( 50 * 100% / 750 );
    margin-right: calc( 50 * 100% / 750 );
    padding: 5.5rem 0;
}
.cta-text,
.cta-text .title {
    margin-bottom: 3.25rem;
}
.cta-text p {
    line-height: 1.7;
}
.cta-btns a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 9.5rem;
    color: #fff;
    text-align: center;
    transition: var(--transition);
}
.cta-btns a:hover,
.cta-btns a:active {
    opacity: 0.6;
}
.tel-btn {
    margin-bottom: 8px;
    background: var(--blue);
    font-size: 1rem;
    /* letter-spacing: 0.08em; */
}
.tel-btn .number {
    margin-bottom: 1rem;
    font-size: 2.3rem;
    letter-spacing: 0.02em;
}
.tel-btn .number span {
    font-size: 1.1rem;
}
.mail-btn {
    background: #00478B;
}
.mail-btn img {
    display: inline-block;
    width: 3rem;
    margin-right: 1em;
    padding-bottom: 3px;
    vertical-align: middle;
}
@media print,screen and (min-width: 1025px){
    .cta-wrap {
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }
    .cta-text {
        margin: 0;
        padding-left: calc( 135 * 100% / 1500 );
    }
    .cta-text .title {
        margin-bottom: 4.5rem;
    }
    .cta-btns a {
        height: 19rem;
    }
    .tel-btn {
        margin-bottom: 0;
        font-size: 1.3rem;
    }
    .tel-btn .number {
        margin-bottom: 1.2rem;
        font-size: 3.8rem;
    }
    .tel-btn .number span {
        font-size: 1.8rem;
    }
    .mail-btn {
        font-size: 2rem;
    }
    .mail-btn img {
        width: 4rem;
        margin-right: 1em;
        padding-bottom: 3px;
    }
}
@media print,screen and (min-width: 1500px){
    .cta-contact {
        max-width: 1500px;
        margin: auto;
    }
}


/*====================================================*/
/* パンくずリスト */
/*====================================================*/
.bread {
    display: none;
}
@media print,screen and (min-width: 1025px){
    .bread {
        display: block;
        margin-bottom: 2rem;
        margin-left : calc( 135 * 100% / 1500 );
        margin-right : calc( 135 * 100% / 1500 );
    }
    .bread ol {
        display: flex;
        align-items: center;
        justify-content: end;
        font-family: var(--font-Barlow);
        font-size: 1.5rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.03em;
    }
    .bread ol li:first-of-type a {
        text-decoration: underline;
        text-underline-offset: 2px;
    }
    .bread ol li:last-of-type {
        color: #C9C9C9;
    }
    .bread ol li:not(:first-of-type)::before {
        content: "-";
        display: inline-block;
        margin: 0 0.7em;
        color: currentColor;
        font-size: 1rem;
    }
    .bread ol li a {
        display: inline-block;
    }
}


/*====================================================*/
/* 下層 メインビジュアル */
/*====================================================*/
.under_mv-title {
    margin-bottom: 4.5rem;
    margin-left: calc( 50 * 100% / 750 );
    margin-right: calc( 50 * 100% / 750 );
    padding-top: 5rem;
    padding-bottom: 1em;
    font-size: 2.4rem;
    position: relative;
}
.under_mv-title .en-bkg {
    font-family: var(--font-Barlow);
    color: var(--rightblue);
    font-size: 5rem;
    letter-spacing: normal;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 0.8;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -5;
}
.under_mv picture {
    display: block;
    width: 100%;
    aspect-ratio: 50 / 33;
    overflow: hidden;
}
.under_mv picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media print,screen and (min-width: 1025px){
    .under_mv-title {
        margin-bottom: 0;
        margin-left: calc( 135 * 100% / 1500 );
        margin-right: calc( 135 * 100% / 1500 );
        padding-top: 11.5rem;
        padding-bottom: 9rem;
        font-size: 5.4rem;
    }
    .under_mv-title .en-bkg {
        font-size: 12rem;
        bottom: 45%;
        transform: translateY(45%);
        -webkit-transform: translateY(45%);
    }
    .under_mv picture {
        aspect-ratio: 100 / 33;
    }
}
@media print,screen and (min-width: 1500px){
    .under_mv {
        max-width: 1500px;
        margin: auto;
    }
}