html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.drawer {
  display: none;
  opacity: 0;
  transition: opacity 250ms ease;
}
.drawer.--on {
  display: block;
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100% - 80px);
  background: rgb(255, 255, 255);
  overflow-x: hidden;
  overflow-y: scroll;
  position: fixed;
}
.drawer.--on.--show {
  opacity: 1;
}
.drawer .drawer__container {
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding: 48px 0;
}
.drawer .drawer__container .main-nav {
  width: 240px;
  margin: 0 auto;
}
.drawer .drawer__container .main-nav .main-nav__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.drawer .drawer__container .main-nav .main-nav__list .main-nav__item .main-nav__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 64px;
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  line-height: 18px;
  transition: all 300ms ease;
  border-radius: 32px;
}
.drawer .drawer__container .main-nav .main-nav__list .main-nav__item .main-nav__link:link, .drawer .drawer__container .main-nav .main-nav__list .main-nav__item .main-nav__link:visited {
  background: rgb(145, 198, 71);
  color: rgb(0, 0, 0);
  text-decoration: none;
}
.drawer .drawer__container .main-nav .main-nav__list .main-nav__item .main-nav__link:hover, .drawer .drawer__container .main-nav .main-nav__list .main-nav__item .main-nav__link:active, .drawer .drawer__container .main-nav .main-nav__list .main-nav__item .main-nav__link:focus {
  background: rgb(62, 136, 53);
  color: rgb(255, 255, 255);
  text-decoration: none;
}
.drawer .drawer__container .main-nav .main-nav__list .main-nav__item .main-nav__span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 64px;
  font-size: 18px;
  font-weight: 800;
  line-height: 18px;
  background: rgba(62, 136, 53, 0.8);
  color: rgb(255, 255, 255);
  border-radius: 32px;
}
.drawer .drawer__container .sns-nav .sns-nav__list {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.drawer .drawer__container .sns-nav .sns-nav__list .sns-nav__item .sns-nav__link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: 94px;
  height: 94px;
  border: solid 1px rgb(190, 190, 190);
  border-radius: 4px;
  transition: all 250ms ease;
}
.drawer .drawer__container .sns-nav .sns-nav__list .sns-nav__item .sns-nav__link .sns-nav__img {
  width: 44px;
  height: 44px;
}
.drawer .drawer__container .sns-nav .sns-nav__list .sns-nav__item .sns-nav__link .sns-nav__label {
  font-size: 13px;
  font-weight: 700;
  line-height: 13px;
  transition: all 250ms ease;
}
.drawer .drawer__container .sns-nav .sns-nav__list .sns-nav__item .sns-nav__link:link, .drawer .drawer__container .sns-nav .sns-nav__list .sns-nav__item .sns-nav__link:visited {
  text-decoration: none;
  background: rgb(255, 255, 255);
}
.drawer .drawer__container .sns-nav .sns-nav__list .sns-nav__item .sns-nav__link:link .sns-nav__label, .drawer .drawer__container .sns-nav .sns-nav__list .sns-nav__item .sns-nav__link:visited .sns-nav__label {
  color: rgb(0, 0, 0);
  text-decoration: none;
}
.drawer .drawer__container .sns-nav .sns-nav__list .sns-nav__item .sns-nav__link:hover, .drawer .drawer__container .sns-nav .sns-nav__list .sns-nav__item .sns-nav__link:active, .drawer .drawer__container .sns-nav .sns-nav__list .sns-nav__item .sns-nav__link:focus {
  text-decoration: none;
  background: rgb(247, 249, 248);
  border-color: rgb(145, 198, 71);
}
.drawer .drawer__container .sns-nav .sns-nav__list .sns-nav__item .sns-nav__link:hover .sns-nav__label, .drawer .drawer__container .sns-nav .sns-nav__list .sns-nav__item .sns-nav__link:active .sns-nav__label, .drawer .drawer__container .sns-nav .sns-nav__list .sns-nav__item .sns-nav__link:focus .sns-nav__label {
  color: rgb(62, 136, 53);
  text-decoration: none;
}
.drawer .drawer__container .contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 320px;
  margin: 0 auto;
}
.drawer .drawer__container .contact .contact__header .contact__heading {
  font-size: 20px;
  line-height: 20px;
  font-weight: 800;
  text-align: center;
}
.drawer .drawer__container .contact .contact__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.drawer .drawer__container .contact .contact__content .contact__title {
  font-size: 16px;
  line-height: 16px;
  font-weight: 800;
  text-align: center;
  font-style: normal;
}
.drawer .drawer__container .contact .contact__content .contact__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.drawer .drawer__container .contact .contact__content .contact__list .contact__item {
  font-size: 14px;
  line-height: 14px;
  font-weight: 500;
  text-align: center;
  font-style: normal;
}
.drawer .drawer__container .contact .contact__content .contact__list .contact__item:last-child {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .drawer.--on {
    display: none;
  }
  .drawer.--on.--show {
    opacity: 0;
    display: none;
  }
}

.header {
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
@media (min-width: 890px) {
  .header {
    height: 120px;
  }
}
.header .header__container {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgb(255, 255, 255);
  padding: 0;
}
.header .header__container .logo {
  margin: 0 0 0 16px;
  line-height: 10px;
}
.header .header__container .logo .logo__link {
  display: block;
  width: 125px;
  height: auto;
}
.header .header__container .logo .logo__link .logo__img {
  width: 125px;
  height: auto;
}
@media (min-width: 890px) {
  .header .header__container .logo {
    margin: 0 0 0 24px;
  }
  .header .header__container .logo .logo__link {
    display: block;
    width: 153px;
    height: auto;
  }
  .header .header__container .logo .logo__link .logo__img {
    width: 153px;
    height: auto;
  }
}
.header .header__container .header__navs {
  width: calc(100% - 153px);
  display: none;
}
@media (min-width: 890px) {
  .header .header__container .header__navs {
    width: calc(100% - 153px);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 24px 0 0;
    gap: 32px;
  }
  .header .header__container .header__navs .main-nav .main-nav__list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 40px;
  }
  .header .header__container .header__navs .main-nav .main-nav__list .main-nav__item .main-nav__span {
    display: block;
    padding: 11px 0 9px 0;
    font-size: 17px;
    font-weight: 700;
    line-height: 17px;
    color: rgb(62, 136, 53);
    border-bottom: solid 3px rgb(255, 255, 255);
  }
  .header .header__container .header__navs .main-nav .main-nav__list .main-nav__item .main-nav__link {
    display: block;
    padding: 11px 0 9px 0;
    font-size: 17px;
    font-weight: 700;
    line-height: 17px;
    transition: all 250ms ease;
  }
  .header .header__container .header__navs .main-nav .main-nav__list .main-nav__item .main-nav__link:link, .header .header__container .header__navs .main-nav .main-nav__list .main-nav__item .main-nav__link:visited {
    color: rgb(0, 0, 0);
    text-decoration: none;
    border-bottom: solid 3px rgb(255, 255, 255);
  }
  .header .header__container .header__navs .main-nav .main-nav__list .main-nav__item .main-nav__link:hover, .header .header__container .header__navs .main-nav .main-nav__list .main-nav__item .main-nav__link:active, .header .header__container .header__navs .main-nav .main-nav__list .main-nav__item .main-nav__link:focus {
    color: rgb(62, 136, 53);
    text-decoration: none;
    border-bottom: solid 3px rgb(145, 198, 71);
  }
  .header .header__container .header__navs .utility-nav .utility-nav__list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 0px;
  }
  .header .header__container .header__navs .utility-nav .utility-nav__list .utility-nav__item {
    margin-top: 1px;
  }
  .header .header__container .header__navs .utility-nav .utility-nav__list .utility-nav__item .utility-nav__link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border-radius: 24px;
    transition: all 250ms ease;
    background: rgb(255, 255, 255);
    border: solid 2px rgb(255, 255, 255);
  }
  .header .header__container .header__navs .utility-nav .utility-nav__list .utility-nav__item .utility-nav__link:hover, .header .header__container .header__navs .utility-nav .utility-nav__list .utility-nav__item .utility-nav__link:active, .header .header__container .header__navs .utility-nav .utility-nav__list .utility-nav__item .utility-nav__link:focus {
    background: rgb(247, 249, 248);
    border: solid 2px rgb(145, 198, 71);
  }
  .header .header__container .header__navs .utility-nav .utility-nav__list .utility-nav__item .utility-nav__link .utility-nav__img {
    width: 26px;
    height: 26px;
  }
}
.header .header__container .header__btns {
  display: flex;
  justify-content: flex-end;
  width: calc(100% - 120px);
  padding-right: 16px;
}
@media (min-width: 890px) {
  .header .header__container .header__btns {
    display: none;
  }
}
.header .header__container .header__btns .drawer-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  outline: none;
  border: none;
  width: 64px;
  height: 64px;
  background: rgb(145, 198, 71);
  border-radius: 4px;
  padding-top: 10px;
}
.header .header__container .header__btns .drawer-btn:hover {
  cursor: pointer;
  background: rgb(62, 136, 53);
}
.header .header__container .header__btns .drawer-btn:hover .drawer-btn__lines .drawer-btn__line {
  background: rgb(255, 255, 255);
}
.header .header__container .header__btns .drawer-btn:hover .drawer-btn__label {
  color: rgb(255, 255, 255);
}
.header .header__container .header__btns .drawer-btn__lines {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  border: none;
  background: transparent;
  padding: 4px 0 0 0;
  width: 32px;
  height: 24px;
  z-index: 1000;
}
.header .header__container .header__btns .drawer-btn__lines:hover {
  background: none;
}
.header .header__container .header__btns .drawer-btn__lines:active {
  background: none;
}
.header .header__container .header__btns .drawer-btn__lines:focus {
  background: none;
}
.header .header__container .header__btns .drawer-btn__lines .drawer-btn__line {
  display: block;
  width: 100%;
  height: 3px;
  background: #000;
  border-radius: 2px;
  transition: 0.3s ease;
  transform-origin: center;
}
.header .header__container .header__btns .drawer-btn__lines .drawer-btn__line:nth-child(1) {
  transform: translateY(0);
}
.header .header__container .header__btns .drawer-btn__lines .drawer-btn__line:nth-child(2) {
  opacity: 1;
}
.header .header__container .header__btns .drawer-btn__lines .drawer-btn__line:nth-child(3) {
  transform: translateY(0);
}
.header .header__container .header__btns .drawer-btn.--close .drawer-btn__lines .drawer-btn__line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}
.header .header__container .header__btns .drawer-btn.--close .drawer-btn__lines .drawer-btn__line:nth-child(2) {
  opacity: 0;
}
.header .header__container .header__btns .drawer-btn.--close .drawer-btn__lines .drawer-btn__line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}
.header .header__container .header__btns .drawer-btn__label {
  font-size: 12px;
  font-weight: 800;
  line-height: 12px;
  letter-spacing: 0.5px;
  font-feature-settings: "palt";
  transition: 0.3s ease;
  color: rgb(0, 0, 0);
}
.header .header__container .header__btns .drawer-btn.--close .drawer-btn__label.--open {
  display: none;
}
.header .header__container .header__btns .drawer-btn.--close .drawer-btn__label.--close {
  display: inline-block;
}
.header .header__container .header__btns .drawer-btn.--open .drawer-btn__label.--open {
  display: inline-block;
}
.header .header__container .header__btns .drawer-btn.--open .drawer-btn__label.--close {
  display: none;
}

.aside .aside__container .sns-nav .sns-nav__list {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.aside .aside__container .sns-nav .sns-nav__list .sns-nav__item .sns-nav__link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: 94px;
  height: 94px;
  border: solid 1px rgb(190, 190, 190);
  border-radius: 4px;
  transition: all 250ms ease;
}
.aside .aside__container .sns-nav .sns-nav__list .sns-nav__item .sns-nav__link .sns-nav__img {
  width: 44px;
  height: 44px;
}
.aside .aside__container .sns-nav .sns-nav__list .sns-nav__item .sns-nav__link .sns-nav__label {
  font-size: 13px;
  font-weight: 700;
  line-height: 13px;
  transition: all 250ms ease;
}
.aside .aside__container .sns-nav .sns-nav__list .sns-nav__item .sns-nav__link:link, .aside .aside__container .sns-nav .sns-nav__list .sns-nav__item .sns-nav__link:visited {
  text-decoration: none;
  background: rgb(255, 255, 255);
}
.aside .aside__container .sns-nav .sns-nav__list .sns-nav__item .sns-nav__link:link .sns-nav__label, .aside .aside__container .sns-nav .sns-nav__list .sns-nav__item .sns-nav__link:visited .sns-nav__label {
  color: rgb(0, 0, 0);
  text-decoration: none;
}
.aside .aside__container .sns-nav .sns-nav__list .sns-nav__item .sns-nav__link:hover, .aside .aside__container .sns-nav .sns-nav__list .sns-nav__item .sns-nav__link:active, .aside .aside__container .sns-nav .sns-nav__list .sns-nav__item .sns-nav__link:focus {
  text-decoration: none;
  background: rgb(247, 249, 248);
  border-color: rgb(145, 198, 71);
}
.aside .aside__container .sns-nav .sns-nav__list .sns-nav__item .sns-nav__link:hover .sns-nav__label, .aside .aside__container .sns-nav .sns-nav__list .sns-nav__item .sns-nav__link:active .sns-nav__label, .aside .aside__container .sns-nav .sns-nav__list .sns-nav__item .sns-nav__link:focus .sns-nav__label {
  color: rgb(62, 136, 53);
  text-decoration: none;
}
@media (min-width: 1024px) {
  .aside .aside__container .sns-nav .sns-nav__list {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
  }
  .aside .aside__container .sns-nav .sns-nav__list .sns-nav__item .sns-nav__link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: 104px;
    height: 104px;
    border: solid 1px rgb(190, 190, 190);
    border-radius: 4px;
    transition: all 250ms ease;
  }
  .aside .aside__container .sns-nav .sns-nav__list .sns-nav__item .sns-nav__link .sns-nav__img {
    width: 44px;
    height: 44px;
  }
  .aside .aside__container .sns-nav .sns-nav__list .sns-nav__item .sns-nav__link .sns-nav__label {
    font-size: 13px;
    font-weight: 700;
    line-height: 13px;
    transition: all 250ms ease;
  }
  .aside .aside__container .sns-nav .sns-nav__list .sns-nav__item .sns-nav__link:link, .aside .aside__container .sns-nav .sns-nav__list .sns-nav__item .sns-nav__link:visited {
    text-decoration: none;
    background: rgb(255, 255, 255);
  }
  .aside .aside__container .sns-nav .sns-nav__list .sns-nav__item .sns-nav__link:link .sns-nav__label, .aside .aside__container .sns-nav .sns-nav__list .sns-nav__item .sns-nav__link:visited .sns-nav__label {
    color: rgb(0, 0, 0);
    text-decoration: none;
  }
  .aside .aside__container .sns-nav .sns-nav__list .sns-nav__item .sns-nav__link:hover, .aside .aside__container .sns-nav .sns-nav__list .sns-nav__item .sns-nav__link:active, .aside .aside__container .sns-nav .sns-nav__list .sns-nav__item .sns-nav__link:focus {
    text-decoration: none;
    background: rgb(247, 249, 248);
    border-color: rgb(145, 198, 71);
  }
  .aside .aside__container .sns-nav .sns-nav__list .sns-nav__item .sns-nav__link:hover .sns-nav__label, .aside .aside__container .sns-nav .sns-nav__list .sns-nav__item .sns-nav__link:active .sns-nav__label, .aside .aside__container .sns-nav .sns-nav__list .sns-nav__item .sns-nav__link:focus .sns-nav__label {
    color: rgb(62, 136, 53);
    text-decoration: none;
  }
}

.footer .footer__container {
  width: 320px;
  margin: 0 auto;
  padding: 96px 0 64px 0;
}
.footer .footer__container .contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer .footer__container .contact .contact__header .contact__heading {
  font-size: 20px;
  line-height: 20px;
  font-weight: 800;
}
.footer .footer__container .contact .contact__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer .footer__container .contact .contact__content .contact__title {
  font-size: 16px;
  line-height: 16px;
  font-weight: 800;
  font-style: normal;
}
.footer .footer__container .contact .contact__content .contact__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer .footer__container .contact .contact__content .contact__list .contact__item {
  font-size: 14px;
  line-height: 14px;
  font-weight: 500;
  font-style: normal;
}
.footer .footer__container .contact .contact__content .contact__list .contact__item:last-child {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .footer .footer__container {
    width: 344px;
    margin: 0 auto;
    padding: 96px 0 64px 0;
  }
  .footer .footer__container .contact {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .footer .footer__container .contact .contact__header .contact__heading {
    font-size: 32px;
    line-height: 32px;
    font-weight: 800;
  }
  .footer .footer__container .contact .contact__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .footer .footer__container .contact .contact__content .contact__title {
    font-size: 24px;
    line-height: 24px;
    font-weight: 800;
  }
  .footer .footer__container .contact .contact__content .contact__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .footer .footer__container .contact .contact__content .contact__list .contact__item {
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
  }
  .footer .footer__container .contact .contact__content .contact__list .contact__item:last-child {
    margin-bottom: 0;
  }
}
.footer .copyright {
  background: rgb(247, 249, 248);
}
.footer .copyright .copyright__text {
  padding: 26px 0;
  text-align: center;
  font-size: 12px;
  line-height: 12px;
  font-weight: 800;
}

.main {
  margin-top: 80px;
}
@media (min-width: 890px) {
  .main {
    margin-top: 120px;
  }
}

.hero {
  width: 100%;
  height: auto;
  background-image: none;
  padding: 32px 0 0 0;
  background: rgb(246, 246, 246);
}
.hero.--election .hero__container {
  padding: 0 0 170px 0;
}
.hero.--election .hero__container .title {
  height: 170px;
}
.hero .hero__container {
  width: 100%;
  position: relative;
  margin: 0;
  padding: 0 0 120px 0;
}
.hero .hero__container .display {
  position: relative;
  width: auto;
  margin: 0 auto -32px auto;
  padding: 0 34px;
  font-size: 10vw;
  line-height: 1.25;
  font-weight: 900;
  font-feature-settings: "palt";
}
.hero .hero__container .title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: rgb(145, 198, 71);
}
.hero .hero__container .title .candidate {
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 24px;
  font-weight: 900;
  margin: 12px 0 16px 0;
  text-align: center;
}
.hero .hero__container .title .name {
  position: relative;
}
.hero .hero__container .title .name .name__kana {
  position: absolute;
  top: 8px;
  left: 0;
  width: 100vw;
  height: 26px;
  display: flex;
  justify-content: center;
  gap: 86px;
  padding: 0px;
}
.hero .hero__container .title .name .name__kana .name__sei {
  font-size: 20px;
  line-height: 20px;
  font-weight: 900;
  display: inline-block;
  margin-left: 1em;
}
.hero .hero__container .title .name .name__kana .name__mei {
  font-size: 20px;
  line-height: 20px;
  font-weight: 900;
}
.hero .hero__container .title .name .name__kanji {
  position: absolute;
  top: 30px;
  left: 0;
  width: 100vw;
  height: 90px;
  text-align: center;
  font-size: 72px;
  line-height: 72px;
  font-weight: 900;
}
.hero .hero__container .hero__main {
  display: block;
  width: calc(100% - 32px);
  height: auto;
  position: relative;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .hero {
    width: 100%;
    height: 750px;
    padding: 0;
    background-image: url("/assets/img/hero_background.jpg");
    background-size: 24px 750px;
  }
  .hero .hero__container {
    width: 1024px;
    height: 100%;
    position: relative;
    margin: 0 auto;
  }
  .hero .hero__container .display {
    position: absolute;
    top: 140px;
    left: 48px;
    width: auto;
    margin: 0;
    padding: 0;
    font-size: 60px;
    line-height: 74px;
    font-weight: 900;
    letter-spacing: 0.5px;
    font-feature-settings: "palt";
  }
  .hero .hero__container .title {
    position: absolute;
    top: 370px;
    left: 48px;
    width: 400px;
    height: 140px;
    background: none;
  }
  .hero .hero__container .title .candidate {
    position: relative;
    display: block;
    font-size: 24px;
    line-height: 24px;
    font-weight: 900;
    margin: 0 0 24px 0;
    text-align: left;
  }
  .hero .hero__container .title .name {
    position: relative;
  }
  .hero .hero__container .title .name .name__kana {
    position: absolute;
    top: 0;
    left: 0;
    width: 400px;
    height: 30px;
    display: flex;
    justify-content: flex-start;
    gap: 96px;
    padding: 0 0 0 32px;
  }
  .hero .hero__container .title .name .name__kana .name__sei {
    font-size: 24px;
    line-height: 24px;
    font-weight: 900;
    display: inline-block;
    margin-left: 1em;
  }
  .hero .hero__container .title .name .name__kana .name__mei {
    font-size: 24px;
    line-height: 24px;
    font-weight: 900;
  }
  .hero .hero__container .title .name .name__kanji {
    position: absolute;
    top: 30px;
    left: 0;
    width: 400px;
    height: 110px;
    font-size: 84px;
    line-height: 84px;
    font-weight: 900;
    text-align: left;
  }
  .hero .hero__container .hero__main {
    display: block;
    width: auto;
    height: 750px;
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
  }
}

.hero.--torikumi {
  width: 100%;
  height: auto;
  background-image: none;
  background: rgb(145, 198, 71);
  padding: 0;
}
.hero.--torikumi .hero__container {
  width: 100%;
  height: auto;
  position: relative;
  margin: 0;
  padding: 0;
  display: block;
}
.hero.--torikumi .hero__container .banner__img {
  width: 100%;
  height: auto;
}
.hero.--torikumi .hero__container .banner__content {
  width: 100%;
  height: auto;
  position: relative;
  padding: 16px 16px 64px 16px;
}
.hero.--torikumi .hero__container .banner__content .banner__heading .banner__sub {
  display: block;
  font-size: 20px;
  line-height: 20px;
  font-weight: 900;
  margin-bottom: 10px;
}
.hero.--torikumi .hero__container .banner__content .banner__heading .banner__main {
  display: block;
  font-size: 32px;
  line-height: 32px;
  font-weight: 900;
}
.hero.--torikumi .hero__container .banner__content .banner__heading .banner__period {
  display: block;
  position: absolute;
  right: -4px;
  bottom: -5px;
  font-size: 48px;
  line-height: 48px;
  font-weight: 900;
  color: rgb(255, 255, 255);
}
@media (min-width: 1024px) {
  .hero.--torikumi {
    width: 100%;
    height: 400px;
    background-image: none;
    background: rgb(145, 198, 71);
  }
  .hero.--torikumi .hero__container {
    width: 1024px;
    height: 100%;
    position: relative;
    margin: 0 auto;
    padding: 0;
    display: flex;
  }
  .hero.--torikumi .hero__container .banner__img {
    width: 50%;
    height: auto;
  }
  .hero.--torikumi .hero__container .banner__content {
    width: 50%;
    height: auto;
    position: relative;
    padding: 0;
  }
  .hero.--torikumi .hero__container .banner__content .banner__heading {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 400px;
  }
  .hero.--torikumi .hero__container .banner__content .banner__heading .banner__sub {
    display: block;
    position: absolute;
    left: 32px;
    top: 136px;
    font-size: 24px;
    line-height: 24px;
    font-weight: 900;
    margin: 0;
  }
  .hero.--torikumi .hero__container .banner__content .banner__heading .banner__main {
    display: block;
    position: absolute;
    left: 32px;
    top: 180px;
    font-size: 48px;
    line-height: 48px;
    font-weight: 900;
  }
  .hero.--torikumi .hero__container .banner__content .banner__heading .banner__period {
    display: block;
    position: absolute;
    right: -4px;
    bottom: -5px;
    font-size: 80px;
    line-height: 80px;
    font-weight: 900;
    color: rgb(255, 255, 255);
  }
}

.hero.--profile {
  width: 100%;
  height: auto;
  background-image: none;
  background: rgb(145, 198, 71);
  padding: 0;
}
.hero.--profile .hero__container {
  width: 100%;
  height: auto;
  position: relative;
  margin: 0 auto;
  display: block;
  padding: 0;
}
.hero.--profile .hero__container .banner__img {
  width: 100%;
  height: auto;
  aspect-ratio: 1024/800;
}
.hero.--profile .hero__container .banner__content {
  width: 100%;
  height: auto;
  position: relative;
  padding: 0 0 24px 0;
}
.hero.--profile .hero__container .banner__content .banner__heading {
  width: 100%;
  height: auto;
  position: relative;
}
.hero.--profile .hero__container .banner__content .banner__heading .name {
  position: relative;
  display: block;
  width: 100%;
  height: 94px;
  margin-bottom: 12px;
}
.hero.--profile .hero__container .banner__content .banner__heading .name .name__kana {
  position: absolute;
  top: 8px;
  left: 0;
  width: 100%;
  height: 16px;
  display: flex;
  justify-content: center;
  gap: 64px;
  padding: 0px;
}
.hero.--profile .hero__container .banner__content .banner__heading .name .name__kana .name__sei {
  font-size: 16px;
  line-height: 16px;
  font-weight: 900;
  display: inline-block;
  margin-left: 1em;
}
.hero.--profile .hero__container .banner__content .banner__heading .name .name__kana .name__mei {
  font-size: 16px;
  line-height: 16px;
  font-weight: 900;
}
.hero.--profile .hero__container .banner__content .banner__heading .name .name__kanji {
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  height: 64px;
  text-align: center;
  font-size: 56px;
  line-height: 56px;
  font-weight: 900;
}
.hero.--profile .hero__container .banner__content .banner__heading .banner__sub {
  display: block;
  text-align: center;
  font-size: 24px;
  line-height: 24px;
  font-weight: 900;
}
@media (min-width: 1024px) {
  .hero.--profile {
    width: 100%;
    height: 640px;
    background-image: none;
    background: rgb(145, 198, 71);
  }
  .hero.--profile .hero__container {
    width: 100%;
    height: 100%;
    position: relative;
    margin: 0 auto;
    display: flex;
  }
  .hero.--profile .hero__container .banner__img {
    width: 50%;
    height: 640px;
    aspect-ratio: 1024/800;
    object-fit: cover;
  }
  .hero.--profile .hero__container .banner__content {
    width: 50%;
    height: auto;
    position: relative;
  }
  .hero.--profile .hero__container .banner__content .banner__heading {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 640px;
  }
  .hero.--profile .hero__container .banner__content .banner__heading .name {
    position: absolute;
    left: 32px;
    top: 236px;
  }
  .hero.--profile .hero__container .banner__content .banner__heading .name .name__kana {
    position: absolute;
    top: 0;
    left: 0;
    width: 400px;
    height: 30px;
    display: flex;
    justify-content: flex-start;
    gap: 98px;
    padding: 0 0 0 26px;
  }
  .hero.--profile .hero__container .banner__content .banner__heading .name .name__kana .name__sei {
    font-size: 24px;
    line-height: 24px;
    font-weight: 900;
  }
  .hero.--profile .hero__container .banner__content .banner__heading .name .name__kana .name__mei {
    font-size: 24px;
    line-height: 24px;
    font-weight: 900;
  }
  .hero.--profile .hero__container .banner__content .banner__heading .name .name__kanji {
    position: absolute;
    top: 30px;
    left: 0;
    width: 400px;
    height: 110px;
    font-size: 84px;
    line-height: 84px;
    font-weight: 900;
    text-align: left;
  }
  .hero.--profile .hero__container .banner__content .banner__heading .banner__sub {
    display: block;
    position: absolute;
    left: 32px;
    top: 380px;
    font-size: 32px;
    line-height: 32px;
    font-weight: 900;
  }
}

.greeting {
  padding: 48px 0;
}
.greeting .greeting__container {
  width: calc(100% - 64px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.greeting .greeting__container .greeting__header .heading {
  font-size: 20px;
  line-height: 32px;
  font-weight: 900;
  color: rgb(62, 136, 53);
}
.greeting .greeting__container .greeting__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.greeting .greeting__container .greeting__content .paragraph {
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
}
.greeting .greeting__container .greeting__footer {
  text-align: right;
}
.greeting .greeting__container .greeting__footer .greeting__img {
  width: 200px;
  height: auto;
}
@media (min-width: 780px) {
  .greeting {
    padding: 96px 0;
  }
  .greeting .greeting__container {
    width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .greeting .greeting__container .greeting__header .heading {
    font-size: 36px;
    line-height: 36px;
    font-weight: 900;
    color: rgb(62, 136, 53);
  }
  .greeting .greeting__container .greeting__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .greeting .greeting__container .greeting__content .paragraph {
    font-size: 18px;
    line-height: 36px;
    font-weight: 500;
  }
  .greeting .greeting__container .greeting__footer {
    text-align: right;
  }
  .greeting .greeting__container .greeting__footer .greeting__img {
    width: 200px;
    height: auto;
  }
}

.photo-line .photo-line__container {
  display: block;
}
.photo-line .photo-line__container .figure {
  width: 100%;
  aspect-ratio: 1440/704;
  position: relative;
}
.photo-line .photo-line__container .figure .figure__img {
  display: block;
  width: 100%;
  height: auto;
}
.photo-line .photo-line__container .figure .figure__figcaption {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 10px 12px;
  border-top-left-radius: 4px;
  background: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 14px;
  font-weight: 700;
}
@media (min-width: 780px) {
  .photo-line .photo-line__container {
    display: flex;
  }
  .photo-line .photo-line__container .figure {
    width: 50%;
    aspect-ratio: 1440/704;
    position: relative;
  }
  .photo-line .photo-line__container .figure .figure__img {
    display: block;
    width: 100%;
    height: auto;
  }
  .photo-line .photo-line__container .figure .figure__figcaption {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 10px 12px;
    border-top-left-radius: 4px;
    background: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 14px;
    font-weight: 700;
  }
}

.banners {
  padding: 96px 0;
}
.banners .banners__container {
  width: calc(100% - 48px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.banners .banner.--torikumi {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.banners .banner.--torikumi .banner__img {
  width: 100%;
  height: auto;
}
.banners .banner.--torikumi .banner__content {
  width: 100%;
  height: auto;
  position: relative;
  background: rgb(240, 240, 240);
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 32px;
  border-bottom-left-radius: 32px;
  text-align: center;
  padding: 0 0 16px 0;
}
.banners .banner.--torikumi .banner__content .banner__heading {
  position: relative;
  width: 100%;
  height: auto;
  background: rgb(145, 198, 71);
  border-radius: 0;
  text-align: left;
  margin-bottom: 16px;
  padding: 16px 16px 48px 16px;
}
.banners .banner.--torikumi .banner__content .banner__heading .banner__sub {
  display: block;
  font-size: 18px;
  line-height: 18px;
  font-weight: 900;
  margin-bottom: 8px;
}
.banners .banner.--torikumi .banner__content .banner__heading .banner__main {
  display: block;
  font-size: 30px;
  line-height: 30px;
  font-weight: 900;
}
.banners .banner.--torikumi .banner__content .banner__heading .banner__period {
  position: absolute;
  display: block;
  bottom: -4px;
  right: -2px;
  font-size: 40px;
  line-height: 40px;
  font-weight: 900;
  color: rgb(240, 240, 240);
}
.banners .banner.--seisaku {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.banners .banner.--seisaku .banner__img {
  width: 100%;
  height: auto;
}
.banners .banner.--seisaku .banner__content {
  width: 100%;
  height: auto;
  position: relative;
  background: rgb(240, 240, 240);
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 32px;
  border-bottom-left-radius: 32px;
  text-align: center;
  padding: 0 0 16px 0;
}
.banners .banner.--seisaku .banner__content .banner__heading {
  position: relative;
  width: 100%;
  height: auto;
  background: rgb(145, 198, 71);
  border-radius: 0;
  text-align: left;
  margin-bottom: 16px;
  padding: 16px 16px 20px 16px;
}
.banners .banner.--seisaku .banner__content .banner__heading .banner__sub {
  display: block;
  font-size: 18px;
  line-height: 18px;
  font-weight: 900;
  margin-top: 12px;
}
.banners .banner.--seisaku .banner__content .banner__heading .banner__main {
  display: block;
  font-size: 30px;
  line-height: 30px;
  font-weight: 900;
}
.banners .banner.--seisaku .banner__content .banner__heading .banner__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 16px;
  bottom: 56px;
  width: 64px;
  height: 64px;
  background: rgb(240, 240, 240);
  border-radius: 32px;
}
.banners .banner.--seisaku .banner__content .banner__heading .banner__icon .icon {
  width: 48px;
  height: 48px;
  color: rgb(62, 136, 53);
}
.banners .banner.--profile {
  display: flex;
  flex-direction: column;
}
.banners .banner.--profile .banner__img {
  width: 100%;
  height: auto;
}
.banners .banner.--profile .banner__content {
  width: 100%;
  height: auto;
  position: relative;
  background: rgb(240, 240, 240);
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 32px;
  border-bottom-left-radius: 32px;
  text-align: center;
  padding: 0 0 16px 0;
}
.banners .banner.--profile .banner__content .banner__heading {
  position: relative;
  width: 100%;
  height: auto;
  background: rgb(145, 198, 71);
  border-radius: 0;
  text-align: left;
  margin-bottom: 16px;
  padding: 12px 16px 16px 16px;
}
.banners .banner.--profile .banner__content .banner__heading .banner__sub {
  display: block;
  font-size: 24px;
  line-height: 24px;
  font-weight: 900;
  text-align: center;
}
.banners .banner.--profile .banner__content .banner__heading .name {
  position: relative;
  display: block;
  width: 100%;
  height: 94px;
  margin-bottom: 6px;
}
.banners .banner.--profile .banner__content .banner__heading .name .name__kana {
  position: absolute;
  top: 8px;
  left: 0;
  width: 100%;
  height: 16px;
  display: flex;
  justify-content: center;
  gap: 64px;
  padding: 0px;
}
.banners .banner.--profile .banner__content .banner__heading .name .name__kana .name__sei {
  font-size: 16px;
  line-height: 16px;
  font-weight: 900;
  display: inline-block;
  margin-left: 1em;
}
.banners .banner.--profile .banner__content .banner__heading .name .name__kana .name__mei {
  font-size: 16px;
  line-height: 16px;
  font-weight: 900;
}
.banners .banner.--profile .banner__content .banner__heading .name .name__kanji {
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  height: 64px;
  text-align: center;
  font-size: 56px;
  line-height: 56px;
  font-weight: 900;
}
.banners .banner.--profile .banner__content .banner__heading .banner__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 64px;
  height: 64px;
  background: rgb(240, 240, 240);
  border-radius: 32px;
}
.banners .banner.--profile .banner__content .banner__heading .banner__icon .icon {
  width: 48px;
  height: 48px;
  color: rgb(62, 136, 53);
}
.banners .banner__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: calc(100% - 32px);
  margin: 0 auto;
  padding: 14px 12px 14px 20px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 800;
  text-align: left;
  transition: all 250ms ease;
  border-radius: 50vh;
}
.banners .banner__btn:link, .banners .banner__btn:visited {
  margin: 0 auto;
  background: rgb(145, 198, 71);
  color: rgb(0, 0, 0);
  text-decoration: none;
}
.banners .banner__btn:hover, .banners .banner__btn:active, .banners .banner__btn:focus {
  margin: 0 auto;
  background: rgb(62, 136, 53);
  color: rgb(255, 255, 255);
  text-decoration: none;
}
.banners .banner__btn .icon {
  width: 24px;
  height: 24px;
}
@media (min-width: 1024px) {
  .banners {
    padding: 128px 0;
  }
  .banners .banners__container {
    width: 1024px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 128px;
  }
  .banners .banner.--torikumi {
    display: flex;
    flex-direction: row;
  }
  .banners .banner.--torikumi .banner__img {
    width: 50%;
    height: auto;
  }
  .banners .banner.--torikumi .banner__content {
    width: 50%;
    height: auto;
    position: relative;
    background: rgb(240, 240, 240);
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 0;
  }
  .banners .banner.--torikumi .banner__content .banner__heading {
    position: absolute;
    top: 80px;
    left: -24px;
    width: 512px;
    height: 215px;
    background: rgb(145, 198, 71);
    border-radius: 16px;
  }
  .banners .banner.--torikumi .banner__content .banner__heading .banner__sub {
    display: block;
    position: absolute;
    left: 32px;
    top: 54px;
    font-size: 24px;
    line-height: 24px;
    font-weight: 900;
    margin: 0;
  }
  .banners .banner.--torikumi .banner__content .banner__heading .banner__main {
    display: block;
    position: absolute;
    left: 32px;
    top: 92px;
    font-size: 40px;
    line-height: 40px;
    font-weight: 900;
  }
  .banners .banner.--torikumi .banner__content .banner__heading .banner__period {
    display: block;
    position: absolute;
    right: -4px;
    bottom: -5px;
    font-size: 64px;
    line-height: 64px;
    font-weight: 900;
    color: rgb(240, 240, 240);
  }
  .banners .banner.--seisaku {
    display: flex;
    flex-direction: row;
  }
  .banners .banner.--seisaku .banner__img {
    width: 50%;
    height: auto;
  }
  .banners .banner.--seisaku .banner__content {
    width: 50%;
    height: auto;
    position: relative;
    background: rgb(240, 240, 240);
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 0;
  }
  .banners .banner.--seisaku .banner__content .banner__heading {
    position: absolute;
    top: 76px;
    left: -24px;
    width: 512px;
    height: 215px;
    background: rgb(145, 198, 71);
    border-radius: 16px;
  }
  .banners .banner.--seisaku .banner__content .banner__heading .banner__sub {
    font-size: 24px;
    line-height: 24px;
    font-weight: 900;
    margin: 16px 0 0 0;
  }
  .banners .banner.--seisaku .banner__content .banner__heading .banner__main {
    display: block;
    position: absolute;
    left: 32px;
    top: 80px;
    font-size: 40px;
    line-height: 40px;
    font-weight: 900;
    margin: 0;
  }
  .banners .banner.--seisaku .banner__content .banner__heading .banner__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 16px;
    bottom: 16px;
    width: 64px;
    height: 64px;
    background: rgb(240, 240, 240);
    border-radius: 32px;
  }
  .banners .banner.--seisaku .banner__content .banner__heading .banner__icon .icon {
    width: 48px;
    height: 48px;
    color: rgb(62, 136, 53);
  }
  .banners .banner.--profile {
    display: flex;
    flex-direction: row;
  }
  .banners .banner.--profile .banner__img {
    width: 50%;
    height: auto;
  }
  .banners .banner.--profile .banner__content {
    width: 50%;
    height: auto;
    position: relative;
    background: rgb(240, 240, 240);
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 0;
  }
  .banners .banner.--profile .banner__content .banner__heading {
    position: absolute;
    top: 80px;
    left: -24px;
    width: 512px;
    height: 215px;
    background: rgb(145, 198, 71);
    border-radius: 16px;
  }
  .banners .banner.--profile .banner__content .banner__heading .banner__sub {
    display: block;
    position: absolute;
    left: 32px;
    top: 148px;
    font-size: 32px;
    line-height: 32px;
    font-weight: 900;
  }
  .banners .banner.--profile .banner__content .banner__heading .name {
    position: absolute;
    left: 32px;
    top: 32px;
    width: auto;
  }
  .banners .banner.--profile .banner__content .banner__heading .name .name__kana {
    position: absolute;
    top: 0;
    left: 0;
    width: 400px;
    height: 30px;
    display: flex;
    justify-content: flex-start;
    gap: 66px;
    padding: 0 0 0 20px;
  }
  .banners .banner.--profile .banner__content .banner__heading .name .name__kana .name__sei {
    font-size: 20px;
    line-height: 20px;
    font-weight: 900;
  }
  .banners .banner.--profile .banner__content .banner__heading .name .name__kana .name__mei {
    font-size: 20px;
    line-height: 20px;
    font-weight: 900;
  }
  .banners .banner.--profile .banner__content .banner__heading .name .name__kanji {
    position: absolute;
    top: 30px;
    left: 0;
    width: 400px;
    height: 110px;
    font-size: 64px;
    line-height: 64px;
    font-weight: 900;
    text-align: left;
  }
  .banners .banner.--profile .banner__content .banner__heading .banner__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 16px;
    bottom: 16px;
    width: 64px;
    height: 64px;
    background: rgb(240, 240, 240);
    border-radius: 32px;
  }
  .banners .banner.--profile .banner__content .banner__heading .banner__icon .icon {
    width: 48px;
    height: 48px;
    color: rgb(62, 136, 53);
  }
  .banners .banner__btn {
    position: absolute;
    right: 24px;
    bottom: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 14px 16px 14px 24px;
    width: auto;
    font-size: 18px;
    line-height: 18px;
    font-weight: 800;
    transition: all 250ms ease;
    border-radius: 50vh;
  }
  .banners .banner__btn:link, .banners .banner__btn:visited {
    margin: 0;
    background: rgb(145, 198, 71);
    color: rgb(0, 0, 0);
    text-decoration: none;
  }
  .banners .banner__btn:hover, .banners .banner__btn:active, .banners .banner__btn:focus {
    margin: 0;
    background: rgb(62, 136, 53);
    color: rgb(255, 255, 255);
    text-decoration: none;
  }
  .banners .banner__btn .icon {
    width: 24px;
    height: 24px;
  }
}

.breadcrumbs .breadcrumbs__container {
  padding: 6px 20px;
  background: rgb(247, 249, 248);
}
.breadcrumbs .breadcrumbs__container .breadcrumbs__list {
  list-style: none;
  display: flex;
  align-items: center;
}
.breadcrumbs .breadcrumbs__container .breadcrumbs__list .breadcrumbs__item {
  display: flex;
  align-items: center;
}
.breadcrumbs .breadcrumbs__container .breadcrumbs__list .breadcrumbs__item .breadcrumbs__link {
  font-size: 14px;
  line-height: 14px;
  font-weight: 600;
  display: inline-block;
  padding: 5px 2px 4px 2px;
  transition: all 250ms ease;
}
.breadcrumbs .breadcrumbs__container .breadcrumbs__list .breadcrumbs__item .breadcrumbs__link:link, .breadcrumbs .breadcrumbs__container .breadcrumbs__list .breadcrumbs__item .breadcrumbs__link:visited {
  text-decoration: none;
  color: rgb(0, 0, 0);
  border-bottom: solid 2px rgb(247, 249, 248);
}
.breadcrumbs .breadcrumbs__container .breadcrumbs__list .breadcrumbs__item .breadcrumbs__link:hover, .breadcrumbs .breadcrumbs__container .breadcrumbs__list .breadcrumbs__item .breadcrumbs__link:active, .breadcrumbs .breadcrumbs__container .breadcrumbs__list .breadcrumbs__item .breadcrumbs__link:focus {
  text-decoration: none;
  color: rgb(62, 136, 53);
  border-bottom: solid 2px rgb(145, 198, 71);
}
.breadcrumbs .breadcrumbs__container .breadcrumbs__list .breadcrumbs__item .breadcrumbs__span {
  font-size: 14px;
  line-height: 14px;
  font-weight: 800;
  display: inline-block;
  padding: 5px 2px 4px 2px;
  color: rgb(62, 136, 53);
  border-bottom: solid 2px rgb(247, 249, 248);
}
.breadcrumbs .breadcrumbs__container .breadcrumbs__list .breadcrumbs__item .icon {
  width: 20px;
  height: 20px;
}

.section.--torikumi {
  padding: 48px 0 96px 0;
}
.section.--torikumi .section__container {
  width: calc(100% - 64px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.section.--torikumi .section__container .clause {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.section.--torikumi .section__container .clause .heading {
  font-size: 20px;
  line-height: 32px;
  font-weight: 900;
  color: rgb(62, 136, 53);
}
.section.--torikumi .section__container .clause .paragraph {
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
}
.section.--torikumi .section__container .clause .paragraph strong {
  font-weight: 800;
  color: rgb(62, 136, 53);
}
@media (min-width: 780px) {
  .section.--torikumi {
    padding: 120px 0;
  }
  .section.--torikumi .section__container {
    width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 64px;
  }
  .section.--torikumi .section__container .clause {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .section.--torikumi .section__container .clause .heading {
    font-size: 32px;
    line-height: 32px;
    font-weight: 900;
    color: rgb(62, 136, 53);
  }
  .section.--torikumi .section__container .clause .paragraph {
    font-size: 18px;
    line-height: 36px;
    font-weight: 500;
  }
}

.section.--profile {
  padding: 48px 0 0 0;
}
.section.--profile .section__container {
  width: calc(100% - 64px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section.--profile .section__container .heading {
  font-size: 20px;
  line-height: 32px;
  font-weight: 900;
  color: rgb(62, 136, 53);
}
.section.--profile .section__container .list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.section.--profile .section__container .list .item {
  display: flex;
  gap: 12px;
}
.section.--profile .section__container .list .item .title {
  font-size: 16px;
  line-height: 32px;
  font-weight: 600;
}
.section.--profile .section__container .list .item .paragraph {
  font-size: 16px;
  line-height: 32px;
  font-weight: 600;
}
@media (min-width: 780px) {
  .section.--profile {
    padding: 120px 0 0 0;
  }
  .section.--profile .section__container {
    width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .section.--profile .section__container .heading {
    font-size: 32px;
    line-height: 32px;
    font-weight: 900;
    color: rgb(62, 136, 53);
  }
  .section.--profile .section__container .list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .section.--profile .section__container .list .item {
    display: flex;
    gap: 12px;
  }
  .section.--profile .section__container .list .item .title {
    font-size: 18px;
    line-height: 32px;
    font-weight: 600;
  }
  .section.--profile .section__container .list .item .paragraph {
    font-size: 18px;
    line-height: 32px;
    font-weight: 600;
  }
}

.section.--history {
  padding: 48px 0 96px 0;
}
.section.--history .section__container {
  width: calc(100% - 64px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section.--history .section__container .heading {
  font-size: 20px;
  line-height: 32px;
  font-weight: 900;
  color: rgb(62, 136, 53);
}
.section.--history .section__container .figures {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.section.--history .section__container .figures .figure {
  margin-bottom: 16px;
}
.section.--history .section__container .figures .figure.--A01 {
  width: calc(50% - 8px);
  height: auto;
  aspect-ratio: 244/380;
}
.section.--history .section__container .figures .figure.--A01 .figure__img {
  width: 100%;
  height: auto;
}
.section.--history .section__container .figures .figure.--B01 {
  width: 100%;
  height: auto;
  aspect-ratio: 512/380;
}
.section.--history .section__container .figures .figure.--B01 .figure__img {
  width: 100%;
  height: auto;
}
.section.--history .section__container .figures .figure.--C01, .section.--history .section__container .figures .figure.--C02 {
  width: 100%;
  height: auto;
  aspect-ratio: 378/380;
}
.section.--history .section__container .figures .figure.--C01 .figure__img, .section.--history .section__container .figures .figure.--C02 .figure__img {
  width: 100%;
  height: auto;
}
.section.--history .section__container .figures .figure.--C01 {
  aspect-ratio: 378/360;
  margin-bottom: -12px;
}
.section.--history .section__container .figures .figure.--C01 .figure__caption {
  display: none;
}
.section.--history .section__container .figures .figure .figure__caption {
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
}
@media (min-width: 780px) {
  .section.--history {
    padding: 120px 0;
  }
  .section.--history .section__container {
    width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .section.--history .section__container .heading {
    font-size: 32px;
    line-height: 32px;
    font-weight: 900;
    color: rgb(62, 136, 53);
  }
  .section.--history .section__container .figures {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }
  .section.--history .section__container .figures .figure {
    margin-bottom: 16px;
  }
  .section.--history .section__container .figures .figure.--A01 {
    width: 244px;
    height: auto;
  }
  .section.--history .section__container .figures .figure.--B01 {
    width: 512px;
    height: auto;
  }
  .section.--history .section__container .figures .figure.--C01 {
    aspect-ratio: 378/380;
    width: 378px;
    height: auto;
  }
  .section.--history .section__container .figures .figure.--C01 .figure__caption {
    display: block;
  }
  .section.--history .section__container .figures .figure.--C02 {
    aspect-ratio: 378/360;
    width: 378px;
    height: auto;
  }
  .section.--history .section__container .figures .figure.--C02 .figure__caption {
    display: none;
  }
  .section.--history .section__container .figures .figure .figure__caption {
    font-size: 16px;
    line-height: 16px;
    font-weight: 700;
  }
}
/*# sourceMappingURL=style.css.map */
