@charset "UTF-8";
.bg-primary {
  background-color: var(--theme-color, #ff9528);
}

.btn-primary {
  --bs-btn-bg: var(--theme-color, #ff9528);
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
}

.bg-secondary {
  background-color: #ffd900;
}

.btn-secondary {
  --bs-btn-bg: #ffd900;
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
}

.bg-light {
  background-color: #f8fafc;
}

.btn-light {
  --bs-btn-bg: #f8fafc;
}

.bg-dark {
  background-color: #4d5561;
}

.btn-dark {
  --bs-btn-bg: #4d5561;
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
}

.bg-white {
  background-color: #fff;
}

.btn-white {
  --bs-btn-bg: #fff;
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
}

.bg-orange {
  background-color: #dd5e25;
}

.btn-orange {
  --bs-btn-bg: #dd5e25;
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
}

.bg-gold {
  background-color: #ad9a5c;
}

.btn-gold {
  --bs-btn-bg: #ad9a5c;
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
}

html {
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: auto !important;
}

body {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  font-feature-settings: "palt";
}
body.fixed {
  width: 100%;
  position: fixed;
  top: 0;
  overflow: hidden;
}

@media (max-width: 1280px) {
  html {
    font-size: 0.8333333333vw;
  }
}
.mx-auto {
  margin-right: auto;
  margin-left: auto;
}

.mt-0 {
  margin-top: 0 !important;
}
.mt-5 {
  margin-top: 0.5em;
}
.mt-10 {
  margin-top: 1em;
}
.mt-15 {
  margin-top: 1.5em;
}
.mt-20 {
  margin-top: 2em;
}
.mt-sm {
  margin-top: 3rem !important;
}
.mt-md {
  margin-top: 5rem !important;
}
.mt-lg {
  margin-top: 10rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}
.mb-5 {
  margin-bottom: 0.5em;
}
.mb-10 {
  margin-bottom: 1em;
}
.mb-15 {
  margin-bottom: 1.5em;
}
.mb-20 {
  margin-bottom: 2em;
}
.mb-sm {
  margin-bottom: 3rem;
}
.mb-md {
  margin-bottom: 5rem;
}
.mb-lg {
  margin-bottom: 10rem;
}

.ms-auto {
  margin-left: auto;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}
.pb-140 {
  padding-bottom: 14rem;
}

.bg-01 {
  background-color: #f1f2ea;
}
.bg-l-primary {
  background-color: #fbf5e3;
}
.bg-dark {
  background-color: #333;
}
.bg-white {
  background-color: #fff;
}

.w-100 {
  width: 100%;
}
.w-fit {
  width: fit-content;
}
.w-auto {
  width: auto;
}
.w-sm {
  max-width: 64rem;
}
.w-md {
  max-width: 90rem;
}

.hr-01 {
  margin-top: 5rem;
  margin-bottom: 5rem;
  border: none;
  border-top: 1px solid #ccc;
}

* {
  color: var(--text-color, #333);
  letter-spacing: 0.08em;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

p {
  line-height: 1.875;
}

em, address {
  font-style: normal;
}

.text-serif {
  font-family: "Noto Serif JP", serif;
}
.text-gothic {
  font-family: "Zen Kaku Gothic New", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
}
.text-en {
  letter-spacing: 0.025em;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
.text-unset {
  font-family: initial;
}
.text-center {
  text-align: center;
}
.text-start {
  text-align: left;
}
.text-end {
  text-align: right;
}
.text-primary {
  color: #ff9528;
}
.text-red {
  color: #e61519;
}
.text-white {
  --text-color: #fff;
}
.text-sm {
  font-size: 1.2rem;
}
.text-md {
  font-size: 1.4rem;
}
.text-lg {
  font-size: 2rem;
}
.text-space p:not(:last-child) {
  margin-bottom: 1em;
}

.fw-400 {
  font-weight: 400;
}
.fw-500 {
  font-weight: 500;
}
.fw-600 {
  font-weight: 600;
}
.fw-700 {
  font-weight: 700;
}

.ls-0 {
  letter-spacing: 0;
}
.ls-sm {
  letter-spacing: 0.025em;
}
.ls-md {
  letter-spacing: 0.1em;
}
.ls-lg {
  letter-spacing: 0.2em;
}

figure, picture {
  margin-bottom: 0;
  display: block;
}

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

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.img-border {
  border: 1px solid #ccc;
}
.img-fluid {
  width: var(--width-pc) !important;
}

.video {
  width: 100%;
  aspect-ratio: 16/9;
}
.video video {
  width: 100%;
  height: 100%;
}

.youtube {
  width: 100%;
  aspect-ratio: 16/9;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}

a {
  color: var(--text-color, #333);
  text-decoration: none;
}
a * {
  color: var(--text-color, #333);
}
a:not([class]) {
  transition: opacity 0.3s;
}
a:not([class]):hover {
  opacity: 0.75;
}

[data-link=image] {
  display: block;
  overflow: hidden;
}
[data-link=image] .image {
  display: block;
  overflow: hidden;
  font-size: 1rem;
  line-height: 1;
}
[data-link=image] img, [data-link=image] svg {
  transition: transform 0.3s;
}
[data-link=image]:hover {
  opacity: 1 !important;
}
[data-link=image]:hover img, [data-link=image]:hover svg {
  transform: scale(1.1);
}

.link-underline {
  text-decoration: underline;
}
.link-external {
  display: inline-flex;
  gap: 0 0.25em;
  align-items: center;
}
.link-external::after {
  content: "";
  width: 1em;
  height: 1em;
  display: inline-block;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 12"><path d="M2 0h12v10H2Zm11 1H3v8h10Z"/><path d="M9.5 12H0V4.5h1V11h8.5Z"/></svg>');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

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

dl, dt, dd {
  margin-bottom: 0;
}

.list-dot li {
  margin-left: 1em;
  text-indent: -1em;
  line-height: 1.875;
}
.list-dot li::before {
  content: "・";
}
.list-circle li {
  margin-left: 1.25em;
  text-indent: -1.25em;
  line-height: 1.875;
}
.list-circle li::before {
  content: "●";
  margin-right: 0.25em;
}
.list-note {
  list-style-type: none;
}
.list-note li {
  margin-left: 1em;
  text-indent: -1em;
  line-height: 1.875;
}
.list-note li::before {
  content: "※";
}
.list-number {
  padding-left: 1.5em;
  list-style-type: decimal;
}
.list-number li {
  line-height: 1.875;
}
.list-numzero {
  counter-reset: count;
}
.list-numzero li {
  margin-left: 1.75em;
  text-indent: -1.75em;
  line-height: 1.875;
}
.list-numzero li::before {
  content: counter(count, decimal-leading-zero) ".";
  margin-right: 0.25em;
  counter-increment: count;
}

.d-grid {
  display: grid;
}
.d-flex {
  display: flex;
}
.d-block {
  display: block;
}

.gap-sm {
  gap: 1.2rem;
}
.gap-md {
  gap: 1.6rem;
}
.gap-lg {
  gap: 2rem;
}

.is-hidden {
  visibility: hidden;
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .pcOnly {
    display: none !important;
  }
}
@media screen and (min-width: 769px) {
  .tabOnly {
    display: none !important;
  }
}
@media screen and (max-width: 575px) {
  .spOnly {
    display: none !important;
  }
}
@media screen and (min-width: 769px) {
  .text-md-center {
    text-align: center;
  }
  .mx-pc-auto {
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 2.5641025641vw;
  }
  body {
    font-size: 1.4rem;
  }
  .img-fluid {
    width: var(--width-sp) !important;
  }
  .mt-lg {
    margin-top: 6rem !important;
  }
  .mt-md {
    margin-top: 4rem !important;
  }
  .mt-sm {
    margin-top: 3rem !important;
  }
  .mb-lg {
    margin-bottom: 6rem !important;
  }
  .mb-md {
    margin-bottom: 4rem !important;
  }
  .mb-sm {
    margin-bottom: 3rem !important;
  }
  .mx-sp-auto {
    margin-right: auto;
    margin-left: auto;
  }
  .text-sp-center {
    text-align: center;
  }
}
.wysiwyg-editor__icatch {
  margin-bottom: 5rem;
  width: 100%;
  height: 100%;
}
.wysiwyg-editor__icatch img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.wysiwyg-editor .btn-lg a {
  height: 6rem;
  font-size: 1.6rem;
}
.wysiwyg-editor h2 {
  margin-bottom: 1.5em;
  padding-left: 1em;
  position: relative;
  font-size: 2.4rem;
}
.wysiwyg-editor h2:not(:first-child) {
  margin-top: 10rem;
}
.wysiwyg-editor h2::before {
  content: "";
  width: 5px;
  height: 90%;
  position: absolute;
  top: 0.2em;
  left: 0;
  background-color: #ff9528;
}
.wysiwyg-editor h3 {
  margin-bottom: 1.5em;
  padding-bottom: 0.25em;
  border-bottom: 3px solid rgba(255, 149, 40, 0.5);
  font-size: 2rem;
  line-height: 1.6;
}
.wysiwyg-editor h3:not(:first-child) {
  margin-top: 6.4rem;
}
.wysiwyg-editor h4 {
  margin-bottom: 1.5em;
  font-size: 1.8rem;
}
.wysiwyg-editor h4:not(:first-child) {
  margin-top: 6.4rem;
}
.wysiwyg-editor h4.h4__num-title {
  font-size: 2.2rem;
}
.wysiwyg-editor h4.h4__num-title span {
  width: 5rem;
  height: 5rem;
  margin-right: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #ff9528;
  color: white;
  font-size: 3rem !important;
}
.wysiwyg-editor p {
  line-height: 2;
}
.wysiwyg-editor p:not(:last-child) {
  margin-bottom: 1em;
}
.wysiwyg-editor p a {
  text-decoration: underline;
}
.wysiwyg-editor figure:not(:first-child) {
  margin-top: 6.4rem;
}
.wysiwyg-editor .wp-block-media-text {
  gap: 2rem 4.8rem;
}
.wysiwyg-editor .wp-block-media-text > .wp-block-media-text__content {
  padding: 0;
}
.wysiwyg-editor .wp-block-list:not(:first-child) {
  margin-top: 3.2rem;
}
.wysiwyg-editor .wp-block-list:not(:last-child) {
  margin-bottom: 3.2rem;
}
.wysiwyg-editor .wp-block-list li {
  line-height: 1.8;
}
.wysiwyg-editor .wp-block-list li + li {
  margin-top: 0.25em;
}
.wysiwyg-editor ul.wp-block-list {
  padding-left: 0;
  list-style-type: none;
}
.wysiwyg-editor ul.wp-block-list li {
  margin-left: 1em;
  text-indent: -1em;
}
.wysiwyg-editor ul.wp-block-list li::before {
  content: "・";
  font-feature-settings: normal;
}
.wysiwyg-editor ol.wp-block-list {
  padding-left: 1.5em;
}
.wysiwyg-editor .wp-block-columns {
  margin-top: 4.5rem;
}
.wysiwyg-editor .wp-block-columns + p {
  margin-top: 1em;
}
.wysiwyg-editor .wp-block-embed__wrapper {
  aspect-ratio: 16/9;
}
.wysiwyg-editor .wp-block-embed__wrapper iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wysiwyg-editor .wp-block-buttons {
  margin-top: 1.5em;
}
.wysiwyg-editor .wp-block-button.is-style-outline .wp-block-button__link {
  background-color: #fff;
  color: #ff9528;
}
.wysiwyg-editor .wp-block-button.is-style-outline .wp-block-button__link::after {
  background-image: url("data: image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='8' height='13' viewBox='0 0 8 13'><path d='M0,1.316,1.346,0,8,6.5,1.346,13,0,11.684,5.3,6.5Z' fill='%23f19500'/></svg>");
}
.wysiwyg-editor .wp-block-button__link {
  min-width: 24rem;
  max-width: 100%;
  min-height: 5rem;
  padding: 0 3.7rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8rem;
  background-color: var(--btn-bg-color, #ff9528);
  color: white;
  font-weight: 700;
  font-size: 1.6rem;
  transition: opacity 0.3s;
}
.wysiwyg-editor .wp-block-button__link:hover {
  opacity: 0.7;
}
.wysiwyg-editor .wp-block-button__link::after {
  content: "";
  width: 0.875em;
  margin-left: auto;
  position: absolute;
  top: calc(50% - 0.4375em);
  right: 1em;
  display: inline-flex;
  align-items: center;
  flex: none;
  justify-content: center;
  background-image: url("data: image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='8' height='13' viewBox='0 0 8 13'><path d='M0,1.316,1.346,0,8,6.5,1.346,13,0,11.684,5.3,6.5Z' fill='%23fff'/></svg>");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 1;
}
.wysiwyg-editor .wp-block-separator {
  margin-top: 10rem;
  color: #ccc;
}
.wysiwyg-editor .btn-red a {
  background-color: #e50213;
}
.wysiwyg-editor .tag-frame {
  margin-bottom: 0.5em !important;
  padding: 0rem 0.8rem;
  display: inline-block;
  border-radius: 0.3rem;
  background-color: #8bc53f;
  color: white;
  line-height: 2.3 !important;
}
.wysiwyg-editor .text-underline a {
  text-decoration: underline #443f3d;
}
.wysiwyg-editor .wp-block-vk-blocks-balloon {
  gap: 3.2rem;
}
.wysiwyg-editor .wp-block-vk-blocks-balloon .vk_balloon_icon {
  flex-basis: 18rem;
}
.wysiwyg-editor .wp-block-vk-blocks-balloon .vk_balloon_icon figure {
  aspect-ratio: 1;
}
.wysiwyg-editor .wp-block-vk-blocks-balloon .vk_balloon_icon figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wysiwyg-editor .wp-block-vk-blocks-balloon .vk_balloon_content {
  padding: 2.4rem 3.2rem;
}
.wysiwyg-editor .wp-block-table table,
.wysiwyg-editor .wp-block-table th,
.wysiwyg-editor .wp-block-table td {
  border: none;
}
.wysiwyg-editor .wp-block-table tr > * {
  border: 1px solid #e2e2e2;
}
.wysiwyg-editor .wp-block-table tr > *:first-child {
  border: 1px solid #f9e6c5;
  background-color: #f9e6c5;
  font-weight: 700;
}
.wysiwyg-editor .wp-block-table tr:not(:last-child) > *:first-child {
  border-bottom: 1px solid #fff;
}
.wysiwyg-editor .wp-block-table td {
  padding: 1.25em 1em;
}
.wysiwyg-editor .wp-block-table.table-01 tr > * {
  border-right: none;
  border-left: none;
}
.wysiwyg-editor .wp-block-table.table-01 tr > *:first-child {
  border-top: 1px solid #e2e2e2;
  border-bottom: 1px solid #e2e2e2;
  background-color: transparent;
  color: #ff9528;
}
.wysiwyg-editor .name-title {
  margin-top: 1em;
  margin-bottom: 1em;
}
.wysiwyg-editor .name-title p:not(:last-child) {
  margin: 0;
}
.wysiwyg-editor .has-background {
  padding: 3.2rem 4.8rem;
  border-radius: 2rem;
}

@media screen and (max-width: 768px) {
  .wysiwyg-editor h2 {
    font-size: 2rem;
  }
  .wysiwyg-editor h2::before {
    width: 4px;
  }
  .wysiwyg-editor h2:not(:first-child) {
    margin-top: 6.4rem;
  }
  .wysiwyg-editor h3 {
    font-size: 1.8rem;
  }
  .wysiwyg-editor h4.h4__num-title {
    font-size: 1.8rem;
  }
  .wysiwyg-editor h4.h4__num-title span {
    width: 3rem;
    height: 3rem;
    font-size: 1.8rem !important;
  }
  .wysiwyg-editor .wp-block-vk-blocks-balloon {
    gap: 1.6rem;
  }
  .wysiwyg-editor .wp-block-vk-blocks-balloon .vk_balloon_icon {
    margin-right: 0 !important;
    flex-basis: auto;
  }
  .wysiwyg-editor .wp-block-vk-blocks-balloon .vk_balloon_content {
    padding: 1.6rem 2.4rem;
  }
  .wysiwyg-editor .wp-block-table table,
  .wysiwyg-editor .wp-block-table tbody,
  .wysiwyg-editor .wp-block-table tr,
  .wysiwyg-editor .wp-block-table th,
  .wysiwyg-editor .wp-block-table td {
    display: block;
  }
  .wysiwyg-editor .wp-block-table table {
    border: 1px solid #e2e2e2;
  }
  .wysiwyg-editor .wp-block-table tr > * {
    border: none;
  }
  .wysiwyg-editor .wp-block-table.table-01 table {
    border-top: none;
  }
  .wysiwyg-editor .wp-block-table.table-01 tr > *:first-child {
    padding-bottom: 0;
    border-bottom: none;
  }
  .wysiwyg-editor .has-background {
    padding: 2rem 2.4rem;
    border-radius: 1.4rem;
  }
}
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  background-color: #fff;
  filter: drop-shadow(0 0.4rem 0.4rem rgba(0, 0, 0, 0.1));
}
.header .main__container {
  max-width: 100%;
}
.header__inner {
  height: 12rem;
  padding: 1rem 4rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__title {
  margin: 0;
  font-size: 1rem;
  line-height: 1;
}
.header__title--logo {
  width: 16rem;
  display: block;
}
.header__title--logo:hover {
  opacity: 0.7;
}
.header__navi {
  display: flex;
  gap: 1.6rem;
  align-items: flex-end;
  flex-direction: column-reverse;
}
.header__menu {
  display: flex;
  gap: 0 2em;
  white-space: nowrap;
  font-weight: 700;
}
.header__menu--01 {
  position: relative;
}
.header__links {
  display: flex;
  gap: 0 1.6rem;
  align-items: center;
}
.header__buttons {
  display: flex;
  gap: 0 1.2rem;
}
.header__buttons .btn {
  width: 12rem;
  height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.6rem;
  background-color: #ccc;
  color: #fff;
  font-weight: 700;
  font-size: 1.3rem;
  transition: opacity 0.3s;
}
.header__buttons .btn:hover {
  opacity: 0.7;
}
.header__buttons .btn01 {
  background-color: #e50213;
}
.header__buttons .btn02 {
  background-color: #f19500;
}
.header__button {
  width: 20rem;
  height: 4.5rem;
  position: relative;
  display: flex;
  gap: 0 0.8rem;
  align-items: center;
  justify-content: center;
  border-radius: 2.25rem;
  background-color: #ff9528;
  font-weight: 700;
  font-size: 1.4rem;
}
.header__sns {
  display: flex;
  gap: 0 1.2rem;
}
.header__sns--link {
  width: 3.6rem;
}
.header__sns--link:hover {
  opacity: 0.7;
}
.header__hamburger {
  width: 6.8rem;
  height: 6.8rem;
  padding: 0;
  position: relative;
  z-index: 2;
  display: flex;
  gap: 0.6rem 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: none;
  background-color: #ff9528;
}
.header__hamburger .inner {
  width: 2.6rem;
  height: 2rem;
  margin: 0 auto;
  position: relative;
  display: block;
}
.header__hamburger .inner > span {
  width: 100%;
  height: 2px;
  position: absolute;
  right: 0;
  background-color: #fff;
  transition: all 0.3s;
}
.header__hamburger .inner > span:nth-child(1) {
  top: 0;
}
.header__hamburger .inner > span:nth-child(2) {
  top: calc(50% - 1.5px);
}
.header__hamburger .inner > span:nth-child(3) {
  top: calc(100% - 3px);
}
.header__hamburger .label {
  display: inline-block;
  color: #ff9528;
  font-weight: 700;
  font-size: 0.8rem;
  line-height: 1;
}
.header__hamburger.is-open .inner > span:nth-child(1) {
  width: 100%;
  top: 50%;
  transform: rotate(45deg);
}
.header__hamburger.is-open .inner > span:nth-child(2) {
  width: 0;
  opacity: 0;
}
.header__hamburger.is-open .inner > span:nth-child(3) {
  top: 50%;
  transform: rotate(-45deg);
}

@media screen and (min-width: 769px) {
  .header__menu--01 {
    height: 6rem;
    margin: -1rem -2rem;
    padding: 1rem 2rem;
    position: static;
  }
  .header__menu--01.parent:hover {
    background-color: #fefaef;
  }
  .header__menu--01.parent:hover > .header__menu--02 {
    visibility: visible;
    opacity: 1;
  }
  .header__menu--02 {
    width: 100%;
    padding: 3rem 6rem 3rem 26rem;
    position: absolute;
    top: calc(100% - 0.5rem);
    right: 0;
    display: flex;
    gap: 6rem;
    visibility: hidden;
    align-items: flex-start;
    background-color: #fefaef;
    opacity: 0;
  }
  .header__menu--02 > a {
    font-size: 2.2rem;
  }
  .header__menu--02 > a:hover {
    opacity: 0.8;
  }
  .header__menu--02 > ul {
    display: grid;
    gap: 1rem 6rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }
  .header__menu--02 > ul.col3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .header__menu--02 > ul a {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
  }
  .header__menu--02 > ul a::after {
    content: "";
    width: 0.875em;
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-image: url('data: image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="8" height="13" viewBox="0 0 8 13"><path d="M0,1.316,1.346,0,8,6.5,1.346,13,0,11.684,5.3,6.5Z" fill="%2333"/></svg>');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    aspect-ratio: 1;
  }
  .header__menu--02 > ul li {
    padding-top: 1rem;
    font-size: 1.4rem;
  }
  .header__menu--toggle {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .header__inner {
    height: 6.8rem;
    padding-right: 0 !important;
  }
  .header__title--logo {
    width: 10rem;
  }
  .header__navi {
    width: 100%;
    height: 100dvh;
    padding: 6.8rem 2rem 16.2rem;
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    background-color: #ff9528;
    transition: transform 0.3s;
    transform: translateX(100%);
    --text-color: #fff;
  }
  .header__navi.overflow__y {
    overflow-y: scroll;
  }
  .header__navi.is-open {
    transform: translateX(0);
  }
  .header__menu {
    flex-direction: column;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 1.8rem;
  }
  .header__menu--01 {
    padding: 1em 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
  .header__menu--02 {
    display: none;
  }
  .header__menu--02 .title {
    display: none;
  }
  .header__menu--02 > ul {
    margin-top: 1em;
    padding-left: 1em;
    font-size: 1.4rem;
  }
  .header__menu--02 > ul li + li {
    margin-top: 1em;
  }
  .header__menu--toggle {
    width: 1.25em;
    height: 1.25em;
    position: absolute;
    top: 1.15em;
    right: 0.5em;
  }
  .header__menu--toggle::before, .header__menu--toggle::after {
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: white;
    transform: translate(-50%, -50%);
  }
  .header__menu--toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .header__menu--toggle.is-open::after {
    transform: translate(-50%, -50%) rotate(180deg);
  }
  .header__links {
    width: 100%;
    padding: 2rem;
    position: absolute;
    bottom: auto;
    left: 0;
    gap: 1em;
    flex-direction: column;
    background-color: #fff;
  }
  .header__buttons {
    width: 100%;
  }
  .header__buttons .btn {
    width: 100%;
    height: 4.8rem;
    border-radius: 2.4rem;
    font-size: 1.4rem;
  }
}
.footer {
  padding-top: 6.4rem;
  padding-bottom: 6.4rem;
  background-color: #ff901d;
}
.footer__title--logo {
  width: 20rem;
  display: block;
}
.footer__title--logo:hover {
  opacity: 0.7;
}
.footer__address {
  margin-top: 3.2rem;
  font-size: 1.3rem;
}
.footer__menu > li {
  padding: 1.6rem 0;
}
.footer__menu > li:first-child {
  padding-top: 0;
}
.footer__menu > li > a {
  display: inline-flex;
  gap: 0.5em;
  align-items: center;
  font-weight: 700;
}
.footer__menu > li > a::before {
  content: "";
  width: 1.125em;
  display: inline-block;
  border-radius: 50%;
  background-color: #fff;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='m5 2 6 6-6 6' stroke='%23f19500' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' fill='none'/></svg>");
  background-position: center;
  background-size: 50%;
  background-repeat: no-repeat;
  aspect-ratio: 1;
}
.footer__menu > li .label {
  margin-bottom: 1em;
  display: block;
  font-weight: 700;
}
.footer__menu--child {
  margin-top: 1em;
}
.footer__menu--child li {
  font-size: 1.4rem;
}
.footer__menu--child li + li {
  margin-top: 0.75em;
}
.footer__buttons {
  display: flex;
  gap: 1.6rem;
  flex-direction: column;
}
.footer__button {
  width: 100%;
  height: 6rem;
  display: flex;
  gap: 0.5em;
  align-items: center;
  justify-content: center;
  border-radius: 0.8rem;
  background-color: #fff;
  font-weight: 700;
  transition: opacity 0.3s;
}
.footer__button:hover {
  opacity: 0.7;
}
.footer__button.btn01 {
  --text-color: #e50213;
}
.footer__button.btn02 {
  --text-color: #f69800;
}
.footer__sns {
  display: flex;
  gap: 1.6rem;
}
.footer__sns--link:hover {
  opacity: 0.7;
}
.footer__copyright {
  margin-top: 3.2rem;
  font-size: 1.2rem;
}

@media screen and (min-width: 769px) {
  .footer__column {
    display: grid;
    gap: 3.2rem;
    grid-template-columns: 24rem 1fr;
  }
  .footer__navi--global {
    display: grid;
    gap: 3.2rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .footer__menu--toggle {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    padding-top: 4.8rem;
    padding-bottom: 4.8rem;
  }
  .footer__info {
    text-align: center;
  }
  .footer__title--logo {
    width: 18rem;
    margin: 0 auto;
  }
  .footer__address {
    margin-top: 1.6rem;
  }
  .footer__navi--global {
    margin-top: 3.2rem;
  }
  .footer__navi--inner + .footer__navi--inner {
    margin-top: 1.6rem;
  }
  .footer__menu > li {
    padding: 0;
    position: relative;
  }
  .footer__menu > li + li {
    margin-top: 1.6rem;
  }
  .footer__menu > li > a {
    font-size: 1.6rem;
  }
  .footer__menu--child {
    padding-bottom: 1.6rem;
    display: none;
  }
  .footer__menu--toggle {
    width: 1.25em;
    height: 1.25em;
    position: absolute;
    top: 0.25em;
    right: 0.5em;
  }
  .footer__menu--toggle::before, .footer__menu--toggle::after {
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: white;
    transform: translate(-50%, -50%);
  }
  .footer__menu--toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .footer__menu--toggle.is-open::after {
    transform: translate(-50%, -50%) rotate(180deg);
  }
  .footer__buttons {
    margin: 3.2rem 0;
  }
}
.main {
  padding-top: 12rem;
  position: relative;
}
.main__block {
  margin-bottom: 10rem;
}
.main__block[class*=bg-] {
  padding-top: 10rem;
  padding-bottom: 10rem;
}
.main__container {
  max-width: 120rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: 5rem;
  padding-left: 5rem;
}
.main__container.w-1000 {
  max-width: 110rem;
}
.main__container + .main__container {
  margin-top: 6.4rem;
}
.main__container.w-sm {
  max-width: 110rem;
}
.main__container.w-md {
  max-width: 110.6rem;
}

.common__headline {
  margin-bottom: 4rem;
  background-color: #F7C066;
}
.common__headline--visual {
  width: 18rem;
}
.common__headline--inner {
  height: 25rem;
  display: flex;
  align-items: center;
  gap: 5rem;
}
.common__headline--title {
  color: white;
  text-align: center;
  font-weight: 700;
  font-size: 3.2rem;
}
.common__contact {
  margin-top: 20rem;
  padding: 10rem 0;
}
.common__contact--sentence {
  text-align: center;
}
.common__contact--sentence {
  text-align: center;
}
.common__contact .btn__01 {
  width: 32rem;
  height: 6rem;
}
.common__banner {
  padding: 4rem 0;
}
.common__banner--list {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.common__banner--item {
  width: calc((100% - 6rem) / 4);
}
.common__banner--item:hover {
  opacity: 0.7;
}

@media screen and (max-width: 768px) {
  .main {
    padding-top: 6.8rem;
  }
  .main__block {
    margin-bottom: 6.4rem;
  }
  .main__block[class*=bg-] {
    padding-top: 6.4rem;
    padding-bottom: 6.4rem;
  }
  .main__container {
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .main__hero {
    min-height: 24rem;
  }
  .main__headline {
    margin-top: -3.2rem;
    padding-top: 1.6rem;
  }
  .main__headline--title .sub {
    margin-bottom: 0.2em;
    font-size: 1.2rem;
  }
  .main__headline--title .title {
    font-size: 2.8rem;
  }
  .common__headline {
    margin-bottom: 2rem;
  }
  .common__headline--inner {
    height: 12rem;
    gap: 2rem;
  }
  .common__headline--visual {
    width: 9rem;
  }
  .common__headline--title {
    font-size: 2.4rem;
  }
  .common__contact {
    margin-top: 10rem;
    padding: 6.4rem 0;
  }
  .common__banner {
    padding: 3.2rem 0;
  }
  .common__banner--item {
    width: calc((100% - 2rem) / 2);
  }
}
.heading__01 {
  margin-bottom: 4rem;
  padding-left: 1.4em;
  position: relative;
  display: flex;
  gap: 0 1.2rem;
  align-items: baseline;
}
.heading__01::before {
  content: "";
  width: 1em;
  position: absolute;
  top: 0.25em;
  left: 0;
  background: url(../../images/common/icon_ball_orange.png) no-repeat center center/contain;
  aspect-ratio: 1;
}
.heading__01--main {
  font-weight: 700;
  font-size: 2.4rem;
}
.heading__01--label {
  font-size: 1.4rem;
}
.heading__02 {
  margin-bottom: 3.2rem;
  padding-bottom: 0.25em;
  border-bottom: 3px solid rgba(255, 149, 40, 0.5);
  font-size: 2.2rem;
}
.heading__03 {
  margin-bottom: 7rem;
  text-align: center;
  font-size: 3.2rem;
  line-height: 1;
}
.heading__03::after {
  content: "";
  width: 5.4rem;
  margin: 2.4rem auto 0;
  display: block;
  border-bottom: 4px solid #ff9528;
}
.heading__04 {
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 2rem;
}

@media screen and (max-width: 768px) {
  .heading__03 {
    margin-bottom: 4.8rem;
    font-size: 2.4rem;
  }
  .heading__03::after {
    width: 4.8rem;
    margin-top: 2rem;
  }
  .heading__04 {
    font-size: 1.8rem;
  }
}
.btn__01 {
  width: 24rem;
  min-width: fit-content;
  max-width: 100%;
  height: 5rem;
  margin-top: 6rem;
  padding: 0 3.7rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8rem;
  background-color: var(--btn-bg-color, #ff9528);
  color: white;
  font-weight: 700;
}
.btn__01:hover {
  opacity: 0.8;
}
.btn__01.btn-primary {
  --btn-bg-color: $primary;
  --text-color: #fff;
}
.btn__01.btn-secondary {
  --btn-bg-color: #e50213;
  --text-color: #fff;
}
.btn__01.next::after {
  content: "";
  width: 0.875em;
  margin-left: auto;
  position: absolute;
  top: calc(50% - 0.4375em);
  right: 1em;
  display: inline-flex;
  align-items: center;
  flex: none;
  justify-content: center;
  background-image: url("data: image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='8' height='13' viewBox='0 0 8 13'><path d='M0,1.316,1.346,0,8,6.5,1.346,13,0,11.684,5.3,6.5Z' fill='%23fff'/></svg>");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 1;
}
.btn__01.wh {
  background-color: var(--btn-bg-color, #fff);
}
.btn__01.primary {
  background-color: var(--btn-bg-color, #ff9528);
  color: var(--btn-text-color, #fff);
}
.btn__01.primary.next::after {
  background-color: #fff;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212.869%22%20height%3D%2212.021%22%20viewBox%3D%220%200%2012.869%2012.021%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_5359%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%205359%22%20transform%3D%22translate(-3.25%200.353)%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_764%22%20data-name%3D%22%E3%83%91%E3%82%B9%20764%22%20d%3D%22M0%2C7.75A.75.75%2C0%2C0%2C1-.75%2C7V0A.75.75%2C0%2C0%2C1-.53-.53.75.75%2C0%2C0%2C1%2C0-.75H7A.75.75%2C0%2C0%2C1%2C7.75%2C0%2C.75.75%2C0%2C0%2C1%2C7%2C.75H.75V7A.75.75%2C0%2C0%2C1%2C0%2C7.75Z%22%20transform%3D%22translate(15.058%205.657)%20rotate(135)%22%20fill%3D%22%23003e91%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_765%22%20data-name%3D%22%E3%83%91%E3%82%B9%20765%22%20d%3D%22M-977.75-8458.75h-11a.75.75%2C0%2C0%2C1-.75-.75.75.75%2C0%2C0%2C1%2C.75-.75h11a.75.75%2C0%2C0%2C1%2C.75.75A.75.75%2C0%2C0%2C1-977.75-8458.75Z%22%20transform%3D%22translate(992.75%208465.158)%22%20fill%3D%22%23003e91%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
}
.btn__01.js-showMore::after {
  transition: transform 0.3s;
}
.btn__01.js-showMore.is-active::after {
  transform: rotate(270deg);
}
.btn__02 {
  width: 14rem;
  min-width: fit-content;
  height: 3.9rem;
  padding-right: 1em;
  padding-left: 1em;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background-color: var(--btn-bg-color, #ff9528);
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
}
.btn__02:hover {
  color: #fff;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.btn__02.gray {
  background-color: #c7ccd2;
}
.btn__02.dark {
  background-color: #4d5561;
}
.btn__03 {
  width: 12.1rem;
  min-width: fit-content;
  padding-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ff9528;
  font-weight: 700;
  font-size: 1.4rem;
}
.btn__03::after {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%227.892%22%20height%3D%227.892%22%20viewBox%3D%220%200%207.892%207.892%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_5403%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%205403%22%20transform%3D%22translate(-4.974%200.238)%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_5359%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%205359%22%20transform%3D%22translate(6.159%200.208)%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_764%22%20data-name%3D%22%E3%83%91%E3%82%B9%20764%22%20d%3D%22M.413%2C4.537%2C0%2C0%2C4.537.412%22%20transform%3D%22translate(6%203.5)%20rotate(135)%22%20fill%3D%22none%22%20stroke%3D%22%23003e91%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
  background-size: 0.5rem;
}
.btn__03.wht {
  border-color: #fff;
  color: #fff;
}
.btn__03.wht::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2210.606%22%20height%3D%2210.606%22%20viewBox%3D%220%200%2010.606%2010.606%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_773%22%20data-name%3D%22%E3%83%91%E3%82%B9%20773%22%20d%3D%22M0%2C7V0H7%22%20transform%3D%22translate(9.899%205.303)%20rotate(135)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%221%22%2F%3E%3C%2Fsvg%3E");
}
.btn__03.large {
  width: 13.8rem;
  min-width: fit-content;
}
.btn__03.large::after {
  background-size: 0.7rem;
}
.btn__03:hover {
  opacity: 0.75;
  transition: opacity 0.3s;
}
.btn__04 {
  padding-right: 1.2rem;
  position: relative;
  color: #333;
  font-family: "Zen Kaku Gothic New", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
}
.btn__04::after {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  position: absolute;
  top: 50%;
  right: 0;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%227.892%22%20height%3D%227.892%22%20viewBox%3D%220%200%207.892%207.892%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_5403%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%205403%22%20transform%3D%22translate(-4.974%200.238)%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_5359%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%205359%22%20transform%3D%22translate(6.159%200.208)%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_764%22%20data-name%3D%22%E3%83%91%E3%82%B9%20764%22%20d%3D%22M.413%2C4.537%2C0%2C0%2C4.537.412%22%20transform%3D%22translate(6%203.5)%20rotate(135)%22%20fill%3D%22none%22%20stroke%3D%22%23003e91%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
  background-size: 0.7rem;
  transform: translateY(-50%);
}
.btn__04:hover {
  opacity: 0.75;
  transition: opacity 0.3s;
}
.btn__05 {
  margin-top: 9rem;
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: center;
  --text-color: #fff;
}
.btn__05--item {
  padding: 1.2rem 2rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  background-color: #ff9528;
}
.btn__05--item.prev, .btn__05--item.next {
  position: relative;
}
.btn__05--item.prev::before, .btn__05--item.prev::after, .btn__05--item.next::before, .btn__05--item.next::after {
  width: 1em;
  display: inline-flex;
  align-items: center;
  flex: none;
  justify-content: center;
  background-image: url("data: image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 7.5 7.36'><path fill='%23fff' d='M7.35 3.33h0L4.17.15c-.2-.2-.51-.2-.71 0s-.2.51 0 .71l2.33 2.33H0v1h5.79L3.46 6.52c-.2.2-.2.51 0 .71.2.2.51.2.71 0l3.18-3.18c.2-.2.2-.51 0-.71Z'/></svg>");
  background-position: center;
  background-size: 0.8rem auto;
  background-repeat: no-repeat;
  aspect-ratio: 1;
}
.btn__05--item.prev::before {
  content: "";
  transform: rotate(180deg);
}
.btn__05--item.next::after {
  content: "";
}
.btn__05.left {
  justify-content: left;
}
.btn__05.right {
  justify-content: right;
}
.btn__05.between {
  justify-content: space-between;
}
.btn__06 {
  width: fit-content;
  padding: 0.25em 1.2em;
  display: flex;
  gap: 0.5em;
  align-items: center;
  border: 1px solid #ff9528;
  border-radius: 1.2em;
  color: #ff9528;
  line-height: 1.6;
}
.btn__06 .arrow {
  width: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #ff9528;
  aspect-ratio: 1;
}
.btn__06 .arrow::after {
  content: "";
  width: 30%;
  margin-left: -15%;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  aspect-ratio: 1;
}
.btn__06.sm {
  font-size: 1.3rem;
}
.btn__grid {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
}
.btn__grid.left {
  justify-content: left;
}
.btn__grid.right {
  justify-content: right;
}
.btn__grid.between {
  justify-content: space-between;
}
.btn__selectbox {
  margin-bottom: 5rem;
}
.btn__selectbox--label {
  position: relative;
  display: inline-flex;
  align-items: center;
  border: 1.3px solid #ccc;
}
.btn__selectbox--label select {
  min-width: 23rem;
  height: 4rem;
  padding: 0.4em calc(0.8em + 30px) 0.4em 0.8em;
  border: 1px solid #d0d0d0;
  background-color: #fff;
  color: #333;
  font-size: 1.8rem;
}
.btn__selectbox--label::before {
  content: "";
  width: 3.9rem;
  height: 3.9rem;
  position: absolute;
  right: 0;
  background-color: var(--theme-color, #ff9528);
  pointer-events: none;
}
.btn__selectbox--label::after {
  content: "";
  width: 2.2rem;
  height: 2.2rem;
  position: absolute;
  top: calc(50% - 0.6rem);
  right: 1rem;
  background-image: url("data:image/svg+xml,<svg width='23' height='14' viewBox='0 0 23 14' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M20.5446 0.65625L22.75 2.81169L11.8594 13.4687L0.96875 2.81169L3.1741 0.656249L11.8594 9.1512L20.5446 0.65625Z' fill='white'/></svg>");
  pointer-events: none;
}
.btn__contact {
  width: 42rem;
  min-width: fit-content;
  max-width: 100%;
  height: 8.3rem;
  padding: 0 3.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8rem;
  background-color: var(--btn-bg-color, #ff9528);
  color: var(--btn-text-color, #fff);
  font-weight: 700;
  font-size: 2rem;
  transition: opacity 0.3s;
}
.btn__contact::before {
  content: "";
  width: 2.2rem;
  height: 1.6rem;
  margin-right: 0.8rem;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2222%22%20height%3D%2216.541%22%20viewBox%3D%220%200%2022%2016.541%22%3E%20%3Cg%20id%3D%22%E3%83%A1%E3%83%BC%E3%83%AB%E3%81%AE%E7%84%A1%E6%96%99%E3%82%A2%E3%82%A4%E3%82%B3%E3%83%B3%E7%B4%A0%E6%9D%90%22%20transform%3D%22translate(0%20-63.519)%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_768%22%20data-name%3D%22%E3%83%91%E3%82%B9%20768%22%20d%3D%22M448.759%2C175l-2.839-2.949%2C2.839-2.447Z%22%20transform%3D%22translate(-426.759%20-101.523)%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_769%22%20data-name%3D%22%E3%83%91%E3%82%B9%20769%22%20d%3D%22M2.843%2C172.047%2C0%2C175v-5.4Z%22%20transform%3D%22translate(0%20-101.523)%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_770%22%20data-name%3D%22%E3%83%91%E3%82%B9%20770%22%20d%3D%22M22%2C259.293v2.716a1.19%2C1.19%2C0%2C0%2C1-1.189%2C1.189H1.189A1.19%2C1.19%2C0%2C0%2C1%2C0%2C262.008v-2.716l4.252-4.414%2C4.857%2C4.183a2.994%2C2.994%2C0%2C0%2C0%2C3.785%2C0l4.854-4.183Z%22%20transform%3D%22translate(0%20-183.138)%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_771%22%20data-name%3D%22%E3%83%91%E3%82%B9%20771%22%20d%3D%22M22%2C64.7v1.189L11.626%2C74.832a1.012%2C1.012%2C0%2C0%2C1-1.251%2C0L0%2C65.894V64.7a1.187%2C1.187%2C0%2C0%2C1%2C1.189-1.186H20.811A1.187%2C1.187%2C0%2C0%2C1%2C22%2C64.7Z%22%20fill%3D%22%23fff%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: center;
  background-size: 2.2rem;
  transition: opacity 0.3s;
}
.btn__contact:hover {
  opacity: 0.75;
}

.link[target=_blank] {
  display: inline-flex;
  gap: 0 0.4rem;
  align-items: center;
}
.link[target=_blank]::after {
  content: "";
  width: 1em;
  height: 1em;
  background-image: url("data:image/svg+xml,<svg viewBox='0 0 15 15' xmlns='http://www.w3.org/2000/svg'><path fill='%23333333' d='M12 6.615C11.8011 6.615 11.6103 6.69402 11.4697 6.83467C11.329 6.97532 11.25 7.16609 11.25 7.365V12.75C11.25 12.9489 11.171 13.1397 11.0303 13.2803C10.8897 13.421 10.6989 13.5 10.5 13.5H2.25C2.05109 13.5 1.86032 13.421 1.71967 13.2803C1.57902 13.1397 1.5 12.9489 1.5 12.75V4.5C1.5 4.30109 1.57902 4.11032 1.71967 3.96967C1.86032 3.82902 2.05109 3.75 2.25 3.75H7.635C7.83391 3.75 8.02468 3.67098 8.16533 3.53033C8.30598 3.38968 8.385 3.19891 8.385 3C8.385 2.80109 8.30598 2.61032 8.16533 2.46967C8.02468 2.32902 7.83391 2.25 7.635 2.25H2.25C1.65326 2.25 1.08097 2.48705 0.65901 2.90901C0.237053 3.33097 0 3.90326 0 4.5V12.75C0 13.3467 0.237053 13.919 0.65901 14.341C1.08097 14.7629 1.65326 15 2.25 15H10.5C11.0967 15 11.669 14.7629 12.091 14.341C12.5129 13.919 12.75 13.3467 12.75 12.75V7.365C12.75 7.16609 12.671 6.97532 12.5303 6.83467C12.3897 6.69402 12.1989 6.615 12 6.615ZM14.94 0.465C14.8639 0.281738 14.7183 0.136106 14.535 0.0599999C14.4448 0.0215692 14.348 0.00118499 14.25 0H9.75C9.55109 0 9.36032 0.0790176 9.21967 0.21967C9.07902 0.360322 9 0.551088 9 0.75C9 0.948912 9.07902 1.13968 9.21967 1.28033C9.36032 1.42098 9.55109 1.5 9.75 1.5H12.4425L4.7175 9.2175C4.6472 9.28722 4.59141 9.37017 4.55333 9.46157C4.51525 9.55296 4.49565 9.65099 4.49565 9.75C4.49565 9.84901 4.51525 9.94704 4.55333 10.0384C4.59141 10.1298 4.6472 10.2128 4.7175 10.2825C4.78722 10.3528 4.87017 10.4086 4.96157 10.4467C5.05296 10.4847 5.15099 10.5043 5.25 10.5043C5.34901 10.5043 5.44704 10.4847 5.53843 10.4467C5.62983 10.4086 5.71278 10.3528 5.7825 10.2825L13.5 2.5575V5.25C13.5 5.44891 13.579 5.63968 13.7197 5.78033C13.8603 5.92098 14.0511 6 14.25 6C14.4489 6 14.6397 5.92098 14.7803 5.78033C14.921 5.63968 15 5.44891 15 5.25V0.75C14.9988 0.651992 14.9784 0.555167 14.94 0.465Z'/></svg>");
}

.arrow__01 {
  width: 3.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #ff9528;
  aspect-ratio: 1;
}
.arrow__01 .icon {
  width: 0.8rem;
}

@media screen and (min-width: 769px) {
  .btn__01 {
    transition: opacity 0.3s;
  }
  .btn__01:hover {
    opacity: 0.75;
  }
}
@media screen and (max-width: 768px) {
  .btn__01 {
    width: 28rem;
    height: 5.7rem;
    margin-top: 4rem;
  }
  .btn__04 {
    padding: 1.9rem 5.4rem 1.9rem 1.9rem;
  }
  .btn__04--contents {
    gap: 1.6rem;
  }
  .btn__05 {
    gap: 2rem;
  }
  .btn__05--item {
    padding: 1.2rem 1rem;
  }
  .btn__grid {
    flex-direction: column;
  }
  .btn__grid.left {
    align-items: flex-start;
  }
  .btn__grid.sp-row {
    flex-direction: row;
  }
  .btn__contact {
    width: 28rem;
    height: 5.7rem;
    font-size: 1.4rem;
  }
  .btn__contact::before {
    margin-right: 1.4rem;
  }
  .arrow__01 {
    width: 2.6rem;
  }
}
.column {
  display: flex;
  gap: var(--gap-size, 2rem);
  flex-wrap: wrap;
  justify-content: center;
}
.column.col2 > * {
  width: calc((100% - var(--gap-size, 2rem)) / 2);
}
.column.col3 {
  gap: var(--gap-size, 4rem);
}
.column.col3 > * {
  width: calc((100% - var(--gap-size, 4rem) * 2) / 3);
}
.column.col4 > * {
  width: calc((100% - var(--gap-size, 2rem) * 3) / 4);
}

.grid {
  display: grid;
  gap: var(--gap-size, 2rem);
}
.grid.col2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid.col3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid.col4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid.col5 {
  grid-template-columns: repeat(5, 1fr);
}

.navi__button {
  width: 100%;
  height: 6.7rem;
  padding: 1em;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid #ff9528;
  background-color: #f8fafc;
  font-weight: 700;
}
.navi__button::after {
  content: "";
  width: 1.1rem;
  height: 1rem;
  position: absolute;
  top: 50%;
  right: 1rem;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212.869%22%20height%3D%2212.021%22%20viewBox%3D%220%200%2012.869%2012.021%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_5615%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%205615%22%20transform%3D%22translate(-3.25%200.353)%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_5359%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%205359%22%20transform%3D%22translate(0%200)%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_764%22%20data-name%3D%22%E3%83%91%E3%82%B9%20764%22%20d%3D%22M0%2C7V0H7%22%20transform%3D%22translate(15.058%205.657)%20rotate(135)%22%20fill%3D%22none%22%20stroke%3D%22%23003e91%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.5%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_765%22%20data-name%3D%22%E3%83%91%E3%82%B9%20765%22%20d%3D%22M-977.75-8459.5h-11%22%20transform%3D%22translate(992.75%208465.158)%22%20fill%3D%22none%22%20stroke%3D%22%23003e91%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221.5%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
  background-size: 1.1rem;
  transform: translateY(-50%);
}
.navi__button:hover {
  background-color: #ff9528;
  color: #fff;
  transition: background-color 0.3s;
}
.navi__button:hover::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212.869%22%20height%3D%2212.021%22%20viewBox%3D%220%200%2012.869%2012.021%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_5359%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%205359%22%20transform%3D%22translate(-3.25%200.353)%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_764%22%20data-name%3D%22%E3%83%91%E3%82%B9%20764%22%20d%3D%22M0%2C7V0H7%22%20transform%3D%22translate(15.058%205.657)%20rotate(135)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.5%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_765%22%20data-name%3D%22%E3%83%91%E3%82%B9%20765%22%20d%3D%22M-977.75-8459.5h-11%22%20transform%3D%22translate(992.75%208465.158)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221.5%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
}
.navi__03--list {
  display: grid;
  gap: 1rem 1.45rem;
  grid-template-columns: 1fr 1fr 1fr;
  flex-wrap: wrap;
}
.navi__03--list.center {
  grid-template-columns: repeat(auto-fit, 390px);
  justify-content: center;
}
.navi__04--list {
  display: grid;
  gap: 1rem 1.2rem;
  grid-template-columns: repeat(4, 1fr);
}
.navi__04--list.col3 {
  grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 768px) {
  .navi__button {
    height: 5.7rem;
  }
  .navi__04--list {
    gap: 1.5rem 1rem;
    grid-template-columns: repeat(2, 1fr);
  }
  .navi__04--list.col3 {
    gap: 1.5rem 1rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
.breadcrumbs {
  margin-bottom: 8rem;
}
.breadcrumbs__inner {
  display: flex;
  gap: 0.25em 0.5em;
  align-items: center;
}
.breadcrumbs__inner > span {
  white-space: nowrap;
  font-family: "Zen Kaku Gothic New", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
}
.breadcrumbs__inner > span:last-of-type {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.breadcrumbs__inner .current-item {
  color: #777;
}
.breadcrumbs a {
  text-decoration: underline #443f3d;
}

@media screen and (max-width: 768px) {
  .breadcrumbs {
    margin-bottom: 4rem;
  }
  .breadcrumbs__inner > span {
    font-size: 1.2rem;
  }
}
.pager {
  margin-top: 6rem;
}
.pager__archive--inner {
  display: flex;
  gap: 0 0.5rem;
  align-items: center;
  justify-content: center;
}
.pager__archive .page-numbers {
  width: 4rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.3rem;
  background-color: #dbe4ef;
  color: #ff9528;
  color: #fff;
  font-family: "Zen Kaku Gothic New", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 700;
  font-size: 2rem;
}
.pager__archive .page-numbers.current {
  background-color: var(--theme-color, #ff9528);
}
.pager__archive .page-numbers.prev, .pager__archive .page-numbers.next {
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224.735%22%20height%3D%2217.735%22%20viewBox%3D%220%200%2024.735%2017.735%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_5757%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%205757%22%20transform%3D%22translate(-741.033%20-1746.411)%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_3955%22%20data-name%3D%22%E3%83%91%E3%82%B9%203955%22%20d%3D%22M.608%2C11%2C0%2C0%2C11%2C.608%22%20transform%3D%22translate(757.707%201755.278)%20rotate(135)%22%20fill%3D%22none%22%20stroke%3D%22%23c7ccd2%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.5%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_3958%22%20data-name%3D%22%E3%83%91%E3%82%B9%203958%22%20d%3D%22M.608%2C11%2C0%2C0%2C11%2C.608%22%20transform%3D%22translate(764.707%201755.278)%20rotate(135)%22%20fill%3D%22none%22%20stroke%3D%22%23c7ccd2%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.5%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center/contain;
  background-size: 2.3rem auto;
}
.pager__archive .page-numbers.prev {
  transform: scaleX(-1);
}

.slider__01 {
  position: relative;
}
.slider__01 .swiper {
  overflow: visible;
}
.slider__01 .swiper-wrapper {
  align-items: flex-start;
}
.slider__01 .swiper-navigation {
  position: absolute;
  top: -5.5rem;
  right: 0;
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: center;
}
.slider__01 .swiper-button-next, .slider__01 .swiper-button-prev {
  width: 3rem;
  height: 3rem;
  position: static;
  border-radius: 50%;
  background-color: #ff9528;
  --swiper-navigation-size: 1.2rem !important;
  --swiper-theme-color: white;
}
.slider__01--image {
  margin-bottom: 1.6rem;
  display: block;
  aspect-ratio: 340/224;
}
.slider__01--image * {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider__01--image figcaption {
  margin-top: 1rem;
  text-align: center;
}
.slider__01--date {
  margin-bottom: 0.5em;
  display: inline-block;
  color: #999;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  line-height: 1;
}
.slider__01--title {
  font-size: 1.6rem;
  line-height: 1.6;
}

.swiper-pagination.type01 {
  margin-top: 8rem;
  position: relative;
  bottom: auto !important;
  line-height: 0;
  --swiper-pagination-bullet-height: 1.0rem;
  --swiper-pagination-bullet-inactive-color: #ccc;
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-width: 1.0rem;
  --swiper-pagination-color: #29318a;
}

@media screen and (max-width: 768px) {
  .slider__01 .swiper-navigation {
    display: none;
  }
}
.table__01 {
  width: 100%;
  border-collapse: collapse;
}
.table__01 th, .table__01 td {
  padding: 3rem 1em 2rem;
  border-bottom: 1px solid #dbe4ef;
}
.table__01 th {
  padding-left: 0;
  border-color: #ff9528;
  text-align: left;
  white-space: nowrap;
  font-weight: 400;
}
.table__01 tr:first-child th, .table__01 tr:first-child td {
  padding-top: 0.5rem;
}
.table__01 tr:first-of-type td:nth-child(odd) {
  border-top: 1px solid #ccc;
}
.table__02 {
  width: 100%;
  border-collapse: collapse;
}
.table__02 th, .table__02 td {
  border: 1px solid #dbe4ef;
  font-weight: 400;
}
.table__02 .nowrap {
  white-space: nowrap;
}
.table__02 .noborder {
  border: none;
}
.table__02 thead th, .table__02 thead td {
  padding: 0.25em 1.5em;
  background-color: #ff9528;
  white-space: nowrap;
  --text-color: #fff;
}
.table__02 tbody th, .table__02 tbody td {
  padding: 2em 1.5em;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .table__02 tbody th, .table__02 tbody td {
    padding: 0.75em 1.5em;
  }
  .table__scroll {
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding-left: calc(50vw - 50%);
    overflow-x: scroll;
  }
  .table__scroll table {
    width: 100rem;
  }
}
*:focus {
  outline: none;
}

input {
  width: 100%;
}
input::-webkit-input-placeholder {
  color: var(--placeholder-color, #ccc);
}
input:-ms-input-placeholder {
  color: var(--placeholder-color, #ccc);
}
input::-moz-placeholder {
  color: var(--placeholder-color, #ccc);
}
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
}

textarea {
  vertical-align: bottom;
}
textarea::-webkit-input-placeholder {
  color: var(--placeholder-color, #ccc);
}
textarea:-ms-input-placeholder {
  color: var(--placeholder-color, #ccc);
}
textarea::-moz-placeholder {
  color: var(--placeholder-color, #ccc);
}
textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
}

.p-country-name {
  display: none;
}

.form {
  --form-border: #ccc;
}
.form__box + .form__box {
  margin-top: 4rem;
}
.form__row .form__box {
  display: grid;
  gap: 0 3.2rem;
  grid-template-columns: 24rem 1fr;
  align-items: start;
}
.form__row .form__label {
  padding-top: 1em;
  justify-content: space-between;
}
.form__column .form__label {
  margin-bottom: 1em;
}
.form__label {
  display: flex;
  gap: 0.75em;
  align-items: center;
}
.form__required::after {
  content: "必須";
  padding: 0.25em 1em;
  display: inline-block;
  flex: none;
  background-color: #b70000;
  color: #fff;
  font-size: 87.5%;
}
.form__optional::after {
  content: "任意";
  padding: 0.25em 1em;
  display: inline-block;
  flex: none;
  background-color: #ccc;
  color: #fff;
  font-size: 87.5%;
}
.form__control {
  width: 100%;
  padding: 1.125em 1.25em;
  border: 1px solid var(--form-border, #ccc);
  background-color: #fff;
  font-size: max(1.6rem, 16px);
  line-height: 1.5;
}
.form__group {
  display: grid;
  gap: 1em;
}
.form__group + .form__group {
  margin-top: 2rem;
}
.form__group.col2 {
  grid-template-columns: repeat(2, 1fr);
}
.form__group.col3 {
  grid-template-columns: repeat(3, 1fr);
}
.form__group.col4 {
  grid-template-columns: repeat(4, 1fr);
}
.form__content--item {
  display: flex;
  gap: 0.5em;
  align-items: center;
}
.form__content--unit {
  flex: none;
}
.form .error {
  margin-top: 0.5em;
}
.form__textarea {
  height: 24rem;
}
.form__select {
  background-image: url("data: image/svg+xml,<svg width='8' height='5' viewBox='0 0 8 5' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M8 1.09131L6.87779 0L4.00008 2.79808L1.12225 0L4.1008e-05 1.09131L4.00008 4.98061L8 1.09131Z' fill='%2329318A'/></svg>");
  background-position: right 1.5rem center;
  background-size: 0.8rem auto;
  background-repeat: no-repeat;
}
.form__checkbox {
  --form-size: 1.6rem;
}
.form__checkbox--row {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
}
.form__checkbox--row .mwform-checkbox-field {
  margin-top: 0 !important;
}
.form__checkbox--row .error {
  width: 100%;
  margin-top: -0.5em;
}
.form__checkbox--column .mwform-checkbox-field + .mwform-checkbox-field {
  margin-top: 0.75em !important;
}
.form__checkbox--column .error {
  margin-top: 0.75em;
}
.form__checkbox [type=checkbox] {
  display: none;
}
.form__checkbox .mwform-checkbox-field {
  line-height: 1;
}
.form__checkbox .mwform-checkbox-field-text {
  position: relative;
  display: inline-flex;
  gap: 0.5em;
  align-items: center;
}
.form__checkbox .mwform-checkbox-field-text::before {
  content: "";
  width: calc(var(--form-size) * 1.25);
  display: block;
  border: 1px solid var(--form-border, #ccc);
  background-color: #fff;
  aspect-ratio: 1;
}
.form__checkbox .mwform-checkbox-field-text::after {
  content: "";
  width: calc(var(--form-size) * 0.6);
  height: calc(var(--form-size) * 0.8);
  position: absolute;
  top: calc(50% - var(--form-size) * 0.1);
  left: calc(var(--form-size) * 0.3);
  display: block;
  border-right: 3px solid #ff9528;
  border-bottom: 3px solid #ff9528;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  transform: translateY(-50%) rotate(40deg);
}
.form__checkbox .mwform-checkbox-field [type=checkbox]:checked + .mwform-checkbox-field-text::after {
  opacity: 1;
  visibility: visible;
}
.form__radio {
  --form-size: 1.6rem;
}
.form__radio--row {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
}
.form__radio--row .mwform-radio-field {
  margin-top: 0 !important;
}
.form__radio--row .error {
  width: 100%;
  margin-top: -0.5em;
}
.form__radio--column .mwform-radio-field + .mwform-radio-field {
  margin-top: 0.75em !important;
}
.form__radio--column .error {
  margin-top: 0.75em;
}
.form__radio [type=radio] {
  display: none;
}
.form__radio .mwform-radio-field {
  line-height: 1;
}
.form__radio .mwform-radio-field-text {
  position: relative;
  display: inline-flex;
  gap: 0.5em;
  align-items: center;
}
.form__radio .mwform-radio-field-text::before {
  content: "";
  width: calc(var(--form-size) * 1.5);
  display: block;
  overflow: hidden;
  border: 1px solid var(--form-border, #ccc);
  border-radius: 50%;
  background-color: #fff;
  aspect-ratio: 1;
}
.form__radio .mwform-radio-field [type=radio]:checked + .mwform-radio-field-text::before {
  outline: calc(var(--form-size) * 0.4 - 1px) solid #fff;
  outline-offset: calc(var(--form-size) * -0.4);
  border-color: #ff9528;
  background-color: #ff9528;
}
.form__policy {
  padding-top: 5rem;
}
.form__policy p {
  margin-bottom: 1rem;
}
.form__policy .row {
  display: flex;
  gap: 6.5rem;
  align-items: center;
  justify-content: center;
}
.form__policy .item {
  position: relative;
}
.form__policy .item::after {
  content: "";
  width: 1.5rem;
  height: 2rem;
  position: absolute;
  top: 1px;
  right: -3rem;
  background-image: url("data: image/svg+xml,<svg width='12' height='12' viewBox='0 0 19 19' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M13.3 19.0016H2.85C1.235 19.0016 0 17.7666 0 16.1516V5.70156C0 4.08656 1.235 2.85156 2.85 2.85156H8.55C9.12 2.85156 9.5 3.23156 9.5 3.80156C9.5 4.37156 9.12 4.75156 8.55 4.75156H2.85C2.28 4.75156 1.9 5.13156 1.9 5.70156V16.1516C1.9 16.7216 2.28 17.1016 2.85 17.1016H13.3C13.87 17.1016 14.25 16.7216 14.25 16.1516V10.4516C14.25 9.88156 14.63 9.50156 15.2 9.50156C15.77 9.50156 16.15 9.88156 16.15 10.4516V16.1516C16.15 17.7666 14.915 19.0016 13.3 19.0016Z' fill='%23333333'/><path d='M18.0504 7.6C17.4804 7.6 17.1004 7.22 17.1004 6.65V1.9H12.3504C11.7804 1.9 11.4004 1.52 11.4004 0.95C11.4004 0.38 11.7804 0 12.3504 0H18.0504C18.6204 0 19.0004 0.38 19.0004 0.95V6.65C19.0004 7.22 18.6204 7.6 18.0504 7.6Z' fill='%23333333'/><path d='M7.60039 12.35C7.31539 12.35 7.12539 12.255 6.93539 12.065C6.55539 11.685 6.55539 11.115 6.93539 10.735L17.3854 0.285C17.7654 -0.095 18.3354 -0.095 18.7154 0.285C19.0954 0.665 19.0954 1.235 18.7154 1.615L8.26539 12.065C8.07539 12.255 7.88539 12.35 7.60039 12.35Z' fill='%23333333'/></svg>");
  background-position: center;
}
.form__policy label {
  font-weight: 600;
}
.form__policy label a {
  text-decoration: underline;
}
.form__button {
  margin-top: 5.5rem;
}
.form__button.btn__grid {
  gap: 5rem;
}

.modal__content {
  width: 100rem;
  max-width: 90%;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 9999;
  display: none;
  background-color: #fff;
  transform: translateX(-50%) translateY(-50%);
}
.modal__content--inner {
  max-height: calc(100vh - 10rem);
  padding: 6rem 5rem 4rem;
  overflow-y: auto;
}
.modal__close {
  width: 2.4rem;
  height: 2.4rem;
  padding: 0;
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
}
.modal__close::before, .modal__close::after {
  content: "";
  width: 2px;
  height: 70%;
  position: absolute;
  top: 50%;
  left: 50%;
  background: #ff9528;
}
.modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.js-modal__trigger:hover {
  cursor: pointer;
}
.js-bg__layer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 998;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.js-bg__layer.is-show {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 768px) {
  .modal__content--inner {
    padding: 5rem 3rem 4rem;
  }
}
.module__01 .wp-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.module__01 .wp-block-image :where(figcaption) {
  margin-top: 1em;
}

.table__01 table {
  display: block;
}
.table__01 tbody {
  display: block;
}
.table__01 tbody tr {
  display: grid;
  grid-template-columns: 20rem 1fr;
}
.table__01 tbody td {
  padding: 1.5em;
  border-right: 0;
  border-left: 0;
  background-color: transparent;
}
.table__01 tbody td:nth-child(odd) {
  background-color: transparent;
  color: #ff9528;
  font-weight: 700;
}
.table__01 tbody td:nth-child(even) {
  border-right: 0;
}
.table__01 tbody td:nth-child(2) {
  border-top: 0;
}

.common__01--grid {
  margin: 0 auto;
  display: flex;
  gap: 7rem;
  align-items: center;
  justify-content: space-between;
}
.common__01--grid.is-reverse {
  flex-direction: row-reverse;
}
.common__01--visual {
  display: flex;
  gap: 5rem;
}
.common__02--content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.common__02--content .title {
  color: #ff9528;
  font-weight: 600;
  font-size: 2.2rem;
}
.common__02--content .sentence {
  margin-top: 2.5rem;
}
.common__02--button {
  margin-top: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.common__02--button .title {
  color: #ff9528;
  font-weight: 700;
  font-size: 2.4rem;
}
.common__02--button .text {
  margin-top: 1rem;
}
.common__02--button .btn__01 {
  margin-top: 2rem;
}
.link__01 {
  width: 100%;
  padding-bottom: 2rem;
  position: relative;
  display: block;
  border-bottom: 2px solid #fff;
}
.link__01::after {
  content: "";
  width: 3.5rem;
  height: 3.5rem;
  position: absolute;
  right: 0;
  bottom: 2rem;
  border: 1px solid #fff;
  border-radius: 50%;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212.869%22%20height%3D%2212.021%22%20viewBox%3D%220%200%2012.869%2012.021%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_5359%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%205359%22%20transform%3D%22translate(-3.25%200.353)%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_764%22%20data-name%3D%22%E3%83%91%E3%82%B9%20764%22%20d%3D%22M0%2C7V0H7%22%20transform%3D%22translate(15.058%205.657)%20rotate(135)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.5%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_765%22%20data-name%3D%22%E3%83%91%E3%82%B9%20765%22%20d%3D%22M-977.75-8459.5h-11%22%20transform%3D%22translate(992.75%208465.158)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221.5%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: center;
  background-size: 1.1rem;
}
.link__01 > * {
  color: #fff;
}
.link__01 span {
  display: block;
}
.link__01--label {
  margin-bottom: 1rem;
}
.link__01--main {
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1;
}
.link__01.primary {
  border-color: #ff9528;
}
.link__01.primary::after {
  border-color: #ff9528;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212.869%22%20height%3D%2212.021%22%20viewBox%3D%220%200%2012.869%2012.021%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_5359%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%205359%22%20transform%3D%22translate(-3.25%200.353)%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_764%22%20data-name%3D%22%E3%83%91%E3%82%B9%20764%22%20d%3D%22M0%2C7.75A.75.75%2C0%2C0%2C1-.75%2C7V0A.75.75%2C0%2C0%2C1-.53-.53.75.75%2C0%2C0%2C1%2C0-.75H7A.75.75%2C0%2C0%2C1%2C7.75%2C0%2C.75.75%2C0%2C0%2C1%2C7%2C.75H.75V7A.75.75%2C0%2C0%2C1%2C0%2C7.75Z%22%20transform%3D%22translate(15.058%205.657)%20rotate(135)%22%20fill%3D%22%23003e91%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_765%22%20data-name%3D%22%E3%83%91%E3%82%B9%20765%22%20d%3D%22M-977.75-8458.75h-11a.75.75%2C0%2C0%2C1-.75-.75.75.75%2C0%2C0%2C1%2C.75-.75h11a.75.75%2C0%2C0%2C1%2C.75.75A.75.75%2C0%2C0%2C1-977.75-8458.75Z%22%20transform%3D%22translate(992.75%208465.158)%22%20fill%3D%22%23003e91%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
}
.link__01.primary > * {
  color: #ff9528;
}

.grid {
  display: grid;
}
.grid.col2 {
  gap: 4rem;
  grid-template-columns: repeat(2, 1fr);
}
.grid.col3 {
  gap: 3rem;
  grid-template-columns: repeat(3, 1fr);
}
.grid__card {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.grid__card.col2 {
  gap: 4rem 4rem;
}
.grid__card.col2 > * {
  width: calc((100% - 4rem) / 2);
}
.grid__card.col3 {
  gap: 3rem 3rem;
}
.grid__card.col3 > * {
  width: calc((100% - 6rem) / 3);
}
.grid__card.col4 {
  gap: 3rem 2.7rem;
}
.grid__card.col4 > * {
  width: calc((100% - 8.1rem) / 4);
}

.banner-item {
  display: block;
}
.banner-item img {
  width: 100%;
}
.banner-item.border {
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--theme-color, #ff9528);
}

.box__01 {
  padding: 4rem;
  display: flex;
  align-items: center;
  border: 1px solid #dbe4ef;
}
.box__01--content {
  padding-left: 4rem;
}
.box__01--title {
  margin-bottom: 1em;
  font-size: 2.4rem;
}
.box__01--text {
  font-family: "Zen Kaku Gothic New", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  line-height: 2.25;
}

.card__01 {
  display: grid;
}
.card__01.col2 {
  gap: 0 0.4rem;
  grid-template-columns: repeat(2, 1fr);
}
.card__01.col3 {
  gap: 0 3rem;
  grid-template-columns: repeat(3, 1fr);
}
.card__01--contents {
  position: relative;
}
.card__01--visual {
  overflow: hidden;
  border-radius: 0.5rem;
}
.card__01--visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card__01--title {
  width: 84%;
  max-width: 28.7rem;
  height: 4.4rem;
  padding-bottom: 1.5rem;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  border-radius: 0 0 0.5rem 0;
  background-color: #fff;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.4;
}
.card__01--title::before {
  content: "";
  width: 3rem;
  height: 1px;
  margin-right: 0.95rem;
  background-color: #ff9528;
}
.card__01--title.w-sm {
  max-width: 26rem;
}
.card__02 {
  background-color: #fff;
  box-shadow: 0.2rem 0.3rem 0.6rem 0 rgba(37, 30, 28, 0.1);
}
.card__02--visual {
  width: 100%;
  overflow: hidden;
  border-radius: 0.5rem 0.5rem 0 0;
  aspect-ratio: 1/0.736;
}
.card__02--visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card__02--contents {
  padding: 2rem;
  border-top: 2px solid #ff9528;
  border-radius: 0 0 0.5rem 0.5rem;
  font-family: "Zen Kaku Gothic New", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
.card__02--title {
  margin-bottom: 0.5em;
  font-weight: 700;
  font-size: 1.6rem;
}
.card__02--detail {
  font-size: 1.4rem;
}
.card__02--detail .inner {
  display: grid;
  grid-template-columns: auto 1fr;
}
.card__02--detail .inner + .inner {
  margin-top: 0.25em;
}
.card__02--detail dt::after {
  content: "：";
}
.card__03--visual {
  margin-bottom: 2rem;
  overflow: hidden;
  border-radius: 0.5rem;
  aspect-ratio: 1/0.684;
}
.card__03--visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card__03--title a {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-family: "Zen Kaku Gothic New", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2.25;
}
.card__03--excerpt p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  white-space: wrap;
  -webkit-line-clamp: 4;
}

.gallery__01 {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
}
.gallery__01--item {
  aspect-ratio: 1/0.668;
}
.gallery__01--item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery__01 .item1 {
  grid-area: 1/1/3/3;
}
.gallery__01 .item2 {
  grid-area: 1/3/2/4;
}
.gallery__01 .item3 {
  grid-area: 1/4/2/5;
}
.gallery__01 .item4 {
  grid-area: 2/3/3/4;
}
.gallery__01 .item5 {
  grid-area: 2/4/3/5;
}
.gallery__01 .item6 {
  grid-area: 3/1/4/2;
}
.gallery__01 .item7 {
  grid-area: 3/2/4/3;
}
.gallery__01 .item8 {
  grid-area: 3/3/4/4;
}
.gallery__01 .item9 {
  grid-area: 3/4/4/5;
}
.gallery__02 {
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr 1fr;
}
.gallery__02--item {
  aspect-ratio: 1/0.714;
}
.gallery__02--item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery__03--item {
  display: block;
}
.gallery__03--item > * {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery__03--item.is-map {
  aspect-ratio: 1/0.345;
}
.gallery__03--title {
  margin-top: 4rem;
  color: var(--theme-color, #ff9528);
  letter-spacing: 0;
  font-size: 2.4rem;
  line-height: 1.4583333333;
}
.gallery__03--text {
  margin-top: 2rem;
}

.news__list {
  font-family: "Zen Kaku Gothic New", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
.news__list--item {
  width: 100%;
  padding: 3rem 0;
  position: relative;
  border-bottom: 1px solid #dbe4ef;
  font-weight: 700;
}
.news__list--item::after {
  content: "";
  width: 3.5rem;
  height: 3.5rem;
  position: absolute;
  top: calc(50% + 1.6rem);
  right: 0;
  border: 1px solid #dbe4ef;
  border-radius: 50%;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212.869%22%20height%3D%2212.021%22%20viewBox%3D%220%200%2012.869%2012.021%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_5359%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%205359%22%20transform%3D%22translate(-3.25%200.353)%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_764%22%20data-name%3D%22%E3%83%91%E3%82%B9%20764%22%20d%3D%22M0%2C7.75A.75.75%2C0%2C0%2C1-.75%2C7V0A.75.75%2C0%2C0%2C1-.53-.53.75.75%2C0%2C0%2C1%2C0-.75H7A.75.75%2C0%2C0%2C1%2C7.75%2C0%2C.75.75%2C0%2C0%2C1%2C7%2C.75H.75V7A.75.75%2C0%2C0%2C1%2C0%2C7.75Z%22%20transform%3D%22translate(15.058%205.657)%20rotate(135)%22%20fill%3D%22%23003e91%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_765%22%20data-name%3D%22%E3%83%91%E3%82%B9%20765%22%20d%3D%22M-977.75-8458.75h-11a.75.75%2C0%2C0%2C1-.75-.75.75.75%2C0%2C0%2C1%2C.75-.75h11a.75.75%2C0%2C0%2C1%2C.75.75A.75.75%2C0%2C0%2C1-977.75-8458.75Z%22%20transform%3D%22translate(992.75%208465.158)%22%20fill%3D%22%23003e91%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: center;
  background-size: 1.1rem;
  transform: translateY(-50%);
  pointer-events: none;
}
.news__list--title {
  margin-top: 1rem;
  padding-right: 5.5rem;
  display: -webkit-box;
  overflow: hidden;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-height: 2;
}

.date {
  color: #999;
  letter-spacing: 0.05em;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1;
}

.categorys {
  padding: 0.3rem 0.8rem;
  flex: none;
  border-radius: 0.3rem;
  background-color: #8bc53f;
  color: white;
  font-family: "Zen Kaku Gothic New", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
}

.faq__list {
  padding-bottom: 3rem;
}
.faq__list--title, .faq__list--sentence {
  padding-left: 7rem;
  position: relative;
}
.faq__list--sentence + .faq__list--title {
  margin-top: 4rem;
}
.faq__list--title {
  padding: 2rem 6rem 2rem 7rem;
  border-bottom: 1px solid #dbe4ef;
  font-size: 2rem;
  line-height: 1.8;
  cursor: pointer;
}
.faq__list--title::before {
  content: "Q";
  width: 5rem;
  height: 5rem;
  position: absolute;
  top: 1rem;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #dbe4ef;
  color: #fff;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 2.8rem;
}
.faq__list--title span {
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 2rem;
  right: 2rem;
  display: block;
}
.faq__list--title span::before {
  content: "";
  width: 2rem;
  height: 2px;
  position: absolute;
  top: calc(50% - 1px);
  border-radius: 2px;
  background-color: #c7ccd2;
  transition: all 0.3s;
}
.faq__list--title span::after {
  content: "";
  width: 2px;
  height: 2rem;
  position: absolute;
  left: calc(50% - 1px);
  border-radius: 2px;
  background-color: #c7ccd2;
  transition: all 0.3s;
}
.faq__list--title span.is-active::before {
  transform: rotate(-180deg);
}
.faq__list--title span.is-active::after {
  transform: rotate(90deg);
}
.faq__list--sentence {
  margin-top: 2rem;
  display: none;
  font-family: "Zen Kaku Gothic New", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
}
.faq__list--sentence p {
  line-height: 2.25;
}

@media screen and (max-width: 768px) {
  .module__01 {
    gap: 3rem;
    flex-direction: column-reverse;
  }
  .module__01.is-reverse {
    flex-direction: column-reverse;
  }
  .module__01--title {
    margin-bottom: 1em;
    font-size: 1.8rem;
    line-height: 1.6;
  }
  .module__02--grid {
    flex-direction: column;
  }
  .module__02--visual {
    width: 100%;
  }
  .module__03--list {
    gap: 2rem;
  }
  .module__03--list > li {
    width: calc((100% - 2rem) / 2);
  }
  .module__03--title {
    font-size: 1.6rem;
  }
  .module__04 {
    grid-template-columns: 1fr !important;
  }
  .module__04--content {
    flex-direction: column;
  }
  .module__04--visual {
    width: 100%;
    height: auto;
  }
  .module__05--title {
    padding: 1rem 2rem;
    font-size: 1.8rem;
    --text-color: #fff;
  }
  .module__05--title.is-column {
    gap: 0;
    align-items: flex-start;
    flex-direction: column;
  }
  .module__05--contents {
    padding: 2rem 2rem;
  }
  .module__06--list {
    gap: 2rem;
  }
  .module__06--item a {
    padding-bottom: 1.6rem;
    font-size: 1.4rem;
  }
  .module__06--item a::after {
    width: 2.6rem;
  }
  .module__07--item {
    padding: 1.5rem 2.5rem;
  }
  .module__09--visual .caption {
    margin-bottom: 1rem;
    font-size: 1.6rem;
  }
  .module__09--contents {
    gap: 2rem;
  }
  .module__10--title, .module__10--sentence {
    padding-left: 3.2rem;
  }
  .module__10--title::before, .module__10--sentence::before {
    left: 0;
    font-size: 2rem;
  }
  .module__10--sentence + .module__10--title {
    margin-top: 1.6rem;
  }
  .module__10--title {
    padding-top: 1.6rem;
    font-size: 1.4rem;
  }
  .module__10--title::before {
    top: 1.6rem;
  }
  .module__10--title span {
    width: 1.6rem;
    height: 1.6rem;
  }
  .module__10--sentence {
    margin-top: 1.6rem;
  }
  .module__10--sentence::before {
    top: 0.2rem;
    left: 0.2rem;
  }
  .link__01--grid.v2 .link__01--item {
    width: 100%;
    position: relative;
  }
  .common__01--grid {
    flex-direction: column;
  }
  .common__02 .sentence p + p {
    margin-top: 2rem;
  }
  .link__01--grid {
    gap: 2rem;
    flex-direction: column;
  }
  .link__01--grid.col3 {
    flex-direction: row;
  }
  .link__01--grid.col3 .link__01--item {
    width: calc((100% - 2rem) / 2);
    margin-top: 0 !important;
  }
  .link__01--item {
    width: 100%;
  }
  .link__01--item + .link__01--item {
    margin-top: 2rem;
  }
  .link__01--link .text {
    right: 1.5rem;
    bottom: 0.5rem;
  }
  .link__01--sentence {
    margin-top: 0.5em;
  }
  .link__01--sentence .title__main {
    font-size: 1.4rem;
  }
  .grid.col2 {
    gap: 2rem;
    grid-template-columns: 1fr;
  }
  .grid__card.col4 {
    gap: 2rem 0;
  }
  .grid__card.col4 > * {
    width: 100%;
  }
  .grid__card.col3 {
    gap: 2rem 0;
  }
  .grid__card.col3 > * {
    width: 100%;
  }
  .card__01.col2 {
    gap: 1.4rem 0;
    grid-template-columns: 1fr;
  }
  .card__01.col3 {
    gap: 1.4rem 0;
    grid-template-columns: 1fr;
  }
  .card__01--visual {
    aspect-ratio: 1/0.971;
  }
  .card__01--title {
    width: 84%;
    height: 4rem;
    font-size: 1.6rem;
  }
  .card__01--title::before {
    width: 2.6rem;
  }
  .card__01--title.w-sm {
    width: 84%;
    height: 4rem;
    font-size: 1.6rem;
  }
  .card__02--contents {
    padding: 1rem 1em;
  }
  .card__02--title {
    font-size: 1.4rem;
  }
  .card__02--detail {
    font-size: 1.2rem;
  }
  .card__03 {
    display: grid;
    gap: 1rem;
    grid-template-columns: 17rem 1fr;
    align-items: flex-start;
  }
  .card__03--title {
    margin-top: 1rem;
  }
  .card__03--title a {
    -webkit-line-clamp: 3;
    font-size: 1.4rem;
    line-height: 2;
  }
  .box__01 {
    padding: 2rem;
    display: block;
  }
  .box__01--visual {
    width: 100%;
    margin-bottom: 2rem;
  }
  .box__01--visual img {
    width: 100%;
  }
  .box__01--content {
    padding-left: 0;
  }
  .box__01--title {
    margin-bottom: 0.75em;
    font-size: 2rem;
  }
  .box__01--text {
    line-height: 2;
  }
  .news__list--item {
    padding: 1.8rem 0;
  }
  .news__list--item::after {
    width: 2.4rem;
    height: 2.4rem;
    background-size: 1rem;
  }
  .news__list--title {
    padding-right: 3.6rem;
    -webkit-line-clamp: 2;
  }
  .date {
    font-size: 1.2rem;
  }
  .tag {
    font-size: 1rem;
  }
  .faq__list {
    padding-bottom: 0;
  }
  .faq__list--sentence + .faq__list--title {
    margin-top: 3rem;
  }
  .faq__list--title {
    padding: 1.4rem 3.2rem 1.4rem 4.8rem;
    font-size: 1.6rem;
  }
  .faq__list--title::before {
    width: 3.4rem;
    height: 3.4rem;
    font-size: 2.2rem;
  }
  .faq__list--title span {
    right: 0;
  }
  .faq__list--sentence {
    padding-left: 0;
    font-size: 1.4rem;
  }
}
.sidebar__block {
  padding: 2.5rem;
  border-radius: 0.5rem;
  background-color: #f8fafc;
}
.sidebar__block + .sidebar__block {
  margin-top: 2rem;
}
.sidebar__block--title {
  margin-bottom: 1em;
  color: #ff9528;
  font-family: "Zen Kaku Gothic New", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 2rem;
}
.sidebar__category li {
  padding-bottom: 0.75em;
  border-bottom: 1px solid #dbe4ef;
}
.sidebar__category li + li {
  margin-top: 0.75em;
}
.sidebar__category a {
  font-weight: 700;
}
.sidebar__news li {
  padding-bottom: 0.75em;
  border-bottom: 1px solid #dbe4ef;
  font-weight: 700;
}
.sidebar__news li + li {
  margin-top: 0.75em;
}
.sidebar__news .date {
  font-size: 1.2rem;
}
.sidebar__news .date + * {
  margin-top: 0.25em;
  margin-left: 0;
}
.sidebar__news .title {
  display: block;
  font-size: 1.4rem;
  line-height: 1.7142857143;
}
.sidebar__column li {
  padding-bottom: 0.75em;
  border-bottom: 1px solid #dbe4ef;
  font-weight: 700;
}
.sidebar__column li + li {
  margin-top: 0.75em;
}
.sidebar__column--item {
  display: grid;
  gap: 1rem;
  grid-template-columns: 12rem 1fr;
  align-items: flex-start;
}
.sidebar__column--visual {
  width: 100%;
  display: block;
  overflow: hidden;
  border-radius: 0.5rem;
  aspect-ratio: 120/82;
}
.sidebar__column--visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sidebar__column--text {
  display: flex;
  gap: 0.25em 0.6rem;
  align-items: center;
  flex-wrap: wrap;
}
.sidebar__column--text .date {
  font-size: 1rem;
}
.sidebar__column--text .date + * {
  margin-left: 0;
}
.sidebar__column--text .tag {
  padding: 0.2em 0.5em;
  display: inline-block;
  font-size: 1rem;
}
.sidebar__column--text .title {
  width: 100%;
  display: block;
  font-size: 1.2rem;
  line-height: 1.5;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  white-space: wrap;
  -webkit-line-clamp: 3;
}

@media screen and (max-width: 768px) {
  .sidebar__block {
    padding: 2rem;
  }
  .sidebar__block + .sidebar__block {
    margin-top: 1.2rem;
  }
  .sidebar__block--title {
    margin-bottom: 0.75em;
    font-size: 1.6rem;
  }
}
.home__hero {
  margin-bottom: 12rem;
  position: relative;
}
.home__hero--bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home__hero--catch {
  margin-top: 3rem;
  padding: 1em 3rem;
  display: flex;
  gap: 2rem;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.5);
}
.home__hero--catch > span {
  display: block;
}
.home__hero--catch .text01 {
  letter-spacing: 0;
  font-weight: 700;
  font-size: 6.4rem;
  line-height: 1.1;
}
.home__hero--catch .text02 {
  font-size: 2.8rem;
}
.home__hero--text {
  margin-top: 4.8rem;
}
.home__hero--text p {
  line-height: 2;
}
.home__about--catch {
  margin-bottom: 4.8rem;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.875;
}
.home__about--contents {
  max-width: 90rem;
  margin: 0 auto 6.2rem;
  display: flex;
  gap: 6rem;
}
.home__about--sentence p {
  line-height: 2;
}
.home__about--sentence p:not(:last-child) {
  margin-bottom: 1.5em;
}
.home__about--img {
  width: 25rem;
  flex: none;
}
.home__about--img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.home__about--list {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.home__about--list-contents {
  display: flex;
  gap: 2rem;
  flex: 1;
  flex-direction: column;
}
.home__about--list li {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  border-radius: 2.4rem;
  background-color: white;
}
.home__about--list .btn__01 {
  margin-top: auto;
}
.home__pickup .swiper {
  overflow: visible !important;
}
.home__voice li {
  display: grid;
  gap: 4.8rem;
  grid-template-columns: 18rem 1fr;
}
.home__voice li + li {
  margin-top: 4.8rem;
}
.home__voice--sentence {
  padding: 2.4rem 3.2rem;
  position: relative;
  border-radius: 2.4rem;
  background-color: #fbf5e3;
}
.home__voice--sentence::before {
  content: "";
  width: 2.4rem;
  height: 1.6rem;
  position: absolute;
  top: 2.4rem;
  right: 100%;
  background-color: inherit;
  clip-path: polygon(0 0, 100% 100%, 100% 0);
}
.home__voice .name,
.home__voice h3 {
  margin-bottom: 2rem;
  font-size: 2.2rem;
}
.home__voice .name span,
.home__voice h3 span {
  margin-bottom: 0.25em;
  display: inline-block;
  font-size: 1.4rem;
}
.home__voice .text-box + .text-box {
  margin-top: 1.6rem;
}
.home__voice .text-en {
  font-size: 1.4rem;
  opacity: 0.75;
}
.home__voice .text-en p {
  letter-spacing: 0.05em;
  line-height: 1.75;
}
.home__voice--img {
  width: 100%;
  overflow: hidden;
  flex: none;
  border-radius: 50%;
  aspect-ratio: 1;
}
.home__voice--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (min-width: 769px) {
  .home__hero--catch .text01 {
    font-size: 5.4rem;
  }
}
@media screen and (min-width: 769px) {
  .home__hero {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
  }
  .home__hero--bg {
    flex: 1;
  }
  .home__hero--catch {
    margin-right: -20rem;
    position: relative;
    z-index: 2;
  }
}
@media screen and (max-width: 768px) {
  .home__hero {
    margin-bottom: 4.8rem;
  }
  .home__hero--catch {
    margin-top: 1em;
    padding: 0 2rem;
    gap: 1rem;
    flex-direction: column-reverse;
  }
  .home__hero--catch .text01 {
    font-size: 4.2rem;
  }
  .home__hero--catch .text02 {
    font-size: 1.6rem;
  }
  .home__about--catch {
    margin-bottom: 3.2rem;
    font-size: 1.8rem;
  }
  .home__about--contents {
    margin-bottom: 4.8rem;
  }
  .home__about--sentence p {
    line-height: 2;
  }
  .home__about--sentence p:not(:last-child) {
    margin-bottom: 2em;
  }
  .home__about--list {
    grid-template-columns: 1fr;
  }
  .home__about--list li {
    border-radius: 1.2rem;
  }
  .home__voice li {
    display: block;
  }
  .home__voice--sentence {
    padding: 12rem 2.4rem 2.4rem;
    border-radius: 1.2rem;
  }
  .home__voice--sentence::before {
    content: none;
  }
  .home__voice--img {
    width: 20rem;
    margin: 0 auto -10rem;
    position: relative;
    z-index: 2;
  }
  .home__voice .name,
  .home__voice h3 {
    text-align: center;
  }
  .home__voice .text-en {
    font-size: 1.3rem;
  }
  .home__voice .text-en p {
    letter-spacing: 0.025em;
  }
}
.news__contents--list {
  max-width: 90rem;
  margin: 0 auto;
}
.news__contents--list.w-90p {
  max-width: 90%;
}
.news__contents li {
  display: flex;
  gap: 0.75em 0.5em;
  align-items: center;
}
.news__contents li + li {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #ccc;
}
.news__contents li p {
  line-height: 1.5;
}
.news__contents li .date {
  margin-right: 0.5em;
}
.news__contents li .title {
  font-size: 1.4rem;
}
.news__contents li .ellipsis {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news__contents--tags {
  padding: 2rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.news__contents--tags a {
  padding: 0.8rem 1.5rem;
  flex: none;
  background-color: #707070;
  color: white;
  font-family: "Zen Kaku Gothic New", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
}
.news__contents details {
  border: 1px solid #ddd;
  transition: 0.5s;
}
.news__contents summary {
  padding: 2rem;
  background: #f1f2ea;
  font-size: 1.8rem;
}
.news__archive {
  padding-top: 0;
}
.news__list--row .news__item {
  gap: 1.5em;
}
.news__list--column .news__item {
  flex-wrap: wrap;
}
.news__list--column .news__item--title {
  width: 100%;
}
.news__item {
  display: flex;
  gap: 1em;
  align-items: center;
}
.news__item + .news__item {
  margin-top: 1.5em;
  padding-top: 1.5em;
  border-top: 1px solid #ccc;
}
.news__item--tag {
  padding: 0.5em 1em;
  background-color: #ff9528;
  font-size: 87.5%;
  line-height: 1;
  --text-color: #fff;
}

@media screen and (max-width: 768px) {
  .news__contents li {
    flex-wrap: wrap;
  }
  .news__contents summary {
    font-size: 1.6rem;
  }
}
.donation-block {
  padding: 4.8rem 3.2rem;
  border: 4px solid #ff9528;
  border-radius: 10px;
  background-color: #fff;
}
.donation-block .payment-logo {
  margin-top: 0 !important;
  margin-bottom: 3.2rem;
}
.donation-block .donation-sentence {
  margin-bottom: 3.2rem;
}
.donation-block .payment-select dt {
  margin-bottom: 1em;
  text-align: center;
  font-weight: 700;
  font-size: 1.8rem;
}
.donation-block .payment-select dd {
  display: flex;
  gap: 1.6rem;
  justify-content: center;
}
.donation-block .payment-item {
  width: 22rem;
}
.donation-block .payment-item input {
  display: none;
}
.donation-block .payment-item input:checked + span {
  border-color: #ff9528;
  background-color: #fefaef;
}
.donation-block .payment-item input:checked + span::before {
  border-color: #ff9528;
}
.donation-block .payment-item input:checked + span::after {
  opacity: 1;
}
.donation-block .payment-item > span {
  width: 100%;
  padding: 1.25em 1.5em 1.25em 5.4rem;
  position: relative;
  display: block;
  border: 1px solid #ccc;
  border-radius: 0.8rem;
  background-color: #f0f0f0;
  font-weight: 700;
  font-size: 1.4rem;
}
.donation-block .payment-item > span::before, .donation-block .payment-item > span::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  aspect-ratio: 1;
}
.donation-block .payment-item > span::before {
  width: 2.4rem;
  top: calc(50% - 1.2rem);
  left: 1em;
  border: 1px solid #ccc;
  background-color: #fff;
}
.donation-block .payment-item > span::after {
  width: 1.6rem;
  top: calc(50% - 0.8rem);
  left: calc(1em + 0.4rem);
  background-color: #ff9528;
  opacity: 0;
  transition: opacity 0.3s;
}
.donation-block .payment-item .price {
  margin-right: 0.15em;
  display: inline-block;
  letter-spacing: 0.05em;
  font-size: 2.4rem;
  line-height: 1;
}
.donation-block .payment-note {
  width: fit-content;
  margin: 1.5em auto 0;
  font-size: 1.4rem;
}
.donation-block .payment-note li::before {
  content: "※";
}
.donation-block .btn__01 {
  width: 32rem;
  height: 6rem;
  margin-top: 3.2rem;
}

.donation-column {
  display: flex;
  gap: 3.2rem;
  justify-content: center;
}

.donation-onetime .payment-logo {
  margin-bottom: 2rem;
}

.donation-form {
  display: flex;
  gap: 1.6rem;
  align-items: center;
}
.donation-form input {
  padding: 1em 1.5em;
  flex: 1;
  border: 1px solid #ccc;
  border-radius: 0.8rem;
}

.payment-account {
  padding: 2.4rem;
  display: grid;
  gap: 1em;
  grid-template-columns: 10rem 1fr;
  border-radius: 0.8rem;
  background-color: #f0f0f0;
}
.payment-account dt {
  font-weight: 700;
}

@media screen and (min-width: 769px) {
  .donation-column > * {
    width: calc((100% - 3.2rem) / 2);
  }
}
@media screen and (max-width: 768px) {
  .donation-column {
    flex-direction: column;
  }
  .donation-block {
    padding: 3.2rem 2.4rem;
    border-width: 3px;
  }
  .donation-block .payment-select dd {
    align-items: center;
    flex-direction: column;
  }
  .payment-account {
    display: block;
  }
  .payment-account dt {
    margin-bottom: 0.5em;
  }
  .payment-account dd + dt {
    margin-top: 1.25em;
  }
}
.wpcf7-form {
  max-width: 90rem;
  margin: 0 auto;
}

.form-box {
  display: block;
}
.form-box + .form-box {
  margin-top: 3.2rem;
}

.form-label {
  margin-bottom: 0.75em;
  display: block;
}
.form-label .required {
  margin-left: 1em;
  padding: 0.2em 0.5em;
  display: inline-block;
  border-radius: 0.4rem;
  background-color: #e50213;
  color: #fff;
  font-size: 75%;
}

.wpcf7-form-control {
  width: 100%;
  padding: 0.75em 1em;
  box-sizing: border-box;
  border: 1px solid #e2e2e2;
  border-radius: 0.8rem;
}

.wpcf7-select {
  width: fit-content;
  padding-right: 2.5em;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='m14 5-6 6-6-6' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' fill='none'/></svg>");
  background-position: right 0.75em center;
  background-size: 1em;
  background-repeat: no-repeat;
}

.wpcf7-not-valid-tip {
  margin-top: 0.5em;
  font-size: 1.4rem;
}

.wpcf7-submit {
  width: 24rem;
  height: 6rem;
  margin: 3.2rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 8rem;
  background-color: var(--btn-bg-color, #ff9528);
  color: white;
  font-weight: 700;
}/*# sourceMappingURL=style.css.map */