/* =====================================================
   Root variables
===================================================== */
:root {
  --color-primary: #005bac;
  --color-secondary: #f39800;
  --color-gray: #f6f6f6;

  --font-base: "YuGothic", "Yu Gothic", "游ゴシック", "游ゴシック体", "Meiryo",
    "メイリオ", sans-serif;

  --max-width: 1200px;

  --font-size-75-md: clamp(3.5rem, 3.8vw, 7.5rem);
  --font-size-75-sm: clamp(2.5rem, 4.444vw, 4rem);

  --font-size-50-md: clamp(3rem, 3.6vw, 5rem);
  --font-size-50-sm: clamp(2.3rem, 3.889vw, 3.5rem);

  --font-size-34-md: clamp(1.2rem, 1.5vw, 3rem);
  --font-size-34-sm: clamp(2rem, 3.333vw, 3rem);

  --font-size-30-md: clamp(1.2rem, 1.5vw, 3rem);
  --font-size-30-sm: clamp(2rem, 3vw, 2.7rem);

  --font-size-22-md: clamp(1.8rem, 1.69vw, 2.2rem);
  --font-size-22-sm: clamp(1.2rem, 1.6vw, 1.5rem);

  --font-size-20-md: clamp(1.6rem, 1.5vw, 2rem);
  --font-size-20-sm: clamp(1.2rem, 1.6vw, 1.5rem);

  --font-size-18-md: clamp(1.4rem, 1.38vw, 1.8rem);
  --font-size-18-sm: clamp(1.2rem, 1.6vw, 1.5rem);

  --font-size-14-md: clamp(0.5rem, 0.8vw, 1.4rem);
  --font-size-14-sm: clamp(1.2rem, 1.6vw, 1.5rem);
}

/* =====================================================
   Reset & Base
===================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-base);
  font-size: 1.5rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.7;
}

.pc_off{
	display:none;
}


/* =====================================================
   Typography
===================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 600;
  line-height: 1.4;
}


h1{

	text-align: right;
	color: #666;
	margin-top: 120px;
	margin-right: 1em;
	font-size: 12px;

}

@media (max-width: 900px) {
	h1{
		margin-top: 82px;
		margin-right: 0.5em;
		font-size: 2.5vw;
	}
}

p {
  margin: 0 0 1em;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* =====================================================
   Layout
===================================================== */
header,
footer {
  width: 100%;
}

main {
  display: block;

}

.l-container {
  max-width: var(--max-width);
  width: 90%;
  margin: 0 auto;
}

.l-section {
  padding: 60px 0;

  @media (max-width: 900px) {
    padding: 60px 0;
  }
}

/* =====================================================
   Utilities
===================================================== */
.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

.md-only {
  display: block;
}

@media (max-width: 768px) {
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }
}

@media (max-width: 400px) {
  .md-only {
    display: none;
  }
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

/* =====================================================
   Color
===================================================== */
.color_white {
  color: #fff !important;
}

.color_primary {
  color: var(--color-primary) !important;
}

.color_secondary {
  color: var(--color-secondary) !important;
}

.color_secondary-white {
  color: var(--color-secondary) !important;
  text-shadow: -1px -1px 0 #fff, 0px -1px 0 #fff, 1px -1px 0 #fff,
    -1px 0px 0 #fff, 1px 0px 0 #fff, -1px 1px 0 #fff, 0px 1px 0 #fff,
    1px 1px 0 #fff;
}

/* =====================================================
   Section Titles
===================================================== */
.c-section-header {
  margin-bottom: 67px;
  text-align: center;

  .c-section-header_inner {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    gap: 40px;
    text-align: left;
    white-space: nowrap;

    h2 {
      font-size: 5rem;
      color: var(--color-primary);
      line-height: 1.3;
      letter-spacing: 3px;

      .c-section-header-en {
        display: block;
        margin-bottom: 5px;
        letter-spacing: 1.5px;
        font-size: 2rem;
        font-weight: bold;
        color: var(--color-primary);
      }
    }

    p {
      font-size: 1.8rem;
      font-weight: bold;
      line-height: 1.7;
      margin: 0;
      letter-spacing: 1.5px;
    }

    &.flex {
      flex-direction: unset;
      align-items: center;
      justify-content: space-between;
      gap: 60px;
      text-align: left;
      white-space: normal;

      h2 {
        width: 52%;
      }

      p {
        width: 48%;
      }
    }

    &.center {
      align-items: center;
      justify-content: center;
      gap: 27px;
      text-align: center;
      white-space: normal;
    }
  }
}

@media (max-width: 900px) {
  .c-section-header {
    font-size: 2.4rem;
    margin-bottom: 2em;

    .c-section-header_inner {
      white-space: unset;
      gap: 10px;

      h2 {
        font-size: var(--font-size-50-sm);

        .c-section-header-en {
          font-size: var(--font-size-20-sm);
        }
      }

      p {
        font-size: var(--font-size-18-sm);
      }

      &.flex {
        flex-direction: column;
        gap: 10px;

        h2 {
          width: 100%;
        }

        p {
          width: 100%;
        }
      }

      &.center {
        flex-direction: column;
        gap: 10px;
      }
    }
  }
}

/* =====================================================
   Section Titles Flex
===================================================== */
.section-title-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

  .section-title {
    font-size: 50px;
    font-weight: bold;
    color: var(--color-primary);
    margin-bottom: 25px;
    white-space: nowrap;
  }

  .section-text {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.7;
    margin-bottom: 25px;

    &.left {
      text-align: left;
    }
  }
}


@media (max-width: 1200px) {
  .section-title-flex {
    .section-title {
      font-size: 40px;
      margin-bottom: 10px;
    }
  }
}

@media (max-width: 992px) {
  .section-title-flex {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .section-title-flex {
    .section-title {
      font-size: 36px;
            white-space: unset;
    }

    .section-text {
      font-size: 14px;
    }
  }
}

@media (max-width: 576px) {
  .section-title-flex {
    .section-title {
      font-size: 6vw;
            white-space: unset;
    }

    .section-text {
      font-size: 3.5vw;
    }
  }
}

/* =====================================================
   Section Header
===================================================== */
.section-header {
  text-align: center;
  margin-bottom: 60px;

  &.white {
    color: white;
  }

  .section-header-title {
    font-size: 60px;
    font-weight: bold;
    width: 90%;
    margin: 0 auto 15px;
    line-height: 1;
    letter-spacing: 0;
  }

  .section-header-subtitle {
    font-size: 18px;
    font-weight: bold;
    color: #3b3b3b;
    width: 90%;
    margin: 0 auto 48px;
  }
}

@media (max-width: 992px) {
  .section-header {
    margin-bottom: 50px;

    .section-header-title {
      font-size: 40px;
    }

    .section-header-subtitle {
      font-size: 17px;
    }
  }
}

@media (max-width: 768px) {
  .section-header {
    .section-header-title {
      font-size: 6vw;
    }

    .section-header-subtitle {
      font-size: 4vw;
      margin: 0 auto 30px;
    }
  }
}

@media (max-width: 576px) {
  .section-header {
    .section-header-title {
            font-size: 5vw;
            line-height: 1.5em;
    }

    .section-header-subtitle {
      font-size: 3.5vw;
    }
  }
}

/* =====================================================
   Circle-mark
===================================================== */
.circle-mark {
  display: inline-block;
  width: 0.80em;
  height: 0.80em;
  border: 0.07em solid currentColor;
  border-radius: 50%;
  vertical-align: 0;
  margin: 0 0.05em;
}

/* =====================================================
   Buttons
===================================================== */
.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 310px;
  max-width: 100%;
  line-height: 1;
  white-space: nowrap;
  padding: clamp(10px, 1.5vw, 21px);
  border-radius: 10px;
  font-size: clamp(1.2rem, 1vw, 2.3rem);
  font-weight: 600;
  letter-spacing: 1.38px;
  border: 1px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.c-button--primary {
  background-color: var(--color-primary)!important;
  color: #fff;
}

.c-button--secondary {
  background-color: var(--color-secondary)!important;
  color: #fff;
}

.c-button--primary:hover,
.c-button--secondary:hover {
  background-color: #222;
  opacity: 1;
}

@media (max-width: 900px) {
  .c-button {
    display: flex;
    justify-content: center;
    width: 90%;
    margin: 0 auto;
    padding: 17px 10px;
    font-size: 1.5rem;
  }
}

/* ===== PICK UP ===== */
.pickup-section {
  background: #000;
  padding: 40px 0 50px;

  .pickup-header {
    display: flex;
    align-items: baseline;
    gap: 23px;
    color: #fff;
    margin-bottom: 30px;

    h2 {
      font-size: 50px;
      font-weight: 700;
      line-height: 1;
    }

    p {
      font-size: 18px;
      font-weight: 700;
      margin: 0;
    }
  }

  .pickup-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
  }

  .pickup-card {
    position: relative;
    display: block;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;

    &::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.36);
      transition: background 0.3s;
      z-index: 1;
    }

    img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
      transform: scale(1);
      transition: transform 0.3s ease;
    }

    span {
      position: absolute;
      inset: 0;
      z-index: 2;
      display: grid;
      place-items: center;
      text-align: center;
      font-size: 25px;
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: 0.03em;
      padding: 16px;
    }

    &:hover {
      opacity: 1;
    }

    &:hover::before {
      background: rgba(0, 0, 0, 0.24);
    }

    &:hover img {
      transform: scale(1.1);
    }
  }
}

@media (max-width: 1200px) {
  .pickup-section {
    .pickup-header {
      h2 {
        font-size: 46px;
      }

      p {
        font-size: 24px;
      }
    }
  }
}

@media (max-width: 992px) {
  .pickup-section {

    .pickup-header {
      h2 {
        font-size: 40px;
      }

      p {
        font-size: 20px;
      }
    }

    .pickup-grid {
      gap: 22px;
    }
  }
}

@media (max-width: 768px) {
  .pickup-section {
    .pickup-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;

      h2 {
        font-size: 34px;
      }

      p {
        font-size: 18px;
        margin-top: 0;
      }
    }

    .pickup-grid {
      gap: 16px;
    }

    .pickup-card {
      img {
        height: 130px;
      }

      span {
        font-size: clamp(12px, 3.2vw, 25px);
        padding: 5px;
      }
    }
  }
}

@media (max-width: 576px) {
  .pickup-section {
    padding: 50px 0 56px;

    .pickup-header {
      gap: 20px;

      h2 {
        font-size: 30px;
      }

      p {
        font-size: 16px;
      }
    }
  }
}

/* =====================================================
   Swiper
===================================================== */
.swiper-pagination {
  .swiper-pagination-bullet {
    margin: 0 11px !important;
    width: 10px;
    height: 10px;
    background: #e3f0fb;
    opacity: 1;

    @media (max-width: 900px) {
      margin: 0 5px !important;
      width: 7px;
      height: 7px;
    }
  }

  .swiper-pagination-bullet-active {
    background: var(--color-primary);
  }
}

.slick-dots {
  max-width: 1200px;
  width: 90%;
  margin: 30px auto;

  li {
    display: inline-block;

    button {
      font-size: 0;
      line-height: 0;
      display: block;
      padding: 0;
      cursor: pointer;
      color: transparent;
      border: 0;
      outline: none;
      background: #e3f0fb;
      margin: 0 11px !important;
      width: 10px;
      height: 10px;
      opacity: 1;
      border-radius: 50%;
    }

    &.slick-active {
      button {
        background: var(--color-primary);
      }
    }
  }
}

/* =====================================================
   Simple fade-in
===================================================== */
.fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;

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


/* =====================================================
   info-data （数値カウント）
===================================================== */
.info-data {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  padding: 32px 0;

  .info-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 18px 25px 12px;
    width: 300px;
    height: 264px;
    border-radius: 10px;
    background-color: var(--color-gray);

    .info-card_label {
      margin-bottom: 5px;
      text-align: center;
      font-size: 1.8rem;
      font-weight: bold;
      color: var(--color-primary);
    }

    .info-card_body {
      position: relative;
      width: 100%;
      height: 170px;

      .info-card_icon {
        display: flex;
        justify-content: center;
	height: 100px;
        img {
		height: auto;
		aspect-ratio: 1 / 1;
		width: 80%;
        }
      }

      .info-card_value{
	display: flex;
	width: fit-content;
	margin: auto;
          .info-card_count {
            /*position: absolute;*/
            right: 20px;
            display: block;
            margin: 0;
            line-height: 1.4;
            text-align: right;
            font-family: "Inter", sans-serif;
            font-size: 5rem;
            font-weight: bold;
            color: var(--color-secondary);

          }
          .info-card_unit {
		display: inline-flex;
		align-self: flex-end;
		line-height: 2em;
		margin-left: 7px;
		font-size: 2rem;
		font-weight: bold;
		color: var(--color-secondary);
          }
      }

      &.info-card--body--center {
        .info-card_icon {
          img {
            height: 180px;
          }
        }
        .info-card_value{
                width: 3.5em;
                position: absolute;
		top: 27%;
		left: 42%;
		transform: translateX(-50%);
                .info-card_count {
                  font-size: 6rem;
                }
          .info-card_unit {
          margin-left: 2px;
          }
        }
      }

      &.info-card--body--top {
        .info-card_icon {
          justify-content: right;
          padding-top: 10px;
          img {
	        height: 160px;
	        aspect-ratio: 1 / 1;
	        width: auto;
	        margin-right: 5%;
          }
        }
        .info-card_value{
            top: 0em;
            left: 0em;
            width: fit-content;
            position: absolute;
                .info-card_count {
                  top: 0;
                  right: 50%;
                  line-height: 1.2;
                  font-size: 7rem;

                }
          .info-card_unit {
		margin-left: 2px;

          }
        }
      }
    }

    .info-card_note {
      position: absolute;
      bottom: 10px;
      right: 20px;
      width: 100%;
      text-align: right;
      font-size: 1.2rem;
      font-weight: bold;
    }
  }
}

@media (max-width: 900px) {

  .info-data {
    .info-card {
      width: 47%;
      height: auto;
      padding: 1em;
      .info-card_label {
        font-size: clamp(16px, 4vw, 18px);
      }
      
      .info-card_body {
        height: auto;
        margin-bottom: 2em;
        .info-card_icon {
          height: auto;
          img {
            height: 8vh;
            max-width: 75%;
          }
        }
        .info-card_value{
          display: flex;
          margin: auto;
          width: fit-content;
            .info-card_count {
              font-size: clamp(20px, 7vw, 40px);
            }

            .info-card_unit {
              font-size: clamp(14px, 4vw, 18px);
              display: inline-flex;
              align-self: flex-end;
              line-height: 2em;
		margin-left: auto;
            }
        }
        &.info-card--body--center {
          position: relative;
          .info-card_icon {
            img {
              height: 100%;
              max-height: 14vh;
              width: 100%;
              max-width: 100%;
            }
          }
          .info-card_value{
		top: 35%;
		left: 47%;
            .info-card_count {
              font-size: clamp(20px, 7vw, 40px);
            }
            .info-card_unit {

            }
          }
        }

        &.info-card--body--top {
          position: relative;
          .info-card_icon {
            img {
		height: auto;
		max-height: 9vh;
		max-width: 90%;
		width: 90%;
            }
          }
          .info-card_value{
            top: 0em;
            left: 0em;
            right: 50%;
            width: fit-content;
            position: absolute;
            .info-card_count {
              font-size: clamp(25px, 8.5vw, 45px);
              right: 0.5em;
            }
            .info-card_unit {
              margin-left: 0;
              line-height: 1.2em;
            }
          }
        }
      }

      .info-card_note {
      }
    }
  }

  
}
/* -----------------------------
   見出しアニメーション
----------------------------- */
.js-split {
  .split-text {
    display: block;
  }

  .split-line {
    display: block;
    overflow: hidden;
  }

  .split-char {
    display: inline-block;
    transform: translateY(120%);
    transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
    transition-delay: calc(0.06s * var(--char-index));
  }

  .split-text.is-active .split-char {
    transform: translateY(0%);
  }
}

/* -----------------------------
   ふわっとフェードイン
------------------------------ */
/* 共通初期 */
.fade {
  opacity: 0;
  visibility: hidden;
  will-change: transform, opacity;
  transition-delay: var(--fade-delay, 0s);
}

/* 下→上 */
.fade.is-up {
  transform: translateY(30px);
  transition: opacity 0.8s ease-out var(--fade-delay, 0s),
    transform 0.8s ease-out var(--fade-delay, 0s);
}

.fade.is-up.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* 右→左 */
.fade.is-right {
  transform: translateX(30px);
  transition: opacity var(--fade-right-opacity-duration, 0.6s) ease-out var(--fade-delay, 0s),
    transform var(--fade-right-duration, 0.4s) ease-out var(--fade-delay, 0s);
}

.fade.is-right.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* 左→右 */
@keyframes slideInLeftSlow {
  0% {
    transform: translateX(-60px);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes fadeInOpacityUltraSlow {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0.3;
  }

  80% {
    opacity: 0.7;
  }

  100% {
    opacity: var(--fade-left-opacity-target, 1);
  }
}

.fade.is-left {
  transform: translateX(-60px);
}

.fade.is-left.show {
  visibility: visible;
  animation: slideInLeftSlow var(--slide-left-duration, var(--fade-left-duration, 8s)) cubic-bezier(0.18, 0.9, 0.22, 1) forwards,
    fadeInOpacityUltraSlow var(--fade-left-opacity-duration, 2s) linear both;
  animation-delay: var(--fade-delay, 0s), var(--fade-delay, 0s);
}

@media (prefers-reduced-motion: reduce) {

  .fade,
  .fade.show {
    animation: none;
    transition: none;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }
}

/* =====================================================
   Header
===================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 100;

  .header_inner {
    max-width: 1770px;
    margin: 0 auto;
    padding: 0 33px;
    display: flex;
    align-items: center;
    justify-content: space-between !important;
    height: 118px;

    .header_logo a img,
    .header_nav,
    .header_nav a,
    .header_nav-cta .c-button {
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        background-color 0.2s ease, color 0.2s ease,
        opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        font-size 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        padding 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        height 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .header_logo {
      a {
        display: block;

        img {
          height: 75px;
          width: auto;
          object-fit: contain;
        }
      }
    }

    nav.header_nav {
      margin-left: 40px;

      ul.header_nav-list {
        display: flex;
        align-items: center;
        gap: 40px;

        li {
          a {
            font-size: 1.5rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            white-space: nowrap;
          }
        }
      }
    }

    .header_nav-cta {
      display: flex;
      gap: 20px;

      .c-button {
        width: 160px;
        padding: 27px 20px;
      }
    }

    button.header_menu {
      display: none;
    }
  }

  &.is-scrolled {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  }

  &.is-scrolled {
    .header_inner {
      height: 80px;

      .header_logo {
        a {
          img {
            height: 50px;
		min-width:120px;
          }
        }
      }

      nav.header_nav {
        ul.header_nav-list {
          gap: 20px;

          li {
            a {
              font-size: 1.2rem;
            }
          }
        }
      }

      .header_nav-cta {
        gap: 15px;

        .c-button {
	width: 22%;
	max-width: 150px;
	min-width: 100px;
	padding: 15px;
        }
      }
    }
  }
}

@media (max-width: 1350px) {
  .header {
    .header_inner {
      nav.header_nav {
        ul.header_nav-list {
          gap: 2vw;

          li {
            a {
              font-size: clamp(1rem, 1.1vw, 1.5rem);
            }
          }
        }
      }

      .header_nav-cta {
        gap: 1.5vw;

        .c-button {
          width: auto;
          padding: 20px;
        }
      }
    }
  }
}

@media (max-width: 900px) {
  .header {
    .header_inner {
      padding: 0 18px;
      height: 80px;

      .header_logo {
        z-index: 20;

        a {
                min-width: 150px;
		max-width: 250px;
		max-height: 80px;
          img {
                        height: auto;
			width:100%;
          }
        }
      }

      nav.header_nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        min-height: 100vh;
        padding: 0;
        background: #fff;
        opacity: 0.95;
        transform: translateX(100%);
        transition: transform 0.4s ease;
        z-index: 10;

        ul.header_nav-list {
		flex-direction: row;
		align-items: center;
		gap: 1em;
		width: 85%;
		margin: auto;
		height: max-content;
		padding-top: 18vh;
		flex-wrap: wrap;
		justify-content: start;
          li {
		width: 45%;
            a {
		font-size: clamp(12px, 3vw, 14px);
		width: 100%;
		line-height: 10vh;
		height: 100%;
		display: block;
		text-align: center;
		background: #e6f4ff;
		border-radius: 5px;
                border: 2px solid #0d63b0;
            }

            &.header_nav-cta {
              width: 100%;
              flex-direction: column;
              margin-top: 20px;
              gap: 15px;

              .c-button {
		width: 65%;
		height: 3em;
		line-height: 3em;
		display: flex;
		border: none;
              }
            }
          }
        }

        &.is-open {
          transform: translateX(0);
        }
      }
	.header_nav-tel{
                width: 70%;
                margin: 5vh auto 0 auto;
                text-align: center;
                color: #000;

	          .cta-tel-label {
	            margin: 0;
	            letter-spacing: 2px;
	            font-size: var(--font-size-18-sm);
	          }

	          .cta-tel-number {
	            line-height: 1;
	            font-weight: bold;
	            font-family: "Inter", sans-serif;
	            white-space: nowrap;
			margin: 17px 0;
			font-size: var(--font-size-75-sm);
			letter-spacing: 7px;
	          }

	          .cta-tel-info {
	            margin: 0;
	            letter-spacing: 2px;
	            font-size: var(--font-size-18-sm);
	          }


	}

      button.header_menu {
        display: block;
        position: relative;
        width: 32px;
        height: 24px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 101;

        span {
          position: absolute;
          left: 0;
          width: 100%;
          height: 2px;
          background: #111;
          transition: 0.3s;

          &:nth-child(1) {
            top: 0;
          }

          &:nth-child(2) {
            top: 11px;
          }

          &:nth-child(3) {
            bottom: 0;
          }
        }

        &.is-open {
          span {
            &:nth-child(1) {
              transform: translateY(11px) rotate(45deg);
            }

            &:nth-child(2) {
              opacity: 0;
            }

            &:nth-child(3) {
              transform: translateY(-11px) rotate(-45deg);
            }
          }
        }
      }
    }

    &.is-scrolled {
      .header_inner {
        max-width: 100%;
        height: 60px;

        .header_logo {
          a {
            img {
              height: 40px;
            }
          }
        }
      }
    }
  }

  body.is-fixed {
    overflow: hidden;
  }
}

/* =====================================================
   Footer
===================================================== */
.footer {
  background-color: var(--color-primary);
  color: #fff;
  padding: 0;

  .cta-section {
    background-image: url("../img/common/cta_bg.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;

    .cta-bg {
      background-color: rgba(0, 91, 171, 0.2);
    }

    .cta-body {
      max-width: 1260px;
      width: 90%;
      margin: 0 auto;
      padding: 85px 0 100px;
      display: flex;
      flex-direction: column;
      gap: 3em;

      .cta-header {
        text-align: center;

        .cta-title {
		margin-bottom: 0.5em;
		letter-spacing: 3px;
		line-height: 1;
		font-size: 2.5rem;
		font-weight: bold;
        }

        .cta-lead {
          margin: 0;
          letter-spacing: 3px;
          font-size: 1.5rem;
        }
      }

      .cta-main {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 25px;
        color: #fff;
        text-align: center;

        .cta-btns {
          display: flex;
          justify-content: center;
          align-items: center;
          gap: 15px;

          .cta-btn {
                        background-color: var(--color-secondary);
                        color: #fff;
                        font-size: 1.8rem;
                        font-weight: bold;
                        border-radius: 10px;
                        text-align: center;
                        text-decoration: none;
                        transition: background-color 0.2s ease, color 0.2s ease;
                        display: inline-block;
                        /* min-width: 348px; */
                        /* height: 2em; */
                        line-height: 3em;
                        padding: 0px 2em;

            &:hover {
              opacity: 1;
              background-color: #222;
            }
          }
          .satei {background-color: #2bbba8;}
        }

        .cta-tel {
          line-height: 1;

          .cta-tel-label {
            margin: 0;
            letter-spacing: 2px;
            font-size: 1.8rem;
          }

          .cta-tel-number {
            line-height: 1;
            font-size: 5.4rem;
            font-weight: bold;
            font-family: "Inter", sans-serif;
            letter-spacing: 10.8px;
            margin: 10px 0;
            white-space: nowrap;
          }

          .cta-tel-info {
            margin: 0;
            letter-spacing: 2px;
            font-size: 1.8rem;
          }
        }
      }
    }
  }

  .footer-inner {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    padding: 90px 0 0;
    display: flex;
    gap: 5%;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    color: #fff;

    .footer-contact {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 13px;
      /*min-width: 400px;*/
      /*height: 300px;*/
      padding: 30px;
      border-radius: 20px;
      background-color: #fff;

      .footer-contact-btn {
        position: relative;
        display: block;
        width: 100%;
        padding: 18px;
        line-height: 1;
        text-decoration: none;
        font-size: 1.8rem;
        font-weight: bold;
        border-radius: 10px;
        background: var(--color-secondary);
        transition: background-color 0.2s ease, color 0.2s ease;

        .arrow {
          position: absolute;
          right: 24px;
          width: 14px;
          color: #fff;
        }

        &:hover {
          opacity: 1;
          background-color: #222;
        }
      }

      .footer-logo {
        img {
          width: 200px;
          margin: 12px 0 0 0;
        }
      }
    }

    .footer-links {
      display: flex;
      gap: 42px;
      flex: 2 1 0;
      justify-content: flex-start;

      .footer-col {
        min-width: 120px;

        .footer-col-title {
                    font-size: 1.5rem;
                    margin-bottom: 25px;
                    letter-spacing: 2px;
                    font-weight: bold;
        }

        .footer-col-menu-flex {
          display: flex;
          gap: 42px;
        }

        ul {
          display: flex;
          flex-direction: column;
          gap: 0.7em;
          list-style: none;
          padding: 0;

          li {
            font-size: 1.3rem;
            line-height: 1;
            letter-spacing: 2px;
		a.indent{
            		font-size: calm(12px, 3vw, 14px);
                        padding-left: 1em;
		}
          }

          &.footer-col-menu {
            li {
              font-weight: bold;
            }
          }
        }
      }
    }
  }

  .footer-copy {
    width: 100%;
    padding: 63px 0 86px;

    p {
      margin: 0;
      text-align: center;
      font-size: 1.2rem;
      letter-spacing: 2px;
      color: #fff;
    }
  }
}

@media (max-width: 1300px) {
  .footer {
    .cta-section {
      .cta-body {
        .cta-header {
          .cta-title {
            line-height: 1.2;
          }
        }

        .cta-main {
          flex-direction: column-reverse;
          gap: 45px;
        }
      }
    }

    .footer-inner {
      .footer-links {
        .footer-col {
          .footer-col-menu-flex {
            display: flex;
          }
        }
      }
    }
  }
}

@media (max-width: 900px) {
  .footer {
    .cta-section {
      background-image: url("../img/common/cta_bg_sp.webp");

      .cta-body {
	gap: 1em;
	padding: 3em 0;
        .cta-header {
          .cta-title {
            font-size: var(--font-size-55-md);
          }

          .cta-lead {
                        margin-bottom: 2em;
                        font-size: clamp(12px, 3vw, 14px);
          }
        }

        .cta-main {
          .cta-btns {
		display:none;
            width: 100%;
            flex-direction: column;
            gap: 15px;

            .cta-btn {
              display: flex;
              justify-content: center;
              width: 90%;
              min-width: unset;
              height: unset;
              margin: 0 auto;
              line-height: 1;
              padding: 17px 10px;
              font-size: 1.5rem;
            }
          }

          .cta-tel {
            .cta-tel-label {
                    font-size: var(--font-size-20-md);
                    font-weight: bold;
            }

            .cta-tel-number {
              margin: 17px 0;
              font-size: var(--font-size-75-sm);
              letter-spacing: 7px;
            }

            .cta-tel-info {
              font-size: var(--font-size-18-sm);
            }
          }
        }
      }
    }

    .footer-inner {
	padding: 3em 0 0 0;
      .footer-contact {
		margin: auto;
		flex-wrap: wrap;
		flex-direction: unset;
		padding: 1.5em;
	.footer-logo {
		width: 70%;
		display: block;
		margin: auto;
		img{width: auto;}
	}
        .footer-contact-btn {
		width: 47.5%;
                font-size: 1.4rem;
                .arrow {
			right: 0.5em;
			width: 0.5em;
		}
        }
      }

      .footer-links {
		flex-direction: unset;
		gap: 2em;
		flex: unset;
		width: 100%;
		margin: 3em auto;
		flex-wrap: wrap;
        .footer-col {
		width: 96%;
		min-width: auto;
		margin: 3em auto auto auto;
		.footer-col-menu-flex {
			flex-direction: column;
		}

		ul {
			flex-wrap: wrap;
			flex-direction: row;
			li {
                            font-size: 1.4rem;
                            margin: 2% 0;
                            border-right: 1px #CCC solid;
                            padding: 0 2%;
				a.indent{
				        padding-left: 0em;
				}
			}
                        li:last-child {
                            border-right:none;
                        }
		}
        }

      }
    }

    .footer-copy {
      width: 90%;
      margin: 0 auto;
	padding: 0.5em;
      p {
        font-size: 0.9rem;
      }
    }
  }
}

section.privacy{
	width: 96%;
	max-width: 1000px;
	margin: 8em auto 16em auto;
}


.error_wrap {
	width: 96%;
	max-width: 1000px;
	margin: 8em auto 16em auto;
	text-align: center;
	.error_txt {
		font-size: 18px;
		line-height: 2em;
	}

.error_link{
    margin: 3em auto;
}
.error_link a {
        border: 2px solid #1d4695;
        color: #1d4695;
        width: fit-content;
        margin: auto;
        line-height: 3em;
        padding: 0 3em;
        overflow: hidden;
        display: block;
}

.error_link a:hover {
	border: 2px solid #1d4695;
	background: #1d4695;
	color: #fff;
}
.error_link a i {
	float: right;
	margin-top: 3px;
}

}
