/* ========================================
   CSS Variables
   ======================================== */
/* 1. Light（細字） */
@font-face {
  font-family: "Higure Gothic";
  src: url("../fonts/HigureGothic-Light.woff2") format("woff2");
  font-weight: 300; /* Lightは300を指定 */
  font-style: normal;
  font-display: swap;
}

/* 2. Regular（通常） */
@font-face {
  font-family: "Higure Gothic";
  src: url("../fonts/HigureGothic-Regular.woff2") format("woff2");
  font-weight: 400; /* Regularは400（標準）を指定 */
  font-style: normal;
  font-display: swap;
}

/* 3. Medium（中太） */
@font-face {
  font-family: "Higure Gothic";
  src: url("../fonts/HigureGothic-Medium.woff2") format("woff2");
  font-weight: 500; /* Mediumは500を指定 */
  font-style: normal;
  font-display: swap;
}

/* 4. Bold（太字） */
@font-face {
  font-family: "Higure Gothic";
  src: url("../fonts/HigureGothic-Bold.woff2") format("woff2");
  font-weight: 700; /* Boldは700（一般的な太字）を指定 */
  font-style: normal;
  font-display: swap;
}

/* 5. Black（極太） */
@font-face {
  font-family: "Higure Gothic";
  src: url("../fonts/HigureGothic-Black.woff2") format("woff2");
  font-weight: 900; /* Blackは900（最強の太さ）を指定 */
  font-style: normal;
  font-display: swap;
}
:root {
  /* Main colors */
  --color-main-green: #2b8667;
  --color-main-dark: #201f1e;

  /* Background colors */
  --color-bg-base: #f8f7f5;
  --color-bg-light: #eff1e9;
  --color-bg-muted: #eaeee4;

  /* Gradients */
  --gradient-light: linear-gradient(180deg, #ebede3 0%, #f2f3eb 100%);
  --gradient-green: linear-gradient(180deg, #2b8667 0%, #216e54 100%);

  /* Typography */
  --font-family-base: "Higure Gothic", "Ubuntu", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;

  /* Layout */
  --content-max-width: 1080px;
  --header-height: 72px;

  /* Transition */
  --transition-base: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-family-base);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-main-dark);
  background-color: var(--color-bg-base);
  -webkit-font-smoothing: antialiased;
	    font-weight: 400;
    font-feature-settings: "palt";
	-webkit-font-feature-settings: "palt";
    word-break: auto-phrase;
    line-height: 1.7;
	word-break: break-all;
	letter-spacing: 0.em;
}

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

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

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

p {
  margin: 0;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

/* ========================================
   Common Layout
   ======================================== */
.main {
  min-height: calc(100vh - var(--header-height));
}

.section {
  scroll-margin-top: var(--header-height);
}

.section--placeholder {
  min-height: 50vh;
}

/* ========================================
   Fade-in Animation
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

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

/* ========================================
   Key Visual (KV)
   ======================================== */
.kv {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 1189;
  overflow: hidden;
  background-color: var(--color-bg-base);
  background-image: url("../images/pc/kv.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
}

.kv__inner {
  position: absolute;
  inset: 0;
  box-sizing: border-box;
  margin: 0 auto;
  height: auto;
  padding:
    clamp(72px, 13.333vw, 200px)
    clamp(20px, 2.778vw, 40px)
    clamp(40px, 5.556vw, 80px);
  display: flex;
  align-items: stretch;
}

.kv__content {
  position: relative;
  z-index: 2;
  width: 61%;
  max-width: 100%;
  height: auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding-top: 0;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.kv__tagline {
  font-size: clamp(11px, 1.242vw, 35px);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.6;
  color: var(--color-main-green);
}

.kv__name-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(4px, 0.556vw, 8px);
  margin-top: clamp(10px, 1.389vw, 20px);
}

.kv__name-line {
  font-size: clamp(36px, 3.472vw, 70px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0;
  color: #fff;
  white-space: normal;
  word-break: break-word;
}

/*.kv__name-bg {
  display: inline;
  background: var(--gradient-green);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: clamp(2px, 0.278vw, 4px) 0;
  font-feature-settings: "palt", "chws";
  letter-spacing: -0.06em;
  white-space: normal;
  word-break: break-word;
}*/

.kv__name-bg {
  display: inline-block; /* inline から inline-block に変更 */
  background: var(--gradient-green);
  /* 複数行を考慮する以下の2行は不要になるので削除してOKです */
  /* -webkit-box-decoration-break: clone; */
  /* box-decoration-break: clone; */
  padding: clamp(2px, 0.278vw, 4px) 0;
  font-feature-settings: "palt", "chws";
  letter-spacing: -0.06em;
  white-space: normal;
  word-break: break-word;
	line-height: 1;
}

.kv__catch {
  margin-top: clamp(60px, 13.889vw, 140px);
  margin-bottom: 0;
  font-size: clamp(20px, 2.5vw, 56px);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.35;
  color: var(--color-main-green);
  white-space: normal;
  word-break: break-word;
}

.kv__name-en {
  display: none;
}

.kv__lead {
  margin-top: clamp(14px, 1.944vw, 28px);
  font-size: clamp(13px, 1.667vw, 44px);
  font-weight: 500;
  line-height: 2.2;
  letter-spacing: 0.02em;
  color: var(--color-main-dark);
  white-space: normal;
  word-break: break-word;
}

.kv__lead-em {
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--color-main-green);
  white-space: normal;
  word-break: break-word;
}

.kv__lead-em span {
  font-weight: 800;
  font-size: clamp(22px, 2.778vw, 40px);
}

.kv__br--sp {
  display: none;
}

.kv__visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.kv__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kv__tagline.fade-in { transition-delay: 0s; }
.kv__name-box.fade-in { transition-delay: 0.1s; }
.kv__catch.fade-in { transition-delay: 0.2s; }
.kv__lead.fade-in { transition-delay: 0.3s; }
.kv__visual.fade-in { transition-delay: 0.15s; }

/* ========================================
   Fixed Contact Button
   ======================================== */
.fixed-contact {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 90;
  display: grid;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  height: 53px;
  padding: 10px 0px 10px 30px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  border-radius: 26px;
  box-shadow: 0 4px 16px rgba(43, 134, 103, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.3s ease;
  
  /* ↓ 修正ポイント：backgroundプロパティで画像とグラデーションをまとめる */
  background: url("../images/common/mail_icon.png") no-repeat calc(50% - 3.5em) center, var(--gradient-green) center;
	background-size: 1.6em auto;
	
}
.fixed-contact > span:nth-of-type(1) {
        font-size: 14px;
	font-weight: 400;
	margin-bottom: 5px;
    }
.fixed-contact span {
        font-size: 14px;
        line-height: 1;
    }
.fixed-contact:hover {
  transform: translateY(-2px);
}

.fixed-contact.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* ========================================
   Section Title (Common)
   ======================================== */
.section-title {
  text-align: center;
}

.section-title__en {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--color-main-green);
}

.section-title__ja {
  margin-top: 10px;
	margin-bottom: 60px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-main-dark);
}

	.about__block .section-title__ja, .privacy__block .section-title__ja, .regulations__block .section-title__ja {
		text-align: center;
  }
.regulations ol {
	padding-left: 1.4em;
}
.regulations ol li {
	list-style: decimal;
 list-style-type:none;
 counter-increment: number;
}

.regulations ol li::before{
 content: "(" counter(number) ") ";
	margin-left: -1.4em;
}

.regulations p {
	margin: revert;
}

.text-left p, .text-left h2 {
	text-align: left;
}

/* ========================================
   Partner
   ======================================== */
.partner {
  padding: 100px 0;
  background-color: var(--color-bg-base);
  /* overflow: hidden; */ /* スクロール仕様復元時に有効化 */
  overflow: visible;
}

.partner__inner {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0;
}

.partner__rows {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* スクロール仕様復元用
.partner__row {
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}
*/

.partner__row {
  width: 100%;
}

/* スクロール仕様復元用
.partner__track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.partner__track--ltr {
  animation: partner-scroll-ltr 40s linear infinite;
}

.partner__track--rtl {
  animation: partner-scroll-rtl 45s linear infinite;
}
*/

.partner__track {
  width: 100%;
  display: block;
}

.partner__list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 30px 30px;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0 auto;
}

.partner__item {
  flex: 0 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.partner__logo {
  display: block;
  height: 100px;
  width: auto;
  /*max-width: 200px;*/
  object-fit: contain;
}

/* スクロール仕様復元用
@keyframes partner-scroll-ltr {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes partner-scroll-rtl {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
*/

/* PC（1081px以上）: 1080px枠内に収める */
@media (min-width: 1081px) {
  .partner__inner {
    max-width: 1080px;
    width: 100%;
    box-sizing: border-box;
	          padding: 0 40px;
  }

  .partner__rows,
  .partner__row,
  .partner__track,
  .partner__list {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .partner__track {
    display: block;
    width: 100%;
    max-width: 100%;
  }

  .partner__list {
    --partner-gap: 20px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: var(--partner-gap);
    width: 100%;
    max-width: 100%;
  }

  /* 1段目・3段目（5ロゴ） */
  .partner__row:nth-child(1) .partner__item,
  .partner__row:nth-child(3) .partner__item {
    flex: 0 1 calc((100% - (4 * var(--partner-gap))) / 5);
    max-width: calc((100% - (4 * var(--partner-gap))) / 5);
    min-width: 0;
  }

  /* 2段目（6ロゴ） */
  .partner__row:nth-child(2) .partner__item {
    flex: 0 1 calc((100% - (5 * var(--partner-gap))) / 6);
    max-width: calc((100% - (5 * var(--partner-gap))) / 6);
    min-width: 0;
  }

  .partner__logo {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 130px;
    object-fit: contain;
  }
}

/* ========================================
   News
   ======================================== */
.news {
  padding: 100px 0;
  background-color: var(--color-bg-light);
	border-radius: 0 100px 0 0;
}

.news__inner {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.news__list {
  margin-top: 48px;
  border-top: 1px solid var(--color-bg-muted);
}

.news__item {
  border-bottom: 1px solid var(--color-bg-muted);
	background-color: #fff;
	margin-bottom: 20px;
	border-radius: 20px;
	box-shadow: 0 0px 4px rgba(43, 134, 103, 0.1);
    padding: 30px 30px;
}

.is-open .news__trigger {
  padding: 0px 0px 20px 0px;
}
.news__trigger {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px; /* 縦の隙間20px、横の隙間24px */
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: opacity var(--transition-base);
}

.news__trigger:hover {
  opacity: 0.7;
}

/* ──── ここから調整・追記したパーツ ──── */

.news__meta {
  grid-column: 1 / 3; /* 1列目〜2列目（アイコンの手前まで）を占有 */
  grid-row: 1;        /* 1行目に配置 */
}

.news__title {
  grid-column: 1 / 3; /* 1列目〜2列目（アイコンの手前まで）を占有 */
  grid-row: 2;        /* 2行目に配置（これで日付の下に落ちます！） */

  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--color-main-dark);
}

.news__icon {
  grid-column: 3;     /* 3列目に配置 */
  grid-row: 1 / 3;    /* 1行目〜2行目まで縦にぶち抜く（日付とタイトルの右側にまたがる） */
}

.news__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex-shrink: 0;
    grid-column: 1;
    grid-row: 1;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.news__label {
  display: inline-block;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  border-radius: 3px;
	width: 8.5em;
	text-align: center;
}

.news__label.info {
  color: var(--color-main-green);
  background-color: var(--color-bg-muted);
}
.news__label.media {
  color: #445a68;
  background-color: #dbe3e8;
}

.news__date {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-main-dark);
  white-space: nowrap;
}

.news__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--color-main-dark);
}

.news__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-main-green);

  /* ▼ ここを追記 ▼ */
  border: solid 2px var(--color-main-green); /* 枠線を引く（太さはお好みで調整） */
  border-radius: 50%;                   /* 角を限界まで丸くして「真丸」にする */
  
  /* ▼ Gridレイアウト内のアイコンの位置を調整したい場合 ▼ */
  /* 文字列が多い時にアイコンが上に張り付かないよう、 */
  /* 縦方向の中央寄せを明示的に指定しておくと安心です */
  align-self: center; 
}

.news__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.news__item.is-open .news__body {
  grid-template-rows: 1fr;
}

.news__body-inner {
  overflow: hidden;
}

.news__detail {
  /*padding: 0 8px 24px;*/
  font-size: 15px;
  line-height: 2.5;
  color: var(--color-main-dark);
	font-weight: 500;
}
.news__detail a {
	color: var(--color-main-green);
	border-bottom: solid 1px var(--color-main-green);
}
.news__item--no-content .news__trigger {
  cursor: default;
  pointer-events: none;
}

.news__item--no-content .news__trigger:hover {
  opacity: 1;
}

.news__item--no-content .news__icon {
  display: none;
}

/* ========================================
   About
   ======================================== */
.about {
  padding: 100px 0;
  background-color: var(--color-bg-base);
	background-image: url("../images/pc/aboutus_bg.png");
	    background-repeat: no-repeat;
        background-size: max(90%, 1200px) auto;
    background-position: top right;
}

.about__inner {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 40px;
}
.privacy__inner, .regulations__inner {
  max-width: var(--content-max-width);
  margin: 0 auto 100px auto;
  padding: 0 40px;
}

.about__catch {
  margin-top: 100px;
    font-size: 26px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  color: var(--color-main-green);
}

.about__lead {
  margin-top: 24px;
  font-size: 18px;
  font-weight: 500;
  line-height: 3.0;
  text-align: center;
  color: var(--color-main-dark);
}

.about__lead > span {
	color: #fff;
    background: var(--gradient-green);
	    padding: 0px 5px 3px 5px;
    font-weight: 700;
	    margin: 0px 5px 0px 5px;
}

.about__lead > span span {
    font-weight: 800;
	/*font-size: 22px;
	margin-bottom: -5px;*/
}

.about__block, .privacy__block, .regulations__block {
  margin-top: 100px;
	padding: 60px 60px 60px 60px;
	background-color: var(--color-bg-light);
	border-radius: 60px;
}

.about__block-label, .privacy__block-label, .regulations__block-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-align: center;
  color: var(--color-main-green);
}

.about__card, .privacy__card, .regulations__card {
  margin-top: 0px;
	margin-bottom: 60px;
  padding: 40px 40px;
  background-color: #fff;
  border: 1px solid var(--color-bg-muted);
  border-radius: 30px;
}
.about__card:last-child, .privacy__card:last-child, .regulations__card:last-child {
	margin-bottom: 0;
}
.privacy__card th, .privacy__card td {
	border-top: 1px solid var(--color-main-green);
	border-bottom: 1px solid var(--color-main-green);
	padding: 20px 20px;
}

.privacy__card th {
  background-color: var(--color-bg-muted);
	width: 16em;
}
.privacy__card thead th, .privacy__card thead td {
	padding: 10px 20px !important;
}

.privacy__card table {
	border-collapse: collapse;
}

.about__subheading, .privacy__subheading, .regulations__subheading {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color: var(--color-main-green);
  border-bottom: solid 2px var(--color-main-green);

  /* ▼ ここを追記 ▼ */
  width: fit-content;      /* 横幅を文字の長さに合わせる */
  margin: 0 auto 30px auto;          /* 縮んだ要素を画面の真ん中に寄せる */
  
  /* ▼ お好みで：文字と線の隙間を少しあけるとスッキリ見えます ▼ */
  padding-bottom: 10px; 
}
.privacy__subheading, .regulations__subheading {
	margin-top: 60px;
}

.about__subheading--plan {
  margin-top: 48px;
}

h5.about__subheading--plan {
	text-align: left;
	margin: 40px 0 20px 0;
	border-left: solid 8px var(--color-main-green);
	border-bottom: 0;
	padding: 0 0px 2px 15px;
	line-height: 1.5;
}

.about__intro-text, .privacy__text, .privacy__text {
  margin-top: 16px;
  font-size: 16px;
  line-height: 2.5;
	font-weight: 500;
  text-align: center;
  color: var(--color-main-dark);
}

.about__columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
      gap: 20px;
  margin-top: 40px;
}
.about__column {
	border: dashed 1px var(--color-main-green);
	text-align: center;
	padding: 30px 20px 30px 20px;
}

.about__column-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-main-dark);
	margin: 0 0 30px 0;
}

.about__dummy-img {
	 aspect-ratio: 1.4 / 1;
  /*margin-top: 16px;
  background-color: var(--color-bg-muted);
  border-radius: 4px;*/
}

.about__column-text {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.9;
	font-weight: 500;
  color: var(--color-main-dark);
}

.about__plan-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 10px;
  margin-top: 0px;
  padding-left: 0em;
  list-style: none;
}

.about__plan-item {
  font-size: 14px;
  line-height: 1.3;
	font-weight: 500;
  color: var(--color-main-dark);
	background-color: var(--color-bg-muted);
	text-align: center;
	border-radius: 10px;
	padding: 10px 20px 10px 20px;
	/* ▼ ここから追記 ▼ */
  display: flex;
  flex-direction: column;   /* 中の文字（改行）を縦並びにする */
  justify-content: center;  /* 【上下】の中央寄せ */
  align-items: center;      /* 【左右】の中央寄せ */
}

.about__achievement {
  align-items: center;
  gap: 32px;
  margin-top: 32px;
  padding: 32px;
  border-radius: 4px;
	border: dashed 1px var(--color-main-green);
}

.about__dummy-logo {
  flex-shrink: 0;
	width: 55%;
	margin: 0 auto 20px auto;
  border-radius: 4px;
}

.about__achievement-text {
  font-size: 16px;
  line-height: 1.9;
	font-weight: 400;
	text-align: center;
}

.about__btn-wrap {
  margin-top: 32px;
  text-align: center;
}

.about__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /*min-width: 200px;*/
  height: 48px;
  padding: 0 4em 0px 3.5em;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-main-dark);
	border: solid var(--color-main-dark) 1px;
  border-radius: 24px;
  transition: opacity var(--transition-base), transform var(--transition-base);
	background-image: url("../images/common/link_icon.png");
	background-repeat: no-repeat;
	background-position: calc(50% + 3.5em) center;
}

.about__btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.about__dummy-chart {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.about__note {
  margin-top: 24px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-main-dark);
}

.about__closing {
  margin-top: 40px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color: var(--color-main-green);
}

.about__closing-br {
  display: none;
}

/* ========================================
   Contact
   ======================================== */
.contact {
  padding: 100px 0 120px;
  background-color: var(--color-bg-light);
	border-radius: 100px 0px 0 0;
}

.contact__inner {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.contact__lead {
  margin-top: 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.5;
  text-align: center;
  color: var(--color-main-dark);
}

.contact__form-wrap {
  max-width: 720px;
  margin: 48px auto 0;
  padding: 48px 40px;
  background-color: #fff;
  border: 1px solid var(--color-bg-muted);
  border-radius: 10px;
}

.contact__error {
  margin-bottom: 24px;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.6;
  color: #b42318;
  background-color: #fef3f2;
  border: 1px solid #fecdca;
  border-radius: 4px;
}

.contact__field {
  margin-top: 20px;
}

.contact__field:first-of-type {
  margin-top: 0;
}

.contact__fieldset {
  margin: 24px 0 0;
  padding: 0;
  border: none;
}

.contact__label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-main-dark);
}

.contact__required {
  display: inline-block;
  margin-right: 10px;
	margin-top: -2px;
  padding: 5px 8px 5px 8px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.0;
  color: #fff;
  background-color: var(--color-main-green);
  border-radius: 5px;
  vertical-align: middle;
}

.contact__input,
.contact__textarea {
  display: block;
  width: 100%;
  padding: 10px 20px;
  font-family: var(--font-family-base);
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-main-dark);
  background-color: var(--color-bg-base);
  border: 1px solid var(--color-bg-muted);
  border-radius: 4px;
  transition: border-color var(--transition-base);
}

.contact__input:focus,
.contact__textarea:focus {
  outline: none;
  border-color: var(--color-main-green);
}

.contact__textarea {
  resize: vertical;
  min-height: 160px;
}

.contact__radio-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact__radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-main-dark);
  cursor: pointer;
}

.contact__radio {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--color-main-green);
  cursor: pointer;
}

.contact__field--checkbox {
	text-align: center;
}
.contact__field > span {
	
}

.contact__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-main-dark);
  cursor: pointer;
	justify-content: center;
	margin-bottom: 20px;
}


.contact__checkbox {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--color-main-green);
  cursor: pointer;
}

.contact__link {
  color: var(--color-main-green);
  text-decoration: underline;
  transition: opacity var(--transition-base);
	    font-size: 14px;
}

.contact__link:hover {
  opacity: 0.7;
}

.contact__actions,.green_button {
  margin-top: 30px;
  text-align: center;
}

.contact__actions--confirm {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.contact__btn, .green_button a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  height: 48px;
  padding: 0 32px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
  transition: opacity var(--transition-base), transform var(--transition-base);
}

.contact__btn--primary, .green_button a {
  color: #fff;
  background: var(--gradient-green);
  box-shadow: 0 4px 12px rgba(43, 134, 103, 0.3);
}

.contact__btn--primary:hover, .green_button a:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.contact__btn--secondary {
  color: var(--color-main-dark);
  background-color: var(--color-bg-base);
  border: 1px solid var(--color-bg-muted);
}

.contact__btn--secondary:hover {
  opacity: 0.7;
}

.contact__confirm-list {
  margin: 0;
}

.contact__confirm-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-bg-muted);
}

.contact__confirm-row:first-child {
  padding-top: 0;
}

.contact__confirm-dt {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
  color: var(--color-main-dark);
}

.contact__confirm-dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-main-dark);
  word-break: break-word;
}

.contact__confirm-dd--message {
  white-space: pre-wrap;
}

/* ========================================
   Header
   ======================================== */
.header {
  /* absolute から fixed に変更して、常に固定されるようにします */
  position: fixed; 
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  /*height: var(--header-height);*/
  
  /* 初期状態（一番上にある時）は透明にします */
  background-color: transparent;
  backdrop-filter: none;
  
  /* 背景がフワッと切り替わるようにアニメーションを設定 */
  transition: background-color var(--transition-base), backdrop-filter var(--transition-base), box-shadow var(--transition-base);
	
}

/* ▼【追記】スクロールして文字と被る位置にきたら、背景色とすりガラス（blur）を復活させる ▼ */
.header.is-fixed {
  /* iOS（2枚目）の質感に近づけるため、白の濃度を少し上げ、ボケを強くします */
  background-color: rgba(248, 247, 245, 0.1); /* 0.3 から 0.75 へ変更 */
  backdrop-filter: blur(10px);                 /* 5px から 12px へ変更 */
  
  /* 境目をクッキリ強調させていた原因の影は、思い切って削除します */
  box-shadow: none; 

  /* ▼ 【最重要】下側に向かって背景色とボケを滑らかに消す指定 ▼ */
  -webkit-mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
}

.header__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  transition: opacity var(--transition-base);
	    padding: 20px 30px 30px 30px;
	justify-content: space-between;
}

.header__logo {
  /*display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  transition: opacity var(--transition-base);*/
	          line-height: 1.3;
}

.header__logo:hover {
  opacity: 0.7;
}

.header__logo-icon {
  /*flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;*/
}

.header__logo-icon svg {
  /*display: block;
  width: 100%;
  height: 100%;*/
}

.header__logo-text {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.0; /* 2行の背景がくっつきすぎないよう、1.6前後に広げるのがコツです */
  letter-spacing: 0.04em;
  color: var(--color-main-green);
  /* ここにあった background や display は削除します */
}

/* ▼ 新しく追加したクラスに背景の指定を引っ越し ▼ */
.header__logo-bg {
  display: inline; /* flexの直下ではないので、今度こそ純粋なインラインとして効きます！ */
  background-color: #fff;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
	line-height: 1;
  padding: 0px 0px 0px 0px; /* 左右に少し余白を入れると綺麗に見えます */
}

.header__right {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.header__nav {
  z-index: 999;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header__nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
  transition: opacity var(--transition-base);
}

.header__nav-link:hover {
  opacity: 0.7;
}

.header__nav-en {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
	margin-bottom: 5px;
	line-height: 1;
  color: var(--color-main-green);
}

.header__nav-ja {
	line-height: 1;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-main-dark);
}

.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  height: 44px;
  padding: 0 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  white-space: nowrap;
  background: var(--gradient-green);
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(43, 134, 103, 0.25);
  transition: opacity var(--transition-base), transform var(--transition-base);
}

.header__cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.header__cta-icon {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.header__hamburger {
  display: none;
  position: relative;
  z-index: 2;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
}

.header__hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-main-green);
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.header__hamburger.is-active .header__hamburger-line:nth-child(1) {
  transform: translateY(4px) rotate(45deg); /* 上の線を少し下げて右回転 */
}

.header__hamburger.is-active .header__hamburger-line:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg); /* 下の線を少し上げて左回転 */
}

.privacy a {
    color: var(--color-main-green) !important;
    text-decoration: underline !important;
}
.privacy ul {
	padding-left: 1em;
}
.privacy li {
	list-style: disc;
}


/* ========================================
   Responsive: Desktop (min-width: 769px)
   ======================================== */
@media (min-width: 769px) {
  .header__hamburger {
    display: none;
  }

  .header__nav {
    display: block;
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    background: transparent;
    z-index: auto;
  }

  .header__nav-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 28px;
    width: auto;
    margin: 0;
  }

  .header__nav-item {
    border-bottom: none;
  }

  .header__nav-link {
    flex-direction: column;
    align-items: center;
    padding: 0;
  }
}


/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--gradient-light);
  padding: 48px 0;
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 40px;
}


.footer__logo-text {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.8; /* 2行の背景がくっつきすぎないよう、1.6前後に広げるのがコツです */
  letter-spacing: 0.04em;
  color: var(--color-main-green);
  /* ここにあった background や display は削除します */
}

/* ▼ 新しく追加したクラスに背景の指定を引っ越し ▼ */
.footer__logo-bg {
  display: inline; /* flexの直下ではないので、今度こそ純粋なインラインとして効きます！ */
  background-color: #fff;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 0px 0px 2px 0px; /* 左右に少し余白を入れると綺麗に見えます */
}


.footer__copyright {
  margin-top: 16px;
  font-size: 12px;
  color: var(--color-main-dark);
}

.footer__link {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-main-dark);
  transition: opacity var(--transition-base);

  /* ▼ 三角形と文字の上下中央を揃えるために追記 ▼ */
  display: inline-flex;
  align-items: center;
  gap: 8px; /* 三角形と文字の間の隙間（お好みで調整） */
}

.footer__link:hover {
  opacity: 0.7;
}
.footer__link::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  
  /* ボーダーの仕組みを使って右向きの三角形（▶︎）を作ります */
  border-style: solid;
  border-width: 4px 0 4px 6px; /* 上・右・下・左 のサイズ（最後の6pxが三角形の横幅になります） */
  border-color: transparent transparent transparent var(--color-main-green); /* 左側だけに色をつける */
}



/* ========================================
   Responsive: Tablet (max-width: 1080px)
   ======================================== */
@media (max-width: 1080px) {
  .header__inner,
  .footer__inner {
    padding-left: 30px;
    padding-right: 30px;
  }

  .header__nav-list {
    gap: 20px;
  }

  .header__right {
    gap: 20px;
  }

  .partner__inner {
    padding: 0 20px;
  }

  .partner__logo {
    height: 100px;
    /*max-width: 170px;*/
  }

  .partner__list {
    gap: 20px 20px;
  }
	
.partner__rows {
	 gap: 20px;
	}

  /*.section-title__ja {
    font-size: 24px;
  }*/
	
	.section-title__ja {
    font-size: 30px;
		margin-bottom: 40px;
  }

  .news__inner {
    padding: 0 24px;
  }

  .about__inner {
    padding: 0 24px;
  }

  .about__card, .privacy__card, .regulations__card {
    padding: 40px 32px;
  }

  .contact__inner {
    padding: 0 24px;
  }

  .contact__form-wrap {
    padding: 40px 32px;
  }
}

/* ========================================
   Responsive: Smartphone (max-width: 768px)
   ======================================== */
@media (max-width: 768px) {
  :root {
    --header-height: 84px;
  }

  .header {
    /* absolute から fixed に変更 */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    backdrop-filter: none;
  }

  .header.is-fixed:not(:has(#headerNav.is-open)) {
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 90%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 90%, transparent 100%);
}

/* メニューが開いているときは強制的にマスクを解除する */
.header.is-fixed:has(#headerNav.is-open) {
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

  .header__inner {
    padding: 10px 20px 20px 20px;
  }

  .header__logo {
    gap: 8px;
    position: relative;
    z-index: 1010;
  }

  .header__logo-icon {
    width: 28px;
    height: 28px;
  }

  .header__logo-text {
    font-size: 12px;
    line-height: 1.35;
    letter-spacing: 0.02em;
  }

  .header__right {
    display: contents;
  }

  .header__cta {
    display: none;
  }

  .header__hamburger {
    display: flex;
	  z-index: 1020;
  }

  .header__nav {
    position: fixed !important;
    top: 0 !important;   /* 隙間をなくすために 0 に固定 */
    left: 0 !important;
    width: 100% !important;
    height: 100dvh !important; /* アドレスバーの変化に対応 */
    background-color: #f7f7f7;
    z-index: 999;
    
    /* 初期状態は非表示 */
    display: none; 
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .header__nav.is-open {
    display: flex;
  }

  /* ヘッダー固定状態でも、メニュー展開を常に優先 */
  .header.is-fixed #headerNav.is-open {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    z-index: 999 !important;
  }

  .header__nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 70%;
    margin: 0;
  }

  .header__nav-item {
    border-bottom: 1px solid var(--color-bg-muted);
  }

  .header__nav-item:last-child {
    border-bottom: none;
  }

  .header__nav-link {
    flex-direction: row;
    align-items: baseline;
    gap: 12px;
    padding: 16px 8px;
  }

  .kv {
    aspect-ratio: auto;
    overflow: visible;
    display: block;
    height: auto;
    background-image: none;
    background-color: var(--color-bg-base);
  }

  .kv::before {
    content: "";
    display: block;
    width: 100%;
    aspect-ratio: 750 / 824;
    background-image: url("../images/sp/kv_sp.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center center;
  }

  .kv__inner {
    position: relative;
    inset: auto;
    height: auto;
    justify-content: flex-start;
    padding:
      clamp(16px, 2.778vw, 40px)
      clamp(16px, 2.778vw, 40px)
      clamp(24px, 4.167vw, 60px);
  }

  .kv__content {
    width: 100%;
    height: auto;
    overflow: visible;
  }

  .kv__catch {
    margin-top: clamp(60px, 2.778vw, 90px);
    margin-bottom: clamp(20px, 1.389vw, 30px);
    letter-spacing: 0.1em;
    line-height: 1.3;
  }

  .kv__lead {
    margin-top: 0;
    line-height: 2;
  }

  .kv__br--sp {
    display: inline;
  }

  .footer__inner {
    padding: 0 16px;
  }

  .fixed-contact {
    right: 0;
    bottom: 0;
    left: 0;
    min-width: 0;
    width: 100%;
    height: calc(2em + 20px);
    border-radius: 0;
    box-shadow: 0 -2px 12px rgba(43, 134, 103, 0.2);
	  display: grid;
    text-align: left;
	          background-position: calc(50% - 3.5em) center;
        background-size: 1.6em auto;
	  padding: 10px 0px 10px 20px;
  }

  .fixed-contact:hover {
    transform: none;
  }
  .fixed-contact span {
	  font-size: 14px;
	  line-height: 1;
	}
	
  .fixed-contact > span:nth-of-type(1) {
	  font-size: 10px;
	}

  .partner {
    padding: 56px 0;
  }

  .partner__inner {
    padding: 0 16px;
  }

  .partner__rows {
    margin-top: 32px;
    gap: 16px;
  }

  .partner__list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 24px;
  }

  .partner__item {
    flex: 0 0 auto;
  }

  .partner__logo {
    height: 48px;
    max-width: 120px;
  }

  /* スクロール仕様復元用
  .partner__track--ltr {
    animation-duration: 30s;
  }

  .partner__track--rtl {
    animation-duration: 35s;
  }
  */

  .section-title__en {
    font-size: 12px;
  }

  .section-title__ja {
    font-size: 24px;
	      margin-bottom: 40px;
  }

  .news {
    padding: 56px 0;
  }

  .news__inner {
    padding: 0 16px;
  }

  .news__list {
    margin-top: 32px;
  }

  .news__trigger {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 12px 16px;
    padding: 0px 0px;
  }

  

  .news__title {
    grid-column: 1 / -1;
    grid-row: 2;
    font-size: 16px;
  }

  .news__icon {
    grid-column: 2;
    grid-row: 1;
    width: 28px;
    height: 28px;
    font-size: 18px;
  }

  .news__detail {
    /*padding: 0 4px 20px;*/
    font-size: 14px;
    line-height: 1.8;
  }

  .about {
    padding: 40% 0 60px 0;
	  background-image: url("../images/sp/aboutus_bg_sp.png");
	  background-size: max(100%, 100%) auto;
  }

  .about__inner {
    padding: 0 16px;
  }

  .about__catch {
    margin-top: 60px;
    font-size: 20px;
  }

  .about__lead {
    margin-top: 16px;
    font-size: 16px;
    line-height: 2.5;
  }

  .about__block, .privacy__block, .regulations__block {
    margin-top: 60px;
	  padding: 60px 20px 60px 20px;
	  border-radius: 30px;
  }

  .about__card, .privacy__card, .regulations__card {
    margin-top: 16px;
    padding: 40px 20px 40px 20px;
	      margin-bottom: 20px;
  }
	.regulations__card {
		padding-top: 0;
	}

  .about__subheading, .privacy__subheading, .regulations__subheading {
    font-size: 20px;
  }

  .about__subheading--plan {
    margin-top: 32px;
  }

  .about__intro-text, .privacy__text {
    font-size: 14px;
    /* ▼ text-align: center; から以下に変更 ▼ */
  text-align: justify;       /* 文字の左右の端をピタッと揃える */
  text-align-last: left;    /* 最後の行（端まで届かない行）だけを左端に寄せる */
  }
	.about__column-text {
  text-align: justify;       /* 文字の左右の端をピタッと揃える */
  text-align-last: left;    /* 最後の行（端まで届かない行）だけを左端に寄せる */
		font-size: 14px;
	}

  .about__columns {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 32px;
  }

  .about__column-title {
    font-size: 16px;
  }

  .about__plan-list {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 20px;
  }

  .about__achievement {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-top: 24px;
    padding: 24px 20px;
  }

  .about__dummy-logo {
    width: 100%;
    max-width: 200px;
    height: 64px;
  }

  .about__achievement-text {
    font-size: 14px;
	  /* ▼ text-align: center; から以下に変更 ▼ */
  text-align: justify;       /* 文字の左右の端をピタッと揃える */
  text-align-last: left;    /* 最後の行（端まで届かない行）だけを左端に寄せる */
  }

  .about__btn-wrap {
    margin-top: 24px;
  }

  .about__btn {
            width: 14em;
        max-width: 100%;
  }

  .about__closing {
    margin-top: 32px;
    font-size: 20px;
  }

  .about__closing-br {
    display: inline;
  }
	.about__dummy-img {
    aspect-ratio: auto !important;
}

  .contact {
    padding: 56px 0 100px;
  }

  .contact__inner {
    padding: 0 16px;
  }

  .contact__lead {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.9;
    text-align: left;
  }

  .contact__form-wrap {
    margin-top: 32px;
    padding: 32px 20px;
  }

  .contact__confirm-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px 0;
  }

  .contact__actions--confirm {
    flex-direction: column;
    align-items: center;
  }

  .contact__btn {
    width: 100%;
    max-width: 320px;
  }

  .footer__inner {
    flex-direction: column;
    gap: 24px;
  }

  .footer {
    padding: 32px 0;
  }
	.sp__none {
		display: none !important;
	}
	.footer__link, .footer__logo-text {
		display: list-item;
		list-style: none;
		margin: 20px 0px 20px 0px;
	}
	.section-title__ja {
    font-size: 24px;
  }
	
	.kv__tagline {
  font-size: clamp(12px, 2.442vw, 35px);
}

.kv__name-line {
  font-size: clamp(23px, 5.472vw, 70px);
}

.kv__catch {
  font-size: clamp(21px, 4.8vw, 56px);
}


.kv__lead {
  font-size: clamp(16px, 2.667vw, 44px);
}
	
	
	/* スマホ向けのCSS（@media screen and (max-width: 768px) などの中） */
.kv__inner {
 transform: translateY(-14vw); /* 30px分、上に持ち上げる */
	margin-bottom: -14vw;
}
	.kv__br--pc {
		display: none;
	}
	
	.header__nav-en {
  font-size: 16px;
}

.header__nav-ja {
  font-size: 12px;
}
	
.privacy__inner, .regulations__inner {
  margin: 0 auto 40px auto;
  padding: 0 20px;
	}

	
.privacy__card th, .privacy__card td {
	display: inline-block;
    width: 100%;
    float: left;
	}
	.privacy__card td {
		border: none;
	}
	.privacy__card table {
		border-bottom: 1px solid var(--color-main-green);
	}
	
}

@media (min-width: 769px) {
	.header__nav-item:nth-child(4) {
		background-color: #fff;
		width: 9em;
  border: solid 1px var(--color-main-green); /* 枠線を引く（太さはお好みで調整） */
  border-radius: 50px;   
		padding: 5px 0px 5px 0px;
	}
	.contact__field {
    display: flex;
}
	    .contact__field.privacypolicy {
        display: block;
    }
	.contact__label {
    width: 15em; 
    padding-top: 1.0em;
    flex-shrink: 0; /* 画面が縮んでも左側のタイトル幅が勝手に潰れないように固定 */
  }
	.contact__radio-list {
    flex-grow: 1;
    display: flex;       /* 横並びの土台を作る */
    flex-direction: row; /* 【横並び】に指定 */
    flex-wrap: wrap;     /* 画面幅が狭くなったら綺麗に自動折り返し */
    gap: 12px 24px;      /* ボタン同士の「上下の隙間」と「左右の隙間」 */
    padding-top: 1.0em;  /* 左側のタイトルと高さをビシッと揃える */
    padding-left: 0;     /* ★重要：ブラウザ特有の左側の隙間（余白）を完全にゼロにする */
    margin: 0;
  }
	.pc__none {
		display: none;
	}
	
	.header__nav {
    display: block !important;    /* 消えてしまっているのを表示する */
    visibility: visible !important; /* visibilityを強制解除 */
    opacity: 1 !important;          /* 不透明度を戻す */
    position: static !important;    /* fixed配置を解除して通常配置に戻す */
    width: auto !important;         /* 全画面表示の幅を解除 */
    height: auto !important;        /* 全画面表示の高さを解除 */
    background-color: transparent !important; /* 背景色を透過に戻す */
  }

  /* ハンバーガーボタンはPCでは不要であれば隠す */
  #hamburgerBtn {
    display: none !important;
  }

}


@media (max-width: 430px) {
	.narrow__none {
		display: none;
	}
	.about__btn {
    padding: 0 2.0em 0px 1.0em;
    font-size: 13px;
	}
}