@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Orbitron:wght@400..900&family=Shippori+Mincho&family=Zen+Maru+Gothic:wght@400;500;700&display=swap');

/* =======================================
変数
======================================== */
:root {
  /* ブランドカラー */
  --blue-color: #b6f6fe;
}

/* =======================================
共通
======================================== */

html {
  font-size: 20px;
  /* デフォルト16px → 20pxに変更 */
}

html,
body {
  overflow-x: clip;
}

/* 旧ブラウザは hidden でも可 */


body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2;
  background-color: #fff;
  font-weight: 400;
  letter-spacing: 0.1em;
  font-style: normal;
}

img {
  width: 100%;
}

.container {
  max-width: 1320px;
  /* 中身が1290pxになる */
}

.ml-50 {
  margin-left: min(calc(25px + (50 - 25) * ((100vw - 992px) / (1500 - 992))),
      50px);
}

.blcok-1200 {
  display: none;
}

a {
  transition: 0.7s;
  cursor: pointer;
}

br.sp-none {
  display: block;
}

br.w-1500-none {
  display: block;
}

@media screen and (max-width: 1500px) {
  br.w-1500-none {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  br.sp-none {
    display: none;
  }
}

@media screen and (max-width: 1200px) {
  .blcok-1200 {
    display: block;
  }
}


/* =======================================
ヘッダー
======================================== */
#header {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
}

#header .container-fluid {
  padding-left: 50px;
  padding-right: 50px;
}

.logo .en {
  font-size: 32px;
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  color: #000000;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

.logo h1 {
  letter-spacing: 0;
  color: #fff;
  font-weight: 400;
  margin-bottom: 9px;
  font-size: 16px;
  line-height: 1;
}

.logo {
  transition: 0.7s;
}

.logo:hover {
  opacity: 0.6;
}

#header .row-head {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}


.list-gnav {
  font-size: 16px;
  list-style: none;
  padding: 0;
  font-weight: 400;
  display: flex;
}

.list-gnav li {
  line-height: 1;
  position: relative;
  transition: 0.7s;
  padding: 0 25px;
  transition: 0.7s;
}

.list-gnav li a {
  padding: 0;
  display: block;
  line-height: 1;
}

.list-gnav li .en {
  font-weight: 700;
  font-size: 18px;
  display: block;
  letter-spacing: 0;
  line-height: 1;
  text-shadow: 1px 1px 5px rgba(4, 0, 0, 0.05);
  transition: 0.7s;
  color: #fff;
  font-family: "Orbitron", sans-serif;
}

.list-gnav li:hover .en {
  color: var(--blue-color);
}

.list-gnav li .ja {
  font-size: 16px;
  text-shadow: 1px 1px 5px rgba(4, 0, 0, 0.05);
  display: block;
  line-height: 1;
  font-weight: 700;
  transition: 0.7s;
  margin-top: 6px;
  text-align: center;
  color: #fff;
}

.list-gnav li:hover .ja {
  color: var(--blue-color);
}

.tel-text {
  display: block;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  text-shadow: 1px 1px 5px rgba(4, 0, 0, 0.05);
  margin-left: 8px;
  padding: 0;
  transform: translateY(-1px);
}

#header .tel-box {
  display: flex;
  margin-left: 25px;
  align-items: center;
}

#header .tel-box .tel {
  font-weight: 700;
  font-size: 24px;
  display: block;
  color: #fff;
  letter-spacing: 0;
  margin-bottom: 5px;
  line-height: 1;
  font-family: "Orbitron", sans-serif;
}

#header .tel-box .time {
  font-size: 14px;
  font-weight: 400;
  text-shadow: 1px 1px 5px rgba(4, 0, 0, 0.05);
  color: #fff;
  display: block;
}

.head_contents {
  display: flex;
  align-items: center;
}

.tel-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  font-size: 25px;
}

.tel-icon .fa-phone {
  font-size: 25px;
  color: #b6f6fe;
}

@media (max-width: 1500px) {
  #header .container-fluid {
    padding-left: min(2.5vw, 50px);
    padding-right: min(2.5vw, 50px);
  }

  #header .tel-box {
    display: flex;
    margin-left: 15px;
    align-items: center;
  }

  .list-gnav li {
    line-height: 1;
    position: relative;
    transition: 0.7s;
    padding: 0 15px;
  }
}

@media (max-width: 1200px) {
  .logo .en {
    font-size: 22px;
    font-family: "Orbitron", sans-serif;
    font-weight: 700;
    color: #000000;
    font-weight: 700;
    line-height: 1;
    color: #fff;
  }

  .list-gnav li .en {
    font-weight: 700;
    font-size: 16px;
    display: block;
    letter-spacing: 0;
    line-height: 1;
    color: #fff;
    font-family: "Orbitron", sans-serif;
  }

  .list-gnav li .ja {
    font-size: 14px;
    margin-top: 6px;
  }

  #header .tel-box .tel {
    font-weight: 700;
    font-size: 20px;
    display: block;
    color: #fff;
    letter-spacing: 0;
    margin-bottom: 5px;
    line-height: 1;
    font-family: "Orbitron", sans-serif;
  }

  #header .tel-box .time {
    font-size: 13px;
    font-weight: 400;
    color: #fff;
    display: block;
  }
}

@media (max-width: 991px) {
  .head_contents {
    display: none;
  }

}


/* =======================================
CONTACT
======================================== */

.contact-area {
  background-color: #000f24;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('../images/common/contact-bg.jpg');
  padding: 100px 0;
}

.contact-area.section-box .sub-title {
  color: #fff;
}

.contact-area.section-box .sec-ttl-box {
  margin-bottom: 60px;
}

.contact-area .text {
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}

.contact-area .tel-box,
.contact-area .mail-box {
  display: flex;
  align-items: center;
}

.contact-area .tel-box {
  margin-top: 30px;
}

.contact-area .tel-icon {
  padding: 14px;
  margin-right: 13px;
  color: #fff;
  line-height: 1;
  font-size: 26px;
  border-radius: 1px;
  width: 60px;
  height: 60px;
  border: 2px solid #878e98;
}

.tel-icon .fa-phone {
  font-size: 25px;
  color: #fff;
}

.contact-area .tel-right {
  transform: translateY(-3px);
}

.contact-area .tel-text,
.contact-area .mail-text {
  color: var(--blue-color);
  font-size: 40px;
  margin-left: 0;
  font-family: "Orbitron", sans-serif;
  display: block;
  font-weight: 700;
  line-height: 1;
}

.contact-area .mail-text {
  font-size: 32px;
}

.contact-area .business-hours {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #fff;
  display: block;
  line-height: 1;
  margin-top: 4px;
}

.contact-area .mail-box {
  margin-top: 38px;
}

.contact-area .mail-icon {
  padding: 14px;
  margin-right: 13px;
  color: #fff;
  line-height: 1;
  font-size: 26px;
  border-radius: 1px;
  width: 60px;
  height: 60px;
  border: 2px solid #fafbfc;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1500px) {

  .contact-area .container {
    padding-left: calc(15px + 50 * (100vw - 320px) / 1180);
    padding-right: calc(15px + 50 * (100vw - 320px) / 1180);
  }

  .contact-area .tel-text {
    font-size: min(calc(32px + (40 - 32) * (100vw - 992px) / (1500 - 992)),
        40px);
  }

  .contact-area .mail-text {
    font-size: min(calc(24px + (32 - 24) * (100vw - 992px) / (1500 - 992)),
        32px);
  }
}

@media (max-width: 991px) {

  .contact-area {
    padding: min(calc(80px + (100 - 80) * (100vw - 320px) / (991 - 320)),
        100px) 0;
  }

  .contact-area.section-box .sec-ttl-box {
    margin-bottom: 40px;
  }

  .contact-area .text {
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
  }

  .contact-area .tel-text,
  .contact-area .mail-text {
    color: var(--blue-color);
    font-size: min(calc(17px + (32 - 17) * (100vw - 320px) / (991 - 320)),
        32px);
    margin-left: 0;
    font-family: "Orbitron", sans-serif;
    display: block;
    font-weight: 700;
    line-height: 1;
  }
  .contact-area .mail-text {
    font-size: min(calc(17px + (24 - 17) * (100vw - 320px) / (991 - 320)),
        24px);
  }
  .contact-area .tel-right {
    transform: translateY(-1px);
  }

  .contact-area .business-hours {
    font-family: "Noto Sans JP", sans-serif;
    font-size: min(calc(12px + (16 - 12) * (100vw - 320px) / (991 - 320)),
        16px);
    color: #fff;
    display: block;
    line-height: 1;
    margin-top: 4px;
  }

  .contact-area .tel-icon,
  .contact-area .mail-icon {
    padding: 14px;
    margin-right: 13px;
    color: #fff;
    line-height: 1;
    font-size: min(calc(16px + (26 - 16) * (100vw - 320px) / (991 - 320)),
        26px);
    border-radius: 1px;
    width: min(calc(46px + (60 - 46) * (100vw - 320px) / (991 - 320)),
        60px);
    height: min(calc(46px + (60 - 46) * (100vw - 320px) / (991 - 320)),
        60px);
    border: 2px solid #878e98;
  }

  .contact-area .tel-icon .fa-phone,
  .contact-area .mail-icon .fa-envelope {
    font-size: 20px;
    color: #fff;
  }

  .contact-area .mail-box {
    margin-top: 25px;
  }
}

/* =======================================
フッター
======================================== */
#footer {
  padding-top: 100px;
  background-color: #000f24;
  padding-bottom: 110px;
}

#footer .logo-box {
  margin-bottom: 60px;
}

#footer .logo-box {
  transition: 0.7s;
}

#footer .logo-box:hover {
  opacity: 0.6;
}

#footer .logo-box h2 {
  font-size: 18px;
  color: #fff;
  font-weight: 700;
}

#footer .logo-box .en {
  font-size: 40px;
  margin-left: 0;
  font-family: "Orbitron", sans-serif;
  display: block;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

#footer .address {
  font-size: 16px;
  color: #fff;
  line-height: 2;
}



#footer .row {
  align-items: flex-end;
}


.f-navi ul {
  display: flex;
  justify-content: flex-end;
}

.f-navi ul li {
  line-height: 1;
  margin-left: 50px;
}

.f-navi ul li:first-child {
  margin-left: 0;
}


.f-navi ul a {
  color: #fff;
  transition: 0.7s;
  font-size: 16px;
  line-height: 1;
}

.f-navi ul li:hover a {
  color: var(--blue-color);
}

.copyright {
  color: #fff;
  margin-top: 50px;
  text-align: right;
  font-size: 14px;
}


.nav-grid a {
  font-size: 16px;
  text-decoration: none;
  color: #333;
  display: inline-block;
  text-align: left;
  text-justify: auto;
  /* 文字間伸びの抑止（念のため） */
}

.nav-grid a:hover {
  opacity: 0.6;
}

#pagetop {
  right: 10px;
  bottom: 10px;
  position: fixed;
  max-width: 50px;
  cursor: pointer;
  width: 100%;
  z-index: 1000;
  transition: 0.7s;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #878e98;
  border-radius: 1px;
}

#pagetop .fa-angle-up {
  font-size: 24px;
  color: var(--blue-color);

}

@media (max-width: 1500px) {

  #footer .container {
    padding-left: calc(15px + 50 * (100vw - 320px) / 1180);
    padding-right: calc(15px + 50 * (100vw - 320px) / 1180);
  }
}

@media (max-width: 991px) {

  #footer {
    padding: min(calc(80px + (100 - 80) * (100vw - 320px) / (991 - 320)),
        100px) 0;
  }

  #footer .logo-box h2 {
    font-size: 18px;
    text-align: center;
  }

  #footer .logo-box .en {
    text-align: center;
  }

  .copyright {
    text-align: center;
  }

  #footer .address {
    text-align: center;
    font-size: 16px;
    color: #fff;
    line-height: 2;
    margin-bottom: 40px;
  }

  .f-navi ul {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  #footer .logo-box h2 {
    font-size: 16px;
    text-align: center;
    margin-bottom: 5px;
  }

  #footer .logo-box .en {
    text-align: center;
    font-size: 30px;
  }

  .copyright {
    text-align: center;
  }

  #footer .address {
    letter-spacing: 0.05em;
    text-align: center;
    font-size: 14px;
    color: #fff;
    line-height: 2;
    margin-bottom: 40px;
  }

  #pagetop {
    right: 10px;
    bottom: 10px;
    position: fixed;
    max-width: 50px;
    cursor: pointer;
    width: 100%;
    z-index: 1000;
    transition: 0.7s;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #878e98;
    border-radius: 1px;
  }

  #footer .logo-box {
    margin-bottom: 40px;
  }

  #pagetop .fa-angle-up {
    font-size: 20px;
    color: var(--blue-color);
  }

  .f-navi ul a {
    color: #fff;
    font-size: 14px;
    line-height: 1;
  }

  .f-navi ul li {
    line-height: 1;
    margin-left: 30px;
  }
}

/* =======================================
SPMENU
======================================== */
.openbtn {
  position: fixed;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  border-radius: 1px;
  display: none;
  border: 2px solid #fff;
  transform: translate3d(0, 0, 0);
  z-index: 9999;
}

.openbtn {
  cursor: pointer;
  margin-left: 0;
}

.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 1.4rem;
  height: 2px;
  background-color: #fff;
}

.openbtn span:nth-of-type(1) {
  top: 6px;
  left: 5px;
  width: 35px;
}

.openbtn span:nth-of-type(2) {
  top: 15px;
  left: 5px;
  width: 35px;
}

.openbtn span:nth-of-type(3) {
  top: 24px;
  left: 5px;
  width: 35px;
}

.openbtn.active span:nth-of-type(1) {
  top: 12px;
  width: 35px;
  left: 5px;
  background-color: #fff;
  transform: translateY(5px) rotate(-160deg);
}

.openbtn.active span:nth-of-type(3) {
  top: 22px;
  left: 5px;
  width: 35px;
  background-color: #fff;
  transform: translateY(-5px) rotate(160deg);
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active p {
  color: #fff;
}

.overlay-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  right: -280px;
  width: 280px;
  color: #fff;
  text-align: left;
  background-color: var(--main-color);
  transition: transform 0.5s ease;
  overflow-y: auto;
  z-index: 9900;
  padding-bottom: 50px;
}



.overlay-menu-inner {
  position: relative;
  height: 100%;
  padding: 100px 20px 20px;
}

.spNav-top-01 ul li {
  line-height: 1.5;
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
}

.spNav-top-01 ul {
  width: 100%;
}

.spNav-top-01 ul li:nth-child(n+2) {
  margin-top: 22px;
}

.sp-nav-copy {
  margin-top: 60px;
  padding-bottom: 80px;
  color: #fff;
  font-size: 12px;
}

.overlay-menu-inner .fa-angle-right {
  padding-right: 5px;
}

.overlay-menu .tel {
  font-size: 0;
  margin-left: auto;
  margin-right: 0;
  text-align: right;
  display: flex;
  line-height: 1;
  color: var(--blue-color);
  font-family: "Orbitron", sans-serif;
  align-items: center;
  margin-top: 30px;
}

.overlay-menu .tel-text {
  display: block;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  margin-left: 13px;
  padding: 0;
}

.overlay-menu .tel-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  font-size: 16px;
}

.overlay-menu .tel-icon .fa-phone {
  font-size: 20px;
  color: #fff;
}

.overlay-menu .tel a {
  display: block;
  font-size: 0;
  line-height: 1;
}

.overlay-menu {
  display: block;
  opacity: 0;
  left: 0;
  top: 0;
  transition: 0.7s;
  position: fixed;
  overflow: auto;
  width: 100%;
  height: 100%;
  z-index: 1001;
  pointer-events: none;
  z-index: 1000;
}

.overlay-menu.active {
  opacity: 1;
  background: rgba(0, 15, 36, 0.8);
  pointer-events: all;
}

.overlay-menu-inner {
  position: relative;
  height: 100%;
  padding: 150px 28px 20px;
}

.spNav-top-01 ul li {
  border-bottom: 1px solid #fff;
}

.spNav-top-01 ul li a {
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  line-height: 1;
}

.spNav-top-01 ul {
  max-width: 300px;
  width: 100%;
}

.spNav-top-01 ul li:nth-child(n+2) {
  margin-top: 32px;
}

.sp-nav-copy {
  margin-top: 60px;
  color: #fff;
  font-size: 12px;
}


@media (max-width: 991px) {
  .openbtn {
    top: 15px;
    right: min(2vw, 40px);
    display: block;
  }

  .openbtn p {
    font-size: 11px;
    line-height: 1;
    text-align: center;
    color: #fff;
    font-weight: 700;
    margin-top: 30px;
  }
}


/* カーテン */

.catch_mv {
  position: absolute;
  top: 50%;
  left: 100px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 1;
}


/* ← これ削除（または無効化）
.catch_mv.reveal {
  position: relative;
  display: inline-block;
  background-color: transparent;
  overflow: hidden;
}
*/

/* 各行だけを覆う（親は flex のままにする） */
/* 行側で覆う */
.catch_mv h2.en,
.catch_mv p.jp {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.catch_mv h2.en {
    padding-bottom: 20px;
}
/* カーテンは文字より前に！ */
.catch_mv .curtain {
  position: absolute;
  inset: 0;
  background: var(--main-color, #fff); /* 一旦見える色に */
  transform-origin: left center;
  z-index: 3;             /* ← ここを上げる（文字より前） */
  pointer-events: none;
}

/* 文字（下からふわっ） */
.catch_mv .text-wrap {
  position: relative;
  z-index: 2;             /* ← 文字はカーテンの“下”に */
  opacity: 0;
  transform: translateY(0.6em);
  display: inline-block;
}

@media (max-width: 575px) {
  .catch_mv h2.en {
      padding-bottom: 5px;
  }
}