    @charset "utf-8";
    /* COMMON.CSS */
    /* ===================================================
        reset
    =================================================== */
    * {
      margin: 0;
      padding: 0;
    }
    a {
      color: inherit;
      text-decoration: none;
    }
    li {
      list-style-type: none;
    }
    /* ===================================================
        fants
    =================================================== */
    /* =====　size　===== */
    html {
      font-size: 16px;
    }
    body {
      line-height: 1.6;
    }
    h1 {
      font-size: 2.5rem;
    } /*40px*/
    h2 {
      font-size: 1.5rem;
    } /*24px*/
    h3 {
      font-size: 1.25rem;
    } /*20px*/
    h4 {
      font-size: 1.125rem;
    } /*18px*/
    p {
      font-size: 1rem;
    } /*16px*/
    .p-small {
      font-size: 0.875rem;
    } /*14px*/
    .caption {
      font-size: 0.75rem;
    } /*12px*/
    /* =====　font-family　===== */
    /* 日本語 */
    h1, h2, h3, h4, p, a, .p-small, .caption {
      font-family: "Noto Sans JP", sans-serif;
      font-optical-sizing: auto;
      font-weight: 900;
      font-style: normal;
      color: #1A1A18;
    }
    /* 英語*/
    .EN {
      font-family: "Montserrat", sans-serif;
      font-optical-sizing: auto;
      font-weight: 900;
      font-style: normal;
    }
    .EN-Alt {
      font-family: "Montserrat Alternates", sans-serif;
    }
    /*font-weight調整*/
    h2, h3 {
      font-weight: 600;
    }
    h4 {
      font-weight: 500;
    }
    p, a, .p-small, .caption {
      font-weight: 400;
    }
    /* =====　基盤　===== */
    body {
      background: #FAFAFA;
    }
    .wrap {
      width: 100%;
      height: auto;
      margin: 0 auto;
      background: #FAFAFA;
      box-sizing: border-box;
    }
    section {
      width: 100%;
    }
    /* =====　画像　===== */
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    .inner {
      padding-left: 10px;
      padding-right: 10px;
      box-sizing: border-box;
    }
    /* ===================================================
   subpage fv title
=================================================== */
    .subpage-fv {
      position: relative;
    }
    .subpage-fv h1 {
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 100%;
      max-width: 1040px;
      padding: 0 20px 20px;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      z-index: 1;
    }
    .subpage-fv h1::after {
      content: "";
      display: block;
      width: 100%;
      height: 1px;
      margin-top: 10px;
      background: #1A1A18;
    }
    .subpage-fv h1 .EN-Alt {
      display: block;
      line-height: 1;
    }
    .subpage-fv h1 .ja-title {
      display: block;
      margin-top: 5px;
      line-height: 1;
    }
    /* ===================================================
        header
=================================================== */
    header {
      height: 60px;
      width: 100%;
      position: fixed;
      top: 0;
      left: 0;
      background: rgba(26, 26, 24, 0.8);
      z-index: 100;
    }
    .inner-header {
      width: 100%;
      height: 60px;
      margin: 0 auto;
      padding-left: 10px;
      padding-right: 10px;
      box-sizing: border-box;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .logo {
      flex: 0 0 auto;
    }
    .logo a {
      display: flex;
      align-items: center;
      gap: 5px;
      height: 100%;
    }
    .logo-text {
      padding-left: 5px;
      font-size: 0.9rem;
      font-weight: 700;
      color: #F7F6F2;
      letter-spacing: 0.08em;
      line-height: 1;
    }
    .logo-text span {
      display: inline;
    }
    .logo-text span + span::before {
      content: " ";
    }
    .inner-header img {
      width: 50px;
      height: auto;
    }
    .header-right {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 0;
      flex: none;
      width: auto;
      margin-left: auto;
    }
    .header-gn {
      display: none;
    }
    .header-gn-list {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 30px;
    }
    .header-gn-item {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: auto;
      color: #F7F6F2;
      line-height: 1;
      transition: 0.3s;
    }
    .header-gn-item img {
      display: none;
    }
    .header-gn-item span {
      font-size: 0.9rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      color: #F7F6F2;
      transition: 0.3s;
    }
    .lang {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      height: 100%;
      flex: 0 0 auto;
    }
    .lang-current {
      appearance: none;
      border: none;
      background: transparent;
      color: #F7F6F2;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 6px 10px;
      border-radius: 6px;
      transition: 0.2s;
    }
    .lang-current:hover, .lang-current:active {
      background: rgba(255, 255, 255, 0.08);
      opacity: 0.85;
      transform: scale(0.96);
    }
    .lang-current::before {
      content: "";
      display: inline-block;
      width: 25px;
      height: 25px;
      background: url("../images/language.svg") center/contain no-repeat;
      flex-shrink: 0;
    }
    .lang-list {
      display: none;
      position: absolute;
      top: 50px;
      right: 0;
      width: 160px;
      padding: 8px 0;
      background: rgba(26, 26, 24, 0.95);
      border-radius: 8px;
      box-sizing: border-box;
    }
    .lang-list li {
      width: 100%;
    }
    .lang-list button {
      appearance: none;
      border: none;
      background: transparent;
      width: 100%;
      padding: 10px 16px;
      text-align: left;
      color: #F7F6F2;
      font-size: 0.875rem;
      font-weight: 400;
      transition: 0.2s;
    }
    .lang-list button:hover, .lang-list button:active {
      background: rgba(255, 255, 255, 0.08);
    }
    .google-translate-box {
      display: none;
    }
    /* ===================================================
        footer
    =================================================== */
    footer {
      margin: 0 auto;
      text-align: center;
      align-items: center;
      padding-top: 50px;
      padding-bottom: 30px;
      background: #D6EEF0;
    }
    .footer-block-all {
      margin-bottom: 80px;
    }
    .company, .footer-info, .footer-nav {
      padding-bottom: 15px;
    }
    .footer-block-left img {
      margin: 0 auto;
      padding-bottom: 10px;
    }
    .company {
      font-weight: 600;
      font-size: 1.25rem;
      line-height: 1.1;
    }
    .footer-nav {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
    }
    .footer-sns {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 15px;
      padding-bottom: 15px;
    }
    .footer-sns img {
      width: 35px;
      aspect-ratio: 1 / 1;
      object-fit: contain;
    }
    .footer-sns a {
      display: inline-block;
      transition: 0.2s;
    }
    .footer-sns a:hover, .footer-sns a:active {
      transform: scale(0.95);
      opacity: 0.85;
    }
    .footer-info {
      width: 100%;
      max-width: 320px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 6px;
      text-align: left;
    }
    .footer-info-row {
      display: flex;
      justify-content: flex-start;
      align-items: baseline;
      gap: 6px;
    }
    .footer-info dt, .footer-info dd {
      margin: 0;
      font-size: 1rem;
      font-weight: 400;
      color: #1A1A18;
      line-height: 1.6;
    }
    .footer-info dt::after {
      content: " ▶";
    }
    .footer-info a {
      text-decoration: none;
    }
    .footer-info a:hover, .footer-info a:active {
      text-decoration: underline;
      text-underline-offset: 3px;
    }
    .footer-nav a {
      display: inline-block;
      text-decoration: none;
    }
    .footer-nav a:hover, .footer-nav a:active {
      text-decoration: underline;
      text-underline-offset: 3px;
    }
    .footer-nav a + a {
      position: relative;
      margin-left: 16px;
      padding-left: 16px;
    }
    .footer-nav a + a::before {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 1px;
      height: 12px;
      background: #1A1A18;
    }
    .footer-block .caption, .footer-block .caution {
      font-weight: 500;
    }
    .footer-block .caution {
      font-size: 1rem;
    }
    /* =====　下部固定nav　===== */
    .footer-nav-phone {
      background: #1A1A18;
      position: fixed;
      bottom: 0;
      left: 0;
      z-index: 300;
      height: 70px;
      width: 100%;
    }
    .footer-nav-phone ul {
      height: 100%;
      display: flex;
      justify-content: space-between;
    }
    .footer-nav-phone li {
      width: 25%;
      height: 100%;
      margin: 0 auto;
      align-items: center;
    }
    .footer-nav-phone a, .footer-nav-phone button {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 1px;
      width: 100%;
      height: 100%;
      color: #F7F6F2;
      font-weight: 800;
      transition: 0.2s;
    }
    .footer-nav-phone img {
      width: 35px;
      height: auto;
      margin: 0 auto;
      padding-top: 10px;
    }
    .footer-nav-phone .menu-toggle {
      appearance: none;
      border: none;
      background: transparent;
    }
    /* =====　下部固定のホバーアクティブ時の挙動　===== */
    .footer-nav-phone a:hover, .footer-nav-phone a:active, .footer-nav-phone button:hover, .footer-nav-phone button:active {
      transform: scale(0.96);
      opacity: 0.85;
      background: rgba(255, 255, 255, 0.08);
    }
    /* =====　ハンバーガーメニュー　===== */
    .hamburger {
      display: inline-block;
      width: 30px;
      height: 45px;
      position: relative;
      margin-top: 10px;
    }
    .hamburger::before, .hamburger::after, .hamburger span {
      content: "";
      position: absolute;
      left: 0;
      width: 100%;
      height: 2px;
      background: #F7F6F2;
      transition: 0.3s;
    }
    .hamburger::before {
      top: 50%;
      transform: translateY(-8px);
    }
    .hamburger span {
      top: 50%;
      transform: translateY(0);
    }
    .hamburger::after {
      top: 50%;
      transform: translateY(8px);
    }
    /* =====　メニューが開いたときの挙動　===== */
    .menu-toggle.is-open .hamburger::before {
      top: 50%;
      transform: translateY(0) rotate(45deg);
    }
    .menu-toggle.is-open .hamburger span {
      opacity: 0;
    }
    .menu-toggle.is-open .hamburger::after {
      top: 50%;
      transform: translateY(0) rotate(-45deg);
    }
    .menu-label {
      transition: 0.3s;
    }
    /* =====　背景設定　===== */
    .menu-overlay {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background: rgba(0, 0, 0, 0.45);
      opacity: 0;
      visibility: hidden;
      transition: 0.3s;
      z-index: 150;
    }
    .menu-overlay.is-open {
      opacity: 1;
      visibility: visible;
    }
    /* =====　ハンバーガーメニューの中身　===== */
    .sp-menu {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 70px;
      width: 70%;
      background: #1A1A18;
      transform: translateX(100%);
      transition: 0.3s;
      z-index: 200;
      overflow-y: auto;
    }
    .sp-logo-text {
      display: block;
      color: #F7F6F2;
      font-size: 1.1rem;
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: 0.08em;
    }
    .sp-menu-logo a {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .sp-menu.is-open {
      transform: translateX(0);
    }
    .sp-menu-inner {
      min-height: 100%;
      padding: 24px 20px 40px;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
    }
    .sp-menu-head {
      margin-bottom: 32px;
    }
    .sp-menu-logo img {
      width: 60px;
      height: auto;
    }
    .sp-menu-list {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-bottom: 40px;
    }
    .sp-menu-list a {
      color: #F7F6F2;
      font-size: 1.25rem;
      font-weight: 600;
      display: block;
      padding-bottom: 8px;
      border-bottom: 1px solid rgba(247, 246, 242, 0.2);
      transition: 0.3s;
    }
    .sp-menu-list a:hover, .sp-menu-list a:active {
      color: transparent;
      -webkit-text-stroke: 1px #F7F6F2;
      text-stroke: 1px #F7F6F2;
    }
    .sp-menu-sub {
      margin-top: auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .sp-menu-sub a {
      color: #F7F6F2;
      font-size: 0.875rem;
      opacity: 0.9;
      transition: 0.3s;
    }
    .sp-menu-sub a:hover, .sp-menu-sub a:active {
      text-decoration: underline;
      text-underline-offset: 4px;
    }
    .sp-menu-logo {
      line-height: 1;
    }
    .sp-menu-logo img {
      display: block;
    }
    .top-btn {
      position: fixed;
      right: 10px;
      bottom: 80px;
      z-index: 10;
    }
    .top-btn a {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 44px;
      height: 44px;
      background: rgba(26, 26, 24, 0.8);
      color: #F7F6F2;
      border-radius: 50%;
      font-size: 0.875rem;
      text-decoration: none;
    }
    .hamburger {
      width: 30px;
      height: 45px;
      position: relative;
    }
    .footer-nav-phone button {
      padding-top: 10px;
      box-sizing: border-box;
    }
    .footer-nav-phone .menu-toggle {
      transform: translateY(-7px);
    }
    .footer-nav-phone .menu-toggle:hover, .footer-nav-phone .menu-toggle:active {
      transform: translateY(-7px) scale(0.96);
    }
    /* ===================================================
   lightbox common
=================================================== */
    .lb-outerContainer {
      max-width: 80vw !important;
      max-height: 80vh !important;
    }
    .lb-image {
      max-width: 80vw !important;
      max-height: 80vh !important;
      width: auto !important;
      height: auto !important;
    }
    .lb-dataContainer {
      max-width: 80vw !important;
    }
    /*===================================================
   COMMON responsive
=================================================== */
    /* ===== tablet ===== */
    @media screen and (min-width: 768px) {
      html {
        font-size: 17px;
      }
      .inner {
        width: 100%;
        max-width: 1040px;
        margin: 0 auto;
        padding-left: 30px;
        padding-right: 30px;
        box-sizing: border-box;
      }
      .wrap .gallery-fv {
        height: 300px;
      }
      .subpage-fv {
        height: 300px !important;
      }
      .subpage-fv h1 {
        padding-bottom: 50px;
      }
      header {
        height: 70px;
      }
      .inner-header {
        width: 100%;
        max-width: none;
        height: 70px;
        margin: 0 auto;
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
      .logo {
        flex: 0 0 auto;
      }
      .logo a {
        height: 70px;
        display: flex;
        align-items: center;
      }
      .header-right {
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 0;
        flex: none;
        width: auto;
        margin-left: auto;
      }
      .header-gn {
        display: none;
      }
		.lang-list {
      top: 60px;
    }
		
      .lang {
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        margin-left: 0;
        flex: 0 0 auto;
      }
      .logo img {
        width: auto;
        height: 40px;
      }
      .logo-text {
        font-size: 1.2rem;
      }
      .lang-current {
        font-size: 0.95rem;
      }
      .footer-block-all {
        width: 100%;
        max-width: 1040px;
        margin: 0 auto 60px;
      }
      .footer-info {
        max-width: 400px;
      }
      .company {
        font-size: 1.3rem;
      }
    }
    /* ===== desktop ===== */
    @media screen and (min-width: 1025px) {
      html {
        font-size: 18px;
      }
      .inner {
        width: 100%;
        max-width: 1040px;
        margin: 0 auto;
        padding-left: 40px;
        padding-right: 40px;
        box-sizing: border-box;
      }
      .wrap .gallery-fv {
        height: 400px;
      }
      .subpage-fv {
        height: 400px !important;
      }
      .subpage-fv h1 {
        padding-bottom: 50px;
      }
      header {
        height: 90px;
      }
      .inner-header {
        width: calc(100% - 60px);
        max-width: none;
        height: 90px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        align-items: center;
        column-gap: 12px;
      }
      .logo {
        justify-self: start;
        flex-shrink: 0;
      }
      .logo a {
        height: 90px;
        display: flex;
        align-items: center;
        gap: 5px;
      }
      .logo img {
        width: auto;
        height: 50px;
      }
      .logo-text {
        font-size: 1rem;
        line-height: 0.9;
      }
      .logo-text span {
        display: block;
      }
      .logo-text span + span::before {
        content: none;
      }
      .header-right {
        height: 90px;
        display: contents;
      }
      .header-gn {
        display: block;
        justify-self: center;
        min-width: 0;
      }
      .header-gn-list {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        flex-wrap: nowrap;
      }
      .header-gn-item {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 88px;
        height: 48px;
        padding: 0 10px;
        box-sizing: border-box;
        border-radius: 2px;
        white-space: nowrap;
        transition: background 0.3s ease;
      }
      .header-gn-item img {
        display: none;
      }
      .header-gn-item span {
        font-size: 0.95rem;
        font-weight: 900;
        letter-spacing: 0.06em;
        line-height: 1;
        transition: 0.3s ease;
      }
		
				.lang-list {
      top: 80px;
    }
      /* GN ホバー・アクティブ・現在ページ */
      .header-gn-item:hover, .header-gn-item:active, .header-gn-item.is-current {
        background: #F7F6F2;
      }
      .header-gn-item:hover span, .header-gn-item:active span, .header-gn-item.is-current span {
        color: #1A1A18;
      }
      .lang {
        height: 90px;
        display: flex;
        align-items: center;
        justify-self: end;
        flex-shrink: 0;
      }
      .lang-current {
        font-size: 1rem;
        padding: 6px 0 6px 8px;
      }
      .footer-nav-phone, .menu-overlay, .sp-menu {
        display: none;
      }
      .footer-block-all {
        width: 100%;
        max-width: 1040px;
        margin: 0 auto 30px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
          "logo info"
          "company info"
          "nav nav"
          "sns sns"
          "copy copy";
        align-items: start;
        row-gap: 20px;
      }
      .footer-block-left {
        grid-area: logo;
      }
      .footer-block-left img {
        margin: 0 auto;
        padding-bottom: 0;
      }
      .footer-block-right {
        display: contents;
      }
      .company {
        grid-area: company;
        font-size: 1.5rem;
        padding-bottom: 0;
        text-align: center;
      }
      .footer-info {
        grid-area: info;
        max-width: 420px;
        margin: 0 auto 0 0;
      }
      .footer-nav {
        grid-area: nav;
        justify-content: center;
        padding-bottom: 0;
      }
      .footer-sns {
        grid-area: sns;
        padding-bottom: 0;
      }
      .footer-block {
        grid-area: copy;
      }
    }