@charset "UTF-8";
:root {
  --theme-black:#3F3F3F;
  --theme-black-rgb: 63, 63, 63;
  --theme-emerald-green: #009688;
  --theme-green:#008574;
  --theme-green-rgb: 0, 133, 116;
  --theme-deep-green:#006349;
  --theme-light-green:#06C755;
  --theme-white-green:#E5F3E6;
  --theme-deep-gray:#4e4e4e;
  --theme-gray:#B4ADA9;
  --theme-light-gray:#DFDFDF;
  --theme-white-gray:#F0F2F3;
  --theme-white: #FFFFFF;
  --theme-white-rgb:255, 255, 255;
  --theme-yellow: #fffc7d;
  --theme-red:#AA1320;
  --theme-deep-red:#5c080f;
  --theme-light-red: #fa5564;
}

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

  ユーザーエージェント系の関数

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
:root {
  --side-padding: calc((100vw - 2666px) / 2);
}

@media (max-width: 2693px) {
  :root {
    --side-padding: 5%;
  }
}
br.limit-pc, br.limit-tab, br.limit-s-tab, br.limit-sp, br.only-pc, br.only-tab, br.only-s-tab, br.only-sp {
  display: none;
}

@media (max-width: 1600px) {
  br.limit-pc, br.only-pc {
    display: inline;
  }
  br.other-pc, br.none-pc {
    display: none;
  }
}
@media (max-width: 1032px) {
  br.limit-tab, br.only-tab, br.other-pc {
    display: inline;
  }
  br.only-pc, br.other-tab, br.none-tab {
    display: none;
  }
}
@media (max-width: 780px) {
  br.limit-s-tab, br.only-s-tab, br.other-tab {
    display: inline;
  }
  br.only-tab, br.other-s-tab, br.none-s-tab {
    display: none;
  }
}
@media (max-width: 550px) {
  br.limit-sp, br.only-sp, br.other-s-tab {
    display: inline;
  }
  br.only-s-tab, br.other-sp, br.none-sp {
    display: none;
  }
}
/*------------------------------------------
　フォントの指定
-------------------------------------------*/
/*------------------------------------------
　フォントサイズの指定
-------------------------------------------*/
/* 各要素の指定用に1remを10px(62.5%)に設定 */
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  line-height: 1.8;
  letter-spacing: 0.15em;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
  font-feature-settings: "palt" 1;
  font-style: normal;
}
@media (max-width: 780px) {
  body {
    font-size: 14px;
  }
}

/*-----------------------------------------------
  font-sizeのレスポンシブ対応レイアウト関連
  デフォルト　：　最大値[rem]
  タブレット~スマホ：以下フォントサイズ計算式
  font-size: clamp(
    スマホ(550px以下),
    32px + 32px  (100vw - 550px) / 730px
    最大(1280px以上)
  );
  font-size: calc(A[rem] + B[px] * (100vw - C)/D);
    A・・・最小文字サイズ[rem]
    B・・・最大文字サイズ (remをpx変換)– 最小文字サイズ (remをpx変換)[px]
    C・・・最小画面幅 [px]
    D・・・最大画面幅 – 最小画面幅[px]
  スマホ：最小値[rem]
------------------------------------------------*/
/*
  テキストスタイル
*/
/*********************************************

  共通関数

*********************************************/
/*********************************************

  テーマ基本設定

*********************************************/
html {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
html::-webkit-scrollbar {
  display: none;
}

body {
  min-height: 100vh;
  width: 100%;
  color: var(--theme-black);
  display: flex;
  flex-direction: column;
  position: relative;
  color: var(--theme-deep-gray);
}

main {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  gap: 160px;
  padding-bottom: 160px;
  background-size: 100% auto;
  background-repeat: repeat-y;
  background-image: url("./../images/design/background.jpg");
}
@supports (background-image: url("./../images/design/background.webp")) {
  main {
    background-repeat: repeat-y;
    background-size: 100% auto;
    background-image: url("./../images/design/background.webp");
  }
}
@media (max-width: 780px) {
  main {
    gap: 80px;
  }
}

button, submit, a, input {
  cursor: pointer;
}

h1, h2, h3, h4, p, span, div, strong {
  word-break: auto-phrase;
}

.breadcrumb {
  width: min(1400px, 92%);
  margin: 0 auto;
}
.breadcrumb ol {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 4px;
}
.breadcrumb ol li span {
  font-size: 13px;
  font-weight: 500;
}
.breadcrumb ol li a > span {
  transition: 0.4s;
}
@media (hover: hover) and (pointer: fine) {
  .breadcrumb ol li a > span:hover {
    color: var(--theme-pink);
  }
}
@media (hover: none) and (pointer: coarse) {
  .breadcrumb ol li a > span.is-active {
    color: var(--theme-pink);
  }
}
.breadcrumb ol li span[aria-current=page] {
  color: var(--theme-deep-green);
}

mark {
  position: relative;
}
mark::after {
  position: absolute;
  content: "";
  z-index: -1;
  width: 100%;
  height: 0.1em;
  border-radius: 0.1em;
  left: 0;
  bottom: 0;
  background-color: var(--theme-green);
  display: inline-block;
}

/*********************************************

  テンプレートスタイル

*********************************************/
.wave-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.wave-bg svg {
  position: absolute;
  width: 100%;
  height: 100%;
}

.sc-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.sc-price .wrapper {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.sc-price .wrapper h2 {
  text-align: center;
}
.sc-price .wrapper h2 span {
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: 0.25em;
  font-weight: 500;
}
.sc-price .wrapper h2 strong {
  font-size: 48px;
  line-height: 1.3;
  letter-spacing: 0.25em;
  font-weight: 500;
  color: var(--theme-green);
}
@media (max-width: 1032px) {
  .sc-price .wrapper h2 span {
    font-size: 28px;
    line-height: 1.35;
    letter-spacing: 0.25em;
    font-weight: 500;
  }
  .sc-price .wrapper h2 strong {
    font-size: 40px;
    line-height: 1.3;
    letter-spacing: 0.25em;
    font-weight: 500;
  }
}
@media (max-width: 780px) {
  .sc-price .wrapper h2 span {
    letter-spacing: 0.2em;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 500;
  }
  .sc-price .wrapper h2 strong {
    font-size: 32px;
    line-height: 1.3;
    letter-spacing: 0.25em;
    font-weight: 500;
  }
}
@media (max-width: 550px) {
  .sc-price .wrapper h2 span {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.2em;
    font-weight: 500;
  }
  .sc-price .wrapper h2 strong {
    font-size: 28px;
    line-height: 1.35;
    letter-spacing: 0.25em;
    font-weight: 500;
  }
}
.sc-price .wrapper .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}
.sc-price .wrapper .container h3 {
  font-size: 40px;
  line-height: 1.3;
  letter-spacing: 0.25em;
  font-weight: 500;
  padding: 56px;
  border-right: 1px solid var(--theme-gray);
}
.sc-price .wrapper .container .price-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sc-price .wrapper .container .price-container strong {
  letter-spacing: 0.2em;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 500;
  width: -moz-max-content;
  width: max-content;
}
.sc-price .wrapper .container .price-container .price {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  padding-left: 8px;
}
.sc-price .wrapper .container .price-container .price span {
  color: var(--theme-green);
}
.sc-price .wrapper .container .price-container .price span:nth-child(1) {
  font-size: 64px;
  line-height: 1.2;
  letter-spacing: 0.25em;
  font-weight: 500;
}
.sc-price .wrapper .container .price-container .price span:nth-child(2) {
  font-size: 40px;
  line-height: 1.3;
  letter-spacing: 0.25em;
  font-weight: 500;
}
.sc-price .wrapper .container .price-container .price span:nth-child(3) {
  letter-spacing: 0.2em;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 500;
}
.sc-price .wrapper .btn-area {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding-top: 24px;
}
.sc-price .wrapper .btn-area a.icon-btn {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 60px;
  width: max-content;
  min-width: 220px;
  padding: 12px 24px;
  background-color: var(--theme-green);
  transition: 0.4s;
  padding: 8px 24px;
  border-radius: 0;
  height: auto;
}
@media (hover: hover) and (pointer: fine) {
  .sc-price .wrapper .btn-area a.icon-btn:hover {
    background-color: var(--theme-deep-green);
  }
}
@media (hover: none) and (pointer: coarse) {
  .sc-price .wrapper .btn-area a.icon-btn.is-active {
    background-color: var(--theme-deep-green);
  }
}
.sc-price .wrapper .btn-area a.icon-btn svg {
  width: 24px;
  height: 24px;
  color: var(--theme-white);
}
.sc-price .wrapper .btn-area a.icon-btn span {
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
  width: -moz-max-content;
  width: max-content;
  color: var(--theme-white);
}
@media (max-width: 550px) {
  .sc-price .wrapper .btn-area a.icon-btn svg {
    width: 20px;
    height: 20px;
  }
  .sc-price .wrapper .btn-area a.icon-btn span {
    font-size: 13px;
    font-weight: 500;
  }
}
@media (max-width: 1032px) {
  .sc-price .wrapper > .container {
    gap: 40px;
  }
  .sc-price .wrapper > .container h3 {
    font-size: 32px;
    line-height: 1.3;
    letter-spacing: 0.25em;
    font-weight: 500;
    padding: 56px 20px;
  }
  .sc-price .wrapper > .container .price-container > .price > span:nth-child(1) {
    font-size: 56px;
    line-height: 1.2;
    letter-spacing: 0.25em;
    font-weight: 500;
  }
}
@media (max-width: 780px) {
  .sc-price .wrapper > .container {
    flex-direction: column;
    gap: 24px;
  }
  .sc-price .wrapper > .container h3 {
    text-align: center;
    padding: 0;
    border-right: none;
  }
  .sc-price .wrapper > .container .price-container strong {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.2em;
    font-weight: 500;
  }
}
@media (max-width: 550px) {
  .sc-price .wrapper > .container .price-container {
    align-items: center;
  }
  .sc-price .wrapper > .container .price-container strong {
    font-size: 15px;
    line-height: 1.75;
    font-weight: 500;
  }
  .sc-price .wrapper > .container .price-container .price span:nth-child(1) {
    letter-spacing: 0.15em;
    font-size: 40px;
    line-height: 1.3;
    letter-spacing: 0.25em;
    font-weight: 500;
  }
  .sc-price .wrapper > .container .price-container .price span:nth-child(2) {
    letter-spacing: 0.2em;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 500;
    letter-spacing: 0em;
  }
  .sc-price .wrapper > .container .price-container .price span:nth-child(3) {
    font-size: 15px;
    line-height: 1.75;
    font-weight: 500;
    letter-spacing: 0.1em;
  }
}

.headline-wrapper {
  background-size: 100% 100%;
  background-image: url("./../images/design/heaader-bg.png");
}
@supports (background-image: url("./../images/design/heaader-bg.webp")) {
  .headline-wrapper {
    background-size: 100% 100%;
    background-image: url("./../images/design/heaader-bg.webp");
  }
}
.headline-wrapper .page-header {
  width: 100%;
  padding: 112px 0 32px;
}
.headline-wrapper .page-header .container {
  width: min(1400px, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  min-height: 200px;
}
.headline-wrapper .page-header .container h1 {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 32px;
  gap: 20px;
  width: min(100%, 440px);
}
.headline-wrapper .page-header .container h1 .icon {
  color: var(--theme-deep-green);
  display: grid;
  place-items: center;
}
.headline-wrapper .page-header .container h1 .icon svg {
  vertical-align: top;
  width: 34px;
  height: 32px;
}
.headline-wrapper .page-header .container h1 .main {
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: 0.25em;
  font-weight: 500;
  position: relative;
}
.headline-wrapper .page-header .container h1 .main .bg-icon {
  display: none;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
  color: rgba(var(--theme-green-rgb), 0.1);
}
.headline-wrapper .page-header .container h1 .main .bg-icon svg {
  vertical-align: top;
  width: 64px;
  height: 64px;
}
.headline-wrapper .page-header .container p {
  border-left: 1px solid var(--theme-gray);
  width: 300px;
  flex-grow: 1;
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
  padding: 32px;
}
@media (max-width: 1032px) {
  .headline-wrapper .page-header .container {
    flex-direction: column;
    align-items: flex-start;
    min-height: 160px;
    gap: 16px;
  }
  .headline-wrapper .page-header .container h1 {
    padding: 32px 0 0 0;
    gap: 24px;
  }
  .headline-wrapper .page-header .container h1 .icon {
    display: none;
  }
  .headline-wrapper .page-header .container h1 .main {
    z-index: 1;
    padding-right: 60px;
    word-break: normal;
  }
  .headline-wrapper .page-header .container h1 .main .bg-icon {
    display: grid;
  }
  .headline-wrapper .page-header .container p {
    padding: 0;
    width: 100%;
    border-left: none;
  }
}
@media (max-width: 780px) {
  .headline-wrapper .page-header .container {
    flex-direction: column;
    justify-content: center;
  }
  .headline-wrapper .page-header .container h1 {
    gap: 16px;
    padding: 0;
  }
  .headline-wrapper .page-header .container h1 .main {
    font-size: 28px;
    line-height: 1.35;
    letter-spacing: 0.25em;
    font-weight: 500;
  }
}
@media (max-width: 550px) {
  .headline-wrapper .page-header {
    padding: 112px 0 32px;
  }
  .headline-wrapper .page-header .container {
    min-height: 120px;
  }
  .headline-wrapper .page-header .container p {
    font-size: 13px;
    font-weight: 500;
  }
}

.footer-btn-area {
  width: min(1000px, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.footer-btn-area .fukidashi {
  padding: 32px 40px;
  background-color: var(--theme-white-green);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
.footer-btn-area .fukidashi h2 {
  text-align: center;
  border-bottom: 1px solid var(--theme-green);
}
.footer-btn-area .fukidashi h2 span {
  color: var(--theme-deep-green);
}
.footer-btn-area .fukidashi h2 span:nth-child(1) {
  letter-spacing: 0.2em;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 500;
}
.footer-btn-area .fukidashi h2 span:nth-child(2) {
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: 0.25em;
  font-weight: 500;
}
.footer-btn-area .fukidashi p {
  text-align: center;
}
.footer-btn-area .fukidashi::after {
  position: absolute;
  display: inline-block;
  content: "";
  width: 28px;
  height: 24px;
  background-color: var(--theme-white-green);
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0);
}
.footer-btn-area .btn-area {
  display: flex;
  flex-direction: row;
  gap: 40px;
}
.footer-btn-area .btn-area .line-btn {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 60px;
  width: max-content;
  min-width: 220px;
  padding: 12px 24px;
  background-color: var(--theme-green);
  transition: 0.4s;
  width: 320px;
}
@media (hover: hover) and (pointer: fine) {
  .footer-btn-area .btn-area .line-btn:hover {
    background-color: var(--theme-deep-green);
  }
}
@media (hover: none) and (pointer: coarse) {
  .footer-btn-area .btn-area .line-btn.is-active {
    background-color: var(--theme-deep-green);
  }
}
.footer-btn-area .btn-area .line-btn svg {
  width: 24px;
  height: 24px;
  color: var(--theme-white);
}
.footer-btn-area .btn-area .line-btn span {
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
  width: -moz-max-content;
  width: max-content;
  color: var(--theme-white);
}
@media (max-width: 550px) {
  .footer-btn-area .btn-area .line-btn svg {
    width: 20px;
    height: 20px;
  }
  .footer-btn-area .btn-area .line-btn span {
    font-size: 13px;
    font-weight: 500;
  }
}
.footer-btn-area .btn-area .contact-btn {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 60px;
  width: max-content;
  min-width: 220px;
  padding: 12px 24px;
  background-color: var(--theme-red);
  transition: 0.4s;
  width: 320px;
}
@media (hover: hover) and (pointer: fine) {
  .footer-btn-area .btn-area .contact-btn:hover {
    background-color: var(--theme-deep-red);
  }
}
@media (hover: none) and (pointer: coarse) {
  .footer-btn-area .btn-area .contact-btn.is-active {
    background-color: var(--theme-deep-red);
  }
}
.footer-btn-area .btn-area .contact-btn svg {
  width: 24px;
  height: 24px;
  color: var(--theme-white);
}
.footer-btn-area .btn-area .contact-btn span {
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
  width: -moz-max-content;
  width: max-content;
  color: var(--theme-white);
}
@media (max-width: 550px) {
  .footer-btn-area .btn-area .contact-btn svg {
    width: 20px;
    height: 20px;
  }
  .footer-btn-area .btn-area .contact-btn span {
    font-size: 13px;
    font-weight: 500;
  }
}
@media (max-width: 780px) {
  .footer-btn-area .btn-area {
    gap: 24px;
  }
  .footer-btn-area .btn-area .line-btn, .footer-btn-area .btn-area .contact-btn {
    width: 230px;
  }
}
@media (max-width: 550px) {
  .footer-btn-area {
    grid-template-columns: 1fr;
  }
  .footer-btn-area .fukidashi {
    padding: 24px;
  }
  .footer-btn-area .btn-area {
    width: min(100%, 330px);
    flex-direction: column;
    gap: 12px;
  }
  .footer-btn-area .btn-area .line-btn, .footer-btn-area .btn-area .contact-btn {
    width: 100%;
    padding: 12px;
  }
}

header {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100px;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: transparent;
  padding: 12px 24px;
}
header .logo {
  position: relative;
  z-index: 1;
}
header .logo svg {
  width: 160px;
  vertical-align: top;
}
header nav {
  position: relative;
  z-index: 0;
}
header nav ul.main {
  display: flex;
  flex-direction: row;
  gap: 40px 24px;
}
header nav ul.main li {
  display: grid;
  place-items: center;
  position: relative;
  width: 100%;
}
header nav ul.main li a {
  width: -moz-max-content;
  width: max-content;
  display: grid;
  place-items: center;
  color: var(--theme-black);
  position: relative;
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
}
header nav ul.main li a[aria-current=page] {
  color: var(--theme-green);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
}
header nav ul.main li a[aria-current=page]::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  width: 40px;
  height: 2px;
  border-radius: 1px;
  background-color: var(--theme-green);
}
@media (max-width: 1032px) {
  header {
    height: 80px;
  }
  header .logo svg {
    width: 140px;
  }
  header nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    overflow: hidden;
    height: 0;
    transition: 0.4s;
  }
  header nav ul.main {
    gap: 0;
    flex-direction: column;
    justify-content: center;
  }
  header nav ul.main li a {
    width: 100%;
    height: 50px;
    display: grid;
    place-items: center;
    color: var(--theme-green);
    background-color: var(--theme-white);
    border-bottom: 1px solid var(--theme-green);
    font-size: 15px;
    line-height: 1.75;
  }
  header nav ul.main li a[aria-current=page] {
    font-size: 15px;
    line-height: 1.75;
    font-weight: 500;
  }
  header nav ul.main li a[aria-current=page]::after {
    display: none;
  }
  header nav ul.main li:first-child > a {
    border-top: 1px solid var(--theme-green);
  }
  header.active nav {
    height: 250px;
  }
}
@media (max-width: 780px) {
  header {
    padding: 12px 24px;
    height: 80px;
  }
}

.hamburger-menu {
  display: none;
  width: 32px;
  aspect-ratio: 1/1;
  z-index: 999;
  cursor: pointer;
  position: relative;
}
@media (max-width: 1032px) {
  .hamburger-menu {
    display: inline-block;
  }
}
.hamburger-menu span {
  display: inline-block;
  position: absolute;
  height: 2px;
  background-color: var(--theme-deep-green);
  transition: 0.4s;
}
.hamburger-menu span:nth-child(1) {
  transition-delay: 0.4s;
  width: 100%;
  top: 5%;
  right: 0;
}
.hamburger-menu span:nth-child(2) {
  transition-delay: 0.6s;
  width: 100%;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
.hamburger-menu span:nth-child(3) {
  transition-delay: 0.8s;
  width: 100%;
  bottom: 5%;
  right: 0;
}
.hamburger-menu span:nth-child(4) {
  transition-delay: 0s;
  width: 0;
  top: 0;
  left: 0;
  transform-origin: left top;
  transform: rotate(45deg);
}
.hamburger-menu span:nth-child(5) {
  transition-delay: 0.2s;
  width: 0;
  bottom: 0;
  left: 0;
  transform-origin: left bottom;
  transform: rotate(-45deg);
}
.hamburger-menu.active > span:nth-child(1) {
  transition-delay: 0s;
  width: 0%;
}
.hamburger-menu.active > span:nth-child(2) {
  transition-delay: 0.2s;
  width: 0%;
}
.hamburger-menu.active > span:nth-child(3) {
  transition-delay: 0.4s;
  width: 0%;
}
.hamburger-menu.active > span:nth-child(4) {
  transition-delay: 0.6s;
  width: 141%;
}
.hamburger-menu.active > span:nth-child(5) {
  transition-delay: 0.8s;
  width: 141%;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding: 40px 4% 6px;
  background-color: var(--theme-green);
}
footer nav {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
}
footer nav .logo {
  position: relative;
  background-color: var(--theme-white);
  padding: 12px 24px;
  z-index: 1;
}
footer nav .logo svg {
  width: 180px;
  vertical-align: top;
}
footer nav .nav-box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-evenly;
  flex-grow: 1;
  gap: 8px 40px;
}
footer nav .nav-box ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
footer nav .nav-box ul li > a {
  display: inline-block;
  color: var(--theme-white);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
  position: relative;
}
footer nav .nav-box ul li > a[aria-current=page]::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  width: 90%;
  height: 2px;
  border-radius: 1px;
  background-color: var(--theme-white);
}
footer nav .nav-box ul li > a.contact {
  background-color: var(--theme-red);
  border: 1px solid var(--theme-red);
  padding: 7px 23px;
  border-radius: 40px;
  transition: 0.4s;
}
@media (hover: hover) and (pointer: fine) {
  footer nav .nav-box ul li > a.contact:hover {
    border: 1px solid var(--theme-deep-red);
    background-color: var(--theme-deep-red);
  }
}
@media (hover: none) and (pointer: coarse) {
  footer nav .nav-box ul li > a.contact.is-active {
    border: 1px solid var(--theme-deep-red);
    background-color: var(--theme-deep-red);
  }
}
footer nav .nav-box ul li > a.contact[aria-current=page] {
  border: 1px solid var(--theme-white);
}
footer nav .nav-box ul li > a.contact[aria-current=page]::after {
  display: none;
}
@media (max-width: 550px) {
  footer nav .nav-box.link > ul {
    gap: 4px;
    flex-direction: column;
  }
  footer nav .nav-box.link > ul li {
    text-align: center;
  }
}
footer p {
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
  color: var(--theme-white);
  text-align: center;
}
@media (max-width: 1032px) {
  footer nav {
    align-items: flex-start;
  }
  footer nav .nav-box {
    align-items: flex-start;
    flex-direction: row-reverse;
  }
  footer nav .nav-box .main, footer nav .nav-box .sub {
    gap: 8px;
    flex-direction: column;
    align-items: flex-start;
  }
  footer nav .nav-box .main li > a, footer nav .nav-box .sub li > a {
    font-size: 13px;
    font-weight: 500;
  }
  footer nav .nav-box .main > li:not(:last-child) {
    padding-left: 24px;
  }
  footer nav .nav-box .main > li a.contact {
    border-radius: 0;
  }
}
@media (max-width: 780px) {
  footer nav {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  footer nav .nav-box {
    flex-direction: column;
    align-items: center;
    gap: 24px 40px;
  }
  footer nav .nav-box .main, footer nav .nav-box .sub {
    flex-direction: row;
    align-items: center;
    gap: 8px clamp(12px, 12px + 28 * (100vw - 550px) / 1050, 40px);
  }
  footer nav .nav-box .main a, footer nav .nav-box .sub a {
    font-size: 13px;
    font-weight: 500;
  }
  footer nav .nav-box .main > li {
    padding-left: 0 !important;
  }
  footer nav .nav-box .main > li a.contact {
    padding: 0 !important;
    border-radius: 0;
    background-color: transparent;
    border: none;
  }
  footer nav .nav-box .main > li a.contact[aria-current=page] {
    border: none;
  }
  footer nav .nav-box .main > li a.contact[aria-current=page]::after {
    display: inline-block;
    border: 1px solid var(--theme-white);
  }
}
@media (max-width: 780px) and (hover: hover) and (pointer: fine) {
  footer nav .nav-box .main > li a.contact:hover {
    border: none;
    background-color: transparent;
  }
}
@media (max-width: 780px) and (hover: none) and (pointer: coarse) {
  footer nav .nav-box .main > li a.contact.is-active {
    border: none;
    background-color: transparent;
  }
}
@media (max-width: 780px) {
  footer p {
    font-size: 13px;
    font-weight: 500;
  }
}
@media (max-width: 550px) {
  footer nav .nav-box {
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    gap: 24px;
    justify-content: space-around;
  }
  footer nav .nav-box .main, footer nav .nav-box .sub {
    flex-direction: column;
    align-items: flex-start;
  }
}

.error404 > main {
  position: relative;
  overflow: hidden;
}
.error404 > main .not-found-sc1 {
  width: min(1400px, 92%);
  margin: 0 auto;
  padding: clamp(150px, 150px + 150 * (100vw - 550px) / 1050, 300px) 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 24px 80px;
}
.error404 > main .not-found-sc1 svg {
  width: 240px;
  height: auto;
  vertical-align: top;
}
.error404 > main .not-found-sc1 div {
  width: min(420px, 100%);
  font-size: 56px;
  line-height: 1.2;
  letter-spacing: 0.25em;
  font-weight: 500;
  text-align: right;
}
.error404 > main .not-found-sc1 div mark {
  font-size: 120px;
}

body.home > main .first-view {
  position: relative;
  width: 100%;
  height: auto;
  max-height: 100vh;
  padding-bottom: 100px;
}
body.home > main .first-view * {
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: 500;
  font-style: normal;
}
body.home > main .first-view .first-view-wrapper {
  position: relative;
  width: min(2400px, 90%);
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  place-items: center;
  gap: 24px;
}
body.home > main .first-view .first-view-wrapper .image-area {
  margin: 0 auto auto 0;
  width: min(55vw, 1600px);
  height: 55vw;
  max-height: calc(100vh - 120px);
  position: relative;
}
body.home > main .first-view .first-view-wrapper .image-area picture {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  animation: fade 14s infinite;
  top: 0;
  left: 0;
}
body.home > main .first-view .first-view-wrapper .image-area picture.fv-img-2 {
  animation-delay: -7s;
}
body.home > main .first-view .first-view-wrapper .image-area picture img {
  width: 100%;
  height: 100%;
  border-radius: 0 0 clamp(24px, 24px + 36 * (100vw - 550px) / 1050, 60px) clamp(24px, 24px + 36 * (100vw - 550px) / 1050, 60px);
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: top;
}
body.home > main .first-view .first-view-wrapper .image-area picture.fv-img-2 img {
  -o-object-position: 80% 50%;
     object-position: 80% 50%;
}
body.home > main .first-view .first-view-wrapper .image-area .serif-1, body.home > main .first-view .first-view-wrapper .image-area .serif-2 {
  color: var(--theme-white);
  font-size: clamp(15px, 1.15vw, 24px);
  animation: fade 14s infinite;
}
body.home > main .first-view .first-view-wrapper .image-area .serif-1 {
  position: absolute;
  top: 65%;
  left: 15%;
}
body.home > main .first-view .first-view-wrapper .image-area .serif-2 {
  position: absolute;
  top: 55%;
  right: clamp(16px, 5vw, 200px);
  animation-delay: -7s;
}
@keyframes fade {
  0%, 30% {
    opacity: 1;
  }
  50%, 80% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body.home > main .first-view .first-view-wrapper .contents {
  display: contents;
}
body.home > main .first-view .first-view-wrapper .contents .message {
  position: absolute;
  bottom: 24px;
  left: min(55vw + 40px, 1640px);
  font-size: clamp(18px, 1.84vw, 40px);
}
body.home > main .first-view .first-view-wrapper h1 {
  position: absolute;
  top: 100px;
  right: 0;
}
body.home > main .first-view .first-view-wrapper h1 .banner-box {
  display: inline-block;
  width: min(20vw, 300px);
}
body.home > main .first-view .first-view-wrapper h1 .banner-box img {
  width: 100%;
  height: auto;
  vertical-align: top;
}
body.home > main .first-view .first-view-wrapper h1 .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}
@media (max-width: 1032px) {
  body.home > main .first-view {
    max-height: none;
    padding-bottom: 0;
  }
  body.home > main .first-view .first-view-wrapper {
    width: 95%;
    margin: 0 auto 0 0;
    padding-right: 5%;
  }
  body.home > main .first-view .first-view-wrapper .image-area {
    min-height: auto;
    height: auto;
    width: 100%;
    aspect-ratio: 1/1;
    margin: 0;
  }
  body.home > main .first-view .first-view-wrapper .image-area picture > img {
    border-radius: 0 0 20px 0;
  }
  body.home > main .first-view .first-view-wrapper .image-area .serif-1, body.home > main .first-view .first-view-wrapper .image-area .serif-2 {
    font-size: clamp(14px, 3vw, 18px);
  }
  body.home > main .first-view .first-view-wrapper .image-area .serif-1 {
    left: 6vw;
  }
  body.home > main .first-view .first-view-wrapper .image-area .serif-2 {
    right: 3vw;
  }
  body.home > main .first-view .first-view-wrapper .contents {
    width: 100%;
    display: inline-block;
    position: relative;
    padding-left: 10%;
  }
  body.home > main .first-view .first-view-wrapper .contents .message {
    position: relative;
    bottom: auto;
    left: auto;
    font-size: clamp(15px, 3vw, 36px);
    color: var(--theme-green);
  }
  body.home > main .first-view .first-view-wrapper h1 {
    top: 80px;
  }
  body.home > main .first-view .first-view-wrapper h1 .banner-box {
    width: min(35vw, 260px);
  }
}
@media (max-width: 550px) {
  body.home > main .first-view .first-view-wrapper .image-area {
    aspect-ratio: 4/5;
  }
}
@media (max-width: 550px) {
  body.home > main .first-view .first-view-wrapper .image-area picture > img {
    border-radius: 0 0 16px 0;
  }
  body.home > main .first-view .first-view-wrapper .image-area .serif-2 {
    bottom: 20%;
  }
}
body.home > main .sc-about-exit {
  width: min(1400px, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
body.home > main .sc-about-exit h2 {
  text-align: center;
}
body.home > main .sc-about-exit h2 span {
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: 0.25em;
  font-weight: 500;
}
body.home > main .sc-about-exit h2 strong {
  font-size: 48px;
  line-height: 1.3;
  letter-spacing: 0.25em;
  font-weight: 500;
  color: var(--theme-green);
}
@media (max-width: 1032px) {
  body.home > main .sc-about-exit h2 span {
    font-size: 28px;
    line-height: 1.35;
    letter-spacing: 0.25em;
    font-weight: 500;
  }
  body.home > main .sc-about-exit h2 strong {
    font-size: 40px;
    line-height: 1.3;
    letter-spacing: 0.25em;
    font-weight: 500;
  }
}
@media (max-width: 780px) {
  body.home > main .sc-about-exit h2 span {
    letter-spacing: 0.2em;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 500;
  }
  body.home > main .sc-about-exit h2 strong {
    font-size: 32px;
    line-height: 1.3;
    letter-spacing: 0.25em;
    font-weight: 500;
  }
}
@media (max-width: 550px) {
  body.home > main .sc-about-exit h2 span {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.2em;
    font-weight: 500;
  }
  body.home > main .sc-about-exit h2 strong {
    font-size: 28px;
    line-height: 1.35;
    letter-spacing: 0.25em;
    font-weight: 500;
  }
}
body.home > main .sc-about-exit .intro {
  text-align: center;
}
body.home > main .sc-about-exit .intro strong {
  color: var(--theme-green);
  position: relative;
}
body.home > main .sc-about-exit .intro strong::after {
  position: absolute;
  display: inline-block;
  content: "";
  width: 100%;
  height: 6px;
  background-color: var(--theme-yellow);
  bottom: 0;
  left: 0;
  z-index: 0;
}
body.home > main .sc-about-exit .intro strong span {
  position: relative;
  z-index: 1;
}
body.home > main .sc-about-exit .intro strong span.large-text {
  font-size: 40px;
  line-height: 1.3;
  letter-spacing: 0.25em;
  font-weight: 700;
  letter-spacing: 0.1em;
}
body.home > main .sc-about-exit .intro strong span.small-text {
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.2em;
  font-weight: 500;
  letter-spacing: 0.1em;
}
body.home > main .sc-about-exit .fukidashi {
  width: min(1000px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  padding: 32px 40px;
  margin-bottom: 12px;
  gap: 32px;
  background-color: var(--theme-white);
  filter: drop-shadow(1px 1px 5px rgba(0, 0, 0, 0.1));
  position: relative;
  border-radius: 4px;
}
body.home > main .sc-about-exit .fukidashi::after {
  position: absolute;
  display: inline-block;
  content: "";
  width: 40px;
  height: 48px;
  background-color: var(--theme-white);
  -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
          clip-path: polygon(0 0, 100% 0, 0 100%);
  top: 99%;
  left: 20%;
}
body.home > main .sc-about-exit .fukidashi h3 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
body.home > main .sc-about-exit .fukidashi h3 span {
  letter-spacing: 0.2em;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 500;
  border-bottom: 1px dashed var(--theme-green);
  color: var(--theme-green);
}
body.home > main .sc-about-exit .fukidashi .grid-box {
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 40px;
}
body.home > main .sc-about-exit .fukidashi .grid-box .worry {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px 16px;
}
body.home > main .sc-about-exit .fukidashi .grid-box .worry .svg-box {
  width: 24px;
  height: 24px;
  display: grid;
  color: var(--theme-green);
}
body.home > main .sc-about-exit .fukidashi .grid-box .worry .svg-box svg {
  width: 100%;
  height: 100%;
  vertical-align: top;
}
body.home > main .sc-about-exit .fukidashi .grid-box .worry span {
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
  color: var(--theme-green);
}
body.home > main .sc-about-exit .message {
  width: min(1000px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 2fr 3fr;
  gap: 24px 40px;
}
body.home > main .sc-about-exit .message h3 {
  grid-area: 1/1/2/2;
  width: 100%;
}
body.home > main .sc-about-exit .message h3 span {
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: 0.25em;
  font-weight: 500;
  line-height: 1.7;
}
body.home > main .sc-about-exit .message h3 strong {
  color: var(--theme-green);
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: 0.25em;
  font-weight: 500;
}
body.home > main .sc-about-exit .message p {
  width: 100%;
  grid-area: 2/1/3/2;
}
body.home > main .sc-about-exit .message p strong {
  color: var(--theme-green);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
}
body.home > main .sc-about-exit .message picture {
  grid-area: 1/2/3/3;
  display: inline-block;
  width: 100%;
  height: auto;
}
body.home > main .sc-about-exit .message picture img {
  width: 100%;
  height: 100%;
  vertical-align: top;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1032px) {
  body.home > main .sc-about-exit .fukidashi {
    flex-direction: column;
  }
  body.home > main .sc-about-exit .fukidashi h3 {
    border-bottom: 1px dashed var(--theme-green);
    flex-direction: row;
    gap: 0;
  }
  body.home > main .sc-about-exit .fukidashi h3 span {
    font-size: 20px;
    border-bottom: none;
  }
  body.home > main .sc-about-exit .fukidashi .grid-box {
    gap: 8px 32px;
  }
  body.home > main .sc-about-exit .fukidashi .grid-box .worry {
    gap: 12px;
  }
  body.home > main .sc-about-exit .message h3 span {
    line-height: 1.5;
  }
}
@media (max-width: 780px) {
  body.home > main .sc-about-exit .fukidashi {
    justify-content: space-evenly;
  }
  body.home > main .sc-about-exit .fukidashi .grid-box .worry .svg-box {
    width: 20px;
    height: 20px;
  }
  body.home > main .sc-about-exit .fukidashi .grid-box .worry span {
    font-size: 15px;
  }
}
@media (max-width: 680px) {
  body.home > main .sc-about-exit .message {
    display: flex;
    flex-direction: column;
  }
  body.home > main .sc-about-exit .message h3 span {
    font-size: 28px;
    line-height: 1.35;
    letter-spacing: 0.25em;
    font-weight: 500;
  }
  body.home > main .sc-about-exit .message h3 strong {
    color: var(--theme-green);
    font-size: 28px;
    line-height: 1.35;
    letter-spacing: 0.25em;
    font-weight: 500;
  }
  body.home > main .sc-about-exit .message picture {
    display: none;
  }
}
@media (max-width: 550px) {
  body.home > main .sc-about-exit .fukidashi {
    padding: 20px clamp(20px, 7vw, 40px);
    gap: 20px;
  }
  body.home > main .sc-about-exit .fukidashi h3 {
    text-align: center;
    padding: 0 20px;
  }
  body.home > main .sc-about-exit .fukidashi h3 .content {
    display: contents;
  }
  body.home > main .sc-about-exit .fukidashi .grid-box {
    grid-template-columns: repeat(1, 1fr);
  }
  body.home > main .sc-about-exit .fukidashi .grid-box .worry:nth-child(2), body.home > main .sc-about-exit .fukidashi .grid-box .worry:nth-child(5) {
    padding-left: clamp(24px, 24px + 16 * (100vw - 550px) / 1050, 40px);
  }
  body.home > main .sc-about-exit .fukidashi .grid-box .worry:nth-child(3), body.home > main .sc-about-exit .fukidashi .grid-box .worry:nth-child(6) {
    padding-left: clamp(48px, 48px + 32 * (100vw - 550px) / 1050, 80px);
  }
}
body.home > main .sc-review {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: min(1400px, 92%);
  margin: 0 auto;
}
body.home > main .sc-review h2 {
  text-align: center;
}
body.home > main .sc-review h2 span {
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: 0.25em;
  font-weight: 500;
}
body.home > main .sc-review h2 strong {
  font-size: 48px;
  line-height: 1.3;
  letter-spacing: 0.25em;
  font-weight: 500;
  color: var(--theme-green);
}
@media (max-width: 1032px) {
  body.home > main .sc-review h2 span {
    font-size: 28px;
    line-height: 1.35;
    letter-spacing: 0.25em;
    font-weight: 500;
  }
  body.home > main .sc-review h2 strong {
    font-size: 40px;
    line-height: 1.3;
    letter-spacing: 0.25em;
    font-weight: 500;
  }
}
@media (max-width: 780px) {
  body.home > main .sc-review h2 span {
    letter-spacing: 0.2em;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 500;
  }
  body.home > main .sc-review h2 strong {
    font-size: 32px;
    line-height: 1.3;
    letter-spacing: 0.25em;
    font-weight: 500;
  }
}
@media (max-width: 550px) {
  body.home > main .sc-review h2 span {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.2em;
    font-weight: 500;
  }
  body.home > main .sc-review h2 strong {
    font-size: 28px;
    line-height: 1.35;
    letter-spacing: 0.25em;
    font-weight: 500;
  }
}
body.home > main .sc-review p {
  text-align: center;
  font-size: 15px;
  line-height: 1.75;
}
body.home > main .sc-review p.latest-update {
  width: 100%;
  text-align: right;
}
body.home > main .sc-review .review-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 24px;
}
body.home > main .sc-review .review-container span {
  letter-spacing: 0.2em;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 500;
}
body.home > main .sc-review .review-container .box {
  display: flex;
  flex-direction: column;
  background-color: var(--theme-white);
  border: 1px solid var(--theme-green);
  padding: 24px;
  gap: 12px;
  flex-grow: 1;
  border-radius: 4px;
}
body.home > main .sc-review .review-container .box .header {
  font-size: 15px;
  line-height: 1.75;
  text-align: center;
}
body.home > main .sc-review .review-container .box .rating {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}
body.home > main .sc-review .review-container .box .rating span {
  font-size: 13px;
  text-box-trim: trim-both;
}
body.home > main .sc-review .review-container .box .rating .star {
  display: flex;
  flex-direction: row;
  gap: 2px;
}
body.home > main .sc-review .review-container .box .comment {
  font-size: 13px;
  text-align: left;
  flex-grow: 1;
}
body.home > main .sc-review .review-container .box .review-date {
  font-size: 13px;
  text-align: right;
}
@media (max-width: 1032px) {
  body.home > main .sc-review .review-container {
    display: flex;
    flex-direction: column;
  }
}
body.home > main .sc-strengths {
  width: min(1000px, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
body.home > main .sc-strengths h2 {
  text-align: center;
}
body.home > main .sc-strengths h2 span {
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: 0.25em;
  font-weight: 500;
}
body.home > main .sc-strengths h2 strong {
  font-size: 48px;
  line-height: 1.3;
  letter-spacing: 0.25em;
  font-weight: 500;
  color: var(--theme-green);
}
@media (max-width: 1032px) {
  body.home > main .sc-strengths h2 span {
    font-size: 28px;
    line-height: 1.35;
    letter-spacing: 0.25em;
    font-weight: 500;
  }
  body.home > main .sc-strengths h2 strong {
    font-size: 40px;
    line-height: 1.3;
    letter-spacing: 0.25em;
    font-weight: 500;
  }
}
@media (max-width: 780px) {
  body.home > main .sc-strengths h2 span {
    letter-spacing: 0.2em;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 500;
  }
  body.home > main .sc-strengths h2 strong {
    font-size: 32px;
    line-height: 1.3;
    letter-spacing: 0.25em;
    font-weight: 500;
  }
}
@media (max-width: 550px) {
  body.home > main .sc-strengths h2 span {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.2em;
    font-weight: 500;
  }
  body.home > main .sc-strengths h2 strong {
    font-size: 28px;
    line-height: 1.35;
    letter-spacing: 0.25em;
    font-weight: 500;
  }
}
body.home > main .sc-strengths .strengths-point {
  display: flex;
  flex-direction: row;
  gap: 40px;
}
body.home > main .sc-strengths .strengths-point .switch {
  display: grid;
  grid-template-columns: 1fr;
  flex-direction: column;
  justify-content: center;
  height: -moz-max-content;
  height: max-content;
  gap: 8px 24px;
  width: 276px;
  min-width: 230px;
  padding-top: 40px;
  border-right: 1px solid var(--theme-gray);
  position: relative;
}
body.home > main .sc-strengths .strengths-point .switch:before {
  content: "Click To Select";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 32px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  color: var(--theme-green);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
}
body.home > main .sc-strengths .strengths-point .switch li > button {
  display: flex;
  flex-direction: row;
  position: relative;
  color: var(--theme-black);
  overflow: hidden;
  padding-bottom: 2px;
}
body.home > main .sc-strengths .strengths-point .switch li > button .svg-box {
  opacity: 0;
  position: absolute;
  display: grid;
  place-items: center;
  transform: translate(0, -50%);
  top: 50%;
  left: 0;
  width: 16px;
  height: 16px;
  color: var(--theme-green);
  transition: 0.3s;
  transition-delay: 0;
}
body.home > main .sc-strengths .strengths-point .switch li > button .svg-box svg {
  width: 100%;
  height: 100%;
}
body.home > main .sc-strengths .strengths-point .switch li > button span {
  transition: 0.3s;
  transition-delay: 0.3s;
  padding-left: 0px;
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
}
body.home > main .sc-strengths .strengths-point .switch li > button::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background: linear-gradient(to right, transparent, var(--theme-light-green));
  animation: animate 2s linear infinite;
}
@keyframes animate {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
body.home > main .sc-strengths .strengths-point .switch li > button.active {
  border-bottom: 1px solid var(--theme-light-green);
  color: var(--theme-deep-green);
}
body.home > main .sc-strengths .strengths-point .switch li > button.active .svg-box {
  transition: 0.3s;
  transition-delay: 0.4s;
  opacity: 1;
}
body.home > main .sc-strengths .strengths-point .switch li > button.active span {
  padding-left: 32px;
  transition: 0.3s;
  transition-delay: 0s;
}
body.home > main .sc-strengths .strengths-point .switch li > button.active::after {
  display: none;
}
body.home > main .sc-strengths .strengths-point .switch li:nth-child(1) > button::after {
  animation-delay: 0s;
}
body.home > main .sc-strengths .strengths-point .switch li:nth-child(2) > button::after {
  animation-delay: 0.3s;
}
body.home > main .sc-strengths .strengths-point .switch li:nth-child(3) > button::after {
  animation-delay: 0.6s;
}
body.home > main .sc-strengths .strengths-point .switch li:nth-child(4) > button::after {
  animation-delay: 0.9s;
}
body.home > main .sc-strengths .strengths-point .switch li:nth-child(5) > button::after {
  animation-delay: 1.2s;
}
body.home > main .sc-strengths .strengths-point .switch li:nth-child(6) > button::after {
  animation-delay: 1.5s;
}
body.home > main .sc-strengths .strengths-point .strengths-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 300px;
  flex-grow: 1;
}
body.home > main .sc-strengths .strengths-point .strengths-container .point-content {
  display: none;
  opacity: 0;
  flex-direction: column;
  gap: 32px;
}
body.home > main .sc-strengths .strengths-point .strengths-container .point-content span {
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.2em;
  font-weight: 500;
}
body.home > main .sc-strengths .strengths-point .strengths-container .point-content h3 {
  font-size: 40px;
  line-height: 1.3;
  letter-spacing: 0.25em;
  font-weight: 500;
  color: var(--theme-green);
}
body.home > main .sc-strengths .strengths-point .strengths-container .point-content p strong {
  color: var(--theme-green);
}
body.home > main .sc-strengths .strengths-point .strengths-container .point-content.active {
  display: flex;
  opacity: 1;
}
@media (max-width: 780px) {
  body.home > main .sc-strengths .strengths-point {
    flex-direction: column;
  }
  body.home > main .sc-strengths .strengths-point .switch {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    border-right: none;
  }
  body.home > main .sc-strengths .strengths-point .strengths-container {
    width: 100%;
  }
  body.home > main .sc-strengths .strengths-point .strengths-container .point-content {
    gap: 16px;
  }
  body.home > main .sc-strengths .strengths-point .strengths-container .point-content h3 {
    font-size: 32px;
    line-height: 1.3;
    letter-spacing: 0.25em;
    font-weight: 500;
  }
}
@media (max-width: 550px) {
  body.home > main .sc-strengths .strengths-point .switch {
    grid-template-columns: 1fr;
    padding-top: 0;
    padding-left: 40px;
  }
  body.home > main .sc-strengths .strengths-point .switch:before {
    content: "Click To Select";
    position: absolute;
    top: 50%;
    left: 0%;
    width: -moz-max-content;
    width: max-content;
    height: 32px;
    justify-content: flex-end;
    transform: rotate(-90deg) translate(-50%, 0);
    transform-origin: left top;
  }
}
body.home > main .sc-youtube {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: min(1400px, 92%);
  margin: 0 auto;
}
body.home > main .sc-youtube h2 {
  text-align: center;
}
body.home > main .sc-youtube h2 span {
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: 0.25em;
  font-weight: 500;
}
body.home > main .sc-youtube h2 strong {
  font-size: 48px;
  line-height: 1.3;
  letter-spacing: 0.25em;
  font-weight: 500;
  color: var(--theme-green);
}
@media (max-width: 1032px) {
  body.home > main .sc-youtube h2 span {
    font-size: 28px;
    line-height: 1.35;
    letter-spacing: 0.25em;
    font-weight: 500;
  }
  body.home > main .sc-youtube h2 strong {
    font-size: 40px;
    line-height: 1.3;
    letter-spacing: 0.25em;
    font-weight: 500;
  }
}
@media (max-width: 780px) {
  body.home > main .sc-youtube h2 span {
    letter-spacing: 0.2em;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 500;
  }
  body.home > main .sc-youtube h2 strong {
    font-size: 32px;
    line-height: 1.3;
    letter-spacing: 0.25em;
    font-weight: 500;
  }
}
@media (max-width: 550px) {
  body.home > main .sc-youtube h2 span {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.2em;
    font-weight: 500;
  }
  body.home > main .sc-youtube h2 strong {
    font-size: 28px;
    line-height: 1.35;
    letter-spacing: 0.25em;
    font-weight: 500;
  }
}
body.home > main .sc-youtube .frame_wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--theme-light-gray);
  border-radius: 4px;
}
body.home > main .sc-youtube .frame_wrap .youtube {
  display: inline-block;
  width: 100%;
  height: 100%;
}
body.home > main .sc-youtube .frame_wrap .youtube img {
  width: 100%;
  height: 100%;
  vertical-align: top;
}
body.home > main .sc-youtube .frame_wrap .arrow {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 60px;
  border-radius: 16px;
  background-color: rgba(0, 157, 114, 0.3);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
  pointer-events: none;
}
body.home > main .sc-youtube .frame_wrap .arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 16px;
  border-color: transparent transparent transparent var(--theme-white);
}
body.home > main .sc-youtube .frame_wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 105%;
  height: auto;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 105%;
}
body.home > main .sc-youtube .frame_wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
body.home > main .sc-youtube .btn-area {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
body.home > main .sc-youtube .btn-area a.icon-btn {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 60px;
  width: max-content;
  min-width: 220px;
  padding: 12px 24px;
  background-color: var(--theme-green);
  transition: 0.4s;
  padding: 8px 24px;
  height: auto;
}
@media (hover: hover) and (pointer: fine) {
  body.home > main .sc-youtube .btn-area a.icon-btn:hover {
    background-color: var(--theme-deep-green);
  }
}
@media (hover: none) and (pointer: coarse) {
  body.home > main .sc-youtube .btn-area a.icon-btn.is-active {
    background-color: var(--theme-deep-green);
  }
}
body.home > main .sc-youtube .btn-area a.icon-btn svg {
  width: 24px;
  height: 24px;
  color: var(--theme-white);
}
body.home > main .sc-youtube .btn-area a.icon-btn span {
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
  width: -moz-max-content;
  width: max-content;
  color: var(--theme-white);
}
@media (max-width: 550px) {
  body.home > main .sc-youtube .btn-area a.icon-btn svg {
    width: 20px;
    height: 20px;
  }
  body.home > main .sc-youtube .btn-area a.icon-btn span {
    font-size: 13px;
    font-weight: 500;
  }
}
body.home > main .sc-front-blog {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: min(1400px, 92%);
  margin: 0 auto;
}
body.home > main .sc-front-blog h2 {
  text-align: center;
}
body.home > main .sc-front-blog h2 span {
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: 0.25em;
  font-weight: 500;
}
body.home > main .sc-front-blog h2 strong {
  font-size: 48px;
  line-height: 1.3;
  letter-spacing: 0.25em;
  font-weight: 500;
  color: var(--theme-green);
}
@media (max-width: 1032px) {
  body.home > main .sc-front-blog h2 span {
    font-size: 28px;
    line-height: 1.35;
    letter-spacing: 0.25em;
    font-weight: 500;
  }
  body.home > main .sc-front-blog h2 strong {
    font-size: 40px;
    line-height: 1.3;
    letter-spacing: 0.25em;
    font-weight: 500;
  }
}
@media (max-width: 780px) {
  body.home > main .sc-front-blog h2 span {
    letter-spacing: 0.2em;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 500;
  }
  body.home > main .sc-front-blog h2 strong {
    font-size: 32px;
    line-height: 1.3;
    letter-spacing: 0.25em;
    font-weight: 500;
  }
}
@media (max-width: 550px) {
  body.home > main .sc-front-blog h2 span {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.2em;
    font-weight: 500;
  }
  body.home > main .sc-front-blog h2 strong {
    font-size: 28px;
    line-height: 1.35;
    letter-spacing: 0.25em;
    font-weight: 500;
  }
}
body.home > main .sc-front-blog .tag-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}
body.home > main .sc-front-blog .tag-list .tag {
  font-size: 13px;
  border: 1px solid var(--theme-light-gray);
  background-color: var(--theme-white-green);
  display: grid;
  place-items: center;
  padding: 6px 8px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--theme-deep-gray);
  transition: 0.4s;
}
@media (hover: hover) and (pointer: fine) {
  body.home > main .sc-front-blog .tag-list .tag:hover {
    background-color: var(--theme-green);
    color: var(--theme-white);
  }
}
@media (hover: none) and (pointer: coarse) {
  body.home > main .sc-front-blog .tag-list .tag.is-active {
    background-color: var(--theme-green);
    color: var(--theme-white);
  }
}
body.home > main .sc-front-blog .article-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 12px;
}
body.home > main .sc-front-blog .article-list .item {
  width: 100%;
  position: relative;
  padding: 24px 0;
  display: flex;
  flex-direction: row;
  gap: 24px;
}
body.home > main .sc-front-blog .article-list .item:not(:last-child) {
  border-bottom: 1px solid var(--theme-gray);
}
body.home > main .sc-front-blog .article-list .item .img-box {
  display: inline-block;
  width: min(45vw, 400px);
  height: auto;
  aspect-ratio: 2/1;
  overflow: hidden;
}
body.home > main .sc-front-blog .article-list .item .img-box .thumbnail {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: top;
}
body.home > main .sc-front-blog .article-list .item .content {
  width: 100px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
body.home > main .sc-front-blog .article-list .item .content h3 {
  flex-grow: 1;
  width: 100%;
  text-align: left;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--theme-black);
  text-decoration: underline;
  text-decoration-color: var(--theme-light-green);
}
body.home > main .sc-front-blog .article-list .item .content p {
  font-size: 13px;
}
body.home > main .sc-front-blog .article-list .item .content .meta {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 8px;
}
body.home > main .sc-front-blog .article-list .item .content .meta time {
  flex-grow: 1;
  font-size: 13px;
  width: 200px;
}
body.home > main .sc-front-blog .article-list .item .content .meta a {
  display: grid;
  place-items: center;
  width: 160px;
  padding: 4px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--theme-green);
  background-color: var(--theme-green);
  color: var(--theme-white);
  transition: 0.4s;
}
@media (hover: hover) and (pointer: fine) {
  body.home > main .sc-front-blog .article-list .item .content .meta a:hover {
    background-color: transparent;
    color: var(--theme-green);
  }
}
@media (hover: none) and (pointer: coarse) {
  body.home > main .sc-front-blog .article-list .item .content .meta a.is-active {
    background-color: transparent;
    color: var(--theme-green);
  }
}
@media (max-width: 780px) {
  body.home > main .sc-front-blog .article-list .item {
    flex-direction: column;
  }
  body.home > main .sc-front-blog .article-list .item .img-box {
    width: 100%;
  }
  body.home > main .sc-front-blog .article-list .item .content {
    width: 100%;
  }
  body.home > main .sc-front-blog .article-list .item .content .meta {
    flex-direction: column;
    align-items: flex-end;
  }
  body.home > main .sc-front-blog .article-list .item .content .meta time {
    width: 100%;
  }
}
body.home > main .sc-introduction {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px clamp(16px, 16px + 80 * (100vw - 550px) / 1050, 96px);
  width: min(1400px, 92%);
  margin: 0 auto;
  position: relative;
}
body.home > main .sc-introduction div {
  width: 300px;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  justify-items: flex-start;
  gap: 32px;
}
body.home > main .sc-introduction div h2 {
  font-size: 40px;
  line-height: 1.3;
  letter-spacing: 0.25em;
  font-weight: 500;
  line-height: 1.7em;
}
body.home > main .sc-introduction div p {
  font-size: 15px;
  line-height: 1.75;
}
body.home > main .sc-introduction div .btn-area {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
body.home > main .sc-introduction div .btn-area a.icon-btn {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 60px;
  width: max-content;
  min-width: 220px;
  padding: 12px 24px;
  background-color: var(--theme-green);
  transition: 0.4s;
  padding: 8px 24px;
  height: auto;
}
@media (hover: hover) and (pointer: fine) {
  body.home > main .sc-introduction div .btn-area a.icon-btn:hover {
    background-color: var(--theme-deep-green);
  }
}
@media (hover: none) and (pointer: coarse) {
  body.home > main .sc-introduction div .btn-area a.icon-btn.is-active {
    background-color: var(--theme-deep-green);
  }
}
body.home > main .sc-introduction div .btn-area a.icon-btn svg {
  width: 24px;
  height: 24px;
  color: var(--theme-white);
}
body.home > main .sc-introduction div .btn-area a.icon-btn span {
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
  width: -moz-max-content;
  width: max-content;
  color: var(--theme-white);
}
@media (max-width: 550px) {
  body.home > main .sc-introduction div .btn-area a.icon-btn svg {
    width: 20px;
    height: 20px;
  }
  body.home > main .sc-introduction div .btn-area a.icon-btn span {
    font-size: 13px;
    font-weight: 500;
  }
}
body.home > main .sc-introduction picture {
  width: 400px;
  aspect-ratio: 3/4;
  position: relative;
}
body.home > main .sc-introduction picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: top;
  position: relative;
  z-index: 2;
  -o-object-position: center top;
     object-position: center top;
}
body.home > main .sc-introduction picture img.back {
  position: absolute;
  top: 30px;
  right: 30px;
  filter: blur(30px);
  opacity: 0.7;
  z-index: 1;
}
@media (max-width: 1032px) {
  body.home > main .sc-introduction div h2 {
    letter-spacing: 0.2em;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 500;
  }
  body.home > main .sc-introduction div p {
    font-size: 13px;
  }
  body.home > main .sc-introduction picture {
    width: 300px;
  }
  body.home > main .sc-introduction picture img.back {
    position: absolute;
    top: 8px;
    right: 16px;
    filter: blur(20px);
    opacity: 0.6;
    z-index: 1;
  }
}
@media (max-width: 700px) {
  body.home > main .sc-introduction {
    width: 100%;
    flex-direction: column-reverse;
  }
  body.home > main .sc-introduction picture {
    width: 80%;
    height: 48vw;
    min-height: 300px;
    margin: 0 0 0 auto;
    aspect-ratio: unset;
  }
  body.home > main .sc-introduction picture img {
    border-radius: 16px 0 0 16px;
  }
  body.home > main .sc-introduction div {
    width: min(1400px, 92%);
    margin: 0 auto;
  }
}
@media (max-width: 550px) {
  body.home > main .sc-introduction picture {
    width: 90%;
  }
}
body.home > main .sc-media-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: min(1400px, 92%);
  margin: 0 auto;
}
body.home > main .sc-media-list h2 {
  text-align: center;
}
body.home > main .sc-media-list h2 span {
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: 0.25em;
  font-weight: 500;
}
body.home > main .sc-media-list h2 strong {
  font-size: 48px;
  line-height: 1.3;
  letter-spacing: 0.25em;
  font-weight: 500;
  color: var(--theme-green);
}
@media (max-width: 1032px) {
  body.home > main .sc-media-list h2 span {
    font-size: 28px;
    line-height: 1.35;
    letter-spacing: 0.25em;
    font-weight: 500;
  }
  body.home > main .sc-media-list h2 strong {
    font-size: 40px;
    line-height: 1.3;
    letter-spacing: 0.25em;
    font-weight: 500;
  }
}
@media (max-width: 780px) {
  body.home > main .sc-media-list h2 span {
    letter-spacing: 0.2em;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 500;
  }
  body.home > main .sc-media-list h2 strong {
    font-size: 32px;
    line-height: 1.3;
    letter-spacing: 0.25em;
    font-weight: 500;
  }
}
@media (max-width: 550px) {
  body.home > main .sc-media-list h2 span {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.2em;
    font-weight: 500;
  }
  body.home > main .sc-media-list h2 strong {
    font-size: 28px;
    line-height: 1.35;
    letter-spacing: 0.25em;
    font-weight: 500;
  }
}
body.home > main .sc-media-list p {
  text-align: center;
  font-size: 15px;
  line-height: 1.75;
}
body.home > main .sc-media-list p.latest-update {
  width: 100%;
  text-align: right;
}
body.home > main .sc-media-list ul {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
  width: 100%;
}
body.home > main .sc-media-list ul li {
  width: 100%;
  height: auto;
}
body.home > main .sc-media-list ul li picture {
  display: inline-block;
  width: 100%;
  gap: 8px;
}
body.home > main .sc-media-list ul li picture img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
@media (max-width: 1032px) {
  body.home > main .sc-media-list ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  body.home > main .sc-media-list ul li {
    width: 200px;
  }
}
@media (max-width: 550px) {
  body.home > main .sc-media-list ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  body.home > main .sc-media-list ul li {
    width: 100%;
  }
}

/*------------------------------------------------

  サービス メインページ

------------------------------------------------ */
.page-template-page-service > main .sc-price-and-payment-introduction {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  position: relative;
}
.page-template-page-service > main .sc-price-and-payment-introduction h2 {
  text-align: center;
}
.page-template-page-service > main .sc-price-and-payment-introduction h2 span {
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: 0.25em;
  font-weight: 500;
}
.page-template-page-service > main .sc-price-and-payment-introduction h2 strong {
  font-size: 48px;
  line-height: 1.3;
  letter-spacing: 0.25em;
  font-weight: 500;
  color: var(--theme-green);
}
@media (max-width: 1032px) {
  .page-template-page-service > main .sc-price-and-payment-introduction h2 span {
    font-size: 28px;
    line-height: 1.35;
    letter-spacing: 0.25em;
    font-weight: 500;
  }
  .page-template-page-service > main .sc-price-and-payment-introduction h2 strong {
    font-size: 40px;
    line-height: 1.3;
    letter-spacing: 0.25em;
    font-weight: 500;
  }
}
@media (max-width: 780px) {
  .page-template-page-service > main .sc-price-and-payment-introduction h2 span {
    letter-spacing: 0.2em;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 500;
  }
  .page-template-page-service > main .sc-price-and-payment-introduction h2 strong {
    font-size: 32px;
    line-height: 1.3;
    letter-spacing: 0.25em;
    font-weight: 500;
  }
}
@media (max-width: 550px) {
  .page-template-page-service > main .sc-price-and-payment-introduction h2 span {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.2em;
    font-weight: 500;
  }
  .page-template-page-service > main .sc-price-and-payment-introduction h2 strong {
    font-size: 28px;
    line-height: 1.35;
    letter-spacing: 0.25em;
    font-weight: 500;
  }
}
.page-template-page-service > main .sc-price-and-payment-introduction .price {
  width: min(1400px, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  z-index: 1;
  padding-left: 8px;
}
.page-template-page-service > main .sc-price-and-payment-introduction .price strong {
  font-size: 64px;
  line-height: 1.2;
  letter-spacing: 0.25em;
  font-weight: 500;
  color: var(--theme-green);
}
.page-template-page-service > main .sc-price-and-payment-introduction .price div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-template-page-service > main .sc-price-and-payment-introduction .price div span {
  color: var(--theme-green);
}
.page-template-page-service > main .sc-price-and-payment-introduction .price div span:nth-child(1) {
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
}
.page-template-page-service > main .sc-price-and-payment-introduction .price div span:nth-child(2) {
  font-size: 40px;
  line-height: 1.3;
  letter-spacing: 0.25em;
  font-weight: 500;
}
.page-template-page-service > main .sc-price-and-payment-introduction .price-strong-point {
  width: min(1000px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 24px;
  z-index: 1;
}
.page-template-page-service > main .sc-price-and-payment-introduction .price-strong-point .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px;
  background-color: rgba(255, 255, 255, 0.6);
}
.page-template-page-service > main .sc-price-and-payment-introduction .price-strong-point .container h3 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0 12px 4px;
  border-bottom: 1px dashed var(--theme-green);
  width: -moz-max-content;
  width: max-content;
  gap: 4px;
}
.page-template-page-service > main .sc-price-and-payment-introduction .price-strong-point .container h3 .svg-box {
  color: #B5AC46;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
}
.page-template-page-service > main .sc-price-and-payment-introduction .price-strong-point .container h3 .svg-box svg {
  width: 100%;
  height: 100%;
}
.page-template-page-service > main .sc-price-and-payment-introduction .price-strong-point .container h3 strong {
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.2em;
  font-weight: 500;
  color: var(--theme-green);
}
.page-template-page-service > main .sc-price-and-payment-introduction .price-strong-point .container p {
  font-size: 13px;
  color: var(--theme-deep-gray);
  text-align: center;
}
.page-template-page-service > main .sc-price-and-payment-introduction .btn-area {
  width: min(1000px, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  z-index: 1;
}
.page-template-page-service > main .sc-price-and-payment-introduction .btn-area a.icon-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.page-template-page-service > main .sc-price-and-payment-introduction .btn-area a.icon-link span {
  display: inline;
  text-align: right;
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
  color: var(--theme-green);
}
.page-template-page-service > main .sc-price-and-payment-introduction .btn-area a.icon-link .door-box {
  background-color: var(--theme-green);
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}
.page-template-page-service > main .sc-price-and-payment-introduction .btn-area a.icon-link .door-box svg {
  color: var(--theme-white);
  width: 24px;
  height: 24px;
}
@media (max-width: 1032px) {
  .page-template-page-service > main .sc-price-and-payment-introduction .btn-area a.icon-link span {
    font-size: 13px;
    font-weight: 500;
  }
  .page-template-page-service > main .sc-price-and-payment-introduction .btn-area a.icon-link .door-box {
    width: 32px;
    height: 32px;
  }
  .page-template-page-service > main .sc-price-and-payment-introduction .btn-area a.icon-link .door-box svg {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 1032px) {
  .page-template-page-service > main .sc-price-and-payment-introduction .price-strong-point .container {
    padding: 16px;
  }
  .page-template-page-service > main .sc-price-and-payment-introduction .price-strong-point .container h3 {
    padding: 0 6px 4px;
  }
}
@media (max-width: 780px) {
  .page-template-page-service > main .sc-price-and-payment-introduction .price-strong-point {
    grid-template-columns: 1fr;
  }
  .page-template-page-service > main .sc-price-and-payment-introduction .price-strong-point .container {
    flex-direction: row;
    gap: 40px;
  }
  .page-template-page-service > main .sc-price-and-payment-introduction .price-strong-point .container p {
    width: 100%;
    text-align: left;
  }
}
@media (max-width: 550px) {
  .page-template-page-service > main .sc-price-and-payment-introduction {
    gap: 24px;
  }
  .page-template-page-service > main .sc-price-and-payment-introduction .price strong {
    font-size: 40px;
    line-height: 1.3;
    letter-spacing: 0.25em;
    font-weight: 500;
  }
  .page-template-page-service > main .sc-price-and-payment-introduction .price div span:nth-child(1) {
    font-size: 13px;
    font-weight: 500;
  }
  .page-template-page-service > main .sc-price-and-payment-introduction .price div span:nth-child(2) {
    font-size: 28px;
    line-height: 1.35;
    letter-spacing: 0.25em;
    font-weight: 500;
  }
  .page-template-page-service > main .sc-price-and-payment-introduction .price-strong-point {
    justify-items: center;
  }
  .page-template-page-service > main .sc-price-and-payment-introduction .price-strong-point .container {
    width: min(400px, 100%);
    flex-direction: column;
    gap: 8px;
  }
  .page-template-page-service > main .sc-price-and-payment-introduction .price-strong-point .container p {
    text-align: center;
  }
}
.page-template-page-service > main .sc-strong-point {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 100px 0;
  width: 100%;
  background: var(--theme-green);
}
.page-template-page-service > main .sc-strong-point h2 {
  text-align: center;
}
.page-template-page-service > main .sc-strong-point h2 span {
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: 0.25em;
  font-weight: 500;
}
.page-template-page-service > main .sc-strong-point h2 strong {
  font-size: 48px;
  line-height: 1.3;
  letter-spacing: 0.25em;
  font-weight: 500;
  color: var(--theme-green);
}
@media (max-width: 1032px) {
  .page-template-page-service > main .sc-strong-point h2 span {
    font-size: 28px;
    line-height: 1.35;
    letter-spacing: 0.25em;
    font-weight: 500;
  }
  .page-template-page-service > main .sc-strong-point h2 strong {
    font-size: 40px;
    line-height: 1.3;
    letter-spacing: 0.25em;
    font-weight: 500;
  }
}
@media (max-width: 780px) {
  .page-template-page-service > main .sc-strong-point h2 span {
    letter-spacing: 0.2em;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 500;
  }
  .page-template-page-service > main .sc-strong-point h2 strong {
    font-size: 32px;
    line-height: 1.3;
    letter-spacing: 0.25em;
    font-weight: 500;
  }
}
@media (max-width: 550px) {
  .page-template-page-service > main .sc-strong-point h2 span {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.2em;
    font-weight: 500;
  }
  .page-template-page-service > main .sc-strong-point h2 strong {
    font-size: 28px;
    line-height: 1.35;
    letter-spacing: 0.25em;
    font-weight: 500;
  }
}
.page-template-page-service > main .sc-strong-point h2 span {
  color: var(--theme-white);
}
.page-template-page-service > main .sc-strong-point h2 strong {
  color: #fffc7d;
}
.page-template-page-service > main .sc-strong-point .main-point-container {
  width: min(900px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.page-template-page-service > main .sc-strong-point .main-point-container .block {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  background-color: var(--theme-white);
  border: 1px solid var(--theme-green);
  width: 100%;
  height: auto;
  aspect-ratio: unset;
  border-radius: 4px;
  flex-direction: row;
  justify-content: flex-start;
  gap: 12px;
}
.page-template-page-service > main .sc-strong-point .main-point-container .block .contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-items: flex-start;
  width: 100px;
  flex-grow: 1;
}
.page-template-page-service > main .sc-strong-point .main-point-container .block .contents .point {
  font-size: 13px;
  font-weight: 500;
  width: 100%;
  color: var(--theme-green);
}
.page-template-page-service > main .sc-strong-point .main-point-container .block .contents h3 {
  z-index: 1;
  letter-spacing: 0.2em;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 500;
  color: var(--theme-green);
}
.page-template-page-service > main .sc-strong-point .main-point-container .block .contents .desc {
  font-size: 12px;
  text-align: left;
  color: var(--theme-deep-gray);
}
.page-template-page-service > main .sc-strong-point .main-point-container .block svg {
  margin: 0 12px;
  width: 48px;
  height: 48px;
  color: var(--theme-green);
  left: auto;
  top: auto;
  transform: none;
  z-index: 1;
}
.page-template-page-service > main .sc-strong-point .connective {
  width: min(900px, 92%);
  margin: 0 auto;
  color: var(--theme-white);
  text-align: center;
}
.page-template-page-service > main .sc-strong-point .sub-point-container {
  width: min(900px, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  position: relative;
  border-radius: 4px;
  padding: 24px 40px;
  background-color: var(--theme-white);
  gap: 8px 24px;
}
.page-template-page-service > main .sc-strong-point .sub-point-container .point-line {
  width: 300px;
  flex-grow: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.page-template-page-service > main .sc-strong-point .sub-point-container .point-line span {
  color: var(--theme-deep-gray);
}
.page-template-page-service > main .sc-strong-point .sub-point-container .point-line svg {
  width: 24px;
  height: 24px;
  color: var(--theme-green);
}
@media (max-width: 700px) {
  .page-template-page-service > main .sc-strong-point .main-point-container {
    grid-template-columns: repeat(1, 1fr);
    gap: 8px;
  }
}
.page-template-page-service > main .sc-strong-point .btn-area {
  width: min(900px, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.page-template-page-service > main .sc-strong-point .btn-area a.icon-btn {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 60px;
  width: max-content;
  min-width: 220px;
  padding: 12px 24px;
  background-color: var(--theme-green);
  transition: 0.4s;
  padding: 8px 24px;
  height: auto;
}
@media (hover: hover) and (pointer: fine) {
  .page-template-page-service > main .sc-strong-point .btn-area a.icon-btn:hover {
    background-color: var(--theme-deep-green);
  }
}
@media (hover: none) and (pointer: coarse) {
  .page-template-page-service > main .sc-strong-point .btn-area a.icon-btn.is-active {
    background-color: var(--theme-deep-green);
  }
}
.page-template-page-service > main .sc-strong-point .btn-area a.icon-btn svg {
  width: 24px;
  height: 24px;
  color: var(--theme-white);
}
.page-template-page-service > main .sc-strong-point .btn-area a.icon-btn span {
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
  width: -moz-max-content;
  width: max-content;
  color: var(--theme-white);
}
@media (max-width: 550px) {
  .page-template-page-service > main .sc-strong-point .btn-area a.icon-btn svg {
    width: 20px;
    height: 20px;
  }
  .page-template-page-service > main .sc-strong-point .btn-area a.icon-btn span {
    font-size: 13px;
    font-weight: 500;
  }
}
.page-template-page-service > main .sc-service-comparisonn {
  width: min(1400px, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.page-template-page-service > main .sc-service-comparisonn h2 {
  text-align: center;
}
.page-template-page-service > main .sc-service-comparisonn h2 span {
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: 0.25em;
  font-weight: 500;
}
.page-template-page-service > main .sc-service-comparisonn h2 strong {
  font-size: 48px;
  line-height: 1.3;
  letter-spacing: 0.25em;
  font-weight: 500;
  color: var(--theme-green);
}
@media (max-width: 1032px) {
  .page-template-page-service > main .sc-service-comparisonn h2 span {
    font-size: 28px;
    line-height: 1.35;
    letter-spacing: 0.25em;
    font-weight: 500;
  }
  .page-template-page-service > main .sc-service-comparisonn h2 strong {
    font-size: 40px;
    line-height: 1.3;
    letter-spacing: 0.25em;
    font-weight: 500;
  }
}
@media (max-width: 780px) {
  .page-template-page-service > main .sc-service-comparisonn h2 span {
    letter-spacing: 0.2em;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 500;
  }
  .page-template-page-service > main .sc-service-comparisonn h2 strong {
    font-size: 32px;
    line-height: 1.3;
    letter-spacing: 0.25em;
    font-weight: 500;
  }
}
@media (max-width: 550px) {
  .page-template-page-service > main .sc-service-comparisonn h2 span {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.2em;
    font-weight: 500;
  }
  .page-template-page-service > main .sc-service-comparisonn h2 strong {
    font-size: 28px;
    line-height: 1.35;
    letter-spacing: 0.25em;
    font-weight: 500;
  }
}
.page-template-page-service > main .sc-service-comparisonn table.pc {
  display: table;
}
.page-template-page-service > main .sc-service-comparisonn table.pc tr {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.page-template-page-service > main .sc-service-comparisonn table.pc tr th, .page-template-page-service > main .sc-service-comparisonn table.pc tr td {
  background-color: var(--theme-white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 12px;
  padding: 8px;
}
.page-template-page-service > main .sc-service-comparisonn table.pc tr td {
  flex-direction: column;
}
.page-template-page-service > main .sc-service-comparisonn table.pc tr td span {
  font-size: 15px;
  line-height: 1.75;
  text-align: center;
}
.page-template-page-service > main .sc-service-comparisonn table.pc tr td strong {
  letter-spacing: 0.2em;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 500;
  text-align: center;
}
.page-template-page-service > main .sc-service-comparisonn table.pc tr th {
  flex-direction: row;
}
.page-template-page-service > main .sc-service-comparisonn table.pc tr th strong {
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.2em;
  font-weight: 500;
  text-align: center;
}
.page-template-page-service > main .sc-service-comparisonn table.pc tr th .svg-box {
  width: 24px;
  height: 24px;
  display: grid;
  color: var(--theme-deep-gray);
}
.page-template-page-service > main .sc-service-comparisonn table.pc tr th .svg-box svg {
  width: 100%;
  height: 100%;
  vertical-align: top;
}
.page-template-page-service > main .sc-service-comparisonn table.pc tr:nth-child(1) th {
  border-top: 1px;
}
.page-template-page-service > main .sc-service-comparisonn table.pc tr:nth-child(1) th:nth-child(1) {
  grid-area: 1/2/2/3;
  background-color: var(--theme-green);
  color: var(--theme-white);
}
.page-template-page-service > main .sc-service-comparisonn table.pc tr:nth-child(1) th:nth-child(1) strong {
  text-align: center;
  letter-spacing: 0.2em;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 500;
}
.page-template-page-service > main .sc-service-comparisonn table.pc tr:nth-child(1) th:nth-child(2), .page-template-page-service > main .sc-service-comparisonn table.pc tr:nth-child(1) th:nth-child(3), .page-template-page-service > main .sc-service-comparisonn table.pc tr:nth-child(1) th:nth-child(4) {
  background-color: var(--theme-emerald-green);
  color: var(--theme-white);
}
.page-template-page-service > main .sc-service-comparisonn table.pc tr:nth-child(1) th:nth-child(2) {
  grid-area: 1/3/2/4;
}
.page-template-page-service > main .sc-service-comparisonn table.pc tr:nth-child(1) th:nth-child(3) {
  grid-area: 1/4/2/5;
}
.page-template-page-service > main .sc-service-comparisonn table.pc tr:nth-child(1) th:nth-child(4) {
  grid-area: 1/5/2/6;
}
.page-template-page-service > main .sc-service-comparisonn table.pc tr:nth-child(1) th:nth-child(5) {
  grid-area: 1/6/2/7;
}
.page-template-page-service > main .sc-service-comparisonn table.pc tr:nth-child(2) td:nth-child(2), .page-template-page-service > main .sc-service-comparisonn table.pc tr:nth-child(3) td:nth-child(2), .page-template-page-service > main .sc-service-comparisonn table.pc tr:nth-child(4) td:nth-child(2), .page-template-page-service > main .sc-service-comparisonn table.pc tr:nth-child(5) td:nth-child(2) {
  color: var(--theme-green);
}
.page-template-page-service > main .sc-service-comparisonn table.pc tr th {
  border-top: 1px solid var(--theme-gray);
  border-left: 1px solid var(--theme-gray);
}
.page-template-page-service > main .sc-service-comparisonn table.pc tr td {
  border-left: 1px solid var(--theme-gray);
  border-top: 1px solid var(--theme-gray);
}
.page-template-page-service > main .sc-service-comparisonn table.pc tr td:last-child {
  border-right: 1px solid var(--theme-gray);
}
.page-template-page-service > main .sc-service-comparisonn table.pc tr:nth-child(1) th {
  border-top: 1px solid var(--theme-gray);
}
.page-template-page-service > main .sc-service-comparisonn table.pc tr:nth-child(1) th:last-child {
  border-right: 1px solid var(--theme-gray);
}
.page-template-page-service > main .sc-service-comparisonn table.pc tr:last-child {
  border-bottom: 1px solid var(--theme-gray);
}
@media (max-width: 1032px) {
  .page-template-page-service > main .sc-service-comparisonn table.pc tbody > tr:nth-child(1) th:nth-child(1) strong {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.2em;
    font-weight: 500;
  }
  .page-template-page-service > main .sc-service-comparisonn table.pc tbody > tr:nth-child(1) th:nth-child(2) strong, .page-template-page-service > main .sc-service-comparisonn table.pc tbody > tr:nth-child(1) th:nth-child(3) strong, .page-template-page-service > main .sc-service-comparisonn table.pc tbody > tr:nth-child(1) th:nth-child(4) strong {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 500;
  }
  .page-template-page-service > main .sc-service-comparisonn table.pc tbody > tr td:nth-child(2) strong {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.2em;
    font-weight: 500;
  }
}
@media (max-width: 780px) {
  .page-template-page-service > main .sc-service-comparisonn table.pc {
    display: none;
  }
}
.page-template-page-service > main .sc-service-comparisonn .s-tab-table {
  display: none;
  cursor: pointer;
}
@media (max-width: 780px) {
  .page-template-page-service > main .sc-service-comparisonn .s-tab-table {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .page-template-page-service > main .sc-service-comparisonn .s-tab-table .table {
    width: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--theme-green);
    background-color: var(--theme-white);
    border-radius: 4px;
  }
  .page-template-page-service > main .sc-service-comparisonn .s-tab-table .table .main-th {
    width: 100%;
    display: flex;
    height: 56px;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: center;
    padding: 8px 32px;
    background-color: var(--theme-white);
    border-radius: 12px;
    position: relative;
  }
  .page-template-page-service > main .sc-service-comparisonn .s-tab-table .table .main-th::after {
    display: inline-block;
    border-radius: 4px;
    content: "";
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translate(0, -50%);
    width: 16px;
    height: 10px;
    background-color: var(--theme-green);
    transition: all 0.3s ease-in-out;
    -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
            clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
  .page-template-page-service > main .sc-service-comparisonn .s-tab-table .table .main-th.active::after {
    -webkit-clip-path: polygon(0 100%, 100% 100%, 50% 0);
            clip-path: polygon(0 100%, 100% 100%, 50% 0);
  }
  .page-template-page-service > main .sc-service-comparisonn .s-tab-table .table .main-th strong {
    color: var(--theme-green);
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.2em;
    font-weight: 500;
    text-align: center;
  }
  .page-template-page-service > main .sc-service-comparisonn .s-tab-table .table .main-th .svg-box {
    width: 24px;
    height: 24px;
    display: grid;
    color: var(--theme-green);
  }
  .page-template-page-service > main .sc-service-comparisonn .s-tab-table .table .main-th .svg-box svg {
    width: 100%;
    height: 100%;
    vertical-align: top;
  }
  .page-template-page-service > main .sc-service-comparisonn .s-tab-table .table .table-body {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .page-template-page-service > main .sc-service-comparisonn .s-tab-table .table .table-body .tr {
    width: 100%;
    display: flex;
    flex-direction: row;
  }
  .page-template-page-service > main .sc-service-comparisonn .s-tab-table .table .table-body .tr .th {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 160px;
    height: 80px;
    text-align: center;
    flex-grow: 1;
  }
  .page-template-page-service > main .sc-service-comparisonn .s-tab-table .table .table-body .tr .th span {
    font-size: 15px;
    line-height: 1.75;
    font-weight: 500;
    font-weight: 700;
    text-align: center;
  }
  .page-template-page-service > main .sc-service-comparisonn .s-tab-table .table .table-body .tr .th strong {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.2em;
    font-weight: 500;
    font-weight: 700;
    text-align: center;
  }
  .page-template-page-service > main .sc-service-comparisonn .s-tab-table .table .table-body .tr .td {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 220px;
    height: 80px;
    flex-grow: 2;
  }
  .page-template-page-service > main .sc-service-comparisonn .s-tab-table .table .table-body .tr .td span {
    font-size: 13px;
    font-weight: 500;
    text-align: center;
  }
  .page-template-page-service > main .sc-service-comparisonn .s-tab-table .table .table-body .tr:nth-child(1) .th {
    background-color: var(--theme-green);
    color: var(--theme-white);
    border-top: 1px solid var(--theme-green);
  }
  .page-template-page-service > main .sc-service-comparisonn .s-tab-table .table .table-body .tr:nth-child(1) .td {
    background-color: var(--theme-white);
    color: var(--theme-green);
    border-top: 1px solid var(--theme-green);
  }
  .page-template-page-service > main .sc-service-comparisonn .s-tab-table .table .table-body .tr:nth-child(1) .td h3 {
    font-size: 15px;
    line-height: 1.75;
    font-weight: 500;
  }
  .page-template-page-service > main .sc-service-comparisonn .s-tab-table .table .table-body .tr:nth-child(1) .td strong {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.2em;
    font-weight: 500;
    font-weight: 700;
    text-align: center;
  }
  .page-template-page-service > main .sc-service-comparisonn .s-tab-table .table .table-body .tr:nth-child(2) .th, .page-template-page-service > main .sc-service-comparisonn .s-tab-table .table .table-body .tr:nth-child(3) .th, .page-template-page-service > main .sc-service-comparisonn .s-tab-table .table .table-body .tr:nth-child(4) .th {
    background-color: var(--theme-emerald-green);
    border-right: 1px solid var(--theme-emerald-green);
    border-top: 1px solid var(--theme-white);
    color: var(--theme-white);
  }
  .page-template-page-service > main .sc-service-comparisonn .s-tab-table .table .table-body .tr:nth-child(2) .th strong, .page-template-page-service > main .sc-service-comparisonn .s-tab-table .table .table-body .tr:nth-child(3) .th strong, .page-template-page-service > main .sc-service-comparisonn .s-tab-table .table .table-body .tr:nth-child(4) .th strong {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.2em;
    font-weight: 500;
    text-align: center;
  }
  .page-template-page-service > main .sc-service-comparisonn .s-tab-table .table .table-body .tr:nth-child(2) .td, .page-template-page-service > main .sc-service-comparisonn .s-tab-table .table .table-body .tr:nth-child(3) .td, .page-template-page-service > main .sc-service-comparisonn .s-tab-table .table .table-body .tr:nth-child(4) .td {
    background-color: var(--theme-white);
    color: var(--theme-deep-gray);
    border-top: 1px solid var(--theme-green);
  }
  .page-template-page-service > main .sc-service-comparisonn .s-tab-table .table .table-body .tr:nth-child(2) .td span, .page-template-page-service > main .sc-service-comparisonn .s-tab-table .table .table-body .tr:nth-child(3) .td span, .page-template-page-service > main .sc-service-comparisonn .s-tab-table .table .table-body .tr:nth-child(4) .td span {
    font-size: 15px;
    line-height: 1.75;
    font-weight: 500;
    text-align: center;
  }
  .page-template-page-service > main .sc-service-comparisonn .s-tab-table .table .table-body .tr:nth-child(4) .th {
    border-radius: 0 0 0 11px;
  }
  .page-template-page-service > main .sc-service-comparisonn .s-tab-table .table .table-body .tr:nth-child(4) .td {
    border-radius: 0 0 11px 0;
  }
}
.page-template-page-service > main .sc-exit-step {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.page-template-page-service > main .sc-exit-step h2 {
  text-align: center;
}
.page-template-page-service > main .sc-exit-step h2 span {
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: 0.25em;
  font-weight: 500;
}
.page-template-page-service > main .sc-exit-step h2 strong {
  font-size: 48px;
  line-height: 1.3;
  letter-spacing: 0.25em;
  font-weight: 500;
  color: var(--theme-green);
}
@media (max-width: 1032px) {
  .page-template-page-service > main .sc-exit-step h2 span {
    font-size: 28px;
    line-height: 1.35;
    letter-spacing: 0.25em;
    font-weight: 500;
  }
  .page-template-page-service > main .sc-exit-step h2 strong {
    font-size: 40px;
    line-height: 1.3;
    letter-spacing: 0.25em;
    font-weight: 500;
  }
}
@media (max-width: 780px) {
  .page-template-page-service > main .sc-exit-step h2 span {
    letter-spacing: 0.2em;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 500;
  }
  .page-template-page-service > main .sc-exit-step h2 strong {
    font-size: 32px;
    line-height: 1.3;
    letter-spacing: 0.25em;
    font-weight: 500;
  }
}
@media (max-width: 550px) {
  .page-template-page-service > main .sc-exit-step h2 span {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.2em;
    font-weight: 500;
  }
  .page-template-page-service > main .sc-exit-step h2 strong {
    font-size: 28px;
    line-height: 1.35;
    letter-spacing: 0.25em;
    font-weight: 500;
  }
}
.page-template-page-service > main .sc-exit-step .exit-step-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.page-template-page-service > main .sc-exit-step .exit-step-box .step {
  display: flex;
  flex-direction: row;
  gap: 32px;
}
.page-template-page-service > main .sc-exit-step .exit-step-box .step .img-box {
  display: inline-block;
  width: min(400px, 50%);
  height: auto;
  aspect-ratio: 8/5;
  overflow: hidden;
}
.page-template-page-service > main .sc-exit-step .exit-step-box .step .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: top;
}
.page-template-page-service > main .sc-exit-step .exit-step-box .step .container {
  width: 300px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.page-template-page-service > main .sc-exit-step .exit-step-box .step .container .label {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  color: var(--theme-green);
}
.page-template-page-service > main .sc-exit-step .exit-step-box .step .container .label .content {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}
.page-template-page-service > main .sc-exit-step .exit-step-box .step .container .label .content span:nth-child(1) {
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
  line-height: 1.4;
}
.page-template-page-service > main .sc-exit-step .exit-step-box .step .container .label .content span:nth-child(2) {
  font-size: 48px;
  line-height: 1.3;
  letter-spacing: 0.25em;
  font-weight: 500;
  line-height: 1;
}
.page-template-page-service > main .sc-exit-step .exit-step-box .step .container .label h3 {
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: 0.25em;
  font-weight: 500;
  padding-left: 8px;
  letter-spacing: 0.18em;
}
.page-template-page-service > main .sc-exit-step .exit-step-box .step .container hr {
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--theme-gray);
}
.page-template-page-service > main .sc-exit-step .exit-step-box .step .container p {
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
}
.page-template-page-service > main .sc-exit-step .exit-step-box .line {
  width: 100%;
  display: grid;
  place-items: center;
  padding: 0 12px;
  gap: 24px;
}
.page-template-page-service > main .sc-exit-step .exit-step-box .line .svg-box {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background-color: var(--theme-green);
  color: var(--theme-white);
}
.page-template-page-service > main .sc-exit-step .exit-step-box .line .svg-box svg {
  margin-top: 2px;
  width: 60%;
  height: 60%;
}
@media (max-width: 1032px) {
  .page-template-page-service > main .sc-exit-step .exit-step-box > .step {
    gap: 16px;
  }
  .page-template-page-service > main .sc-exit-step .exit-step-box > .step .container > .label {
    align-items: flex-start;
    flex-direction: column;
  }
  .page-template-page-service > main .sc-exit-step .exit-step-box > .step .container > .label .content span:nth-child(2) {
    font-size: 32px;
    line-height: 1.3;
    letter-spacing: 0.25em;
    font-weight: 500;
    line-height: 1;
  }
  .page-template-page-service > main .sc-exit-step .exit-step-box > .step .container > .label h3 {
    letter-spacing: 0.2em;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 500;
  }
}
@media (max-width: 780px) {
  .page-template-page-service > main .sc-exit-step .exit-step-box .step {
    flex-direction: column;
    gap: 20px;
  }
  .page-template-page-service > main .sc-exit-step .exit-step-box .step .img-box {
    width: 100%;
    aspect-ratio: 2/1;
  }
  .page-template-page-service > main .sc-exit-step .exit-step-box .step .container {
    width: 100%;
  }
}
.page-template-page-service > main .sc-payment-type {
  width: min(1000px, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  position: relative;
}
.page-template-page-service > main .sc-payment-type h2 {
  text-align: center;
}
.page-template-page-service > main .sc-payment-type h2 span {
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: 0.25em;
  font-weight: 500;
}
.page-template-page-service > main .sc-payment-type h2 strong {
  font-size: 48px;
  line-height: 1.3;
  letter-spacing: 0.25em;
  font-weight: 500;
  color: var(--theme-green);
}
@media (max-width: 1032px) {
  .page-template-page-service > main .sc-payment-type h2 span {
    font-size: 28px;
    line-height: 1.35;
    letter-spacing: 0.25em;
    font-weight: 500;
  }
  .page-template-page-service > main .sc-payment-type h2 strong {
    font-size: 40px;
    line-height: 1.3;
    letter-spacing: 0.25em;
    font-weight: 500;
  }
}
@media (max-width: 780px) {
  .page-template-page-service > main .sc-payment-type h2 span {
    letter-spacing: 0.2em;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 500;
  }
  .page-template-page-service > main .sc-payment-type h2 strong {
    font-size: 32px;
    line-height: 1.3;
    letter-spacing: 0.25em;
    font-weight: 500;
  }
}
@media (max-width: 550px) {
  .page-template-page-service > main .sc-payment-type h2 span {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.2em;
    font-weight: 500;
  }
  .page-template-page-service > main .sc-payment-type h2 strong {
    font-size: 28px;
    line-height: 1.35;
    letter-spacing: 0.25em;
    font-weight: 500;
  }
}
.page-template-page-service > main .sc-payment-type .payment-type {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 12px 40px;
  border: 1px solid var(--theme-green);
  background-color: rgba(255, 255, 255, 0.5);
}
.page-template-page-service > main .sc-payment-type .payment-type li {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 8px 0;
}
.page-template-page-service > main .sc-payment-type .payment-type li:nth-child(1) {
  border-bottom: 1px solid var(--theme-green);
}
.page-template-page-service > main .sc-payment-type .payment-type li h3 {
  width: 120px;
}
.page-template-page-service > main .sc-payment-type .payment-type li .brand-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.page-template-page-service > main .sc-payment-type .payment-type li .brand-logo img {
  height: auto;
}
.page-template-page-service > main .sc-payment-type .payment-type li .brand-logo img:nth-child(1), .page-template-page-service > main .sc-payment-type .payment-type li .brand-logo img:nth-child(2) {
  width: 60px;
}
.page-template-page-service > main .sc-payment-type .payment-type li .brand-logo img:nth-child(3) {
  width: 48px;
}
.page-template-page-service > main .sc-payment-type .payment-type li .brand-logo img:nth-child(4) {
  width: 46px;
}
.page-template-page-service > main .sc-payment-type .btn-area {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  z-index: 1;
}
.page-template-page-service > main .sc-payment-type .btn-area a.icon-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.page-template-page-service > main .sc-payment-type .btn-area a.icon-link span {
  display: inline;
  text-align: right;
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
  color: var(--theme-green);
}
.page-template-page-service > main .sc-payment-type .btn-area a.icon-link .door-box {
  background-color: var(--theme-green);
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}
.page-template-page-service > main .sc-payment-type .btn-area a.icon-link .door-box svg {
  color: var(--theme-white);
  width: 24px;
  height: 24px;
}
@media (max-width: 1032px) {
  .page-template-page-service > main .sc-payment-type .btn-area a.icon-link span {
    font-size: 13px;
    font-weight: 500;
  }
  .page-template-page-service > main .sc-payment-type .btn-area a.icon-link .door-box {
    width: 32px;
    height: 32px;
  }
  .page-template-page-service > main .sc-payment-type .btn-area a.icon-link .door-box svg {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 780px) {
  .page-template-page-service > main .sc-payment-type .payment-type {
    padding: 12px 24px;
  }
  .page-template-page-service > main .sc-payment-type .payment-type li {
    flex-direction: column;
    align-items: flex-start;
  }
  .page-template-page-service > main .sc-payment-type .payment-type li div {
    padding-left: 24px;
  }
}

/*********************************************

  ブロックエディターで生成した画面で利用するスタイル

*********************************************/
/*********************************************

  デフォルトの固定ページ表示

*********************************************/
.page-template-default > main .default-sc1 {
  width: min(1200px, 92%);
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.75;
}
@media (max-width: 780px) {
  .page-template-default > main .default-sc1 {
    font-size: 13px;
  }
}
.page-template-default > main .default-sc1 p {
  padding-left: 6px;
  margin-bottom: 8px;
}
.page-template-default > main .default-sc1 h1 {
  font-family: "Noto Serif JP";
  font-size: 28px;
  line-height: 1.35;
  letter-spacing: 0.25em;
  font-weight: 500;
  padding-bottom: 0;
  margin-bottom: 16px;
}
@media (max-width: 780px) {
  .page-template-default > main .default-sc1 h1 {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.2em;
    font-weight: 500;
  }
}
.page-template-default > main .default-sc1 h2 {
  font-family: "Noto Serif JP";
  font-size: 28px;
  line-height: 1.35;
  letter-spacing: 0.25em;
  font-weight: 500;
  margin: 12px 0 20px;
  padding: 16px 0 16px 18px;
  color: var(--novelflare-primary);
  border-left: 4px solid var(--novelflare-primary);
}
@media (max-width: 780px) {
  .page-template-default > main .default-sc1 h2 {
    padding: 6px 0 6px 8px;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 500;
  }
}
.page-template-default > main .default-sc1 h3 {
  font-family: "Noto Serif JP";
  display: inline-block;
  color: var(--novelflare-primary);
  border-bottom: 2px solid var(--novelflare-secondary);
  margin: 12px 0 20px;
  padding: 6px 12px 0 4px;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 500;
}
@media (max-width: 780px) {
  .page-template-default > main .default-sc1 h3 {
    font-size: 15px;
    line-height: 1.75;
    font-weight: 500;
  }
}
.page-template-default > main .default-sc1 h4 {
  font-family: "Noto Serif JP";
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
  margin-bottom: 8px;
}
@media (max-width: 780px) {
  .page-template-default > main .default-sc1 h4 {
    font-size: 13px;
    font-weight: 500;
  }
}
.page-template-default > main .default-sc1 ul, .page-template-default > main .default-sc1 ol {
  margin-bottom: 1em;
  padding: 4px 4px 4px 44px;
}
.page-template-default > main .default-sc1 ul li, .page-template-default > main .default-sc1 ol li {
  all: revert;
  margin-block-start: 0.2em;
  margin-block-end: 0.2em;
}
.page-template-default > main .default-sc1 ul {
  list-style-type: disc;
}
.page-template-default > main .default-sc1 ol {
  list-style-type: decimal;
}
.page-template-default > main .default-sc1 a {
  word-break: break-word;
  color: -webkit-link;
  cursor: pointer;
}
.page-template-default > main .default-sc1 strong {
  font-weight: 600;
  font-size: 1em;
  letter-spacing: 1px;
  color: var(--novelflare-accent);
}
.page-template-default > main .default-sc1 em {
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
.page-template-default > main .default-sc1 figure figcaption {
  text-align: center;
}
.page-template-default > main .default-sc1 table {
  border-collapse: collapse;
}
.page-template-default > main .default-sc1 table thead {
  border: 2px solid var(--novelflare-primary);
  border-bottom: 2px solid var(--theme-gray);
}
.page-template-default > main .default-sc1 table th {
  padding: 6px 8px;
  background-color: var(--novelflare-primary);
  color: var(--theme-white);
}
.page-template-default > main .default-sc1 table td {
  padding: 6px 8px;
  background-color: var(--theme-white);
}
.page-template-default > main .default-sc1 .is-layout-flex {
  gap: clamp(24px, 24px + 16 * (100vw - 550px) / 1050, 40px);
  margin-bottom: clamp(24px, 24px + 16 * (100vw - 550px) / 1050, 40px);
}
.page-template-default > main .default-sc1 hr.wp-block-separator {
  margin: clamp(8px, 8px + 12 * (100vw - 550px) / 1050, 20px) 0;
  background-color: var(--novelflare-secondary);
  width: 100%;
  height: 1px;
  border: none;
}
.page-template-default > main .default-sc1 .has-background {
  padding: 12px 16px;
}
.page-template-default > main .default-sc1 ul, .page-template-default > main .default-sc1 ul.has-background {
  padding: 12px 16px 12px 32px;
}
.page-template-default > main .default-sc1 .wp-block-preformatted {
  border: 1px solid var(--novelflare-secondary);
  background-color: var(--novelflare-background);
  padding: 12px 16px;
}
.page-template-default > main .default-sc1 .wp-block-buttons .wp-block-button a.wp-element-button {
  font-style: unset;
  border-radius: 2px;
  border: 1px solid var(--novelflare-secondary);
  color: var(--theme-white);
  background-color: var(--novelflare-secondary);
  padding: 12px 40px;
  cursor: pointer;
  transition: 0.4s;
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
}
@media (hover: hover) and (pointer: fine) {
  .page-template-default > main .default-sc1 .wp-block-buttons .wp-block-button a.wp-element-button:hover {
    background-color: var(--theme-white);
    color: var(--novelflare-secondary);
  }
}
@media (hover: none) and (pointer: coarse) {
  .page-template-default > main .default-sc1 .wp-block-buttons .wp-block-button a.wp-element-button.is-active {
    background-color: var(--theme-white);
    color: var(--novelflare-secondary);
  }
}
.page-template-default > main .default-sc1 iframe {
  width: 100%;
  height: auto;
  vertical-align: top;
  aspect-ratio: 16/9;
}
.page-template-default > main .default-sc1 .wp-embed-aspect-21-9 {
  width: 100%;
  height: auto;
  aspect-ratio: 21/9;
}
.page-template-default > main .default-sc1 .wp-embed-aspect-2-1, .page-template-default > main .default-sc1 .wp-embed-aspect-18-9 {
  width: 100%;
  height: auto;
  aspect-ratio: 2/1;
}
.page-template-default > main .default-sc1 .wp-embed-aspect-11-6 {
  width: 100%;
  height: auto;
  aspect-ratio: 11/6;
}
.page-template-default > main .default-sc1 .wp-embed-aspect-16-9 {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.page-template-default > main .default-sc1 .wp-embed-aspect-5-3 {
  width: 100%;
  height: auto;
  aspect-ratio: 5/3;
}
.page-template-default > main .default-sc1 .wp-embed-aspect-8-5 {
  width: 100%;
  height: auto;
  aspect-ratio: 8/5;
}
.page-template-default > main .default-sc1 .wp-embed-aspect-3-2 {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
}
.page-template-default > main .default-sc1 .wp-embed-aspect-4-3 {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
}
.page-template-default > main .default-sc1 .wp-embed-aspect-1-1 {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}
.page-template-default > main .default-sc1 .wp-embed-aspect-3-4 {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
}
.page-template-default > main .default-sc1 .wp-embed-aspect-2-3 {
  width: 100%;
  height: auto;
  aspect-ratio: 2/3;
}
.page-template-default > main .default-sc1 .wp-embed-aspect-5-8 {
  width: 100%;
  height: auto;
  aspect-ratio: 5/8;
}
.page-template-default > main .default-sc1 .wp-embed-aspect-3-5 {
  width: 100%;
  height: auto;
  aspect-ratio: 3/5;
}
.page-template-default > main .default-sc1 .wp-embed-aspect-9-16 {
  width: 100%;
  height: auto;
  aspect-ratio: 9/16;
}
.page-template-default > main .default-sc1 .wp-embed-aspect-6-11 {
  width: 100%;
  height: auto;
  aspect-ratio: 6/11;
}
.page-template-default > main .default-sc1 .wp-embed-aspect-1-2, .page-template-default > main .default-sc1 .wp-embed-aspect-9-18 {
  width: 100%;
  height: auto;
  aspect-ratio: 1/2;
}
.page-template-default > main .default-sc1 .wp-embed-aspect-9-21 {
  width: 100%;
  height: auto;
  aspect-ratio: 9/21;
}
.page-template-default > main .default-sc1 .bg-white-opacity-1 {
  background-color: rgba(255, 255, 255, 0.1);
}
.page-template-default > main .default-sc1 .bg-white-opacity-2 {
  background-color: rgba(255, 255, 255, 0.2);
}
.page-template-default > main .default-sc1 .bg-white-opacity-3 {
  background-color: rgba(255, 255, 255, 0.3);
}
.page-template-default > main .default-sc1 .bg-white-opacity-4 {
  background-color: rgba(255, 255, 255, 0.4);
}
.page-template-default > main .default-sc1 .bg-white-opacity-5 {
  background-color: rgba(255, 255, 255, 0.5);
}
.page-template-default > main .default-sc1 .bg-white-opacity-6 {
  background-color: rgba(255, 255, 255, 0.6);
}
.page-template-default > main .default-sc1 .bg-white-opacity-7 {
  background-color: rgba(255, 255, 255, 0.7);
}
.page-template-default > main .default-sc1 .bg-white-opacity-8 {
  background-color: rgba(255, 255, 255, 0.8);
}
.page-template-default > main .default-sc1 .bg-white-opacity-9 {
  background-color: rgba(255, 255, 255, 0.9);
}
.page-template-default > main .default-sc1 .bg-white {
  background-color: vr(--theme-white);
}
.page-template-default > main .default-sc1 .p-0 {
  padding: 0;
}
.page-template-default > main .default-sc1 .p-1 {
  padding: 4px;
}
.page-template-default > main .default-sc1 .p-2 {
  padding: 8px;
}
.page-template-default > main .default-sc1 .p-3 {
  padding: 12px;
}
.page-template-default > main .default-sc1 .p-4 {
  padding: 16px;
}
.page-template-default > main .default-sc1 .p-5 {
  padding: 20px;
}
.page-template-default > main .default-sc1 .p-6 {
  padding: 24px;
}
.page-template-default > main .default-sc1 .p-7 {
  padding: 28px;
}
.page-template-default > main .default-sc1 .p-8 {
  padding: 32px;
}
.page-template-default > main .default-sc1 .p-9 {
  padding: 36px;
}
.page-template-default > main .default-sc1 .p-10 {
  padding: 40px;
}
.page-template-default > main .default-sc1 .px-0 {
  padding-right: 0;
  padding-left: 0;
}
.page-template-default > main .default-sc1 .px-1 {
  padding-right: 4px;
  padding-left: 4px;
}
.page-template-default > main .default-sc1 .px-2 {
  padding-right: 8px;
  padding-left: 8px;
}
.page-template-default > main .default-sc1 .px-3 {
  padding-right: 12px;
  padding-left: 12px;
}
.page-template-default > main .default-sc1 .px-4 {
  padding-right: 16px;
  padding-left: 16px;
}
.page-template-default > main .default-sc1 .px-5 {
  padding-right: 20px;
  padding-left: 20px;
}
.page-template-default > main .default-sc1 .px-6 {
  padding-right: 24px;
  padding-left: 24px;
}
.page-template-default > main .default-sc1 .px-7 {
  padding-right: 28px;
  padding-left: 28px;
}
.page-template-default > main .default-sc1 .px-8 {
  padding-right: 32px;
  padding-left: 32px;
}
.page-template-default > main .default-sc1 .px-9 {
  padding-right: 36px;
  padding-left: 36px;
}
.page-template-default > main .default-sc1 .px-10 {
  padding-right: 40px;
  padding-left: 40px;
}
.page-template-default > main .default-sc1 .px-4-10 {
  padding-right: clamp(16px, 16px + 24 * (100vw - 550px) / 1050, 40px);
  padding-left: clamp(16px, 16px + 24 * (100vw - 550px) / 1050, 40px);
}
.page-template-default > main .default-sc1 .pr-0 {
  padding-right: 0;
}
.page-template-default > main .default-sc1 .pr-1 {
  padding-right: 4px;
}
.page-template-default > main .default-sc1 .pr-2 {
  padding-right: 8px;
}
.page-template-default > main .default-sc1 .pr-3 {
  padding-right: 12px;
}
.page-template-default > main .default-sc1 .pr-4 {
  padding-right: 16px;
}
.page-template-default > main .default-sc1 .pr-5 {
  padding-right: 20px;
}
.page-template-default > main .default-sc1 .pr-6 {
  padding-right: 24px;
}
.page-template-default > main .default-sc1 .pr-7 {
  padding-right: 28px;
}
.page-template-default > main .default-sc1 .pr-8 {
  padding-right: 32px;
}
.page-template-default > main .default-sc1 .pr-9 {
  padding-right: 36px;
}
.page-template-default > main .default-sc1 .pr-10 {
  padding-right: 40px;
}
.page-template-default > main .default-sc1 .pl-0 {
  padding-left: 0;
}
.page-template-default > main .default-sc1 .pl-1 {
  padding-left: 4px;
}
.page-template-default > main .default-sc1 .pl-2 {
  padding-left: 8px;
}
.page-template-default > main .default-sc1 .pl-3 {
  padding-left: 12px;
}
.page-template-default > main .default-sc1 .pl-4 {
  padding-left: 16px;
}
.page-template-default > main .default-sc1 .pl-5 {
  padding-left: 20px;
}
.page-template-default > main .default-sc1 .pl-6 {
  padding-left: 24px;
}
.page-template-default > main .default-sc1 .pl-7 {
  padding-left: 28px;
}
.page-template-default > main .default-sc1 .pl-8 {
  padding-left: 32px;
}
.page-template-default > main .default-sc1 .pl-9 {
  padding-left: 36px;
}
.page-template-default > main .default-sc1 .pl-10 {
  padding-left: 40px;
}
.page-template-default > main .default-sc1 .pb-0 {
  padding-bottom: 0;
}
.page-template-default > main .default-sc1 .pb-1 {
  padding-bottom: 4px;
}
.page-template-default > main .default-sc1 .pb-2 {
  padding-bottom: 8px;
}
.page-template-default > main .default-sc1 .pb-3 {
  padding-bottom: 12px;
}
.page-template-default > main .default-sc1 .pb-4 {
  padding-bottom: 16px;
}
.page-template-default > main .default-sc1 .pb-5 {
  padding-bottom: 20px;
}
.page-template-default > main .default-sc1 .pb-6 {
  padding-bottom: 24px;
}
.page-template-default > main .default-sc1 .pb-7 {
  padding-bottom: 28px;
}
.page-template-default > main .default-sc1 .pb-8 {
  padding-bottom: 32px;
}
.page-template-default > main .default-sc1 .pb-9 {
  padding-bottom: 36px;
}
.page-template-default > main .default-sc1 .pb-10 {
  padding-bottom: 40px;
}
.page-template-default > main .default-sc1 .pt-0 {
  padding-top: 0;
}
.page-template-default > main .default-sc1 .pt-1 {
  padding-top: 4px;
}
.page-template-default > main .default-sc1 .pt-2 {
  padding-top: 8px;
}
.page-template-default > main .default-sc1 .pt-3 {
  padding-top: 12px;
}
.page-template-default > main .default-sc1 .pt-4 {
  padding-top: 16px;
}
.page-template-default > main .default-sc1 .pt-5 {
  padding-top: 20px;
}
.page-template-default > main .default-sc1 .pt-6 {
  padding-top: 24px;
}
.page-template-default > main .default-sc1 .pt-7 {
  padding-top: 28px;
}
.page-template-default > main .default-sc1 .pt-8 {
  padding-top: 32px;
}
.page-template-default > main .default-sc1 .pt-9 {
  padding-top: 36px;
}
.page-template-default > main .default-sc1 .pt-10 {
  padding-top: 40px;
}
.page-template-default > main .default-sc1 .py-0 {
  padding-top: 0;
  padding-bottom: 0;
}
.page-template-default > main .default-sc1 .py-1 {
  padding-top: 4px;
  padding-bottom: 4px;
}
.page-template-default > main .default-sc1 .py-2 {
  padding-top: 8px;
  padding-bottom: 8px;
}
.page-template-default > main .default-sc1 .py-3 {
  padding-top: 12px;
  padding-bottom: 12px;
}
.page-template-default > main .default-sc1 .py-4 {
  padding-top: 16px;
  padding-bottom: 16px;
}
.page-template-default > main .default-sc1 .py-5 {
  padding-top: 20px;
  padding-bottom: 20px;
}
.page-template-default > main .default-sc1 .py-6 {
  padding-top: 24px;
  padding-bottom: 24px;
}
.page-template-default > main .default-sc1 .py-7 {
  padding-top: 28px;
  padding-bottom: 28px;
}
.page-template-default > main .default-sc1 .py-8 {
  padding-top: 32px;
  padding-bottom: 32px;
}
.page-template-default > main .default-sc1 .py-9 {
  padding-top: 36px;
  padding-bottom: 36px;
}
.page-template-default > main .default-sc1 .py-10 {
  padding-top: 40px;
  padding-bottom: 40px;
}
.page-template-default > main .default-sc1 .py-4-8 {
  padding-top: clamp(16px, 16px + 16 * (100vw - 550px) / 1050, 32px);
  padding-bottom: clamp(16px, 16px + 16 * (100vw - 550px) / 1050, 32px);
}
.page-template-default > main .default-sc1 .m-0 {
  margin: 0;
}
.page-template-default > main .default-sc1 .m-1 {
  margin: 4px;
}
.page-template-default > main .default-sc1 .m-2 {
  margin: 8px;
}
.page-template-default > main .default-sc1 .m-3 {
  margin: 12px;
}
.page-template-default > main .default-sc1 .m-4 {
  margin: 16px;
}
.page-template-default > main .default-sc1 .m-5 {
  margin: 20px;
}
.page-template-default > main .default-sc1 .m-6 {
  margin: 24px;
}
.page-template-default > main .default-sc1 .m-7 {
  margin: 28px;
}
.page-template-default > main .default-sc1 .m-8 {
  margin: 32px;
}
.page-template-default > main .default-sc1 .m-9 {
  margin: 36px;
}
.page-template-default > main .default-sc1 .m-10 {
  margin: 40px;
}
.page-template-default > main .default-sc1 .mx-0 {
  margin-right: 0;
  margin-left: 0;
}
.page-template-default > main .default-sc1 .mx-1 {
  margin-right: 4px;
  margin-left: 4px;
}
.page-template-default > main .default-sc1 .mx-2 {
  margin-right: 8px;
  margin-left: 8px;
}
.page-template-default > main .default-sc1 .mx-3 {
  margin-right: 12px;
  margin-left: 12px;
}
.page-template-default > main .default-sc1 .mx-4 {
  margin-right: 16px;
  margin-left: 16px;
}
.page-template-default > main .default-sc1 .mx-5 {
  margin-right: 20px;
  margin-left: 20px;
}
.page-template-default > main .default-sc1 .mx-6 {
  margin-right: 24px;
  margin-left: 24px;
}
.page-template-default > main .default-sc1 .mx-7 {
  margin-right: 28px;
  margin-left: 28px;
}
.page-template-default > main .default-sc1 .mx-8 {
  margin-right: 32px;
  margin-left: 32px;
}
.page-template-default > main .default-sc1 .mx-9 {
  margin-right: 36px;
  margin-left: 36px;
}
.page-template-default > main .default-sc1 .mx-10 {
  margin-right: 40px;
  margin-left: 40px;
}
.page-template-default > main .default-sc1 .mx-4-10 {
  margin-right: clamp(16px, 16px + 24 * (100vw - 550px) / 1050, 40px);
  margin-left: clamp(16px, 16px + 24 * (100vw - 550px) / 1050, 40px);
}
.page-template-default > main .default-sc1 .mr-0 {
  margin-right: 0;
}
.page-template-default > main .default-sc1 .mr-1 {
  margin-right: 4px;
}
.page-template-default > main .default-sc1 .mr-2 {
  margin-right: 8px;
}
.page-template-default > main .default-sc1 .mr-3 {
  margin-right: 12px;
}
.page-template-default > main .default-sc1 .mr-4 {
  margin-right: 16px;
}
.page-template-default > main .default-sc1 .mr-5 {
  margin-right: 20px;
}
.page-template-default > main .default-sc1 .mr-6 {
  margin-right: 24px;
}
.page-template-default > main .default-sc1 .mr-7 {
  margin-right: 28px;
}
.page-template-default > main .default-sc1 .mr-8 {
  margin-right: 32px;
}
.page-template-default > main .default-sc1 .mr-9 {
  margin-right: 36px;
}
.page-template-default > main .default-sc1 .mr-10 {
  margin-right: 40px;
}
.page-template-default > main .default-sc1 .ml-0 {
  margin-left: 0;
}
.page-template-default > main .default-sc1 .ml-1 {
  margin-left: 4px;
}
.page-template-default > main .default-sc1 .ml-2 {
  margin-left: 8px;
}
.page-template-default > main .default-sc1 .ml-3 {
  margin-left: 12px;
}
.page-template-default > main .default-sc1 .ml-4 {
  margin-left: 16px;
}
.page-template-default > main .default-sc1 .ml-5 {
  margin-left: 20px;
}
.page-template-default > main .default-sc1 .ml-6 {
  margin-left: 24px;
}
.page-template-default > main .default-sc1 .ml-7 {
  margin-left: 28px;
}
.page-template-default > main .default-sc1 .ml-8 {
  margin-left: 32px;
}
.page-template-default > main .default-sc1 .ml-9 {
  margin-left: 36px;
}
.page-template-default > main .default-sc1 .ml-10 {
  margin-left: 40px;
}
.page-template-default > main .default-sc1 .mb-0 {
  margin-bottom: 0;
}
.page-template-default > main .default-sc1 .mb-1 {
  margin-bottom: 4px;
}
.page-template-default > main .default-sc1 .mb-2 {
  margin-bottom: 8px;
}
.page-template-default > main .default-sc1 .mb-3 {
  margin-bottom: 12px;
}
.page-template-default > main .default-sc1 .mb-4 {
  margin-bottom: 16px;
}
.page-template-default > main .default-sc1 .mb-5 {
  margin-bottom: 20px;
}
.page-template-default > main .default-sc1 .mb-6 {
  margin-bottom: 24px;
}
.page-template-default > main .default-sc1 .mb-7 {
  margin-bottom: 28px;
}
.page-template-default > main .default-sc1 .mb-8 {
  margin-bottom: 32px;
}
.page-template-default > main .default-sc1 .mb-9 {
  margin-bottom: 36px;
}
.page-template-default > main .default-sc1 .mb-10 {
  margin-bottom: 40px;
}
.page-template-default > main .default-sc1 .mt-0 {
  margin-top: 0;
}
.page-template-default > main .default-sc1 .mt-1 {
  margin-top: 4px;
}
.page-template-default > main .default-sc1 .mt-2 {
  margin-top: 8px;
}
.page-template-default > main .default-sc1 .mt-3 {
  margin-top: 12px;
}
.page-template-default > main .default-sc1 .mt-4 {
  margin-top: 16px;
}
.page-template-default > main .default-sc1 .mt-5 {
  margin-top: 20px;
}
.page-template-default > main .default-sc1 .mt-6 {
  margin-top: 24px;
}
.page-template-default > main .default-sc1 .mt-7 {
  margin-top: 28px;
}
.page-template-default > main .default-sc1 .mt-8 {
  margin-top: 32px;
}
.page-template-default > main .default-sc1 .mt-9 {
  margin-top: 36px;
}
.page-template-default > main .default-sc1 .mt-10 {
  margin-top: 40px;
}
.page-template-default > main .default-sc1 .my-0 {
  margin-top: 0;
  margin-bottom: 0;
}
.page-template-default > main .default-sc1 .my-1 {
  margin-top: 4px;
  margin-bottom: 4px;
}
.page-template-default > main .default-sc1 .my-2 {
  margin-top: 8px;
  margin-bottom: 8px;
}
.page-template-default > main .default-sc1 .my-3 {
  margin-top: 12px;
  margin-bottom: 12px;
}
.page-template-default > main .default-sc1 .my-4 {
  margin-top: 16px;
  margin-bottom: 16px;
}
.page-template-default > main .default-sc1 .my-5 {
  margin-top: 20px;
  margin-bottom: 20px;
}
.page-template-default > main .default-sc1 .my-6 {
  margin-top: 24px;
  margin-bottom: 24px;
}
.page-template-default > main .default-sc1 .my-7 {
  margin-top: 28px;
  margin-bottom: 28px;
}
.page-template-default > main .default-sc1 .my-8 {
  margin-top: 32px;
  margin-bottom: 32px;
}
.page-template-default > main .default-sc1 .my-9 {
  margin-top: 36px;
  margin-bottom: 36px;
}
.page-template-default > main .default-sc1 .my-10 {
  margin-top: 40px;
  margin-bottom: 40px;
}
.page-template-default > main .default-sc1 .my-4-8 {
  margin-top: clamp(16px, 16px + 16 * (100vw - 550px) / 1050, 32px);
  margin-bottom: clamp(16px, 16px + 16 * (100vw - 550px) / 1050, 32px);
}
.page-template-default > main .default-sc1 .radius-0 {
  border-radius: 0;
}
.page-template-default > main .default-sc1 .radius-1 {
  border-radius: 4px;
}
.page-template-default > main .default-sc1 .radius-2 {
  border-radius: 8px;
}
.page-template-default > main .default-sc1 .radius-3 {
  border-radius: 12px;
}
.page-template-default > main .default-sc1 .radius-4 {
  border-radius: 16px;
}
.page-template-default > main .default-sc1 .radius-5 {
  border-radius: 20px;
}
.page-template-default > main .default-sc1 .radius-6 {
  border-radius: 24px;
}
.page-template-default > main .default-sc1 .radius-7 {
  border-radius: 28px;
}
.page-template-default > main .default-sc1 .radius-8 {
  border-radius: 32px;
}
.page-template-default > main .default-sc1 .radius-9 {
  border-radius: 36px;
}
.page-template-default > main .default-sc1 .radius-10 {
  border-radius: 40px;
}
.page-template-default > main .default-sc1 .border-none {
  border: none;
}

/*--------------------------------------------
    NEWS 一覧画面
--------------------------------------------*/
body.blog > main .sc-blog-home,
body.category > main .sc-blog-home {
  width: min(1400px, 93%);
  margin: 0 auto;
}
body.blog > main .sc-blog-home .tag-list,
body.category > main .sc-blog-home .tag-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}
body.blog > main .sc-blog-home .tag-list .tag,
body.category > main .sc-blog-home .tag-list .tag {
  font-size: 13px;
  border: 1px solid var(--theme-light-gray);
  background-color: var(--theme-white-green);
  display: grid;
  place-items: center;
  padding: 6px 8px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--theme-deep-gray);
  transition: 0.4s;
}
@media (hover: hover) and (pointer: fine) {
  body.blog > main .sc-blog-home .tag-list .tag:hover,
  body.category > main .sc-blog-home .tag-list .tag:hover {
    background-color: var(--theme-green);
    color: var(--theme-white);
  }
}
@media (hover: none) and (pointer: coarse) {
  body.blog > main .sc-blog-home .tag-list .tag.is-active,
  body.category > main .sc-blog-home .tag-list .tag.is-active {
    background-color: var(--theme-green);
    color: var(--theme-white);
  }
}
body.blog > main .sc-blog-home .header,
body.category > main .sc-blog-home .header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
body.blog > main .sc-blog-home .header h2,
body.category > main .sc-blog-home .header h2 {
  letter-spacing: 0.2em;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 500;
  line-height: 1.7;
}
body.blog > main .sc-blog-home .header nav > .category,
body.category > main .sc-blog-home .header nav > .category {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 4px 24px;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 32px;
  font-size: 15px;
  line-height: 1.75;
}
body.blog > main .sc-blog-home .header nav > .category li,
body.category > main .sc-blog-home .header nav > .category li {
  position: relative;
}
body.blog > main .sc-blog-home .header nav > .category li::after,
body.category > main .sc-blog-home .header nav > .category li::after {
  content: "";
  position: absolute;
  display: inline-block;
  height: 2px;
  width: 0;
  border-radius: 1px;
  bottom: -2px;
  left: 50%;
  background-color: var(--theme-green);
  transform: translate(-50%, 0);
  transition: 0.4s;
}
@media (hover: hover) and (pointer: fine) {
  body.blog > main .sc-blog-home .header nav > .category li:hover::after,
  body.category > main .sc-blog-home .header nav > .category li:hover::after {
    width: 100%;
  }
}
@media (hover: none) and (pointer: coarse) {
  body.blog > main .sc-blog-home .header nav > .category li.is-active::after,
  body.category > main .sc-blog-home .header nav > .category li.is-active::after {
    width: 100%;
  }
}
body.blog > main .sc-blog-home .header nav > .category li a[aria-current=page],
body.category > main .sc-blog-home .header nav > .category li a[aria-current=page] {
  color: var(--theme-deep-green);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
}
body.blog > main .sc-blog-home .content-wrapper,
body.category > main .sc-blog-home .content-wrapper {
  border-top: 2px solid var(--theme-deep-green);
  display: flex;
  flex-direction: row;
  overflow-y: hidden;
  gap: 4px;
}
body.blog > main .sc-blog-home .content-wrapper .main-content,
body.category > main .sc-blog-home .content-wrapper .main-content {
  display: flex;
  flex-direction: column;
  width: 320px;
  flex-grow: 1;
  position: relative;
}
body.blog > main .sc-blog-home .content-wrapper .main-content .article-list,
body.category > main .sc-blog-home .content-wrapper .main-content .article-list {
  display: flex;
  flex-direction: column;
  padding-top: 12px;
  max-height: 80vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--theme-white-green) var(--theme-white);
  /* Chrome, Edge, Safari 用 */
}
body.blog > main .sc-blog-home .content-wrapper .main-content .article-list::-webkit-scrollbar,
body.category > main .sc-blog-home .content-wrapper .main-content .article-list::-webkit-scrollbar {
  width: 6px !important;
  height: 6px !important;
}
body.blog > main .sc-blog-home .content-wrapper .main-content .article-list::-webkit-scrollbar-track,
body.category > main .sc-blog-home .content-wrapper .main-content .article-list::-webkit-scrollbar-track {
  background: var(--theme-white);
}
body.blog > main .sc-blog-home .content-wrapper .main-content .article-list::-webkit-scrollbar-thumb,
body.category > main .sc-blog-home .content-wrapper .main-content .article-list::-webkit-scrollbar-thumb {
  background: var(--theme-light-green);
}
body.blog > main .sc-blog-home .content-wrapper .main-content .article-list::-webkit-scrollbar-thumb:hover,
body.category > main .sc-blog-home .content-wrapper .main-content .article-list::-webkit-scrollbar-thumb:hover {
  background: var(--theme-white-green);
}
body.blog > main .sc-blog-home .content-wrapper .main-content .article-list .item,
body.category > main .sc-blog-home .content-wrapper .main-content .article-list .item {
  width: 100%;
  position: relative;
  padding: 24px 12px 24px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
body.blog > main .sc-blog-home .content-wrapper .main-content .article-list .item:not(:last-child),
body.category > main .sc-blog-home .content-wrapper .main-content .article-list .item:not(:last-child) {
  border-bottom: 1px solid var(--theme-gray);
}
body.blog > main .sc-blog-home .content-wrapper .main-content .article-list .item .thumbnail,
body.category > main .sc-blog-home .content-wrapper .main-content .article-list .item .thumbnail {
  display: none;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 2/1;
  vertical-align: top;
}
body.blog > main .sc-blog-home .content-wrapper .main-content .article-list .item h2,
body.category > main .sc-blog-home .content-wrapper .main-content .article-list .item h2 {
  flex-grow: 1;
  width: 100%;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--theme-black);
  text-decoration: underline;
  text-decoration-color: var(--theme-light-green);
}
body.blog > main .sc-blog-home .content-wrapper .main-content .article-list .item p,
body.category > main .sc-blog-home .content-wrapper .main-content .article-list .item p {
  font-size: 13px;
}
body.blog > main .sc-blog-home .content-wrapper .main-content .article-list .item .meta,
body.category > main .sc-blog-home .content-wrapper .main-content .article-list .item .meta {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 8px;
}
body.blog > main .sc-blog-home .content-wrapper .main-content .article-list .item .meta time,
body.category > main .sc-blog-home .content-wrapper .main-content .article-list .item .meta time {
  flex-grow: 1;
  font-size: 13px;
  width: 200px;
}
body.blog > main .sc-blog-home .content-wrapper .main-content .article-list .item .meta a,
body.category > main .sc-blog-home .content-wrapper .main-content .article-list .item .meta a {
  display: grid;
  place-items: center;
  width: 160px;
  padding: 4px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--theme-green);
  background-color: var(--theme-green);
  color: var(--theme-white);
  transition: 0.4s;
}
@media (hover: hover) and (pointer: fine) {
  body.blog > main .sc-blog-home .content-wrapper .main-content .article-list .item .meta a:hover,
  body.category > main .sc-blog-home .content-wrapper .main-content .article-list .item .meta a:hover {
    background-color: transparent;
    color: var(--theme-green);
  }
}
@media (hover: none) and (pointer: coarse) {
  body.blog > main .sc-blog-home .content-wrapper .main-content .article-list .item .meta a.is-active,
  body.category > main .sc-blog-home .content-wrapper .main-content .article-list .item .meta a.is-active {
    background-color: transparent;
    color: var(--theme-green);
  }
}
body.blog > main .sc-blog-home .content-wrapper .main-content .pagination-box,
body.category > main .sc-blog-home .content-wrapper .main-content .pagination-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-top: 40px;
}
body.blog > main .sc-blog-home .content-wrapper .main-content .pagination-box a,
body.category > main .sc-blog-home .content-wrapper .main-content .pagination-box a {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
  letter-spacing: 0;
  border: 1px solid var(--theme-green);
  background-color: rgba(var(--theme-green-rgb), 0.05);
  color: var(--theme-deep-green);
}
body.blog > main .sc-blog-home .content-wrapper .main-content .pagination-box .current,
body.category > main .sc-blog-home .content-wrapper .main-content .pagination-box .current {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
  letter-spacing: 0;
  background-color: var(--theme-green);
  color: var(--theme-white);
}
body.blog > main .sc-blog-home .content-wrapper .side-menu,
body.category > main .sc-blog-home .content-wrapper .side-menu {
  margin-top: 12px;
  padding: 16px 12px 40px 12px;
  width: 420px;
  background-color: rgba(255, 255, 255, 0.6);
  display: flex;
  flex-direction: column;
  gap: 12px;
  resize: both;
  position: relative;
}
body.blog > main .sc-blog-home .content-wrapper .side-menu .img-wrapper,
body.category > main .sc-blog-home .content-wrapper .side-menu .img-wrapper {
  width: 100%;
  height: auto;
  aspect-ratio: 2/1;
  overflow: hidden;
}
body.blog > main .sc-blog-home .content-wrapper .side-menu .img-wrapper img,
body.category > main .sc-blog-home .content-wrapper .side-menu .img-wrapper img {
  transition: opacity 0.5s ease-in-out;
  opacity: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: top;
}
body.blog > main .sc-blog-home .content-wrapper .side-menu .img-wrapper img.fade-out,
body.category > main .sc-blog-home .content-wrapper .side-menu .img-wrapper img.fade-out {
  opacity: 0;
}
body.blog > main .sc-blog-home .content-wrapper .side-menu .accordion .header,
body.category > main .sc-blog-home .content-wrapper .side-menu .accordion .header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 32px 8px 8px;
  border-bottom: 1px solid var(--theme-gray);
  cursor: pointer;
  letter-spacing: 0.2em;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 500;
  position: relative;
}
body.blog > main .sc-blog-home .content-wrapper .side-menu .accordion .header::after,
body.category > main .sc-blog-home .content-wrapper .side-menu .accordion .header::after {
  display: inline-block;
  border-radius: 4px;
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translate(0, -50%);
  width: 14px;
  height: 9px;
  background-color: var(--theme-deep-gray);
  transition: all 0.3s ease-in-out;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}
body.blog > main .sc-blog-home .content-wrapper .side-menu .accordion .header.active::after,
body.category > main .sc-blog-home .content-wrapper .side-menu .accordion .header.active::after {
  -webkit-clip-path: polygon(0 100%, 100% 100%, 50% 0);
          clip-path: polygon(0 100%, 100% 100%, 50% 0);
}
body.blog > main .sc-blog-home .content-wrapper .side-menu .accordion .header .svg-box,
body.category > main .sc-blog-home .content-wrapper .side-menu .accordion .header .svg-box {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
}
body.blog > main .sc-blog-home .content-wrapper .side-menu .accordion .header .svg-box svg,
body.category > main .sc-blog-home .content-wrapper .side-menu .accordion .header .svg-box svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  color: var(--theme-deep-green);
  vertical-align: top;
}
body.blog > main .sc-blog-home .content-wrapper .side-menu .accordion .content .item,
body.category > main .sc-blog-home .content-wrapper .side-menu .accordion .content .item {
  padding: 12px 0 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
body.blog > main .sc-blog-home .content-wrapper .side-menu .accordion .content .item:not(:last-of-type),
body.category > main .sc-blog-home .content-wrapper .side-menu .accordion .content .item:not(:last-of-type) {
  border-bottom: 1px solid var(--theme-light-gray);
}
body.blog > main .sc-blog-home .content-wrapper .side-menu .accordion .content .item a h3,
body.category > main .sc-blog-home .content-wrapper .side-menu .accordion .content .item a h3 {
  color: var(--theme-black);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--theme-light-green);
  transition: 0.4s;
}
@media (hover: hover) and (pointer: fine) {
  body.blog > main .sc-blog-home .content-wrapper .side-menu .accordion .content .item a h3:hover,
  body.category > main .sc-blog-home .content-wrapper .side-menu .accordion .content .item a h3:hover {
    color: var(--theme-deep-green);
  }
}
@media (hover: none) and (pointer: coarse) {
  body.blog > main .sc-blog-home .content-wrapper .side-menu .accordion .content .item a h3.is-active,
  body.category > main .sc-blog-home .content-wrapper .side-menu .accordion .content .item a h3.is-active {
    color: var(--theme-deep-green);
  }
}
body.blog > main .sc-blog-home .content-wrapper .side-menu .accordion .content .item .tag-list,
body.category > main .sc-blog-home .content-wrapper .side-menu .accordion .content .item .tag-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
body.blog > main .sc-blog-home .content-wrapper .side-menu .accordion .content .item time,
body.category > main .sc-blog-home .content-wrapper .side-menu .accordion .content .item time {
  font-size: 13px;
  width: 100%;
}
body.blog > main .sc-blog-home .content-wrapper .side-menu .accordion .content .tags,
body.category > main .sc-blog-home .content-wrapper .side-menu .accordion .content .tags {
  padding: 12px 0 12px 16px;
}
@media (max-width: 1032px) {
  body.blog > main .sc-blog-home .content-wrapper > .side-menu,
  body.category > main .sc-blog-home .content-wrapper > .side-menu {
    width: 300px;
  }
  body.blog > main .sc-blog-home .content-wrapper > .side-menu .accordion .header,
  body.category > main .sc-blog-home .content-wrapper > .side-menu .accordion .header {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.2em;
    font-weight: 500;
    gap: 4px;
  }
  body.blog > main .sc-blog-home .content-wrapper > .side-menu .accordion .header .svg-box,
  body.category > main .sc-blog-home .content-wrapper > .side-menu .accordion .header .svg-box {
    width: 20px;
    height: 20px;
  }
  body.blog > main .sc-blog-home .content-wrapper > .side-menu .accordion .content .item,
  body.category > main .sc-blog-home .content-wrapper > .side-menu .accordion .content .item {
    padding: 8px 0 8px 8px;
  }
  body.blog > main .sc-blog-home .content-wrapper > .side-menu .accordion .content .item a > h3,
  body.category > main .sc-blog-home .content-wrapper > .side-menu .accordion .content .item a > h3 {
    font-size: 13px;
    font-weight: 500;
  }
  body.blog > main .sc-blog-home .content-wrapper > .side-menu .accordion .content .item .tag-list,
  body.category > main .sc-blog-home .content-wrapper > .side-menu .accordion .content .item .tag-list {
    gap: 6px;
  }
  body.blog > main .sc-blog-home .content-wrapper > .side-menu .accordion .content .item .tag-list li > a,
  body.category > main .sc-blog-home .content-wrapper > .side-menu .accordion .content .item .tag-list li > a {
    padding: 4px;
    font-size: 12px;
  }
  body.blog > main .sc-blog-home .content-wrapper > .side-menu .accordion .content .item .meta > time,
  body.category > main .sc-blog-home .content-wrapper > .side-menu .accordion .content .item .meta > time {
    font-size: 12px;
    font-weight: 500;
  }
}
@media (max-width: 780px) {
  body.blog > main .sc-blog-home .header > nav > .category,
  body.category > main .sc-blog-home .header > nav > .category {
    gap: 4px 16px;
  }
  body.blog > main .sc-blog-home .content-wrapper,
  body.category > main .sc-blog-home .content-wrapper {
    flex-direction: column;
    gap: 40px;
  }
  body.blog > main .sc-blog-home .content-wrapper .main-content,
  body.category > main .sc-blog-home .content-wrapper .main-content {
    width: 100%;
  }
  body.blog > main .sc-blog-home .content-wrapper .main-content .article-list > .item .thumbnail,
  body.category > main .sc-blog-home .content-wrapper .main-content .article-list > .item .thumbnail {
    display: inline-block;
  }
  body.blog > main .sc-blog-home .content-wrapper .main-content .article-list > .item .meta > time,
  body.category > main .sc-blog-home .content-wrapper .main-content .article-list > .item .meta > time {
    width: 100%;
  }
  body.blog > main .sc-blog-home .content-wrapper .side-menu,
  body.category > main .sc-blog-home .content-wrapper .side-menu {
    width: 100%;
  }
  body.blog > main .sc-blog-home .content-wrapper .side-menu .img-wrapper,
  body.category > main .sc-blog-home .content-wrapper .side-menu .img-wrapper {
    display: none;
  }
}
@media (max-width: 550px) {
  body.blog > main .sc-blog-home .header h2,
  body.category > main .sc-blog-home .header h2 {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.2em;
    font-weight: 500;
  }
  body.blog > main .sc-blog-home .header nav > .category > li > a,
  body.category > main .sc-blog-home .header nav > .category > li > a {
    font-size: 13px;
  }
  body.blog > main .sc-blog-home .header nav > .category > li > a[aria-current=page],
  body.category > main .sc-blog-home .header nav > .category > li > a[aria-current=page] {
    font-size: 13px;
    font-weight: 500;
  }
  body.blog > main .sc-blog-home .content-wrapper .main-content,
  body.category > main .sc-blog-home .content-wrapper .main-content {
    width: 100%;
  }
  body.blog > main .sc-blog-home .content-wrapper .main-content .article-list,
  body.category > main .sc-blog-home .content-wrapper .main-content .article-list {
    padding-top: 0;
  }
  body.blog > main .sc-blog-home .content-wrapper .main-content .article-list .item,
  body.category > main .sc-blog-home .content-wrapper .main-content .article-list .item {
    padding: 12px 12px 12px 0;
  }
  body.blog > main .sc-blog-home .content-wrapper .main-content .article-list .item h2,
  body.category > main .sc-blog-home .content-wrapper .main-content .article-list .item h2 {
    font-size: 13px;
    font-weight: 500;
  }
  body.blog > main .sc-blog-home .content-wrapper .main-content .article-list .item p,
  body.category > main .sc-blog-home .content-wrapper .main-content .article-list .item p {
    font-size: 12px;
  }
  body.blog > main .sc-blog-home .content-wrapper .main-content .article-list .item .meta,
  body.category > main .sc-blog-home .content-wrapper .main-content .article-list .item .meta {
    display: flex;
    flex-direction: column;
  }
  body.blog > main .sc-blog-home .content-wrapper .main-content .article-list .item .meta time,
  body.category > main .sc-blog-home .content-wrapper .main-content .article-list .item .meta time {
    font-size: 12px;
  }
}

/*--------------------------------------------
    NEWS 個別記事画面
--------------------------------------------*/
body.single > main .single-sc1 {
  width: min(1400px, 93%);
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.75;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
body.single > main .single-sc1 .tag-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}
body.single > main .single-sc1 .tag-list .tag {
  font-size: 13px;
  border: 1px solid var(--theme-light-gray);
  background-color: var(--theme-white-green);
  display: grid;
  place-items: center;
  padding: 6px 8px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--theme-deep-gray);
  transition: 0.4s;
}
@media (hover: hover) and (pointer: fine) {
  body.single > main .single-sc1 .tag-list .tag:hover {
    background-color: var(--theme-green);
    color: var(--theme-white);
  }
}
@media (hover: none) and (pointer: coarse) {
  body.single > main .single-sc1 .tag-list .tag.is-active {
    background-color: var(--theme-green);
    color: var(--theme-white);
  }
}
@media (max-width: 780px) {
  body.single > main .single-sc1 {
    font-size: 13px;
  }
}
body.single > main .single-sc1 p {
  padding-left: 6px;
  margin-bottom: 8px;
}
body.single > main .single-sc1 h1 {
  font-family: "Noto Serif JP";
  font-size: 28px;
  line-height: 1.35;
  letter-spacing: 0.25em;
  font-weight: 500;
  padding-bottom: 0;
  margin-bottom: 16px;
}
@media (max-width: 780px) {
  body.single > main .single-sc1 h1 {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.2em;
    font-weight: 500;
  }
}
body.single > main .single-sc1 h2 {
  font-family: "Noto Serif JP";
  font-size: 28px;
  line-height: 1.35;
  letter-spacing: 0.25em;
  font-weight: 500;
  margin: 12px 0 20px;
  padding: 16px 0 16px 18px;
  color: var(--novelflare-primary);
  border-left: 4px solid var(--novelflare-primary);
}
@media (max-width: 780px) {
  body.single > main .single-sc1 h2 {
    padding: 6px 0 6px 8px;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 500;
  }
}
body.single > main .single-sc1 h3 {
  font-family: "Noto Serif JP";
  display: inline-block;
  color: var(--novelflare-primary);
  border-bottom: 2px solid var(--novelflare-secondary);
  margin: 12px 0 20px;
  padding: 6px 12px 0 4px;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 500;
}
@media (max-width: 780px) {
  body.single > main .single-sc1 h3 {
    font-size: 15px;
    line-height: 1.75;
    font-weight: 500;
  }
}
body.single > main .single-sc1 h4 {
  font-family: "Noto Serif JP";
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
  margin-bottom: 8px;
}
@media (max-width: 780px) {
  body.single > main .single-sc1 h4 {
    font-size: 13px;
    font-weight: 500;
  }
}
body.single > main .single-sc1 ul, body.single > main .single-sc1 ol {
  margin-bottom: 1em;
  padding: 4px 4px 4px 44px;
}
body.single > main .single-sc1 ul li, body.single > main .single-sc1 ol li {
  all: revert;
  margin-block-start: 0.2em;
  margin-block-end: 0.2em;
}
body.single > main .single-sc1 ul {
  list-style-type: disc;
}
body.single > main .single-sc1 ol {
  list-style-type: decimal;
}
body.single > main .single-sc1 a {
  word-break: break-word;
  color: -webkit-link;
  cursor: pointer;
}
body.single > main .single-sc1 strong {
  font-weight: 600;
  font-size: 1em;
  letter-spacing: 1px;
  color: var(--novelflare-accent);
}
body.single > main .single-sc1 em {
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
body.single > main .single-sc1 figure figcaption {
  text-align: center;
}
body.single > main .single-sc1 table {
  border-collapse: collapse;
}
body.single > main .single-sc1 table thead {
  border: 2px solid var(--novelflare-primary);
  border-bottom: 2px solid var(--theme-gray);
}
body.single > main .single-sc1 table th {
  padding: 6px 8px;
  background-color: var(--novelflare-primary);
  color: var(--theme-white);
}
body.single > main .single-sc1 table td {
  padding: 6px 8px;
  background-color: var(--theme-white);
}
body.single > main .single-sc1 .is-layout-flex {
  gap: clamp(24px, 24px + 16 * (100vw - 550px) / 1050, 40px);
  margin-bottom: clamp(24px, 24px + 16 * (100vw - 550px) / 1050, 40px);
}
body.single > main .single-sc1 hr.wp-block-separator {
  margin: clamp(8px, 8px + 12 * (100vw - 550px) / 1050, 20px) 0;
  background-color: var(--novelflare-secondary);
  width: 100%;
  height: 1px;
  border: none;
}
body.single > main .single-sc1 .has-background {
  padding: 12px 16px;
}
body.single > main .single-sc1 ul, body.single > main .single-sc1 ul.has-background {
  padding: 12px 16px 12px 32px;
}
body.single > main .single-sc1 .wp-block-preformatted {
  border: 1px solid var(--novelflare-secondary);
  background-color: var(--novelflare-background);
  padding: 12px 16px;
}
body.single > main .single-sc1 .wp-block-buttons .wp-block-button a.wp-element-button {
  font-style: unset;
  border-radius: 2px;
  border: 1px solid var(--novelflare-secondary);
  color: var(--theme-white);
  background-color: var(--novelflare-secondary);
  padding: 12px 40px;
  cursor: pointer;
  transition: 0.4s;
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
}
@media (hover: hover) and (pointer: fine) {
  body.single > main .single-sc1 .wp-block-buttons .wp-block-button a.wp-element-button:hover {
    background-color: var(--theme-white);
    color: var(--novelflare-secondary);
  }
}
@media (hover: none) and (pointer: coarse) {
  body.single > main .single-sc1 .wp-block-buttons .wp-block-button a.wp-element-button.is-active {
    background-color: var(--theme-white);
    color: var(--novelflare-secondary);
  }
}
body.single > main .single-sc1 iframe {
  width: 100%;
  height: auto;
  vertical-align: top;
  aspect-ratio: 16/9;
}
body.single > main .single-sc1 .wp-embed-aspect-21-9 {
  width: 100%;
  height: auto;
  aspect-ratio: 21/9;
}
body.single > main .single-sc1 .wp-embed-aspect-2-1, body.single > main .single-sc1 .wp-embed-aspect-18-9 {
  width: 100%;
  height: auto;
  aspect-ratio: 2/1;
}
body.single > main .single-sc1 .wp-embed-aspect-11-6 {
  width: 100%;
  height: auto;
  aspect-ratio: 11/6;
}
body.single > main .single-sc1 .wp-embed-aspect-16-9 {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
body.single > main .single-sc1 .wp-embed-aspect-5-3 {
  width: 100%;
  height: auto;
  aspect-ratio: 5/3;
}
body.single > main .single-sc1 .wp-embed-aspect-8-5 {
  width: 100%;
  height: auto;
  aspect-ratio: 8/5;
}
body.single > main .single-sc1 .wp-embed-aspect-3-2 {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
}
body.single > main .single-sc1 .wp-embed-aspect-4-3 {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
}
body.single > main .single-sc1 .wp-embed-aspect-1-1 {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}
body.single > main .single-sc1 .wp-embed-aspect-3-4 {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
}
body.single > main .single-sc1 .wp-embed-aspect-2-3 {
  width: 100%;
  height: auto;
  aspect-ratio: 2/3;
}
body.single > main .single-sc1 .wp-embed-aspect-5-8 {
  width: 100%;
  height: auto;
  aspect-ratio: 5/8;
}
body.single > main .single-sc1 .wp-embed-aspect-3-5 {
  width: 100%;
  height: auto;
  aspect-ratio: 3/5;
}
body.single > main .single-sc1 .wp-embed-aspect-9-16 {
  width: 100%;
  height: auto;
  aspect-ratio: 9/16;
}
body.single > main .single-sc1 .wp-embed-aspect-6-11 {
  width: 100%;
  height: auto;
  aspect-ratio: 6/11;
}
body.single > main .single-sc1 .wp-embed-aspect-1-2, body.single > main .single-sc1 .wp-embed-aspect-9-18 {
  width: 100%;
  height: auto;
  aspect-ratio: 1/2;
}
body.single > main .single-sc1 .wp-embed-aspect-9-21 {
  width: 100%;
  height: auto;
  aspect-ratio: 9/21;
}
body.single > main .single-sc1 .bg-white-opacity-1 {
  background-color: rgba(255, 255, 255, 0.1);
}
body.single > main .single-sc1 .bg-white-opacity-2 {
  background-color: rgba(255, 255, 255, 0.2);
}
body.single > main .single-sc1 .bg-white-opacity-3 {
  background-color: rgba(255, 255, 255, 0.3);
}
body.single > main .single-sc1 .bg-white-opacity-4 {
  background-color: rgba(255, 255, 255, 0.4);
}
body.single > main .single-sc1 .bg-white-opacity-5 {
  background-color: rgba(255, 255, 255, 0.5);
}
body.single > main .single-sc1 .bg-white-opacity-6 {
  background-color: rgba(255, 255, 255, 0.6);
}
body.single > main .single-sc1 .bg-white-opacity-7 {
  background-color: rgba(255, 255, 255, 0.7);
}
body.single > main .single-sc1 .bg-white-opacity-8 {
  background-color: rgba(255, 255, 255, 0.8);
}
body.single > main .single-sc1 .bg-white-opacity-9 {
  background-color: rgba(255, 255, 255, 0.9);
}
body.single > main .single-sc1 .bg-white {
  background-color: vr(--theme-white);
}
body.single > main .single-sc1 .p-0 {
  padding: 0;
}
body.single > main .single-sc1 .p-1 {
  padding: 4px;
}
body.single > main .single-sc1 .p-2 {
  padding: 8px;
}
body.single > main .single-sc1 .p-3 {
  padding: 12px;
}
body.single > main .single-sc1 .p-4 {
  padding: 16px;
}
body.single > main .single-sc1 .p-5 {
  padding: 20px;
}
body.single > main .single-sc1 .p-6 {
  padding: 24px;
}
body.single > main .single-sc1 .p-7 {
  padding: 28px;
}
body.single > main .single-sc1 .p-8 {
  padding: 32px;
}
body.single > main .single-sc1 .p-9 {
  padding: 36px;
}
body.single > main .single-sc1 .p-10 {
  padding: 40px;
}
body.single > main .single-sc1 .px-0 {
  padding-right: 0;
  padding-left: 0;
}
body.single > main .single-sc1 .px-1 {
  padding-right: 4px;
  padding-left: 4px;
}
body.single > main .single-sc1 .px-2 {
  padding-right: 8px;
  padding-left: 8px;
}
body.single > main .single-sc1 .px-3 {
  padding-right: 12px;
  padding-left: 12px;
}
body.single > main .single-sc1 .px-4 {
  padding-right: 16px;
  padding-left: 16px;
}
body.single > main .single-sc1 .px-5 {
  padding-right: 20px;
  padding-left: 20px;
}
body.single > main .single-sc1 .px-6 {
  padding-right: 24px;
  padding-left: 24px;
}
body.single > main .single-sc1 .px-7 {
  padding-right: 28px;
  padding-left: 28px;
}
body.single > main .single-sc1 .px-8 {
  padding-right: 32px;
  padding-left: 32px;
}
body.single > main .single-sc1 .px-9 {
  padding-right: 36px;
  padding-left: 36px;
}
body.single > main .single-sc1 .px-10 {
  padding-right: 40px;
  padding-left: 40px;
}
body.single > main .single-sc1 .px-4-10 {
  padding-right: clamp(16px, 16px + 24 * (100vw - 550px) / 1050, 40px);
  padding-left: clamp(16px, 16px + 24 * (100vw - 550px) / 1050, 40px);
}
body.single > main .single-sc1 .pr-0 {
  padding-right: 0;
}
body.single > main .single-sc1 .pr-1 {
  padding-right: 4px;
}
body.single > main .single-sc1 .pr-2 {
  padding-right: 8px;
}
body.single > main .single-sc1 .pr-3 {
  padding-right: 12px;
}
body.single > main .single-sc1 .pr-4 {
  padding-right: 16px;
}
body.single > main .single-sc1 .pr-5 {
  padding-right: 20px;
}
body.single > main .single-sc1 .pr-6 {
  padding-right: 24px;
}
body.single > main .single-sc1 .pr-7 {
  padding-right: 28px;
}
body.single > main .single-sc1 .pr-8 {
  padding-right: 32px;
}
body.single > main .single-sc1 .pr-9 {
  padding-right: 36px;
}
body.single > main .single-sc1 .pr-10 {
  padding-right: 40px;
}
body.single > main .single-sc1 .pl-0 {
  padding-left: 0;
}
body.single > main .single-sc1 .pl-1 {
  padding-left: 4px;
}
body.single > main .single-sc1 .pl-2 {
  padding-left: 8px;
}
body.single > main .single-sc1 .pl-3 {
  padding-left: 12px;
}
body.single > main .single-sc1 .pl-4 {
  padding-left: 16px;
}
body.single > main .single-sc1 .pl-5 {
  padding-left: 20px;
}
body.single > main .single-sc1 .pl-6 {
  padding-left: 24px;
}
body.single > main .single-sc1 .pl-7 {
  padding-left: 28px;
}
body.single > main .single-sc1 .pl-8 {
  padding-left: 32px;
}
body.single > main .single-sc1 .pl-9 {
  padding-left: 36px;
}
body.single > main .single-sc1 .pl-10 {
  padding-left: 40px;
}
body.single > main .single-sc1 .pb-0 {
  padding-bottom: 0;
}
body.single > main .single-sc1 .pb-1 {
  padding-bottom: 4px;
}
body.single > main .single-sc1 .pb-2 {
  padding-bottom: 8px;
}
body.single > main .single-sc1 .pb-3 {
  padding-bottom: 12px;
}
body.single > main .single-sc1 .pb-4 {
  padding-bottom: 16px;
}
body.single > main .single-sc1 .pb-5 {
  padding-bottom: 20px;
}
body.single > main .single-sc1 .pb-6 {
  padding-bottom: 24px;
}
body.single > main .single-sc1 .pb-7 {
  padding-bottom: 28px;
}
body.single > main .single-sc1 .pb-8 {
  padding-bottom: 32px;
}
body.single > main .single-sc1 .pb-9 {
  padding-bottom: 36px;
}
body.single > main .single-sc1 .pb-10 {
  padding-bottom: 40px;
}
body.single > main .single-sc1 .pt-0 {
  padding-top: 0;
}
body.single > main .single-sc1 .pt-1 {
  padding-top: 4px;
}
body.single > main .single-sc1 .pt-2 {
  padding-top: 8px;
}
body.single > main .single-sc1 .pt-3 {
  padding-top: 12px;
}
body.single > main .single-sc1 .pt-4 {
  padding-top: 16px;
}
body.single > main .single-sc1 .pt-5 {
  padding-top: 20px;
}
body.single > main .single-sc1 .pt-6 {
  padding-top: 24px;
}
body.single > main .single-sc1 .pt-7 {
  padding-top: 28px;
}
body.single > main .single-sc1 .pt-8 {
  padding-top: 32px;
}
body.single > main .single-sc1 .pt-9 {
  padding-top: 36px;
}
body.single > main .single-sc1 .pt-10 {
  padding-top: 40px;
}
body.single > main .single-sc1 .py-0 {
  padding-top: 0;
  padding-bottom: 0;
}
body.single > main .single-sc1 .py-1 {
  padding-top: 4px;
  padding-bottom: 4px;
}
body.single > main .single-sc1 .py-2 {
  padding-top: 8px;
  padding-bottom: 8px;
}
body.single > main .single-sc1 .py-3 {
  padding-top: 12px;
  padding-bottom: 12px;
}
body.single > main .single-sc1 .py-4 {
  padding-top: 16px;
  padding-bottom: 16px;
}
body.single > main .single-sc1 .py-5 {
  padding-top: 20px;
  padding-bottom: 20px;
}
body.single > main .single-sc1 .py-6 {
  padding-top: 24px;
  padding-bottom: 24px;
}
body.single > main .single-sc1 .py-7 {
  padding-top: 28px;
  padding-bottom: 28px;
}
body.single > main .single-sc1 .py-8 {
  padding-top: 32px;
  padding-bottom: 32px;
}
body.single > main .single-sc1 .py-9 {
  padding-top: 36px;
  padding-bottom: 36px;
}
body.single > main .single-sc1 .py-10 {
  padding-top: 40px;
  padding-bottom: 40px;
}
body.single > main .single-sc1 .py-4-8 {
  padding-top: clamp(16px, 16px + 16 * (100vw - 550px) / 1050, 32px);
  padding-bottom: clamp(16px, 16px + 16 * (100vw - 550px) / 1050, 32px);
}
body.single > main .single-sc1 .m-0 {
  margin: 0;
}
body.single > main .single-sc1 .m-1 {
  margin: 4px;
}
body.single > main .single-sc1 .m-2 {
  margin: 8px;
}
body.single > main .single-sc1 .m-3 {
  margin: 12px;
}
body.single > main .single-sc1 .m-4 {
  margin: 16px;
}
body.single > main .single-sc1 .m-5 {
  margin: 20px;
}
body.single > main .single-sc1 .m-6 {
  margin: 24px;
}
body.single > main .single-sc1 .m-7 {
  margin: 28px;
}
body.single > main .single-sc1 .m-8 {
  margin: 32px;
}
body.single > main .single-sc1 .m-9 {
  margin: 36px;
}
body.single > main .single-sc1 .m-10 {
  margin: 40px;
}
body.single > main .single-sc1 .mx-0 {
  margin-right: 0;
  margin-left: 0;
}
body.single > main .single-sc1 .mx-1 {
  margin-right: 4px;
  margin-left: 4px;
}
body.single > main .single-sc1 .mx-2 {
  margin-right: 8px;
  margin-left: 8px;
}
body.single > main .single-sc1 .mx-3 {
  margin-right: 12px;
  margin-left: 12px;
}
body.single > main .single-sc1 .mx-4 {
  margin-right: 16px;
  margin-left: 16px;
}
body.single > main .single-sc1 .mx-5 {
  margin-right: 20px;
  margin-left: 20px;
}
body.single > main .single-sc1 .mx-6 {
  margin-right: 24px;
  margin-left: 24px;
}
body.single > main .single-sc1 .mx-7 {
  margin-right: 28px;
  margin-left: 28px;
}
body.single > main .single-sc1 .mx-8 {
  margin-right: 32px;
  margin-left: 32px;
}
body.single > main .single-sc1 .mx-9 {
  margin-right: 36px;
  margin-left: 36px;
}
body.single > main .single-sc1 .mx-10 {
  margin-right: 40px;
  margin-left: 40px;
}
body.single > main .single-sc1 .mx-4-10 {
  margin-right: clamp(16px, 16px + 24 * (100vw - 550px) / 1050, 40px);
  margin-left: clamp(16px, 16px + 24 * (100vw - 550px) / 1050, 40px);
}
body.single > main .single-sc1 .mr-0 {
  margin-right: 0;
}
body.single > main .single-sc1 .mr-1 {
  margin-right: 4px;
}
body.single > main .single-sc1 .mr-2 {
  margin-right: 8px;
}
body.single > main .single-sc1 .mr-3 {
  margin-right: 12px;
}
body.single > main .single-sc1 .mr-4 {
  margin-right: 16px;
}
body.single > main .single-sc1 .mr-5 {
  margin-right: 20px;
}
body.single > main .single-sc1 .mr-6 {
  margin-right: 24px;
}
body.single > main .single-sc1 .mr-7 {
  margin-right: 28px;
}
body.single > main .single-sc1 .mr-8 {
  margin-right: 32px;
}
body.single > main .single-sc1 .mr-9 {
  margin-right: 36px;
}
body.single > main .single-sc1 .mr-10 {
  margin-right: 40px;
}
body.single > main .single-sc1 .ml-0 {
  margin-left: 0;
}
body.single > main .single-sc1 .ml-1 {
  margin-left: 4px;
}
body.single > main .single-sc1 .ml-2 {
  margin-left: 8px;
}
body.single > main .single-sc1 .ml-3 {
  margin-left: 12px;
}
body.single > main .single-sc1 .ml-4 {
  margin-left: 16px;
}
body.single > main .single-sc1 .ml-5 {
  margin-left: 20px;
}
body.single > main .single-sc1 .ml-6 {
  margin-left: 24px;
}
body.single > main .single-sc1 .ml-7 {
  margin-left: 28px;
}
body.single > main .single-sc1 .ml-8 {
  margin-left: 32px;
}
body.single > main .single-sc1 .ml-9 {
  margin-left: 36px;
}
body.single > main .single-sc1 .ml-10 {
  margin-left: 40px;
}
body.single > main .single-sc1 .mb-0 {
  margin-bottom: 0;
}
body.single > main .single-sc1 .mb-1 {
  margin-bottom: 4px;
}
body.single > main .single-sc1 .mb-2 {
  margin-bottom: 8px;
}
body.single > main .single-sc1 .mb-3 {
  margin-bottom: 12px;
}
body.single > main .single-sc1 .mb-4 {
  margin-bottom: 16px;
}
body.single > main .single-sc1 .mb-5 {
  margin-bottom: 20px;
}
body.single > main .single-sc1 .mb-6 {
  margin-bottom: 24px;
}
body.single > main .single-sc1 .mb-7 {
  margin-bottom: 28px;
}
body.single > main .single-sc1 .mb-8 {
  margin-bottom: 32px;
}
body.single > main .single-sc1 .mb-9 {
  margin-bottom: 36px;
}
body.single > main .single-sc1 .mb-10 {
  margin-bottom: 40px;
}
body.single > main .single-sc1 .mt-0 {
  margin-top: 0;
}
body.single > main .single-sc1 .mt-1 {
  margin-top: 4px;
}
body.single > main .single-sc1 .mt-2 {
  margin-top: 8px;
}
body.single > main .single-sc1 .mt-3 {
  margin-top: 12px;
}
body.single > main .single-sc1 .mt-4 {
  margin-top: 16px;
}
body.single > main .single-sc1 .mt-5 {
  margin-top: 20px;
}
body.single > main .single-sc1 .mt-6 {
  margin-top: 24px;
}
body.single > main .single-sc1 .mt-7 {
  margin-top: 28px;
}
body.single > main .single-sc1 .mt-8 {
  margin-top: 32px;
}
body.single > main .single-sc1 .mt-9 {
  margin-top: 36px;
}
body.single > main .single-sc1 .mt-10 {
  margin-top: 40px;
}
body.single > main .single-sc1 .my-0 {
  margin-top: 0;
  margin-bottom: 0;
}
body.single > main .single-sc1 .my-1 {
  margin-top: 4px;
  margin-bottom: 4px;
}
body.single > main .single-sc1 .my-2 {
  margin-top: 8px;
  margin-bottom: 8px;
}
body.single > main .single-sc1 .my-3 {
  margin-top: 12px;
  margin-bottom: 12px;
}
body.single > main .single-sc1 .my-4 {
  margin-top: 16px;
  margin-bottom: 16px;
}
body.single > main .single-sc1 .my-5 {
  margin-top: 20px;
  margin-bottom: 20px;
}
body.single > main .single-sc1 .my-6 {
  margin-top: 24px;
  margin-bottom: 24px;
}
body.single > main .single-sc1 .my-7 {
  margin-top: 28px;
  margin-bottom: 28px;
}
body.single > main .single-sc1 .my-8 {
  margin-top: 32px;
  margin-bottom: 32px;
}
body.single > main .single-sc1 .my-9 {
  margin-top: 36px;
  margin-bottom: 36px;
}
body.single > main .single-sc1 .my-10 {
  margin-top: 40px;
  margin-bottom: 40px;
}
body.single > main .single-sc1 .my-4-8 {
  margin-top: clamp(16px, 16px + 16 * (100vw - 550px) / 1050, 32px);
  margin-bottom: clamp(16px, 16px + 16 * (100vw - 550px) / 1050, 32px);
}
body.single > main .single-sc1 .radius-0 {
  border-radius: 0;
}
body.single > main .single-sc1 .radius-1 {
  border-radius: 4px;
}
body.single > main .single-sc1 .radius-2 {
  border-radius: 8px;
}
body.single > main .single-sc1 .radius-3 {
  border-radius: 12px;
}
body.single > main .single-sc1 .radius-4 {
  border-radius: 16px;
}
body.single > main .single-sc1 .radius-5 {
  border-radius: 20px;
}
body.single > main .single-sc1 .radius-6 {
  border-radius: 24px;
}
body.single > main .single-sc1 .radius-7 {
  border-radius: 28px;
}
body.single > main .single-sc1 .radius-8 {
  border-radius: 32px;
}
body.single > main .single-sc1 .radius-9 {
  border-radius: 36px;
}
body.single > main .single-sc1 .radius-10 {
  border-radius: 40px;
}
body.single > main .single-sc1 .border-none {
  border: none;
}
body.single > main .single-sc1 .headline {
  display: flex;
  flex-direction: row;
  padding-bottom: 40px;
  gap: 24px 40px;
  border-bottom: 1px solid var(--theme-green);
}
body.single > main .single-sc1 .headline .img-box {
  display: inline-block;
  width: min(600px, 40vw);
  height: auto;
  aspect-ratio: 2/1;
}
body.single > main .single-sc1 .headline .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}
body.single > main .single-sc1 .headline .content {
  width: 100px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
body.single > main .single-sc1 .headline .content .time {
  font-size: 15px;
  line-height: 1.75;
}
@media (max-width: 550px) {
  body.single > main .single-sc1 .headline {
    flex-direction: column;
  }
  body.single > main .single-sc1 .headline .img-box {
    width: 100%;
  }
  body.single > main .single-sc1 .headline .content {
    width: 100%;
  }
}

/*------------------------------------------------

  FAQ メインページ

------------------------------------------------ */
.page-template-page-faq > main .sc-faq {
  width: min(1200px, 92%);
  margin: 0 auto;
}
.page-template-page-faq > main .sc-faq ul {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.page-template-page-faq > main .sc-faq ul .faq-block {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
}
.page-template-page-faq > main .sc-faq ul .faq-block .question, .page-template-page-faq > main .sc-faq ul .faq-block .answer {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
  cursor: pointer;
  gap: 8px;
}
.page-template-page-faq > main .sc-faq ul .faq-block .question .label, .page-template-page-faq > main .sc-faq ul .faq-block .answer .label {
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.2em;
  font-weight: 500;
}
.page-template-page-faq > main .sc-faq ul .faq-block .question {
  color: var(--theme-deep-green);
  border-bottom: 1px solid #a49ea0;
  position: relative;
  padding-right: 32px;
}
.page-template-page-faq > main .sc-faq ul .faq-block .question::after {
  display: inline-block;
  border-radius: 4px;
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translate(0, -50%);
  width: 14px;
  height: 9px;
  background-color: var(--theme-deep-gray);
  transition: all 0.3s ease-in-out;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.page-template-page-faq > main .sc-faq ul .faq-block .question.active::after {
  -webkit-clip-path: polygon(0 100%, 100% 100%, 50% 0);
          clip-path: polygon(0 100%, 100% 100%, 50% 0);
}
.page-template-page-faq > main .sc-faq ul .faq-block .question .content {
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.2em;
  font-weight: 500;
}
.page-template-page-faq > main .sc-faq ul .faq-block .answer {
  color: var(--theme-deep-black);
}
.page-template-page-faq > main .sc-faq ul .faq-block .answer .label {
  padding: 12px 0;
}
.page-template-page-faq > main .sc-faq ul .faq-block .answer .content {
  padding: 12px 0;
  font-size: 13px;
}
@media (max-width: 550px) {
  .page-template-page-faq > main .sc-faq ul .faq-block {
    gap: 8px;
  }
  .page-template-page-faq > main .sc-faq ul .faq-block .question .label, .page-template-page-faq > main .sc-faq ul .faq-block .question .content {
    font-size: 15px;
    line-height: 1.75;
    font-weight: 500;
  }
}

.page-template-page-contact > main .sc-contact {
  width: min(920px, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}
.page-template-page-contact > main .sc-contact .wpcf7 {
  width: min(100%, 400px);
  flex-grow: 1;
  text-align: center;
}
.page-template-page-contact > main .sc-contact .wpcf7 form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px 0;
}
.page-template-page-contact > main .sc-contact .wpcf7 form .contact-line {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  text-align: left;
}
.page-template-page-contact > main .sc-contact .wpcf7 form .contact-line .label {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 8px;
}
.page-template-page-contact > main .sc-contact .wpcf7 form .contact-line .label span.required {
  color: var(--theme-light-red);
}
.page-template-page-contact > main .sc-contact .wpcf7 form .contact-line input, .page-template-page-contact > main .sc-contact .wpcf7 form .contact-line textarea {
  border: 1px solid var(--theme-white-green);
  width: 100%;
  padding: 8px 12px;
  border-radius: 4px;
  background-color: var(--theme-white);
  font-size: 15px;
  line-height: 1.75;
}
.page-template-page-contact > main .sc-contact .wpcf7 form .contact-line input::-moz-placeholder, .page-template-page-contact > main .sc-contact .wpcf7 form .contact-line textarea::-moz-placeholder {
  color: var(--theme-gray);
}
.page-template-page-contact > main .sc-contact .wpcf7 form .contact-line input::placeholder, .page-template-page-contact > main .sc-contact .wpcf7 form .contact-line textarea::placeholder {
  color: var(--theme-gray);
}
.page-template-page-contact > main .sc-contact .wpcf7 form .contact-line input:focus, .page-template-page-contact > main .sc-contact .wpcf7 form .contact-line textarea:focus {
  transition: 0.4s;
  border: 1px solid var(--theme-light-green);
}
.page-template-page-contact > main .sc-contact .wpcf7 form .contact-line textarea {
  height: 120px;
}
.page-template-page-contact > main .sc-contact .wpcf7 form .btn-area {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  position: relative;
}
.page-template-page-contact > main .sc-contact .wpcf7 form .btn-area input {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 60px;
  padding: 0 12px;
  min-width: 220px;
  background-color: var(--theme-green);
  transition: 0.4s;
  color: var(--theme-white);
  border-radius: 4px;
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
}
@media (hover: hover) and (pointer: fine) {
  .page-template-page-contact > main .sc-contact .wpcf7 form .btn-area input:hover {
    background-color: var(--theme-deep-green);
  }
}
@media (hover: none) and (pointer: coarse) {
  .page-template-page-contact > main .sc-contact .wpcf7 form .btn-area input.is-active {
    background-color: var(--theme-deep-green);
  }
}
.page-template-page-contact > main .sc-contact .wpcf7 form .btn-area input span {
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
  width: -moz-max-content;
  width: max-content;
  color: var(--theme-white);
}
.page-template-page-contact > main .sc-contact .wpcf7 form .btn-area .wpcf7-spinner {
  margin: 0;
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translate(-50%, 25%);
  width: 32px;
  height: 32px;
}
.page-template-page-contact > main .sc-contact .line {
  display: inline-block;
  background-color: var(--theme-gray);
  width: 1px;
  height: 450px;
}
.page-template-page-contact > main .sc-contact .line-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: min(100%, 400px);
  flex-grow: 1;
  height: auto;
  border: 1px solid var(--theme-gray);
  padding: 40px 24px;
  border-radius: 4px;
}
.page-template-page-contact > main .sc-contact .line-box h2 {
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: 0.25em;
  font-weight: 500;
  text-align: center;
}
.page-template-page-contact > main .sc-contact .line-box p {
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
  text-align: center;
}
.page-template-page-contact > main .sc-contact .line-box a {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 60px;
  width: max-content;
  min-width: 220px;
  padding: 12px 24px;
  background-color: var(--theme-green);
  transition: 0.4s;
  transition: 0.4s;
}
@media (hover: hover) and (pointer: fine) {
  .page-template-page-contact > main .sc-contact .line-box a:hover {
    background-color: var(--theme-deep-green);
  }
}
@media (hover: none) and (pointer: coarse) {
  .page-template-page-contact > main .sc-contact .line-box a.is-active {
    background-color: var(--theme-deep-green);
  }
}
.page-template-page-contact > main .sc-contact .line-box a svg {
  width: 24px;
  height: 24px;
  color: var(--theme-white);
}
.page-template-page-contact > main .sc-contact .line-box a span {
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
  width: -moz-max-content;
  width: max-content;
  color: var(--theme-white);
}
@media (max-width: 550px) {
  .page-template-page-contact > main .sc-contact .line-box a svg {
    width: 20px;
    height: 20px;
  }
  .page-template-page-contact > main .sc-contact .line-box a span {
    font-size: 13px;
    font-weight: 500;
  }
}
.page-template-page-contact > main .sc-contact .line-box a div {
  color: var(--theme-white-pink);
}
@media (max-width: 1032px) {
  .page-template-page-contact > main .sc-contact {
    gap: 24px;
  }
  .page-template-page-contact > main .sc-contact .line-box h2 {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.2em;
    font-weight: 500;
  }
}
@media (max-width: 780px) {
  .page-template-page-contact > main .sc-contact {
    flex-direction: column-reverse;
  }
  .page-template-page-contact > main .sc-contact .line {
    display: none;
  }
  .page-template-page-contact > main .sc-contact .line-box {
    width: 100%;
    padding: 24px;
  }
  .page-template-page-contact > main .sc-contact .line-box h2 {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.2em;
    font-weight: 500;
  }
}
@media (max-width: 550px) {
  .page-template-page-contact > main .sc-contact .line-box {
    width: 100%;
    padding: 24px 12px;
  }
  .page-template-page-contact > main .sc-contact .line-box p {
    font-size: 13px;
    font-weight: 500;
  }
}

.page-template-page-contact-thanks > main .sc-contact-thanks {
  width: min(700px, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.page-template-page-contact-thanks > main .sc-contact-thanks p {
  text-align: center;
}
.page-template-page-contact-thanks > main .sc-contact-thanks .btn-area {
  padding-top: 40px;
  display: grid;
  place-items: center;
}
.page-template-page-contact-thanks > main .sc-contact-thanks .btn-area a {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 60px;
  width: max-content;
  min-width: 220px;
  padding: 12px 24px;
  background-color: var(--theme-deep-green);
  transition: 0.4s;
  transition: 0.4s;
}
@media (hover: hover) and (pointer: fine) {
  .page-template-page-contact-thanks > main .sc-contact-thanks .btn-area a:hover {
    background-color: var(--theme-green);
  }
}
@media (hover: none) and (pointer: coarse) {
  .page-template-page-contact-thanks > main .sc-contact-thanks .btn-area a.is-active {
    background-color: var(--theme-green);
  }
}
.page-template-page-contact-thanks > main .sc-contact-thanks .btn-area a svg {
  width: 24px;
  height: 24px;
  color: var(--theme-white);
}
.page-template-page-contact-thanks > main .sc-contact-thanks .btn-area a span {
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
  width: -moz-max-content;
  width: max-content;
  color: var(--theme-white);
}
@media (max-width: 550px) {
  .page-template-page-contact-thanks > main .sc-contact-thanks .btn-area a svg {
    width: 20px;
    height: 20px;
  }
  .page-template-page-contact-thanks > main .sc-contact-thanks .btn-area a span {
    font-size: 13px;
    font-weight: 500;
  }
}
.page-template-page-contact-thanks > main .sc-contact-thanks .btn-area a span {
  color: var(--theme-white-pink);
}/*# sourceMappingURL=style.css.map */