@charset "utf-8";
@media only screen and (min-width: 751px) {
  /*--------------------*/
  /*---- pc_cont.css ----*/
  /*--------------------*/

  /*------------------------------------
  基本設定
-------------------------------------*/
  html {
    font-size: 62.5%;
  }

  body {
    font-size: 1.6em;
    min-width: 1200px;
    letter-spacing: 0.05em;
    overflow-x: hidden;
  }

  img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
  }

  #code_area img {
    width: 1px;
    height: 1px;
  }

  button {
    letter-spacing: 0.05em;
  }

  .pcNone {
    display: none !important;
  }

  /* フェードイン */
  .js-inview {
    opacity: 0;
    transform: translateY(24px);
    transition:
      opacity 0.7s ease,
      transform 0.7s ease;
    will-change: opacity, transform;
  }

  .js-inview.is-show {
    opacity: 1;
    transform: translateY(0);
  }

  /* Common Classes */
  .contentWidth {
    max-width: 1100px;
    margin: 0 auto;
  }

  /* header */
  .header {
    z-index: 999;
  }

  .headerInner {
    width: 1200px;
    margin: 0 auto;
    position: relative;
  }

  .headerLogo {
    position: absolute;
    top: 52px;
    left: 4px;
  }

  /* Hero Section */
  .heroSection {
    height: 919px;
    margin-bottom: 286px;
    position: relative;
  }

  .heroSection::before {
    content: "";
    position: absolute;
    top: 156px;
    left: 0;
    right: 0;
    bottom: -350px;
    background-image: url(../img/hero/hero-bg-pc.jpg);
    background-repeat: no-repeat;
    background-position: center -218px;
    background-size: 2500px auto;
    z-index: -1;
  }

  @media (min-width: 2500px) {
    .heroSection::before {
      background-size: cover;
    }
  }

  .heroInner {
    width: 1200px;
    height: 919px;
    margin: 0 auto;
    position: relative;
  }

  .heroSubImage {
    width: 310px;
    height: 465px;
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 60px;
    overflow: hidden;
  }

  .heroSubImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .heroMainImageWrap {
    width: 59.65vw;
    height: 675px;
    margin-right: calc((100vw - 1200px) / -2);
    position: absolute;
    top: 0;
    right: 0;
  }

  .heroMainImage {
    height: 675px;
    border-radius: 0 0 0 120px;
    overflow: hidden;
  }

  .heroMainImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
  }

  .heroTitle {
    width: 310px;
    position: absolute;
    top: 187px;
    left: 0;
  }

  .heroDesc {
    position: absolute;
    top: 718px;
    left: 26px;
    font-size: 1.8rem;
    font-weight: var(--font-w-medium);
    line-height: 1.8;
  }

  .heroMainText {
    width: 398px;
    position: absolute;
    top: 92px;
    right: 30px;
  }

  .heroMainTextSp {
    display: none;
  }

  .heroMainDecor {
    width: 664px;
    position: absolute;
    bottom: 10px;
    left: 30px;
    z-index: 1;
  }

  /* Features Section */
  .featuresSection {
    margin-top: 180px;
    padding: 80px 0;
    position: relative;
    background-color: #EFECE3;
  }

  .featuresSection::before {
    content: "";
    width: 100%;
    height: 180px;
    position: absolute;
    top: -180px;
    left: 50%;
    transform: translateX(-50%);
    background: url(../img/feature/features-top.png) no-repeat;
    background-size: 2500px 180px;
    background-position: center;
  }

  .featuresContainer {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    max-width: 1148px;
    margin-top: -60px;
  }

  .featuresLeftSide {
    padding-left: 33px;
  }

  .featuresTitle {
    width: 235px;
    position: sticky;
    top: 40px;
    transition: .3s;
  }

  .featuresRightSide {
    flex: 0 0 865px;
  }

  .featureList {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 38px;
  }

  .featureItem {
    display: flex;
    flex-direction: column;
  }

  .featureItem.js-inview {
    transition:
      opacity 0.4s ease,
      transform 0.4s ease;
  }

  .featureHeader {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
  }

  .featureNumber {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 50%;
  }

  .featureNumber.number1 {
    background: url(../img/feature/feature-number01.svg) no-repeat;
    background-size: contain;
  }

  .featureNumber.number2 {
    background: url(../img/feature/feature-number02.svg) no-repeat;
    background-size: contain;
  }

  .featureNumber.number3 {
    background: url(../img/feature/feature-number03.svg) no-repeat;
    background-size: contain;
  }

  .featureTitle {
    font-size: 2.8rem;
    font-weight: var(--font-w-medium);
    color: #397E5F;
  }

  .featureText {
    font-size: 1.6rem;
    font-weight: var(--font-w-medium);
    line-height: 1.8;
    margin-bottom: 16px;
  }

  .viewMoreButton {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
    width: 200px;
    height: 50px;
    margin-left: auto;
    padding-right: 10px;
    position: relative;
    background: rgba(255 255 255 / 50%);
    border: 1px solid #666;
    border-radius: 9999px;
    font-size: 1.5rem;
    font-weight: var(--font-w-medium);
    line-height: 1;
    color: #222;
    transition: all 0.3s ease;
  }

  .viewMoreButton:hover {
    border-color: #9F8635;
    color: #9F8635;
  }

  .viewMoreButton::after {
    content: "";
    width: 12px;
    height: 12px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: url(../img/icons/icon-plus.svg) no-repeat;
    background-size: contain;
  }

  .viewMoreButton:hover::after {
    background: url(../img/icons/icon-plus-g.svg) no-repeat;
    background-size: contain;
  }

  .featureInnerContent {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    margin: 0;
    transition:
      max-height 0.9s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.7s ease,
      transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
      margin 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: max-height, opacity, transform;
  }

  .featureInnerContent.is-open {
    max-height: 1200px;
    opacity: 1;
    transform: translateY(0);
    margin: 38px 0 34px;
  }

  .featureInnerGrid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }

  .featureInnerGrid+.featureInnerGrid {
    margin-top: 58px;
  }

  .featureInnerItem {
    width: 407px;
  }

  .featureInnerItemCol {
    display: flex;
    align-items: flex-start;
    gap: 3px;
    margin-bottom: 20px;
  }

  .featureInnerColText {
    margin-top: 6px;
    padding-left: 15px;
    position: relative;
    font-size: 1.4rem;
    line-height: 1.6;
  }

  .featureInnerColText::before {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    top: 7px;
    left: 0;
    background: #DE8887;
  }

  .featureInnerImage {
    margin-bottom: 24px;
  }

  .featureInnerHead {
    margin-bottom: 6px;
    font-size: 1.8rem;
    line-height: 1.4;
    color: #CA5755;
  }

  .featureInnerText {
    font-size: 1.5rem;
    line-height: 1.6;
  }

  .featureInnerNote {
    margin-top: 14px;
    font-size: 1rem;
    line-height: 1.8;
  }

  .lifestyleGallerySection {
    margin-top: 170px;
    overflow: hidden;
  }

  .lifestyleGallerySection .contentWidth {
    max-width: 1200px;
    position: relative;
  }

  .lifestyleGalleryBand {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 260px;
    height: 460px;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0 0 0 / 50%);
    text-align: center;
    z-index: 10;
  }

  .lifestyleGalleryBandText {
    margin-top: 25px;
    font-size: 1.6rem;
    line-height: 1.8;
    color: #fff;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
  }

  .lifestyleGallerySlider {
    width: 100vw;
    overflow: hidden;
  }

  .lifestyleGallerySliderItem img {
    width: 680px;
    height: 460px;
  }

  /* 初期状態 */
  .lifestyleGallerySliderCaption {
    margin-top: 10px;
    font-size: 1.3rem;
    font-weight: var(--font-w-medium);
    line-height: 1.6;
    color: #977964;
    text-align: right;
    opacity: 0;
    transform: translateY(15px);
    transition:
      opacity 0.5s ease-out,
      transform 0.6s ease-out;
    pointer-events: none;
  }

  .slick-center .lifestyleGallerySliderCaption {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
  }

  /* Smart Tech Section */
  .smartTechSection {
    max-width: 1200px;
    padding: 110px 0 80px;
  }

  .smartTechHeader {
    text-align: center;
    margin-bottom: 50px;
  }

  .smartTechTitle {
    font-family: var(--font-f-serif);
    font-size: 3.2rem;
    font-weight: var(--font-w-semibold);
    line-height: 1.4;
    color: #397E5F;
    letter-spacing: .1em;
    margin-bottom: 30px;
  }

  .smartTechText {
    font-size: 1.6rem;
    font-weight: var(--font-w-medium);
    line-height: 1.8;
  }

  .smartTechBoard {
    background-color: #ECF6F2;
    border-radius: 20px;
    padding: 50px 100px 99px;
    position: relative;
  }

  .techRow {
    position: relative;
  }

  .techLine1,
  .techLine2 {
    width: 1px;
    height: 100%;
    background: #397E5F;
    position: absolute;
    top: 12px;
  }

  .techLine1 {
    left: -50px;
  }

  .techLine2 {
    right: -50px;
  }

  .techLine1::before,
  .techLine1::after,
  .techLine2::before,
  .techLine2::after {
    content: "";
    width: 25px;
    height: 1px;
    background: #397E5F;
    position: absolute;
  }

  .techLine1::before {
    top: 0;
    left: 0;
  }

  .techLine1::after {
    bottom: 0;
    left: 0;
  }

  .techLine2::before {
    top: 0;
    right: 0;
  }

  .techLine2::after {
    bottom: 0;
    right: 0;
  }

  .techRowHeader {
    position: relative;
  }

  .techRowTitle {
    font-size: 2.4rem;
    font-weight: var(--font-w-medium);
    color: #397E5F;
    margin-bottom: 30px;
  }

  .techRowLink {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    padding: 10px 20px 10px 18px;
    position: absolute;
    top: -6px;
    right: 0;
    background: #fff;
    font-size: 1.6rem;
    font-weight: var(--font-w-medium);
    color: #444;
    border-radius: 10px;
    transition: .3s;
  }

  .techRowLink:hover {
    color: #fff;
    background: #C6B579;
  }

  .techRowLink::after {
    content: "";
    display: block;
    width: 30px;
    height: 17px;
    background: url(../img/smarttech/arrow-smarttech.svg) no-repeat;
    background-size: contain;
    position: relative;
    top: 1px;
    transition: .3s;
  }

  .techRowLink:hover::after {
    background: url(../img/smarttech/arrow-smarttech-white.svg) no-repeat;
    background-size: contain;
  }

  .techImagePc {
    margin-left: -10px;
    padding-bottom: 15px;
  }

  .techGridSp {
    display: none;
  }

  .techGrid {
    display: flex;
    gap: 30px;
    padding-top: 40px;
  }

  .halfGrid .techCard {
    width: calc(50% - 15px);
  }

  .thirdGrid .techCard {
    width: calc(33.333% - 20px);
  }

  .techCard {
    position: relative;
  }

  .techCardBadge {
    position: absolute;
    top: -24px;
    left: -10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
  }

  .smallImage {
    height: 120px;
    margin-top: 20px;
  }

  .techCardDescription {
    font-size: 1.5rem;
    line-height: 1.6;
  }

  .techCardLabel {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 184px;
    height: 28px;
    margin-top: 10px;
    background: #fff;
    font-size: 1.5rem;
    font-weight: var(--font-w-medium);
    border-radius: 9999px;
  }

  .techDivider {
    position: relative;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 48px 0 48px;
  }

  .techPlusIcon {
    content: url(../img/icons/icon-tech-plus.png);
    width: 63px;
    height: 63px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .techActionWrapper {
    text-align: center;
    margin-top: 40px;
  }

  .techActionButton {
    display: inline-block;
    width: 500px;
    padding: 20px 60px;
    position: relative;
    background-color: #fff;
    border: 1px solid #666;
    border-radius: 9999px;
    font-size: 1.8rem;
    font-weight: var(--font-w-medium);
    line-height: 1.5;
    color: #222;
    transition: all 0.3s ease;
  }

  .techActionButton:hover {
    border-color: #9F8635;
    color: #9F8635;
  }

  .techActionButton::after {
    content: "";
    width: 12px;
    height: 12px;
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    background: url(../img/icons/icon-plus.svg) no-repeat;
    background-size: contain;
  }

  .techActionButton:hover::after {
    background: url(../img/icons/icon-plus-g.svg) no-repeat;
    background-size: contain;
  }

  .techNote {
    margin: 36px 0 0 -50px;
    font-size: 1rem;
    line-height: 1.8;
  }


  /* model */
  .topModel {
    margin-left: -50px;
    margin-right: -50px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(32px);
    transition:
      max-height 0.9s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.7s ease,
      transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: max-height, opacity, transform;
  }

  .topModel.is-open {
    max-height: 100%;
    opacity: 1;
    transform: translateY(0);
  }

  .topModelWrap {
    margin-top: 70px;
    padding: 45px 50px 50px;
    background: #fff;
    border-radius: 20px;
  }

  .topModelWrap.is-open {
    max-height: 1200px;
    opacity: 1;
    transform: translateY(0);
  }

  .topModelTitle {
    position: relative;
    padding-bottom: 16px;
    font-size: 2.4rem;
    font-weight: var(--font-w-medium);
    line-height: 1.6;
    text-align: center;
  }

  .topModelTitle::after {
    content: "";
    width: 150px;
    height: 4px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #397E5F;
  }

  .topModel-list {
    display: flex;
    flex-direction: column;
    gap: 55px;
    margin-top: 55px;
  }

  .topModel-list-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .topModel-list-item-contents {
    width: 450px;
  }

  .topModel-list-item-contents-img {
    width: 400px;
    margin: 0 auto 28px;
  }

  .topModel-list-item-contents-ttl {
    font-size: 2.4rem;
    font-weight: var(--font-w-medium);
    text-align: center;
  }

  .topModel-list-item-contents-subttl {
    margin-top: 14px;
    font-size: 1.5rem;
    font-weight: var(--font-w-medium);
    text-align: center;
  }

  .topModel-list-item-contents-txt {
    margin-top: 20px;
    font-size: 1.5rem;
    font-weight: var(--font-w-medium);
    line-height: 1.6;
  }


  .topModel-list-item-contents-caption {
    margin-top: 10px;
    font-size: 1.2rem;
  }

  .topModel-list-item-slide-ttl,
  .topModel-list-item-slide-txt {
    font-size: 1.2rem;
    font-weight: var(--font-w-medium);
    line-height: 1.6;
  }

  .topModel-list-item-slide-txt sup {
    color: #222;
  }

  .topModel-btns {
    display: flex;
    flex-direction: column;
  }

  .topModel-list-item-slide {
    flex-shrink: 0;
    width: 450px;
  }

  /*--スライダーの位置とサイズ調整--*/
  .topModelSlider {
    width: 100%;
    margin: 0 auto 95px !important;
  }

  /*-----------height調整----------*/
  .topModelSlider .slick-slide {
    height: auto !important;
  }

  .topModelSlider .slick-list {
    max-width: 554px !important;
  }

  /*-----------矢印表示----------*/
  .topModelSlider .slick-next {
    right: 0 !important;
  }

  .topModelSlider .slick-prev {
    left: 0 !important;
  }

  .topModelSlider .slick-arrow {
    z-index: 2 !important;
  }

  .topModelSlider .slick-dots li {
    width: 14px;
    height: 14px;
    margin: 0 8px;
  }

  .topModelSlider .slick-dots li button {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #E6E0D1;
    color: #fff;
  }

  .topModelSlider .slick-dots li.slick-active button {
    background: #9F8635;
    opacity: 1;
  }

  .topModelSlider .slick-dots li button:before {
    display: none;
  }

  .topModelSlider .slick-dots {
    position: absolute;
    bottom: -38px;
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
    list-style: none;
    text-align: center;
    pointer-events: auto;
  }


  /* Voices Section */
  .voicesSection {
    background-color: #EFECE3;
    padding: 80px 0;
  }

  .voicesTitle {
    padding-bottom: 28px;
    text-align: center;
    font-size: 2.4rem;
    font-weight: var(--font-w-medium);
    margin-bottom: 60px;
    position: relative;
  }

  .voicesTitle::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background-color: #D2706E;
  }

  .voiceCardsWrapper {
    display: flex;
    justify-content: space-between;
  }

  .voiceCard {
    background-color: #fff;
    border-radius: 20px;
    width: 525px;
    padding: 36px 50px 25px;
    position: relative;
  }

  .voiceCardInner {
    display: flex;
    gap: 20px;
  }

  .voiceCardIcon {
    flex-shrink: 0;
    width: 114px;
    height: 114px;
    border-radius: 50%;
    background-color: #ddd;
  }

  .bgCoral {
    content: url(../img/voice1.png);
    width: 114px;
    height: 114px;
  }

  .bgSand {
    content: url(../img/voice2.png);
    width: 114px;
    height: 114px;
  }

  .voiceLabel {
    display: inline-block;
    padding-inline: 22px;
    position: relative;
    font-size: 1.5rem;
    color: #D2706E;
    margin-bottom: 20px;
  }

  .voiceLabel::before,
  .voiceLabel::after {
    content: "";
    width: 1px;
    height: 25px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #D2706E;
  }

  .voiceLabel::before {
    left: 0;
  }

  .voiceLabel::after {
    right: 0;
  }

  .voiceQuote {
    margin-bottom: 10px;
    font-size: 1.5rem;
    line-height: 1.6;
    font-weight: var(--font-w-medium);
  }

  .voiceAddress {
    font-size: 1.5rem;
    line-height: 1.6;
  }

  .voiceButtons {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-top: 34px;
  }

  .voiceBtnBlack {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 200px;
    height: 50px;
    padding-right: 10px;
    position: relative;
    background-color: #222;
    color: #fff;
    border: 1px solid #222;
    border-radius: 9999px;
    font-size: 1.5rem;
    font-weight: var(--font-w-medium);
    flex: 1;
    transition: .3s;
  }

  .voiceBtnBlack.owner {
    justify-content: flex-start;
    padding-left: 14px;
  }

  .voiceBtnBlack:hover {
    background: #fff;
    color: #222;
  }

  .voiceBtnBlack::after {
    content: "";
    width: 10px;
    height: 11.5px;
    background: url(../img/arrow-white.svg) no-repeat;
    background-size: contain;
    position: absolute;
    top: calc(50% + 2px);
    right: 20px;
    transform: translateY(-50%);
  }

  .voiceBtnBlack:hover::after {
    background: url(../img/arrow-black.svg) no-repeat;
    background-size: contain;
  }

  .iconVideo {
    display: block;
    content: url(../img/icons/icon-movie.svg);
    width: 18px;
    height: 18px;
    margin-right: 7px;
    position: relative;
    top: 1px;
  }

  .voiceBtnBlack:hover .iconVideo {
    content: url(../img/icons/icon-movie-b.svg);
  }

  .iconUser {
    display: block;
    content: url(../img/icons/icon-user.svg);
    width: 18px;
    height: 18px;
    margin-right: 6px;
  }

  .voiceBtnBlack:hover .iconUser {
    content: url(../img/icons/icon-user-b.svg);
  }

  .modal {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    inset: 0;
    transition: opacity .3s;
    opacity: 0;
    pointer-events: none;
    z-index: 999;
  }

  .modal.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .modalOverlay {
    position: absolute;
    inset: 0;
    background: rgba(0 0 0 / 80%);
  }

  .modalContainer {
    display: flex;
    flex-direction: column;
    width: min(90%, 1200px);
    max-height: 80vh;
    position: relative;
    transform: scale(.8);
    transition: transform .35s cubic-bezier(.2, .8, .2, 1), opacity .3s;
    opacity: 0;
    z-index: 2;
  }

  .modal.is-open .modalContainer {
    transform: scale(1);
    opacity: 1;
  }

  .modalContent {
    flex: 1;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 60px 100px 100px;
    background: #fff;
    border-radius: 20px;
  }

  .modalClose {
    width: 88px;
    height: 27px;
    position: absolute;
    top: -38px;
    right: 10px;
    background: url(../img/modal/modal-close.svg) no-repeat;
    background-size: contain;
    border: none;
  }

  .modalHeadWrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
  }

  .modalHead {
    padding-left: 40px;
    position: relative;
    font-size: 1.6rem;
    font-weight: var(--font-w-medium);
  }

  .modalHead::before {
    content: "";
    width: 30px;
    height: 4px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: #D2706E;
  }

  .modalTitle {
    margin-bottom: 20px;
    font-family: var(--font-f-serif);
    font-size: 2.3rem;
    font-weight: var(--font-w-semibold);
    line-height: 1.5;
    text-align: center;
  }

  .modalArea {
    font-size: 1.5rem;
    font-weight: var(--font-w-medium);
    text-align: center;
  }

  .modalMainImage {
    margin-bottom: 30px;
  }

  .modalItemContent {
    flex: 1;
  }

  .modalCol {
    display: flex;
    flex-direction: column;
    gap: 78px;
    margin-top: 74px;
  }

  .modalItem {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    flex-direction: row-reverse;
    gap: 64px;
  }

  .modalItemReverse {
    flex-direction: row;
  }

  .modalItemHead {
    padding: 20px 0;
    font-size: 1.8rem;
    font-weight: var(--font-w-medium);
    line-height: 1.6;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    font-feature-settings: "palt";
  }

  .modalItemText {
    margin-top: 24px;
    font-size: 1.5rem;
    font-weight: var(--font-w-medium);
    line-height: 1.8;
  }

  .modalItemText span {
    padding: 0 2px;
    background: #EADFB5;
  }

  .modalItemText sup {
    vertical-align: super;
    font-size: smaller;
  }

  .modalItemNote {
    margin-top: 12px;
    font-size: 1rem;
    line-height: 1.8;
  }

  .modalItemImage {
    flex-shrink: 0;
    width: 528px;
  }

  .modalCloseButtonWrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
  }

  .modalCloseButton {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 50px;
    position: relative;
    background: #222;
    font-size: 1.5rem;
    font-weight: var(--font-w-medium);
    color: #fff;
    border: 1px solid #222;
    border-radius: 9999px;
    transition: .3s;
  }

  .modalCloseButton:hover {
    background: #fff;
    color: #222;
  }

  .modalCloseButton::after {
    content: "";
    width: 16px;
    height: 16px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: url(../img/icons/icon-close-w.svg) no-repeat;
    background-size: contain;
  }

  .modalCloseButton:hover::after {
    background: url(../img/icons/icon-close.svg) no-repeat;
    background-size: contain;
  }

  /* Consultation Banner Section */
  .consultationBannerSection {
    margin-top: 60px;
    padding: 130px 20px;
    background: url(../img/consultation_bg.jpg) no-repeat;
    background-size: cover;
  }

  .consultationActionWrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .consultationActionBtn {
    width: 500px;
    background-color: rgba(255, 255, 255, 0.9);
    font-size: 1.8rem;
    font-weight: var(--font-w-medium);
    color: #9F8635;
    text-align: center;
    padding: 20px 40px;
    border-radius: 30px;
    border: 4px solid #9F8635;
    transition: all 0.3s ease;
  }

  .consultationActionBtn:hover {
    background-color: rgba(239 230 197 / 90%);
  }

  .consultationActionBtn::before {
    content: "";
    display: block;
    margin: 0 auto 15px;
  }

  .consultationActionBtn:nth-child(1):before {
    width: 100px;
    height: 58px;
    background: url(../img/consultation-illust1.svg) no-repeat;
    background-size: contain;
  }

  .consultationActionBtn:nth-child(2):before {
    width: 123px;
    height: 59px;
    background: url(../img/consultation-illust2.svg) no-repeat;
    background-size: contain;
    position: relative;
    top: -1px;
  }

  /* Subsidy Section */
  .subsidySection {
    padding: 100px 0;
  }

  .subsidyHeader {
    text-align: center;
    margin-bottom: 55px;
  }

  .subsidyTitle {
    font-family: var(--font-f-serif);
    font-size: 3.2rem;
    font-weight: var(--font-w-semibold);
    color: #397E5F;
    letter-spacing: .1em;
    margin-bottom: 32px;
  }

  .subsidyText {
    font-size: 1.6rem;
    font-weight: var(--font-w-medium);
    line-height: 1.8;
  }

  .subsidyImage {
    margin-bottom: 40px;
  }

  .subsidyFootnotes {
    font-size: 1rem;
    line-height: 1.8;
  }

  /* Movie Section */
  .movieSection {
    padding: 110px 0 100px;
    background: #C4BDA8;
  }

  .movieTitle {
    padding-bottom: 28px;
    text-align: center;
    font-size: 2.4rem;
    font-weight: var(--font-w-medium);
    margin-bottom: 40px;
    position: relative;
  }

  .movieTitle::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background-color: #D2706E;
  }

  .movieDesc {
    margin-bottom: 60px;
    font-size: 1.6rem;
    font-weight: var(--font-w-medium);
    line-height: 1.8;
    text-align: center;
  }

  .movieInner {
    padding: 60px 0;
    background: rgba(255 255 255 / 70%);
  }

  .movieCol {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
  }

  .movieContent {
    width: 512px;
  }

  .movieThum {
    width: 512px;
    height: 288px;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
  }

  .movieThum::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: 12px solid rgba(255 255 255 / 60%);
    border-radius: 30px;
    pointer-events: none;
    z-index: 1;
  }

  .movieThum::after {
    content: "";
    width: 90px;
    height: 90px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: url(../img/icons/icon-play.svg) no-repeat;
    background-size: contain;
    pointer-events: none;
  }

  .movieThum img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
  }

  .movieThum:hover img {
    transform: scale(1.06);
  }

  .movieBody {
    margin-top: 30px;
  }

  .movieHead {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 6px;
    position: relative;
    font-family: var(--font-f-serif);
    font-size: 2rem;
    font-weight: var(--font-w-semibold);
    line-height: 1.6;
    border-bottom: 1px solid #888;
  }

  .movieHead::before {
    content: "";
    width: 23px;
    height: 15px;
    background: url(../img/icons/icon-camera.svg) no-repeat;
    background-size: contain;
    position: relative;
    top: 1px;
  }

  .movieText {
    font-size: 1.6rem;
    font-weight: var(--font-w-medium);
    line-height: 1.8;
  }


  /* Catalog Section */
  .catalogSection {
    padding: 95px 20px 100px;
    background: #F9FAFA;
  }

  .catalogHeader {
    text-align: center;
    margin-bottom: 50px;
  }

  .catalogTitle {
    padding-bottom: 28px;
    text-align: center;
    font-size: 2.4rem;
    font-weight: var(--font-w-medium);
    margin-bottom: 40px;
    position: relative;
  }

  .catalogTitle::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background-color: #D2706E;
  }

  .catalogText {
    font-size: 1.6rem;
    font-weight: var(--font-w-medium);
    line-height: 1.8;
  }

  .catalogGridWrapper {
    margin-bottom: 50px;
  }

  .catalogGrid {
    display: flex;
    gap: 40px;
    justify-content: center;
  }

  .catalogItem {
    text-align: center;
  }

  .catalogItemTitle {
    font-size: 1.5rem;
    font-weight: var(--font-w-medium);
    line-height: 1.6;
  }

  .catalogItemTitle span {
    display: block;
    font-size: 2rem;
    font-weight: var(--font-w-semibold);
  }

  .catalogActionWrapper {
    display: flex;
    justify-content: center;
  }

  .catalogActionButton {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 500px;
    height: 90px;
    background-color: #9F8635;
    position: relative;
    color: #fff;
    border-radius: 9999px;
    font-size: 1.8rem;
    font-weight: var(--font-w-medium);
    transition: all 0.3s ease;
  }

  .catalogActionButton:hover {
    background-color: #C6B579;
  }

  .catalogActionButton::after {
    content: "";
    width: 10px;
    height: 11.5px;
    background: url(../img/arrow-white.svg) no-repeat;
    background-size: contain;
    position: absolute;
    top: calc(50% + 2px);
    right: 40px;
    transform: translateY(-50%);
    transition: .3s;
  }

  /* Sticky Catalog Button */
  .bannerFairClose {
    width: 26px;
    height: 26px;
    position: absolute;
    top: -14px;
    right: -14px;
    background: url(../img/banner-fair-close.svg) no-repeat;
    background-size: contain;
    z-index: 1;
    box-shadow: 0 3px 3px rgba(0, 0, 0, .3);
    border-radius: 50%;
  }

  .stickyCatalogButton {
    display: flex;
    flex-direction: column;
    /* 
    width: 208px;
    height: 80px;
    */
    position: fixed;
    bottom: 110px;
    right: 30px;
    /* 
    background-color: #FAF8F2;
    border: 1px solid #BABABA;
    */
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease, transform 0.3s ease;
  }

  .stickyCatalogButton img {
    box-shadow: 0 3px 3px rgba(0, 0, 0, .3);
    border-radius: 17px;
  }

  .stickyCatalogButton.is-visible {
    opacity: 1;
    visibility: visible;
  }

  .stickyCatalogButton:hover {
    opacity: .8 !important;
  }

  .stickyCatalogImage {
    width: 208px;
    position: absolute;
    top: -72px;
    left: 50%;
    transform: translateX(-50%);
  }

  .stickyCatalogTextBundle {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 10px 5px;
    background: #D2706E;
    text-align: center;
  }

  .stickyHeadSp {
    display: none;
  }

  .stickyText {
    display: block;
    font-size: 1.4rem;
    font-weight: var(--font-w-medium);
    color: #fff;
  }

  /*------------------------------------
  footer
-------------------------------------*/
  #wrap {
    overflow: initial !important;
  }

  .to-top {
    position: fixed;
    display: flex;
    width: 42px;
    height: 42px;
    bottom: 20px;
    left: 60%;
    cursor: pointer;
    margin-left: 458px;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.5s ease;
  }

  .to-top.visible {
    opacity: 1;
  }

  @media (max-width: 480px) {
    .to-top {
      bottom: 15px;
      left: 86%;
      margin-left: inherit;
      z-index: 10;
    }

    .to-top a {
      left: -40% !important;
      bottom: 20px;
    }
  }

  #gb_footer {
    background: #fff;
    width: 100%;
    min-width: 810px;
    border-top: solid 1px #ececec;
    position: relative;
    letter-spacing: 0;
    z-index: 999;
  }

  #mtop #gb_footer {
    min-width: 990px;
  }

  .gb_footer_inner {
    position: relative;
    width: 98%;
    padding: 0;
    margin: auto;
    display: flex;
    justify-content: flex-end;
    align-content: flex-start;
  }

  .gb_footer_misawa_logo_sp {
    display: none;
  }

  .gb_footer_inner img.gb_plt {
    max-width: 300px;
    width: 100%;
    margin-left: 13px;
  }

  #gb_footer_l {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    align-content: center;
    padding: 22px 0 0;
    color: #666;
    position: absolute;
    left: 0;
  }

  #gb_footer_l p {
    position: relative;
    top: 4px;
    font-size: 1.1rem;
    padding-left: 20px;
    margin: 0;
    text-align: left;
    line-height: 1.5;
  }

  #gb_footer_misawa {
    padding-top: 14px;
    right: 0;
    text-align: right;
  }

  .gb_footer_misawa_logo {
    padding-right: 33px;
  }

  #gb_footer_misawa ul {
    display: flex;
    justify-content: flex-end;
    align-content: center;
    margin: 24px 0 8px;
  }

  #gb_footer_misawa ul li {
    list-style: none;
    font-size: 11px;
    margin-left: 15px;
    width: initial;
  }

  #gb_footer_misawa ul li::before {
    content: "";
    margin-right: 1px;
    color: #666;
  }

  #gb_footer_misawa ul li a {
    text-decoration: none;
    color: #666;
  }

  .f_hide {
    display: none;
  }

  #mtop .f_hide {
    display: block !important;
  }

  #gb_footer_copyright {
    margin: 0 auto;
    padding: 0 0 15px;
    color: #666;
    text-align: right;
    line-height: 13px;
    font-size: 11px;
  }

  .footer_sp {
    display: none;
  }

  .footSitemap {
    border-bottom: none !important;
  }

  /* --------- ページトップボタン ----------- */
  #gPagetop {
    transition: 0.3s;
    cursor: pointer;
  }

  #gPagetop .pagetopBtn {
    position: fixed;
    position: relative;
    right: 30px;
    display: block;
    width: 35px;
    height: 35px;
    border-radius: 100%;
    z-index: 100;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  #gPagetop .pagetopBtn::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0px;
    display: block;
    width: 35px;
    height: 35px;
    border-radius: 100%;
    background-image: url(../img/pagetop_icon.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transition: all 0.2s ease;
    z-index: 100;
  }

  #gPagetop .stickyCatalogButton,
  #gPagetop .pagetopBtn {
    transition:
      transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.3s ease,
      visibility 0.3s ease;
  }
}