@charset "utf-8";
html{
    scroll-behavior: smooth;
}
/* body全体 */
body {
    font-family: "YuGothic", "游ゴシック", sans-serif;
    color: #131211;
}
img {
  display: block;
  width: 100%;
  height: auto;
}
.poppins {
  font-family: "Poppins", sans-serif;
}
.content-width {
    width: 91.25%;
    margin-inline: auto;
}

@media(max-width:540px) {
    .inner {
        max-width: 540px;
    }
}
#showroom,
#point,
#standard,
#access {
    scroll-margin-top: 40px;
}
/* main */
.main{
    background: #ffffff;
    padding: 67px 0 50px;
}
.inner{
    position: relative;
    z-index: 1;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 4px 70px rgba(47, 46, 45, .1);
}
@media(min-width: 769px) and (max-width: 1280px){
    .inner{
        margin: 0;
        left: calc(100% - 420px);
        }
}
@media(max-width:540px){
    .inner{
        max-width: 540px;
    }
}
/* h2*/
.sec-title{
    text-align: center;
}
.sec-title h2{
    display: block;
    font-size: 23px;
    font-weight: 600;
    
    letter-spacing: 0.04em;
    line-height: 27px;
}
.sec-title .sub-title{
    font-family: "Tajawal", sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    
    color: #0B5C78;
    letter-spacing: 0.05em;
}
/* 流れるテキスト */
.marquee {
    width: 100%;
    overflow: hidden;
    pointer-events: none;
    user-select: none;
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 24px;
    white-space: nowrap;
    animation: marquee-scroll 60s linear infinite;
    will-change: transform;
}

.marquee-text {
    flex: 0 0 auto;
    font-size: 64px;
    letter-spacing: 0.12em;
    line-height: 1;
    font-weight: 500;
    color: rgba(255, 220, 135, 0.25);
    font-family: "Syne", sans-serif;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .marquee-track {
        animation: none;
    }
}
/* 追従ボタン用ラッパー */
.floating-reserve-wrap {
    position: fixed;
    inset: 0;
    z-index: 1000;
    pointer-events: none;
}

.floating-reserve-inner {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 100%;
    margin: 0 auto;
}

@media (max-width: 540px) {
    .floating-reserve-inner {
        max-width: 540px;
    }
}

@media (min-width: 769px) and (max-width: 1280px) {
    .floating-reserve-inner {
        margin: 0;
        left: calc(100% - 420px);
    }
}

/* 本体ボタン */
.floating-reserve-btn {
    position: absolute;
    right: 16px;
    bottom: 70px;
    width: 77px;
    height: 77px;
    border-radius: 50%;
    background: url("./img/webp/r-btn.webp") center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, filter 0.3s ease;
    pointer-events: auto;
}

.floating-reserve-btn span {
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    
    line-height: 1;
    letter-spacing: 0.05em;
}

.floating-reserve-btn.is-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-reserve-btn:hover {
    filter: brightness(0.85);
}
@media (min-width: 1280px) {
    .floating-reserve-wrap {
        display: none;
    }
}
/* cta */
.cta-reserve {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 325px;
    height: 54px;
    text-decoration: none;
    overflow: hidden;
    background: url("./img/webp/cta-bg.webp") center no-repeat;
    background-size: 100%;
    border-radius: 12px;
    margin: 0 auto;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    transition: filter 0.3s ease;
}
.cta-reserve:hover{
    filter: brightness(0.85);
}
.cta-reserve-label {
    color: #fff;
    font-size: 18px;
    line-height: 1;
    text-shadow: 1px 1px 3.3px rgba(0, 0, 0, 0.25);
    font-weight: 600;
    
    letter-spacing: 0.12em;
}
.cta-reserve-arrow {
    position: absolute;
    top: 50%;
    right: 24px;
    width: 10px;
    height: 10px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translateY(-50%) rotate(-45deg);
}
.side-cta-area{
    display: none;
}
@media(min-width:1280px){
    .cta-reserve.side-btn{
        background: url("./img/webp/cta-bg2.webp") center no-repeat;
    }
.side-cta-area{
    position: fixed;
    top: 30%;
    right: 0;
    width: calc(50% - 200px);
    display: block;
}
.side-cta-container{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-left: 35px;
}
}


/* 半円 */
.curve-section-bottom{
    display: block;
    width: 100%;
    margin-top: -1px;
    padding: 0;
}

/* banner */
.banner-area{
    margin-top: 60px;
    max-width: 360px;
}
/* header */
button {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 100;
  background: #fff;
  width: 100%;
}
@media(min-width:540px){
    .site-header{
        max-width: 400px;
    }
}
.header-inner {
  height: 67px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.site-logo {
    display: block;
    max-width: 195px;
    width: 100%;
}

.site-logo img {
  width: min(100%, 290px);
  height: auto;
}

.menu-toggle {
  position: relative;
  width: 49px;
  height: 49px;
  border: none;
  border-radius: 50%;
  background: #d9edf0;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.menu-toggle:hover {
  transform: scale(1.03);
}

.menu-toggle span {
  position: absolute;
  left: 50%;
  width: 21px;
  height: 2px;
  border-radius: 999px;
  background: #1f6687;
  transform: translateX(-50%);
  transition:
    top 0.35s ease,
    transform 0.35s ease,
    opacity 0.25s ease,
    background-color 0.25s ease;
}

.menu-toggle span:nth-child(1) {
  top: calc(50% - 7px);
}

.menu-toggle span:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}

.menu-toggle span:nth-child(3) {
  top: calc(50% + 5px);
}
.site-header.is-open .menu-toggle span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.site-header.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-toggle span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.header-menu {
  position: absolute;
  top: 100%;
  right: 4.375%;
  width: 100%;
  max-width: 200px;
  padding: 28px 20px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px) scale(0.98);
  transform-origin: top right;
  transition:
    opacity 0.32s ease,
    transform 0.32s ease,
    visibility 0.32s ease;
  pointer-events: none;
  z-index: 1;
}


.site-header.is-open .header-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.header-menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.header-menu-list li {
  text-align: center;
}

.header-menu-list a {
  display: block;
  width: 100%;
  color: #111;
  text-decoration: none;
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.95;
  font-weight: 600;
  transition: opacity 0.25s ease, transform 0.25s ease;
}


.header-menu-list a:hover {
  opacity: 0.7;
  transform: translateY(-1px);
}

@media (max-width: 480px) {
    .header-menu-list a{
        font-size: 1rem;
    }

  .site-logo img {
    max-width: 230px;
  }

  .header-menu {
    padding: 28px 22px;
    border-radius: 28px;
  }

  .header-menu-list li + li {
    margin-top: 24px;
  }
}
/* 背景 */
.web-bg {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100vh;
  background: url(./img/webp/body-background.webp) top left / cover repeat;
  z-index: -1;
  opacity: 0.7;
}
/* 背景メニュー */
.ui-nav-menu{
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    line-height: 1;
}
.ui-nav-sns .sns-list {
  display: flex;
  justify-content: flex-start;
  gap: 23px;
  margin-top: 10px;
  transition: filter 0.3s ease;
}
.ui-nav-sns .sns-list a:hover{
filter: brightness(0.85);
}
.ui-nav-area {
  margin-top: 32px;
}

.ui-nav-area ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.ui-nav-area ul li {
  border-bottom: 1px solid #AAAAAA;
  position: relative;
}

.ui-nav-area ul li a {
  padding-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ui-nav-area ul li a,
.ui-nav-area ul li p {
    font-size: 0.9375rem;
    line-height: 1;
    font-weight: 500;
}
.ui-nav-area ul li p{
    padding-top: 10px;
}

.ui-nav-area a:hover {
  opacity: 0.5;
  transition: all 0.2s ease-in-out;
}
.ui-nav-arrow {
    position: absolute;
    top: 50%;
    right: 14px;
    width: 10px;
    height: 10px;
    border-right: 1px solid #222222;
    border-bottom: 1px solid #222222;
    transform: translateY(-50%) rotate(-45deg);
}
.policy-area {
  margin-top: 30px;
  font-size: 0.75rem;
  line-height: 2;
  font-weight: 500;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 30px;
}

.policy-area a {
  display: block;
  padding-right: 10px;
  line-height: 1.2;
}

.ui-nav-policy .policy-area a:first-child {
  border-right: 1px solid #222222;
  margin-right: 10px;
}
.ui-nav-policy .policy-area{
    margin-top: 50px;
}
.floating-ui {
  position: fixed;
  transition: all 0.3s ease-in;
  z-index: 10;
}

.header_item {
  display: none;
  transition: all 0.3s ease-in;
}
@media(min-width:769px){
    .floating-ui{
        top: 10%;
        left: 0;
        height: 100vh;
        width: calc(50% - 200px);
        display: flex;
        justify-content: flex-end;
    }
      .header_item {
        margin: 0 auto;
        width: 330px;
        display: block;
    }

    .ui-nav-policy {
        display: flex;
        justify-content: flex-start;
    }
}
@media(min-width:769px) and (max-width:1280px) {
  .floating-ui {
    top: 14%;
    width: calc(100% - 440px);
    margin-left: 20px;
  }
}

/* mv */
.mv{
    padding-top: 20px;
    padding-bottom: 90px;
    background: url(./img/webp/mv-background.webp) center no-repeat;
    background-size: cover;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.mv-logo{
    max-width: 200px;
    margin: 0 auto;
}

.mv-top-text{
    font-size: 0.875rem;
    font-weight: 600;
    
    text-align: center;
    line-height: 2.7;
}

.mv-copy{
    margin: 16px auto 24px;
    font-size: 1.75rem;
    font-weight: 600;
    
    line-height: 1.3;
    text-align: center;
}

.mv-visual{
    position: relative;
    width: 400px;
    margin: 0 auto;
    z-index: 0;
}

.lcl-main-slide{
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 2;
}

.mv-frame{
    position: relative;
    width: 320px;
    height: 295px;
    margin: 0 auto;
    overflow: hidden;
    isolation: isolate;
    background: #d9d9d9;
    border-radius: 65% 35% 65% 35% / 65% 35% 65% 35%;
    will-change: border-radius;
}

.mv-frame::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(134, 177, 210, 0.22);
    pointer-events: none;
    z-index: 2;
}

/* メインスライド */
.lcl-main-slide .splide__track,
.lcl-main-slide .splide__list,
.lcl-main-slide .splide__slide{
    height: 100%;
}

.lcl-main-slide .splide__slide{
    overflow: hidden;
}

.lcl-main-slide .splide__slide img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 左下のサブスライド */
.mv-sub-slide{
    position: absolute;
    left: 4%;
    bottom: -12px;
    width: 130px;
    z-index: 4;
    pointer-events: none;
}

.mv-sub-frame{
    position: relative;
    width: 130px;
    height: 91px;
    overflow: visible;
}

.mv-sub-slide .splide__track,
.mv-sub-slide .splide__list,
.mv-sub-slide .splide__slide{
    width: 100%;
    height: 100%;
}

.mv-sub-slide,
.mv-sub-frame,
.mv-sub-slide .splide__track,
.mv-sub-slide .splide__list,
.mv-sub-slide .splide__slide {
    overflow: visible;
}
.mv-sub-slide .splide__slide img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transform: translateX(-20px);
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.08));
}
.mv-sub-slide .splide__slide.sub-slide1 img {
    width: 140px;
    height: 120px;
    max-width: none;
}
.mv-sub-slide .splide__slide.is-active img{
    animation: mvSubSlideIn 0.9s ease forwards;
}

@keyframes mvSubSlideIn{
    from{
        opacity: 0;
        transform: translateX(-30px);
    }
    to{
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 400px){
    .mv-visual{
        width: 100%;
    }

    .lcl-main-slide{
        width: 100%;
    }

    .mv-sub-slide{
        left: 6px;
        bottom: -10px;
        width: 120px;
    }

    .mv-sub-frame{
        width: 120px;
        height: auto;
        aspect-ratio: 131/91;
    }
    .mv-sub-slide .splide__slide.sub-slide1 img{
        width: 130px;
    }
}
.mv-right-icon{
    position: absolute;
    z-index: 1;
    right: 4%;
    bottom: 0;
    max-width: 115px;
}
/* about */
.about{
    margin-top: 50px;
}
.about-title{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin: 0;
    font-size: 2rem;
    font-weight: 600;
    
    letter-spacing: 0.07em;
    line-height: 45px;
}
.about-title span {
  position: relative;
  display: inline-block;
  width: fit-content;
  padding-inline: 4px;
  z-index: 0;
}
.about-title span::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: 0.08em;
  height: 15px;
  background: url("./img/webp/text-line.webp") repeat-x left center / auto 15px;
  z-index: -1;
}
.about-lead{
    width: 100%;
    margin: 0 auto;
    position: relative;
    padding-bottom: 12px;
}
.about-text{
    display: block;
    font-size: 0.9375rem;
    line-height: 34px;
    font-weight: 500;
    margin-top: 20px;
}
.about-img{
    max-width: 115px;
    position: absolute;
    top: -35px;
    right: 0;
}
@media(max-width:375px){
    .about-img{
        max-width: 100px;
    }
}
/* showroom */
.showroom{
    background: #CDE8E9;
    padding: 80px 0 25px;
}
.showroom-mv{
    display: block;
    width: 100%;
    margin-bottom: 75px;
    border-radius: 16px;
}
.showroom-mv img{
    border-radius: 16px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.showroom .sec-title h2{
    color: #0B5C78;
}
.showroom .sec-title .sub-title{
    color: #ffffff;
}
.showroom-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 5px;
}

.showroom-info-img {
  flex: 0 0 47%;
  max-width: 175px;
}

.showroom-info-img img {
  display: block;
  width: 100%;
  height: auto;
}
.showroom-info-block{
    padding-right: 16px;
}
.showroom-info-time{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 20px;
}
.showroom-info-list{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 7px;
}
.showroom-info-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  min-height: 24px;
  margin: 0 0 4px;
  padding: 4px 10px 4px; 
  border-radius: 3px;
  background: linear-gradient(135deg, #0B5C78 0%, #03475E 100%);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  line-height: 1;
}

.showroom-info-text {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 24px;
}
.showroom-info-time .showroom-info-text{
    font-size: 0.75rem;
}
.showroom-info-address {
  font-style: normal;

}
.showroom-info-text span{
    font-size: 1rem;
    margin-right: 4px;
}

.showroom .marquee .marquee-text{
    margin-top: 40px;
    color: #ffffff;
    opacity: 0.45;
}
.showroom-info-point{
    max-width: 300px;
    margin: 50px auto 50px;
    width: 100%;
}
@media(max-width:480px){
.showroom-info{
    gap: 8px;
}
.showroom-info-text span{
    font-size: 0.875rem;
}
.showroom-info-label{
    padding: 3px 6px 3px;
    font-size: 0.75rem;
}
.showroom-info-text{
    font-size: 0.875rem;
}
}
/* point */
.point{
    padding: 80px 0 25px;
}
.point-six{
    max-width: 320px;
    width: 100%;
    margin: 25px auto 70px;
}
.point-area{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 35px;
}
.point-item{
    position: relative;
    border-bottom: 1px solid #D2B033;
    z-index: 0;
}
.point-item-img{
    border-radius: 24px;
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.25);
    margin-bottom: 25px;
}
.point-item-asset1,
.point-item-asset2,
.point-item-asset3,
.point-item-asset4,
.point-item-asset5{
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 0;
}
.point-item-asset1{
    max-width: 90px;
}
.point-item-asset2{
    max-width: 107px;
}
.point-item-asset3{
    max-width: 50px;
}
.point-item-asset4{
    max-width: 66px;
}
.point-item-asset5{
    max-width: 110px;
}
.point-subtitle{
    font-family: "Tajawal", sans-serif;
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 500;
    color: #D2B033;
}
.point-container h3{
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    line-height: 25px;
    text-align: center;
    margin: 15px auto 10px;
}
.point-text{
    font-size: 0.875rem;
    line-height: 23px;
    font-weight: normal

}
.point-text-c{
    text-align: right;
    font-size: 0.625rem;
    margin-top: 8px;
}
.point .marquee-text{
    margin-top: 40px;
}
/* standard */
.standard {
    background: #F3F1E5;
    padding: 80px 0 25px;
    font-family: "YuGothic", "游ゴシック", sans-serif;
}
.s-h3-title {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    gap: 6px;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.04em;
}
.standard-copy{
    display: block;
    text-align: center;
    font-family: "Zen Old Mincho", serif;
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1.6;
    margin: 40px auto 50px;
    
}
.standard-copy p .size23{
    font-size: 1.4375rem;
}
.standard-copy p .size25{
    font-size: 1.5625rem;
}
.reword-img{
    display: block;
    width: 92.5%;
    margin: 0 auto;
}
.standard-performance{
    margin-top: 50px;
}
.performance-list{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 25px auto 50px;
}
.performance-item{
    display: flex;
    align-items: center;
    width: 100%;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.25);
    border-radius: 6px;
    overflow: hidden;
    background: #ffffff;
}
.performance-img{
    max-width: 130px;
    width: 100%;
    height: auto;
}
.performance-lead{
    text-align: center;
    margin: 0 auto;
}
.performance-lead h4{
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    margin: 0 auto 13px;
    padding: 7px 12px 6px;
    background: linear-gradient(to bottom right, #FFED82 0%, #FFE85D 100%);
    width: fit-content;
    border-radius: 4px;
    line-height: 1;
}
.performance-lead p{
    line-height: 21px;
    letter-spacing: -0.02em;
    font-weight: 400;
}
.performance-lead .p-fast{
    letter-spacing: 0.1em;
}
.standardEquipment-lineUpList {
    margin-top: 25px;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-top: 1px solid grey;
    border-left: 1px solid grey;
}

.standardEquipment-lineUpList li {
    border-right: 1px solid grey;
    border-bottom: 1px solid grey;
    font-size: 0.9375rem;
    font-weight: 500;
    position: relative;
    line-height: 1.8;
    font-weight: 400;
    padding: 9px 4px 9px 25px;
    width: 100%;
}

.standardEquipment-lineUpList li::before {
    display: block;
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 100%;
    background-color: #bd9b3c;
    position: absolute;
    top: 0;
    left: 9px;
    bottom: 0;
    margin: auto;
}

.standardEquipment-lineUpList li.-bg {
    background-color: #f6f5ef;
}

.standardEquipment-lineUpList li span {
    font-size: 0.65rem;
}
.standardEquipment-lineUpList li.-col2{
    width: 50%;
}
.standardEquipment-lineUpNote {
    font-size: 0.655rem;
    margin-top: 21px;
    text-align: center;
}

/* アクセス */
.Access{
    padding: 80px 0 0;
}
.Access address{
    text-align: center;
    display: block;
    font-size: 1rem;
    font-weight: 500;
    line-height: 22px;
    color: #131211;
    font-style: normal;
    margin-top: 25px;
}
.access-nav{
    max-width: 320px;
    margin: 30px auto 0;
    text-align: left;
    font-size: 0.8125rem;
    line-height: 20px;
    font-weight: 400;
}
.access-nav li{
    position: relative;
    padding-left: 17px;
}
.access-nav li::before{
    position: absolute;
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background: url(./img/webp/Access-nav-point.webp) center no-repeat;
    background-size: 100%;
    top: 6px;
    left: 0;
    margin: auto;
}

.hours {
    display: block;
    width: fit-content;
    margin: 30px auto 0;
    line-height: 19px;
}
.hours-row {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    gap: 8px;
    font-weight: 500;
}
.hours-label {
    width: fit-content;
    font-size: 0.875rem;
    white-space: nowrap;
}
.hours-time {
    font-size: 0.875rem;

}
.hours-note {
    font-size: 0.75rem;
}
.access-map{
    max-width: 365px;
    margin: 30px auto;
    border-radius: 27px;
    overflow: hidden;
    aspect-ratio: 365 / 240;
    width: 100%;
}
.access-map iframe{
    display: block;
    width: 100%;
    aspect-ratio: 365 / 240;
}
@media(max-width:400px) {
    .hours-row{
        gap: 6px;
    }
}
/* 見学予約 */
.reservation{
    margin-top: 50px;
    text-align: center;
    background: #FFF6E9;
    padding-top: 25px;
}
.reservation h2{
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    line-height: 25px;
}
.r-copy{
    font-size: 0.625rem;
    font-weight: 600;
    line-height: 1.8;
    letter-spacing: 0.02em;
}
.reservation-container{
    width: 85%;
    margin: 0 auto;
}

.r-img{
    position: relative;
    width: 100%;
    max-width: 310px;
    margin: 16px auto 0;
    z-index: 0;
}
.r-img-tag{
    position: absolute;
    top: -25px;
    right: -20px;
    width: 60px;
    height: 60px;
    background: #fff;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.r-tag-text{
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    line-height: 1.3;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
}
.r-tag-jp{
    font-size: 0.625rem;
    line-height: 1.6;
}
.r-tag-20{
    font-size: 0.875rem;
    line-height: 1.14;
}

.reservation-cta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 285px;
    height: 40px;
    text-decoration: none;
    background: #FFED82;
    border-radius: 20px;
    margin: 16px auto;
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.25);
    transition: filter 0.3s ease;
}
.reservation-cta:hover{
    filter: brightness(0.85);
}
.rcl-f .reservation-cta-label{
    font-size: 1.125rem;
}
.rcl-f .reservation-cta-arrow {
    position: absolute;
    top: 50%;
    right: 24px;
    width: 10px;
    height: 10px;
    border-right: 1px solid #464239;
    border-bottom: 1px solid #464239;
    transform: translateY(-50%) rotate(-45deg);
}
.reservation-info-area{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.catalog-cta,
.consultation-cta{
    max-width: 50%;
    width: 100%;
    padding: 30px 0 0;
    transition: filter 0.3s ease;
}
.catalog-cta{
    background: #FFFBDC;
}
.consultation-cta{
    background: #C3ECDB;
}
.reservation-info-area a:hover{
    
    filter: brightness(0.85);
}
.info-area-copy{
    width: fit-content;
    text-align: center;
    padding: 4px 10px 3px;
    border-radius: 2px;
    background: #ffffff;
    margin: 0 auto;
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    line-height: 1;
    font-weight: 600;
    
}
.reservation-area-lead{
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0.1em;
    text-decoration: underline;
    text-underline-offset: 4px;
    margin: 10px auto 15px;
}
.reservation-area-text{
    margin-bottom: 10px;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.1em;
}
.reservation-cta-img{
    display: block;
    width: 100%;
    margin: 0 auto;
}
.reservation-info-cta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 165px;
    height: 32px;
    text-decoration: none;
    background: #FFED82;
    border-radius: 20px;
    margin: 16px auto;
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.25);
}
.reservation-cta-label {
    font-size: 0.75rem;
    line-height: 1;
    font-weight: 600;
    
    letter-spacing: 0.12em;
}
.reservation-cta-arrow {
    position: absolute;
    top: 50%;
    right: 14px;
    width: 7px;
    height: 7px;
    border-right: 1px solid #464239;
    border-bottom: 1px solid #464239;
    transform: translateY(-50%) rotate(-45deg);
}
/* footer */
footer{
    background-color: #3F3D39;
    color: #ffffff;
    padding-top: 40px;
}
footer .content-width{
    padding-left: 22px;
}
.footer-logo{
    max-width: 210px;
}
.company-name{
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0.1em;
    font-weight: 600;
    
    margin-top: 22px;
    margin-bottom: 22px;
}
.company-about-f address,
.company-about-f p{
    font-size: 0.625rem;
    font-weight: 400;
    line-height: 2;
    text-decoration: none;
    font-style: normal;
}
.sns-list{
    display: flex;
    gap: 24px;
    justify-content: flex-start;
    align-items: center;
    margin: 40px auto;
    
}
.sns-list a{
    display: block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: filter 0.3s ease;
}
.sns-list a:hover{
 filter: brightness(0.85);
}
.f-nav-area {
  margin-top: 32px;
}

.f-nav-area ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.f-nav-area ul li {
  border-bottom: 1px solid #AAAAAA;
  position: relative;
}

.f-nav-area ul li a {
  padding-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.f-nav-area ul li a,
.f-nav-area ul li p {
    font-size: 0.9375rem;
    line-height: 1;
    font-weight: 500;
}
.f-nav-area ul li p{
    padding-top: 10px;
}

.f-nav-area a:hover {
  opacity: 0.5;
  transition: all 0.2s ease-in-out;
}
.f-nav-arrow {
    position: absolute;
    top: 50%;
    right: 14px;
    width: 10px;
    height: 10px;
    border-right: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
    transform: translateY(-50%) rotate(-45deg);
}
@media(max-width:540px){
    footer .content-width{
        padding: 0 5px;
    }
}

.policy-area a:first-child {
  border-right: 1px solid #ffffff;
  margin-right: 10px;
}
small {
    display: block;
    width: 100%;
    background-color: #373632;
    color: #ffffff;
    font-size: 0.75rem;
    line-height: 2;
    padding: 11px 0 7px;
}
small .content-width{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}