





@charset "UTF-8";

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

html {
  font-size: 62.5%;
}

body {
  margin: 0;
  font-family:
    "Yu Gothic",
    "YuGothic",
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    "Noto Sans JP",
    sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333;
  background: #f7f7f7;
  -webkit-text-size-adjust: 100%;
}

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

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

a:hover {
  opacity: 0.8;
}

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

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

main {
  display: block;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

.container {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 0 40px;
}

/* =========================================
   Header
========================================= */
.site-header {
  position: relative;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.header-inner {
  width: min(100%, 1440px);
  min-height: 74px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  flex: 0 0 auto;
}

.logo a {
  display: inline-flex;
  align-items: center;
}

.logo a strong {
  font-size: 14px;
  color: #6D3C17;
  font-weight: normal;
  display: inline-block;
  padding: 4px 0 0 20px;
}

.logo img {
  max-height: 40px;
  width: auto;
}

.logo p {
  color: #6D3C17;
  font-size: 18px;
  display: inline-block;
  margin-left: 250px;
  vertical-align: baseline;
}

.logo p span {
  color: #00A1DF;
}

/* ハンバーガー */
.hamburger {
  position: relative;
  width: 44px;
  height: 44px;
  cursor: pointer;
  flex: 0 0 auto;
  z-index: 1101;
}

.hamburger span {
  position: absolute;
  left: 8px;
  width: 28px;
  height: 3px;
  background: #222;
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.35s ease, top 0.35s ease;
}

.hamburger span:nth-child(1) {
  top: 12px;
}

.hamburger span:nth-child(2) {
  top: 21px;
}

.hamburger span:nth-child(3) {
  top: 30px;
}

.hamburger.is-active span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

/* =========================================
   Overlay Menu
========================================= */
.overlay-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 1440px);
  height: 500px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

.overlay-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.overlay-menu-inner {
  margin-left: auto;
  width: 720px;
  height: 100%;
  padding: 100px 42px 36px 40px;
  background:
    linear-gradient(rgba(208,235,246,0.86),rgba(208,235,246,0.86)),
    url("../images/menu-bg.jpg") center/cover no-repeat;
  display: flex;
  flex-direction: column;
}

.overlay-menu-head {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 40px;
  margin-bottom: 36px;
}

.overlay-menu-list {
  width: 100%;
  margin: 0;
}

.overlay-menu-list li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
  padding-top: 8px;
}

.overlay-menu-list li:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.35);
}

.overlay-menu-list a {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 16px 0 14px;
}

.overlay-menu-list a .en {
  font-size: 1.9rem;
  line-height: 1.4;
  font-weight: 400;
  color: #2d2d2d;
}

.overlay-menu-list a .ja {
  font-size: 1.5rem;
  line-height: 1.4;
  color: #444;
  text-align: right;
  white-space: nowrap;
}

/* =========================================
   home
========================================= */
.hero {
  background: url("./images/top_main_img.png") center center no-repeat;
  background-size: cover;
  text-align: center;
}

.hero-inner {
  display: grid;
  height: 600px;
  width: min(100%, 1440px);
  margin: 0 auto;
  text-align: left;;
}

.hero-text {
  display: flex;
  align-items: center;
  padding: 70px 40px 70px 70px;
}

.hero-text-inner {
  
}

.hero-text h1 {
  font-size: 3.5rem;
  line-height: 1.45;
  font-weight: 400;
  color: #2f2f2f;
  margin-bottom: 34px;
}

.hero-text p {
  font-size: 1.8rem;
  line-height: 2.0;
  color: #3f3f3f;
}

.generic-sec {
  background: #f7f7f7;
  padding: 78px 0 80px;
}

.generic-inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  align-items: start;
  gap: 58px;
}

.generic-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.generic-text {
  padding-top: 4px;
}

.generic-text h2 {
  font-size: 3.5rem;
  line-height: 1.45;
  font-weight: 400;
  color: #2e2e2e;
  margin-bottom: 24px;
}

.generic-text p {
  font-size: 1.8rem;
  line-height: 1.95;
  color: #444;
  max-width: 760px;
}

.generic-btn {
  margin-top: 22px;
}

.generic-btn a,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  min-height: 36px;
  padding: 8px 20px;
  border-radius: 9999px;
  background: linear-gradient(90deg, #ea8f16 0%, #f4a321 100%);
  color: #fff;
  font-size: 1.3rem;
  line-height: 1;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(234, 143, 22, 0.2);
  position: relative;
}

.generic-btn a::after,
.btn::after {
  content: "";
  width: 18px;
  height: 18px;
  margin-left: 10px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  background: transparent;
  flex: 0 0 auto;
}

.btn-generic{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:6px 16px 6px 8px;
  font-size:14px;
  font-weight:600;
  color:#fff;
  border-radius:999px;
  background:linear-gradient(90deg,#EA8F16,#F6A52B);
  text-decoration:none;
  box-shadow:0 3px 8px rgba(0,0,0,0.15);
  transition:0.3s;
}

.btn-generic:hover{
  transform:translateY(-1px);
  box-shadow:0 6px 12px rgba(0,0,0,0.15);
}

/* 左の丸 */
.btn-icon{
  width:22px;
  height:22px;
  background:#fff;
  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;
}

.btn-icon img{
  width:12px;
}

/* 矢印 */
.btn-arrow{
  width:18px;
  height:18px;

  border:1px solid #fff;
  border-radius:50%;

  position:relative;
}

.btn-arrow:after{
  content:"";
  position:absolute;

  width:6px;
  height:6px;

  border-top:2px solid #fff;
  border-right:2px solid #fff;

  transform:rotate(45deg);

  top:5px;
  left:5px;
}

.message {
  margin-top: 78px;
}

.message p {
  font-size: 3.5rem;
  line-height: 1.55;
  font-weight: 400;
  color: #6D3C17;
  letter-spacing: 0.02em;
}

/* =========================================
   Footer
========================================= */
.site-footer {
  background: #f7f7f7;
  padding: 28px 20px 64px;
}

.footer-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  display: inline-flex;
  justify-content: center;
  margin-bottom: 16px;
}

.footer-logo img {
  max-height: 34px;
  width: auto;
}

.footer-address {
  font-size: 1.5rem;
  line-height: 2;
  color: #444;
  margin-bottom: 22px;
}

.footer-copy {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #444;
}

/* =========================================
   Utility spacing
========================================= */
.section {
  padding: 80px 0;
}

/* =========================================
   Tablet
========================================= */
@media screen and (max-width: 1199px) {
  .container {
    padding: 0 30px;
  }

  .header-inner {
    padding: 14px 22px;
  }

  .logo p {
    margin-left: 30px;
  }

  .hero-inner {
    min-height: 520px;
  }

  .hero-text {
    padding: 56px 30px 56px 44px;
  }

  .hero-image,
  .hero-text {
    min-height: 520px;
  }

  .generic-inner {
    grid-template-columns: 320px 1fr;
    gap: 36px;
  }

  .message {
    margin-top: 58px;
  }

  .overlay-menu-inner {
    padding: 34px 40px 50px;
  }
  
  
  
}

@media screen and (max-width: 991px) {
  html {
    font-size: 56.25%;
  }

  .container {
    padding: 0 24px;
  }

  .header-inner {
    min-height: 68px;
    padding: 12px 18px;
  }

  .logo img {
    max-height: 34px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-text {
    order: 2;
    min-height: auto;
    padding: 48px 24px 54px;
  }

  .hero-text-inner {
    max-width: 100%;
  }

  .hero-text h1 {
    margin-bottom: 24px;
  }

  .hero-image {
    order: 1;
    min-height: 380px;
  }

  .generic {
    padding: 58px 0 64px;
  }

  .generic-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .generic-image {
    max-width: 420px;
  }

  .message {
    margin-top: 44px;
  }

  .overlay-menu-inner {
    padding: 28px 24px 40px;
  }

  .overlay-menu-head {
    margin-bottom: 28px;
  }

  .overlay-menu-list {
    width: 100%;
  }

  .overlay-menu-list a .en {
    font-size: 1.7rem;
  }

  .overlay-menu-list a .ja {
    font-size: 1.3rem;
  }
}

/* =========================================
   SP
========================================= */
@media screen and (max-width: 767px) {
  html {
    font-size: 50%;
  }

  body {
    font-size: 1.5rem;
    line-height: 1.75;
  }

  .pc-only {
    display: none!important;
  }

  .sp-only {
    display: block;
  }

  .container {
    padding: 0 20px;
  }

  .site-header {
    position: sticky;
    top: 0;
  }

  .header-inner {
    min-height: 62px;
    padding: 10px 14px 10px 16px;
    gap: 12px;
  }

  .logo img {
    max-height: 28px;
  }

  .hamburger {
    width: 40px;
    height: 40px;
  }

  .hamburger span {
    left: 7px;
    width: 26px;
  }

  .hamburger span:nth-child(1) {
    top: 11px;
  }

  .hamburger span:nth-child(2) {
    top: 19px;
  }

  .hamburger span:nth-child(3) {
    top: 27px;
  }

  .hamburger.is-active span:nth-child(1),
  .hamburger.is-active span:nth-child(3) {
    top: 19px;
  }

  .hero-text {
    padding: 34px 20px 40px;
  }

  .hero-text h1 {
    font-size: 3.4rem;
    line-height: 1.55;
    margin-bottom: 20px;
  }

  .hero-text p {
    font-size: 1.6rem;
    line-height: 1.95;
  }

  .hero-image {
    min-height: 240px;
  }

  .generic {
    padding: 40px 0 48px;
  }

  .generic-inner {
    gap: 24px;
  }

  .generic-image {
    max-width: 100%;
  }

  .generic-image img {
    aspect-ratio: 4 / 3;
  }

  .generic-text h2 {
    font-size: 3rem;
    line-height: 1.55;
    margin-bottom: 18px;
  }

  .generic-text p {
    font-size: 1.6rem;
    line-height: 1.9;
  }

  .generic-btn {
    margin-top: 18px;
  }

  .generic-btn a,
  .btn {
    min-width: 200px;
    min-height: 40px;
    padding: 10px 18px;
    font-size: 1.25rem;
  }

  .message {
    margin-top: 36px;
  }

  .message p {
    font-size: 2.9rem;
    line-height: 1.7;
  }

  .site-footer {
    padding: 24px 16px 44px;
  }

  .footer-logo {
    margin-bottom: 12px;
  }

  .footer-logo img {
    max-height: 28px;
  }

  .footer-address,
  .footer-copy {
    font-size: 1.3rem;
    line-height: 1.9;
  }

  .overlay-menu {
    position: fixed;
    top: 62px;
    right: 0;
    width: 100%;
    height: calc(100vh - 62px);
  }

  .overlay-menu-inner {
    padding: 20px 20px 32px;
  }

  .overlay-menu-list a {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .overlay-menu-list a .ja {
    text-align: left;
  }
}

/* =========================================
   Small SP
========================================= */
@media screen and (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .header-inner {
    padding: 10px 10px 10px 12px;
  }

  .logo img {
    max-height: 24px;
  }

  .hero-text {
    padding: 28px 16px 34px;
  }

  .hero-text h1 {
    font-size: 2.9rem;
  }

  .hero-text p,
  .generic-text p {
    font-size: 1.5rem;
  }

  .hero-image {
    min-height: 200px;
  }

  .generic {
    padding: 34px 0 42px;
  }

  .generic-text h2 {
    font-size: 2.5rem;
  }

  .message p {
    font-size: 2.4rem;
  }

  .generic-btn a,
  .btn {
    width: 100%;
    min-width: 0;
  }
}



/* =========================================
   Generic page
========================================= */
.page-generic {
  background: #f7f7f7;
}

.page-generic .generic-mv {
  background: url("./images/generic-mv.png") center center / cover no-repeat;
}

.page-generic .generic-mv-inner {
  width: min(100%, 1440px);
  min-height: 560px;
  margin: 0 auto;
  padding: 110px 60px 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-generic .generic-mv-lead-en {
  position: relative;
  display: inline-block;
  margin-bottom: 22px;
  padding-top: 12px;
  font-size: 2.0rem;
  line-height: 1.3;
  color: #222;
}

.page-generic .generic-mv-lead-en::before {
  /*
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 2px;
  background: #1d1d1d;
  */
}

.page-generic .generic-mv-copy h1 {
  font-size: 3.5rem;
  line-height: 1.35;
  font-weight: 400;
  color: #222;
}

.page-generic .generic-mv-lead h2 {
  max-width: 900px;
  font-size: 3.5rem;
  line-height: 1.45;
  font-weight: 400;
  color: #222;
}

.page-generic .section-block {
  padding: 70px 0 0;
}

.page-generic .narrow {
  max-width: 1240px;
}

.page-generic .generic-about-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 48px;
  align-items: start;
}

.page-generic .generic-about-text p {
  font-size: 1.8rem;
  line-height: 2.15;
  color: #333;
  margin-bottom: 32px;
}

.page-generic .generic-about-figure {
  padding-top: 10px;
}

.page-generic .generic-about-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.page-generic .sec-title {
  font-size: 3.5rem;
  line-height: 1.4;
  font-weight: 400;
  color: #222;
  margin-bottom: 34px;
}

.page-generic .generic-feature p,
.page-generic .generic-bio p,
.page-generic .generic-orangebook p {
  font-size: 1.8rem;
  line-height: 2.15;
  color: #333;
  margin-bottom: 24px;
}

.page-generic .generic-orangebook a {
  color: #333;
  text-decoration: none;
  word-break: break-all;
}

.page-generic .generic-qa {
  padding-bottom: 110px;
}

.page-generic .qa-list {
  display: grid;
  gap: 18px;
}

.page-generic .qa-item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 18px;
  align-items: stretch;
}

.page-generic .qa-q,
.page-generic .qa-a {
  background: #fff;
  border: 1px solid #e3e3e3;
  min-height: 92px;
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  position: relative;
  padding-left: 10px;
}

.page-generic .qa-q::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -18px;
  transform: translateY(-50%);
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 18px solid #EAEAEB;
  z-index: 2;
}

.page-generic .qa-q::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -19px;
  transform: translateY(-50%);
  border-top: 19px solid transparent;
  border-bottom: 19px solid transparent;
  border-left: 19px solid #e3e3e3;
  z-index: 1;
}

.page-generic .qa-label {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  line-height: 1;
  font-weight: 400;
  color: #222;
}

.page-generic .qa-q p,
.page-generic .qa-a p {
  padding: 20px 26px 20px 0;
  font-size: 1.8rem;
  line-height: 1.9;
  color: #333;
}

.page-generic .qa-a p {
  padding-left: 8px;
}

.page-generic .qa-q {
  background: #EAEAEB;
}
.page-generic .qa-a {
  margin-left: -20px;

}


/* responsive */
@media screen and (max-width: 1199px) {
  .page-generic .generic-mv-inner {
    min-height: 500px;
    padding: 90px 40px 70px;
  }

  .page-generic .generic-mv-copy h1 {
    font-size: 4.4rem;
  }

  .page-generic .generic-mv-lead h2,
  .page-generic .sec-title {
    font-size: 4.2rem;
  }

  .page-generic .generic-about-inner {
    grid-template-columns: 1fr 360px;
    gap: 36px;
  }

  .page-generic .qa-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .page-generic .qa-q::after,
  .page-generic .qa-q::before {
    display: none;
  }
  .page-generic .qa-a {
    margin-left: 0;
  }
  
  
}

@media screen and (max-width: 991px) {
  .page-generic .generic-mv-inner {
    min-height: 420px;
    padding: 80px 24px 56px;
  }

  .page-generic .generic-mv-lead-en {
    font-size: 2rem;
  }

  .page-generic .generic-mv-copy h1 {
    font-size: 3.8rem;
  }

  .page-generic .generic-mv-lead h2,
  .page-generic .sec-title {
    font-size: 3.4rem;
  }

  .page-generic .section-block {
    padding-top: 56px;
  }

  .page-generic .generic-about-inner {
    grid-template-columns: 1fr;
  }

  .page-generic .generic-about-figure {
    max-width: 420px;
    margin: 0 auto;
  }

  .page-generic .qa-q,
  .page-generic .qa-a {
    grid-template-columns: 62px 1fr;
  }

  .page-generic .qa-label {
    font-size: 4rem;
  }

}

@media screen and (max-width: 767px) {
  .page-generic .generic-mv-inner {
    min-height: 360px;
    padding: 64px 20px 42px;
  }

  .page-generic .generic-mv-lead-en {
    margin-bottom: 16px;
    padding-top: 10px;
    font-size: 1.7rem;
  }

  .page-generic .generic-mv-lead-en::before {
    width: 90px;
  }

  .page-generic .generic-mv-copy h1 {
    font-size: 3rem;
    line-height: 1.45;
  }

  .page-generic .generic-mv-lead h2,
  .page-generic .sec-title {
    font-size: 2.8rem;
    line-height: 1.55;
  }

  .page-generic .generic-about-text p,
  .page-generic .generic-feature p,
  .page-generic .generic-bio p,
  .page-generic .generic-orangebook p,
  .page-generic .qa-q p,
  .page-generic .qa-a p {
    font-size: 1.6rem;
    line-height: 1.95;
  }

  .page-generic .section-block {
    padding-top: 42px;
  }

  .page-generic .generic-qa {
    padding-bottom: 70px;
  }

  .page-generic .qa-q,
  .page-generic .qa-a {
    min-height: auto;
    grid-template-columns: 54px 1fr;
  }

  .page-generic .qa-label {
    font-size: 3.4rem;
  }

  .page-generic .qa-q p,
  .page-generic .qa-a p {
    padding: 16px 16px 16px 0;
  }

  .page-generic .qa-a p {
    padding-left: 6px;
  }
}




/* =========================================
   Business page
========================================= */
.page-business {
  background: #f7f7f7;
}

.page-business .business-mv {
  background: url("./images/business-mv.png") center center / cover no-repeat;
}

.page-business .business-mv-inner {
  width: min(100%, 1440px);
  min-height: 620px;
  margin: 0 auto;
  padding: 92px 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-business .business-mv-copy {
  text-align: left;
}

.page-business .business-mv-lead-en {
  /*
  position: relative;
  display: inline-block;
  margin-bottom: 18px;
  padding-top: 12px;
  font-size: 2.0rem;
  line-height: 1.3;
  color: #222;
  */
}

.page-business .business-mv-lead-en::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 2px;
  background: #1d1d1d;
}

.page-business .business-mv-copy h1 {
  font-size: 3.5rem;
  line-height: 1.35;
  font-weight: 400;
  color: #222;
}

.page-business .business-mv-message h2 {
  max-width: 760px;
  margin-left: 160px;
  font-size: 3.5rem;
  line-height: 1.5;
  font-weight: 400;
  color: #222;
}

.page-business .business-intro {
  padding: 56px 0 70px;
}

.page-business .business-intro-inner {
  max-width: 1120px;
}

.page-business .business-intro-inner p {
  font-size: 2.2rem;
  line-height: 1.95;
  color: #222;
}

.page-business .business-list-sec {
  padding-bottom: 120px;
}

.page-business .business-sec-head {
  width: min(100%, 1440px);
  margin: 0 auto 48px auto;
  padding-left: 60px;
}

.page-business .business-sec-head h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
  font-size: 2.5rem;
  line-height: 1.4;
  font-weight: 400;
  color: #222;
}

.page-business .business-sec-head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 86px;
  height: 2px;
  background: #8fd0ee;
}

/* 見出しの下の一覧だけ少し右へ */
.page-business .business-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 70px 48px;
  align-items: start;
  margin-left: 45px;
}

.page-business .business-card {
  display: flex;
  flex-direction: column;
}

.page-business .business-card-image {
  margin-bottom: 20px;
}

.page-business .business-card-image img {
  width: 100%;
  aspect-ratio: 1 / 0.78;
  object-fit: cover;
  display: block;
}

.page-business .business-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.page-business .business-card-meta .en {
  position: relative;
  font-size: 1.6rem;
  line-height: 1.4;
  color: #333;
  padding-right: 16px;
}

.page-business .business-card-meta .en::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 22px;
  background: #7dc8ea;
  transform: translateY(-50%);
}

.page-business .business-card-meta .ja {
  font-size: 2rem;
  line-height: 1.4;
  color: #222;
}

.page-business .business-card h3 {
  margin-bottom: 18px;
  font-size: 2.5rem;
  line-height: 1.5;
  font-weight: 400;
  color: #222;
}

.page-business .business-card p {
  margin-bottom: 22px;
  font-size: 1.7rem;
  line-height: 2.05;
  color: #333;
}

/* 5件目を左カラムに */
.page-business .business-card:nth-child(5) {
  grid-column: 1 / 2;
}

/* =========================================
   Business button
========================================= */
.btn-generic.btn-business {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  min-width: 0;
  min-height: 48px;
  padding: 0;
  border-radius: 999px;
  background: #12a4df;
  border: 1px solid #12a4df;
  box-shadow: none;
  overflow: hidden;
  align-self: flex-start;
}

.btn-generic.btn-business:hover {
  transform: none;
  box-shadow: none;
  opacity: 0.9;
}

.btn-business .btn-business-left {
  min-width: 74px;
  padding: 0 12px 0 10px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 0 0 auto;
}

.btn-business .btn-icon {
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.btn-business .btn-icon img {
  width: 12px;
  height: auto;
  display: block;
}

.btn-business .btn-business-short {
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 400;
  color: #7a5a3d;
}

.btn-business .btn-text {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px 0 22px;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 400;
  color: #fff;
  white-space: nowrap;
}

.btn-business .btn-arrow {
  width: 46px;
  min-height: 46px;
  border: 0;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex: 0 0 auto;
}

.btn-business .btn-arrow::before {
  content: "";
  width: 22px;
  height: 22px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: block;
}

.btn-business .btn-arrow::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  top: 50%;
  left: 50%;
  margin-top: -3px;
  margin-left: -5px;
}

/* =========================================
   Business responsive
========================================= */
@media screen and (max-width: 1199px) {
  .page-business .business-mv-inner {
    min-height: 540px;
    padding: 84px 40px 50px;
  }

  .page-business .business-mv-copy h1 {
    font-size: 4.2rem;
  }

  .page-business .business-mv-message h2 {
    margin-left: 90px;
    font-size: 4.2rem;
  }

  .page-business .business-intro-inner p {
    font-size: 2rem;
  }

  .page-business .business-grid {
    gap: 56px 34px;
    margin-left: 60px;
  }

  .page-business .business-card h3 {
    font-size: 2.6rem;
  }
  
  .page-business .business-sec-head {
    padding-left: 40px;
  }
  
}

@media screen and (max-width: 991px) {
  .page-business .business-mv-inner {
    min-height: 460px;
    padding: 70px 24px 42px;
  }

  .page-business .business-mv-lead-en {
    font-size: 1.9rem;
  }

  .page-business .business-mv-copy h1 {
    font-size: 3.8rem;
  }

  .page-business .business-mv-message h2 {
    margin-left: 0;
    font-size: 3.6rem;
    max-width: 100%;
  }

  .page-business .business-intro {
    padding: 44px 0 56px;
  }

  .page-business .business-intro-inner p {
    font-size: 1.9rem;
  }

  .page-business .business-grid {
    grid-template-columns: 1fr;
    gap: 44px;
    margin-left: 0;
  }

  .page-business .business-card:nth-child(5) {
    grid-column: auto;
  }
  
  
}

@media screen and (max-width: 767px) {
  .page-business .business-mv-inner {
    min-height: 380px;
    padding: 60px 20px 34px;
  }

  .page-business .business-mv-lead-en {
    margin-bottom: 14px;
    padding-top: 10px;
    font-size: 1.6rem;
  }

  .page-business .business-mv-lead-en::before {
    width: 90px;
  }

  .page-business .business-mv-copy h1 {
    font-size: 3rem;
  }

  .page-business .business-mv-message h2 {
    font-size: 2.9rem;
    line-height: 1.6;
  }

  .page-business .business-intro {
    padding: 36px 0 46px;
  }

  .page-business .business-intro-inner p {
    font-size: 1.7rem;
    line-height: 1.9;
  }

  .page-business .business-sec-head {
    margin-bottom: 32px;
    padding-left: 16px;
  }

  .page-business .business-sec-head h2 {
    font-size: 2.8rem;
    padding-bottom: 10px;
  }

  .page-business .business-grid {
    gap: 36px;
  }

  .page-business .business-card-meta {
    gap: 12px;
    margin-bottom: 14px;
  }

  .page-business .business-card-meta .en {
    font-size: 1.4rem;
    padding-right: 12px;
  }

  .page-business .business-card-meta .en::after {
    height: 18px;
  }

  .page-business .business-card-meta .ja {
    font-size: 1.8rem;
  }

  .page-business .business-card h3 {
    margin-bottom: 12px;
    font-size: 2.4rem;
  }

  .page-business .business-card p {
    margin-bottom: 18px;
    font-size: 1.6rem;
    line-height: 1.95;
  }

  .btn-generic.btn-business {
    width: 100%;
  }

  .btn-business .btn-business-left {
    min-width: 64px;
    padding: 0 10px 0 8px;
  }

  .btn-business .btn-text {
    min-height: 42px;
    padding: 0 12px 0 14px;
    font-size: 1.25rem;
    white-space: normal;
  }

  .btn-business .btn-arrow {
    width: 42px;
    min-height: 42px;
  }

  .btn-business .btn-arrow::before {
    width: 20px;
    height: 20px;
  }

  .page-business .business-list-sec {
    padding-bottom: 70px;
  }
}

/* 本文余白対策 */
.page .entry-content {
  margin: 0;
}

.page .entry-content > .page-business:first-child {
  margin-top: 0;
}








/* =========================================
   About page
========================================= */
.page-about {
  background: #f7f7f7;
}

.page-about .about-mv {
  background: url("./images/about-mv.png") center center / cover no-repeat;
}

.page-about .about-mv-inner {
  width: min(100%, 1440px);
  min-height: 620px;
  margin: 0 auto;
  padding: 92px 60px 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-about .about-mv-lead-en {
  position: relative;
  display: inline-block;
  margin-bottom: 18px;
  padding-top: 12px;
  font-size: 2.0rem;
  line-height: 1.3;
  color: #222;
}

.page-about .about-mv-lead-en::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 2px;
  background: #1d1d1d;
}

.page-about .about-mv-copy h1 {
  font-size: 3.5rem;
  line-height: 1.35;
  font-weight: 400;
  color: #222;
}

.page-about .about-mv-message h2 {
  max-width: 720px;
  font-size: 3.5rem;
  line-height: 1.5;
  font-weight: 400;
  color: #222;
}

.page-about .about-intro {
  padding: 44px 0 70px;
}

.page-about .about-intro-inner {
  max-width: 980px;
  text-align: center;
}

.page-about .about-intro-inner p {
  font-size: 2.1rem;
  line-height: 2;
  color: #222;
}

.page-about .about-block {
  padding-bottom: 90px;
}

.page-about .about-sec-head {
  width: min(100%, 1440px);
  margin: 0 auto 48px;
  padding-left: 60px;
}

.page-about .about-sec-head h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
  font-size: 2.5rem;
  line-height: 1.4;
  font-weight: 400;
  color: #222;
}

.page-about .about-sec-head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 86px;
  height: 2px;
  background: #8fd0ee;
}

/* greeting */
.page-about .about-greeting-inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 48px;
  align-items: start;
}

.page-about .about-greeting-image img {
  width: 100%;
  aspect-ratio: 1 / 0.82;
  object-fit: cover;
  display: block;
}

.page-about .about-greeting-text p {
  font-size: 1.7rem;
  line-height: 2.15;
  color: #333;
  margin-bottom: 22px;
}

.page-about .about-greeting-sign {
  margin-top: 36px;
  text-align: right;
}

.page-about .about-greeting-sign p {
  margin-bottom: 4px;
}

/* table */
.page-about .about-table,
.page-about .about-history-list {
  display: grid;
  gap: 0;
}

.page-about .about-table-row,
.page-about .about-history-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  padding: 16px 0;
  border-bottom: 1px solid #ddd;
}

.page-about .about-table-row:first-child,
.page-about .about-history-row:first-child {
  border-top: 1px solid #ddd;
}

.page-about .about-table dt,
.page-about .about-history-list dt {
  font-size: 1.6rem;
  line-height: 1.9;
  color: #222;
}

.page-about .about-table dd,
.page-about .about-history-list dd {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.9;
  color: #333;
}

/* office */
.page-about .office-list {
  display: grid;
  gap: 56px;
}

.page-about .office-item {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 32px;
  align-items: start;
}

.page-about .office-info h3 {
  margin-bottom: 18px;
  font-size: 2.2rem;
  line-height: 1.5;
  font-weight: 400;
  color: #222;
}

.page-about .office-table {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.page-about .office-row {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 8px;
}

.page-about .office-row dt,
.page-about .office-row dd {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.8;
  color: #333;
}

.page-about .office-map img {
  width: 100%;
  display: block;
}

/* recruit */
.page-about .recruit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px 32px;
}

.page-about .recruit-card h3 {
  margin-bottom: 16px;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 400;
  color: #222;
}

.page-about .recruit-table {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.page-about .recruit-row {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 8px;
}

.page-about .recruit-row dt,
.page-about .recruit-row dd {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.8;
  color: #333;
}

.page-about .recruit-map {
  margin-top: 16px;
}

.page-about .recruit-map img {
  width: 100%;
  display: block;
}

/* map button */
.page-about .btn-map {
  align-self: flex-start;
}

/* responsive */
@media screen and (max-width: 1199px) {
  .page-about .about-mv-inner {
    min-height: 540px;
    padding: 84px 40px 40px;
  }

  .page-about .about-mv-copy h1 {
    font-size: 4.2rem;
  }

  .page-about .about-mv-message h2 {
    font-size: 4rem;
  }

  .page-about .about-sec-head {
    padding-left: 40px;
  }

  .page-about .about-greeting-inner {
    grid-template-columns: 300px 1fr;
    gap: 32px;
  }

  .page-about .office-item {
    grid-template-columns: 300px 1fr;
  }
}

@media screen and (max-width: 991px) {
  .page-about .about-mv-inner {
    min-height: 460px;
    padding: 70px 24px 36px;
  }

  .page-about .about-mv-lead-en {
    font-size: 1.9rem;
  }

  .page-about .about-mv-copy h1 {
    font-size: 3.8rem;
  }

  .page-about .about-mv-message h2 {
    font-size: 3.4rem;
  }

  .page-about .about-intro-inner p {
    font-size: 1.9rem;
  }

  .page-about .about-sec-head {
    padding-left: 24px;
  }

  .page-about .about-greeting-inner,
  .page-about .office-item,
  .page-about .recruit-grid {
    grid-template-columns: 1fr;
  }

  .page-about .about-greeting-image {
    max-width: 420px;
  }
}

@media screen and (max-width: 767px) {
  .page-about .about-mv-inner {
    min-height: 380px;
    padding: 60px 20px 30px;
  }

  .page-about .about-mv-lead-en {
    margin-bottom: 14px;
    padding-top: 10px;
    font-size: 1.6rem;
  }

  .page-about .about-mv-lead-en::before {
    width: 90px;
  }

  .page-about .about-mv-copy h1 {
    font-size: 3rem;
  }

  .page-about .about-mv-message h2 {
    font-size: 2.8rem;
    line-height: 1.6;
  }

  .page-about .about-intro {
    padding: 34px 0 46px;
  }

  .page-about .about-intro-inner p {
    font-size: 1.7rem;
    line-height: 1.9;
  }

  .page-about .about-block {
    padding-bottom: 56px;
  }

  .page-about .about-sec-head {
    padding-left: 20px;
    margin-bottom: 28px;
  }

  .page-about .about-sec-head h2 {
    font-size: 2.2rem;
  }

  .page-about .about-greeting-text p,
  .page-about .about-table dt,
  .page-about .about-table dd,
  .page-about .about-history-list dt,
  .page-about .about-history-list dd,
  .page-about .office-row dt,
  .page-about .office-row dd,
  .page-about .recruit-row dt,
  .page-about .recruit-row dd {
    font-size: 1.5rem;
    line-height: 1.9;
  }

  .page-about .about-table-row,
  .page-about .about-history-row {
    grid-template-columns: 110px 1fr;
    padding: 12px 0;
  }

  .page-about .office-info h3,
  .page-about .recruit-card h3 {
    font-size: 1.9rem;
  }
}


/* =========================================
   GoogleMap iframe adjustment
========================================= */

/* office map */
.page-about .office-map {
  position: relative;
  width: 100%;
  aspect-ratio: 1.9 / 1;
  overflow: hidden;
  background: #e9e9e9;
}

.page-about .recruit-map {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: 16px;
  overflow: hidden;
  background: #e9e9e9;
}

.page-about .office-map iframe,
.page-about .office-map img,
.page-about .recruit-map iframe,
.page-about .recruit-map img {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}



/* =========================================
   Contact page
========================================= */
.page-contact {
  background: #f7f7f7;
  min-height: 100vh;
}

.page-contact .contact-page-head {
  padding: 62px 0 40px;
}

.page-contact .contact-page-head-inner {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 0 60px;
}

.page-contact .contact-page-en {
  font-size: 2.0rem;
  line-height: 1.4;
  color: #222;
  margin-bottom: 10px;
}

.page-contact .contact-page-head h1 {
  font-size: 3.5rem;
  line-height: 1.35;
  font-weight: 400;
  color: #222;
}

.page-contact .contact-page-body {
  padding: 34px 0 120px;
}

.page-contact .contact-page-body-inner {
  max-width: 900px;
}

.page-contact .contact-page-title {
  margin-bottom: 74px;
  text-align: center;
  font-size: 3.5rem;
  line-height: 1.5;
  font-weight: 400;
  color: #222;
}

/* CF7 wrapper */
.page-contact .contact-page-form {
  max-width: 760px;
  margin: 0 auto;
}

.page-contact .contact-form-wrap {
  width: 100%;
}

.page-contact .contact-form-head {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 320px;
  padding-bottom: 10px;
  border-bottom: 2px solid #52b7e8;
  margin-bottom: 28px;
}

.page-contact .contact-form-head-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  line-height: 1;
  color: #111;
}

.page-contact .contact-form-head-text {
  font-size: 1.8rem;
  line-height: 1.6;
  color: #222;
}

.page-contact .contact-field {
  margin-bottom: 34px;
}

.page-contact .contact-field label {
  display: block;
  margin-bottom: 10px;
  font-size: 1.8rem;
  line-height: 1.7;
  color: #222;
}

.page-contact .contact-input,
.page-contact .contact-textarea {
  width: 100%;
  border: 1px solid #666;
  background: #fff;
  border-radius: 4px;
  box-shadow: none;
  outline: none;
  font-size: 1.7rem;
  line-height: 1.6;
  color: #222;
}

.page-contact .contact-input {
  height: 48px;
  padding: 0 14px;
}

.page-contact .contact-textarea {
  height: 360px;
  padding: 14px;
  resize: vertical;
}

.page-contact .contact-input:focus,
.page-contact .contact-textarea:focus {
  border-color: #12a4df;
}

.page-contact .contact-submit-wrap {
  margin-top: 54px;
  text-align: center;
}

.page-contact .btn-contact {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  padding: 0;
}

.page-contact .btn-contact .btn-text {
  min-width: 150px;
  justify-content: center;
  font-size: 2.8rem;
  letter-spacing: 0.2em;
}

.page-contact .contact-note {
  margin-top: 12px;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333;
}

/* CF7 default adjustment */
.page-contact .wpcf7-spinner {
  display: block;
  margin: 14px auto 0;
}

.page-contact .wpcf7-not-valid-tip {
  margin-top: 6px;
  font-size: 1.4rem;
}

.page-contact .wpcf7 form .wpcf7-response-output {
  margin: 24px 0 0;
  padding: 12px 16px;
  font-size: 1.5rem;
  line-height: 1.8;
}

/* responsive */
@media screen and (max-width: 1199px) {
  .page-contact .contact-page-head-inner {
    padding: 0 40px;
  }

  .page-contact .contact-page-head h1,
  .page-contact .contact-page-title {
    font-size: 4.2rem;
  }
}

@media screen and (max-width: 991px) {
  .page-contact .contact-page-head {
    padding: 48px 0 28px;
  }

  .page-contact .contact-page-head-inner {
    padding: 0 24px;
  }

  .page-contact .contact-page-head h1,
  .page-contact .contact-page-title {
    font-size: 3.6rem;
  }

  .page-contact .contact-page-title {
    margin-bottom: 48px;
  }

  .page-contact .contact-page-body {
    padding: 24px 0 80px;
  }
}

@media screen and (max-width: 767px) {
  .page-contact .contact-page-head {
    padding: 34px 0 20px;
  }

  .page-contact .contact-page-head-inner {
    padding: 0 20px;
  }

  .page-contact .contact-page-en {
    font-size: 1.7rem;
    margin-bottom: 8px;
  }

  .page-contact .contact-page-head h1 {
    font-size: 3rem;
  }

  .page-contact .contact-page-title {
    margin-bottom: 34px;
    font-size: 2.8rem;
    line-height: 1.6;
  }

  .page-contact .contact-page-form {
    max-width: 100%;
  }

  .page-contact .contact-form-head {
    width: 100%;
    margin-bottom: 22px;
  }

  .page-contact .contact-form-head-icon {
    font-size: 2.4rem;
  }

  .page-contact .contact-form-head-text,
  .page-contact .contact-field label {
    font-size: 1.6rem;
  }

  .page-contact .contact-field {
    margin-bottom: 24px;
  }

  .page-contact .contact-input {
    height: 44px;
    font-size: 1.6rem;
  }

  .page-contact .contact-textarea {
    height: 240px;
    font-size: 1.6rem;
  }

  .page-contact .contact-submit-wrap {
    margin-top: 38px;
  }

  .page-contact .btn-contact {
    width: 100%;
    max-width: 320px;
  }

  .page-contact .btn-contact .btn-text {
    min-width: 0;
    width: 100%;
    font-size: 2.2rem;
    letter-spacing: 0.15em;
  }

  .page-contact .contact-note {
    font-size: 1.4rem;
  }
}


/* =================================
   Page Top Button
================================= */

.page-top {
  position: fixed;
  right: 30px;
  bottom: 40px;
  width: 56px;
  height: 56px;
  background: #12a4df;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
  z-index: 999;
  background: linear-gradient(90deg,#2cb6e8,#129ad4);
}

.page-top:hover{
  background:#0c8fc5;
}

.page-top.show{
  opacity:1;
  visibility:visible;
}

.page-top-arrow{
  line-height:1;
}

@media (max-width:767px){

  .page-top{
    right:16px;
    bottom:24px;
    width:48px;
    height:48px;
  }

}




/* =========================================
   Doctor consulting form page
========================================= */
.page-consulting-form {
  background: #f7f7f7;
}

.page-consulting-form .consulting-mv {
  background:
    linear-gradient(rgba(245, 247, 248, 0.18), rgba(245, 247, 248, 0.18)),
    url("./images/doctor-baton-mv.png") center center / cover no-repeat;
}

.page-consulting-form .consulting-mv-inner {
  width: min(100%, 1440px);
  min-height: 640px;
  margin: 0 auto;
  padding: 178px 40px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-consulting-form .consulting-mv-copy {
  text-align: left;
}

.page-consulting-form .consulting-mv-lead-en {
  font-size: 1.7rem;
  line-height: 1.4;
  color: #444;
  margin-bottom: 6px;
}

.page-consulting-form .consulting-mv-copy h1 {
  font-size: 4rem;
  line-height: 1.4;
  font-weight: 400;
  color: #222;
}

.page-consulting-form .consulting-mv-maincopy {
  max-width: 600px;
  padding-left: 10px;
  margin-bottom: 10px;
}

.page-consulting-form .consulting-mv-maincopy p {
  font-size: 5rem;
  line-height: 1.28;
  font-weight: 700;
  color: #373d87;
  letter-spacing: 0.01em;
}

/* =========================================
   Point section
========================================= */
.page-consulting-form .consulting-point-sec {
  padding: 28px 0 56px;
}

.page-consulting-form .consulting-point-inner {
  max-width: 1120px;
}

.page-consulting-form .consulting-point-head {
  margin-bottom: 26px;
}

.page-consulting-form .consulting-point-en {
  font-size: 1.7rem;
  line-height: 1.4;
  color: #555;
  margin-bottom: 4px;
}

.page-consulting-form .consulting-point-head h1 {
  font-size: 4rem;
  line-height: 1.4;
  font-weight: 400;
  color: #222;
}

.page-consulting-form .consulting-point-list {
  max-width: 980px;
}

.page-consulting-form .consulting-point-list p {
  position: relative;
  padding-left: 44px;
  margin-bottom: 14px;
  font-size: 3.3rem;
  line-height: 1.55;
  font-weight: 700;
  color: #373d87;
}

.page-consulting-form .consulting-point-list p::before {
  content: "✎";
  position: absolute;
  left: 0;
  top: 0.45em;
  font-size: 3rem;
  line-height: 1;
  color: #373d87;
}

/* =========================================
   Form section
========================================= */
.page-consulting-form .consulting-form-sec {
  padding: 26px 0 110px;
}

.page-consulting-form .consulting-form-inner {
  max-width: 980px;
}

.page-consulting-form .consulting-form-head {
  text-align: center;
  margin-bottom: 42px;
}

.page-consulting-form .consulting-form-sub {
  margin-bottom: 10px;
  font-size: 2.2rem;
  line-height: 1.5;
  color: #222;
}

.page-consulting-form .consulting-form-head h2 {
  display: inline-block;
  min-width: 460px;
  padding: 10px 24px;
  border: 4px solid #373d87;
  border-radius: 8px;
  font-size: 4rem;
  line-height: 1.4;
  font-weight: 700;
  color: #222;
  background: #fff;
}

.page-consulting-form .consulting-form-note {
  margin-top: 10px;
  font-size: 1.5rem;
  line-height: 1.7;
  color: #666;
}

/* =========================================
   Doctor form
========================================= */
.page-consulting-form .doctor-form {
  width: 100%;
}

.page-consulting-form .doctor-form-guide {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 1px solid #8e8e8e;
}

.page-consulting-form .doctor-form-guide-icon {
  font-size: 2.2rem;
  line-height: 1;
  color: #444;
}

.page-consulting-form .doctor-form-guide-text {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #444;
}

.page-consulting-form .doctor-form-section {
  margin-bottom: 42px;
}

.page-consulting-form .doctor-form-section h3 {
  margin-bottom: 18px;
  font-size: 2rem;
  line-height: 1.6;
  font-weight: 400;
  color: #222;
}

.page-consulting-form .doctor-form-row {
  margin-bottom: 24px;
}

.page-consulting-form .doctor-form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 1.5rem;
  line-height: 1.8;
  color: #333;
}

.page-consulting-form .doctor-input {
  width: 100%;
  max-width: 540px;
  height: 42px;
  padding: 0 12px;
  border: 1px solid #777;
  border-radius: 2px;
  background: #fff;
  font-size: 1.5rem;
  color: #222;
  box-shadow: none;
  outline: none;
}

.page-consulting-form .doctor-input:focus {
  border-color: #12a4df;
  outline: none;
}

.page-consulting-form .doctor-form-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
}

.page-consulting-form .doctor-form-checks .wpcf7-list-item {
  margin: 0 10px 0 0;
}

.page-consulting-form .doctor-form-checks label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.5rem;
  line-height: 1.8;
  color: #333;
  cursor: pointer;
}

.page-consulting-form .doctor-form-checks input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
}

.page-consulting-form .doctor-form-checks.col-4 {
  gap: 10px 18px;
}

.page-consulting-form .doctor-form-checks.col-4 .wpcf7-list-item {
  min-width: 90px;
}

.page-consulting-form .income-checks .wpcf7-list-item,
.page-consulting-form .time-checks .wpcf7-list-item {
  min-width: 160px;
}

/* =========================================
   NDA
========================================= */
.page-consulting-form .doctor-nda-box {
  margin-top: 34px;
  margin-bottom: 30px;
  padding: 26px;
  border: 1px solid #9d9d9d;
  background: #fff;
}

.page-consulting-form .doctor-nda-box h4 {
  margin: 0 0 24px;
  text-align: center;
  font-size: 2.6rem;
  line-height: 1.5;
  font-weight: 400;
  color: #222;
}

.page-consulting-form .doctor-nda-scroll {
  max-height: 460px;
  overflow-y: auto;
  padding-right: 10px;
}

.page-consulting-form .doctor-nda-scroll p {
  margin-bottom: 16px;
  font-size: 1.4rem;
  line-height: 2;
  color: #333;
}

.page-consulting-form .doctor-form-consent {
  margin-bottom: 36px;
  text-align: center;
}

.page-consulting-form .doctor-form-consent .wpcf7-list-item {
  margin: 0;
}

.page-consulting-form .doctor-form-consent label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 2rem;
  line-height: 1.8;
  color: #333;
  cursor: pointer;
}

.page-consulting-form .doctor-form-consent input[type="checkbox"] {
  width: 22px;
  height: 22px;
  margin: 0;
}

/* =========================================
   Submit
========================================= */
.page-consulting-form .doctor-form-submit {
  text-align: center;
}

.page-consulting-form .btn-doctor-submit {
  min-width: 460px;
}

.page-consulting-form .btn-doctor-submit .btn-text {
  justify-content: center;
  min-width: 0;
  padding-left: 22px;
  padding-right: 22px;
}

/* =========================================
   CF7 adjust
========================================= */
.page-consulting-form .wpcf7-spinner {
  display: block;
  margin: 14px auto 0;
}

.page-consulting-form .wpcf7-not-valid-tip {
  margin-top: 6px;
  font-size: 1.3rem;
}

.page-consulting-form .wpcf7 form .wpcf7-response-output {
  margin: 24px 0 0;
  padding: 12px 16px;
  font-size: 1.5rem;
  line-height: 1.8;
}

/* =========================================
   Responsive
========================================= */
@media screen and (max-width: 1199px) {
  .page-consulting-form .consulting-mv-inner {
    min-height: 560px;
    padding: 68px 32px 40px;
  }

  .page-consulting-form .consulting-mv-maincopy p {
    font-size: 5.2rem;
  }

  .page-consulting-form .consulting-point-list p {
    font-size: 3rem;
  }
}

@media screen and (max-width: 991px) {
  .page-consulting-form .consulting-mv-inner {
    min-height: 500px;
    padding: 58px 24px 34px;
  }

  .page-consulting-form .consulting-mv-copy h1 {
    font-size: 3.2rem;
  }

  .page-consulting-form .consulting-mv-maincopy {
    max-width: 460px;
  }

  .page-consulting-form .consulting-mv-maincopy p {
    font-size: 4.2rem;
    line-height: 1.3;
  }

  .page-consulting-form .consulting-point-head h2 {
    font-size: 3.2rem;
  }

  .page-consulting-form .consulting-point-list p {
    padding-left: 36px;
    font-size: 2.5rem;
  }

  .page-consulting-form .consulting-form-head h2 {
    min-width: 0;
    width: 100%;
    max-width: 420px;
    font-size: 3rem;
  }

  .page-consulting-form .doctor-input {
    max-width: 100%;
  }

  .page-consulting-form .btn-doctor-submit {
    min-width: 0;
    width: 100%;
    max-width: 460px;
  }
}

@media screen and (max-width: 767px) {
  .page-consulting-form .consulting-mv-inner {
    min-height: 360px;
    padding: 44px 20px 24px;
  }

  .page-consulting-form .consulting-mv-lead-en {
    font-size: 1.4rem;
  }

  .page-consulting-form .consulting-mv-copy h1 {
    font-size: 2.5rem;
  }

  .page-consulting-form .consulting-mv-maincopy {
    max-width: 290px;
    padding-left: 0;
  }

  .page-consulting-form .consulting-mv-maincopy p {
    font-size: 3rem;
    line-height: 1.32;
  }

  .page-consulting-form .consulting-point-sec {
    padding: 22px 0 36px;
  }

  .page-consulting-form .consulting-point-en {
    font-size: 1.4rem;
  }

  .page-consulting-form .consulting-point-head h2 {
    font-size: 2.4rem;
  }

  .page-consulting-form .consulting-point-list p {
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 1.9rem;
    line-height: 1.7;
  }

  .page-consulting-form .consulting-point-list p::before {
    font-size: 1.8rem;
  }

  .page-consulting-form .consulting-form-sec {
    padding: 44px 0 70px;
  }

  .page-consulting-form .consulting-form-sub {
    font-size: 1.7rem;
  }

  .page-consulting-form .consulting-form-head h2 {
    font-size: 2.4rem;
    padding: 8px 16px;
    border-width: 3px;
  }

  .page-consulting-form .consulting-form-note {
    font-size: 1.3rem;
  }

  .page-consulting-form .doctor-form-section h3 {
    font-size: 1.7rem;
  }

  .page-consulting-form .doctor-form-label,
  .page-consulting-form .doctor-form-checks label,
  .page-consulting-form .doctor-input {
    font-size: 1.4rem;
  }

  .page-consulting-form .doctor-form-consent label {
    font-size: 1.6rem;
    text-align: left;
  }

  .page-consulting-form .doctor-nda-box {
    padding: 18px;
  }

  .page-consulting-form .doctor-nda-box h4 {
    font-size: 2rem;
  }

  .page-consulting-form .btn-doctor-submit .btn-text {
    white-space: normal;
    font-size: 1.4rem;
    line-height: 1.5;
    text-align: center;
  }
}







/* =========================================
   Member registration form page
========================================= */
.page-member-form {
  background: #f7f7f7;
}

.page-member-form .member-mv {
  background:
    linear-gradient(rgba(245, 247, 248, 0.12), rgba(245, 247, 248, 0.12)),
    url("./images/member-mv.png") center center / cover no-repeat;
}

.page-member-form .member-mv-inner {
  width: min(100%, 1440px);
  min-height: 640px;
  margin: 0 auto;
  padding: 84px 40px 48px;
  display: flex;
  align-items: center;
}

.page-member-form .member-mv-maincopy {
  max-width: 560px;
}

.page-member-form .member-mv-maincopy p {
  font-size: 5rem;
  line-height: 1.28;
  font-weight: 700;
  color: #373d87;
  letter-spacing: 0.01em;
}

.page-member-form .member-point-sec {
  padding: 28px 0 52px;
}

.page-member-form .member-point-inner {
  max-width: 1120px;
}

.page-member-form .member-point-head {
  margin-bottom: 22px;
}

.page-member-form .member-point-en {
  font-size: 1.7rem;
  line-height: 1.4;
  color: #555;
  margin-bottom: 4px;
}

.page-member-form .member-point-head h1 {
  font-size: 4rem;
  line-height: 1.4;
  font-weight: 400;
  color: #222;
}

.page-member-form .member-point-list {
  max-width: 980px;
}

.page-member-form .member-point-list p {
  position: relative;
  padding-left: 44px;
  margin-bottom: 14px;
  font-size: 3.3rem;
  line-height: 1.55;
  font-weight: 700;
  color: #373d87;
}

.page-member-form .member-point-list p::before {
  content: "✎";
  position: absolute;
  left: 0;
  top: 0.45em;
  font-size: 3rem;
  line-height: 1;
  color: #373d87;
}

.page-member-form .member-form-sec {
  padding: 24px 0 110px;
}

.page-member-form .member-form-inner {
  max-width: 980px;
}

.page-member-form .member-form-head {
  text-align: center;
  margin-bottom: 42px;
}

.page-member-form .member-form-sub {
  margin-bottom: 10px;
  font-size: 2.2rem;
  line-height: 1.5;
  color: #222;
}

.page-member-form .member-form-head h2 {
  display: inline-block;
  min-width: 460px;
  padding: 10px 24px;
  border: 4px solid #373d87;
  border-radius: 8px;
  font-size: 4rem;
  line-height: 1.4;
  font-weight: 700;
  color: #222;
  background: #fff;
}

.page-member-form .member-form-note {
  max-width: 900px;
  margin: 12px auto 0;
  font-size: 1.5rem;
  line-height: 1.8;
  color: #666;
}

.page-member-form .member-form-wrap {
  width: 100%;
}


.page-member-form .doctor-form-guide {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 1px solid #8e8e8e;
}



/* member form layout */
.page-member-form .member-profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
}

.page-member-form .member-doctor-form .doctor-form-section {
  margin-bottom: 40px;
}

.page-member-form .member-doctor-form .doctor-form-section h3 {
  margin-bottom: 18px;
  font-size: 2rem;
  line-height: 1.6;
  font-weight: 400;
  color: #222;
}

.page-member-form .member-doctor-form .doctor-form-row {
  margin-bottom: 20px;
}

.page-member-form .member-doctor-form .doctor-form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 1.5rem;
  line-height: 1.8;
  color: #333;
}

.page-member-form .member-doctor-form .doctor-input {
  width: 100%;
  height: 42px;
  padding: 0 12px;
  border: 1px solid #777;
  border-radius: 2px;
  background: #fff;
  font-size: 1.5rem;
  color: #222;
  box-shadow: none;
  outline: none;
}

.page-member-form .member-doctor-form .doctor-input:focus,
.page-member-form .member-doctor-form .doctor-textarea:focus {
  border-color: #12a4df;
  outline: none;
}

.page-member-form .member-doctor-form .doctor-textarea {
  width: 100%;
  min-height: 110px;
  padding: 12px;
  border: 1px solid #777;
  border-radius: 2px;
  background: #fff;
  font-size: 1.5rem;
  color: #222;
  resize: vertical;
}

.page-member-form .member-doctor-form .doctor-form-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
}

.page-member-form .member-doctor-form .doctor-form-checks .wpcf7-list-item {
  margin: 0 10px 0 0;
}

.page-member-form .member-doctor-form .doctor-form-checks label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.5rem;
  line-height: 1.8;
  color: #333;
  cursor: pointer;
}

.page-member-form .member-doctor-form .doctor-form-checks input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
}

.page-member-form .member-doctor-form .doctor-form-checks.col-4 {
  gap: 10px 18px;
}

.page-member-form .member-doctor-form .doctor-form-checks.col-4 .wpcf7-list-item {
  min-width: 80px;
}

.page-member-form .member-doctor-form .income-checks .wpcf7-list-item {
  min-width: 160px;
}

/* NDA */
.page-member-form .member-doctor-form .doctor-nda-box {
  margin-top: 34px;
  margin-bottom: 30px;
  padding: 26px;
  border: 1px solid #9d9d9d;
  background: #fff;
}

.page-member-form .member-doctor-form .doctor-nda-box h4 {
  margin: 0 0 24px;
  text-align: center;
  font-size: 2.6rem;
  line-height: 1.5;
  font-weight: 400;
  color: #222;
}

.page-member-form .member-doctor-form .doctor-nda-scroll {
  max-height: 420px;
  overflow-y: auto;
  padding-right: 10px;
}

.page-member-form .member-doctor-form .doctor-nda-scroll p {
  margin-bottom: 16px;
  font-size: 1.4rem;
  line-height: 2;
  color: #333;
}

.page-member-form .member-doctor-form .doctor-form-consent {
  margin-bottom: 36px;
  text-align: center;
}

.page-member-form .member-doctor-form .doctor-form-consent .wpcf7-list-item {
  margin: 0;
}

.page-member-form .member-doctor-form .doctor-form-consent label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 2rem;
  line-height: 1.8;
  color: #333;
  cursor: pointer;
}

.page-member-form .member-doctor-form .doctor-form-consent input[type="checkbox"] {
  width: 22px;
  height: 22px;
  margin: 0;
}

/* submit */
.page-member-form .member-doctor-form .doctor-form-submit {
  text-align: center;
}

.page-member-form .member-doctor-form .btn-doctor-submit {
  min-width: 460px;
}

.page-member-form .member-doctor-form .btn-doctor-submit .btn-text {
  justify-content: center;
  min-width: 0;
  padding-left: 22px;
  padding-right: 22px;
}

/* CF7 */
.page-member-form .wpcf7-spinner {
  display: block;
  margin: 14px auto 0;
}

.page-member-form .wpcf7-not-valid-tip {
  margin-top: 6px;
  font-size: 1.3rem;
}

.page-member-form .wpcf7 form .wpcf7-response-output {
  margin: 24px 0 0;
  padding: 12px 16px;
  font-size: 1.5rem;
  line-height: 1.8;
}

/* responsive */
@media screen and (max-width: 1199px) {
  .page-member-form .member-mv-inner {
    min-height: 560px;
    padding: 70px 32px 40px;
  }

  .page-member-form .member-mv-maincopy p {
    font-size: 5rem;
  }

  .page-member-form .member-point-list p {
    font-size: 3rem;
  }
}

@media screen and (max-width: 991px) {
  .page-member-form .member-mv-inner {
    min-height: 500px;
    padding: 58px 24px 34px;
  }

  .page-member-form .member-mv-maincopy {
    max-width: 460px;
  }

  .page-member-form .member-mv-maincopy p {
    font-size: 4.2rem;
    line-height: 1.3;
  }

  .page-member-form .member-point-head h1 {
    font-size: 3.2rem;
  }

  .page-member-form .member-point-list p {
    padding-left: 36px;
    font-size: 2.5rem;
  }

  .page-member-form .member-form-head h2 {
    min-width: 0;
    width: 100%;
    max-width: 420px;
    font-size: 3rem;
  }

  .page-member-form .member-profile-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .page-member-form .member-doctor-form .btn-doctor-submit {
    min-width: 0;
    width: 100%;
    max-width: 460px;
  }
}

@media screen and (max-width: 767px) {
  .page-member-form .member-mv-inner {
    min-height: 360px;
    padding: 44px 20px 24px;
  }

  .page-member-form .member-mv-maincopy {
    max-width: 290px;
  }

  .page-member-form .member-mv-maincopy p {
    font-size: 3rem;
    line-height: 1.32;
  }

  .page-member-form .member-point-sec {
    padding: 22px 0 36px;
  }

  .page-member-form .member-point-en {
    font-size: 1.4rem;
  }

  .page-member-form .member-point-head h1 {
    font-size: 2.4rem;
  }

  .page-member-form .member-point-list p {
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 1.9rem;
    line-height: 1.7;
  }

  .page-member-form .member-point-list p::before {
    font-size: 1.8rem;
  }

  .page-member-form .member-form-sec {
    padding: 44px 0 70px;
  }

  .page-member-form .member-form-sub {
    font-size: 1.7rem;
  }

  .page-member-form .member-form-head h2 {
    font-size: 2.4rem;
    padding: 8px 16px;
    border-width: 3px;
  }

  .page-member-form .member-form-note {
    font-size: 1.3rem;
  }

  .page-member-form .member-doctor-form .doctor-form-section h3 {
    font-size: 1.7rem;
  }

  .page-member-form .member-doctor-form .doctor-form-label,
  .page-member-form .member-doctor-form .doctor-form-checks label,
  .page-member-form .member-doctor-form .doctor-input,
  .page-member-form .member-doctor-form .doctor-textarea {
    font-size: 1.4rem;
  }

  .page-member-form .member-doctor-form .doctor-form-consent label {
    font-size: 1.6rem;
    text-align: left;
  }

  .page-member-form .member-doctor-form .doctor-nda-box {
    padding: 18px;
  }

  .page-member-form .member-doctor-form .doctor-nda-box h4 {
    font-size: 2rem;
  }

  .page-member-form .member-doctor-form .btn-doctor-submit .btn-text {
    white-space: normal;
    font-size: 1.4rem;
    line-height: 1.5;
    text-align: center;
  }
}



/* =========================================
   Baton archive
========================================= */
.baton-archive {
  background: #f7f7f7;
}

.baton-archive-mv {
  background:
    linear-gradient(rgba(0, 149, 255, 0.10), rgba(0, 149, 255, 0.10)),
    url("./images/baton-archive-mv.png") center center / cover no-repeat;
}

.baton-archive-mv__inner {
  position: relative;
  width: min(100%, 1440px);
  min-height: 560px;
  margin: 0 auto;
  padding: 42px 40px 24px;
}

.baton-archive-mv__lead {
  text-align: center;
  color: #fff;
}

.baton-archive-mv__lead .baton-archive-mv__sub {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.baton-archive-mv__lead h1 {
  font-size: 5.6rem;
  line-height: 1.35;
  font-weight: 400;
  color: #fff;
}

.baton-archive-mv__copy {
  position: absolute;
  top: 150px;
  z-index: 3;
}

.baton-archive-mv__copy--left {
  left: 90px;
}

.baton-archive-mv__copy--right {
  right: 180px;
}

.baton-archive-mv__copy p {
  font-size: 4.6rem;
  line-height: 1.45;
  font-weight: 700;
  color: #fff;
}

.baton-archive-mv__doctor {
  position: absolute;
  bottom: 0;
  z-index: 2;
}

.baton-archive-mv__doctor--left {
  left: 20px;
}

.baton-archive-mv__doctor--right {
  right: 20px;
}

.baton-archive-mv__doctor img {
  max-height: 360px;
  width: auto;
  display: block;
}

/* CTA */
.baton-archive-cta {
  padding: 18px 0 34px;
}

.baton-archive-cta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.baton-archive-cta__item {
  text-align: center;
}



.baton-archive-cta__caption {
  margin-bottom: 10px;
  font-size: 1.8rem;
  color: #333;
}

.baton-archive-cta__btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 100%;
  min-height: 64px;
  padding: 0 24px;
  border-radius: 6px;
  font-size: 3rem;
  line-height: 1.4;
  font-weight: 700;
  text-decoration: none;
}

.baton-archive-cta__btn small {
  margin-left: 8px;
  font-size: 1.5rem;
}

.baton-archive-cta__btn--outline {
  color: #373d87;
  border: 4px solid #373d87;
  background: #fff;
}

.baton-archive-cta__btn--yellow {
  color: #222;
  border: 4px solid #e8b100;
  background: #fff;
}

/* head */
.baton-archive-list-sec {
  padding-bottom: 90px;
}

.baton-archive-head {
  margin-bottom: 28px;
}

.baton-archive-head__en {
  font-size: 1.6rem;
  color: #555;
  margin-bottom: 6px;
}

.baton-archive-head h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
  font-size: 4rem;
  line-height: 1.4;
  font-weight: 400;
  color: #222;
}

.baton-archive-head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 86px;
  height: 2px;
  background: #8fd0ee;
}

/* list */
.baton-archive-list {
  display: grid;
  gap: 30px;
}

.baton-card {
  position: relative;
  padding: 42px 24px 18px;
  background: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.baton-card__code {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 1.3rem;
  color: #666;
}

.baton-card__label {
  margin: 0 0 12px;
  font-size: 3.4rem;
  line-height: 1.4;
  color: #222;
}

.baton-card__inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 28px;
  align-items: start;
}

.baton-card__mainimg img {
  width: 100%;
  aspect-ratio: 1 / 0.78;
  object-fit: cover;
  display: block;
}

.baton-card__thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.baton-card__thumb img {
  width: 100%;
  aspect-ratio: 1 / 0.72;
  object-fit: cover;
  display: block;
}

.baton-card__title {
  margin-bottom: 18px;
  font-size: 3.2rem;
  line-height: 1.5;
  font-weight: 400;
  color: #222;
}

.baton-card__meta {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
}

.baton-card-meta-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px;
}

.baton-card-meta-row dt {
  margin: 0;
  padding: 7px 10px;
  background: #37b24d;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.5;
  text-align: center;
}

.baton-card-meta-row dd {
  margin: 0;
  font-size: 1.7rem;
  line-height: 1.8;
  color: #333;
}

.baton-card__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.baton-card__btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 6px;
  color: #fff;
  font-size: 1.8rem;
  text-decoration: none;
}

.baton-card__btn--green {
  background: #27ae60;
}

.baton-card__btn--yellow {
  background: #f2b600;
  color: #fff;
}

.baton-card__note {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #666;
}

.baton-archive-empty {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
  border-radius: 10px;
}

.baton-archive-pagination {
  margin-top: 30px;
}

/* responsive */
@media screen and (max-width: 1199px) {
  .baton-archive-mv__lead h1 {
    font-size: 4.4rem;
  }

  .baton-archive-mv__copy p {
    font-size: 3.6rem;
  }

  .baton-archive-mv__copy--left {
    left: 50px;
  }

  .baton-archive-mv__copy--right {
    right: 120px;
  }

  .baton-card__inner {
    grid-template-columns: 320px 1fr;
  }

  .baton-card__title {
    font-size: 3.2rem;
  }
}

@media screen and (max-width: 991px) {
  .baton-archive-mv__inner {
    min-height: 460px;
    padding: 32px 24px 20px;
  }

  .baton-archive-mv__lead h1 {
    font-size: 3.4rem;
  }

  .baton-archive-mv__copy {
    top: 130px;
  }

  .baton-archive-mv__copy p {
    font-size: 2.8rem;
  }

  .baton-archive-mv__doctor img {
    max-height: 250px;
  }

  .baton-archive-cta__grid {
    grid-template-columns: 1fr;
  }

  .baton-archive-cta__btn {
    min-width: 0;
    width: 100%;
    font-size: 2.4rem;
  }

  .baton-card__inner {
    grid-template-columns: 1fr;
  }

  .baton-card__buttons {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  .baton-archive-mv__inner {
    min-height: 380px;
    padding: 24px 20px 12px;
  }

  .baton-archive-mv__lead h1 {
    font-size: 2.6rem;
  }

  .baton-archive-mv__sub {
    font-size: 1.3rem;
  }

  .baton-archive-mv__copy {
    position: static;
    margin-top: 18px;
  }

  .baton-archive-mv__copy p {
    font-size: 2.2rem;
  }

  .baton-archive-mv__doctor {
    display: none;
  }

  .baton-archive-head h2 {
    font-size: 2.6rem;
  }

  .baton-card {
    padding: 18px 16px 14px;
  }

  .baton-card__label {
    font-size: 2.4rem;
  }

  .baton-card__title {
    font-size: 2.4rem;
  }

  .baton-card-meta-row {
    grid-template-columns: 90px 1fr;
  }

  .baton-card-meta-row dt,
  .baton-card-meta-row dd {
    font-size: 1.4rem;
  }

  .baton-card__btn {
    font-size: 1.5rem;
  }
}



.baton-card__thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.baton-card__thumb {
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.baton-card__thumb img {
  width: 100%;
  aspect-ratio: 1 / 0.72;
  object-fit: cover;
  display: block;
}

/* lightbox */
.baton-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}

.baton-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.baton-lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.baton-lightbox__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(92vw, 1100px);
  max-height: 90vh;
  transform: translate(-50%, -50%);
}

.baton-lightbox__inner img {
  width: 100%;
  max-height: 90vh;
  object-fit: contain;
  display: block;
  background: #fff;
}

.baton-lightbox__close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #222;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}


.baton-card__mainimg,
.baton-card__thumb {
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.baton-card__mainimg {
  display: block;
  width: 100%;
}

.baton-card__mainimg img {
  width: 100%;
  aspect-ratio: 1 / 0.78;
  object-fit: cover;
  display: block;
}

.baton-card__thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.baton-card__thumb img {
  width: 100%;
  aspect-ratio: 1 / 0.72;
  object-fit: cover;
  display: block;
}

/* lightbox */
.baton-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}

.baton-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.baton-lightbox__overlay {
  position: absolute;
  inset: 0;
}

.baton-lightbox__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(92vw, 1100px);
  max-height: 90vh;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.baton-lightbox__inner img {
  width: 100%;
  max-height: 90vh;
  object-fit: contain;
  display: block;
  background: #fff;
}

.baton-lightbox__close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #222;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.baton-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: #222;
  font-size: 3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.baton-lightbox__nav--prev {
  left: -70px;
}

.baton-lightbox__nav--next {
  right: -70px;
}

@media screen and (max-width: 767px) {
  .baton-lightbox__nav {
    width: 44px;
    height: 44px;
    font-size: 2.4rem;
  }

  .baton-lightbox__nav--prev {
    left: 6px;
  }

  .baton-lightbox__nav--next {
    right: 6px;
  }

  .baton-lightbox__close {
    top: 6px;
    right: 6px;
    z-index: 2;
  }
}






/* =========================================
   Baton detail
========================================= */
.baton-detail {
  background: #f7f7f7;
}

.baton-detail-mv {
  background:
    linear-gradient(rgba(0, 149, 255, 0.10), rgba(0, 149, 255, 0.10)),
    url("./images/baton-archive-mv.png") center center / cover no-repeat;
}

.baton-detail-mv__inner {
  position: relative;
  width: min(100%, 1440px);
  min-height: 560px;
  margin: 0 auto;
  padding: 42px 40px 24px;
}

.baton-detail-mv__lead {
  text-align: center;
  color: #fff;
}

.baton-detail-mv__sub {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.baton-detail-mv__lead h1 {
  font-size: 5.6rem;
  line-height: 1.35;
  font-weight: 400;
  color: #fff;
}

.baton-detail-mv__doctor {
  position: absolute;
  bottom: 0;
}

.baton-detail-mv__doctor--left {
  left: 20px;
}

.baton-detail-mv__doctor--right {
  right: 20px;
}

.baton-detail-mv__doctor img {
  max-height: 290px;
  width: auto;
  display: block;
}

/* head */
.baton-detail-sec {
  padding: 34px 0 90px;
}

.baton-detail-head {
  margin-bottom: 34px;
  text-align: center;
}

.baton-detail-head h2 {
  margin-bottom: 10px;
  font-size: 5rem;
  line-height: 1.4;
  font-weight: 400;
  color: #222;
}

.baton-detail-head__code {
  font-size: 2rem;
  line-height: 1.6;
  color: #444;
}

/* card */
.baton-detail-card {
  position: relative;
  padding: 42px 24px 30px;
  background: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.baton-detail-card__code {
  position: absolute;
  top: 14px;
  right: 20px;
  font-size: 1.4rem;
  color: #666;
}

.baton-detail-card__inner {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 28px;
  align-items: start;
}

.baton-detail-card__mainimg,
.baton-detail-card__thumb {
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.baton-detail-card__mainimg {
  display: block;
  width: 100%;
}

.baton-detail-card__mainimg img {
  width: 100%;
  aspect-ratio: 1 / 0.8;
  object-fit: cover;
  display: block;
}

.baton-detail-card__thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.baton-detail-card__thumb img {
  width: 100%;
  aspect-ratio: 1 / 0.72;
  object-fit: cover;
  display: block;
}

.baton-detail-card__title {
  margin-bottom: 22px;
  font-size: 3.2rem;
  line-height: 1.45;
  font-weight: 400;
  color: #222;
}

.baton-detail-card__meta {
  display: grid;
  gap: 14px;
  margin: 0;
}

.baton-detail-meta-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
}

.baton-detail-meta-row dt {
  margin: 0;
  padding: 10px 12px;
  background: #37b24d;
  color: #fff;
  font-size: 1.7rem;
  line-height: 1.5;
  text-align: center;
}

.baton-detail-meta-row dd {
  margin: 0;
  font-size: 1.9rem;
  line-height: 1.9;
  color: #333;
}

.baton-detail-card__cta {
  margin-top: 40px;
  text-align: center;
  width: 100%;
}

.baton-detail-card__visit-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;

  min-width: 520px;
  min-height: 74px;

  padding: 0 28px;

  border: 6px solid #3f7f2f;
  border-radius: 8px;

  background: #fff;
  color: #222;

  font-size: 3.5rem;
  font-weight: 700;

  text-decoration: none;
}

/* lightbox */
.baton-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}

.baton-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.baton-lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
}

.baton-lightbox__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(92vw, 1100px);
  max-height: 90vh;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.baton-lightbox__inner img {
  width: 100%;
  max-height: 90vh;
  object-fit: contain;
  display: block;
  background: #fff;
}

.baton-lightbox__close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #222;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.baton-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: #222;
  font-size: 3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.baton-lightbox__nav--prev {
  left: -70px;
}

.baton-lightbox__nav--next {
  right: -70px;
}

/* responsive */
@media screen and (max-width: 1199px) {
  .baton-detail-mv__lead h1 {
    font-size: 4.4rem;
  }

  .baton-detail-card__inner {
    grid-template-columns: 420px 1fr;
  }

  .baton-detail-card__title {
    font-size: 3.8rem;
  }

  .baton-detail-card__visit-btn {
    min-width: 420px;
    font-size: 3rem;
  }
}

@media screen and (max-width: 991px) {
  .baton-detail-mv__inner {
    min-height: 360px;
    padding: 32px 24px 18px;
  }

  .baton-detail-mv__lead h1 {
    font-size: 3.4rem;
  }

  .baton-detail-mv__doctor img {
    max-height: 220px;
  }

  .baton-detail-head h2 {
    font-size: 3.6rem;
  }

  .baton-detail-card__inner {
    grid-template-columns: 1fr;
  }

  .baton-detail-card__title {
    font-size: 3rem;
  }

  .baton-detail-card__visit-btn {
    min-width: 0;
    width: 100%;
    max-width: 480px;
  }
}

@media screen and (max-width: 767px) {
  .baton-detail-mv__inner {
    min-height: 260px;
    padding: 20px 20px 12px;
  }

  .baton-detail-mv__lead h1 {
    font-size: 2.6rem;
  }

  .baton-detail-mv__sub {
    font-size: 1.3rem;
  }

  .baton-detail-mv__doctor {
    display: none;
  }

  .baton-detail-sec {
    padding: 24px 0 60px;
  }

  .baton-detail-head h2 {
    font-size: 2.8rem;
  }

  .baton-detail-head__code {
    font-size: 1.6rem;
  }

  .baton-detail-card {
    padding: 18px 16px 22px;
  }

  .baton-detail-card__title {
    font-size: 2.4rem;
  }

  .baton-detail-meta-row {
    grid-template-columns: 96px 1fr;
    gap: 10px;
  }

  .baton-detail-meta-row dt {
    font-size: 1.4rem;
    padding: 8px 8px;
  }

  .baton-detail-meta-row dd {
    font-size: 1.6rem;
    line-height: 1.8;
  }

  .baton-detail-card__visit-btn {
    border-width: 4px;
    min-height: 58px;
    font-size: 2.4rem;
  }

  .baton-lightbox__nav {
    width: 44px;
    height: 44px;
    font-size: 2.4rem;
  }

  .baton-lightbox__nav--prev {
    left: 6px;
  }

  .baton-lightbox__nav--next {
    right: 6px;
  }

  .baton-lightbox__close {
    top: 6px;
    right: 6px;
    z-index: 2;
  }
}




/* =================================
   会員限定ページ表示
================================= */

.baton-member-only {
  padding: 120px 20px;
  text-align: center;
  background: #f7f7f7;
}

.baton-member-only__title {
  font-size: 4rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.baton-member-only__text {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #555;
}

.baton-member-only__buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.baton-member-only__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 60px;
  padding: 0 30px;
  font-size: 1.8rem;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}

.baton-member-only__btn--login {
  background: #1f6fb2;
  color: #fff;
}

.baton-member-only__btn--register {
  background: #37b24d;
  color: #fff;
}

.baton-member-only__btn:hover {
  opacity: .85;
}




.member-login-page{
max-width:500px;
margin:120px auto;
padding:40px;
background:#fff;
border-radius:10px;
box-shadow:0 4px 20px rgba(0,0,0,.08);
}

.member-login-title{
text-align:center;
font-size:3rem;
margin-bottom:30px;
}

.member-login-field{
margin-bottom:20px;
}

.member-login-field label{
display:block;
margin-bottom:6px;
font-size:1.4rem;
}

.member-login-field input{
width:100%;
height:46px;
padding:0 10px;
border:1px solid #ccc;
border-radius:4px;
}

.member-login-button{
  width:100%;
  height:56px;
  margin-top:10px;
  border:none;
  border-radius:6px;

  background:#37b24d;
  color:#fff;

  font-size:1.8rem;
  font-weight:600;

  cursor:pointer;
  transition:.25s;
}

.member-login-button:hover{
  background:#2f9e44;
}

.member-login-button:active{
  transform:translateY(1px);
}












