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

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

  body {
    font-size: 1.4em;
    letter-spacing: 0.05em;
  }

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

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

  .spNone {
    display: none !important;
  }

  button {
    letter-spacing: 0.05em;
  }

  /* フェードイン */
  .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 {
    width: 100%;
    padding: 0 20px;
  }

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

  .headerInner {
    position: relative;
  }

  .headerLogo {
    width: 75px;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1;
  }

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

  .heroInner {
    position: relative;
  }

  .heroSubImage {
    aspect-ratio: 375 / 480;
  }

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

  .heroMainText,
  .heroMainImage,
  .heroMainDecor {
    display: none;
  }

  .heroTitle {
    margin: 50px auto 0;
    position: relative;
    text-align: center;
  }

  .heroTitle::before {
    content: "";
    aspect-ratio: 375 / 222;
    position: absolute;
    inset: 0;
    top: -30%;
    background-image: url(../img/hero/hero-bg-sp.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
  }

  .heroTitle img {
    max-width: 260px;
    display: block;
    margin: 0 auto;
    transform: translateX(-3px);
  }

  .heroDesc {
    margin-top: 44px;
    padding: 0 20px;
    font-size: 1.6rem;
    font-weight: var(--font-w-medium);
    line-height: 1.8;
  }

  .heroMainTextSp {
    width: 202px;
    position: absolute;
    top: 110px;
    left: 20px;
  }

  /* Features Section */
  .featuresSection {
    margin-top: 8%;
    padding: 60px 0;
    position: relative;
    background-color: #F2F0E9;
  }

  .featuresSection::before {
    content: "";
    width: 100%;
    aspect-ratio: 375 / 30;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-100%);
    background: url(../img/feature/features-top-sp.png) no-repeat center / contain;
  }

  .featuresContainer {
    display: flex;
    flex-direction: column;
    gap: 38px;
  }

  .featuresTitle {
    display: block;
  }

  .featureList {
    display: flex;
    flex-direction: column;
    gap: 60px;
  }

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

  .featureItem:last-child {
    padding-bottom: 0;
  }

  .featureItem:last-child .featureInnerGrid {
    gap: 10px;
  }

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

  .featureNumber {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    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: 2rem;
    font-weight: var(--font-w-medium);
    line-height: 1.5;
    color: #397E5F;
  }

  .featureHeader+div {
    display: flex;
    flex-direction: column;
  }

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

  .viewMoreButton {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    align-self: center;
    width: 200px;
    height: 50px;
    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;
  }

  .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;
  }

  .featureInnerContent {
    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;
  }

  .featureInnerContent.is-open {
    max-height: 100%;
    opacity: 1;
    transform: translateY(0);
    margin: 20px 0 0;
  }

  .featureInnerGrid {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

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

  .featureInnerItem {
    width: 100%;
  }

  .featureInnerImage {
    margin-bottom: 20px;
  }

  .featureInnerItemCol {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    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;
  }

  .featureInnerHead {
    margin-bottom: 10px;
    font-size: 1.7rem;
    font-weight: var(--font-w-bold);
    line-height: 1.4;
    text-align: center;
    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: 100px;
  }

  .lifestyleGalleryBand {
    display: none;
  }

  .lifestyleGallerySlider {
    overflow: hidden;
  }

  .lifestyleGallerySliderItem img {
    width: 273px;
    height: 185px;
  }

  /* 初期状態 */
  .lifestyleGallerySliderCaption {
    margin-top: 10px;
    font-size: 1rem;
    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 {
    padding: 64px 20px 70px;
  }

  .smartTechHeader {
    margin-bottom: 40px;
  }

  .smartTechTitle {
    font-family: var(--font-f-serif);
    font-size: 2.2rem;
    font-weight: var(--font-w-semibold);
    line-height: 1.8;
    color: #397E5F;
    text-align: center;
    letter-spacing: .1em;
    margin-bottom: 20px;
  }

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

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

  .techRow {
    padding-bottom: 50px;
    position: relative;
  }

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

  .techLine1 {
    top: 100px;
  }

  .techRow:nth-child(1) .techLine1 {
    top: 200px;
  }

  .techLine2 {
    bottom: 0;
  }

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

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

  .techLine1::after {
    top: 0;
    right: 0;
  }

  .techLine2::before {
    bottom: 0;
    left: 0;
  }

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

  .techRowHeader {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .techRowTitle {
    font-size: 1.9rem;
    font-weight: var(--font-w-medium);
    line-height: 1.8;
    color: #397E5F;
    text-align: center;
  }

  .techRowLink {
    width: 100%;
    padding: 8px 20px 10px 0;
    position: relative;
    background: #fff;
    font-size: 1.5rem;
    font-weight: var(--font-w-medium);
    line-height: 1.6;
    text-align: center;
    color: #444;
    border-radius: 10px;
  }

  .techRowLink::after {
    content: "";
    display: block;
    width: 30px;
    height: 17px;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    background: url(../img/smarttech/arrow-smarttech.svg) no-repeat;
    background-size: contain;
  }

  .techImagePc {
    display: none;
  }

  .techGridSp {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 90px;
    padding: 0 10px;
  }

  .techRow:nth-child(1) .techGridSp {
    margin-top: 110px;
  }

  .techCard {
    position: relative;
  }

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

  .techCardDescription {
    margin-top: 14px;
    font-size: 1.5rem;
    line-height: 1.6;
  }

  .techCardNote {
    margin-top: 10px;
    font-size: 1rem;
    line-height: 1.6;
  }

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

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

  .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: 50px;
  }

  .techActionButton {
    display: inline-block;
    width: 100%;
    padding: 13px 20px 13px 10px;
    position: relative;
    background-color: #fff;
    border: 1px solid #666;
    border-radius: 9999px;
    font-size: 1.4rem;
    font-weight: var(--font-w-medium);
    color: #222;
    line-height: 1.5;
  }

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

  .techNote {
    margin: 20px 0 0;
    font-size: 1rem;
    line-height: 1.7;
  }


  /* model */
  .topModel {
    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 {
    padding: 50px 10px 45px;
    background: #fff;
    border-radius: 20px;
  }

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

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

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

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

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

  .topModel-list-item-contents {
    width: 100%;
  }

  .topModel-list-item-contents-img {
    margin-bottom: 20px;
  }

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

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

  .topModel-list-item-contents-txt {
    margin-top: 18px;
    font-size: 1.5rem;
    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: #000;
  }

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

  .topModel-list-item-slide {
    width: 100%;
    margin-top: 22px;
  }

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

  .topModelSlider .slick-slide {
    aspect-ratio: 1 / 1;
    width: 100%;
    overflow: hidden;
  }

  .topModelSlider .slick-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .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: 12px;
    height: 12px;
    margin: 0 9px;
  }

  .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: -44px;
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
    list-style: none;
    text-align: center;
    pointer-events: auto;
  }


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

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

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

  .voiceCardsWrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .voiceCard {
    background-color: #fff;
    border-radius: 20px;
    width: 100%;
    padding: 32px 18px 30px;
    position: relative;
  }

  .voiceCardInner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }

  .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);
    text-align: left;
  }

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

  .voiceButtons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 34px;
  }

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

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

  .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: 16px;
    transform: translateY(-50%);
  }

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

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

  .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: 100%;
    max-height: 70vh;
    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: 30px 20px 50px;
    background: #fff;
    border-radius: 20px;
  }

  .modalClose {
    width: 88px;
    height: 27px;
    position: absolute;
    top: -38px;
    right: 20px;
    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: 18px;
  }

  .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;
  }

  .modalInner {
    text-align: center;
  }

  .modalMainImage {
    margin-bottom: 30px;
  }

  .modalTitle {
    margin-bottom: 20px;
    font-family: var(--font-f-serif);
    font-size: 1.8rem;
    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;
  }

  .modalCol {
    display: flex;
    flex-direction: column;
    gap: 45px;
    margin-top: 45px;
    text-align: left;
  }

  .modalItem {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .modalItemHead {
    padding: 20px 0;
    font-size: 1.5rem;
    font-weight: var(--font-w-medium);
    line-height: 1.6;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    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 {
    font-size: 1rem;
    line-height: 1.8;
    margin-top: 12px;
  }

  .modalItemContent {
    flex: 1;
  }

  .modalItemImage {
    width: 100%;
  }

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

  .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;
  }

  .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;
  }

  /* Consultation Banner Section */
  .consultationBannerSection {
    margin-top: 60px;
    padding: 70px 0;
    background: url(../img/consultation_bg_sp.jpg) no-repeat;
    background-size: cover;
    background-position: center;
  }

  .consultationActionWrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: column;
    gap: 32px;
  }

  .consultationActionBtn {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    font-size: 1.5rem;
    font-weight: var(--font-w-medium);
    color: #9F8635;
    text-align: center;
    padding: 14px 10px;
    border-radius: 30px;
    border: 4px solid #9F8635;
  }

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

  .consultationActionBtn:nth-child(1):before {
    width: 107px;
    height: 51px;
    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: 64px 20px 70px;
  }

  .subsidyHeader {
    margin-bottom: 55px;
  }

  .subsidyTitle {
    font-family: var(--font-f-serif);
    font-size: 2.2rem;
    font-weight: var(--font-w-semibold);
    line-height: 1.8;
    color: #397E5F;
    text-align: center;
    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: 64px 0 60px;
    background: #C4BDA8;
  }

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

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

  .movieDesc {
    margin-bottom: 50px;
    padding: 0 20px;
    font-size: 1.5rem;
    font-weight: var(--font-w-medium);
    line-height: 1.8;
  }

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

  .movieCol {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .movieThum {
    aspect-ratio: 335 / 188;
    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: 20px;
    pointer-events: none;
  }

  .movieThum::after {
    content: "";
    width: 80px;
    height: 80px;
    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;
  }

  .movieBody {
    margin-top: 20px;
  }

  .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: 1.9rem;
    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.5rem;
    font-weight: var(--font-w-medium);
    line-height: 1.8;
  }


  /* Catalog Section */
  .catalogSection {
    padding: 60px 0 80px;
    background: #F9FAFA;
  }

  .catalogHeader {
    margin-bottom: 50px;
  }

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

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

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

  .catalogGridWrapper {
    margin-bottom: 50px;
  }

  .catalogGrid {
    display: flex;
    flex-direction: column;
    gap: 45px;
  }

  .catalogItem {
    padding: 0 20px;
    text-align: center;
  }

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

  .catalogItemTitle span {
    display: block;
    font-size: 1.8rem;
    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: 100%;
    height: 70px;
    padding-right: 20px;
    background-color: #9F8635;
    position: relative;
    color: #fff;
    border-radius: 9999px;
    font-size: 1.5rem;
    font-weight: var(--font-w-medium);
    transition: all 0.3s ease;
  }

  .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%);
  }

  /* 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;
    /* 
    width: 100%;
    height: 80px;
    */
    position: fixed;
    bottom: 0;
    right: 20px;
    /* 
    left: 0;
    padding: 0 20px;
    background-color: #FAF8F2;
    border-top: 1px solid #BABABA;
    border-bottom: 1px solid #BABABA;
    */
    z-index: 101;
    opacity: 0;
    visibility: hidden;
    transition: opacity 2s ease, visibility 2s ease;
  }

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

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

  .stickyCatalogImage {
    width: 50%;
    position: relative;
    top: -18px;
    text-align: center;
  }

  .stickyCatalogImage img {
    max-width: 172px;
  }

  .stickyCatalogTextBundle {
    width: 50%;
    padding-top: 14px;
    text-align: center;
  }

  .stickyHeadSp {
    margin-bottom: 8px;
    font-size: 1.5rem;
    font-weight: var(--font-w-medium);
  }

  .stickyText {
    display: inline-block;
    padding: 8px;
    background: #D2706E;
    font-size: 1.15rem;
    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;
  }

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

  #gb_footer_l {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .gb_footer_misawa_logo_sp {
    max-width: 145px;
  }

  .gb_plt {
    max-width: 223px;
    margin-top: 10px;
    padding-top: 16px;
    border-top: 1px solid #ccc;
  }

  #gb_footer_l p {
    display: none;
  }

  .gb_footer_misawa_logo {
    display: none;
  }

  #gb_footer_misawa ul {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    margin: 22px 0 14px;
    padding: 0 13px;
  }

  #gb_footer_misawa ul li {
    list-style: none;
    font-size: 1.1rem;
    margin-left: 22px;
    width: initial;
    line-height: 1.5;
  }

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

  #gb_footer_misawa ul li a {
    color: #666;
  }

  .f_hide {
    display: none;
  }

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

  #gb_footer_copyright {
    margin: 0 auto;
    padding: 0 0 25px;
    color: #666;
    text-align: center;
    line-height: 13px;
    font-size: 1.1rem;
  }

  .footer_sp {
    display: none;
  }

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

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

  #gPagetop .pagetopBtn {
    position: fixed;
    position: relative;
    right: 20px;
    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;
  }
}