@charset "UTF-8";
:root {
  overflow-wrap: anywhere;
  line-break: strict;
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol,
li {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
  will-change: opacity;
}

a:hover,
a:focus {
  opacity: 0.7;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* リキッドレイアウト対応 */
.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

body {
  font-family: "Noto Serif JP", sans-serif;
}

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.2903225806vw;
  }
}
@media (min-width: 1240px) {
  html {
    font-size: 16px;
  }
}

.inner {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1290px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.header {
  display: flex;
  align-items: center;
  height: 6.25rem;
  padding: 0 3.125rem;
  position: fixed;
  width: 100%;
  top: 0;
  justify-content: center;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .header {
    justify-content: space-between;
    background-color: rgba(48, 48, 48, 0.3);
  }
}

.header__logo {
  aspect-ratio: 710/439;
  width: 7.5rem;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .header__logo {
    width: 9.375rem;
  }
}

.header.is-scrolled .header__logo {
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .header.is-scrolled .header__logo {
    opacity: 1;
  }
}

.header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: block;
  }
}

.header__nav__lists {
  display: flex;
  align-items: center;
  gap: 1.875rem;
}

.header__nav__text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header__nav__text {
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0.3em;
  margin-right: -0.3em;
  line-height: 1.4375;
}

.header__nav__en-text {
  font-family: "Roboto", sans-serif;
  color: #65B587;
  font-weight: 500;
  font-size: 1rem;
  text-transform: capitalize;
  line-height: 1.3125;
  margin-top: 0.3125rem;
}

.footer {
  margin-top: 5rem;
  background-color: #303030;
  padding-top: 3.5rem;
  padding-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .footer {
    margin-top: 6.25rem;
  }
}

.footer__inner {
  max-width: 78.125rem;
}

.footer__head {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .footer__head {
    padding-bottom: 1.875rem;
    border-bottom: 1px solid #AAAAAA;
    align-items: start;
  }
}

.footer__logo {
  aspect-ratio: 710/439;
  width: 9.375rem;
}

.footer__text {
  font-size: 0.75rem;
  color: #fff;
  font-weight: 700;
  margin-top: 0.75rem;
  line-height: 1.6666666667;
  letter-spacing: 0.1em;
  margin-right: -0.1em;
}
@media screen and (min-width: 768px) {
  .footer__text {
    font-size: 1rem;
    line-height: 1.375;
    margin-top: 0.625rem;
  }
}

.footer__nav {
  margin-top: 2.1875rem;
}

.footer__nav__list {
  display: flex;
  gap: 2rem;
}

.footer__nav__item {
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: #fff;
  letter-spacing: 0.1em;
  margin-right: -0.1em;
  line-height: 1.4166666667;
}

.footer__copyright {
  display: block;
  text-align: center;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 700;
  font-size: 0.625rem;
  color: #fff;
  letter-spacing: 0.1em;
  margin-right: -0.1em;
  line-height: 1.5;
  margin-top: 0.3125rem;
  opacity: 0.25;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    margin-top: 5.625rem;
  }
}

.hamburger {
  cursor: pointer;
  height: 2.5rem;
  transition: all 0.5s;
  width: 2.8125rem;
  z-index: 10;
  position: fixed;
  top: 2.1875rem;
  right: 1.875rem;
  display: block;
  background-color: rgba(69, 69, 69, 0.4);
  border: none;
  border-radius: 0.25rem;
  padding: 0.25rem;
}
@media screen and (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  background-color: #fff;
  display: block;
  height: 6px;
  left: 50%;
  position: absolute;
  transition: all 0.3s ease;
  width: 2.5rem;
  transform: translateX(-50%);
  border-radius: 8px;
}

.hamburger span:nth-child(1) {
  top: 0.375rem;
}

.hamburger span:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}

.hamburger span:nth-child(3) {
  bottom: 0.375rem;
}

.is-active.hamburger span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.is-active.hamburger span:nth-child(2) {
  opacity: 0;
}

.is-active.hamburger span:nth-child(3) {
  bottom: 50%;
  transform: translate(-50%, 50%) rotate(-45deg);
}

.sp-nav {
  background-color: rgba(48, 48, 48, 0.9);
  height: 100vh;
  left: 0;
  opacity: 0;
  overflow-y: auto;
  position: fixed;
  top: 0;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0s linear 0.4s;
  visibility: hidden;
  width: 100%;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.is-active.sp-nav {
  opacity: 1;
  transform: translateX(0);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0s linear;
  visibility: visible;
}

.sp-nav__logo {
  width: 10rem;
  aspect-ratio: 300/44.65;
  margin: 1.875rem auto 0;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.is-active .sp-nav__logo {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.sp-nav__list {
  text-align: center;
  color: #fff;
  margin-top: 2.5rem;
}

.sp-nav__item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.sp-nav__item:nth-child(1) {
  transition-delay: 0s;
}

.sp-nav__item:nth-child(2) {
  transition-delay: 0.05s;
}

.sp-nav__item:nth-child(3) {
  transition-delay: 0.1s;
}

.sp-nav__item:nth-child(4) {
  transition-delay: 0.15s;
}

.sp-nav__item:nth-child(5) {
  transition-delay: 0.2s;
}

.is-active .sp-nav__item {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.is-active .sp-nav__item:nth-child(1) {
  transition-delay: 0.3s;
}

.is-active .sp-nav__item:nth-child(2) {
  transition-delay: 0.4s;
}

.is-active .sp-nav__item:nth-child(3) {
  transition-delay: 0.5s;
}

.is-active .sp-nav__item:nth-child(4) {
  transition-delay: 0.6s;
}

.is-active .sp-nav__item:nth-child(5) {
  transition-delay: 0.7s;
}

.sp-nav__item:not(:first-child) {
  margin-top: 1.875rem;
}

.sp-nav__link {
  font-size: 1.125rem;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-right: -0.1em;
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 0.625rem 1.25rem;
  transition: background-color 0.3s ease;
}
.sp-nav__link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

body.sp-nav-open {
  overflow: hidden;
}

.section-title__wrapper {
  text-align: center;
}

.section-title {
  font-size: 1.5rem;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 700;
  color: #303030;
  line-height: 1.4583333333;
}
@media screen and (min-width: 768px) {
  .section-title {
    font-size: 2rem;
    line-height: 1.4375;
  }
}

.section-title__en {
  font-size: 0.75rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #303030;
  line-height: 1.3333333333;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  margin-right: -0.5em;
}
@media screen and (min-width: 768px) {
  .section-title__en {
    margin-top: 0.625rem;
  }
}

.faq-accordion {
  margin-top: 2.25rem;
  max-width: 62.5rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .faq-accordion {
    margin-top: 3.125rem;
  }
}

.faq-accordion__item {
  cursor: pointer;
}

.faq-accordion__head {
  position: relative;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  padding-left: 1rem;
  padding-right: 0.75rem;
  background-color: #65B587;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
  transition: filter 0.4s ease-out;
  will-change: filter;
}
@media screen and (min-width: 768px) {
  .faq-accordion__head {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    padding-left: 3.125rem;
    padding-right: 2.5rem;
  }
}

.faq-accordion__head.animating {
  filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.08));
  transition: filter 0.2s ease-in-out;
}

.faq-accordion__head::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(50%, -50%);
  right: 1.375rem;
  width: 1px;
  height: 12px;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .faq-accordion__head::before {
    right: 3.125rem;
    width: 3px;
    height: 16px;
  }
}

.faq-accordion__head.is-active::before {
  display: none;
}

.faq-accordion__head::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(50%, -50%);
  width: 12px;
  right: 1.375rem;
  height: 1px;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .faq-accordion__head::after {
    right: 3.125rem;
    height: 3px;
    width: 16px;
  }
}

.faq-accordion__item:not(:first-child) {
  margin-top: 0.625rem;
}

.faq-accordion__question {
  max-width: 90%;
  color: #fff;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  margin-right: -0.1em;
  line-height: 1.4285714286;
}
@media screen and (min-width: 768px) {
  .faq-accordion__question {
    font-size: 1.5rem;
    line-height: 1.4583333333;
  }
}

.faq-accordion__body {
  display: none;
  padding: 1.25rem;
  background-color: #f5ffef;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
  transition: filter 0.4s ease-out;
  will-change: filter;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .faq-accordion__body {
    padding: 3.125rem;
  }
}

.faq-accordion__body.animating {
  filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.08));
  transition: filter 0.2s ease-in-out;
}

.faq-accordion__answer {
  font-family: "Noto Serif JP", sans-serif;
  line-height: 2.1428571429;
  font-size: 0.875rem;
  color: #303030;
}
@media screen and (min-width: 768px) {
  .faq-accordion__answer {
    font-size: 1rem;
    letter-spacing: 0.1em;
    margin-right: -0.1em;
    line-height: 2.5;
  }
}

.faq-accordion__body.is-active {
  display: block;
}

.fv {
  width: 100%;
  height: 100svh;
  background-image: url("../images/common/fv_sp.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .fv {
    background-image: url("../images/common/fv.webp");
    justify-content: left;
  }
}

.fv__title {
  font-size: 1.875rem;
  font-weight: 700;
  font-family: "Noto Serif JP", sans-serif;
  color: #fff;
  text-align: center;
  line-height: 1.3333333333;
}
@media screen and (min-width: 768px) {
  .fv__title {
    font-size: 4.375rem;
    text-align: left;
    padding-left: 3.125rem;
    line-height: 1.2857142857;
  }
}

.fv--maintenance {
  display: flex;
  justify-content: center;
  flex-direction: column;
  background-image: url("../images/common/fv_maintenance_sp.webp");
}
@media screen and (min-width: 768px) {
  .fv--maintenance {
    background-image: url("../images/common/fv_maintenance.webp");
  }
}

.fv--maintenance .fv__title {
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .fv--maintenance .fv__title {
    font-size: 2.5rem;
    text-align: center;
    padding: 0;
  }
}

.fv--maintenance__link {
  font-weight: 700;
  font-size: 0.875rem;
  margin-top: 2.5rem;
  color: #fff;
  text-align: center;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .fv--maintenance__link {
    font-size: 1rem;
  }
}

.news {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .news {
    margin-top: 6.25rem;
  }
}

.news__list {
  margin-top: 1.5625rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-left: 0.3125rem;
  padding-right: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .news__list {
    margin-top: 3.75rem;
    gap: 1.875rem;
    padding-left: 0;
    padding-right: 0;
  }
}

.news__item {
  padding-bottom: 0.9375rem;
  border-bottom: 1px solid #707070;
}
@media screen and (min-width: 768px) {
  .news__item {
    padding-bottom: 1.875rem;
  }
}

.news__item__title {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: "Noto Serif JP", sans-serif;
  color: #303030;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .news__item__title {
    font-size: 1.5rem;
    line-height: 1.4583333333;
  }
}

.news__date {
  font-size: 0.625rem;
  font-weight: 700;
  font-family: "Noto Serif JP", sans-serif;
  color: #303030;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .news__date {
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}

.news__item__text {
  width: 88.0597014925%;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: "Noto Serif JP", sans-serif;
  color: #303030;
  line-height: 2.1428571429;
  /* 2行で省略するための設定 */
  display: -webkit-box;
  /* 標準プロパティ（互換性向上のため） */
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .news__item__text {
    font-size: 1rem;
    line-height: 1.875;
    width: 80.8064516129%;
  }
}

.news__link {
  font-size: 0.875rem;
  font-weight: 700;
  font-family: "Noto Serif JP", sans-serif;
  color: #65B587;
  line-height: 2.1428571429;
}
@media screen and (min-width: 768px) {
  .news__link {
    font-size: 1rem;
    line-height: 1.875;
  }
}

.about {
  margin-top: 3.125rem;
  padding: 3.125rem 0 2.1875rem;
  background-image: url("../images/common/about_bg_sp.webp");
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .about {
    background-image: url("../images/common/about_bg.webp");
    padding: 4.375rem 0 5.625rem;
    margin-top: 6.25rem;
  }
}

.about__inner {
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
}

.about__copy {
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  font-family: "Noto Serif JP", sans-serif;
  color: #fff;
  line-height: 1.5625;
}
@media screen and (min-width: 768px) {
  .about__copy {
    font-size: 2.5rem;
    line-height: 1.425;
    letter-spacing: 0.25em;
    margin-right: -0.25em;
  }
}

.about__text {
  text-align: center;
  margin-top: 1.875rem;
  font-size: 0.875rem;
  font-weight: 300;
  font-family: "Noto Serif JP", sans-serif;
  color: #fff;
  line-height: 2.1428571429;
}
@media screen and (min-width: 768px) {
  .about__text {
    font-size: 1rem;
    line-height: 2.125;
    margin-top: 5.25rem;
  }
}

.about__text:not(:first-of-type) {
  margin-top: 2em;
}

.about__link__wrapper {
  text-align: center;
  margin-top: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .about__link__wrapper {
    margin-top: 2.5rem;
  }
}

.about__link {
  padding: 0.4375rem 1.375rem 0.5rem;
  border: 1px solid #fff;
  display: inline-block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .about__link {
    padding: 0.6875rem 2.0625rem 0.75rem;
  }
}

.about__link__text {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  font-family: "Noto Serif JP", sans-serif;
  color: #fff;
  line-height: 1.4375;
  letter-spacing: 0.1em;
  margin-right: -0.1em;
}
@media screen and (min-width: 768px) {
  .about__link__text {
    font-size: 1.5rem;
    line-height: 1.4583333333;
  }
}

.about__link__sub-text {
  text-transform: uppercase;
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  color: #fff;
  line-height: 1.4;
  letter-spacing: 0.3em;
  margin-right: -0.3em;
  margin-top: 0.125rem;
}
@media screen and (min-width: 768px) {
  .about__link__sub-text {
    font-size: 1rem;
    line-height: 1.3125;
  }
}

.support {
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .support {
    margin-top: 6.25rem;
  }
}

.support__text {
  text-align: center;
  margin-top: 1.875rem;
  font-size: 0.875rem;
  font-weight: 300;
  font-family: "Noto Serif JP", sans-serif;
  color: #303030;
  line-height: 2.1428571429;
}
@media screen and (min-width: 768px) {
  .support__text {
    font-size: 1rem;
    line-height: 2.125;
    margin-top: 3.125rem;
  }
}

.support__text__divider {
  display: inline-block;
  margin-left: 0.3em;
  margin-right: 0.3em;
}

.support__list {
  margin-top: 1.875rem;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.875rem;
  padding-left: 1.40625rem;
  padding-right: 1.40625rem;
}
@media screen and (min-width: 768px) {
  .support__list {
    margin-top: 3.75rem;
    gap: 5rem 1.875rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-left: 2.1875rem;
    padding-right: 2.1875rem;
  }
}

.support__item__title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Noto Serif JP", sans-serif;
  color: #316544;
  line-height: 1.2916666667;
  letter-spacing: 0.15em;
  margin-right: -0.15em;
  text-transform: uppercase;
}

.support__item__sub-title {
  text-align: center;
  font-weight: 700;
  font-family: "Noto Serif JP", sans-serif;
  color: #454545;
  line-height: 1.4444444444;
  letter-spacing: 0.4em;
  margin-right: -0.4em;
}

.support__item__img {
  margin-top: 1.25rem;
  aspect-ratio: 300/150;
}
@media screen and (min-width: 768px) {
  .support__item__img {
    aspect-ratio: 390/195;
  }
}

.support__item__text {
  font-size: 0.875rem;
  font-weight: 500;
  font-family: "Noto Serif JP", sans-serif;
  color: #303030;
  line-height: 2.1428571429;
  margin-top: 1.25rem;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .support__item__text {
    font-size: 1rem;
    line-height: 2.125;
  }
}

.job-category {
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .job-category {
    margin-top: 6.25rem;
  }
}

.faq {
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .faq {
    margin-top: 6.25rem;
  }
}

.join {
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .join {
    margin-top: 6.25rem;
  }
}

.join__inner {
  max-width: 65.625rem;
}

.join__contents {
  margin-top: 1.875rem;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.875rem;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .join__contents {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
    margin-top: 3.75rem;
  }
}

.join__eligibility {
  background-color: #316544;
  padding: 1.875rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .join__eligibility {
    padding: 2.5rem 2.5rem;
  }
}

.join__eligibility__title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 900;
  font-family: "Noto Serif JP", sans-serif;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .join__eligibility__title {
    font-size: 1.75rem;
  }
}

.join__eligibility__text {
  margin-top: 1.25rem;
  text-indent: -1em;
  padding-left: 1em;
  letter-spacing: 0.03em;
  font-weight: 700;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .join__eligibility__text {
    font-size: 1.25rem;
  }
}

.join__eligibility__text:not(:first-of-type) {
  margin-top: 0.9375rem;
}

.join__dues {
  background-color: #316544;
  padding: 1.875rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .join__dues {
    padding: 2.5rem 2.5rem;
  }
}

.join__dues__title {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 900;
  font-family: "Noto Serif JP", sans-serif;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .join__dues__title {
    font-size: 1.5rem;
  }
}

.join__dues__text {
  margin-top: 0.25rem;
  letter-spacing: 0.03em;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  font-family: "Noto Serif JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .join__dues__text {
    font-size: 1.375rem;
  }
}

.join__dues__sub-text {
  text-align: center;
  font-size: 0.625rem;
  font-weight: 500;
  font-family: "Noto Serif JP", sans-serif;
  margin-top: 0.125rem;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .join__dues__sub-text {
    font-size: 0.875rem;
  }
}

.join__dues__due-title {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 900;
  font-family: "Noto Serif JP", sans-serif;
  margin-top: 1.875rem;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .join__dues__due-title {
    font-size: 1.5rem;
  }
}

.join__dues__due-text {
  margin-top: 0.25rem;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  font-family: "Noto Serif JP", sans-serif;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .join__dues__due-text {
    font-size: 1.375rem;
  }
}

.feature {
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .feature {
    margin-top: 6.25rem;
  }
}

.feature__inner {
  max-width: 71.875rem;
}

.feature__list {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.875rem;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .feature__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem;
    margin-top: 3.75rem;
  }
}

.feature__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.625rem 1.25rem 1.5625rem;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
  background-color: #fff;
}

.feature__item__icon {
  width: 60%;
  aspect-ratio: 400/300;
}

.feature__item__icon img {
  -o-object-fit: contain;
     object-fit: contain;
}

.feature__item__title {
  font-size: 1.5rem;
  font-weight: 900;
  font-family: "Noto Serif JP", sans-serif;
  color: #303030;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .feature__item__title {
    font-size: 1.75rem;
  }
}

.feature__item__text {
  margin-top: 0.9375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #303030;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .feature__item__text {
    font-size: 1rem;
  }
}/*# sourceMappingURL=style.css.map */