@charset "UTF-8";


/* ===== Reset CSS ===== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  line-height: 1;
  -webkit-text-size-adjust: 100%;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, h5, h6,
p, figure, blockquote {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}


body {
  font-family:
    "Noto Sans JP",
    "Hiragino Kaku Gothic ProN",
    "Hiragino Kaku Gothic Pro",
    "Yu Gothic",
    "Meiryo",
    sans-serif;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

.min {
  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    "Hiragino Mincho Pro",
    "Noto Serif JP",
    "MS Mincho",
    serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}


/* ========== Font Size Scale ========== */
:root {
  --fs-1: clamp(0.625rem, 0.5rem + 0.5vw, 0.75rem);
  --fs-2: clamp(0.75rem, 0.6rem + 0.5vw, 0.875rem);
  --fs-3: clamp(0.875rem, 0.7rem + 0.5vw, 1rem);
  --fs-4: clamp(1rem, 0.8rem + 0.5vw, 1.125rem);
  --fs-5: clamp(1.125rem, 0.9rem + 0.5vw, 1.25rem);
  --fs-6: clamp(1.25rem, 1rem + 0.5vw, 1.5rem);
  --fs-7: clamp(1.5rem, 1.2rem + 0.5vw, 1.75rem);
  --fs-8: clamp(1.75rem, 1.4rem + 0.5vw, 2rem);
  --fs-9: clamp(2rem, 1.6rem + 0.5vw, 2.5rem);
  --fs-10: clamp(2.5rem, 2rem + 1vw, 3rem);
  --fs-11: clamp(3rem, 2.4rem + 1vw, 3.5rem);
  --fs-12: clamp(3.5rem, 2.8rem + 1vw, 4rem);
  --fs-13: clamp(4rem, 3.2rem + 1vw, 4.5rem);
  --fs-14: clamp(4.5rem, 3.6rem + 1vw, 5rem);
  --fs-15: clamp(5rem, 4rem + 1vw, 5.5rem);
  --fs-16: clamp(5.5rem, 4.4rem + 1vw, 6rem);
  --fs-17: clamp(6rem, 4.8rem + 1vw, 6.5rem);
  --fs-18: clamp(6.5rem, 5.2rem + 1vw, 7rem);
  --fs-19: clamp(7rem, 5.6rem + 1vw, 7.5rem);
  --fs-20: clamp(7.5rem, 6rem + 1vw, 8rem);
}



/* 外枠：1200px */
.wrap-1200 {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* 中身：1000px */
.wrap-1000 {
  margin: 0 auto;
  width: 80%;
  max-width: 1000px;
}

/* ===== Header  ===== */

.header {
  position: relative;
  z-index: 1002;
}
/* 中身の並び */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  max-width: 1200px;
  width: 100%;
}

/* h1 の暴走防止 */
.header h1 {
  margin: 0;
  padding: 0;
  line-height: 1;
}

/* ロゴ */
.logo {
  width: 160px;   /* ← 好きなサイズに微調整OK */
  height: auto;
  display: block;
}



/* ハンバーガー（PCも常に表示） */
.hamburger {
  width: 32px;
  height: 24px;
  position: relative;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
    z-index: 1003;
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000;
  transition: .3s;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 11px; }
.hamburger span:nth-child(3) { bottom: 0; }

/* × アニメ（開いた時） */
.hamburger.is-active span:nth-child(1) {
  transform: rotate(45deg);
  top: 11px;
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 11px;
}

/* 全画面メニュー */
.global-nav {
  position: fixed;
  inset: 0;
  background: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.global-nav ul {
  list-style: none;
  text-align: center;
}

.global-nav li {
  margin: 24px 0;
}

.global-nav a {
  font-size: 24px;
  text-decoration: none;
  color: #000;
}

/* 開いた状態 */
.global-nav.is-active {
  display: flex;
}

/* スクロール止め */
body.is-fixed {
  overflow: hidden;
}



.mv {
  position: relative;
  width: 100%;
}

.mv-bg {
  width: 100%;
  height: auto;
  display: block;
}

/* ロゴを上下左右中央に固定 */
.mv-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20%;
  height: auto;
}


section.top01 {
}
section.top01 div.wrap-1000 {
}
section.top01 div.wrap-1000 h2 {font-size: var(--fs-10);text-align: center;margin: 1.2em 0 0 0;font-weight: bold;}
section.top01 div.wrap-1000 span {text-align: center;display: block;font-size: var(--fs-7);margin: 0 0 1em 0;}
section.top01 div.wrap-1000 p {font-size: 16px;line-height: 2;}
section.top02.wrap-1200 {
}
section.top02.wrap-1200 div.wrap-1000 {display: flex;gap: 1em;margin-top: 3em;justify-content: space-between;align-items: center;}
section.top02.wrap-1200 div.wrap-1000 div.profile {width: 60%;}
section.top02.wrap-1200 div.wrap-1000 div.profile dl {display: flex;gap: 1em;}
section.top02.wrap-1200 div.wrap-1000 div.profile dl dt {
    width: 50%;
}
section.top02.wrap-1200 div.wrap-1000 div.profile dl dt img {
}
section.top02.wrap-1200 div.wrap-1000 div.profile dl dd {width: 50%;margin: 0;}
section.top02.wrap-1200 div.wrap-1000 div.profile dl dd p {font-size: 12px;}
section.top02.wrap-1200 div.wrap-1000 div.button {width: 35%;}
section.top02.wrap-1200 div.wrap-1000 div.button ul {
}
section.top02.wrap-1200 div.wrap-1000 div.button ul li {
}
section.top02.wrap-1200 div.wrap-1000 div.button ul li a {
  color: #009bd8;
  display: block;
  text-align: center;
  border: 1px solid #009bd8;
  border-radius: 10px;
  padding: 0.5em;
  font-size: var(--fs-5);
  margin: 1em 0;
  transition: background-color 0.3s ease, color 0.3s ease;
}

section.top02.wrap-1200 div.wrap-1000 div.button ul li a:hover {
  background-color: #009bd8;
  color: #fff;
}

footer {border-top: 1px solid gray;padding: 1em 0;}
footer p {text-align: center;font-size: var(--fs-2);}




section.wrap-1200.head_second {}
section.wrap-1200.head_second dl.wrap-1000 {display: flex;justify-content: center;margin: 5rem auto;}
section.wrap-1200.head_second dl.wrap-1000 dt {width: 14%;}
section.wrap-1200.head_second dl.wrap-1000 dt img {
}
section.wrap-1200.head_second dl.wrap-1000 dd {width: 80%;text-align: center;}
section.wrap-1200.head_second dl.wrap-1000 dd h2 {font-size: var(--fs-10);font-weight: bold;}
section.wrap-1200.head_second dl.wrap-1000 dd span {font-size: var(--fs-6);display: block;}
section.wrap-1200.head_second dl.wrap-1000 dd p {font-size: var(--fs-4);}
section.wrap-1200.contents {
}
section.wrap-1200.contents div.wrap-1000 {margin-bottom: 5em;}
section.wrap-1200.contents div.wrap-1000 p{
    margin: 2em 0;
    font-size: 16px;
}
section.wrap-1200.contents div.wrap-1000 p span{
    font-weight: 800;
    margin: 0 1em 0 0;
}
section.wrap-1200.contents div.wrap-1000 p.hirotsu {
}
section.wrap-1200.contents div.wrap-1000 p.hirotsu span {color: #5961cc;}
section.wrap-1200.contents div.wrap-1000 p.hakkaku {
}
section.wrap-1200.contents div.wrap-1000 p.hakkaku span {color: #009cd9;}
section.wrap-1200.contents div.wrap-1000 img{}
section.wrap-1200.contents div.wrap-1000 img.big{width: 100%;}
section.wrap-1200.contents div.wrap-1000 img.middle {width: 90%;display: block;margin: 5rem auto;}
section.wrap-1200.contents div.wrap-1000 img.small {width: 60%;display: block;margin: 0 auto;}
section.wrap-1200.contents div.wrap-1000 h3 {text-align: center;margin: 4rem 0;font-weight: 400;}
section.wrap-1200.contents div.wrap-1000 h3.sp{display: none;}
section.wrap-1200.contents div.wrap-1000 a {margin: 5rem auto;color: #5961cc;text-decoration: underline;font-weight: 500;display: block;text-align: center;}
