/******************** 変数 ********************/
:root {
    /* small text */
    --fs-xs: 0.75rem; /* PC:12px / SP:10.5px ≒10px */

    /* body */
    --fs-sm: 0.875rem; /* PC:14px / SP:12.25px */
    --fs-md: 1rem; /* PC:16px / SP:14px */

    /* large */
    --fs-lg: 1.125rem; /* PC:18px / SP:15.75px */
    --fs-xl: 1.25rem; /* PC:20px / SP:17.5px */

    /* title */
    --fs-2xl: 1.6875rem; /* PC:27px / SP:23.6px */
    --fs-3xl: 2.1875rem; /* PC:35px / SP:30.6px ≒27px */
    --fs-4xl: 3rem; /* PC:48px / SP:42px *

    /* space scale */
    --space-2xs: 0.5rem; /* PC:8px   / SP:7px */
    --space-xs: 0.75rem; /* PC:12px  / SP:10.5px */
    --space-sm: 1rem; /* PC:16px  / SP:14px */
    --space-md: 1.5rem; /* PC:24px  / SP:21px */
    --space-lg: 2rem; /* PC:32px  / SP:28px */
    --space-xl: 3rem; /* PC:48px  / SP:42px */
    --space-2xl: 4rem; /* PC:64px  / SP:56px */
    --space-3xl: 6rem; /* PC:96px  / SP:84px ≒100/27 */
    
    /* font family */
    --en_font: "itc-avant-garde-gothic-pro",
        sans-serif;

    /* color */
    --blue: #224989;
    --gray: #bdbebe;
    --bg-gray: #f5f5f5;
}

/******************** base ********************/
html {
    font-size: 14px;
    scroll-padding-top: 50px;
    scroll-behavior: smooth;
}
body {
    color: #333;
    font-size: var(--fs-md);
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    letter-spacing: 0.13em;
    line-height: 1.7;
}
img {
    width: auto;
    height: auto;
    max-width: 100%;
}
a {
    text-decoration: none;
    transition: opacity 0.3s;
}
a:hover {
    opacity: 0.7;
    transform: translate3d(0, 0, 0);
}
p {
    line-height: 1.8;
}
section,
.section-inner {
    width: 90%;
    margin: var(--space-2xl) auto;
}
.fullwidth {
    width: 100%;
    max-width: 100%;
}
.fullwidth_img img{
    width: 100%;
}
.section--flush {
    margin: 0 auto;
}
.en_font {
    font-family: var(--en_font);
    font-weight: 700;
    font-style: normal;
}
.flex {
    display: flex;
}
.grid {
    display: grid;
}
.text-area {
    flex: 1 1 50%;
}
.img_area {
    flex: none;
}
/* sp css */
.sp-br {
    display: block;
}

/*********************** header ***********************/
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    line-height: 1;
    grid-template-columns: 1fr auto;
}
header.is-scroll {
    background-color: white;
}
.site-logo {
    width: 40%;
    padding: var(--space-sm) 0 0.5rem var(--space-md);
}
.site-logo img {
    width: 100%;
    height: auto;
    zoom: normal;
}

/* header social link */
.social {
    gap: var(--space-2xs);
    justify-content: flex-end;
}
.social li {
    width: 33px;
}

/* header main nav */
.drawer {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: var(--space-sm);
    font-size: var(--fs-md);
    margin-left: auto;
    padding: var(--space-sm) 0;
}
.main-nav {
    gap: var(--space-md);
}
.main-nav li a {
    color: #333;
    font-weight: bold;
    font-size: var(--fs-sm);
}
nav input {
    display: none;
}

/* header contact links */
.contact-link {
    position: fixed;
    bottom: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--blue);
    margin-left: auto;
    z-index: 999;
}
.contact-link li {
    font-size: var(--fs-xs);
}
.contact-link a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: var(--space-xs) 5px;
    color: #fff;
}
.contact-link li+li {
    border-left: 1px solid #fff;
}
.contact-link li .icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
}
.contact-link li .icon img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    overflow: hidden;
}

/* accordion */
.has-sub > a {
    position: relative;
}
.has-sub > a::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-left: 6px;
    margin-bottom: 3px;
    transition: transform 0.2s;
    position: absolute;
    right: 10px;
}

.has-sub.is-open>a::after {
    transform: rotate(-135deg);
    position: absolute;
    right: 10px;
    top: 5px;
}

/************ swiper *********/
.banner-swiper {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.banner-swiper.is-ready {
  opacity: 1;
}

/* Swiper全体の高さを制御 */
.banner-swiper {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    background: var(--blue);
    padding: var(--space-xl) 1%;
    box-sizing: border-box;
}

/* スライドも高さ100% */
.banner-swiper .swiper-slide {
    height: 100%;
    position: relative;
    overflow: visible;
}

/* 画像を親にフィット */
.banner-swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ズーム演出 */
.banner-swiper .swiper-slide img {
    transform: scale(1);
    transition: transform 6s ease;
}

.banner-swiper .swiper-slide-active img {
    transform: scale(1.15);
}

.banner-swiper .swiper-slide.hover img {
    transform: scale(1.2);
    box-shadow: 0 0 24px rgba(0, 0, 0, .4);
}


.banner-swiper .swiper-slide img {
    transition: transform 0.6s ease;
}

.banner-swiper .swiper-slide {
    z-index: 1;
}

.banner-swiper .swiper-slide:hover,
.banner-swiper .swiper-slide.hover {
    z-index: 10;
}

.swiper-slide a:hover {
    opacity: 1;
}

/***************** footer ***********************/
footer {
    text-align: center;
    background: var(--blue);
    color: #fff;
    padding: var(--space-md) 0 120px;
}

.footer-logo {
    width: 30%;
    margin: 0 auto;
}

.footer-logo img {
    width: 100%;
    height: auto;
}

.company-name {
    margin: var(--space-sm) 0;
    font-size: var(--fs-xl);
}

.footer-info address {
    font-size: var(--fs-xs);
}

.footer-info .tel {
    display: block;
    font-size: var(--fs-2xl);
    font-weight: bold;
    margin: 0 0 var(--space-sm);
}

/******************** top ********************/
.section-title {
    margin-bottom: var(--space-md);
}
.section-title .title-en {
    display: block;
    font-family: var(--en_font);
    font-weight: 700;
    font-style: normal;
    color: var(--blue);
    font-size: var(--fs-3xl);
    letter-spacing: 0.2em;
    line-height: 1;
}
.section-title .title-jp {
    font-weight: bold;
}
.section-title--md {
    font-size: var(--fs-2xl);
    font-weight: bold;
    margin-bottom: var(--space-md);
}
.heading-center {
    text-align: center;
}

/* mv_area */
.mv {
    /* height: 100vh; */
    position: relative;
    z-index: 0;
}
.mv img {
    display: block;
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    object-fit: contain;
}

/* banner area */
/* .banner-list {
    display: block;
    background: var(--blue);
    padding: var(--space-xl) 1%;
    overflow: hidden;
}
.banner-list img {
    display: block;
    width: 100%;
    height: auto;
}
.banner-list .slick-slide {
    margin: 0 6px;
}
.banner-list .slick-list {
    margin: 0 -6px;
} */

/* news */
.news-item {
    border-bottom: 1px solid var(--gray);
    padding: var(--space-2xs) 0;
}
.news-item:first-child {
    border-top: 1px solid var(--gray);
}
.news-item a {
    color: #333;
}
.news-category {
    background: var(--gray);
    border-radius: 20px;
    padding: 3px 5px;
    font-size: var(--fs-xs);
}
.more-btn {
    display: block;
    width: fit-content;
    background: var(--blue);
    padding: var(--space-2xs) var(--space-lg);
    color: #fff;
    border-radius: 30px;
    margin: var(--space-sm) auto;
    font-family: var(--en_font);
    font-size: var(--fs-lg);
}

/* concept */
.concept .text-area {
    margin-bottom: var(--space-sm);
}

/* products */
.products ul {
    gap: 40px;
}
.products li {
    text-align: center;
    font-size: var(--fs-lg);
}
.products li + li {
    border-top: 1px solid #333;
    padding-top: var(--space-md);
    margin-top: var(--space-md);
}

/* youtube */
.youtube .grid {
    grid-template-rows: 1fr;
    gap: 20px;
}
.youtube iframe {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
}

/************************************** page ****************************/
.page-title {
    margin-bottom: var(--space-md);
}
.regular-page,.page-fv {
    padding-top: 5rem;
}
.regular-page .page-title {
    margin-bottom: var(--space-2xl);
}
/* english title */
.page-title .title-en {
    display: block;
    font-family: var(--en_font);
    font-weight: 700;
    font-style: normal;
    color: var(--blue);
    letter-spacing: 0.2em;
}
.page-title small.title-en {
    font-size: var(--fs-lg);
    line-height: 1;
    margin-bottom: var(--space-xs);
}
.page-title span.title-en {
    font-size: var(--fs-3xl);
    line-height: 1;
    margin-bottom: var(--space-2xs);
}
/* jp title */
.page-title span.title-jp,
.section-title--page {
    font-weight: bold;
    font-size: var(--fs-3xl);
    color: var(--blue);
    line-height: 1.5;
}
.page-title small.title-jp {
    font-weight: bold;
    font-size: var(--fs-lg);
    line-height: 1;
}

/* fv area */
.page-fv {
    margin-bottom: var(--space-2xl);
}
.fv-text {
    flex: 1 0 32%;
    margin-bottom: var(--space-md);
}
.fv-images {
    flex: none;
    text-align: right;
    flex: 1 1 auto;
}
.image-space {
    margin-top: var(--space-2xl);
}
.section-bg {
    background: var(--bg-gray);
    padding: var(--space-lg);
    box-sizing: border-box;
    border-radius: 20px;
}
.heading-text {
    text-align: center;
    color: var(--blue);
    font-size: var(--fs-xl);
    font-weight: bold;
}

/* block-section */
.block-section {
    position: relative;
    padding: var(--space-xl) var(--space-lg);
}
.block-section.no-space {
    padding: var(--space-xl) 0;
}
.block-title {
    font-weight: bold;
    font-size: var(--fs-4xl);
    color: var(--blue);
    font-family: var(--en_font);
    letter-spacing: 0.2em;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%,-50%);
}
.block-section h3 {
    font-size: var(--fs-2xl);
    color: var(--blue);
    font-weight: bold;
    margin-bottom: var(--space-xs);
}
.block-section h3 small {
    display: block;
    font-size: var(--fs-lg);
    margin-bottom: var(--space-2xs);
}
.block-section figure img + img {
    margin-top: var(--space-lg);
}
.block-section.pc-flex figure.img-area--l {
    margin-top: var(--space-lg);
}
.block-text {
    margin-bottom: var(--space-md);
}

.center-image--sp {
    margin-top: var(--space-lg);
}
.center-image {
    margin-top: var(--space-lg);
    width: 80%;
    margin: var(--space-lg) auto 0; 
}

/* page-fv section--flush */
.section--flush .fv-text {
    margin: var(--space-2xl) 0 var(--space-md);
}

/* pre footer area */
.pre-footer h2 {
    font-size: var(--fs-3xl);
    color: var(--blue);
    font-weight: bold;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: var(--space-xl);
}
.pre-footer h2::before,
.pre-footer h2::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--blue);
}
.pre-footer .link-list li {
    margin-bottom: var(--space-md);
}
.pre-footer .link-list li a,
.sub-nav li a {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    color: var(--blue);
    font-weight: bold;
    position: relative;
}
.pre-footer .link-list li a::after,
.sub-nav li a::after {
    content: " ";
    position: absolute;
    right: 0;
    display: block;
    width: 14px;
    height: 21px;
    background: url(../img/link/arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
}
.pre-footer .link-list li img {
    max-width: 122px;
}
/* sub-nav */
.sub-nav li a::after {
    width: 0.5rem;
    height: 1rem;
}
.sub-nav li img {
    max-width: 4rem;
}
/* list-content (message , hearring) */
.list-content {
    counter-reset: num;
}
.list-content li {
    position: relative;
    padding-left: 50px;
    counter-increment: num;
    min-height: 40px;
    font-weight: bold;
}
.list-content li {
    padding-bottom: var(--space-sm);
}
.list-content li:last-child {
    padding-bottom: 0;
}
.list-content li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
}

/* message */
.message-anshin {
    gap: 20px;
}
.message-anshin .text-area {
    flex: 2;
}
.message-anshin .img-area {
    margin-top: var(--space-xl);
    flex: 1;
}
.message-anshin .img-area img {
    max-width: 90%;
}
.message-anshin li {
    display: flex;
    align-items: center;
}
.message-anshin li:nth-child(1)::before {
    background-image: url("../img/message/num01.png");
}
.message-anshin li:nth-child(2)::before {
    background-image: url("../img/message/num02.png");
}
.message-anshin li:nth-child(3)::before {
    background-image: url("../img/message/num03.png");
}
.message-anshin li:nth-child(4)::before {
    background-image: url("../img/message/num04.png");
}
.message-anshin li:nth-child(5)::before {
    background-image: url("../img/message/num05.png");
}
.message-anshin li:nth-child(6)::before {
    background-image: url("../img/message/num06.png");
}
.message-anshin li:nth-child(7)::before {
    background-image: url("../img/message/num07.png");
}

/* process */
.process li:nth-child(1)::before {
    background-image: url("../img/process/step01.png");
}

.process li:nth-child(2)::before {
    background-image: url("../img/process/step02.png");
}

.process li:nth-child(3)::before {
    background-image: url("../img/process/step03.png");
}

.process li:nth-child(4)::before {
    background-image: url("../img/process/step04.png");
}

.process li:nth-child(5)::before {
    background-image: url("../img/process/step05.png");
}

.process li:nth-child(6)::before {
    background-image: url("../img/process/step06.png");
}

.process li:nth-child(7)::before {
    background-image: url("../img/process/step07.png");
}

.process li:nth-child(8)::before {
    background-image: url("../img/process/step08.png");
}

.process {
    width: fit-content;
    margin: 0 auto;
}
.process li h4,.reservation-merit li h4 {
    font-size: var(--fs-lg);
    color: var(--blue);
}
.process li::after {
    content: "";
    position: absolute;
    top: 40px;
    left: 20px;
    width: 1px;
    height: calc(100% - 40px);
    background: var(--blue);
}
.process li:last-child::after {
    display: none;
}

.price h4 {
    height: 205px;
    text-align: center;
    margin: var(--space-sm) 0;
}
.price h4 img {
    width: auto;
    height: auto;
    max-height: 100%;
}

/* support */
.support-table {
    width: 90%;
    margin: 0 auto var(--space-2xl);
}
.support-list li + li {
    margin-top: var(--space-md);
    
}

/* reservation */
.reservation-merit li:nth-child(1)::before {
    background-image: url("../img/reservation/num01.png");
}

.reservation-merit li:nth-child(2)::before {
    background-image: url("../img/reservation/num02.png");
}

.reservation-merit li:nth-child(3)::before {
    background-image: url("../img/reservation/num03.png");
}

.reservation-merit li:nth-child(4)::before {
    background-image: url("../img/reservation/num04.png");
}

.reservation-form .section-title--page {
    margin: var(--space-3xl) 0 var(--space-sm);
}
.reservation-form .notice {
    font-weight: bold;
}
.reservation-section {
    text-align: center;
    font-family: futura-pt,
    sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: var(--fs-xl);
    background: #ececdc;
    padding: var(--space-sm) 0;
    margin: var(--space-xl) 0;
}

/* form */
input[type="text"],
input[type="email"] {
    appearance: none;
    border: 1px solid #c1c1c1;
    width: 100%;
    height: 40px;
    line-height: 40px;
    padding: 0 10px;
    box-sizing: border-box;
}
.zip input {
    width: 25%;
    height: 40px;
    line-height: 40px;
    padding: 0 10px;
}
.form_step {
    text-align: center;
    margin: 100px 0;
}
.form_step img {
    max-width: 296px;
}
#reservation .cl_red {
    color: #c0145a;
}
.reserve_form dl {
    margin: 2rem 0;
}
.reserve_form dl dt {
    font-weight: bold;
    margin-bottom: 5px;    
}
.reserve_form .vertical-item {
    display: block !important;
}
.reserve_form dl dd+dd {
    margin-top: 1rem;
}

input.hasDatepicker {
    width: 50%;
}

.form_age input {
    width: 10%;
}

.radio {
    padding-top: 10px;
}
.red_box input,
.red_box select {
    border: 1px solid #c0145a;
}
.submit {
    text-align: center;
    margin-top: var(--space-xl);
}
.submit input {
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 1rem 4rem;
    font-size: var(--fs-lg);
}
select {
    appearance: none;
    height: 40px;
    width: 100%;
    line-height: 40px;
    padding: 0 10px;
    background: url("../img/arrow.png") right 10px center no-repeat;
}

textarea {
    appearance: none;
    border: 1px solid #c1c1c1;
    width: 100%;
    height: 200px;
    padding: 10px;
    box-sizing: border-box;
}


/********* profile *********/
.company-info .row {
    border-bottom: 1px solid var(--gray);
    padding: var(--space-xs);
}
.company-info .row:first-child {
    border-top: 1px solid var(--gray);
}
.company-info dt {
    font-weight: bold;
}

/* staff */
.staff .heading-center {
    font-size: var(--fs-3xl);
    font-weight: bold;
    color: var(--blue);
}
.staff .heading-text {
    color: #333;
    margin: var(--space-md) 0;
}
.staff-list.section-bg {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(2, 1fr);
}

.staff-item a {
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: var(--space-xs);
}
.staff-photo {
    aspect-ratio: 3 / 3.8;
    display: flex;
    align-items: flex-end;
}

.staff-item p {
    text-align: center;
    font-weight: bold;
    line-height: 1;
}

.staff-role {
    color: var(--blue);
}
.staff-name {
    font-size: var(--fs-lg);
    color: #333;
}

/* staff single */
.staff-single {
    padding: var(--space-2xl);
}
.staff-single figure {
    text-align: center;
}
.staff-single figure img {
    max-width: 420px;
    width: 80%;
}
.staff-single figure {
    place-content: center;
}
.staff-name {
    font-weight: bold;
    margin-bottom: var(--space-md);
}
.staff-position {
    color: var(--blue);
}
.staff-jp {
    font-size: var(--fs-2xl);
}
.staff-en {
    font-size: var(--fs-xs);
    color: var(--gray);
}
.staff-profile .flex dt::after {
    content: "：";
}
.comment dt {
    font-weight: bold;
    color: var(--blue);
    margin: var(--space-md) 0 var(--space-2xs);
}
.more-btn--staff {
    margin-bottom: var(--space-2xl);
}
/************************ products ************************/
/* page products */
.page-products .section-title--md {
    color: var(--blue);
}
.page-products ul {
    margin-top: var(--space-xl);
}
.page-products li {
    margin-bottom: var(--space-sm);
}
.page-products li p {
    text-align: left;
    font-weight: bold;
}
.product-link {
    display: block;
    color: var(--blue);
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: var(--space-md);
    font-weight: bold;
}
.product-link::after {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    background: url(../img/product/arrow.png) no-repeat;
    background-size: contain;
}

/* product詳細 */
.product-fv {
    background: var(--bg-gray);
    gap: 30px;
}
.product-fv .fv-text {
    margin-left: 5%;
    padding: var(--space-2xl) 0 0;
}
/* 各ページタイトル画像 */
.flexible .page-title img {
    max-width: 320px;
}
.soare .page-title img {
    max-width: 230px;
}
.cocco .page-title img {
    max-width: 294px;
}

.concept-area .block-text ul {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: var(--space-sm);
    margin-top: var(--space-md);
}
.concept-area .block-text ul li {
    background: #fff;
    border-radius: 10px;
    text-align: center;
    padding: 7px 0;
    font-weight: bold;
    place-content: center;
}
.concept-area .block-img p {
    color: var(--blue);
    font-weight: bold;
}
.concept-area .block-img p .fs-l {
    font-size: var(--fs-3xl);
}

.product-feature .heading-center,.model-house .heading-center {
    color: var(--blue);
    font-size: var(--fs-lg);
    font-weight: bold;
}
.product-feature h3{
    font-size: var(--fs-lg);
    font-family: var(--en_font);
    line-height: 1.5;
}
.product-feature.no-space h3 {
    margin: var(--space-lg);
}
.product-feature h3::before {
    font-size: var(--fs-4xl);
    font-weight: bold;
    display: block;
}

/* 番号 */
.product-feature h3.num01::before {
    content: "01";
}
.product-feature h3.num02::before {
    content: "02";
}
.product-feature h3.num03::before {
    content: "03";
}
.product-feature h3.num04::before {
    content: "04";
}
.product-feature h3.num05::before {
    content: "05";
}
.product-feature h3.num06::before {
    content: "06";
}
.product-feature h3.num07::before {
    content: "07";
}

.product-point .block-text {
    background: #fff;
}
.product-point .block-text {
    padding: var(--space-sm) var(--space-md);
}
.product-point .block-text h4 {
    color: var(--blue);
    font-weight: bold;
}
.product-point .block-text h4 .fs-l {
    font-size: var(--fs-xl);
    font-family: var(--en_font);
}
.product-point li {
    margin-top: var(--space-md);
}
.product-point figure {
    text-align: center;
}
.product-feature .small-image {
    margin-top: var(--space-ms);
    text-align: center;
}
.product-feature .small-image.space {
    padding: 0 var(--space-md);
}
.product-feature .block-text p+figure {
    margin-top: var(--space-sm);
}

/* flexible-modelhouse */
.flexible-modelhouse figure {
    max-width: 760px;
    margin: 0 auto;
}
.flexible-modelhouse p {
    text-align: center;
    color: var(--blue);
    font-weight: bold;
    margin: var(--space-xs) 0 var(--space-md);
}

.model-house .heading-center {
    margin-bottom: var(--space-xl);
}

/******************* newsページ *******************/
.news-page .news_item + .news_item {
    margin-top: var(--space-3xl);
}
.news-page .news_item time {
    font-weight: bold;
}
.news-page .news_item .news_title {
    font-size: var(--fs-xl);
    color: var(--blue);
    font-weight: bold;
    margin-bottom: var(--space-xl);
    padding: var(--space-xs) 0 var(--space-sm);
    border-bottom: 1.5px solid var(--blue);
}
.news-page .news_item a{
    display: block;
    max-width: 18.75rem;
    margin: var(--space-2xl) auto;
}

/* pagination 全体 */
.pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

/* ul */
.pagination .nav-links {
    display: flex;
    gap: 10px;
}

/* 共通（数字・前後リンク） */
.pagination a,
.pagination span {
    width: 2.625rem;
    height: 2.625rem;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #ccc;
    color: #333;
    font-size: var(--fs-xs);
    text-decoration: none;
    transition: all 0.3s ease;
}

/* ホバー */
.pagination a:hover {
    background-color: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

/* 現在のページ */
.pagination .current {
    background-color: var(--blue);
    color: #fff;
    border-color: var(--blue);
    font-weight: 600;
}

/* 前へ・次へ */
.pagination .prev,
.pagination .next {
    width: auto;
    padding: 0 1rem;
    border-radius: 999px;
}

/* ナビ全体 */
.article-nav {
    margin: var(--space-3xl) auto 0;
    padding-top: var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border-top: 1px solid var(--blue);
}

/* 共通 */
.article-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

/* 前後矢印 */
.nav-prev a,
.nav-next a {
    width: 2.625rem;
    height: 2.625rem;
    border-radius: 50%;
    background-color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px 18px;
}
.nav-prev a {
    background-image: url("../img/arrow-prev.svg");
}
.nav-next a {
    background-image: url("../img/arrow-next.svg");
}

/* 一覧リンク */
.nav-archive a {
    padding: 10px 20px;
    border-radius: 999px;
    white-space: nowrap;
    background: var(--blue);
    color: #fff;
}

/******************* works *******************/
.works-page {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.works-page .works-thumb {
    display: block;
    width: 100%;
}

.works-page .works-thumb img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    aspect-ratio: 603 / 295;
    object-fit: cover;
    display: block;
}
.works-title {
    margin-top: 1rem;
}
.works-title,
.works-title a {
    color: #333;
    font-weight: bold;
}
.detail-link {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    font-family: var(--en_font);
    font-size: var(--fs-xs);
    color: var(--blue);
    font-weight: bold;
}
.detail-link::after {
    content: "";
    display: block;
    width: 1rem;
    height: 1rem;
    background: url("../img/arrow-next.svg") var(--blue) no-repeat center;
    background-size: 8px 8px;
    border-radius: 50%;
}

/* works single */
.fv-area--works {
    max-width: 1100px;
    margin: 0 auto;
}
.fv-area--works .fv-text {
    grid-template-rows: 1fr;
    gap: 2rem;
    font-size: var(--fs-sm);
}
.data {
    border-bottom: 1px solid var(--gray);
    padding: var(--space-lg) 0;
    box-sizing: border-box;
}
.data h4 {
    color: var(--blue);
    font-weight: bold;
    font-size: var(--fs-md);
}
.works-single .works-title {
    color: var(--blue);
    font-size: var(--fs-xl);
    margin: 0 0 4rem;
}
.works-single small {
    font-weight: bold;
}
.works-mv--single {
    position: relative;
    width: 100vw;
    margin: 0 0 var(--space-lg) calc(50% - 50vw);
    background: var(--bg-gray);
}
.works-mv--single figure {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    transform: translateY(-3rem);
}
.works-images--single {
    max-width: 780px;
    margin: var(--space-3xl) auto;
    font-size: var(--fs-sm);
}
.works-block + .works-block {
    margin-top: var(--space-2xl);
}

/* works topページ */
.works-slick {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}
.works-thumb {
    overflow: hidden;
}

.works-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.works-slide {
    padding: 0 12px;
}


.works-slick .slick-prev,
.works-slick .slick-next {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    z-index: 10;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--blue);
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.works-slick .slick-prev::before,
.works-slick .slick-next::before {
    content: "";
    display: block;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    width: 1.2rem;
    height: 1.2rem;
}
.works-slick .slick-next::before {
    background: url("../img/arrow-next.svg") var(--blue) no-repeat center;
}
.works-slick .slick-prev::before {
    background: url("../img/arrow-prev.svg") var(--blue) no-repeat center;
}

.works-slick .slick-prev {
    left: 0;
}

.works-slick .slick-next {
    right: 0;
}

/*
  contact
===========================================================================================================*/
.contact {
    min-height: 70vh;
}
.contact_form {
    margin: var(--space-3xl) auto;
}
.contact_form dl {
    margin-bottom: 2rem;
}
.mwform-checkbox-field {
    display: block;
}
.contact_form dl dt {
    margin-bottom: 5px;
}
.mw_wp_form .horizontal-item+.horizontal-item {
    margin-left: 0;
}


.zeh h2 {
    font-size: var(--fs-xl);
    font-weight: bold;
}
.zeh table {
    width: 100%;
    margin: 0 auto;
}
.zeh table .table_head {
    background: #ececdc;
}
.zeh table th,
.zeh table td {
    text-align: center;
    border: 1px solid #c1c1c1;
    padding: 10px 0;
}
.zeh table .bg_gray {
    background: #eee;
}

/********************* スマホ用ハンバーガーメニューcss **********************/
@media screen and (max-width: 768px) {
    /* nav */
    .drawer {
        position: absolute;
        width: 100%;
        height: auto;
        top: 0;
        left: 0;
        padding: 30px 0 10px 0;
        transition: 0.3s linear;
        transform: scale(1, 0);
        transform-origin: top;
        background: #fff;
        z-index: 999;
        background: rgba(255, 255, 255, 0.9);
    }
    .social {
        width: 80%;
        margin: 0 auto;
    }
    .main-nav {
        width: 80%;
        margin: 0 auto;
    }
    .main-nav > li {
        border-top: 1px solid rgb(75, 75, 75);
        padding: 15px 0;
    }
    .main-nav .has-sub > a {
        display: block;
    }

    /* メニューボタン */
    .menu-btn {
        display: none;
    }

    .menu-btn:checked~.drawer {
        transform: scale(1, 1);
        transform-origin: top;
        transition: 0.3 linear;
    }

    .menu-icon {
        display: inline-block;
        position: absolute;
        right: 0;
        top: 0.5rem;
        cursor: pointer;
        height: 50px;
        width: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1000;
    }

    .navicon {
        background: #333;
        display: block;
        height: 3px;
        width: 26px;
        position: relative;
        transition: 0.3 linear;
        z-index: 2;
    }

    .navicon:before,
    .navicon:after {
        content: "";
        display: block;
        height: 100%;
        width: 100%;
        position: absolute;
        background: #333;
        transition: 0.3s linear;
    }

    .navicon::before {
        top: 9px;
    }

    .navicon:after {
        bottom: 9px;
    }

    /* ハンバーガーメニューアニメーション */
    .menu-btn:checked~.menu-icon .navicon:before {
        top: 0;
        transform: rotate(-45deg);
    }

    .menu-btn:checked~.menu-icon .navicon:after {
        bottom: 0;
        transform: rotate(45deg);
    }

    .menu-btn:checked~.menu-icon .navicon {
        background: rgba(0, 0, 0, 0);
        transition: 0.2s linear;
    }

    /* アコーディオン */
    .main-nav {
        flex-direction: column;
    }
    .main-nav .sub-nav {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .has-sub.is-open .sub-nav {
        display: block;
    }

    .main-nav .sub-nav li {
        border: none;
        padding: 10px;
    }
    .has-sub.is-open .toggle {
        padding-bottom: 15px;
    }

}

/**************************************** PC responsive **********************************/
@media screen and (min-width: 769px) {
    html {
        font-size: 16px;
    }
    .pc-flex {
        display: flex;
    }
    .pc-grid {
        display: grid;
    }
    section,
    .section-inner {
        max-width: 1200px;
    }
    .sp-br {
        display: none;
    }

    /********************* header ***************/
    /* header {
        position: relative;
    } */
    /* .top-page header {
        position: absolute;
        top: 0;
    } */
    .site-logo {
        width: 240px;
    }

    /* nav */
    .header-right {
        gap: var(--space-lg);
        grid-template-columns: 1fr auto;
    }
    .sub-nav {
        position: absolute;
        top: 5.5rem;
        left: 0;
        width: 100vw;
        padding: 4rem 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        transition: 0.2s ease;
        background: rgba(255, 255, 255, 0.9);
        display: flex;
        flex-wrap: wrap;
        gap: 0 6%;
        align-items: center;
        justify-content: center;
        z-index: 999;
    }
    .has-sub:hover .sub-nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .sub-nav li {
        padding: 10px 0;
        width: 30%;
    }

    /* header contact links */
    .contact-link {
        position: relative;
        width: auto;
        order: 2;
    }
    .drawer {
        padding-top: var(--space-xs);
    }
    .main-nav .has-sub > a {
        padding-right: 15px;
    }
    .main-nav .has-sub > a::after {
        right: 0;
        top: 3px
    }

    /* swiper */
    .banner-swiper .swiper-wrapper {
        transition-timing-function: linear !important;
    }
    /* マウスオーバー */
    .banner-swiper .swiper-slide:hover img,
    .banner-swiper .swiper-slide.hover img {
        transform: scale(1.15);
    }

    /********************* footer ***************/
    footer {
        padding: var(--space-md) 0;
    }

    .footer-logo img {
        width: auto;
        zoom: 0.5;
    }

    /************** top *************************/
    .banner-list {
        /* display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: var(--space-2xs); */
    }

    /* news */
    .news-wrap {
        width: 74%;
        margin-left: var(--space-2xl);
    }
    .news-item {
        padding: var(--space-sm) 0;
    }
    .news-item a {
        display: flex;
        gap: var(--space-md);
    }
    .news-item:first-child {
        border-top: none;
    }
    .news .more-btn {
        margin: var(--space-sm) 0 var(--space-sm) auto;
    }

    /* concept */
    .concept {
        gap: 40px;
    }
    .concept figure {
        flex: none;
        width: 60vw;
        margin-left: auto;
        margin-right: calc(50% - 50vw);
    }
    .concept figure img {
        width: 100%;
        height: auto;
    }

    /* products */
    .products ul {
        justify-content: space-between;
    }
    .products li+li {
        border-top: none;
        padding-top: 0;
        margin-top: 0;
    }

    /************************************** page ****************************/
    /* .regular-page,.page-fv {
        padding-top: 0;
    } */
    .page-fv.pc-flex {
        gap: 50px;
    }
    .fv-text p {
        line-height: 2.4;
    }
    .center-image--sp {
        margin-top: var(--space-lg);
        width: 80%;
        margin: var(--space-lg) auto 0;
    }
    /* pre footer */
    .pre-footer .link-list {
        display: flex;
        flex-wrap: wrap;
        gap: 0 6%;
        align-items: center;
    }
    .pre-footer .link-list li {
        flex: 1 1 47%;
    }

    /* block-section */
    .block-text {
        margin-bottom: 0;
    }
            .block-section .pc-flex,.block-section.pc-flex {
        gap: 4%;
    }
    .block-section .pc-flex .block-text {
        flex: 1 1 50%;
        margin-bottom: 0;
    }
    .block-section .pc-flex figure {
        flex: 0 1 46%;
    }
    .block-section.pc-flex .block-text--s {
        flex: 1 1 35%;
    }
    .block-section.pc-flex figure.img-area--l {
        flex: 0 1 55%;
    }

    /* list-content */
    .list-content li {
        padding-left: 80px;
        min-height: 60px;
    }
    .list-content li:before {
        width: 60px;
        height: 60px;
    }
    .process li::after {
        content: "";
        position: absolute;
        top: 40px;
        left: 29px;
        width: 1px;
        height: calc(100% - 40px);
        background: var(--blue);
    }
    .price .pc-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    /* reseervation */
    .promise .pc-grid {
        grid-template-columns: repeat(2, minmax(0, 460px));
        gap: 40px;
        place-items: center;
        width: fit-content;
        margin: 0 auto;
    }

    /********* profile *********/
    .company-info .row {
        display: grid;
        grid-template-columns: 14em 1fr;
    }

    /* staff */
    .staff-list.section-bg {
        gap: 60px;
        grid-template-columns: repeat(3, 1fr);
        padding: var(--space-2xl) var(--space-3xl);
    }

    /************************ products ************************/
    .product-fv .fv-text {
        padding: var(--space-3xl) 0 0;
    }
    .product-fv figure {
        transform: translateY(-4rem);
    }
    .concept-area .block-img {
        width: 45%;
    }
    .concept-area .block-img p {
        text-align: center;
    }
    .product-point li {
        display: flex;
        align-items: center;
        gap: 40px;
    }
    .product-point figure {
        flex: 0 0 42%;
    }
    .product-point .block-text {
        flex: 1 1 55%;
    }
    .product-point li:nth-child(odd) {
        flex-direction: row-reverse;
    }
    .product-feature h3 {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .product-feature .pc-grid {
        gap: 40px;
    }
    .product-feature .pc-grid figure {
        place-content: center;
    }
    .product-feature .small-image {
        margin-top: 0;
    }
    .small-image img {
        max-width: 80%;
    }
    .grid-4-6 {
        grid-template-columns: 40% 1fr;
    }
    .grid-7-3 {
        grid-template-columns: 65% 1fr;
    }
    .grid-5-5 {
        grid-template-columns: 50% 1fr;
    }

    /* products pre footer area */
    .pre-footer.page-products .pc-flex {
        gap: 40px;
    }

    /* reservation */
    .reserve_form dl {
        display: flex;
        flex-wrap: wrap;
    }
    .reserve_form dl dt {
        width: 30%;
        margin-bottom: 0;
        padding-top: 8px;
    }
    .reserve_form dl dd {
        width: 70%;
    }
    .right_side {
        margin-left: 30%;
    }
    select {
        width: 50%;
    }
    .reserve_form dl dd+dd {
        margin-left: 30%;
    }

    .news-page {
        max-width: 900px;
        margin: 0 auto;
    }

    /******************* worksページ *******************/
    .works-page {
        grid-template-columns: repeat(2, 1fr);
    }

    .fv-area--works .fv-text {
        grid-template-columns: 1fr 2fr;
    }
    .data {
        border-left: 1px solid var(--gray);
        border-right: 1px solid var(--gray);
        border-bottom: none;
        padding: 0 var(--space-lg);
    }

    /*
    contact
    ===========================================================================================================*/
    .contact_form {
        width: 900px;
    }

    .contact_form dl {
        display: flex;
    }

    .contact_form dl dt {
        width: 20%;
        min-width: 100px;
    }

    .contact_form dl dd {
        width: 80%;
    }

    .contact_form dl dt {
        margin-bottom: 0;
    }
}
@media screen and (max-width: 1260px) {
    .header-right {
        grid-template-columns: 1fr;
    }
    .contact-link {
        order: 1;
    }
    nav {
        order: 2;
        padding-right: var(--space-md);
    }
    .main-nav {
        flex-wrap: wrap;
    }
}