@charset "UTF-8";

/* =========================
   共通設定
========================= */
:root {
  --font-base: 'LINE Seed JP', sans-serif;
  --color-main: #0773ba;
  --color-text: #2d2d2d;
  --color-white: #ffffff;
  --color-bg: #f5f5f5;
  --color-border: #d9d9d9;
  --header-max: 1360px;
  --container-max: 1000px;
  --fz-48: 3rem;
  --fz-36: 2.25rem;
  --fz-26: 1.625rem;
  --fz-20: 1.25rem;
  --fz-18: 1.125rem;
  --fz-16: 1rem;
  --fz-14: 0.875rem;
  --fz-13: 0.8125rem;
  --lh-base: 1.7;
  --transition: 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-base);
  font-size: var(--fz-16);
  line-height: var(--lh-base);
  color: var(--color-text);
  background: var(--color-white);
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(100% - 32px, var(--container-max));
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

/* 矢印共通 */
.arrow-motion__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.arrow-motion__icon svg {
  display: block;
  width: 18px;
  height: auto;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.arrow-motion:hover .arrow-motion__icon svg,
.arrow-motion:focus-visible .arrow-motion__icon svg {
  transform: translateX(8px);
}

/* ボタン共通 */
.btn {
  min-width: 205px;
  height: 46px;
  padding: 0 26px 0 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: var(--fz-14);
  font-weight: 700;
  line-height: 1;
  border: 1px solid var(--color-main);
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.btn--fill {
  background: var(--color-main);
  color: #fff;
}

.btn:hover,
.btn:focus-visible {
  background: #fff;
  color: var(--color-main);
}

.btn__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn__arrow svg {
  width: 18px;
  height: auto;
  stroke: currentColor;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn:hover .btn__arrow svg,
.btn:focus-visible .btn__arrow svg {
  transform: translateX(8px);
}


@media screen and (max-width: 767px) {
  .visual-block__buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    margin-top: 28px;
  }

  @media screen and (max-width: 767px) {
  .btn {
    width: 80%;
    max-width: 280px;
    margin: 0 auto;
  }
}
}
/* トップページのタイトル共通 */
.section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.section-heading__en {
  margin: 0;
  color: var(--color-main);
  font-size: var(--fz-20);
  font-weight: 700;
  line-height: 1.4;
}

.section-heading__ja {
  margin: 18px 0 0;
  font-size: var(--fz-48);
  font-weight: 700;
  line-height: 1.3;
}

.section-heading__text {
  margin: 22px 0 0;
  font-size: var(--fz-16);
  line-height: 1.8;
}

   /* パンくずリスト */
.breadcrumb-wrap {
  padding: 18px 0 0;
  background: #fff;
}

.breadcrumb {
  display: flex;
  justify-content: flex-end;
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 6px;

  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb__item {
  font-size: 0.75rem;
  color: #b4b4b4;
  line-height: 1.6;
}

.breadcrumb__item + .breadcrumb__item::before {
  content: "/";
  margin: 0 6px;
  color: var(--color-main);
}

.breadcrumb__item--current {
  color: var(--color-text);
  font-weight: 500;
}

   /* ヘッダー下の帯：共通 */
.page-kv {
  position: relative;
  height: 360px;
  margin-top: 92px;
  overflow: hidden;
  background: #cfcfcf;
}

.page-kv__image {
  position: absolute;
  inset: 0;
}

.page-kv__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-kv__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
}

.page-kv__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, var(--header-max));
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.page-kv__en {
  margin: 0 0 10px;
  font-size: var(--fz-20);
  font-weight: 700;
  line-height: 1.4;
}

.page-kv__ja {
  margin: 0;
  font-size: var(--fz-48);
  font-weight: 700;
  line-height: 1.3;
}

   /* 準備中テキスト */
.page-placeholder {
  padding: 110px 0 160px;
  background: #fff;
}

.page-placeholder__text {
  margin: 0;
  text-align: center;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text);
}


   /* タブ：共通 */
.page-tab-wrap {
  padding: 70px 0 0;
  background: #fff;
}

.page-tab {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.page-tab__item {
  min-width: 250px;
  height: 42px;
  padding: 0 18px 0 20px;
  border: 1px solid #cfcfcf;
  border-radius: 999px;
  background: #fff;
  color: #9b9b9b;
  font-size: 0.875rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease;
}

.page-tab__item:hover,
.page-tab__item:focus-visible,
.page-tab__item.is-current {
  color: var(--color-main);
  border-color: var(--color-main);
}

.page-tab__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.page-tab__arrow svg {
  width: 14px;
  height: auto;
  display: block;
}


