/*--------------------------------------------------------------
# カスタムプロパティ
--------------------------------------------------------------*/
:root {
  /* 色 */
  --color-primary: #ff73b6;
  --color-secondary: #ff8a00;
  --color-highlight: #ff420e;
  --color-danger: #ff2020;
  --color-grey: #b0b0b0;
  /* メイン領域の最大幅 */
  --main-width: 500px;
  /* サイド領域の最大幅 */
  /* --side-width: calc((100% - var(--main-width)) / 2); */
  --side-width: calc((100% - var(--main-width)) / 5);
  /* コンテナーの幅 */
  --container-width: 90%;
  /* コンテナーの幅(上書き用) */
  --container-width-narrow: 90%;
  /* コンテナーの最大幅 */
  --container-max-width: 1260px;
  /* コンテナーの最大幅 */
  --container-max-width-narrow: 1070px;
  /* 余白 */
  --footer-padding: var(--vw64); /* フッター */
  --main-area-padding: 6rem; /* メイン領域の上下 */
  --section-padding: var(--vw64); /* セクションの上下 */
  /* Fontawesome */
  --fontawesome: "Font Awesome 6 Pro";
  --fontawesome-sharp: "Font Awesome 6 sharp";
  --fontawesome-brands: "Font Awesome 6 Brands";
  /* font-family */
  --font-main: "noto-sans-cjk-jp", "Hiragino Sans W3",
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo,
    "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  --font-accent: "rampart-one", "futura-pt-bold", "nitalago-ruika",
    "noto-sans-cjk-jp", "Hiragino Sans W3", "Hiragino Kaku Gothic ProN",
    "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic",
    sans-serif;
  --font-handwriting: "pauline", "hachi-maru-pop", "noto-sans-cjk-jp",
    sans-serif;
  --font-dotted: "pf-videotext", "dotgothic16", "noto-sans-cjk-jp", sans-serif;
  /* フォントサイズ */
  --font-size-small: 0.75rem;
  /* ヘッダーの高さ */
  --header-height: var(--vw80);
  /* ボーダー */
  --border-solid-primary: 1px solid var(--border-color);
  /* アニメーション duration */
  --duration-default: 0.25s;

  /* 単位vwの設定 ベース400px */
  --vw8: 2vw;
  --vw16: 4vw;
  --vw20: 5vw;
  --vw24: 6vw;
  --vw32: 8vw;
  --vw40: 8vw;
  --vw48: 10vw;
  --vw56: 14vw;
  --vw64: 16vw;
  --vw72: 18vw;
  --vw80: 20vw;
  --vw88: 22vw;
}

@media screen and (min-width: 768px) {
  :root {
    /* 単位vwの設定 ベース500px */
    --vw8: min(1.6vw, 0.5rem);
    --vw16: min(3.2vw, 1rem);
    --vw20: min(4vw, 1.25rem);
    --vw24: min(4.8vw, 1.5rem);
    --vw32: min(6.4vw, 2rem);
    --vw40: min(8vw, 2.5rem);
    --vw48: min(9.6vw, 3rem);
    --vw56: min(11.2vw, 3.5rem);
    --vw64: min(12.8vw, 4rem);
    --vw72: min(14.4vw, 4.5rem);
    --vw80: min(16vw, 5rem);
    --vw88: min(17.6vw, 5.5rem);
  }
}

@media screen and (min-width: 992px) {
  :root {
    /* ヘッダーの高さ */
    --header-height: 100px;
    /* コンテナーの幅(上書き用) */
    --container-width-narrow: 80%;
    /* コンテナーの最大幅 */
    --container-max-width-narrow: 1070px;
    /* 余白 */
    --main-area-padding: 8rem; /* メイン領域の上下 */
    /* 余白 */
    --footer-padding: 8rem; /* フッター */
    --section-padding: var(--vw64); /* セクションの上下 */
  }
}

/* 色の割り当て
--------------------------------------------- */
:root {
  /* 文字色 */
  --color-headline-primary: #000;
  --color-text-primary: #000;
  /* 背景色 */
  --color-background: #fff;
  --color-background-sub: #d9d9d9;
  /* ボタン背景 */
  --btn-background-color: var(--gradient-primary-horizonal);
  /* テキストリンク文字色 */
  --btn-text-color: var(--color-primary);
  --btn-text-hover-color: var(--color-highlight);
  /* ボーダー */
  --border-color: var(--color-primary);
  /* グラデーション */
  --gradient-primary-horizonal: linear-gradient(
    to right,
    #1fa2ff 0%,
    #12d8fa 50%,
    #a6ffcb 100%
  );
}

/* SNS color
--------------------------------------------- */
:root {
  --color-twitter: #000;
  --color-facebook: #4267b2;
  --color-instagram: #c13584;
  --color-youtube: #ff0000;
  --color-line: #06c755;
}

/* normalize
--------------------------------------------- */
html {
  font-family: var(--font-main);
  font-size: 16px;
}

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

a:hover,
a:focus,
a:active {
  color: inherit;
}

a {
  cursor: pointer;
}

a:focus {
  outline: none;
}

li a,
li a:visited {
  display: inline;
}

.post,
.page {
  margin: 0;
}

/* コンテンツの幅
--------------------------------------------- */
.container {
  width: var(--container-width);
  max-width: var(--container-max-width);
  margin-right: auto;
  margin-left: auto;
}

.container_narrow {
  width: var(--container-width-narrow);
}

/*--------------------------------------------------------------
# レイアウト崩れ防止
--------------------------------------------------------------*/
/* footerが常に画面最下部にいるように固定
--------------------------------------------- */
.site__main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site__footer {
  margin-top: auto;
}

/*--------------------------------------------------------------
# 全メディアで同一のレイアウト
--------------------------------------------------------------*/
.site__wrapper {
  position: relative;
  display: flex;
}

.site__main {
  position: relative;
  width: 100%;
}

.main-visual__background {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.main-visual__background > img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* .main-visual__person {
	position: relative;
	width: 100%;
	height: 100%;
}

.main-visual__person > img {
	position: absolute;
	display: block;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
} */

@media screen and (max-width: 767px) {
  .site__aside {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .site__wrapper {
    justify-content: flex-end;
  }

  .site__main {
    width: min(var(--main-width), 75%);
    margin-right: max(calc(var(--vw80) + var(--vw16)), var(--side-width));
    z-index: 2;
  }

  .site__aside {
    position: fixed;
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 100vh;
    /* test */
    z-index: 1;
  }
}

@media screen and (min-width: 992px) {
  .site__main {
    width: min(var(--main-width), 50%);
  }
}

/*--------------------------------------------------------------
# ヘッダー
--------------------------------------------------------------*/
.site__header {
  position: fixed;
  width: 100%;
  z-index: 100;
}

.site__footer__inner {
  display: flex;
  flex-direction: column;
  gap: var(--vw16);
}

copyright {
  font-family: var(--font-dotted);
  font-size: calc(var(--vw16) * 0.9);
}

/* 入会ボタン */
a.button__join {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-dotted);
  font-size: var(--vw16);
  font-weight: 700;
  background: var(--color-primary);
  color: #fff;
  padding: 0.75em 2em;
  border: 2px solid var(--color-text-primary);
  text-decoration: none;
  transition: transform var(--duration-default), filter var(--duration-default);
  filter: drop-shadow(2px 2px 0px #ec53b6);
}

a.button__join:hover {
  transform: translate(2px, 2px);
  filter: none;
}

a.fixed__button__join {
  position: fixed;
  right: var(--vw16);
  bottom: -100%;
  border-radius: 24rem;
  transition: transform var(--duration-default), filter var(--duration-default),
    bottom var(--duration-default), right var(--duration-default);
  z-index: 90;
}

.scrolled a.fixed__button__join {
  bottom: var(--vw16);
}

.drawer__button__join {
  width: 100%;
  border-radius: 4px;
}

@media screen and (min-width: 768px) {
  a.drawer__button__join {
    font-size: var(--vw20);
    width: 24em;
    margin: auto;
  }
}

/*--------------------------------------------------------------
# フッター
--------------------------------------------------------------*/
.site__footer {
  background: #fff;
  color: var(--color-text-primary);
  padding: calc(var(--section-padding) / 2) var(--vw16);
}

/*--------------------------------------------------------------
# .site__aside__left
--------------------------------------------------------------*/
@media screen and (min-width: 768px) {
  .site__aside__left {
    flex: 1;
    width: 100%;
    margin-right: min(var(--main-width), 75%);
  }
}

@media screen and (min-width: 992px) {
  .site__aside__left {
    flex: 1;
    width: 100%;
    margin-right: min(var(--main-width), 50%);
  }
}

.site__aside__left__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0 var(--vw8);
}

/*--------------------------------------------------------------
# .site__aside__right
--------------------------------------------------------------*/
@media screen and (min-width: 768px) {
  .site__aside__right {
    display: flex;
    justify-content: center;
    align-items: center;
    width: max(calc(var(--vw80) + var(--vw16)), var(--side-width));
  }

  .site__aside__right .site__aside__right {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .site__aside__right .site__aside__right::-webkit-scrollbar {
    display: none;
  }

  .site__aside__right__inner {
    width: 90%;
    height: 100%;
    padding-bottom: var(--vw56);
    overflow: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .site__aside__right__inner::-webkit-scrollbar {
    display: none;
  }
}

/*--------------------------------------------------------------
# アコーディオン
--------------------------------------------------------------*/
.accordion__checkbox {
  display: none !important;
}

.accordion__wrapper {
  display: grid;
  grid-template-rows: 0fr;
  width: 100%;
  transition: grid-template-rows 0.3s;
}

.accordion__checkbox:checked ~ .accordion__wrapper {
  grid-template-rows: 1fr;
}

.accordion__content {
  overflow: hidden;
}

/*--------------------------------------------------------------
# ナビゲーション
--------------------------------------------------------------*/
[class*="navigation__"] {
  list-style: none;
  margin: 0;
  padding: 0;
}

.navigation__parent,
.navigation__child {
  white-space: nowrap;
}

.navigation__parent {
  padding: 1rem 0;
}

.navigation__parent__item {
  position: relative;
  display: flex;
  flex-direction: column;
  font-family: var(--font-dotted);
  font-size: 1rem;
  font-weight: 400;
  width: fit-content;
}

a.link__navigation__parent {
  display: flex;
  align-items: center;
  width: fit-content;
  text-decoration: none;
}

.navigation__accordion__label {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2em;
  height: 2em;
  top: 1em;
  right: 0;
  border: 1px solid var(--color-primary);
  border-radius: 50%;
  transition: 0.2s;
  cursor: pointer;
}

.navigation__accordion__label > span,
.navigation__accordion__label > span::before {
  content: "";
  position: absolute;
  display: block;
  background-color: var(--color-primary);
  height: 2px;
  width: 15px;
  transition: transform 0.3s;
}

.navigation__accordion__label > span::before {
  transform: rotate(90deg);
}

.navigation__accordion__checkbox:checked
  ~ .navigation__accordion__label
  > span::before {
  transform: rotate(180deg);
}

.navigation__accordion__label > span::after {
  content: "";
  position: absolute;
  width: 3em;
  height: 3em;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.navigation__child__item > a {
  display: inline-block;
  padding: 0.75em 0;
}

.navigation__parent {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: fit-content;
  gap: var(--vw16);
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 768px) {
  .navigation__parent {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--vw32);
    padding: 0;
  }
}

a.link__navigation__parent__policy {
  color: var(--color-primary);
}

/* アイコン */
.navigation__parent a.link__navigation__parent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  color: #ff4f9a;
  width: var(--vw88);
  height: var(--vw88);
  text-align: center;
  margin: 0 2px 2px 0;
  transition: color var(--duration-default);
}

.navigation__parent a.link__navigation__parent:hover {
  color: #7953cd;
}

.navigation__parent a.link__navigation__parent:active {
  color: #5effc0;
}

.link__navigation__parent > span {
  font-size: calc(var(--vw16) * 0.75);
  line-height: 1.5em;
}

.link__navigation__parent::before {
  font-family: var(--fontawesome-sharp);
  font-size: var(--vw40);
  font-weight: 400;
}

.link__navigation__parent__home::before {
  content: "\f015";
}

.navigation__parent__item__services::before {
  content: "\f86e";
}

.link__navigation__parent__post::before {
  content: "\e1da";
}

.link__navigation__parent__benefits::before {
  content: "\f005";
}

.link__navigation__parent__broadcasting-station::before {
  content: "\e585";
}

.link__navigation__parent__alignment::before {
  content: "\f4c3";
}

.link__navigation__parent__news::before {
  content: "\f0a1";
}

.link__navigation__parent__contact::before {
  content: "\f0e0";
}

@media screen and (min-width: 768px) {
  .navigation__parent a.link__navigation__parent {
    width: var(--vw80);
    height: var(--vw80);
  }
}

/* navigation__bottom */
.navigation__bottom {
  display: flex;
  justify-content: center;
  align-items: center;
}

.navigation__bottom .navigation__parent__item > a {
  padding: 0.25em 0.5em;
}

.navigation__bottom .navigation__parent__item:not(:last-child) {
  border-right: 1px solid #bbb;
}

/*--------------------------------------------------------------
# SNS
--------------------------------------------------------------*/
[class*="link__sns__"] > span {
  font-family: var(--fontawesome-brands);
}

.link__sns__twitter > span::before {
  content: "\e61b";
}

.link__sns__facebook > span::before {
  content: "\f39e";
}

.link__sns__instagram > span::before {
  content: "\f16d";
}

.link__sns__tiktok > span::before {
  content: "\e07b";
}

/* シェア */
.share__wrapper {
  margin-top: var(--section-padding);
}

.share__wrapper .title__balloon {
  filter: drop-shadow(2px 2px 0px #a3bfd9);
}

.sns__container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--vw20);
  margin-top: var(--vw20);
}

a.sns__share__icon {
  display: flex;
  font-size: var(--vw48);
  width: fit-content;
  height: fit-content;
  transition: transform var(--duration-default);
  text-decoration: none;
}

a.sns__share__icon:hover {
  transform: translateY(-4px);
}

a.sns__twitter {
  color: var(--color-twitter);
}

a.sns__facebook {
  color: var(--color-facebook);
}

a.sns__line {
  color: var(--color-line);
}

/* サイズ調整 */
a.sns__twitter i,
a.sns__facebook i {
  transform: scale(1.15);
}

/*--------------------------------------------------------------
# 画像
--------------------------------------------------------------*/
/* cover */
.image__cover {
  overflow: hidden;
}

.image__cover img {
  display: block;
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
}

/*--------------------------------------------------------------
# サムネイル
--------------------------------------------------------------*/
.image__post-thumbnail {
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
}

.image__post-thumbnail img {
  display: block;
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
  transition: transform var(--duration-default);
}

.image__post-thumbnail__empty img {
  object-fit: cover;
  background: #fff; /* test */
}

/*--------------------------------------------------------------
# ロゴ
--------------------------------------------------------------*/
.site__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 2 / 3;
  margin-right: 40%;
  margin-left: auto;
}

.site-logo {
  filter: saturate(2);
}

.site__logo > img {
  position: relative;
  object-fit: contain;
  width: 100%;
  height: 100%;
  transition: transform 0.6s, opacity 0.6s;
}

.home .site__logo > img {
  transform: rotateY(0) translate(0, 25%);
  opacity: 0;
}

.scrolled.home .site__logo > img {
  transform: rotateY(360deg) translate(0);
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .site__logo {
    max-height: 75vh;
  }
}

@media screen and (max-width: 991px) {
  .site__logo {
    display: none;
  }
}

/*--------------------------------------------------------------
# テキスト .br__wrapper
--------------------------------------------------------------*/
/* 改行調整 */
.br__wrapper {
  display: inline-block;
}

/*--------------------------------------------------------------
# リスト .front__list
--------------------------------------------------------------*/
.front__list {
  font-size: var(--vw16);
  font-weight: 500;
  margin: 0;
  padding: 0 0 0 1.5em;
}

/*--------------------------------------------------------------
# セクション .front__section
--------------------------------------------------------------*/
.front__section {
  position: relative;
  padding: var(--section-padding) 0;
  z-index: 1;
  /* test */
  background: #eee;
}

.front__section__top {
  background: transparent;
}

/* .front__section__top::after {
	content: '';
	position: absolute;
	display: block;
	width: calc(100% - 2rem);
	height: calc(100% - 2rem);
	top: 50%;
	left: 50%;
	border: 8px solid var(--color-primary);
	transform: translate(-50%, -50%);
	z-index: 3;
} */

.front__section__has_background {
  background: var(--color-background-sub);
  padding-top: var(--section-padding);
}

/*--------------------------------------------------------------
# 概要文 .front__description
--------------------------------------------------------------*/
.front__description {
  font-size: var(--vw16);
  font-weight: 500;
  margin: 0;
  line-height: 2em;
}

.front__description:not(:last-child) {
  margin-bottom: 0.5em;
}

/*--------------------------------------------------------------
# 本文 .front__text
--------------------------------------------------------------*/
.front__text {
  font-size: var(--vw16);
  font-weight: 500;
  margin: 0;
  line-height: 2em;
}

.front__text:not(:last-child) {
  margin-bottom: 0.5em;
}

/*--------------------------------------------------------------
# 見出し .front__h2
--------------------------------------------------------------*/
.front__h2 {
  margin: 0;
}

/* .front__h2:not(:first-child) {
	margin-top: 1em;
} */

/*--------------------------------------------------------------
# 見出し ブラシつき .front__h2__brush
--------------------------------------------------------------*/
.front__h2__brush {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: var(--font-accent);
  font-size: var(--vw40);
  font-weight: 700;
  color: var(--color-text-primary);
  min-height: 3em;
  line-height: 1.5em;
  text-align: center;
  margin-bottom: 1.25em;
}

.front__h2__brush > * {
  position: relative;
  z-index: 1;
  color: #fdffc8;
}

.page__sub-header .front__h2__brush {
  margin-top: 1.25em;
}

.title__balloon {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: var(--font-dotted);
  font-size: var(--vw16);
  color: var(--color-primary);
  width: fit-content;
  margin: auto;
  padding-bottom: var(--vw16);
}

.title__balloon > * {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fff;
  width: 100%;
  padding: 0.5em 1.5em;
  border: 1.5px solid var(--color-text-primary);
  border-radius: 2rem;
  text-align: center;
  z-index: 1;
}

.title__balloon::before {
  content: "";
  position: absolute;
  display: block;
  background: var(--color-text-primary);
  width: calc(var(--vw32) + 3px);
  height: calc(var(--vw16) + 1.5px);
  bottom: 1.5px;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  z-index: 1;
}

.title__balloon::after {
  content: "";
  position: absolute;
  display: block;
  background: #fff;
  width: var(--vw32);
  height: var(--vw16);
  bottom: 3.5px;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  z-index: 2;
}

/*--------------------------------------------------------------
# 見出し .front__h3__eng
--------------------------------------------------------------*/
.front__h3__eng {
  font-family: var(--font-handwriting);
  font-size: var(--vw64);
  font-weight: 700;
  font-style: italic;
  color: #fff;
  margin: 0;
  line-height: 1em;
  text-shadow: 2px 2px 0 #ff47c8, -2px -2px 0 #ff47c8, -2px 2px 0 #ff47c8,
    2px -2px 0 #ff47c8, 0px 2px 0 #ff47c8, 0 -2px 0 #ff47c8, -2px 0 0 #ff47c8,
    2px 0 0 #ff47c8;
}

.front__h3__eng .font__inner {
  font-size: 51%;
}

/*--------------------------------------------------------------
# ボタン
--------------------------------------------------------------*/
/* 大きいボタン */
a.button__rounded {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-dotted);
  font-size: var(--vw20);
  font-weight: 700;
  background: var(--color-primary);
  color: #fff;
  width: 100%;
  padding: 1em 0.5em;
  border: 2px solid var(--color-text-primary);
  border-radius: 0.5rem;
  text-decoration: none;
  filter: drop-shadow(2px 2px 0px var(--color-text-primary));
  transition: transform var(--duration-default), filter var(--duration-default);
}

.button__rounded:hover {
  transform: translate(2px, 2px);
  filter: none;
}

/* 小さめのボタン */
.button__small:hover {
  transform: translate(2px, 2px);
  filter: none;
}

a.button__small {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-dotted);
  font-size: var(--vw16);
  font-weight: 700;
  background: #ff47c8;
  color: #fff;
  width: 100%;
  margin-top: var(--vw24);
  padding: 0.75em 0.5em;
  border: 2px solid var(--color-text-primary);
  border-radius: 0.5rem;
  text-decoration: none;
  filter: drop-shadow(2px 2px 0px #da4aa8);
  transition: transform var(--duration-default), filter var(--duration-default);
}

/* 主張が強い背景付きのボタン */
a.button__entry {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-dotted);
  font-size: var(--vw32);
  font-weight: 700;
  color: #000;
  background: #5effc1;
  width: 100%;
  margin-bottom: 2px;
  padding: 1em 0.5em;
  border: 2px solid var(--color-text-primary);
  border-radius: 0.5rem;
  text-decoration: none;
  filter: drop-shadow(2px 2px 0px var(--color-text-primary));
  transition: transform var(--duration-default), filter var(--duration-default);
  overflow: hidden;
}

a.button__entry > span {
  position: relative;
  z-index: 1;
}

a.button__entry::after {
  content: "";
  position: absolute;
  background: url(../image/dot_green.svg) right bottom / contain repeat;
  width: 100%;
  height: 80%;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.button__entry:hover {
  transform: translate(2px, 2px);
  filter: none;
}

/* セカンダリボタン */
a.button__secondary {
  display: block;
  font-size: var(--vw16);
  font-weight: 500;
  color: var(--color-primary);
  text-decoration: none;
  width: fit-content;
  margin-top: var(--vw16);
  margin-right: auto;
  margin-left: auto;
}

a.button__secondary::after {
  content: "\e636";
  font-family: var(--fontawesome-sharp);
  font-weight: 700;
  margin-left: 0.25em;
}

/* Squareリンク決済 */
a.button__checkout {
}

/*--------------------------------------------------------------
# リンク
--------------------------------------------------------------*/
/* 外部リンクアイコン */
.link__other::after {
  content: "\f35d";
  display: inline-block;
  font-family: var(--fontawesome-sharp);
  margin-left: 0.5rem;
}

/* 下線リンク */
a.link__underline {
  display: inline;
  color: var(--color-primary);
  text-decoration: underline;
}

/*--------------------------------------------------------------
# スライド
--------------------------------------------------------------*/
.splide__inner {
  position: relative;
}

.splide__inner > * {
  position: relative;
  z-index: 1;
}

/* ページネーション
--------------------------------------------- */
.splide__pagination {
  gap: var(--vw8);
  width: fit-content;
  margin: calc(var(--section-padding) / 2) auto;
  padding: 0;
}

.splide__pagination > li {
  transition: flex var(--duration-default);
}

button.splide__pagination__page {
  background: var(--color-grey);
  width: var(--vw20);
  height: var(--vw20);
  padding: 0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  border: 1.5px solid var(--color-text-primary);
}

button.splide__pagination__page.is-active {
  background: var(--color-primary);
}

/* Arrows
--------------------------------------------- */
.splide__arrows {
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: var(--container-width);
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
}

button.splide__arrow {
  font-size: var(--vw24);
  background: #c7cbff;
  width: 1.75em;
  height: 1.75em;
  padding: 0;
  border: 1.5px solid var(--color-text-primary);
  border-radius: 50%;
  pointer-events: auto;
  cursor: pointer;
}

.splide__arrow--prev::after {
  content: "\f0d9";
  font-family: var(--fontawesome-sharp);
}

.splide__arrow--next::after {
  content: "\f0da";
  font-family: var(--fontawesome-sharp);
}

/*--------------------------------------------------------------
# ドロワー
--------------------------------------------------------------*/
/* ドロワー展開時のbodyスクロール禁止
--------------------------------------------- */
body.drawer__open {
  width: 100%;
  height: 100%;
  position: fixed;
}

.drawer__body {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #ffffffe6;
  color: var(--color-background);
  width: 100%;
  max-width: 100%;
  height: 100%;
  padding: var(--header-height) var(--vw24) var(--vw32) var(--vw32);
  top: 0;
  left: 0;
  overflow: hidden;
  visibility: hidden;
  z-index: 80;
}

#drawer__button__checkbox:checked ~ .drawer__body {
  visibility: visible;
}

.drawer__window {
  position: relative;
  background: #f4feff;
  font-size: var(--vw16);
  font-weight: 500;
  border: 2px solid #ff4f9a;
  border-radius: 4px;
  transform: translate(0, 40px);
  filter: drop-shadow(2px 2px 0px #ffe9f8);
  line-height: 1.75em;
  text-align: justify;
  transition: transform 0.5s, opacity 0.25s;
  opacity: 0;
  overflow: hidden;
}

.drawer__window__title {
  font-family: var(--font-dotted);
  font-size: calc(var(--vw16) * 0.75);
  font-weight: 400;
  color: #f7fe63;
  background: #ff4f9a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  top: 0;
  left: 0;
  padding: 0.5em 1em;
  border-bottom: 2px solid #ff4f9a;
  line-height: 1em;
}

.navigation__drawer {
  padding: var(--vw16);
}

#drawer__button__checkbox:checked ~ .drawer__body .drawer__window {
  transform: translate(0, 0);
  opacity: 1;
}

.drawer__background__label {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 78;
}

/* ハンバーガーアイコン
--------------------------------------------- */
.drawer__wrapper {
  position: relative;
  top: 0;
}

.drawer__button__label {
  position: fixed;
  display: flex;
  height: var(--header-height);
  width: var(--header-height);
  justify-content: center;
  align-items: center;
  margin-left: auto;
  top: 0;
  right: 0;
  z-index: 90;
  transition: 0.2s;
  cursor: pointer;
}

.drawer__button__bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--color-primary);
  background: #fff;
  height: calc(var(--header-height) - var(--vw32));
  width: calc(var(--header-height) - var(--vw32));
  border: 1.5px solid var(--color-text-primary);
  border-radius: 0.5rem;
  transition: color 0.5s;
}

.drawer__button__bars::before {
  content: "\f0c9";
  position: relative;
  display: block;
  font-family: var(--fontawesome-sharp);
  font-size: var(--vw32);
  font-weight: 700;
  line-height: 1em;
  z-index: 99;
}

#drawer__button__checkbox:checked
  ~ .drawer__button__label
  .drawer__button__bars::before {
  content: "\f00d";
}

#drawer__button__checkbox {
  display: none;
}

/* @media screen and (min-width: 768px) {
	.drawer__wrapper {
		display: none;
	}
} */

/* ドロワー内のナビゲーション
--------------------------------------------- */
.drawer__inner {
  width: fit-content;
  z-index: 79;
}

.navigation__drawer {
  display: flex;
  flex-direction: column;
  gap: var(--vw16);
  width: 100%;
  min-height: 100%;
}

.drawer__title {
  font-family: var(--font-dotted);
  font-size: var(--vw16);
  font-weight: 400;
  color: #fff;
  background: #ff4f9a;
  margin-top: var(--vw40);
  padding: 0.25em 0;
  border: 2px solid var(--color-text-primary);
  border-radius: 4px;
  text-align: center;
  filter: drop-shadow(2px 2px 0px #5effc1);
}

@media screen and (min-width: 768px) {
  .navigation__drawer {
    gap: var(--vw40);
    padding: var(--vw40);
  }
}

/*--------------------------------------------------------------
# フッター .site__footer
--------------------------------------------------------------*/
.site__footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/*--------------------------------------------------------------
# メイン main
--------------------------------------------------------------*/
@media screen and (min-width: 768px) {
  .front__section,
  .site__footer {
    border-right: 1.5px solid var(--color-text-primary);
    border-left: 1.5px solid var(--color-text-primary);
  }

  .front__section__top {
    border: none;
  }

  .front__section:nth-child(2) {
    border-top: 1.5px solid var(--color-text-primary);
    border-radius: 4px 4px 0 0;
  }
}

/*--------------------------------------------------------------
# フロントページ first-view
--------------------------------------------------------------*/
.front__section__top {
  position: relative;
  height: 100vh;
  padding: 0;
  z-index: 0;
}

.main-visual__wrapper {
  position: fixed;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.main-visual__person {
  position: relative;
  width: 100%;
  height: 100vh;
  z-index: 0;
  transition: filter 0.4s 0.8s;
}

.home .main-visual__person {
  filter: brightness(0);
}

.wf-active .main-visual__person,
.wfno-load .main-visual__person {
  filter: none;
}

.scrolled .main-visual__person {
  filter: none;
}

.main-visual__person > img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.main-visual__logo {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 431 / 1050;
  height: 75%;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  /* transition: transform .8s, opacity .8s; */
  z-index: 1;
  width: 100%;
}

.main-visual__logo img {
  position: relative;
  transition: transform 0.8s, opacity 0.8s;
}

.main-visual__logo.animate img {
  transform: rotateY(0) translate(0, 25%);
  opacity: 0;
}

.wf-active .main-visual__logo.animate__show img,
.wfno-load .main-visual__logo.animate__show img {
  transform: rotateY(360deg) translate(0);
  opacity: 1;
}

.main-visual__logo > img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.front__section__top .container {
  position: relative;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .main-visual__wrapper {
    width: 100%;
  }

  .main-visual__person > img {
    object-position: 45% center;
  }

  .main-visual__logo {
    height: 65vh;
  }
}

@media screen and (min-width: 768px) {
  .main-visual__logo {
    right: auto;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .main-visual__background > img {
    object-position: right;
  }

  .main-visual__person {
    transform: translate(-15%, 0);
  }
}

/*--------------------------------------------------------------
# フロントページ スクロールダウン
--------------------------------------------------------------*/
.scroll_down {
  position: absolute;
  bottom: 0;
  right: var(--vw16);
  filter: drop-shadow(1px 1px 0px #000) drop-shadow(-1px -1px 0px #000)
    drop-shadow(-1px 1px 0px #000) drop-shadow(1px -1px 0px #000);
}

.scroll_down > span {
  position: absolute;
  left: 1em;
  bottom: max(60px, 12vh);
  color: #fff;
  font-size: calc(var(--vw16) * 0.75);
  letter-spacing: 0.2em;
  writing-mode: vertical-lr;
}

.scroll_down:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(var(--vw16) * -0.4);
  width: var(--vw16);
  height: var(--vw16);
  border-radius: 50%;
  background: #fff;
  animation: circlemove 1.6s ease-in-out infinite,
    cirlemovehide 1.6s ease-out infinite;
}

@keyframes circlemove {
  0% {
    bottom: max(120px, 20vh);
  }
  100% {
    bottom: 0px;
  }
}

@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}

.scroll_down:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2px;
  height: max(120px, 20vh);
  background: #fff;
}

/*--------------------------------------------------------------
# フロントページ introduction
--------------------------------------------------------------*/
.front__section__introduction {
  background: #fff;
}

.front__section__introduction .title__balloon {
  filter: drop-shadow(2px 2px 0px #e9e9e9);
}

.front__h2__introduction {
  margin-top: 0;
}

.introduction__body {
  display: flex;
  flex-direction: column;
  gap: var(--vw48);
  filter: drop-shadow(2px 2px 0px #e9e9e9);
}

.introduction__item__body,
.introduction__item__heading {
  position: relative;
  background: #fff;
  width: 88%;
  padding: calc(var(--vw8) + var(--vw20)) var(--vw8) var(--vw8);
  border: 1.5px solid var(--color-text-primary);
  border-radius: 4px;
  overflow: hidden;
  z-index: 0;
}

.introduction__item__body__sticker {
  position: relative;
  width: 60%;
  margin-right: var(--vw16);
  margin-left: auto;
  filter: drop-shadow(1px 1px 0px #eee) drop-shadow(-1px -1px 0px #eee)
    drop-shadow(-1px 1px 0px #eee) drop-shadow(1px -1px 0px #eee);
  z-index: 3;
}

.introduction__item__heading {
  background: #ffe9f8;
  margin-left: auto;
  padding: calc(var(--vw32) + var(--vw20)) var(--vw32) var(--vw32) var(--vw32);
}

.introduction__item__heading::after {
  content: "";
  position: absolute;
  background: url(../image/bg_tone.webp) repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.3;
  z-index: -1;
}

.introduction__item__body::before,
.introduction__item__heading::before {
  content: "";
  position: absolute;
  display: block;
  font-family: var(--font-dotted);
  font-size: 0.75em;
  background: #ffe9f8;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--vw20);
  padding: 0 0.5em;
  border-bottom: 1.5px solid var(--color-text-primary);
}

.introduction__item__heading::before {
  background: #e8f7f9;
}

.introduction__item__image__wrapper {
  border: 1.5px solid var(--color-text-primary);
  border-radius: 2px;
}

.introduction__item__body__sticker .introduction__item__image__wrapper {
  border: none;
}

.introduction__item__image__wrapper > img {
  display: block;
}

.front__h3__introduction {
  font-size: var(--vw20);
  color: #ff4f9a;
  margin: 0;
  line-height: 1.75em;
}

.front__h3__introduction span {
  background: #fff;
}

.introduction__item .introduction__item__heading {
  margin-top: calc(var(--vw40) * -1);
  margin-right: auto;
  margin-left: 0;
}

.introduction__description {
  font-size: var(--vw16);
  font-weight: 500;
  color: var(--color-text-primary);
  line-height: 2em;
  text-align: justify;
  margin: 0 0 var(--section-padding);
  padding: 0 var(--vw24);
}

.introduction__description > span {
  background: #ffe9f8;
}

.front__section__benefits .introduction__description > span {
  background: #fff;
}

/*--------------------------------------------------------------
# フロントページ pick-up, information
--------------------------------------------------------------*/
.front__section__information {
  background: #ebe2f6;
}

.front__h2__pick-up,
.front__section__inner__information .front__h2__information {
  font-family: var(--font-dotted);
  font-size: var(--vw20);
  font-weight: 400;
  color: #fff;
}

.pick-up__post-meta,
.information__post-meta,
.information__read-more {
  font-size: var(--vw16);
  font-weight: 500;
  text-align: justify;
}

.pick-up__post-meta a,
.information__post-meta a,
.information__read-more a {
  display: block;
  background: rgba(255, 255, 255, 0.75);
  color: #4a49c3;
  width: fit-content;
  max-width: 100%;
  text-decoration: underline;
  padding: 1em;
  border: 1.5px solid var(--color-text-primary);
  border-radius: var(--vw16) var(--vw16) var(--vw16) 0;
  transition: transform var(--duration-default);
}

.pick-up__post-meta a:hover,
.information__post-meta a:hover,
.information__read-more a:hover {
  transform: translateY(-2px);
}

.information__post-meta__post-title {
  font-size: var(--vw16);
  font-weight: 500;
  width: 100%;
  line-height: 2em;
}

.home .information__post-meta__post-title {
  font-size: var(--vw16);
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.front__section__inner__information {
  background: #d4d4ff;
  filter: drop-shadow(2px 2px 0px #d5c3ef);
}

.front__section__inner__information .information__head {
  background: #603d95;
}

.front__section__inner__pick-up,
.front__section__inner__information {
  border: 1.5px solid var(--color-text-primary);
  border-radius: 4px;
}

.front__h2__pick-up,
.front__section__inner__information .front__h2__information {
  padding: var(--vw16);
}

.pick-up__post-meta,
.information__post-meta,
.information__read-more {
  padding: var(--vw24) var(--vw16);
}

.information__post-meta:not(:nth-child(2)) {
  padding-top: 0;
}

.front__h2__pick-up,
.front__section__inner__information .front__h2__information {
  border-bottom: 1.5px solid var(--color-text-primary);
}

.pick-up__post-meta__post-date,
.information__post-meta__post-date {
  font-family: var(--font-dotted);
  font-size: 0.9em;
  margin-top: 0.5em;
  line-height: 1em;
}

.information__read-more a {
  display: block;
  background: #8177ff;
  color: #fff;
  margin-left: auto;
  border-radius: 1rem 1rem 0 1rem;
}

/*--------------------------------------------------------------
# フロントページ feature
--------------------------------------------------------------*/
.front__section__feature {
  background: #450c9b;
}

.front__section__feature::after {
  content: "";
  position: absolute;
  background: url(../image/bg_tone.webp) repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.3;
  z-index: -1;
}

.feature__item {
  position: relative;
  filter: drop-shadow(2px 2px 0px #a5d0d5);
}

.feature__body {
  display: flex;
  flex-direction: column;
  gap: var(--vw48);
}

.feature__item__heading {
  position: relative;
  width: var(--container-width);
  max-width: var(--container-max-width);
  margin-left: 2%;
  margin-right: auto;
  z-index: 2;
}

.feature__item__heading .front__h3__eng {
  position: absolute;
  left: 0.2em;
  bottom: -0.5em;
  z-index: 2;
}

.feature__item__image__wrapper {
  position: relative;
}

.feature__item__image {
  background: #fff;
  padding: calc(var(--vw8) / 2);
  border: 1.5px solid var(--color-text-primary);
  aspect-ratio: 3/2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature__item__image img {
  display: block;
  width: 90%;
  height: 80%;
  object-fit: contain;
  margin: auto;
}

.feature__item__body {
  position: relative;
  background: #fff;
  width: var(--container-width);
  max-width: var(--container-max-width);
  margin-top: calc(var(--vw8) * -1);
  margin-right: 2%;
  margin-left: auto;
  padding: var(--vw64) var(--vw24) var(--vw24) var(--vw24);
  border: 1.5px solid var(--color-text-primary);
  border-radius: 4px;
  overflow: hidden;
  text-align: justify;
  z-index: 1;
}

.feature__item__body::before {
  content: "";
  position: absolute;
  display: block;
  background: #1c1be2;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--vw24);
  border-bottom: 1.5px solid var(--color-text-primary);
}

.front__h3__feature {
  font-size: var(--vw20);
  margin: 0 0 1em;
}

.front__h3__feature > span {
  background: #fef971;
}

/*--------------------------------------------------------------
# フロントページ magazine
--------------------------------------------------------------*/
.front__section__magazine {
  background: #ffe9f8;
}

.front__section__magazine::after {
  content: "";
  position: absolute;
  background: url(../image/bg_tone.webp) repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.3;
  z-index: -1;
}

.front__section__alignment {
  background: #e1fff8;
}

.magazine__post-meta,
.alignment__post-meta {
  margin-right: auto;
  margin-left: auto;
  padding: var(--vw16) 0;
  text-align: justify;
}

.home .magazine__post-meta,
.home .alignment__post-meta {
  width: calc(var(--container-width) * 0.9);
}

.magazine__post-meta .post__link {
  position: relative;
  display: block;
  background: #fff;
  font-size: var(--vw16);
  margin-bottom: 2px;
  padding: var(--vw32) var(--vw8) var(--vw8) var(--vw8);
  border: 1.5px solid var(--color-text-primary);
  border-radius: 4px;
  filter: drop-shadow(2px 2px 0px #ffafe4);
  overflow: hidden;
  transition: transform var(--duration-default);
}

.alignment__post-meta .post__content {
  position: relative;
  background: #fff;
  font-size: var(--vw16);
  margin-bottom: 2px;
  padding: var(--vw40) var(--vw24) var(--vw24) var(--vw24);
  border: 1.5px solid var(--color-text-primary);
  border-radius: 4px;
  filter: drop-shadow(2px 2px 0px #a5e6dc);
  overflow: hidden;
  text-align: justify;
  transition: transform var(--duration-default);
}

a .magazine__post-meta__post-title {
  color: #4a49c3;
  font-weight: 500;
  margin-top: var(--vw24);
  padding: 0 var(--vw24);
  line-height: 2em;
}

.magazine__post-meta .post__link::before {
  content: "INTERVIEW";
  position: absolute;
  display: block;
  font-family: var(--font-dotted);
  font-size: 0.75em;
  color: #4a49c3;
  background: #c7cbff;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--vw24);
  padding: 0 0.5em;
  border-bottom: 1.5px solid var(--color-text-primary);
}

.alignment__post-meta .post__content::before {
  content: "DONATION";
  position: absolute;
  display: block;
  font-family: var(--font-dotted);
  font-size: 0.75em;
  color: #f7fe63;
  background: #000100;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--vw24);
  padding: 0 0.5em;
  border-bottom: 1.5px solid var(--color-text-primary);
  z-index: 1;
}

.magazine__post-meta .post__link:hover {
  transform: scale(1.05);
}

.magazine__post-meta .image__post-thumbnail {
  border: 1.5px solid var(--color-text-primary);
  border-radius: 2px;
}

.splide__magazine {
  margin-top: calc(var(--vw16) * -1);
}

.post-type-archive-alignment article.alignment,
.site-stg-alignment article.alignment {
  padding: var(--vw16) 0;
}

.alignment__post-meta .post__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--vw16);
}

.alignment__post-meta .image__post-thumbnail {
  aspect-ratio: 1 / 1;
  width: 50%;
  border: 1.5px solid var(--color-text-primary);
  border-radius: 50%;
}

.alignment__post-meta__post-title {
  font-size: var(--vw16);
  font-weight: 500;
  color: #ff4f9a;
}

.alignment__post-meta .post__content > * {
  position: relative;
  z-index: 1;
}

.alignment__post-meta .post__content::after {
  content: "";
  position: absolute;
  background: url(../image/bg_tone.webp) repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.3;
  z-index: 0;
}

.post__link__external .information__post-meta__post-title::after {
  content: "\f35d";
  display: inline-block;
  font-family: var(--fontawesome-sharp);
  margin-left: 0.5rem;
}

.type-alignment .post__thumb__wrapper {
  aspect-ratio: 4 / 3;
}

.type-alignment .post__thumb__wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/*--------------------------------------------------------------
# フロントページ benefits
--------------------------------------------------------------*/
.front__section__benefits {
  background: #ebe2f6;
}

.benefits__head__note {
  font-size: var(--vw16);
  font-weight: 700;
  text-align: center;
}

.benefits__head__note.bgSlide::after {
  background: #ebe2f6;
}

.introduction__description.bgSlide::after {
  background: #fff;
}

.front__section__benefits .introduction__description.bgSlide::after {
  background: #ebe2f6;
}

.benefits__head__note > span {
  background: #e1ffe8;
}

.benefits__body {
  display: flex;
  flex-direction: column;
  gap: var(--vw48);
}

.benefits__item {
  filter: drop-shadow(2px 2px 0px #d5c3ef);
}

.benefits__item__heading {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  z-index: 2;
}

.benefits__item__heading__nubmer {
  position: absolute;
  font-family: var(--font-handwriting);
  font-size: var(--vw48);
  font-weight: 700;
  color: #fff;
  margin: 0;
  top: 0;
  line-height: 1em;
  text-shadow: 2px 2px 0 #a782ff, -2px -2px 0 #a782ff, -2px 2px 0 #a782ff,
    2px -2px 0 #a782ff, 0px 2px 0 #a782ff, 0 -2px 0 #a782ff, -2px 0 0 #a782ff,
    2px 0 0 #a782ff;
  z-index: 3;
}

.front__h3__benefits {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: var(--vw20);
  color: var(--color-primary);
  width: 100%;
  margin: var(--vw20) auto 0 var(--vw24);
  padding-bottom: var(--vw16);
  text-align: justify;
}

.front__h3__benefits > * {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  width: 100%;
  padding: var(--vw24);
  border: 1.5px solid var(--color-text-primary);
  border-radius: 2rem;
  z-index: 1;
}

.front__h3__benefits span {
  background: #ebe2f6;
}

.front__h3__benefits::before {
  content: "";
  position: absolute;
  display: block;
  background: var(--color-text-primary);
  width: calc(var(--vw32) + 3px);
  height: calc(var(--vw16) + 1.5px);
  bottom: 1.5px;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  z-index: 1;
}

.front__h3__benefits::after {
  content: "";
  position: absolute;
  display: block;
  background: #fff;
  width: var(--vw32);
  height: var(--vw16);
  bottom: 3.5px;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  z-index: 2;
}

.benefits__item__body {
  position: relative;
  background: #fff;
  width: 100%;
  margin-top: calc(var(--vw8) * -1);
  padding: var(--vw32) var(--vw8) var(--vw24) var(--vw8);
  border: 1.5px solid var(--color-text-primary);
  border-radius: 4px;
  overflow: hidden;
  text-align: justify;
  z-index: 0;
}

.benefits__item__body::before {
  content: "BENEFITS";
  position: absolute;
  font-family: var(--font-dotted);
  font-size: 0.75em;
  display: block;
  background: #e1ffe8;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--vw24);
  padding: 0 0.5em;
  border-bottom: 1.5px solid var(--color-text-primary);
}

.benefits__item__image__wrapper {
  aspect-ratio: 16 / 9;
  border: 1.5px solid var(--color-text-primary);
  border-radius: 2px;
}

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

.benefits__item__text__wrapper {
  margin-top: var(--vw24);
  padding: 0 var(--vw24);
}

/*--------------------------------------------------------------
# 放送局
--------------------------------------------------------------*/
.front__section__broadcaster,
.main_broadcasting-station {
  background: #fff;
}

.main_broadcasting-station {
  position: relative;
  padding-bottom: var(--section-padding);
}

.main_broadcasting-station::after {
  content: "";
  position: absolute;
  background: url(../image/bg_tone.webp) repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.3;
  z-index: 0;
}

.image__broadcaster__logo {
  background: #fff;
  aspect-ratio: 1 / 1;
  margin-bottom: 2px;
  padding: var(--vw16);
  border: 1.5px solid var(--color-text-primary);
  border-radius: 4px;
  filter: drop-shadow(2px 2px 0px #e9e9e9);
}

.image__broadcaster__logo > img {
  object-fit: contain;
  object-position: center center;
  width: 100%;
  height: 100%;
}

.front__section__broadcaster .button__rounded {
  margin-top: calc(var(--section-padding) / 2);
}

.broadcaster__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--vw16);
}

.article__broadcaster {
  font-size: var(--vw16);
  background: #fff;
  border: 1.5px solid var(--color-text-primary);
  border-radius: 4px;
  filter: drop-shadow(2px 2px 0px #e9e9e9);
  overflow: hidden;
}

.article__broadcaster__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--vw24);
  padding: var(--vw16);
}

.article__broadcaster__area {
  display: block;
  font-family: var(--font-dotted);
  font-size: calc(var(--vw16) * 0.9);
  font-weight: 700;
  color: #fff;
  background: #ff4f9a;
  width: 100%;
  padding: 0.5em;
  border-bottom: 1.5px solid var(--color-text-primary);
}

.article__broadcaster__logo {
  aspect-ratio: 4 / 3;
  width: 90%;
}

.article__broadcaster__logo > img {
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.article__broadcaster__name {
  font-size: var(--vw20);
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
}

.article__broadcaster__name > span {
  background: #faff8c;
}

.article__broadcaster__button__wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--vw8);
  width: 100%;
}

.article__broadcaster__button__wrapper .button__small {
  font-size: calc(var(--vw16) * 0.9);
  margin: 0;
  padding: 0.5em;
}

.note__decorated {
  font-family: var(--font-handwriting);
  font-size: var(--vw32);
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-shadow: 2px 2px 0 #ff4f9a, -2px -2px 0 #ff4f9a, -2px 2px 0 #ff4f9a,
    2px -2px 0 #ff4f9a, 0px 2px 0 #ff4f9a, 0 -2px 0 #ff4f9a, -2px 0 0 #ff4f9a,
    2px 0 0 #ff4f9a;
  margin-top: calc(var(--section-padding) / 2);
}

.note__decorated > span {
  background: linear-gradient(transparent 30%, #5effc1 30%);
}

/*--------------------------------------------------------------
# フロントページ supporter
--------------------------------------------------------------*/
.front__section__supporter {
  background: #fff;
}

/*--------------------------------------------------------------
# フロントページ cta
--------------------------------------------------------------*/
.front__section__cta {
  background-color: #ffe9f880;
  border-top: 1.5px solid var(--color-text-primary);
  border-bottom: 1.5px solid var(--color-text-primary);
}

/*--------------------------------------------------------------
# フロントページ about
--------------------------------------------------------------*/
.front__section__about {
  background: #ffe9f8;
}

.front__section__about::after {
  content: "";
  position: absolute;
  background: url(../image/bg_tone.webp) repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.3;
  z-index: -1;
}

.front__section__inner__about {
  border: 1.5px solid var(--color-text-primary);
  border-radius: 4px;
  filter: drop-shadow(2px 2px 0px #ffafe4);
  overflow: hidden;
}

.front__section__inner__about .about__head {
  background: #000;
  padding: var(--vw16);
  border-bottom: 1.5px solid var(--color-text-primary);
}

.front__section__inner__about .about__head .front__h2__about {
  font-family: var(--font-dotted);
  font-size: var(--vw20);
  font-weight: 400;
  color: #fff;
}

.about__body {
  background: #fff;
  padding: 0;
}

.about__body dl {
  font-size: var(--vw16);
  font-weight: 500;
  margin: 0;
  line-height: 2em;
}

.about__body dt {
  font-family: var(--font-dotted);
  font-weight: 700;
  color: #ff4f9a;
  padding: var(--vw20) var(--vw16) var(--vw8);
}

.about__body dt > span {
  background: #e1ffe8;
}

.about__body dd {
  margin: 0;
  padding: 0 var(--vw16) var(--vw20);
}

.about__body dd:not(:last-child) {
  border-bottom: 1px solid #d0ecff;
}

/*--------------------------------------------------------------
# サブヘッダー .page__sub-header
--------------------------------------------------------------*/
.page__sub-header {
  padding: var(--section-padding) 0;
}

.page__sub-header .front__h2__brush {
  margin: 0;
}

/*--------------------------------------------------------------
# ページ
--------------------------------------------------------------*/
body:not(.home) .site-main {
  position: relative;
  margin-top: var(--header-height);
  padding-bottom: var(--section-padding);
  border-top: 1.5px solid var(--color-text-primary);
}

body:not(.home) .site-main > * {
  position: relative;
  z-index: 1;
}

.single-post .site-main {
  background: #dce8f3;
  padding: calc(var(--section-padding) / 2) 0 var(--section-padding);
}

.archive .site-main {
  background: #fff;
}

.post-type-archive-post .site-main {
  background: #ffe9f8;
}

.post-type-archive-post .site-main::after,
.tax-news_category .site-main::after {
  content: "";
  position: absolute;
  background: url(../image/bg_tone.webp) repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.3;
  z-index: 0;
}

.archive .site-main {
  padding-bottom: var(--section-padding);
}

.single-news .site-main,
.post-type-archive-news .site-main {
  background: #ebe2f6;
}

.single-news .site-main {
  padding: calc(var(--section-padding) / 2) 0 var(--section-padding);
}

@media screen and (min-width: 768px) {
  body:not(.home) .site-main {
    border-right: 1.5px solid var(--color-text-primary);
    border-left: 1.5px solid var(--color-text-primary);
    border-radius: 4px 4px 0 0;
  }
}

/*--------------------------------------------------------------
# 汎用ウインドウ風
--------------------------------------------------------------*/
.window__wrapper {
  position: relative;
  background: #fff;
  font-size: var(--vw16);
  font-weight: 500;
  border: 1.5px solid var(--color-text-primary);
  border-radius: 4px;
  filter: drop-shadow(2px 2px 0px #a5e6dc);
  line-height: 1.75em;
  text-align: justify;
  overflow: hidden;
}

.window__header {
  font-family: var(--font-dotted);
  font-size: calc(var(--vw16) * 0.75);
  font-weight: 400;
  color: #f7fe63;
  background: #000100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  top: 0;
  left: 0;
  padding: 0.5em 1em;
  border-bottom: 1.5px solid var(--color-text-primary);
  line-height: 1em;
}

.window__body {
  padding: var(--vw16);
}

/*--------------------------------------------------------------
# 入会
--------------------------------------------------------------*/
.main_join-us,
.main_thanks {
  background: #fff;
  padding-bottom: var(--section-padding);
}

.main_join-us .window__wrapper {
  filter: drop-shadow(2px 2px 0px #e9e9e9);
}

.input__checkout__label {
  display: block;
  font-size: var(--vw20);
  font-weight: 500;
  width: fit-content;
  cursor: pointer;
  margin: var(--vw32) auto;
}

.input__checkout__label > span {
  background: linear-gradient(transparent 75%, #faff8c 75%);
}

#input__checkout {
  display: none;
}

.input__checkout__label::before {
  content: "\f0c8";
  display: inline-block;
  font-family: var(--fontawesome-sharp);
  font-weight: 400;
  margin-right: 0.5em;
}

#input__checkout:checked ~ .input__checkout__label::before {
  content: "\f14a";
}

a.button__checkout {
  background: #bbb;
  padding: var(--vw16);
  pointer-events: none;
}

#input__checkout:checked ~ .plan__wrapper a.button__checkout {
  background: var(--color-primary);
  pointer-events: auto;
}

.plan__wrapper:not(:last-child) {
  margin-bottom: calc(var(--section-padding) * 0.5);
}

.plan__item__wrapper {
  display: flex;
  flex-direction: column;
}

.plan__item__title {
  font-size: var(--vw24);
  margin: var(--vw16) 0;
  line-height: 1.75em;
}

.plan__desc {
  display: block;
  font-size: var(--vw16);
  font-weight: 500;
  margin-bottom: var(--vw24);
}

.plan__item__variation {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.plan__item__variation:not(:last-child) {
  margin-bottom: var(--vw16);
  padding-bottom: var(--vw16);
  border-bottom: 1px solid #d0ecff;
}

.plan__item__variation a.button__checkout {
  font-size: var(--vw16);
  width: 50%;
}

.plan__item__variation__price {
  font-size: var(--vw20);
}

.price__amount {
  font-weight: 700;
  color: var(--color-primary);
}

.price__payment__type {
  font-size: calc(1em * 0.9);
  padding-right: 0.25em;
}

.price__tax {
  font-size: calc(1em * 0.75);
  padding-left: 0.25em;
}

a.link__plan {
  font-size: var(--vw16);
  font-weight: 500;
  color: var(--color-primary);
  text-decoration: none;
}

a.link__plan::after {
  content: "\f054";
  font-family: var(--fontawesome-sharp);
  font-size: 0.9em;
  font-weight: 700;
  margin-left: 0.25em;
}

/* サンクスページ */
.contract__item {
  display: flex;
  flex-direction: column;
}

.contract__item:not(:last-child) {
  margin-bottom: var(--vw16);
  padding-bottom: var(--vw16);
  border-bottom: 1px solid #d0ecff;
}

.page__section__thanks h2 {
  display: block;
  font-size: var(--vw24);
  text-align: center;
  margin: var(--vw32) 0;
}

.thanks__message {
  font-size: var(--vw16);
  font-weight: 500;
  line-height: 2em;
  text-align: justify[];
  margin-bottom: calc(var(--section-padding) * 0.75);
}

h3.contract__title {
  font-size: var(--vw20);
  margin: 0 0 var(--vw16);
}

.contract__item {
  display: flex;
  flex-direction: column;
  gap: var(--vw8);
  font-size: var(--vw16);
  font-weight: 500;
}

.contract__item__title {
  color: #888;
}

.page__section__thanks .tombo__wrapper {
  margin-bottom: var(--section-padding);
}

/*--------------------------------------------------------------
# 寄付先
--------------------------------------------------------------*/
.post-type-archive-alignment .site-main,
.site-stg-alignment {
  background: #e3fff8;
}

.alignment__content {
  padding: 0 var(--vw8);
}

.alignment__content p {
  font-size: var(--vw16);
  font-weight: 500;
  color: var(--color-text-primary);
  line-height: 2em;
  margin: 0;
}

.post-type-archive-alignment .post__posted-date,
.site-stg-alignment .post__posted-date {
  font-size: calc(var(--vw16) * 0.75);
  color: #f7fe63;
  background: #000100;
}

.post-type-archive-alignment .post__entry-header,
.site-stg-alignment .post__entry-header {
  filter: drop-shadow(2px 2px 0px #a5e6dc);
}

.post-type-archive-alignment .nav-links,
.site-stg-alignment .nav-link {
  background: #000100;
  filter: drop-shadow(2px 2px 0px #a5e6dc);
}

.post-type-archive-alignment ul.page-numbers > li a,
.site-stg-alignment ul.page-numbers > li a {
  color: #f7fe63;
}

.post-type-archive-alignment ul.page-numbers > li > .current,
.site-stg-alignment ul.page-numbers > li > .current {
  color: #000100;
  background: #5effc1;
}

.post-type-archive-alignment ul.page-numbers > li a:hover,
.site-stg-alignment ul.page-numbers > li a:hover {
  color: #000100;
  background: #5effc1;
}

.post-type-archive-alignment .post__company__name::before,
.site-stg-alignment .post__company__name::before {
  content: none;
}

.post-type-archive-alignment .post__company__name,
.site-stg-alignment .post__company__name {
  margin-left: 0;
}

.front__section__alignment .button.splide__arrow {
  color: #f7fe63;
  background: #000100;
}

.front__section__alignment button.splide__pagination__page.is-active {
  background: #f7fe63;
}

/*--------------------------------------------------------------
# お問い合わせ /contact
--------------------------------------------------------------*/
.main_contact {
  background: #ffe9f8;
  padding-bottom: var(--section-padding);
  border-bottom: 1.5px solid var(--color-text-primary);
}

.term__recaptcha {
  font-size: calc(var(--vw16) * 0.75);
  font-weight: 500;
  margin-top: var(--vw20);
  text-align: justify;
}

.term__recaptcha a {
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# 404
--------------------------------------------------------------*/
body:not(.home) .site-main__not-found {
  position: relative;
  width: 90%;
  background: #fff;
  margin-right: auto;
  margin-left: auto;
  padding: var(--vw32);
  border: 1.5px solid var(--color-text-primary);
  border-radius: 0.25rem;
}

body:not(.home) .site-main__not-found::before {
  content: "404 PAGE NOT FOUND";
  position: absolute;
  font-family: var(--font-dotted);
  font-size: 0.75em;
  display: block;
  background: var(--color-text-primary);
  color: #fff;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--vw24);
  padding: 0 0.5em;
  border-bottom: 1.5px solid var(--color-text-primary);
}

.not-found__text {
  font-size: var(--vw16);
  font-weight: 500;
  line-height: 2em;
}

/*--------------------------------------------------------------
# プラン
--------------------------------------------------------------*/
.main_plan-media,
.main_plan-fm,
.main_plan-website,
.page__section__plan .introduction__description.bgSlide::after {
  background: #ebe2f6;
}

.main_plan-media .page__sub-header,
.main_plan-fm .page__sub-header {
  padding-bottom: calc(var(--section-padding) * 0.5);
}

.page__section__plan .introduction__description > span {
  background: #fff;
}

.plan__button__wrapper {
  margin-top: var(--section-padding);
}

.benefits__item__image__wrapper__fmlogo__outer {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 16 / 9;
  background: #e6e6e6;
  border: 1.5px solid var(--color-text-primary);
  border-radius: 2px;
  overflow: hidden;
}

.benefits__item__image__wrapper__fmlogo {
  display: grid;
  grid-gap: var(--vw8);
  grid-template-columns: repeat(6, 1fr);
  width: 100%;
  transform: scale(1.25);
}

.fmlogo__item {
  aspect-ratio: 1 / 1;
  background: #fff;
  width: 100%;
  height: 100%;
  padding: 10%;
  border: 1px solid var(--color-text-primary);
  border-radius: 2px;
}

.fmlogo__item > img {
  display: block;
  object-fit: contain;
  width: 100%;
  height: 100%;
  margin: 0;
}

.front__section__benefits .feature__item {
  filter: drop-shadow(2px 2px 0px #d5c3ef);
}

.front__section__benefits .feature__item__image > img {
  border: 1.5px solid var(--color-text-primary);
}

.front__section__benefits .benefits__item__image__wrapper__fmlogo__outer {
  border-radius: 0;
}

/*--------------------------------------------------------------
# プライバシーポリシー 特定商取引法に基づく表記
--------------------------------------------------------------*/
.main_privacy-policy,
.main_law {
  background: #000;
  color: #fff;
}

.main_privacy-policy .front__h2__brush,
.main_law .front__h2__brush {
  font-family: var(--font-main);
  font-size: var(--vw24);
}

.policy__body p {
  font-size: var(--vw16);
  font-weight: 500;
  margin: 0;
  line-height: 2em;
}

.policy__body h3 {
  font-size: var(--vw20);
  margin: 2em 0 0.5em;
}

.policy__body ol {
  font-size: var(--vw16);
  font-weight: 500;
  margin: 0.5em 0 0;
  padding: 0 0 0 1.25em;
  line-height: 2em;
}

.table__law {
  font-size: var(--vw16);
  font-weight: 500;
  margin: 0;
}

.table__law dt {
  padding: var(--vw24) 0 var(--vw16);
}

.table__law dt:first-child {
  padding-top: 0;
}

.table__law dd {
  margin: 0;
  padding: 0 0 var(--vw24);
}

.table__law dd:not(:last-child) {
  border-bottom: 1px solid #bbb;
}

h2.terms__title {
  font-size: var(--vw20);
  font-weight: 700;
  line-height: 1.5em;
  margin: var(--vw24) 0 var(--vw32);
}

.terms__item {
  display: flex;
  flex-direction: column;
  row-gap: calc(var(--vw16) * 0.5);
  margin-bottom: var(--vw24);
}

.terms__item h3 {
  font-size: var(--vw16);
  font-weight: 700;
  margin: 0;
}

.terms__item p {
  font-size: var(--vw16);
  font-weight: 500;
  margin: 0;
}

.terms__item ol {
  margin: 0;
  padding: 0;
}

.terms__item ul {
  margin: 0;
  padding: 0 0 0 1.25em;
}

.terms__item ol li {
  display: flex;
  gap: 0.5em;
  list-style-type: none;
  counter-increment: cnt;
}

.terms__item ol li::before {
  content: "(" counter(cnt) ") ";
}

/*--------------------------------------------------------------
# 装飾
--------------------------------------------------------------*/
.tombo__wrapper {
  position: relative;
  padding: var(--vw16);
}

.tombo::before,
.tombo::after {
  content: "";
  position: absolute;
  width: var(--vw8);
  height: var(--vw8);
}

.tombo:first-child::before {
  top: 0;
  left: 0;
  border-right: 2px solid #aab1ff;
  border-bottom: 2px solid #aab1ff;
}

.tombo:first-child::after {
  top: 0;
  right: 0;
  border-left: 2px solid #aab1ff;
  border-bottom: 2px solid #aab1ff;
}

.tombo:last-child::before {
  bottom: 0;
  left: 0;
  border-right: 2px solid #aab1ff;
  border-top: 2px solid #aab1ff;
}

.tombo:last-child::after {
  bottom: 0;
  right: 0;
  border-left: 2px solid #aab1ff;
  border-top: 2px solid #aab1ff;
}

/*--------------------------------------------------------------
# Webフォントちらつき防止
--------------------------------------------------------------*/
html {
  visibility: hidden;
}

html.wf-active,
html.wfno-load {
  visibility: visible;
}

/*--------------------------------------------------------------
# アニメーション
--------------------------------------------------------------*/
/* popIn
--------------------------------------------- */
.popIn {
  transform: scale(0);
  transition: transform 0.4s 0.2s;
}

.wf-active .popIn.animate__show,
.wfno-load .popIn.animate__show {
  transform: scale(1);
}

/* fadeIn
--------------------------------------------- */
.fadeIn {
  transform: translateY(1rem) scale(0.75);
  opacity: 0;
  transition: opacity 0.4s 0.4s, transform 0.4s 0.4s;
}

.wf-active .fadeIn.animate__show,
.wfno-load .fadeIn.animate__show {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* jumpIn
--------------------------------------------- */
.jumpIn {
  transform: translate(0, 0);
  opacity: 0;
}

.wf-active .jumpIn.animate__show,
.wfno-load .jumpIn.animate__show {
  animation: jumpIn 0.4s 0.4s forwards;
}

@keyframes jumpIn {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  20% {
    transform: translate(0, 0);
    opacity: 1;
  }
  25% {
    transform: translate(0, calc(var(--vw16) / 2));
    opacity: 1;
  }
  50% {
    transform: translate(0, var(--vw16));
    opacity: 1;
  }
  75% {
    transform: translate(0, calc(var(--vw16) / 2));
    opacity: 1;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

/* blur
--------------------------------------------- */
.blur {
  filter: blur(2rem);
  transform: scale(1.1);
  opacity: 0;
  transition: opacity 0.4s 0.4s, transform 0.4s 0.4s, filter 0.4s 0.4s;
}

.wf-active .blur.animate__show,
.wfno-load .blur.animate__show {
  filter: none;
  transform: scale(1);
  opacity: 1;
}

/* flipIn
--------------------------------------------- */
.flipIn {
  transform: rotateY(0) translateY(40px);
  opacity: 0;
}

.wf-active .flipIn.animate__show,
.wfno-load .flipIn.animate__show {
  transform: rotateY(360deg) translateY(0);
  opacity: 1;
}

/* bgSlide
--------------------------------------------- */
.bgSlide {
  position: relative;
}

.bgSlide {
  opacity: 0;
  transition: opacity 1s 0.4s;
}

.wf-active .animate__show.bgSlide,
.wfno-load .animate__show.bgSlide {
  opacity: 1;
}

.bgSlide::after {
  content: "";
  position: absolute;
  background: #fff;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  transform-origin: top right;
  transition: transform 0.8s ease-out 0.4s;
}

.wf-active .animate__show.bgSlide::after,
.wfno-load .animate__show.bgSlide::after {
  transform: scaleX(0);
}

/* ディレイ
--------------------------------------------- */
.animate__delay1 {
  transition-delay: 0.6s !important;
  animation-delay: 0.6s !important;
}

.animate__delay2 {
  transition-delay: 0.8s !important;
  animation-delay: 0.8s !important;
}

.animate__delay3 {
  transition-delay: 1s !important;
  animation-delay: 1s !important;
}

.animate__delay4 {
  transition-delay: 1.2s !important;
  animation-delay: 1.2s !important;
}

.animate__delay5 {
  transition-delay: 1.4s !important;
  animation-delay: 1.4s !important;
}

.animate__delay6 {
  transition-delay: 1.6s !important;
  animation-delay: 1.6s !important;
}

.animate__delay7 {
  transition-delay: 1.8s !important;
  animation-delay: 1.8s !important;
}

.animate__delay8 {
  transition-delay: 2s !important;
  animation-delay: 2s !important;
}

a.button__small:active,
a.button__rounded:active,
a.button__join:active {
  background: #13cabd;
}

/*--------------------------------------------------------------
# reCaptchaのバッジ非表示
--------------------------------------------------------------*/
.grecaptcha-badge {
  display: none;
}
