@charset "UTF-8";
/* --------------------------------------------------
   BEM + Utility + Layout Friendly Reset CSS
   - ブラウザ差異を最小限に
   - 余白とボックスモデルを統一
   - クラスベースの設計（BEM）を安定化
   - Utility / Layout と干渉しない
-------------------------------------------------- */
/* ボックスモデルを統一 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* reset.css */
/* reset.css */
html {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

html,
body {
  height: 100%;
}

/* 余白を完全リセット（BEM の Block が管理） */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

figure {
  margin: 0;
}

figure img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

/* リストのスタイルを削除 */
ul,
ol {
  list-style: none;
}

/* 画像の扱いを統一 */
img,
picture {
  max-width: 100%;
  display: block;
}

/* フォーム要素のフォントを継承 */
input,
button,
textarea,
select {
  font: inherit;
}

/* ボタンのデフォルト装飾を削除 */
button {
  background: none;
  border: none;
  cursor: pointer;
}

/* アンカーのデフォルト装飾を削除 */
a {
  text-decoration: none;
  color: inherit;
}

/* テーブルの初期化 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* HTML のデフォルトライン高さを調整 */
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* --------------------------------------------------
   BEM / Utility / Layout のための追加ルール
-------------------------------------------------- */
/* クラスを持つ要素の挙動を安定させる（BEM 向け） */
[class] {
  overflow-wrap: break-word;
}

/* Layout クラス（l-）は display を明示して安定化 */
[class^=l-],
[class*=" l-"] {
  display: block;
}

/* Utility クラス（u-）のための軽量初期化 */
.u-hidden {
  display: none !important;
}

.u-visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin: 0;
}

.inner {
  background: rgb(255, 255, 255);
  border-bottom: 1px solid rgb(234, 234, 234);
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px;
  z-index: 999;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 160px;
}

.gloval-header {
  width: 100%;
  container-type: inline-size;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn a {
  font-size: clamp(1rem, 0.773rem + 0.97vw, 1.5rem); /* min: 16px, max: 24px */
  background: rgb(0, 103, 187);
  padding: 0.5rem;
  color: rgb(255, 255, 255);
}
.btn a:hover {
  color: rgb(0, 0, 0);
  background: #fff;
}

#ham {
  cursor: pointer;
  z-index: 300;
}

.one {
  width: 20px;
  position: absolute;
  top: 30%;
  right: 0;
  border-bottom: 5px solid rgb(0, 103, 187);
}

.two {
  position: absolute;
  width: 20px;
  top: 50%;
  right: 0;
  border-bottom: 5px solid rgb(0, 103, 187);
}

.three {
  position: absolute;
  bottom: 20%;
  width: 20px;
  right: 0;
  border-bottom: 5px solid rgb(0, 103, 187);
}

.push .one {
  transform: rotate(-45deg);
  z-index: 700;
  border: 1px solid rgb(255, 255, 255);
  position: absolute;
  top: 0;
  right: 0;
}

.push .two {
  transform: rotate(45deg);
  z-index: 700;
  border: 1px solid rgb(255, 255, 255);
  position: absolute;
  top: 0;
  right: 0;
}

.push .three {
  display: none;
}

.push .menu {
  right: 0;
  display: block;
}

.menu {
  position: fixed;
  display: none;
  top: 0;
  width: 200px;
  height: auto;
  background: rgb(11, 129, 175);
  z-index: 200;
  overflow-y: auto;
}
.menu a {
  border: none;
  color: rgb(255, 255, 255);
}
.menu li {
  padding: 1rem;
  font-size: 0.7rem;
}

@container (min-width:600px) {
  #ham {
    display: none;
  }
  .menu {
    display: flex;
    position: static;
    background: none;
    width: 100%;
  }
  .menu a {
    color: #000;
  }
  .menu ul {
    display: flex;
  }
}
footer {
  font-size: 0.8rem;
  position: sticky;
  text-align: center;
  top: 100vh;
  background: rgb(255, 255, 255);
  border-top: 1px solid rgb(220, 220, 220);
}
footer a {
  text-decoration: underline;
}
footer .infoBox {
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  font-size: clamp(0.5rem, 0.273rem + 0.97vw, 1rem); /* min: 8px, max: 16px */
  text-align: left;
  margin-top: 3rem;
}
footer .infoBox .info {
  text-align: left;
}
footer .infoBox p {
  display: inline;
  font-size: clamp(0.5rem, 0.045rem + 1.939vw, 1.5rem); /* min: 8px, max: 24px */
}

footer img {
  max-width: 100px;
  margin-top: 2rem;
  margin-left: auto;
  margin-right: auto;
}

.site,
.info {
  border-bottom: 1px solid #f3f3f3;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}

@media (min-width: 1024px) {
  footer .infoBox {
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
}
.com-32 {
  margin-bottom: 32px;
}

.com-24 {
  margin-bottom: 24px;
}

.com-32 {
  margin-bottom: 32px;
}

.com-48 {
  margin-bottom: 48px;
}

.com-64 {
  margin-bottom: 64px;
}

.img-16 figure img {
  margin-bottom: 16px;
}

.img-24 figure img {
  margin-bottom: 24px;
}

.img-32 figure img {
  margin-bottom: 32px;
}

.img-48 figure img {
  margin-bottom: 48px;
}

.line-17 {
  line-height: 1.7;
}

.line-18 {
  line-height: 1.8;
}

.line-19 {
  line-height: 1.9;
}

.sec-80 {
  margin-bottom: 80px;
}

.sec-120 {
  margin-bottom: 120px;
}

.sec-160 {
  margin-bottom: 160px;
}

.grid-32 {
  gap: 32px;
}

.grid-24 {
  gap: 24px;
}

.grid-48 {
  gap: 48px;
}

:root {
  --img-16: 16px;
  --img-24: 24px;
  --img-32: 32px;
  --img-48: 48px;
}

:root {
  --com-24: 24px;
  --com-32: 32px;
  --com-48: 48px;
  --com-64: 64px;
}

body {
  font-size: var(--font-base);
  line-height: 1.7;
}

.u-text-xs {
  font-size: var(--font-xs);
}

.u-text-s {
  font-size: var(--font-s);
}

.u-text-base {
  font-size: var(--font-base);
}

.u-text-m {
  font-size: var(--font-m);
}

.u-text-l {
  font-size: var(--font-l);
}

.u-text-xl {
  font-size: var(--font-xl);
}

.u-text-xxl {
  font-size: var(--font-xxl);
}

.u-text-display {
  font-size: var(--font-display);
}

.section {
  padding-block: clamp(var(--space-min), 5vw, var(--space-max));
}

html {
  font-size: 100%;
}

:root {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  word-break: break-word;
  background: rgb(255, 255, 255);
  font-family: sans-serif, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo";
}

main {
  margin-top: 10rem;
  margin-bottom: 10rem;
}

.slide {
  opacity: 0;
  transform: translateY(0);
  transition: 2s;
}

.c-wrap {
  display: none;
}

:root {
  --white-1: 8px;
  --white-2: 16px;
  --white-3: 24px;
  --white-4: 32px;
  --white-5: 40px;
  --white-6: 48px;
  --white-8: 64px;
  --white-10: 80px;
  --white-15: 120px;
  --space-min: 24px; /* スマホでの最小余白 */
  --space-max: 64px; /* PCでの最大余白 */
}

:root {
  --gap-24: 24px;
  --gap-32: 32px;
  --gap-48: 48px;
  --sec-80: 80px;
}

:root {
  --sec-120: 120px;
  --sec-160: 160px;
}

:root {
  --line-17: 1.7;
  --line-18: 1.8px;
  --line-19: 1.9px;
}

:root {
  --font-32: 32px;
  --font-48: 48px;
  --font-64: 64px;
  --font-h1: 4.9rem;
  --font-h2: 3.9rem;
  --font-h3: 3.1rem;
  --font-h4: 2.5rem;
  --font-h5: 2rem;
  --font-h6: 1.8rem;
  --p-14: 14px;
  --p-15: 15px;
  --p-16: 16px;
  --font-xs: 1.2rem;
  --font-s: 1.4rem;
  --font-base: 1.6rem;
  --font-m: 2rem;
  --font-l: 2.5rem;
  --font-xl: 3.1rem;
  --font-xxl: 3.9rem;
  --font-display: 4.9rem;
  --font-base: 1.6rem;
}

:root {
  /* Breakpoints */
  --bp-sm: 480px;
  --bp-md: 768px;
  --bp-lg: 1024px;
  --bp-xl: 1280px;
}

.c-wrap {
  display: none;
}

.wrapper {
  padding: var(--white-1);
  max-width: clamp(22.813rem, -6.591rem + 125.455vw, 87.5rem); /* min: 365px, max: 1400px */
  max-width: clamp(22.813rem, -12.273rem + 149.697vw, 100rem); /* min: 365px, max: 1600px */
  margin-top: 160px;
  margin-left: auto;
  margin-right: auto;
}
.wrapper img {
  margin-bottom: var(--white-2);
}
.wrapper h2, .wrapper h3 {
  font-size: clamp(2rem, 1.545rem + 1.939vw, 3rem); /* min: 32px, max: 48px */
  border-bottom: 3px solid #ccc;
  position: relative;
  margin-bottom: var(--white-3);
}
.wrapper h2::before, .wrapper h3::before {
  content: "";
  position: absolute;
  bottom: -3px;
  width: 50%;
  border-bottom: 3px solid #0067bb;
}

.l-content {
  margin-bottom: var(--white-10);
}
.l-content__item {
  margin-bottom: var(--white-15);
}
.l-content__item img {
  width: 100%;
}
.l-content__tam--box {
  display: flex;
}
.l-content__tam--box img {
  max-width: clamp(12.5rem, 5.398rem + 30.303vw, 28.125rem); /* min: 200px, max: 450px */
  margin-right: var(--white-2);
  margin-bottom: var(--white-6);
}

time {
  font-size: var(font-xs);
}

.side-bar {
  position: sticky;
  top: 120px;
  height: -moz-fit-content;
  height: fit-content;
}
.side-bar h3 {
  font-size: var(--font-m);
}
.side-bar__item {
  margin-bottom: var(--white-6);
}
.side-bar p {
  font-size: var(--p-14);
}

@media (min-width: 768px) {
  .c-wrap {
    display: block;
    position: fixed;
    margin-top: 120px;
    top: 10px;
    right: 20px;
  }
  .c-wrap ul li {
    font-size: clamp(0.5rem, 0.273rem + 0.97vw, 1rem); /* min: 8px, max: 16px */
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .c-wrap ul li:nth-child(even) {
    margin-bottom: 1rem;
  }
  .c-wrap ul a {
    font-size: clamp(0.438rem, 0.352rem + 0.364vw, 0.625rem); /* min: 7px, max: 10px */
    font-size: clamp(1rem, 0.773rem + 0.97vw, 1.5rem); /* min: 16px, max: 24px */
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(204, 225, 241);
    width: 32px;
    height: 32px;
    border-radius: 50%;
  }
  .c-wrap ul a:hover {
    opacity: 0.5;
    transition: 0.2s;
  }
  .wrapper {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: var(--gap-48);
  }
}/*# sourceMappingURL=style.css.map */