@charset "UTF-8";
:root {
  --theme-white:#FFFFFF;
  --theme-snow-white:#F8FBF8;
  --theme-black:#3B3938;
  --theme-deep-black:#101010;
  --theme-deep-gray:#8E8E8E;
  --theme-gray:#BDC0BA;
  --theme-blue:#53C0BB;
  --theme-skyblue:#A5DEE4;
  --theme-deep-blue:#0C8781;
  --theme-orange:#F17C67;
  --theme-link-blue:#4F2CFA;
  --theme-link-blue-hover:#1C00AA;
  --theme-blue-white:#F1F7FF;
  --theme-gradation: linear-gradient(160deg, #53C0BB 0%, #D4EFEE 100%);
}

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

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

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

@media (max-width: 1920px) {
  :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: 1280px) {
  br.limit-pc, br.only-pc {
    display: inline;
  }
  br.other-pc, br.none-pc {
    display: none;
  }
}
@media (max-width: 840px) {
  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;
  }
}
/*------------------------------------------
　フォントの指定
-------------------------------------------*/
body {
  /*
  font-family:
    "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
  */
  font-family: "Zen Kaku Gothic New", sans-serif;
}

/*------------------------------------------
　フォントサイズの指定
-------------------------------------------*/
/* 各要素の指定用に1remを10px(62.5%)に設定 */
html {
  font-size: 62.5%;
}

body {
  line-height: 1.7;
  letter-spacing: 0.12em;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt" 1;
  font-size: 1.5rem;
}
@media (max-width: 550px) {
  body {
    font-size: 1.3rem;
  }
}

/*-----------------------------------------------
  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;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
@media (max-width: 840px) {
  html {
    scroll-padding-top: 64px;
  }
}
html::-webkit-scrollbar {
  display: none;
}
html body {
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
  color: var(--theme-black);
  background-color: var(--theme-snow-white);
  display: flex;
  flex-direction: column;
}
html body main {
  display: flex;
  flex-direction: column;
  gap: 120px;
  flex: 1 0 auto;
  padding-bottom: 200px;
  background-color: var(--theme-snow-white);
}
html body main img {
  vertical-align: top;
}
@media (max-width: 1280px) {
  html body main {
    gap: 100px;
    padding-bottom: 120px;
  }
}
@media (max-width: 840px) {
  html body main {
    gap: 80px;
    padding-bottom: 80px;
  }
}
@media (max-width: 550px) {
  html body main {
    gap: 60px;
    padding-bottom: 64px;
  }
}

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

  共通パーツ

*********************************************/
.header-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.header-wrapper .page-header {
  background: var(--theme-gradation);
  height: 360px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-bottom: 24px;
}
.header-wrapper .page-header .headline-mark {
  width: 450px;
}
.header-wrapper .page-header .label {
  font-size: 1.5rem;
  line-height: 1.7;
  font-weight: 500;
  color: var(--theme-white);
}
.header-wrapper .page-header h1 {
  font-size: 3.2rem;
  line-height: 1.4;
  font-weight: bold;
  color: var(--theme-white);
}
.header-wrapper .page-header .arc-mask {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: auto;
}
.header-wrapper .aioseo-breadcrumbs {
  width: min(1200px, 90%);
  margin: 0 auto;
  color: var(--theme-gray);
}
.header-wrapper .aioseo-breadcrumbs span:last-child {
  color: var(--theme-blue);
}
@media (max-width: 1280px) {
  .header-wrapper .page-header {
    height: 280px;
  }
}
@media (max-width: 840px) {
  .header-wrapper .page-header {
    height: 200px;
  }
  .header-wrapper .page-header .headline-mark {
    width: max(40%, 220px);
  }
  .header-wrapper .page-header h1 {
    font-size: 2.4rem;
    line-height: 1.5;
    font-weight: bold;
  }
  .header-wrapper .aioseo-breadcrumbs {
    margin-top: 8px;
  }
}
@media (max-width: 550px) {
  .header-wrapper .page-header {
    height: 132px;
  }
  .header-wrapper .page-header .label {
    font-size: 1.3rem;
    line-height: 1.7;
    font-weight: 500;
  }
  .header-wrapper .page-header h1 {
    font-size: 2rem;
    line-height: 1.55;
    font-weight: bold;
  }
}

.btn {
  position: relative;
  display: grid;
  place-items: center;
  height: 64px;
  min-width: 220px;
  width: -moz-max-content;
  width: max-content;
  padding: 16px 48px;
  transition: 0.3s;
  cursor: pointer;
  border: 1px solid var(--theme-blue);
  background-color: var(--theme-blue);
  color: var(--theme-white);
  border-radius: 0;
  text-decoration: none !important;
}
.btn:hover {
  background-color: var(--theme-white);
  color: var(--theme-blue);
}

.design-btn {
  display: flex;
  flex-direction: column;
  gap: 40px;
  place-items: center;
}
.design-btn .arrow-down {
  width: 12px;
  height: auto;
}
.design-btn a {
  position: relative;
  display: grid;
  place-items: center;
  height: 64px;
  min-width: 220px;
  width: -moz-max-content;
  width: max-content;
  padding: 16px 48px;
  transition: 0.3s;
  cursor: pointer;
  border: 1px solid var(--theme-blue);
  background-color: var(--mainColor);
  color: var(--contentColor);
  border-radius: 0;
  text-decoration: none !important;
}
.design-btn a:hover {
  background-color: var(--contentColor);
  color: var(--mainColor);
}
.design-btn .btn-box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
}

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

  ブロックエディター

*********************************************/
.information-default-sc1 {
  width: min(1200px, 90%);
  margin: 0 auto;
}
.information-default-sc1 p {
  font-size: 1.5rem;
  line-height: 1.7;
  margin-bottom: 1em;
}
.information-default-sc1 h1 {
  font-size: clamp(20px, 20px + 12 * (100vw - 550px) / 730, 32px);
  margin: clamp(8px, 8px + 12 * (100vw - 550px) / 730, 20px) 0;
  font-weight: 500;
}
.information-default-sc1 h2 {
  font-size: clamp(19px, 19px + 9 * (100vw - 550px) / 730, 28px);
  margin: clamp(4px, 4px + 8 * (100vw - 550px) / 730, 12px) 0;
  font-weight: 500;
}
.information-default-sc1 h3 {
  font-size: clamp(18px, 18px + 6 * (100vw - 550px) / 730, 24px);
  font-weight: 500;
  margin: 4px 0;
}
.information-default-sc1 h4 {
  font-size: clamp(17px, 17px + 3 * (100vw - 550px) / 730, 20px);
  font-weight: 500;
  margin: 8px 0;
}
.information-default-sc1 h5 {
  font-size: clamp(16px, 16px + 1 * (100vw - 550px) / 730, 17px);
  font-weight: 500;
  margin: 8px 0;
}
.information-default-sc1 h6 {
  font-size: clamp(15px, 15px + 1 * (100vw - 550px) / 730, 16px);
  font-weight: 500;
  margin: 8px 0;
}
.information-default-sc1 ul, .information-default-sc1 ol {
  padding-inline-start: 40px;
  margin-bottom: 1em;
}
.information-default-sc1 ul.has-background, .information-default-sc1 ol.has-background {
  padding: 12px 16px 12px 32px;
}
.information-default-sc1 ul li, .information-default-sc1 ol li {
  all: revert;
  margin-block-start: 0.4em;
  margin-block-end: 0.4em;
}
.information-default-sc1 ul {
  list-style-type: disc;
}
.information-default-sc1 ol {
  list-style-type: decimal;
}
.information-default-sc1 a {
  word-break: break-word;
  color: var(--theme-link-blue);
  text-decoration: underline;
  cursor: pointer;
  transition: 0.4s;
}
@media (hover: hover) and (pointer: fine) {
  .information-default-sc1 a:hover {
    color: var(--theme-link-blue-hover);
  }
}
.information-default-sc1 strong {
  font-weight: 600;
  font-size: 120%;
  letter-spacing: 1px;
}
.information-default-sc1 em {
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
.information-default-sc1 figure {
  display: grid;
  place-items: center;
}
.information-default-sc1 figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: rgba(103, 70, 70, 0.05);
  box-shadow: 1px 1px 4px var(--theme-light-gray);
}
.information-default-sc1 figure figcaption {
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 500;
  text-align: center;
}
.information-default-sc1 .wp-block-table {
  background-color: rgba(255, 255, 255, 0.1);
}
.information-default-sc1 .wp-block-table table {
  border-collapse: collapse;
  border: 1px solid var(--theme-brown);
}
.information-default-sc1 .wp-block-table table th {
  background-color: rgba(103, 70, 70, 0.07);
  text-align: center;
  padding: 6px 8px;
  font-weight: 500;
  border: 1px solid var(--theme-brown);
}
.information-default-sc1 .wp-block-table table td {
  padding: 6px 8px;
  border: 1px solid var(--theme-brown);
}
.information-default-sc1 .wp-block-table table thead {
  border-bottom: 2px solid var(--theme-brown);
}
.information-default-sc1 .wp-block-table table tfoot {
  border-top: 2px solid var(--theme-brown);
}
.information-default-sc1 .is-layout-flex {
  gap: clamp(16px, 16px + 24 * (100vw - 550px) / 730, 40px);
  margin: clamp(16px, 16px + 8 * (100vw - 550px) / 730, 24px) auto;
}
.information-default-sc1 hr.wp-block-separator {
  margin: clamp(12px, 12px + 8 * (100vw - 550px) / 730, 20px) 0;
  width: 100%;
  height: 1px;
  border: none;
  border-bottom: 1px solid var(--theme-dark-brown);
}
.information-default-sc1 .has-background {
  padding: 12px 16px;
}
.information-default-sc1 .wp-block-preformatted {
  font-family: "Zen Maru Gothic", serif;
  border: 1px solid var(--theme-blue);
  background-color: #ffeaea;
  padding: 12px 16px;
}
.information-default-sc1 .wp-block-buttons {
  display: flex;
}
.information-default-sc1 .wp-block-buttons .wp-block-button a.wp-element-button {
  position: relative;
  display: grid;
  place-items: center;
  height: 64px;
  min-width: 220px;
  width: -moz-max-content;
  width: max-content;
  padding: 16px 48px;
  transition: 0.3s;
  cursor: pointer;
  border: 1px solid var(--theme-blue);
  background-color: var(--theme-blue);
  color: var(--theme-white);
  border-radius: 0;
  text-decoration: none !important;
}
.information-default-sc1 .wp-block-buttons .wp-block-button a.wp-element-button:hover {
  background-color: var(--theme-white);
  color: var(--theme-blue);
}

header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 80px;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 999;
  gap: clamp(8px, 8px + 12 * (100vw - 550px) / 730, 20px);
  transition: 0.4s;
  padding: 0 0 0 24px;
  border-bottom: 1px solid var(--theme-gray);
  background-color: var(--theme-snow-white);
}
header .left-content a {
  display: grid;
  place-items: center;
  width: 160px;
}
header .left-content a picture img {
  vertical-align: bottom;
}
header .right-content {
  display: inline-block;
  height: 100%;
}
header .right-content .main-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
  gap: 24px;
}
header .right-content .main-menu li {
  position: relative;
}
header .right-content .main-menu li a {
  transition: 0.4s;
}
header .right-content .main-menu li a[aria-current=page] {
  color: var(--theme-blue);
}
@media (hover: hover) and (pointer: fine) {
  header .right-content .main-menu li a:hover {
    color: var(--theme-emerald);
  }
}
header .right-content .main-menu li.donate {
  height: 100%;
  background-color: var(--theme-blue);
  color: var(--theme-snow-white);
}
header .right-content .main-menu li.donate a {
  height: 100%;
  display: grid;
  place-items: center;
  padding: 0 24px;
}
@media (max-width: 840px) {
  header {
    height: 64px;
    padding: 0 0 0 16px;
  }
  header .left-content a {
    width: 132px;
  }
  header .right-content {
    transform: scaleY(0);
    transform-origin: top center;
    transition: 0.6s;
    position: absolute;
    left: 0;
    top: 64px;
    width: 100%;
  }
  header .right-content .main-menu {
    position: absolute;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    gap: 0;
    left: 0;
    top: 0;
  }
  header .right-content .main-menu li {
    display: inline-block;
    width: 100%;
    border-bottom: 1px solid var(--theme-gray);
    background-color: var(--theme-white);
  }
  header .right-content .main-menu li a {
    width: 100%;
    height: 50px;
    display: grid;
    place-items: center;
  }
  header .right-content .main-menu li.donate a {
    height: 50px;
    display: grid;
    place-items: center;
    padding: 0 24px;
  }
  header.active > .right-content {
    transform: scaleY(1);
  }
}

.hamburger-menu {
  display: none;
  position: absolute;
  width: 36px;
  aspect-ratio: 1/1;
  top: 50%;
  right: 16px;
  transform: translate(0, -50%);
  z-index: 999;
  cursor: pointer;
}
@media (max-width: 840px) {
  .hamburger-menu {
    display: inline-block;
  }
}
.hamburger-menu span {
  display: inline-block;
  position: absolute;
  height: 2px;
  background-color: var(--theme-black);
  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 {
  background-color: var(--theme-white);
  color: var(--theme-black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 40px 40px 16px 40px;
  gap: 24px clamp(12px, 12px + 12 * (100vw - 550px) / 730, 24px);
  border-top: 1px solid var(--theme-blue);
}
footer .wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: clamp(12px, 12px + 12 * (100vw - 550px) / 730, 24px);
}
footer .wrapper picture {
  display: inline-block;
  width: clamp(180px, 180px + 40 * (100vw - 550px) / 730, 220px);
}
footer .wrapper picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  vertical-align: top;
}
footer .wrapper .corp-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
footer .wrapper .corp-info .info {
  display: flex;
  flex-direction: column;
  font-size: 1.3rem;
  line-height: 1.7;
}
footer .wrapper .nav {
  display: flex;
  flex-direction: column;
  gap: 8px 16px;
}
footer .wrapper .nav ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 8px 16px;
}
footer .wrapper .nav ul li.donate {
  background-color: var(--theme-blue);
  color: var(--theme-snow-white);
}
footer .wrapper .nav ul li.donate a {
  display: grid;
  place-items: center;
  padding: 8px 24px;
}
@media (max-width: 840px) {
  footer {
    flex-direction: column;
    align-items: center;
    padding-left: var(--side-padding);
    padding-right: var(--side-padding);
  }
  footer .wrapper {
    gap: 24px;
    width: 100%;
    flex-direction: column-reverse;
    align-items: center;
  }
  footer .wrapper .corp-info {
    flex-direction: row;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  footer .wrapper .nav {
    width: 100%;
    flex-direction: column;
    gap: 8px;
  }
  footer .wrapper .nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 550px) {
  footer .wrapper > .nav {
    width: 100%;
    flex-direction: column;
    gap: 24px;
  }
  footer .wrapper > .nav ul {
    flex-direction: column;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
  }
  footer .wrapper > .nav ul.main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    place-items: center;
  }
  footer .wrapper > .nav ul li.donate {
    height: auto;
    grid-column: 1/-1;
    justify-self: stretch;
  }
}

.error404 > main {
  position: relative;
}
.error404 > main .not-found-sc1 {
  flex-grow: 1;
  display: grid;
  place-items: center;
  padding: 200px 0;
  font-size: 4.8rem;
  line-height: 1.3;
  color: var(--theme-blue);
  text-align: center;
}

body.home > main,
.page-template-page-front > main {
  gap: 0;
  padding: 0;
}
body.home > main .heading,
.page-template-page-front > main .heading {
  color: var(--theme-white);
  text-align: center;
}
body.home > main .heading svg,
.page-template-page-front > main .heading svg {
  width: 450px;
}
body.home > main .heading .en,
.page-template-page-front > main .heading .en {
  display: block;
  font-size: 1.5rem;
  line-height: 1.7;
  font-weight: 500;
  margin: 10px 0;
  letter-spacing: 0.2em;
}
body.home > main .heading .ja,
.page-template-page-front > main .heading .ja {
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: 0.4em;
}
@media (max-width: 840px) {
  body.home > main .heading .ja,
  .page-template-page-front > main .heading .ja {
    font-size: 1.8rem;
  }
}
body.home > main .heading.color-blue,
.page-template-page-front > main .heading.color-blue {
  color: var(--theme-blue);
}
@media (max-width: 1280px) {
  body.home > main .heading svg,
  .page-template-page-front > main .heading svg {
    width: 280px;
  }
}
@media (max-width: 840px) {
  body.home > main .heading,
  .page-template-page-front > main .heading {
    margin: auto;
  }
  body.home > main .heading svg,
  .page-template-page-front > main .heading svg {
    width: max(40%, 220px);
  }
  body.home > main .heading .ja,
  .page-template-page-front > main .heading .ja {
    font-size: 1.8rem;
  }
}
body.home > main .top-mv,
.page-template-page-front > main .top-mv {
  position: relative;
  width: 100%;
  height: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url("/wp-content/themes/machikare/assets/images/design/top-mv.jpg");
}
@supports (background-image: url("image.webp")) {
  body.home > main .top-mv,
  .page-template-page-front > main .top-mv {
    background-image: url("/wp-content/themes/machikare/assets/images/design/top-mv.webp");
  }
}
body.home > main .top-mv .inner,
.page-template-page-front > main .top-mv .inner {
  width: min(1920px, 90%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  height: 60vw;
  max-height: calc(100vh - 80px);
}
body.home > main .top-mv .inner .title,
.page-template-page-front > main .top-mv .inner .title {
  position: absolute;
  width: min(45vw, 800px);
  height: auto;
  left: 5%;
  top: min(10vw, 64px);
  filter: drop-shadow(3px 3px 3px #FFFFFF);
}
body.home > main .top-mv .inner .subtitle,
.page-template-page-front > main .top-mv .inner .subtitle {
  width: clamp(125px, 25%, 320px);
  position: absolute;
  bottom: 5%;
  right: 5%;
}
@media (max-width: 1280px) {
  body.home > main .top-mv .inner .title,
  .page-template-page-front > main .top-mv .inner .title {
    left: 0;
  }
  body.home > main .top-mv .inner .subtitle,
  .page-template-page-front > main .top-mv .inner .subtitle {
    right: 0;
  }
}
@media (max-width: 840px) {
  body.home > main .top-mv .inner > .title,
  .page-template-page-front > main .top-mv .inner > .title {
    width: 50vw;
    top: 5%;
  }
}
@media (max-width: 550px) {
  body.home > main .top-mv,
  .page-template-page-front > main .top-mv {
    height: 100vh;
    max-height: 620px;
    background-image: url("/wp-content/themes/machikare/assets/images/design/top-mv-sp.jpg");
  }
  @supports (background-image: url("image.webp")) {
    body.home > main .top-mv,
    .page-template-page-front > main .top-mv {
      background-image: url("/wp-content/themes/machikare/assets/images/design/top-mv-sp.webp");
    }
  }
  body.home > main .top-mv .inner,
  .page-template-page-front > main .top-mv .inner {
    height: 100%;
  }
  body.home > main .top-mv .inner .title,
  .page-template-page-front > main .top-mv .inner .title {
    width: 80vw;
  }
}
body.home > main .top-about,
.page-template-page-front > main .top-about {
  background: linear-gradient(135deg, #53C0BB 0%, #D4EFEE 100%);
  text-align: center;
  margin: 120px 0 0;
}
@media (max-width: 840px) {
  body.home > main .top-about,
  .page-template-page-front > main .top-about {
    margin: 40px 0 0;
  }
}
body.home > main .top-about .inner,
.page-template-page-front > main .top-about .inner {
  padding: 30px 0 120px;
}
@media (max-width: 780px) {
  body.home > main .top-about .inner,
  .page-template-page-front > main .top-about .inner {
    padding: 30px 0 54px;
  }
}
body.home > main .top-about .arc-mask-svg,
.page-template-page-front > main .top-about .arc-mask-svg {
  transform: rotate(180deg) translateY(7px);
}
body.home > main .top-about .title,
.page-template-page-front > main .top-about .title {
  font-size: 4rem;
  line-height: 1.7;
  font-weight: bold;
  filter: drop-shadow(1px 1px 0 #FFFFFF);
  line-height: 1.8;
  letter-spacing: 0.4em;
  margin: 56px 0;
}
@media (max-width: 840px) {
  body.home > main .top-about .title,
  .page-template-page-front > main .top-about .title {
    font-size: 3.2rem;
  }
}
@media (max-width: 780px) {
  body.home > main .top-about .title,
  .page-template-page-front > main .top-about .title {
    font-size: 2.4rem;
  }
}
body.home > main .top-about .text,
.page-template-page-front > main .top-about .text {
  font-size: 2rem;
  line-height: 1.55;
  filter: drop-shadow(1px 1px 0 #FFFFFF);
  color: var(--theme-deep-black);
  line-height: 1.9;
  letter-spacing: 0.2em;
  margin: 56px 0;
}
@media (max-width: 840px) {
  body.home > main .top-about .text,
  .page-template-page-front > main .top-about .text {
    font-size: 1.5rem;
  }
}
@media (max-width: 780px) {
  body.home > main .top-about .text,
  .page-template-page-front > main .top-about .text {
    font-size: 1.3rem;
    width: 90%;
    margin: 0 auto 40px;
  }
}
body.home > main .top-report,
.page-template-page-front > main .top-report {
  padding: 72px 0 120px;
  filter: drop-shadow(1px 1px 0 #FFFFFF);
  color: var(--theme-deep-black);
}
@media (max-width: 780px) {
  body.home > main .top-report,
  .page-template-page-front > main .top-report {
    padding: 54px 0;
  }
}
body.home > main .top-report .inner,
.page-template-page-front > main .top-report .inner {
  width: min(1200px, 90%);
  margin: 0 auto;
}
body.home > main .top-report .title,
.page-template-page-front > main .top-report .title {
  font-size: 2rem;
  line-height: 1.55;
  font-weight: bold;
  margin: 48px 0 56px;
  text-align: center;
  letter-spacing: 0.2em;
  line-height: 1.7;
}
@media (max-width: 780px) {
  body.home > main .top-report .title,
  .page-template-page-front > main .top-report .title {
    font-size: 1.5rem;
  }
}
body.home > main .top-report .body,
.page-template-page-front > main .top-report .body {
  display: flex;
  flex-direction: row;
  gap: 72px;
  align-items: stretch;
  margin: 0 0 56px;
}
@media (max-width: 1280px) {
  body.home > main .top-report .body,
  .page-template-page-front > main .top-report .body {
    gap: 40px;
  }
}
@media (max-width: 780px) {
  body.home > main .top-report .body,
  .page-template-page-front > main .top-report .body {
    margin: 0 0 40px;
  }
}
body.home > main .top-report .body .topic,
.page-template-page-front > main .top-report .body .topic {
  width: 360px;
  letter-spacing: 0.2em;
  flex-shrink: 0;
  position: relative;
}
body.home > main .top-report .body .topic:before,
.page-template-page-front > main .top-report .body .topic:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--theme-skyblue);
  /* (0,452)→(360,0)→(360,452) と同じ三角形 */
  clip-path: polygon(0% 100%, 100% 0%, 100% 100%);
}
body.home > main .top-report .body .topic .topic-link,
.page-template-page-front > main .top-report .body .topic .topic-link {
  position: relative;
  z-index: 1;
}
body.home > main .top-report .body .topic .topic-link .topic-thumb-badge,
.page-template-page-front > main .top-report .body .topic .topic-link .topic-thumb-badge {
  position: absolute;
  top: -32px;
  left: -48px;
  width: 124px;
  height: auto;
}
body.home > main .top-report .body .topic .topic-link .topic-thumb,
.page-template-page-front > main .top-report .body .topic .topic-link .topic-thumb {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 8/5;
  border-radius: 0 32px 0 32px;
  overflow: hidden;
  margin: -8px 0 0 -16px;
}
body.home > main .top-report .body .topic .topic-link .topic-thumb img,
.page-template-page-front > main .top-report .body .topic .topic-link .topic-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body.home > main .top-report .body .topic .topic-link .topic-inner,
.page-template-page-front > main .top-report .body .topic .topic-link .topic-inner {
  padding: 26px 16px 16px;
}
body.home > main .top-report .body .topic .topic-link .topic-inner .topic-date,
.page-template-page-front > main .top-report .body .topic .topic-link .topic-inner .topic-date {
  font-size: 1.3rem;
  line-height: 1.7;
  font-weight: 500;
}
body.home > main .top-report .body .topic .topic-link .topic-inner .topic-title,
.page-template-page-front > main .top-report .body .topic .topic-link .topic-inner .topic-title {
  margin: 8px 0;
  font-size: 2rem;
  line-height: 1.55;
  font-weight: bold;
  filter: drop-shadow(1px 1px 0 #FFFFFF);
}
body.home > main .top-report .body .topic .topic-link .topic-inner .topic-excerpt,
.page-template-page-front > main .top-report .body .topic .topic-link .topic-inner .topic-excerpt {
  filter: drop-shadow(1px 1px 0 #FFFFFF);
}
@media (max-width: 1280px) {
  body.home > main .top-report .body .topic,
  .page-template-page-front > main .top-report .body .topic {
    width: 320px;
  }
}
@media (max-width: 840px) {
  body.home > main .top-report .body .topic,
  .page-template-page-front > main .top-report .body .topic {
    display: none;
  }
}
body.home > main .top-report .post,
.page-template-page-front > main .top-report .post {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
}
body.home > main .top-report .post .post-link,
.page-template-page-front > main .top-report .post .post-link {
  display: flex;
  flex-direction: row;
}
body.home > main .top-report .post .post-link .post-thumb,
.page-template-page-front > main .top-report .post .post-link .post-thumb {
  position: relative;
  z-index: 1;
  width: 168px;
  height: auto;
  aspect-ratio: 8/5;
  flex-shrink: 0;
  border-radius: 0 24px 0 24px;
  overflow: hidden;
}
body.home > main .top-report .post .post-link .post-thumb img,
.page-template-page-front > main .top-report .post .post-link .post-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body.home > main .top-report .post .post-link .post-inner,
.page-template-page-front > main .top-report .post .post-link .post-inner {
  margin: 10px 0 0 -16px;
  background-color: var(--theme-skyblue);
  padding: 8px 24px 8px 40px;
  border-radius: 0 16px 0 0;
  font-size: 1.3rem;
  line-height: 1.7;
}
body.home > main .top-report .post .post-link .post-inner .post-title,
.page-template-page-front > main .top-report .post .post-link .post-inner .post-title {
  font-size: 1.5rem;
  line-height: 1.7;
  font-weight: bold;
  filter: drop-shadow(1px 1px 0 #FFFFFF);
}
body.home > main .top-report .post .post-link .post-inner .post-date, body.home > main .top-report .post .post-link .post-inner .post-excerpt,
.page-template-page-front > main .top-report .post .post-link .post-inner .post-date,
.page-template-page-front > main .top-report .post .post-link .post-inner .post-excerpt {
  filter: drop-shadow(1px 1px 0 #FFFFFF);
}
@media (max-width: 550px) {
  body.home > main .top-report .post .post-link,
  .page-template-page-front > main .top-report .post .post-link {
    flex-direction: column;
  }
  body.home > main .top-report .post .post-link .post-thumb,
  .page-template-page-front > main .top-report .post .post-link .post-thumb {
    width: 100%;
    border-radius: 8px 8px 0 0;
  }
  body.home > main .top-report .post .post-link .post-inner,
  .page-template-page-front > main .top-report .post .post-link .post-inner {
    margin: 0;
    padding: 8px 16px;
    border-radius: 0 0 8px 8px;
  }
}
body.home > main .top-news,
.page-template-page-front > main .top-news {
  background: var(--theme-gradation);
}
body.home > main .top-news .inner,
.page-template-page-front > main .top-news .inner {
  padding: 80px 0;
}
body.home > main .top-news .inner .body,
.page-template-page-front > main .top-news .inner .body {
  width: min(1200px, 90%);
  margin: 0 auto;
  margin: 56px auto;
}
body.home > main .top-news .inner .body .list,
.page-template-page-front > main .top-news .inner .body .list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
body.home > main .top-news .inner .body .list .link,
.page-template-page-front > main .top-news .inner .body .list .link {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background-color: var(--theme-snow-white);
  border-radius: 8px;
  padding: 16px 24px;
}
body.home > main .top-news .inner .body .list .link .date,
.page-template-page-front > main .top-news .inner .body .list .link .date {
  display: block;
  font-size: 1.3rem;
}
body.home > main .top-news .inner .body .list .link .title,
.page-template-page-front > main .top-news .inner .body .list .link .title {
  display: block;
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: bold;
}
@media (max-width: 780px) {
  body.home > main .top-news .inner,
  .page-template-page-front > main .top-news .inner {
    padding: 40px 0;
  }
  body.home > main .top-news .inner .body,
  .page-template-page-front > main .top-news .inner .body {
    margin: 40px auto;
  }
}
body.home > main .top-news .arc,
.page-template-page-front > main .top-news .arc {
  width: 100%;
  transform: rotate(180deg) translateY(-7px);
}
body.home > main .top-donation,
.page-template-page-front > main .top-donation {
  padding-bottom: 80px;
  background-color: var(--theme-snow-white);
  overflow-x: hidden;
}
@media (max-width: 780px) {
  body.home > main .top-donation,
  .page-template-page-front > main .top-donation {
    padding-bottom: 40px;
  }
}
body.home > main .top-donation .body,
.page-template-page-front > main .top-donation .body {
  width: min(1200px, 90%);
  margin: 0 auto;
  position: relative;
  margin: 72px auto;
}
body.home > main .top-donation .body:before,
.page-template-page-front > main .top-donation .body:before {
  content: "";
  display: block;
  clip-path: polygon(0% 0%, 0% 100%, 100% 0%);
  position: absolute;
  top: -24px;
  left: -29px;
  width: 50%;
  height: calc(100% + 24px);
  background: var(--theme-skyblue);
}
body.home > main .top-donation .body .star,
.page-template-page-front > main .top-donation .body .star {
  position: absolute;
  z-index: 2;
  width: 411px;
  height: auto;
  right: -140px;
  top: -140px;
  animation: starLoopAnimation 40s linear infinite;
  pointer-events: none;
}
body.home > main .top-donation .body .inner,
.page-template-page-front > main .top-donation .body .inner {
  min-height: 320px;
  position: relative;
  z-index: 1;
  color: var(--theme-white);
  padding: 40px 56px;
}
body.home > main .top-donation .body .inner .title,
.page-template-page-front > main .top-donation .body .inner .title {
  position: relative;
  font-size: 3.6rem;
  line-height: 1.4;
  font-weight: bold;
  line-height: 1.7;
  letter-spacing: 0.4em;
}
body.home > main .top-donation .body .inner .text,
.page-template-page-front > main .top-donation .body .inner .text {
  position: relative;
  margin-top: 24px;
  font-size: 1.8rem;
  line-height: 1.6;
  max-width: 400px;
  padding-left: 24px;
  border-left: 1px solid var(--theme-white);
  letter-spacing: 0.2em;
}
body.home > main .top-donation .body .inner .image,
.page-template-page-front > main .top-donation .body .inner .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  border-radius: 0 32px 0 32px;
}
@media (max-width: 840px) {
  body.home > main .top-donation .body .inner,
  .page-template-page-front > main .top-donation .body .inner {
    min-height: auto;
    padding: 50px;
  }
  body.home > main .top-donation .body .inner .title,
  .page-template-page-front > main .top-donation .body .inner .title {
    font-size: 2.8rem;
  }
  body.home > main .top-donation .body .inner .text,
  .page-template-page-front > main .top-donation .body .inner .text {
    margin: 30px 0 0;
    font-size: 1.5rem;
    max-width: 300px;
  }
}
@media (max-width: 780px) {
  body.home > main .top-donation .body,
  .page-template-page-front > main .top-donation .body {
    margin: 72px auto 40px;
  }
  body.home > main .top-donation .body .star,
  .page-template-page-front > main .top-donation .body .star {
    width: 200px;
    height: auto;
    right: -73px;
    top: -82px;
  }
  body.home > main .top-donation .body .inner,
  .page-template-page-front > main .top-donation .body .inner {
    padding: 32px;
  }
  body.home > main .top-donation .body .inner .title,
  .page-template-page-front > main .top-donation .body .inner .title {
    font-size: 2rem;
  }
  body.home > main .top-donation .body .inner .text,
  .page-template-page-front > main .top-donation .body .inner .text {
    font-size: 1.3rem;
    margin-top: 16px;
    max-width: 220px;
  }
}
@media (max-width: 550px) {
  body.home > main .top-donation .body,
  .page-template-page-front > main .top-donation .body {
    margin: 64px auto 32px;
  }
  body.home > main .top-donation .body .inner,
  .page-template-page-front > main .top-donation .body .inner {
    padding: 16px;
  }
  body.home > main .top-donation .body .inner .text,
  .page-template-page-front > main .top-donation .body .inner .text {
    padding-left: 16px;
    margin-top: 12px;
    max-width: 200px;
  }
}
body.home > main .top-message,
.page-template-page-front > main .top-message {
  background-color: var(--theme-white);
  padding: 74px 0 120px;
}
@media (max-width: 780px) {
  body.home > main .top-message,
  .page-template-page-front > main .top-message {
    padding: 54px 0;
  }
}
body.home > main .top-message .inner,
.page-template-page-front > main .top-message .inner {
  width: min(1200px, 90%);
  margin: 0 auto;
}
body.home > main .top-message .body,
.page-template-page-front > main .top-message .body {
  display: flex;
  align-items: center;
  gap: 80px;
  margin: 56px 0 0;
}
@media (max-width: 1280px) {
  body.home > main .top-message .body,
  .page-template-page-front > main .top-message .body {
    gap: 60px;
  }
}
@media (max-width: 780px) {
  body.home > main .top-message .body,
  .page-template-page-front > main .top-message .body {
    flex-direction: column-reverse;
  }
}
@media (max-width: 550px) {
  body.home > main .top-message .body,
  .page-template-page-front > main .top-message .body {
    gap: 24px;
  }
}
body.home > main .top-message .image,
.page-template-page-front > main .top-message .image {
  width: 52%;
}
@media (max-width: 1280px) {
  body.home > main .top-message .image,
  .page-template-page-front > main .top-message .image {
    width: 48%;
  }
}
@media (max-width: 780px) {
  body.home > main .top-message .image,
  .page-template-page-front > main .top-message .image {
    width: 100%;
  }
}
body.home > main .top-message .title,
.page-template-page-front > main .top-message .title {
  font-size: 3.6rem;
  line-height: 1.4;
  font-weight: bold;
  line-height: 1.7;
  letter-spacing: 0.4em;
}
@media (max-width: 1280px) {
  body.home > main .top-message .title,
  .page-template-page-front > main .top-message .title {
    font-size: 3.2rem;
  }
}
@media (max-width: 550px) {
  body.home > main .top-message .title,
  .page-template-page-front > main .top-message .title {
    font-size: 2.4rem;
  }
}
body.home > main .top-message .text,
.page-template-page-front > main .top-message .text {
  margin: 32px 0;
  line-height: 1.8;
  letter-spacing: 0.2em;
}
@media (max-width: 550px) {
  body.home > main .top-message .text,
  .page-template-page-front > main .top-message .text {
    margin: 16px 0;
  }
}
body.home > main .top-message .name,
.page-template-page-front > main .top-message .name {
  font-size: 1.8rem;
  line-height: 1.6;
  letter-spacing: 0.2em;
}
@media (max-width: 550px) {
  body.home > main .top-message .name,
  .page-template-page-front > main .top-message .name {
    font-size: 1.5rem;
  }
}
body.home > main .top-contact,
.page-template-page-front > main .top-contact {
  padding: 74px 0 120px;
  text-align: center;
}
@media (max-width: 780px) {
  body.home > main .top-contact,
  .page-template-page-front > main .top-contact {
    padding: 54px 0;
  }
}
body.home > main .top-contact .faq-link,
.page-template-page-front > main .top-contact .faq-link {
  display: inline-block;
  font-size: 2rem;
  line-height: 1.55;
  font-weight: bold;
  letter-spacing: 0.2em;
  line-height: 1.7;
  padding: 8px 0;
  color: var(--theme-blue);
  border-bottom: 1px solid var(--theme-blue);
  margin: 32px auto;
}
@media (max-width: 550px) {
  body.home > main .top-contact .faq-link,
  .page-template-page-front > main .top-contact .faq-link {
    font-size: 1.8rem;
  }
}
body.home > main .top-contact .contact-link,
.page-template-page-front > main .top-contact .contact-link {
  position: relative;
  display: grid;
  place-items: center;
  height: 64px;
  min-width: 220px;
  width: -moz-max-content;
  width: max-content;
  padding: 16px 48px;
  transition: 0.3s;
  cursor: pointer;
  border: 1px solid var(--theme-blue);
  background-color: var(--theme-blue);
  color: var(--theme-white);
  border-radius: 0;
  text-decoration: none !important;
  font-size: 3.2rem;
  line-height: 1.4;
  font-weight: bold;
  width: 488px;
  height: 120px;
  letter-spacing: 0.4em;
  margin: auto;
}
body.home > main .top-contact .contact-link:hover,
.page-template-page-front > main .top-contact .contact-link:hover {
  background-color: var(--theme-white);
  color: var(--theme-blue);
}
@media (max-width: 840px) {
  body.home > main .top-contact .contact-link,
  .page-template-page-front > main .top-contact .contact-link {
    width: 365px;
    height: 85px;
    font-size: 2.4rem;
  }
}
@media (max-width: 550px) {
  body.home > main .top-contact .contact-link,
  .page-template-page-front > main .top-contact .contact-link {
    width: 90%;
    height: 75px;
    font-size: 2.2rem;
  }
}

@keyframes starLoopAnimation {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.page-template-page-about > main {
  position: relative;
  line-height: 1.7;
  padding: 0;
}
.page-template-page-about > main .container {
  display: flex;
  flex-direction: row-reverse;
  max-width: 1440px;
  margin: auto;
}
.page-template-page-about > main .heading {
  text-align: center;
}
.page-template-page-about > main .heading .en {
  color: var(--theme-gray);
  text-align: center;
  display: block;
  letter-spacing: 0.2em;
}
.page-template-page-about > main .heading .ja {
  position: relative;
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: bold;
  display: inline-block;
  padding: 8px 0 12px;
  letter-spacing: 0.3em;
}
@media (max-width: 550px) {
  .page-template-page-about > main .heading .ja {
    font-size: 2rem;
    line-height: 1.55;
  }
}
.page-template-page-about > main .heading .ja:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 48%;
  transform: translateX(-50%);
  background-color: var(--theme-blue);
  width: 80%;
  height: 1px;
}
.page-template-page-about > main .about-menu {
  position: sticky;
  top: 180px;
  right: 190px;
  width: 1px;
  height: 1px;
  z-index: 100;
}
@media (max-width: 840px) {
  .page-template-page-about > main .about-menu {
    display: none;
  }
}
.page-template-page-about > main .about-menu .inner {
  position: absolute;
  width: 164px;
  padding: 24px 16px;
  background-color: var(--theme-blue);
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
  color: var(--theme-white);
  font-weight: bold;
  align-items: flex-end;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
}
.page-template-page-about > main .about-body {
  width: 100%;
}
.page-template-page-about > main .about-body section {
  width: min(1200px, 90%);
  margin: 0 auto;
  padding: 120px 0;
}
@media (max-width: 780px) {
  .page-template-page-about > main .about-body section {
    padding: 72px 0;
  }
}
.page-template-page-about > main .about-body section + section {
  border-top: 2px solid var(--theme-blue);
}
.page-template-page-about > main .about-vision {
  padding-top: 0 !important;
}
.page-template-page-about > main .about-vision h3 {
  font-size: 4.8rem;
  line-height: 1.3;
  font-weight: bold;
  text-align: center;
  line-height: 1.7;
  letter-spacing: 0.3em;
  margin: 72px 0 80px;
}
@media (max-width: 840px) {
  .page-template-page-about > main .about-vision h3 {
    font-size: 3.2rem;
  }
}
@media (max-width: 780px) {
  .page-template-page-about > main .about-vision h3 {
    font-size: 2.8rem;
    margin: 40px 0;
  }
}
@media (max-width: 550px) {
  .page-template-page-about > main .about-vision h3 {
    font-size: 2.2rem;
  }
}
.page-template-page-about > main .about-vision .slider-container {
  display: block;
  width: 100%;
  height: 30vw;
  position: relative;
}
@media (max-width: 840px) {
  .page-template-page-about > main .about-vision .slider-container {
    height: 35vw;
  }
}
@media (max-width: 780px) {
  .page-template-page-about > main .about-vision .slider-container {
    height: 40vw;
  }
}
.page-template-page-about > main .about-vision .slider {
  position: absolute;
  top: 0;
  height: 100%;
  left: calc(50% - 50vw);
  width: 100vw;
  visibility: hidden;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.page-template-page-about > main .about-vision .slider.swiper-initialized {
  visibility: visible;
  overflow: visible;
  opacity: 1;
}
.page-template-page-about > main .about-vision .slider .swiper-wrapper {
  transition-timing-function: linear;
}
.page-template-page-about > main .about-vision .slider picture {
  width: 100%;
  height: auto;
  display: inline-block;
}
.page-template-page-about > main .about-vision .slider picture img {
  width: 100%;
  height: auto;
}
.page-template-page-about > main .about-vision .text {
  font-size: 2rem;
  line-height: 1.55;
  line-height: 1.7;
  text-align: center;
}
@media (max-width: 840px) {
  .page-template-page-about > main .about-vision .text {
    font-size: 1.8rem;
  }
}
@media (max-width: 780px) {
  .page-template-page-about > main .about-vision .text {
    font-size: 1.5rem;
  }
}
@media (max-width: 550px) {
  .page-template-page-about > main .about-vision .text {
    font-size: 1.3rem;
  }
}
.page-template-page-about > main .about-mission {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.page-template-page-about > main .about-mission .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 40px;
}
.page-template-page-about > main .about-mission .list li {
  width: 100%;
  background-color: var(--theme-white);
  display: flex;
  flex-direction: column;
}
.page-template-page-about > main .about-mission .list li h3 {
  font-size: 2rem;
  line-height: 1.55;
  font-weight: bold;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0.4em;
}
.page-template-page-about > main .about-mission .list li picture {
  display: inline-block;
  width: 100%;
}
.page-template-page-about > main .about-mission .list li picture img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}
.page-template-page-about > main .about-mission .list li p {
  flex-grow: 1;
  padding: 24px 16px;
  line-height: 1.8;
  letter-spacing: 0.2em;
}
.page-template-page-about > main .about-mission .text {
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: bold;
  line-height: 1.7;
  text-align: center;
}
@media (max-width: 1280px) {
  .page-template-page-about > main .about-mission {
    gap: 40px;
  }
  .page-template-page-about > main .about-mission .list {
    gap: 20px;
  }
  .page-template-page-about > main .about-mission .list li h3 {
    font-size: 1.8rem;
    line-height: 1.6;
    font-weight: bold;
  }
}
@media (max-width: 840px) {
  .page-template-page-about > main .about-mission .list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .page-template-page-about > main .about-mission .list li picture {
    height: 200px;
  }
  .page-template-page-about > main .about-mission .text {
    font-size: 2rem;
    letter-spacing: 0.3em;
  }
}
@media (max-width: 780px) {
  .page-template-page-about > main .about-mission {
    gap: 32px;
  }
  .page-template-page-about > main .about-mission .list {
    flex-direction: column;
    gap: 24px;
  }
  .page-template-page-about > main .about-mission .list li {
    width: 100%;
  }
  .page-template-page-about > main .about-mission .list li h3 {
    height: auto;
    padding: 24px 0;
  }
  .page-template-page-about > main .about-mission .text {
    font-size: 1.7rem;
  }
}
@media (max-width: 550px) {
  .page-template-page-about > main .about-mission .text {
    font-size: 1.5rem;
  }
}
.page-template-page-about > main .about-action {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.page-template-page-about > main .about-action .subtitle {
  width: 100%;
  font-size: 2rem;
  line-height: 1.55;
  font-weight: bold;
  text-align: center;
}
.page-template-page-about > main .about-action .list {
  display: flex;
  flex-direction: column;
  gap: 72px;
}
.page-template-page-about > main .about-action .list li {
  display: flex;
  flex-direction: row-reverse;
  background-color: var(--theme-white);
  border-radius: 0 20px;
}
.page-template-page-about > main .about-action .list li:nth-child(2n) {
  flex-direction: row;
}
.page-template-page-about > main .about-action .list li picture {
  display: inline-block;
  width: 60%;
  border-radius: 0 20px;
  overflow: hidden;
}
.page-template-page-about > main .about-action .list li picture img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.page-template-page-about > main .about-action .list li .body {
  padding: 40px min(5%, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  width: 40%;
}
.page-template-page-about > main .about-action .list li .body h3 {
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: 0.4em;
}
.page-template-page-about > main .about-action .list li .body p {
  font-size: 1.3rem;
  line-height: 1.7;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.2em;
}
.page-template-page-about > main .about-action .copy {
  font-size: 2rem;
  line-height: 1.55;
  font-weight: bold;
  margin-top: 40px;
  text-align: center;
}
.page-template-page-about > main .about-action .text {
  font-size: 1.8rem;
  line-height: 1.6;
  text-align: center;
}
@media (max-width: 780px) {
  .page-template-page-about > main .about-action .text {
    font-size: 1.5rem;
  }
}
@media (max-width: 840px) {
  .page-template-page-about > main .about-action .list {
    gap: 40px;
  }
  .page-template-page-about > main .about-action .list li picture {
    width: 55%;
  }
  .page-template-page-about > main .about-action .list li .body {
    width: 45%;
    padding: 12px 24px;
  }
}
@media (max-width: 780px) {
  .page-template-page-about > main .about-action .subtitle {
    font-size: 1.7rem;
  }
  .page-template-page-about > main .about-action .list {
    gap: 40px;
  }
  .page-template-page-about > main .about-action .list li {
    flex-direction: column;
  }
  .page-template-page-about > main .about-action .list li:nth-child(2n) {
    flex-direction: column;
  }
  .page-template-page-about > main .about-action .list li picture {
    width: 100%;
  }
  .page-template-page-about > main .about-action .list li .body {
    width: 100%;
    padding: 16px 24px 24px;
    gap: 8px;
  }
}
@media (max-width: 550px) {
  .page-template-page-about > main .about-action .subtitle {
    font-size: 1.5rem;
  }
}
.page-template-page-about > main .about-another .body {
  position: relative;
  display: block;
  margin: 72px 0 0;
  color: var(--theme-white);
  padding: 32px 56px 44px;
  overflow: hidden;
}
@media (max-width: 780px) {
  .page-template-page-about > main .about-another .body {
    margin: 40px 0 0;
    padding: 24px 40px;
  }
}
@media (max-width: 550px) {
  .page-template-page-about > main .about-another .body {
    padding: 24px;
  }
}
.page-template-page-about > main .about-another .body:hover img {
  transform: scale(1.03);
}
.page-template-page-about > main .about-another .inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 550px) {
  .page-template-page-about > main .about-another .inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
.page-template-page-about > main .about-another .inner h3 {
  font-size: 4.8rem;
  line-height: 1.3;
  font-weight: bold;
  letter-spacing: 0.4em;
  line-height: 1.7;
}
@media (max-width: 780px) {
  .page-template-page-about > main .about-another .inner h3 {
    font-size: 3.5rem;
  }
}
@media (max-width: 550px) {
  .page-template-page-about > main .about-another .inner h3 {
    font-size: 2.8rem;
  }
}
.page-template-page-about > main .about-another img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease-in-out;
}
.page-template-page-about > main .about-another .text {
  border-left: 1px solid;
  padding-left: 24px;
  font-size: 1.8rem;
  line-height: 1.6;
  line-height: 2;
  margin: 16px 0 0;
  letter-spacing: 0.2em;
}
@media (max-width: 780px) {
  .page-template-page-about > main .about-another .text {
    font-size: 1.5rem;
    padding-left: 16px;
  }
}
.page-template-page-about > main .about-another .link {
  font-weight: bold;
  letter-spacing: 0.2em;
}
@media (max-width: 550px) {
  .page-template-page-about > main .about-another .link {
    margin: 16px 0 0 auto;
  }
}
.page-template-page-about > main .about-outline .body {
  margin: 72px 0 0;
  font-size: 1.8rem;
  line-height: 1.6;
}
.page-template-page-about > main .about-outline .body dl {
  padding: 20px 16px;
  display: flex;
  border-top: 1px solid var(--theme-gray);
}
.page-template-page-about > main .about-outline .body dl:last-of-type {
  border-bottom: 1px solid var(--theme-gray);
}
.page-template-page-about > main .about-outline .body dt {
  width: 200px;
  flex-shrink: 0;
}
.page-template-page-about > main .about-outline .body ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.page-template-page-about > main .about-outline .body ul li {
  display: flex;
}
.page-template-page-about > main .about-outline .body ul li span:first-of-type {
  width: 183px;
  flex-shrink: 0;
}
.page-template-page-about > main .about-outline .body dd .map {
  margin-top: 12px;
  display: inline-block;
}
.page-template-page-about > main .about-outline .body a {
  transition: opacity 0.3s ease-in-out;
}
.page-template-page-about > main .about-outline .body a:hover {
  opacity: 0.8;
}
@media (max-width: 780px) {
  .page-template-page-about > main .about-outline .body {
    margin: 40px 0 0;
    font-size: 1.5rem;
    line-height: 1.7;
  }
  .page-template-page-about > main .about-outline .body dt {
    width: 150px;
  }
  .page-template-page-about > main .about-outline .body ul > li > span:first-of-type {
    width: 100px;
  }
  .page-template-page-about > main .about-outline .body img {
    padding: 0;
  }
}
@media (max-width: 550px) {
  .page-template-page-about > main .about-outline .body dl {
    flex-direction: column;
    gap: 8px;
  }
  .page-template-page-about > main .about-outline .body dl dt {
    width: 100%;
    font-size: 1.5rem;
    line-height: 1.7;
    font-weight: bold;
  }
  .page-template-page-about > main .about-outline .body dl dd {
    padding-left: 8px;
  }
}

.page-template-page-donate > main {
  position: relative;
  line-height: 1.7;
}
.page-template-page-donate > main .container {
  display: flex;
  flex-direction: row-reverse;
  max-width: 1440px;
  margin: auto;
}
.page-template-page-donate > main .heading {
  text-align: center;
}
.page-template-page-donate > main .heading .en {
  color: var(--theme-gray);
  text-align: center;
  display: block;
  letter-spacing: 0.2em;
}
.page-template-page-donate > main .heading .ja {
  position: relative;
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: bold;
  display: inline-block;
  padding: 8px 0 12px;
  letter-spacing: 0.3em;
}
@media (max-width: 550px) {
  .page-template-page-donate > main .heading .ja {
    font-size: 2rem;
    line-height: 1.55;
  }
}
.page-template-page-donate > main .heading .ja:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 48%;
  transform: translateX(-50%);
  background-color: var(--theme-blue);
  width: 80%;
  height: 1px;
}
.page-template-page-donate > main .donate-menu {
  position: sticky;
  top: 180px;
  right: 190px;
  width: 1px;
  height: 1px;
  z-index: 100;
}
@media (max-width: 840px) {
  .page-template-page-donate > main .donate-menu {
    display: none;
  }
}
.page-template-page-donate > main .donate-menu .inner {
  position: absolute;
  width: 164px;
  padding: 24px 16px;
  background-color: var(--theme-blue);
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1.3rem;
  line-height: 1.7;
  color: var(--theme-white);
  font-weight: bold;
  align-items: flex-end;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
}
.page-template-page-donate > main .donate-about {
  width: min(1200px, 90%);
  margin: 0 auto;
  padding: 0 0 120px;
}
@media (max-width: 780px) {
  .page-template-page-donate > main .donate-about {
    padding: 0 0 72px;
  }
}
.page-template-page-donate > main .donate-about .title {
  font-size: 3.2rem;
  line-height: 1.4;
  font-weight: bold;
  line-height: 1.8;
  text-align: center;
  letter-spacing: 0.4em;
  margin-bottom: 40px;
}
@media (max-width: 1280px) {
  .page-template-page-donate > main .donate-about .title {
    font-size: 2.4rem;
    line-height: 1.5;
    font-weight: bold;
  }
}
@media (max-width: 550px) {
  .page-template-page-donate > main .donate-about .title {
    font-size: 17px;
  }
}
.page-template-page-donate > main .donate-about .list {
  margin: 72px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
@media (max-width: 840px) {
  .page-template-page-donate > main .donate-about .list {
    margin: 40px 0;
    flex-direction: column;
    gap: 20px;
  }
}
.page-template-page-donate > main .donate-about .list li .list-text {
  margin: 24px 0 0;
  font-size: 1.8rem;
  line-height: 1.6;
  text-align: center;
}
@media (max-width: 550px) {
  .page-template-page-donate > main .donate-about .list li .list-text {
    font-size: 1.3rem;
    line-height: 1.7;
  }
}
.page-template-page-donate > main .donate-about .list svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
@media (max-width: 550px) {
  .page-template-page-donate > main .donate-about .list svg {
    width: 20px;
    height: 20px;
  }
}
.page-template-page-donate > main .donate-about .bottom-text {
  font-size: 2rem;
  line-height: 1.55;
  text-align: center;
  margin: 0 0 72px;
}
@media (max-width: 780px) {
  .page-template-page-donate > main .donate-about .bottom-text {
    font-size: 1.5rem;
    line-height: 1.7;
    margin: 0 0 40px;
  }
}
@media (max-width: 550px) {
  .page-template-page-donate > main .donate-about .bottom-text {
    font-size: 1.3rem;
    line-height: 1.7;
  }
}
.page-template-page-donate > main .donate-howto {
  width: min(1200px, 90%);
  margin: 0 auto;
  border-top: 1px solid var(--theme-blue);
  padding: 120px 0;
}
.page-template-page-donate > main .donate-howto .text {
  margin: 56px 0 0;
  font-size: 2rem;
  line-height: 1.55;
  text-align: center;
  letter-spacing: 0.2em;
  line-height: 1.9;
}
.page-template-page-donate > main .donate-howto .list {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  margin: 56px 0 0;
}
.page-template-page-donate > main .donate-howto .list li {
  width: calc(50% - 20px);
  background-color: #FFF3DE;
  border-radius: 0 32px 0 32px;
  padding: 32px 24px;
  text-align: center;
}
.page-template-page-donate > main .donate-howto .list li h3 {
  color: var(--theme-orange);
  font-size: 3.6rem;
  line-height: 1.4;
  font-weight: bold;
  letter-spacing: 0.3em;
}
.page-template-page-donate > main .donate-howto .list li p {
  margin: 20px 0;
  font-size: 1.8rem;
  line-height: 1.6;
  letter-spacing: 0.2em;
  line-height: 1.8;
}
.page-template-page-donate > main .donate-howto .list li .design-btn {
  gap: 20px;
}
.page-template-page-donate > main .donate-howto .list li:nth-of-type(2) {
  background-color: var(--theme-skyblue);
}
.page-template-page-donate > main .donate-howto .list li:nth-of-type(2) h3 {
  color: #005CAF;
}
@media (max-width: 1280px) {
  .page-template-page-donate > main .donate-howto {
    gap: 24px;
  }
  .page-template-page-donate > main .donate-howto .list {
    gap: 24px;
    flex-direction: column;
  }
  .page-template-page-donate > main .donate-howto .list li {
    width: 100%;
  }
  .page-template-page-donate > main .donate-howto .list li h3 {
    font-size: 2.4rem;
    line-height: 1.5;
    font-weight: bold;
  }
}
@media (max-width: 840px) {
  .page-template-page-donate > main .donate-howto .list {
    gap: 24px;
    flex-direction: column;
  }
  .page-template-page-donate > main .donate-howto .list li {
    width: 100%;
  }
  .page-template-page-donate > main .donate-howto .list li h3 {
    font-size: 2.4rem;
    line-height: 1.5;
    font-weight: bold;
  }
}
@media (max-width: 780px) {
  .page-template-page-donate > main .donate-howto {
    padding: 72px 0;
  }
  .page-template-page-donate > main .donate-howto .text {
    font-size: 1.5rem;
    line-height: 1.7;
    margin: 40px 0 0;
  }
}
@media (max-width: 550px) {
  .page-template-page-donate > main .donate-howto .text {
    font-size: 1.3rem;
    line-height: 1.7;
  }
  .page-template-page-donate > main .donate-howto .list > li h3 {
    font-size: 2rem;
    line-height: 1.55;
    font-weight: bold;
  }
  .page-template-page-donate > main .donate-howto .list > li p {
    font-size: 1.3rem;
    line-height: 1.7;
  }
}
.page-template-page-donate > main .donate-faq {
  border-top: 1px solid var(--theme-blue);
  padding: 120px 0 0;
}
@media (max-width: 780px) {
  .page-template-page-donate > main .donate-faq {
    padding: 72px 0 0;
  }
}
.page-template-page-donate > main .donate-faq .heading {
  margin: 0 0 72px;
}
.page-template-page-donate > main .donate-faq .body {
  width: min(1200px, 90%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 40px;
}
.page-template-page-donate > main .donate-faq .body .qa-item {
  display: inline-block;
  height: auto;
}
.page-template-page-donate > main .donate-faq .body .qa-item .qa-q {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  padding: 8px 0;
  border-bottom: 1px solid var(--theme-black);
}
.page-template-page-donate > main .donate-faq .body .qa-item .qa-q .qa-q-label {
  font-size: 2rem;
  line-height: 1.55;
  font-weight: bold;
}
.page-template-page-donate > main .donate-faq .body .qa-item .qa-q .qa-q-text {
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: bold;
  flex-grow: 1;
}
@media (max-width: 550px) {
  .page-template-page-donate > main .donate-faq .body .qa-item .qa-q .qa-q-label {
    font-size: 1.6rem;
    line-height: 1.75;
    font-weight: bold;
  }
  .page-template-page-donate > main .donate-faq .body .qa-item .qa-q .qa-q-text {
    font-size: 1.5rem;
    line-height: 1.7;
    font-weight: bold;
    flex-grow: 1;
  }
}
.page-template-page-donate > main .donate-faq .body .qa-item .qa-a {
  width: 100%;
  height: auto;
  padding: 8px;
}

.page-template-page-donate-thanks > main {
  position: relative;
}
.page-template-page-donate-thanks > main .donate-thanks-sc1 {
  width: min(1200px, 90%);
  margin: 0 auto;
  text-align: center;
}
.page-template-page-donate-thanks > main .donate-thanks-sc1 h2 {
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: bold;
  padding-bottom: 40px;
}
.page-template-page-donate-thanks > main .donate-thanks-sc1 .thanks-message {
  width: min(100%, 900px);
  margin: 0 auto;
}
.page-template-page-donate-thanks > main .donate-thanks-sc1 .thanks-message p {
  margin-bottom: 24px;
}

/*--------------------------------------------
    活動報告 一覧画面
--------------------------------------------*/
body.blog > main .wrapper {
  width: min(1200px, 90%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media (max-width: 840px) {
  body.blog > main .wrapper {
    gap: 40px;
  }
}
@media (max-width: 550px) {
  body.blog > main .wrapper {
    gap: 24px;
  }
}
body.blog > main .wrapper .activities-sc1 {
  width: 100%;
}
body.blog > main .wrapper .activities-sc1 .news-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}
body.blog > main .wrapper .activities-sc1 .news-list .news-item {
  width: 100%;
}
body.blog > main .wrapper .activities-sc1 .news-list .news-item .news-card {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 80px;
}
body.blog > main .wrapper .activities-sc1 .news-list .news-item .news-card .trend-img {
  position: relative;
  display: grid;
  width: 30%;
}
body.blog > main .wrapper .activities-sc1 .news-list .news-item .news-card .trend-img .thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 8/5;
  display: inline-block;
  overflow: hidden;
  border-radius: 0 24px 0 24px;
}
body.blog > main .wrapper .activities-sc1 .news-list .news-item .news-card .trend-img .thumb .thumb-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body.blog > main .wrapper .activities-sc1 .news-list .news-item .news-card .trend-img .thumb-badge {
  position: absolute;
  width: 30%;
  height: auto;
  top: 0;
  left: 0;
  transform: translate(-30%, -30%);
  z-index: 1;
  filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.2));
}
body.blog > main .wrapper .activities-sc1 .news-list .news-item .news-card .content {
  width: calc(70% - 80px);
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
body.blog > main .wrapper .activities-sc1 .news-list .news-item .news-card .content .info-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
body.blog > main .wrapper .activities-sc1 .news-list .news-item .news-card .content .info-wrapper .categories {
  display: flex;
  flex-direction: row;
  gap: 8px;
  flex-wrap: wrap;
}
body.blog > main .wrapper .activities-sc1 .news-list .news-item .news-card .content .info-wrapper .categories .label {
  display: grid;
  place-items: center;
  padding: 2px 8px;
  background-color: var(--theme-blue);
  color: var(--theme-white);
  font-size: 1.3rem;
  line-height: 1.7;
  font-weight: 500;
}
body.blog > main .wrapper .activities-sc1 .news-list .news-item .news-card .content .info-wrapper .updated {
  color: var(--theme-deep-gray);
}
body.blog > main .wrapper .activities-sc1 .news-list .news-item .news-card .content .title {
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: bold;
}
body.blog > main .wrapper .activities-sc1 .news-list .news-item .news-card .content .tags {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
body.blog > main .wrapper .activities-sc1 .news-list .news-item .news-card .content .tags .tag {
  font-size: 1.3rem;
  line-height: 1.7;
  font-weight: 500;
  color: var(--theme-blue);
}
body.blog > main .wrapper .activities-sc1 .news-list .news-item .news-card .content .excerpt {
  font-size: 1.8rem;
  line-height: 1.6;
}
@media (max-width: 1280px) {
  body.blog > main .wrapper .activities-sc1 .news-list > .news-item > .news-card {
    gap: 40px;
  }
  body.blog > main .wrapper .activities-sc1 .news-list > .news-item > .news-card .content {
    width: calc(70% - 40px);
  }
  body.blog > main .wrapper .activities-sc1 .news-list > .news-item > .news-card .content .title {
    font-size: 2rem;
    line-height: 1.55;
    font-weight: bold;
  }
  body.blog > main .wrapper .activities-sc1 .news-list > .news-item > .news-card .content .excerpt {
    font-size: 1.5rem;
    line-height: 1.7;
  }
}
@media (max-width: 840px) {
  body.blog > main .wrapper .activities-sc1 .news-list > .news-item > .news-card {
    gap: 24px;
    width: 100%;
  }
  body.blog > main .wrapper .activities-sc1 .news-list > .news-item > .news-card .content {
    width: calc(70% - 24px);
  }
  body.blog > main .wrapper .activities-sc1 .news-list > .news-item > .news-card .content .info-wrapper .updated {
    font-size: 1.3rem;
    line-height: 1.7;
    font-weight: 500;
  }
  body.blog > main .wrapper .activities-sc1 .news-list > .news-item > .news-card .content .title {
    font-size: 1.8rem;
    line-height: 1.6;
    font-weight: bold;
  }
  body.blog > main .wrapper .activities-sc1 .news-list > .news-item > .news-card .content .excerpt {
    font-size: 1.3rem;
    line-height: 1.7;
  }
}
@media (max-width: 550px) {
  body.blog > main .wrapper .activities-sc1 .news-list > .news-item > .news-card {
    flex-direction: column;
    width: 100%;
  }
  body.blog > main .wrapper .activities-sc1 .news-list > .news-item > .news-card .trend-img {
    width: 100%;
    padding: 20px 0 0 20px;
  }
  body.blog > main .wrapper .activities-sc1 .news-list > .news-item > .news-card .trend-img .thumb-badge {
    width: 25%;
    transform: translate(0, 0);
  }
  body.blog > main .wrapper .activities-sc1 .news-list > .news-item > .news-card .content {
    width: 100%;
  }
  body.blog > main .wrapper .activities-sc1 .news-list > .news-item > .news-card .content .info-wrapper .updated {
    font-size: 1.3rem;
    line-height: 1.7;
    font-weight: 500;
  }
  body.blog > main .wrapper .activities-sc1 .news-list > .news-item > .news-card .content .title {
    font-size: 1.8rem;
    line-height: 1.6;
    font-weight: bold;
  }
  body.blog > main .wrapper .activities-sc1 .news-list > .news-item > .news-card .content .excerpt {
    font-size: 1.3rem;
    line-height: 1.7;
  }
}
body.blog > main .wrapper hr {
  width: 100%;
  height: 1px;
  border-bottom: 1px solid var(--theme-gray);
}
body.blog > main .wrapper .activities-sc2 {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 80px;
}
body.blog > main .wrapper .activities-sc2 .main-content {
  width: calc(100% - 280px);
  display: flex;
  flex-direction: column;
}
body.blog > main .wrapper .activities-sc2 .main-content .news-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
body.blog > main .wrapper .activities-sc2 .main-content .news-list .news-item {
  width: 100%;
}
body.blog > main .wrapper .activities-sc2 .main-content .news-list .news-item .news-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
body.blog > main .wrapper .activities-sc2 .main-content .news-list .news-item .news-card .thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 8/5;
  display: inline-block;
  border-radius: 0 24px 0 24px;
  overflow: hidden;
}
body.blog > main .wrapper .activities-sc2 .main-content .news-list .news-item .news-card .thumb .thumb-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: top;
}
body.blog > main .wrapper .activities-sc2 .main-content .news-list .news-item .news-card .content {
  flex: 1;
  width: 100%;
}
body.blog > main .wrapper .activities-sc2 .main-content .news-list .news-item .news-card .content .info-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 16px;
}
body.blog > main .wrapper .activities-sc2 .main-content .news-list .news-item .news-card .content .info-wrapper .categories {
  display: flex;
  flex-direction: row;
  gap: 4px 8px;
  flex-wrap: wrap;
}
body.blog > main .wrapper .activities-sc2 .main-content .news-list .news-item .news-card .content .info-wrapper .categories .label {
  display: grid;
  place-items: center;
  padding: 2px 8px;
  background-color: var(--theme-blue);
  color: var(--theme-white);
  font-size: 1.3rem;
  line-height: 1.7;
  font-weight: 500;
}
body.blog > main .wrapper .activities-sc2 .main-content .news-list .news-item .news-card .content .info-wrapper .updated {
  font-size: 1.3rem;
  line-height: 1.7;
  font-weight: 500;
  color: var(--theme-deep-gray);
}
body.blog > main .wrapper .activities-sc2 .main-content .news-list .news-item .news-card .content .title {
  font-size: 1.5rem;
  line-height: 1.7;
  font-weight: 500;
}
body.blog > main .wrapper .activities-sc2 .main-content .news-list .news-item .news-card .content .tags {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
body.blog > main .wrapper .activities-sc2 .main-content .news-list .news-item .news-card .content .tags .label {
  font-size: 1.3rem;
  line-height: 1.7;
  font-weight: 500;
  color: var(--theme-blue);
}
body.blog > main .wrapper .activities-sc2 aside {
  width: 240px;
}
body.blog > main .wrapper .activities-sc2 aside .news-side-nav {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
body.blog > main .wrapper .activities-sc2 aside .news-side-nav .container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
body.blog > main .wrapper .activities-sc2 aside .news-side-nav .container .label {
  font-size: 1.5rem;
  line-height: 1.7;
  font-weight: 500;
  color: var(--theme-blue);
}
body.blog > main .wrapper .activities-sc2 aside .news-side-nav .container .news-cat-list, body.blog > main .wrapper .activities-sc2 aside .news-side-nav .container .news-tag-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  padding: 24px;
  background-color: var(--theme-white);
  border-left: 1px solid var(--theme-blue);
}
@media (max-width: 840px) {
  body.blog > main .wrapper .activities-sc2 aside .news-side-nav .container .news-cat-list, body.blog > main .wrapper .activities-sc2 aside .news-side-nav .container .news-tag-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 24px;
    padding: 4px 4px 4px 16px;
  }
}
@media (max-width: 840px) {
  body.blog > main .wrapper .activities-sc2 {
    flex-direction: column-reverse;
    gap: 64px;
  }
  body.blog > main .wrapper .activities-sc2 .main-content {
    width: 100%;
  }
  body.blog > main .wrapper .activities-sc2 aside {
    width: 100%;
  }
  body.blog > main .wrapper .activities-sc2 aside .news-side-nav {
    gap: 24px;
  }
  body.blog > main .wrapper .activities-sc2 aside .news-side-nav .container {
    gap: 8px;
  }
}

/*--------------------------------------------
    NEWS 一覧画面
--------------------------------------------*/
body.post-type-archive-news > main {
  position: relative;
}
body.post-type-archive-news > main .news-sc1 {
  width: min(1200px, 90%);
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 80px;
}
body.post-type-archive-news > main .news-sc1 .main-content {
  width: calc(100% - 280px);
  display: flex;
  flex-direction: column;
}
body.post-type-archive-news > main .news-sc1 .main-content .news-list {
  display: flex;
  flex-direction: column;
}
body.post-type-archive-news > main .news-sc1 .main-content .news-list::not(:last-child) {
  border-bottom: 1px solid var(--theme-gray);
}
body.post-type-archive-news > main .news-sc1 .main-content .news-list .news-item {
  width: 100%;
  height: auto;
  position: relative;
}
body.post-type-archive-news > main .news-sc1 .main-content .news-list .news-item::before {
  content: "";
  z-index: 1;
  width: 4px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--theme-blue);
  transition: 0.3s;
  transform: scaleX(0);
}
body.post-type-archive-news > main .news-sc1 .main-content .news-list .news-item .news-card {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px 16px;
}
body.post-type-archive-news > main .news-sc1 .main-content .news-list .news-item .news-card .categories {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
body.post-type-archive-news > main .news-sc1 .main-content .news-list .news-item .news-card .categories li {
  display: grid;
  place-items: center;
  padding: 2px 8px;
  background-color: var(--theme-blue);
  color: var(--theme-white);
  font-size: 1.3rem;
  line-height: 1.7;
  font-weight: 500;
}
body.post-type-archive-news > main .news-sc1 .main-content .news-list .news-item .news-card .title {
  font-size: 1.5rem;
  line-height: 1.7;
  font-weight: 500;
}
body.post-type-archive-news > main .news-sc1 .main-content .news-list .news-item .news-card .updated {
  font-size: 1.3rem;
  line-height: 1.7;
}
@media (hover: hover) and (pointer: fine) {
  body.post-type-archive-news > main .news-sc1 .main-content .news-list .news-item:hover::before {
    transform: scaleX(1);
  }
}
body.post-type-archive-news > main .news-sc1 .main-content .news-list .news-item hr {
  width: 100%;
  height: 1px;
  border-bottom: 1px solid var(--theme-gray);
}
body.post-type-archive-news > main .news-sc1 aside {
  width: 240px;
}
body.post-type-archive-news > main .news-sc1 aside .news-cat-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
body.post-type-archive-news > main .news-sc1 aside .news-cat-nav .label {
  font-size: 1.5rem;
  line-height: 1.7;
  font-weight: 500;
  color: var(--theme-blue);
}
body.post-type-archive-news > main .news-sc1 aside .news-cat-nav .news-cat-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  padding: 24px;
  background-color: var(--theme-white);
  border-left: 1px solid var(--theme-blue);
}
@media (max-width: 840px) {
  body.post-type-archive-news > main .news-sc1 aside .news-cat-nav .news-cat-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 24px;
    padding: 4px 4px 4px 16px;
  }
}
@media (max-width: 840px) {
  body.post-type-archive-news > main .news-sc1 {
    flex-direction: column-reverse;
    gap: 64px;
  }
  body.post-type-archive-news > main .news-sc1 .main-content {
    width: 100%;
  }
  body.post-type-archive-news > main .news-sc1 aside {
    width: 100%;
  }
  body.post-type-archive-news > main .news-sc1 aside .news-side-nav {
    gap: 24px;
  }
  body.post-type-archive-news > main .news-sc1 aside .news-side-nav .container {
    gap: 8px;
  }
}
@media (max-width: 550px) {
  body.post-type-archive-news > main .news-sc1 .main-content > .news-list > .news-item > .news-card {
    padding: 12px 6px;
  }
}

.page-template-page-qa > main .qa-sc1 {
  width: min(1200px, 90%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 40px;
}
.page-template-page-qa > main .qa-sc1 .qa-item {
  display: inline-block;
  height: auto;
}
.page-template-page-qa > main .qa-sc1 .qa-item .qa-q {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  padding: 8px 0;
  border-bottom: 1px solid var(--theme-black);
}
.page-template-page-qa > main .qa-sc1 .qa-item .qa-q .qa-q-label {
  font-size: 2rem;
  line-height: 1.55;
  font-weight: bold;
}
.page-template-page-qa > main .qa-sc1 .qa-item .qa-q .qa-q-text {
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: bold;
  flex-grow: 1;
}
@media (max-width: 550px) {
  .page-template-page-qa > main .qa-sc1 .qa-item .qa-q .qa-q-label {
    font-size: 1.6rem;
    line-height: 1.75;
    font-weight: bold;
  }
  .page-template-page-qa > main .qa-sc1 .qa-item .qa-q .qa-q-text {
    font-size: 1.5rem;
    line-height: 1.7;
    font-weight: bold;
    flex-grow: 1;
  }
}
.page-template-page-qa > main .qa-sc1 .qa-item .qa-a {
  width: 100%;
  height: auto;
  padding: 8px;
}

/*--------------------------------------------
  個別記事画面
--------------------------------------------*/
body.single > main .single-sc1 {
  width: min(1080px, 90%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
body.single > main .single-sc1 .single-page-header {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 64px;
}
body.single > main .single-sc1 .single-page-header .thumb {
  width: 30%;
  height: auto;
  aspect-ratio: 8/5;
  display: inline-block;
  overflow: hidden;
  border-radius: 0 24px 0 24px;
}
body.single > main .single-sc1 .single-page-header .thumb .thumb-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body.single > main .single-sc1 .single-page-header .content {
  width: calc(70% - 80px);
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
body.single > main .single-sc1 .single-page-header .content .info-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
body.single > main .single-sc1 .single-page-header .content .info-wrapper .categories {
  display: flex;
  flex-direction: row;
  gap: 8px;
  flex-wrap: wrap;
}
body.single > main .single-sc1 .single-page-header .content .info-wrapper .categories .label {
  display: grid;
  place-items: center;
  padding: 2px 8px;
  background-color: var(--theme-blue);
  color: var(--theme-white);
  font-size: 1.3rem;
  line-height: 1.7;
  font-weight: 500;
}
body.single > main .single-sc1 .single-page-header .content .info-wrapper .updated {
  color: var(--theme-deep-gray);
}
body.single > main .single-sc1 .single-page-header .content .title {
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: bold;
}
body.single > main .single-sc1 .single-page-header .content .tags {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
body.single > main .single-sc1 .single-page-header .content .tags .tag {
  font-size: 1.3rem;
  line-height: 1.7;
  font-weight: 500;
  color: var(--theme-blue);
}
body.single > main .single-sc1 .single-page-header .content .tags {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
body.single > main .single-sc1 .single-page-header .content .tags .label {
  font-size: 1.3rem;
  line-height: 1.7;
  font-weight: 500;
  color: var(--theme-blue);
}
@media (max-width: 1280px) {
  body.single > main .single-sc1 {
    gap: 40px;
  }
  body.single > main .single-sc1 .single-page-header {
    gap: 40px;
  }
  body.single > main .single-sc1 .single-page-header .content {
    width: calc(100% - 40px);
  }
}
@media (max-width: 840px) {
  body.single > main .single-sc1 {
    gap: 24px;
  }
  body.single > main .single-sc1 .single-page-header {
    gap: 24px;
  }
  body.single > main .single-sc1 .single-page-header .content {
    width: calc(100% - 24px);
  }
}
@media (max-width: 550px) {
  body.single > main .single-sc1 .single-page-header {
    flex-direction: column;
    gap: 8px;
  }
  body.single > main .single-sc1 .single-page-header .thumb {
    width: 100%;
  }
  body.single > main .single-sc1 .single-page-header .content {
    width: 100%;
  }
  body.single > main .single-sc1 .single-page-header .content .title {
    font-size: 1.8rem;
    line-height: 1.6;
    font-weight: bold;
  }
}
body.single > main .single-sc1 hr {
  width: 100%;
  height: 1px;
  border-bottom: 1px solid var(--theme-gray);
}
body.single > main .single-sc1 .content-box {
  width: 100%;
}
body.single > main .single-sc1 .content-box p {
  font-size: 1.5rem;
  line-height: 1.7;
  margin-bottom: 1em;
}
body.single > main .single-sc1 .content-box h1 {
  font-size: clamp(20px, 20px + 12 * (100vw - 550px) / 730, 32px);
  margin: clamp(8px, 8px + 12 * (100vw - 550px) / 730, 20px) 0;
  font-weight: 500;
}
body.single > main .single-sc1 .content-box h2 {
  font-size: clamp(19px, 19px + 9 * (100vw - 550px) / 730, 28px);
  margin: clamp(4px, 4px + 8 * (100vw - 550px) / 730, 12px) 0;
  font-weight: 500;
}
body.single > main .single-sc1 .content-box h3 {
  font-size: clamp(18px, 18px + 6 * (100vw - 550px) / 730, 24px);
  font-weight: 500;
  margin: 4px 0;
}
body.single > main .single-sc1 .content-box h4 {
  font-size: clamp(17px, 17px + 3 * (100vw - 550px) / 730, 20px);
  font-weight: 500;
  margin: 8px 0;
}
body.single > main .single-sc1 .content-box h5 {
  font-size: clamp(16px, 16px + 1 * (100vw - 550px) / 730, 17px);
  font-weight: 500;
  margin: 8px 0;
}
body.single > main .single-sc1 .content-box h6 {
  font-size: clamp(15px, 15px + 1 * (100vw - 550px) / 730, 16px);
  font-weight: 500;
  margin: 8px 0;
}
body.single > main .single-sc1 .content-box ul, body.single > main .single-sc1 .content-box ol {
  padding-inline-start: 40px;
  margin-bottom: 1em;
}
body.single > main .single-sc1 .content-box ul.has-background, body.single > main .single-sc1 .content-box ol.has-background {
  padding: 12px 16px 12px 32px;
}
body.single > main .single-sc1 .content-box ul li, body.single > main .single-sc1 .content-box ol li {
  all: revert;
  margin-block-start: 0.4em;
  margin-block-end: 0.4em;
}
body.single > main .single-sc1 .content-box ul {
  list-style-type: disc;
}
body.single > main .single-sc1 .content-box ol {
  list-style-type: decimal;
}
body.single > main .single-sc1 .content-box a {
  word-break: break-word;
  color: var(--theme-link-blue);
  text-decoration: underline;
  cursor: pointer;
  transition: 0.4s;
}
@media (hover: hover) and (pointer: fine) {
  body.single > main .single-sc1 .content-box a:hover {
    color: var(--theme-link-blue-hover);
  }
}
body.single > main .single-sc1 .content-box strong {
  font-weight: 600;
  font-size: 120%;
  letter-spacing: 1px;
}
body.single > main .single-sc1 .content-box em {
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
body.single > main .single-sc1 .content-box figure {
  display: grid;
  place-items: center;
}
body.single > main .single-sc1 .content-box figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: rgba(103, 70, 70, 0.05);
  box-shadow: 1px 1px 4px var(--theme-light-gray);
}
body.single > main .single-sc1 .content-box figure figcaption {
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 500;
  text-align: center;
}
body.single > main .single-sc1 .content-box .wp-block-table {
  background-color: rgba(255, 255, 255, 0.1);
}
body.single > main .single-sc1 .content-box .wp-block-table table {
  border-collapse: collapse;
  border: 1px solid var(--theme-brown);
}
body.single > main .single-sc1 .content-box .wp-block-table table th {
  background-color: rgba(103, 70, 70, 0.07);
  text-align: center;
  padding: 6px 8px;
  font-weight: 500;
  border: 1px solid var(--theme-brown);
}
body.single > main .single-sc1 .content-box .wp-block-table table td {
  padding: 6px 8px;
  border: 1px solid var(--theme-brown);
}
body.single > main .single-sc1 .content-box .wp-block-table table thead {
  border-bottom: 2px solid var(--theme-brown);
}
body.single > main .single-sc1 .content-box .wp-block-table table tfoot {
  border-top: 2px solid var(--theme-brown);
}
body.single > main .single-sc1 .content-box .is-layout-flex {
  gap: clamp(16px, 16px + 24 * (100vw - 550px) / 730, 40px);
  margin: clamp(16px, 16px + 8 * (100vw - 550px) / 730, 24px) auto;
}
body.single > main .single-sc1 .content-box hr.wp-block-separator {
  margin: clamp(12px, 12px + 8 * (100vw - 550px) / 730, 20px) 0;
  width: 100%;
  height: 1px;
  border: none;
  border-bottom: 1px solid var(--theme-dark-brown);
}
body.single > main .single-sc1 .content-box .has-background {
  padding: 12px 16px;
}
body.single > main .single-sc1 .content-box .wp-block-preformatted {
  font-family: "Zen Maru Gothic", serif;
  border: 1px solid var(--theme-blue);
  background-color: #ffeaea;
  padding: 12px 16px;
}
body.single > main .single-sc1 .content-box .wp-block-buttons {
  display: flex;
}
body.single > main .single-sc1 .content-box .wp-block-buttons .wp-block-button a.wp-element-button {
  position: relative;
  display: grid;
  place-items: center;
  height: 64px;
  min-width: 220px;
  width: -moz-max-content;
  width: max-content;
  padding: 16px 48px;
  transition: 0.3s;
  cursor: pointer;
  border: 1px solid var(--theme-blue);
  background-color: var(--theme-blue);
  color: var(--theme-white);
  border-radius: 0;
  text-decoration: none !important;
}
body.single > main .single-sc1 .content-box .wp-block-buttons .wp-block-button a.wp-element-button:hover {
  background-color: var(--theme-white);
  color: var(--theme-blue);
}
body.single > main .single-sc1 .btn-area {
  width: 100%;
  display: grid;
  place-items: center;
}

.page-template-page-contact > main {
  position: relative;
}
.page-template-page-contact > main .contact-sc1 {
  width: min(1000px, 90%);
  margin: 0 auto;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 120px;
}
.page-template-page-contact > main .contact-sc1 .contact-info {
  text-align: center;
}
.page-template-page-contact > main .contact-sc1 .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.page-template-page-contact > main .contact-sc1 .wpcf7-form .contact-line {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.page-template-page-contact > main .contact-sc1 .wpcf7-form .contact-line .label {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 8px;
  width: 100%;
}
.page-template-page-contact > main .contact-sc1 .wpcf7-form .contact-line .label span {
  display: grid;
  place-items: center;
}
.page-template-page-contact > main .contact-sc1 .wpcf7-form .contact-line .label .required {
  font-size: 1.5rem;
  line-height: 1.7;
  font-weight: 500;
  color: var(--theme-orange);
}
.page-template-page-contact > main .contact-sc1 .wpcf7-form .contact-line .wpcf7-form-control-wrap {
  width: 100%;
}
.page-template-page-contact > main .contact-sc1 .wpcf7-form .contact-line .wpcf7-form-control-wrap input, .page-template-page-contact > main .contact-sc1 .wpcf7-form .contact-line .wpcf7-form-control-wrap textarea {
  width: 100%;
  background-color: var(--theme-white);
  border: 1px solid var(--theme-white);
  padding: 12px 16px;
  border-radius: 4px;
}
.page-template-page-contact > main .contact-sc1 .wpcf7-form .contact-line .wpcf7-form-control-wrap input:focus, .page-template-page-contact > main .contact-sc1 .wpcf7-form .contact-line .wpcf7-form-control-wrap textarea:focus {
  border: 1px solid var(--theme-blue);
}
.page-template-page-contact > main .contact-sc1 .wpcf7-form .contact-line .wpcf7-form-control-wrap input::-moz-placeholder, .page-template-page-contact > main .contact-sc1 .wpcf7-form .contact-line .wpcf7-form-control-wrap textarea::-moz-placeholder {
  color: var(--theme-gray);
}
.page-template-page-contact > main .contact-sc1 .wpcf7-form .contact-line .wpcf7-form-control-wrap input::placeholder, .page-template-page-contact > main .contact-sc1 .wpcf7-form .contact-line .wpcf7-form-control-wrap textarea::placeholder {
  color: var(--theme-gray);
}
.page-template-page-contact > main .contact-sc1 .wpcf7-form .btn-area {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column-reverse;
}
.page-template-page-contact > main .contact-sc1 .wpcf7-form .btn-area input[type=submit] {
  transition: 0.4s;
}
.page-template-page-contact > main .contact-sc1 .wpcf7-form .btn-area input[type=submit]:hover {
  background-color: var(--theme-snow-white);
  color: var(--theme-blue);
}

.page-template-page-contact-thanks > main {
  position: relative;
}
.page-template-page-contact-thanks > main .contact-thanks-sc1 {
  width: min(1200px, 90%);
  margin: 0 auto;
  text-align: center;
}
.page-template-page-contact-thanks > main .contact-thanks-sc1 h2 {
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: bold;
  padding-bottom: 40px;
}
.page-template-page-contact-thanks > main .contact-thanks-sc1 .thanks-message {
  width: min(100%, 900px);
  margin: 0 auto;
}
.page-template-page-contact-thanks > main .contact-thanks-sc1 .thanks-message p {
  margin-bottom: 24px;
}/*# sourceMappingURL=style.css.map */