/*======================================
    Font size
======================================*/
/*======================================
    media
======================================*/
/*======================================
    color
======================================*/
/*======================================
    font
======================================*/
/*======================================
    animation
======================================*/
@keyframes fadeInUp {
  0% {
    transform: translateY(1.875rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.fadeInUp {
  transform: translateY(1.875rem);
  opacity: 0;
}
.fadeInUp.trigger {
  animation: fadeInUp 0.5s ease-in forwards;
}

@keyframes lowerLeft {
  0% {
    transform: translate(-1.875rem, 1.875rem);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
.lowerLeft {
  transform: translate(-1.875rem, 1.875rem);
  opacity: 0;
}
.lowerLeft.trigger {
  animation: lowerLeft 0.5s ease-in forwards;
}

@keyframes scroll {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    transform: translateY(0.625rem);
  }
  100% {
    opacity: 0;
  }
}
.scroll {
  opacity: 0;
}
.scroll.trigger {
  animation: scroll 2s infinite;
}

/*======================================
    common
======================================*/
html {
  font-size: 0.8rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #231815;
}
@media screen and (min-width: 768px) and (max-width: 1399px) {
  html {
    font-size: 1.1428571429vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 1rem;
  }
}

body {
  background-color: #fff;
}

img {
  width: 100%;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  cursor: pointer;
}

:root {
  interpolate-size: allow-keywords;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
button {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: none;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

@media screen and (max-width: 767px) {
  br.is_pc {
    display: none;
  }
}

br.is_tb {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 1399px) {
  br.is_tb {
    display: block;
  }
}

br.is_sp {
  display: none;
}
@media screen and (max-width: 767px) {
  br.is_sp {
    display: block;
  }
}

/*======================================
    layout
======================================*/
.container {
  overflow: hidden;
}

.inner {
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
  width: 89.33%;
}

.bg_main {
  background-color: #008e44;
  overflow: hidden;
}

.bg_wave {
  position: relative;
  z-index: 2;
  background-color: #e3fbe1;
  margin: 12.5rem 0;
}
@media screen and (max-width: 767px) {
  .bg_wave {
    margin: 2.4375rem 0;
  }
}
.bg_wave::before, .bg_wave::after {
  content: "";
  position: absolute;
  left: 50%;
  height: 30rem;
  width: 100%;
  z-index: -1;
  background-repeat: repeat-x;
  background-size: 144rem 30rem;
  background-position: center bottom;
}
@media screen and (max-width: 767px) {
  .bg_wave::before, .bg_wave::after {
    height: 4.875rem;
    background-size: 23.4375rem 4.9375rem;
  }
}
.bg_wave::before {
  top: 0;
  background-image: url(../img/wave_top.svg);
  transform: translate(-50%, -15rem);
}
@media screen and (max-width: 767px) {
  .bg_wave::before {
    transform: translate(-50%, -2.4375rem);
  }
}
.bg_wave::after {
  bottom: 0;
  background-image: url(../img/wave_bottom.svg);
  transform: translate(-50%, 15rem);
}
@media screen and (max-width: 767px) {
  .bg_wave::after {
    transform: translate(-50%, 2.4375rem);
  }
}

/*======================================
    section
======================================*/
.section_title {
  font-size: 2.625rem;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.195em;
  font-feature-settings: "palt";
  line-height: 1.7380952381;
}
@media screen and (max-width: 767px) {
  .section_title {
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: 0.045em;
    font-feature-settings: unset;
  }
}

/*======================================
    button
======================================*/
.button_fixed {
  position: fixed;
  right: 0;
  background-color: #fff;
  color: #008e44;
  display: block;
  width: 7.125rem;
  height: 11.125rem;
  z-index: 600;
  border-radius: 0.6875rem 0 0 0.6875rem;
  filter: drop-shadow(0.4375rem 0.4375rem 0.3125rem rgba(0, 0, 0, 0.4));
  padding: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .button_fixed {
    top: 9.375rem;
  }
}
@media screen and (max-width: 767px) {
  .button_fixed {
    width: 4.125rem;
    height: 6.375rem;
    bottom: 9.75rem;
    padding: 0.5rem 0.5rem 0.25rem;
    border-radius: 0.375rem 0 0 0.375rem;
  }
}
.button_fixed:hover {
  filter: brightness(1.1) drop-shadow(0.4375rem 0.4375rem 0.3125rem rgba(0, 0, 0, 0.4));
}
.button_fixed:hover .arrow {
  transform: translateX(0.375rem);
}
.button_fixed .sm {
  display: block;
  font-size: 0.4375rem;
  font-weight: 700;
  line-height: 1.4285714286;
}
@media screen and (max-width: 767px) {
  .button_fixed .sm {
    font-size: 0.25rem;
  }
}
.button_fixed .logo {
  display: block;
  max-width: 5.25rem;
  margin-top: 0.25rem;
}
@media screen and (max-width: 767px) {
  .button_fixed .logo {
    max-width: 3rem;
  }
}
.button_fixed .arrow {
  display: block;
  margin-top: -0.125rem;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .button_fixed .arrow {
    margin-top: -0.3125rem;
  }
}

.page_top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 0.1875rem solid #008e44;
  color: #008e44;
  background-color: #fff;
  filter: drop-shadow(0.4375rem 0.4375rem 0.3125rem rgba(0, 0, 0, 0.4));
  position: fixed;
  bottom: 2.5rem;
  right: 1.5rem;
  padding-top: 1rem;
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  transition: filter 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}
.page_top.active {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 767px) {
  .page_top {
    right: 0.875rem;
    bottom: 5.25rem;
    width: 3.25rem;
    border-width: 0.125rem;
    padding-top: 0.625rem;
  }
}
.page_top:hover, .page_top:focus {
  filter: brightness(1.1) drop-shadow(0.4375rem 0.4375rem 0.3125rem rgba(0, 0, 0, 0.4));
}
.page_top::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -200%);
  aspect-ratio: 25/10;
  background: url(../img/arrow_page-top.svg) no-repeat center/contain;
  width: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .page_top::before {
    width: 1.125rem;
  }
}
.page_top .text {
  display: block;
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 700;
  font-feature-settings: "palt";
  letter-spacing: 0.08em;
  line-height: 1.1818181818;
}
@media screen and (max-width: 767px) {
  .page_top .text {
    font-size: 0.5rem;
  }
}

/*======================================
    swiper
======================================*/
.swiper {
  overflow: visible;
}

.c-swiper_pagination {
  display: flex;
  align-items: center;
  column-gap: 0.625rem;
  width: 100%;
  max-width: 14.375rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .c-swiper_pagination {
    display: none;
  }
}
.c-swiper_pagination .swiper-pagination-bullet {
  border-radius: 0;
  display: block;
  margin: 0 !important;
  flex: 1;
  height: 1px;
  background-color: #008e44;
  opacity: 1;
}
.c-swiper_pagination .swiper-pagination-bullet-active {
  height: 0.25rem;
}

.c-swiper_prev,
.c-swiper_next {
  aspect-ratio: 1/1;
  background: url(../img/swiper_nav_next.svg) no-repeat center/contain;
  width: 2.1875rem;
  position: absolute;
  top: calc(50% - 3.125rem);
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .c-swiper_prev,
  .c-swiper_next {
    display: none;
  }
}
.c-swiper_prev.swiper-button-disabled,
.c-swiper_next.swiper-button-disabled {
  opacity: 0;
  visibility: hidden;
}

.c-swiper_next {
  right: 0;
  transform: translate(25%, -100%);
}

.c-swiper_prev {
  left: 0;
  transform: translate(-25%, -100%) scale(-1, 1);
}

/*======================================
    modal
======================================*/
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  padding: 2.5rem 1.25rem;
  text-align: center;
  overflow: auto;
  background-color: rgba(255, 255, 255, 0);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media screen and (max-width: 767px) {
  .modal {
    padding: 1.25rem 0.625rem;
  }
}
.modal.-white .modal_body {
  background-color: rgba(255, 255, 255, 0.95);
  color: #008e44;
}
.modal.-white .modal_close .bar {
  background-color: #008e44;
}
.modal.active {
  opacity: 1;
  visibility: visible;
}
.modal::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.modal_body {
  width: 95%;
  max-width: 42.25rem;
  display: inline-block;
  vertical-align: middle;
  border-radius: 2.375rem;
  background-color: rgba(0, 142, 68, 0.95);
  padding: 3.125rem 3rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .modal_body {
    padding: 1.875rem 1.25rem;
    border-radius: 1.625rem;
  }
}

.modal_close {
  display: block;
  cursor: pointer;
  position: relative;
  aspect-ratio: 1/1;
  width: 4.6875rem;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .modal_close {
    margin-bottom: 0.625rem;
    width: 3.125rem;
  }
}
.modal_close .bar {
  width: 100%;
  display: block;
  height: 2px;
  background-color: #fff;
  top: 50%;
  left: 50%;
  position: absolute;
}
.modal_close .bar.bar1 {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal_close .bar.bar2 {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal_contents {
  text-align: left;
}

.modal_open {
  cursor: pointer;
}

.header {
  height: 5.75rem;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 300;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .header {
    height: 2.5rem;
  }
}

.header_head {
  display: flex;
  align-items: center;
  column-gap: 1.875rem;
  margin-left: 1.125rem;
  width: 20%;
}
@media screen and (max-width: 767px) {
  .header_head {
    width: 100%;
    column-gap: 0.875rem;
    margin-left: 0;
  }
}

.header_logo {
  max-width: 25.375rem;
}
@media screen and (max-width: 767px) {
  .header_logo {
    max-width: 12.875rem;
  }
}
.header_logo a {
  display: block;
}

.header_head_text {
  font-size: 1.1875rem;
  font-weight: 500;
  font-feature-settings: "palt";
  letter-spacing: 0.135em;
  line-height: 1.6842105263;
}
@media screen and (min-width: 768px) and (max-width: 1599px) {
  .header_head_text {
    font-size: 1rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1499px) {
  .header_head_text br.is_tb {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .header_head_text {
    font-size: 0.6875rem;
  }
}

.header_nav {
  display: flex;
  column-gap: 1.5rem;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .header_nav {
    position: fixed;
    top: 2.875rem;
    right: 6.625rem;
    transform: translateY(-50%);
    z-index: 300;
  }
}
@media screen and (max-width: 767px) {
  .header_nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 20.9375rem;
    column-gap: 0.3125rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    z-index: 600;
    transition: all 0.3s ease;
  }
  .header_nav.active {
    max-width: 100%;
  }
  .header_nav.active .header_nav_link {
    background-image: linear-gradient(130deg, #ffd500, #ffd500 35%, #b6be0c 69%, #5aa11b 92%, #00852a 100%);
    font-size: 0.875rem;
    line-height: 1.2857142857;
    text-align: center;
    height: 100%;
    min-height: 4.25rem;
    border-radius: 0.3125rem;
    aspect-ratio: unset;
    text-align: center;
    padding: 0;
    justify-content: center;
  }
}

.header_nav_link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #008e44;
  background: url(../img/header_link.svg) no-repeat center/contain;
  font-weight: 700;
  letter-spacing: 0.043em;
  font-feature-settings: "palt";
  line-height: 1.625;
  position: relative;
  transition: filter 0.3s ease;
}
@media screen and (min-width: 768px) {
  .header_nav_link {
    width: 12.25rem;
    aspect-ratio: 196/48;
  }
}
@media screen and (max-width: 767px) {
  .header_nav_link {
    font-size: 0.625rem;
    line-height: 1.5;
    aspect-ratio: 80/48;
    background: url(../img/header_nav_sp.svg) no-repeat center/contain;
    text-align: left;
    justify-content: start;
    padding: 0 0.5rem;
  }
}
.header_nav_link:hover, .header_nav_link:focus {
  filter: brightness(1.1);
}
@media screen and (min-width: 768px) {
  .header_nav_link:hover::before, .header_nav_link:focus::before {
    transform: translate(0.375rem, -50%);
  }
}
@media screen and (max-width: 767px) {
  .header_nav_link:hover::before, .header_nav_link:focus::before {
    transform: translateX(0.25rem);
  }
}
.header_nav_link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  aspect-ratio: 1/1;
  width: 0.625rem;
  background: url(../img/arrow_yellow.svg) no-repeat center/contain;
  transition: transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .header_nav_link::before {
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 767px) {
  .header_nav_link::before {
    width: 0.625rem;
    top: unset;
    bottom: 0.375rem;
    right: 0.375rem;
  }
}

.header_button {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 500;
  display: block;
  width: 4.875rem;
  align-self: start;
  color: #fff;
  cursor: pointer;
  border-left: 1px solid #ccc;
}
@media screen and (min-width: 768px) {
  .header_button {
    height: 5.75rem;
  }
}
@media screen and (max-width: 767px) {
  .header_button {
    width: 2.5rem;
    aspect-ratio: 1/1;
  }
}
.header_button.active .bar.bar1, .header_button.active .bar.bar3 {
  transform: translate(-50%, -50%) rotate(25deg);
}
.header_button.active .bar.bar2 {
  transform: translate(-50%, -50%) rotate(-25deg);
}
.header_button .bar {
  width: 2.5rem;
  height: 2px;
  background-color: #008e44;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .header_button .bar {
    width: 1.25rem;
  }
}
.header_button .bar.bar1 {
  transform: translate(-50%, -0.75rem);
}
@media screen and (max-width: 767px) {
  .header_button .bar.bar1 {
    transform: translate(-50%, -0.375rem);
  }
}
.header_button .bar.bar2 {
  transform: translate(-50%, 0rem);
}
@media screen and (max-width: 767px) {
  .header_button .bar.bar2 {
    transform: translate(-50%, 0rem);
  }
}
.header_button .bar.bar3 {
  transform: translate(-50%, 0.75rem);
}
@media screen and (max-width: 767px) {
  .header_button .bar.bar3 {
    transform: translate(-50%, 0.375rem);
  }
}

/*======================================
    drawer
======================================*/
.drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  background-color: rgba(0, 142, 68, 0.9);
  padding: 9.5rem 2.5rem 3.75rem;
  text-align: center;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media screen and (max-width: 767px) {
  .drawer {
    padding: 5rem 1.5rem 6.25rem;
  }
}
.drawer.active {
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 768px) {
  .drawer::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
  }
}

.drawer_body {
  width: 90%;
  max-width: 65rem;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .drawer_body {
    vertical-align: middle;
  }
}
@media screen and (max-width: 767px) {
  .drawer_body {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

.drawer_contents {
  text-align: left;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .drawer_contents {
    display: flex;
    flex-direction: column-reverse;
    height: 100%;
    row-gap: 4.375rem;
  }
}

.drawer_head {
  display: flex;
  align-items: center;
  column-gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .drawer_head {
    flex-direction: column;
    align-items: start;
    margin-top: auto;
  }
}

.drawer_logo {
  display: block;
  max-width: 21.25rem;
}
@media screen and (max-width: 767px) {
  .drawer_logo {
    max-width: 13rem;
  }
}

@media screen and (max-width: 767px) {
  .drawer_head_text {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.135em;
    font-feature-settings: "palt";
    line-height: 1.5;
    margin-top: 0.625rem;
    padding-right: 4.375rem;
  }
}

.drawer_columns {
  margin-top: 3.75rem;
  display: grid;
  grid-template-columns: auto 23.875rem;
  column-gap: 4.625rem;
}
@media screen and (max-width: 767px) {
  .drawer_columns {
    display: block;
    margin-top: 0;
  }
}

.drawer_link {
  border-bottom: 1px solid #fff;
}
.drawer_link:first-child {
  border-top: 1px solid #fff;
}
.drawer_link a {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  display: flex;
  align-items: center;
  padding: 0.625rem 2.5rem 0.625rem 0;
  min-height: 4.25rem;
  position: relative;
  transition: opacity 0.3s ease;
}
.drawer_link a:hover, .drawer_link a:focus {
  opacity: 0.7;
}
.drawer_link a:hover::before, .drawer_link a:focus::before {
  transform: translate(0.375rem, -50%);
}
@media screen and (max-width: 767px) {
  .drawer_link a:hover::before, .drawer_link a:focus::before {
    transform: translate(0.25rem, -50%);
  }
}
@media screen and (max-width: 767px) {
  .drawer_link a {
    font-size: 1rem;
    min-height: 2.875rem;
    padding: 0.625rem 1.25rem 0.625rem 0;
    line-height: 1.5;
  }
}
.drawer_link a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  aspect-ratio: 1/1;
  width: 0.75rem;
  transform: translateY(-50%);
  background: url(../img/arrow_white.svg) no-repeat center/contain;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .drawer_link a::before {
    width: 0.5rem;
  }
}

.drawer_sites {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  row-gap: 2.25rem;
}
@media screen and (max-width: 767px) {
  .drawer_sites {
    display: none;
  }
}

.drawer_site_link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  aspect-ratio: 286/84;
  height: 5.25rem;
  color: #008e44;
  background: url(../img/drawer_nav.svg) no-repeat center/contain;
  filter: drop-shadow(0.625rem 0.625rem 0.625rem rgba(0, 0, 0, 0.45));
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.085em;
  line-height: 1.8888888889;
  padding-left: 1.25rem;
  position: relative;
}
.drawer_site_link:hover, .drawer_site_link:focus {
  filter: brightness(1.1) drop-shadow(0.625rem 0.625rem 0.625rem rgba(0, 0, 0, 0.45));
}
.drawer_site_link:hover::before, .drawer_site_link:focus::before {
  transform: translate(0.375rem, -50%);
}
.drawer_site_link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.5rem;
  aspect-ratio: 1/1;
  width: 1.3125rem;
  background: url(../img/arrow_yellow.svg) no-repeat center/contain;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
.drawer_site_link .lg {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.3076923077;
}

.footer {
  padding: 6.875rem 0 5rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 5rem 0;
  }
}

.footer_sns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 3.375rem;
}
@media screen and (max-width: 767px) {
  .footer_sns {
    column-gap: 1.5rem;
  }
}

.footer_sns_item {
  width: 3.875rem;
}
.footer_sns_item a {
  display: block;
  transition: opacity 0.3s ease;
}
.footer_sns_item a:hover, .footer_sns_item a:focus {
  opacity: 0.7;
}

.footer_copy {
  font-size: 2.5rem;
  font-weight: 500;
  text-align: center;
  font-feature-settings: "palt";
  margin-top: 5.375rem;
}
.footer_copy img {
  height: 1em;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .footer_copy {
    font-size: 1rem;
    margin-top: 2.5rem;
  }
}

.footer_logo {
  display: block;
  max-width: 17.75rem;
  margin: 3.125rem auto 3.75rem;
}
@media screen and (max-width: 767px) {
  .footer_logo {
    max-width: 14.5rem;
    margin: 1.875rem auto 2.5rem;
  }
}

.footer_corporate {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.121em;
  font-feature-settings: "palt";
  line-height: 1.7272727273;
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 3.125rem auto 1.625rem;
  color: #008e44;
  padding-bottom: 0.25rem;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .footer_corporate {
    text-align: center;
  }
}
.footer_corporate .underline {
  padding-bottom: 0.375rem;
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) calc(100% - 1px), #008e44 calc(100% - 1px), #008e44 100%);
}
.footer_corporate:hover, .footer_corporate:focus {
  opacity: 0.7;
}

.footer_copyright {
  text-align: center;
  color: #008e44;
}
.footer_copyright.-policy {
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .footer_copyright {
    margin: 3.25rem calc(50% - 50vw) 0;
  }
}
.footer_copyright small {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.121em;
  font-feature-settings: "palt";
  line-height: 1.7692307692;
}
.footer_copyright small a {
  font-weight: inherit;
}
@media screen and (max-width: 767px) {
  .footer_copyright small {
    font-size: 0.6875rem;
    white-space: nowrap;
    letter-spacing: 0.06em;
  }
}

.t-fv {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.t-fv_gorilla {
  position: absolute;
  z-index: -1;
  width: 90.75rem;
  bottom: 0;
  left: 50%;
  transform: translate(-67%, -2%);
}
@media screen and (min-width: 1536px) {
  .t-fv_gorilla {
    left: 0;
    transform: translate(-1px, -2%);
  }
}
@media screen and (max-width: 767px) {
  .t-fv_gorilla {
    width: 40.75rem;
    transform: translate(-36%, -2%);
  }
}
@media screen and (min-width: 460px) and (max-width: 767px) {
  .t-fv_gorilla {
    left: 0;
    transform: translate(-1px, -2%);
  }
}

.t-fv_inner {
  min-height: 60.875rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .t-fv_inner {
    min-height: 35rem;
    max-width: 21.25rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.t-fv_lead {
  font-size: 3.9375rem;
  width: fit-content;
  margin-left: auto;
  grid-column: 1/3;
  grid-row: 1/2;
  align-self: flex-end;
  transform: translateY(-83%);
}
.t-fv_lead img {
  height: 1em;
  object-fit: contain;
  object-position: center left;
}
@media screen and (max-width: 767px) {
  .t-fv_lead {
    font-size: 3rem;
    margin-right: auto;
    align-self: start;
    margin-top: 1.625rem;
    transform: translateY(0);
  }
  .t-fv_lead img {
    height: 2em;
  }
}

.t-fv_share {
  width: 21rem;
  grid-column: 2/3;
  grid-row: 2/3;
  transform: translate(18%, 9%);
}
@media screen and (max-width: 767px) {
  .t-fv_share {
    width: 8.125rem;
    transform: translate(25%, -48%);
  }
}

.t-fv_scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translate(-50%, 0);
}
@media screen and (min-width: 768px) {
  .t-fv_scroll {
    display: none;
  }
}
.t-fv_scroll .text {
  display: block;
  font-size: 0.5625rem;
}
.t-fv_scroll .text img {
  height: 1em;
  object-fit: contain;
}
.t-fv_scroll .arrows {
  display: block;
  width: 4.125rem;
}
.t-fv_scroll .arrow {
  display: block;
}
.t-fv_scroll .arrow.arrow2 {
  margin-top: -0.5rem;
  animation-delay: 0.25s;
}

.t-strength {
  margin-top: 1.75rem;
  text-align: center;
  color: #008e44;
  padding-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .t-strength {
    background-color: unset;
    background-image: linear-gradient(to bottom, #e3fbe1 calc(100% - 5rem), rgba(255, 255, 255, 0) calc(100% - 5rem), rgba(255, 255, 255, 0) 100%);
    margin-bottom: 10.75rem;
  }
  .t-strength::after {
    transform: translate(-50%, 4.6875rem);
  }
}
@media screen and (max-width: 767px) {
  .t-strength {
    background-color: unset;
    background-image: linear-gradient(to bottom, #e3fbe1 calc(100% - 2.5rem), rgba(255, 255, 255, 0) calc(100% - 2.5rem), rgba(255, 255, 255, 0) 100%);
    margin-top: -0.25rem;
    padding-top: 1.25rem;
  }
  .t-strength::after {
    transform: translate(-50%, -0.625rem);
  }
}

.t-strength_title {
  font-size: 3.625rem;
  line-height: 1.8275862069;
  font-weight: 700;
  letter-spacing: 0.129em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .t-strength_title {
    font-size: 1.75rem;
    line-height: 1.5714285714;
  }
}

.t-strength_texts {
  display: flex;
  flex-direction: column;
  row-gap: 3.125rem;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .t-strength_texts {
    margin-top: 1.25rem;
    row-gap: 1.75rem;
  }
}

.t-strength_text {
  font-size: 1.5625rem;
  line-height: 2;
  font-weight: 700;
  letter-spacing: 0.149em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .t-strength_text {
    font-size: 0.9375rem;
    letter-spacing: 0.094em;
  }
}

.t-strength_swiper {
  margin-top: 8.5rem;
  margin-bottom: 3.375rem;
}
@media screen and (max-width: 767px) {
  .t-strength_swiper {
    margin-top: 6rem;
    margin-bottom: 4.375rem;
  }
}
@media screen and (min-width: 768px) {
  .t-strength_swiper .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

.t-strength_swiper_slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: auto;
}
@media screen and (min-width: 768px) {
  .t-strength_swiper_slide:nth-child(n+2) {
    position: relative;
  }
  .t-strength_swiper_slide:nth-child(n+2)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 1px;
    background-color: #008e44;
    transform: translateX(-50%);
  }
}

.t-strength_what_wrap {
  width: 100%;
  padding-top: 2.375rem;
  padding-right: 2.375rem;
}
@media screen and (max-width: 767px) {
  .t-strength_what_wrap {
    padding: 0;
  }
}

.t-strength_what_head {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 0.875rem;
}
@media screen and (max-width: 767px) {
  .t-strength_what_head {
    row-gap: 0.625rem;
  }
}
.t-strength_what_head .tip {
  display: block;
  width: 6.25rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .t-strength_what_head .tip {
    width: 5.125rem;
  }
}
.t-strength_what_head .arrow {
  width: 0.625rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .t-strength_what_head .arrow {
    width: 0.5rem;
  }
}

@media screen and (max-width: 767px) {
  .t-strength_family {
    margin-left: -1em;
    margin-right: -1em;
  }
}

.t-strength_what {
  aspect-ratio: 360/200;
  background: url(../img/strength_bg.svg) no-repeat center/contain;
  position: relative;
  width: 90%;
  max-width: 22.5rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  font-feature-settings: "palt";
  line-height: 1.7777777778;
  letter-spacing: 0.195em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .t-strength_what {
    max-width: 18.375rem;
    margin-top: 0.625rem;
    font-size: 0.875rem;
  }
}
.t-strength_what .lg {
  font-size: 1.6em;
  letter-spacing: 0.195em;
}

.t-strength_what_button {
  width: 3.25rem;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(-40%);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.195em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .t-strength_what_button {
    transform: translate(-40%, 4%);
    width: 2.75rem;
    font-size: 0.5625rem;
  }
}

.t-strength_slide_gorilla {
  max-width: 37.375rem;
}

.t-strength_video {
  margin-top: 10.5rem;
}
@media screen and (max-width: 767px) {
  .t-strength_video {
    margin-top: 4.5rem;
  }
  .t-strength_video .section_title {
    font-weight: 500;
    margin-left: -1em;
    margin-right: -1em;
  }
}

.t-strength_lead {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.149em;
  font-feature-settings: "palt";
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .t-strength_lead {
    font-size: 0.75rem;
    margin-top: 0.375rem;
  }
}

.t-strength_video_columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 3rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .t-strength_video_columns {
    grid-template-columns: 1fr;
    max-width: 31.25rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.75rem;
    row-gap: 1.5rem;
  }
}

.t-strength_video_column {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
}
@media screen and (max-width: 767px) {
  .t-strength_video_column {
    display: block;
  }
}

.t-strength_video_column_title {
  font-size: 1.875rem;
  padding-left: 1em;
}
@media screen and (max-width: 767px) {
  .t-strength_video_column_title {
    font-size: 1rem;
  }
}
.t-strength_video_column_title img {
  height: 1em;
  object-fit: contain;
}

.t-strength_video_wrap {
  aspect-ratio: 576/324;
  background-color: gray;
  overflow: hidden;
  border-radius: 3rem;
  margin-top: 1.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .t-strength_video_wrap {
    border-radius: 1.625rem;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0.875rem;
  }
}
.t-strength_video_wrap iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.t-strength_video_wrap .icon_play {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -75%);
  width: 2.875rem;
  z-index: 2;
}

.t-faq {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .t-faq {
    padding-top: 2.5rem;
  }
  .t-faq .section_title {
    font-size: 1.9375rem;
    line-height: 1.4838709677;
    font-feature-settings: unset;
    letter-spacing: 0.12em;
  }
}

.t-faq_intro {
  margin-top: 1.5rem;
}

.t-faq_intro_img {
  max-width: 11.125rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.t-faq_intro_belong {
  line-height: 1.5;
  font-weight: 500;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .t-faq_intro_belong {
    font-size: 0.875rem;
    line-height: 1.3571428571;
    margin-top: 0.875rem;
  }
}

.t-faq_intro_name {
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-feature-settings: "palt";
  line-height: 1.7647058824;
  text-align: center;
}
.t-faq_intro_name .lg {
  font-size: 1.625rem;
  letter-spacing: 0.12em;
  font-weight: inherit;
}

.t-faq_intro_text {
  max-width: 35rem;
  margin: 0.625rem auto 0;
  text-align: center;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.125em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .t-faq_intro_text {
    font-size: 0.875rem;
    line-height: 1.6428571429;
    letter-spacing: 0.1em;
    margin-top: 0.875rem;
  }
}

.t-faq_lists {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .t-faq_lists {
    margin-top: 3.875rem;
  }
}

@media screen and (min-width: 768px) {
  .t-faq_list {
    display: grid;
    column-gap: 1.5rem;
  }
  .t-faq_list:nth-child(odd) {
    grid-template-columns: auto 28.67%;
  }
  .t-faq_list:nth-child(odd) .t-faq_list_text {
    grid-column: 1/3;
  }
  .t-faq_list:nth-child(even) {
    grid-template-columns: 28.67% auto;
  }
  .t-faq_list:nth-child(even) .t-faq_list_illust {
    grid-column: 1/2;
    grid-row: 1/3;
  }
  .t-faq_list:nth-child(even) .t-faq_list_dl {
    grid-column: 2/3;
    margin-top: 3rem;
  }
  .t-faq_list:nth-child(even) .t-faq_list_dl dd {
    padding-bottom: 2.25rem;
  }
  .t-faq_list:nth-child(even) .t-faq_list_text {
    grid-column: 2/3;
    grid-row: 2/3;
  }
  .t-faq_list:nth-child(n+2) {
    margin-top: 3.625rem;
  }
  .t-faq_list:nth-child(1) .t-faq_list_illust {
    transform: translateY(-5%);
  }
  .t-faq_list:nth-child(3) .t-faq_list_dl {
    margin-top: 2.5rem;
  }
  .t-faq_list:nth-child(3) .t-faq_list_text {
    margin-top: 0.625rem;
  }
}
@media screen and (max-width: 767px) {
  .t-faq_list {
    display: flex;
    flex-direction: column;
  }
  .t-faq_list:nth-child(n+2) {
    margin-top: 3.5rem;
  }
}

.t-faq_list_dl {
  margin-left: 2.375rem;
  border: 1px solid #fff;
  border-radius: 1.25rem;
  align-self: start;
}
@media screen and (max-width: 767px) {
  .t-faq_list_dl {
    order: 2;
    margin-top: 1.5rem;
    border-radius: 0.875rem 0 0 0.875rem;
    margin-left: 1.5rem;
    margin-right: calc(50% - 50vw);
  }
}
.t-faq_list_dl dt, .t-faq_list_dl dd {
  margin-left: 2.625rem;
  padding: 0.625rem 2.5rem 0.625rem 0;
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  text-align: justify;
  line-height: 1.6363636364;
  position: relative;
}
@media screen and (max-width: 767px) {
  .t-faq_list_dl dt, .t-faq_list_dl dd {
    font-size: 1.0625rem;
    line-height: 1.4117647059;
    margin-left: 2.25rem;
  }
}
.t-faq_list_dl dt::before, .t-faq_list_dl dd::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4.125rem;
  aspect-ratio: 1/1;
  color: rgba(255, 255, 255, 0);
}
@media screen and (max-width: 767px) {
  .t-faq_list_dl dt::before, .t-faq_list_dl dd::before {
    width: 2.75rem;
  }
}
.t-faq_list_dl dt {
  min-height: 6.625rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .t-faq_list_dl dt {
    min-height: 5.625rem;
  }
}
.t-faq_list_dl dt::before {
  content: "Q";
  background-image: url(../img/faq_q.svg);
  transform: translate(-120%, 30%);
}
@media screen and (max-width: 767px) {
  .t-faq_list_dl dt::before {
    transform: translate(-131%, 60%);
  }
}
.t-faq_list_dl dd {
  border-top: 1px solid #fff;
  padding-top: 1.5rem;
  padding-bottom: 2.625rem;
}
@media screen and (max-width: 767px) {
  .t-faq_list_dl dd {
    line-height: 1.7647058824;
    margin-right: -1.25em;
    padding-bottom: 1.25rem;
  }
}
.t-faq_list_dl dd::before {
  content: "A";
  background-image: url(../img/faq_a.svg);
  transform: translate(-120%, 40%);
}
@media screen and (max-width: 767px) {
  .t-faq_list_dl dd::before {
    transform: translate(-131%, 68%);
  }
}

@media screen and (max-width: 767px) {
  .t-faq_list_illust {
    max-width: 15.625rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    order: 1;
  }
}

.t-faq_list_text {
  margin-left: 2.375rem;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-feature-settings: "palt";
  line-height: 1.9166666667;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .t-faq_list_text .underline {
    font-weight: inherit;
    text-decoration-line: underline;
    text-decoration-color: #fff;
    text-decoration-thickness: 2px;
    text-underline-offset: 0.625rem;
  }
}
@media screen and (max-width: 767px) {
  .t-faq_list_text {
    order: 3;
    font-size: 1.0625rem;
    line-height: 1.7647058824;
    text-align: justify;
    letter-spacing: 0.05em;
    margin-left: 1.5rem;
  }
}

.t-faq_wrap {
  background-color: #e3fbe1;
  border-radius: 5rem;
  width: 95%;
  max-width: 87.5rem;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  padding: 3.75rem 0 5.625rem;
  margin-top: 8.125rem;
  margin-bottom: 8.125rem;
  color: #008e44;
}
@media screen and (max-width: 767px) {
  .t-faq_wrap {
    margin-top: 3.375rem;
    border-radius: 2.125rem;
    width: 100%;
    padding: 2.5rem 0 3.125rem;
    margin-bottom: 4.125rem;
  }
}
.t-faq_wrap .section_title {
  font-size: 2.25rem;
}
@media screen and (max-width: 767px) {
  .t-faq_wrap .section_title {
    font-size: 1.5625rem;
  }
}

@media screen and (min-width: 768px) {
  .t-faq_swiper {
    margin-top: 3.125rem;
  }
  .t-faq_swiper .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    column-gap: 1.875rem;
  }
  .t-faq_swiper .swiper-wrapper .t-faq_swiper_slide {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
  }
}
@media screen and (max-width: 767px) {
  .t-faq_swiper {
    margin-top: 1.25rem;
    overflow: visible;
  }
  .t-faq_swiper .t-faq_swiper_pagination {
    max-width: 17.75rem;
    margin-top: 1.75rem;
  }
}

@media screen and (max-width: 767px) {
  .t-faq_swiper_slide {
    width: 10.875rem;
  }
}

@media screen and (min-width: 768px) {
  .t-faq_swiper_slide_icon {
    max-width: 13.25rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.t-faq_swiper_slide_title {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  line-height: 1.3636363636;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .t-faq_swiper_slide_title {
    font-size: 1.125rem;
    line-height: 1.3529411765;
    min-height: 2.875rem;
    margin-top: 0.625rem;
  }
}

.t-faq_swiper_slide_text {
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.6363636364;
  letter-spacing: 0.03em;
  font-feature-settings: "palt";
  text-align: justify;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .t-faq_swiper_slide_text {
    font-size: 1.0625rem;
    line-height: 1.6470588235;
    margin-top: 0.375rem;
  }
}

.c-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .c-links {
    display: block;
  }
}

.c-links_column2 {
  grid-column: 1/3;
}
@media screen and (min-width: 768px) {
  .c-links_column2 .c-links_body {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-links_column2 .c-links_body {
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
  }
}

@media screen and (min-width: 768px) {
  .c-links_column {
    grid-column: 3/4;
  }
}
@media screen and (max-width: 767px) {
  .c-links_column {
    margin-top: 2.125rem;
    width: 100%;
  }
}

.c-links_title {
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.121em;
  font-feature-settings: "palt";
  line-height: 1.7647058824;
  text-align: center;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.375rem;
  position: relative;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 767px) {
  .c-links_title {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
  }
}
.c-links_title.-wide::before {
  transform: translate(-190%, -30%);
}
.c-links_title.-wide::after {
  transform: translate(190%, -30%);
}
.c-links_title.-white {
  color: #008e44;
}
.c-links_title.-white .lg {
  background: radial-gradient(circle at calc(100% - 0.1875rem) calc(100% - 0.1875rem), #ffd500 0.1875rem, transparent 0.1875rem), radial-gradient(circle at 0.1875rem calc(100% - 0.1875rem), #ffd500 0.1875rem, transparent 0.1875rem), linear-gradient(to bottom, #fff calc(100% - 0.375rem), transparent calc(100% - 0.375rem)), linear-gradient(to right, transparent 0.1875rem, #ffd500 0.1875rem, #ffd500 calc(100% - 0.1875rem), transparent calc(100% - 0.1875rem));
}
.c-links_title.-white::before {
  background-image: url(../img/fukidashi_left.svg);
}
.c-links_title.-white::after {
  background-image: url(../img/fukidashi_right.svg);
}
.c-links_title::before, .c-links_title::after {
  content: "";
  position: absolute;
  top: 50%;
}
.c-links_title::before {
  left: 0;
  background: url(../img/fukidashi_left_white.svg) no-repeat center/contain;
  aspect-ratio: 26/56;
  width: 1.75rem;
  transform: translate(-110%, -30%);
}
.c-links_title::after {
  right: 0;
  background: url(../img/fukidashi_right_white.svg) no-repeat center/contain;
  aspect-ratio: 26/56;
  width: 1.625rem;
  transform: translate(150%, -30%);
}
.c-links_title .lg {
  font-size: 1.625rem;
  font-weight: 700;
  font-feature-settings: "palt";
  letter-spacing: 0.121em;
  line-height: 1.7692307692;
  padding: 0 0 0.375rem;
  background: radial-gradient(circle at calc(100% - 0.1875rem) calc(100% - 0.1875rem), #ffd500 0.1875rem, transparent 0.1875rem), radial-gradient(circle at 0.1875rem calc(100% - 0.1875rem), #ffd500 0.1875rem, transparent 0.1875rem), linear-gradient(to bottom, #008e44 calc(100% - 0.375rem), transparent calc(100% - 0.375rem)), linear-gradient(to right, transparent 0.1875rem, #ffd500 0.1875rem, #ffd500 calc(100% - 0.1875rem), transparent calc(100% - 0.1875rem));
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
@media screen and (max-width: 767px) {
  .c-links_title .lg {
    font-size: 1.3125rem;
  }
}

.c-links_link {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8888888889;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  color: #008e44;
  display: flex;
  flex-direction: column;
  justify-content: center;
  aspect-ratio: 382/164;
  padding-left: 13%;
  background: url(../img/link_gradation.svg) no-repeat center/contain;
  position: relative;
  filter: drop-shadow(0.625rem 0.625rem 0.625rem rgba(0, 0, 0, 0.45));
  transform: translateZ(0);
  transition: filter 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-links_link {
    background-image: url(../img/link_gradation_sp_thin.svg);
    aspect-ratio: 278/62;
    flex-direction: row;
    max-width: 17.375rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.25rem;
    width: 100%;
    letter-spacing: normal;
    font-size: 0.875rem;
    justify-content: start;
    align-items: center;
    column-gap: 0.25rem;
  }
}
.c-links_link:hover, .c-links_link:focus {
  filter: brightness(1.1) drop-shadow(0.625rem 0.625rem 0.625rem rgba(0, 0, 0, 0.45));
}
.c-links_link:hover::before, .c-links_link:focus::before {
  transform: translate(0.375rem, -50%);
}
.c-links_link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.5rem;
  aspect-ratio: 1/1;
  width: 1.25rem;
  transform: translateY(-50%);
  background: url(../img/arrow_yellow.svg) no-repeat center/contain;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-links_link::before {
    width: 0.875rem;
    right: 1.25rem;
  }
}
.c-links_link .lg {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2142857143;
  font-feature-settings: "palt";
  display: block;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 767px) {
  .c-links_link .lg {
    font-size: 1.0625rem;
    line-height: 1.36;
    margin-bottom: 0.25rem;
  }
}

.t-products {
  margin-top: 20.125rem;
  color: #008e44;
  padding-top: 2.625rem;
  padding-bottom: 6.75rem;
}
@media screen and (max-width: 767px) {
  .t-products {
    margin-top: 7.375rem;
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}

.t-products_lead {
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.75;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .t-products_lead {
    font-size: 1.0625rem;
    line-height: 1.7647058824;
    letter-spacing: 0.05em;
    margin-left: -0.5em;
    margin-right: -0.5em;
  }
}

.t-product_title {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .t-product_title {
    margin-top: 2.5rem;
  }
}
.t-product_title p {
  font-size: 1.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.7931034483;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .t-product_title p {
    font-size: 1.0625rem;
  }
}
.t-product_title p::before, .t-product_title p::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 1.4375rem;
}
@media screen and (max-width: 767px) {
  .t-product_title p::before, .t-product_title p::after {
    width: 0.875rem;
  }
}
.t-product_title p::before {
  left: 0;
  aspect-ratio: 23/42;
  background: url(../img/product_title_left.svg) no-repeat center/contain;
  transform: translate(-177%, -44%);
}
.t-product_title p::after {
  right: 0;
  aspect-ratio: 23/42;
  background: url(../img/product_title_right.svg) no-repeat center/contain;
  transform: translate(155%, -40%);
}
.t-product_title h2 {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.75;
  text-align: center;
  margin-top: 0.375rem;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.t-product_title h2 .underline {
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) calc(100% - 1px), #fff calc(100% - 1px), #fff 100%);
}
@media screen and (min-width: 768px) {
  .t-product_title h2 .underline {
    padding-bottom: 0.375rem;
  }
}
@media screen and (max-width: 767px) {
  .t-product_title h2 {
    font-size: 1.5625rem;
    line-height: 1.6;
    margin-top: 0.625rem;
  }
}

@media screen and (min-width: 768px) {
  .t-product_swiper {
    margin-top: 3.125rem;
    max-width: 73.75rem;
    margin-left: auto;
    margin-right: auto;
  }
  .t-product_swiper .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 3.125rem;
  }
  .t-product_swiper .swiper-wrapper .t-product_swiper_slide {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 4;
  }
}
@media screen and (max-width: 767px) {
  .t-product_swiper {
    margin-top: 3.625rem;
  }
}

@media screen and (max-width: 767px) {
  .t-product_swiper_slide {
    width: 15.375rem;
  }
}

.t-product_swiper_slide_img {
  max-width: 22rem;
  margin-left: auto;
  margin-right: auto;
}

.t-product_swiper_slide_lead {
  font-size: 2.125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  font-feature-settings: "palt";
  line-height: 1.4705882353;
  margin-top: 2.125rem;
}
@media screen and (max-width: 767px) {
  .t-product_swiper_slide_lead {
    font-size: 1.625rem;
    line-height: 1.4230769231;
    margin-top: 1rem;
  }
}

.t-product_swiper_slide_title {
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .t-product_swiper_slide_title {
    margin-top: 0.25rem;
  }
}
.t-product_swiper_slide_title h3 {
  font-weight: 500;
  font-size: 1.625rem;
  letter-spacing: 0.12em;
  line-height: 1.7692307692;
}
@media screen and (max-width: 767px) {
  .t-product_swiper_slide_title h3 {
    font-size: 1.3125rem;
  }
}
.t-product_swiper_slide_title p {
  font-size: 1.125rem;
  font-weight: 500;
  font-feature-settings: "palt";
  letter-spacing: 0.12em;
}
@media screen and (max-width: 767px) {
  .t-product_swiper_slide_title p {
    font-size: 0.8125rem;
  }
}

.t-product_swiper_slide_text {
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.6363636364;
  font-feature-settings: "palt";
  text-align: justify;
  letter-spacing: 0.05em;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .t-product_swiper_slide_text {
    font-size: 1.0625rem;
    line-height: 1.6470588235;
    letter-spacing: 0.03em;
    margin-top: 1.375rem;
  }
}

@media screen and (max-width: 767px) {
  .t-product_swiper_pagination {
    max-width: 10.25rem;
    margin-top: 5.25rem;
  }
}

.t-numbers {
  color: #fff;
  padding-top: 8.25rem;
  overflow: hidden;
  padding-bottom: 9.375rem;
}
@media screen and (max-width: 767px) {
  .t-numbers {
    padding-top: 4.25rem;
    padding-bottom: 3.75rem;
  }
  .t-numbers .section_title {
    font-size: 1.5625rem;
    letter-spacing: 0.12em;
  }
}

.t-numbers_swiper {
  margin-top: 5.125rem;
  margin-bottom: 8rem;
}
.t-numbers_swiper .swiper-wrapper {
  transition-timing-function: linear;
}
@media screen and (max-width: 767px) {
  .t-numbers_swiper {
    margin-top: 1.25rem;
    margin-bottom: 4.875rem;
  }
}

.t-numbers_swiper_slide {
  position: relative;
  height: 58.625rem;
  width: 120rem;
}
.t-numbers_swiper_slide button {
  transition: opacity 0.3s ease;
}
.t-numbers_swiper_slide button:hover, .t-numbers_swiper_slide button:focus {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .t-numbers_swiper_slide {
    height: 17.875rem;
    width: 39.5rem;
  }
}

.t-numbers_button01 {
  width: 31.625rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-166%, -122%);
}
@media screen and (max-width: 767px) {
  .t-numbers_button01 {
    width: 9.375rem;
    transform: translate(128%, 34%);
  }
}

.t-numbers_button02 {
  width: 28.125rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-47%, -172%);
}
@media screen and (max-width: 767px) {
  .t-numbers_button02 {
    width: 8.375rem;
    transform: translate(-120%, -172%);
  }
}

.t-numbers_button03 {
  width: 22.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(121%, -176%);
}
@media screen and (max-width: 767px) {
  .t-numbers_button03 {
    width: 6.75rem;
    transform: translate(187%, -96%);
  }
}

.t-numbers_button04 {
  width: 43.875rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-146%, 2%);
}
@media screen and (max-width: 767px) {
  .t-numbers_button04 {
    width: 13.125rem;
    transform: translate(3%, -92%);
  }
}

.t-numbers_button05 {
  width: 47.125rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-28%, -45%);
}
@media screen and (max-width: 767px) {
  .t-numbers_button05 {
    width: 14rem;
    transform: translate(-124%, -39%);
  }
}

.t-numbers_button06 {
  width: 50.125rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(50%, -3%);
}
@media screen and (max-width: 767px) {
  .t-numbers_button06 {
    width: 13rem;
    transform: translate(-17%, -3%);
  }
}

.t-numbers_button07 {
  width: 37.125rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-45%, 100%);
}
@media screen and (max-width: 767px) {
  .t-numbers_button07 {
    width: 11rem;
    transform: translate(-135%, 118%);
  }
}

.t-topics {
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .t-topics {
    margin-top: 3.125rem;
  }
}
.t-topics .section_title {
  color: #008e44;
}
@media screen and (max-width: 767px) {
  .t-topics .section_title {
    font-size: 1.875rem;
    letter-spacing: 0.12em;
  }
}

.t-topics_wrap {
  margin-top: 3.125rem;
  margin-bottom: 8.75rem;
}
@media screen and (max-width: 767px) {
  .t-topics_wrap {
    margin-top: 1.875rem;
    margin-bottom: 5.375rem;
  }
}

.t-topics_year {
  border-radius: 2.625rem;
  border: 1px solid #008e44;
  padding: 0 2.25rem;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .t-topics_year {
    padding: 0 1.25rem;
  }
}
.t-topics_year:not([open]) .t-topics_year_head::before {
  transform: translateY(-50%) rotate(90deg);
}
.t-topics_year::details-content {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease, content-visibility 0.3s ease allow-discrete;
}
.t-topics_year[open]::details-content {
  height: auto;
}

.t-topics_year_head {
  color: #008e44;
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: 0.121em;
  font-feature-settings: "palt";
  line-height: 1.75;
  min-height: 5.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 767px) {
  .t-topics_year_head {
    font-size: 1.5rem;
  }
}
.t-topics_year_head::-webkit-details-marker {
  display: none;
}
.t-topics_year_head::before, .t-topics_year_head::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.75rem;
  height: 1px;
  background-color: #008e44;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .t-topics_year_head::before, .t-topics_year_head::after {
    right: 0.875rem;
  }
}

.t-topics_list {
  border-top: 1px solid #008e44;
}

.t-topics_item {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
  display: grid;
  grid-template-columns: 10.625rem auto;
  column-gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .t-topics_item {
    grid-template-columns: 1fr;
    padding-top: 0.625rem;
    padding-bottom: 1.25rem;
  }
}
.t-topics_item:nth-child(n+2) {
  border-top: 1px dashed #008e44;
}
.t-topics_item:last-child {
  padding-bottom: 3.125rem;
}
.t-topics_item dt, .t-topics_item dd {
  font-size: 1.125rem;
  font-weight: 500;
  font-feature-settings: "palt";
  letter-spacing: 0.08em;
  line-height: 1.5454545455;
}
.t-topics_item dt a, .t-topics_item dd a {
  transition: opacity 0.3s ease;
  word-break: break-all;
  color: inherit;
  font-weight: inherit;
  display: inline-block;
}
.t-topics_item dt a:hover, .t-topics_item dt a:focus, .t-topics_item dd a:hover, .t-topics_item dd a:focus {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .t-topics_item dt, .t-topics_item dd {
    font-size: 1.0625rem;
    line-height: 1.6470588235;
    letter-spacing: 0.03em;
    color: #606060;
    text-align: justify;
  }
}
.t-topics_item dt {
  padding-left: 0.625rem;
}
@media screen and (max-width: 767px) {
  .t-topics_item dt {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .t-topics_item dd {
    margin-top: 0.25rem;
  }
}
.t-topics_item .flex {
  display: flex;
  flex-wrap: wrap;
  column-gap: 3.75rem;
  row-gap: 1.25rem;
  font-weight: inherit;
  margin: 1.25rem 0;
}
@media screen and (max-width: 767px) {
  .t-topics_item .flex {
    column-gap: 1.875rem;
  }
}
.t-topics_item .flex .flex_column {
  font-weight: inherit;
}

/*======================================
    modal
======================================*/
.strength-modal_title {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.5106382979;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .strength-modal_title {
    font-size: 1.375rem;
  }
}

.strength-modal_body {
  max-width: 30.875rem;
  margin: 1.25rem auto 0;
}

.strength-modal_text {
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: justify;
  font-feature-settings: "palt";
  line-height: 1.6153846154;
}
@media screen and (max-width: 767px) {
  .strength-modal_text {
    font-size: 0.9375rem;
  }
}

.strength-modal_img {
  margin-top: 1.25rem;
}

.numbers-modal_title {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  font-feature-settings: "palt";
  line-height: 1.5;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .numbers-modal_title {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
  }
}

.numbers-modal_number {
  font-size: 0.625rem;
}
@media screen and (max-width: 767px) {
  .numbers-modal_number {
    font-size: 0.375rem;
  }
}
.numbers-modal_number .no1 img {
  height: 13em;
}
.numbers-modal_number .staff_2900 img {
  height: 9.875em;
}
.numbers-modal_number .year_1953 img {
  height: 11.125em;
}
.numbers-modal_number .off_83 img {
  height: 10.875em;
}
.numbers-modal_number .sales_1800 img {
  height: 11.125em;
}
.numbers-modal_number .ele_1976 img {
  height: 11.25em;
}
.numbers-modal_number .num_20 img {
  height: 11em;
}
.numbers-modal_number img {
  object-fit: contain;
}

.numbers-modal_text {
  font-size: 1.375rem;
  font-weight: 500;
  text-align: justify;
  letter-spacing: 0.05em;
  line-height: 1.6363636364;
  font-feature-settings: "palt";
  margin-top: 2.5rem;
  max-width: 24rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.numbers-modal_text .sm {
  font-size: 0.77em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .numbers-modal_text {
    font-size: 0.9375rem;
    margin-top: 1.25rem;
  }
}

/*# sourceMappingURL=style.css.map */
