@charset "UTF-8";
/*======================================
    Font size
======================================*/
/*======================================
    media
======================================*/
/*======================================
    color
======================================*/
/*======================================
    font
======================================*/
/*======================================
    animation
======================================*/
@keyframes scroll {
  0% {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  90% {
    transform: translate(-50%, calc(-50% + 4.875rem));
  }
  100% {
    opacity: 0;
  }
}
@keyframes scrollSp {
  0% {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  90% {
    transform: translate(-50%, calc(-50% + 3.5rem));
  }
  100% {
    opacity: 0;
  }
}
/*======================================
    mixin
======================================*/
/*======================================
    parts
======================================*/
/*======================================
    base
======================================*/
html {
  font-size: 1rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  color: #303B34;
}

body {
  background-color: #fff;
}
body.is-android .c-page_title,
body.is-android .c-section_title,
body.is-android .mincho {
  font-family: "Noto Serif JP", serif;
}
body.is-modal-open {
  overflow: hidden;
}

img {
  width: 100%;
}

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

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
@media screen and (max-width: 767px) {
  br.is_pc {
    display: none;
  }
}

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

.main:not(.top) {
  padding-top: 5rem;
}

/*======================================
    layout
======================================*/
.container {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100svh;
}

.inner {
  width: 90%;
  max-width: 71.25rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .inner {
    width: 90.77%;
  }
}

/*======================================
    common
======================================*/
button,
input,
textarea,
select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border: none;
  background-color: unset;
  border-radius: 0;
  padding: 0;
  margin: 0;
  box-shadow: none;
  font-size: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: max(1rem, 16px);
}

/*======================================
    button
======================================*/
.c-button_top {
  position: fixed;
  bottom: 2.5rem;
  right: 1.25rem;
  aspect-ratio: 1/1;
  width: 5rem;
  border-radius: 50%;
  background-color: #285F3D;
  border: 1px solid #285F3D;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: background-color 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}
.c-button_top.active {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 767px) {
  .c-button_top {
    width: 2.5rem;
    bottom: 1.25rem;
  }
}
.c-button_top:hover {
  background-color: #fff;
}
.c-button_top:hover::before {
  border-color: #285F3D;
}
.c-button_top::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30%;
  aspect-ratio: 1/1;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(-50%, -25%) rotate(-135deg);
  transition: border-color 0.3s ease;
}

.c-button_pdf {
  font-size: 0.8125em;
  display: inline-block;
  font-weight: 500;
  color: #285F3D;
  border: 1px solid #285F3D;
  background-color: #fff;
  border-radius: 62.5rem;
  padding: 0.5em 1.6em;
  line-height: 1;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.c-button_pdf:hover {
  background-color: #285F3D;
  color: #fff;
}

.c-button_more {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4.6875em;
  line-height: 1.625;
  font-weight: 500;
  border-radius: 62.5rem;
  background-color: #fff;
  position: relative;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.c-button_more:hover {
  background-color: #285F3D;
  color: #fff;
}
.c-button_more:hover::before {
  transform: translate(0.2em, -50%);
  background-image: url(../img/common/icon_arrow_circle.svg);
}
.c-button_more::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.5625em;
  transform: translateY(-50%);
  aspect-ratio: 1/1;
  width: 2.75em;
  background: url(../img/common/icon_arrow_circle_main.svg) no-repeat center/contain;
  transition: transform 0.3s ease, background-image 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .c-button_more::before {
    right: 0.75em;
  }
}

.c-link_arrow {
  display: inline-block;
  font-weight: inherit;
  padding-right: 1.875em;
  position: relative;
  transition: opacity 0.3s ease;
}
.c-link_arrow:hover {
  opacity: 0.7;
}
.c-link_arrow:hover::before {
  transform: translate(0.2em, -50%);
}
.c-link_arrow:hover::after {
  transform: scale(1, 1);
}
.c-link_arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1.375em;
  aspect-ratio: 1/1;
  background: url(../img/common/icon_arrow_circle_main.svg) no-repeat center/contain;
  transition: transform 0.3s ease;
}
.c-link_arrow::after {
  content: "";
  position: absolute;
  bottom: -0.2em;
  left: 0;
  width: calc(100% - 1.875em);
  height: 1px;
  background-color: #285F3D;
  transform: scale(0, 1);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.c-link_arrow_front {
  display: inline-block;
  font-weight: inherit;
  padding-left: 1.67em;
  position: relative;
  transition: opacity 0.3s ease;
}
.c-link_arrow_front:hover {
  opacity: 0.7;
}
.c-link_arrow_front:hover::before {
  transform: translate(0.2em, -50%);
}
.c-link_arrow_front:hover::after {
  transform: scale(1, 1);
}
.c-link_arrow_front::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1.33em;
  aspect-ratio: 1/1;
  background: url(../img/common/icon_arrow_circle_main.svg) no-repeat center/contain;
  transition: transform 0.3s ease;
}
.c-link_arrow_front::after {
  content: "";
  position: absolute;
  bottom: -0.2em;
  left: 1.67em;
  width: calc(100% - 1.67em);
  height: 1px;
  background-color: #285F3D;
  transform: scale(0, 1);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

/*======================================
    parts
======================================*/
.c-sns_wrap {
  display: flex;
  align-items: center;
  column-gap: 0.75rem;
}

.c-sns_text {
  font-size: 0.75rem;
  font-weight: 500;
}

.c-sns_instagram {
  display: block;
  width: 1.875rem;
}

.c-sns_youtube {
  display: block;
  width: 2rem;
}

.c-youtube {
  position: relative;
  aspect-ratio: 16/9;
}
.c-youtube iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.js-youtube_thumb {
  transition: opacity 0.3s ease;
  position: relative;
}
.js-youtube_thumb:hover {
  opacity: 0.7;
  cursor: pointer;
}
.js-youtube_thumb::before {
  content: "";
  position: absolute;
  top: 0;
  inset: 0;
  background-color: #1D452C;
  opacity: 0.4;
}

.c-youtube_thumb_img {
  height: 100%;
}
.c-youtube_thumb_img img {
  height: 100%;
  object-fit: cover;
}

.c-youtube_play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 7.5rem;
  aspect-ratio: 120/155;
  background: url(../img/common/icon_play_text.svg) no-repeat center/contain;
  background-color: unset;
  border: none;
  box-shadow: none;
  border-radius: 0;
  font-size: 1rem;
  font-weight: 700;
}
.c-youtube_play.-simple {
  background-image: url(../img/common/icon_play.svg);
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .c-youtube_play.-simple {
    width: 5.625rem;
  }
}

.c-list_disc li {
  padding-left: 0.88em;
  line-height: 1.44;
  position: relative;
}
.c-list_disc li:nth-child(n+2) {
  margin-top: 0.5em;
}
.c-list_disc li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  transform: translateY(-50%);
  width: 0.5em;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #C9DBCF;
}

.c-gallery_wrap {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 3.125rem;
}
@media screen and (max-width: 767px) {
  .c-gallery_wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1.25rem;
    row-gap: 1.25rem;
  }
  .c-gallery_wrap .c-gallery_lists {
    display: contents;
  }
}

.c-gallery_lists {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(11.25rem, 1fr));
  column-gap: 2.1875rem;
  row-gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .c-gallery_lists {
    column-gap: 1.25rem;
    row-gap: 1.25rem;
  }
}
.c-gallery_lists.-pickup {
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .c-gallery_lists.-pickup {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1.25rem;
  }
}

.c-gallery_list.modal_open:hover .c-gallery_list_img img {
  transform: scale(1.05);
}
.c-gallery_list.modal_open .c-gallery_list_img {
  position: relative;
}
.c-gallery_list.modal_open .c-gallery_list_img::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 2.125rem;
  aspect-ratio: 1/1;
  background-image: url(../img/common/icon_search.svg);
  background-color: #285F3D;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.25rem 1.25rem;
  z-index: 2;
}

.c-gallery_list_img {
  aspect-ratio: 200/140;
  border-radius: 0.625rem;
  overflow: hidden;
}
.c-gallery_list_img img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.c-gallery_list_title {
  font-size: 1.125rem;
  line-height: 1.75;
  font-weight: 500;
  font-weight: 700;
  line-height: 1.3333333333;
  margin-top: 1.25rem;
  color: #285F3D;
}
@media screen and (max-width: 767px) {
  .c-gallery_list_title {
    font-size: 1rem;
  }
}

.c-gallery_simple {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(11.25rem, 1fr));
  column-gap: 2.1875rem;
  row-gap: 1.875rem;
}
@media screen and (max-width: 1024px) {
  .c-gallery_simple {
    column-gap: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-gallery_simple {
    grid-template-columns: repeat(auto-fill, minmax(9.375rem, 1fr));
    column-gap: 1.25rem;
  }
}

.c-gallery_simple_item.modal_open .c-gallery_simple_img {
  position: relative;
}
.c-gallery_simple_item.modal_open .c-gallery_simple_img::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 2.125rem;
  aspect-ratio: 1/1;
  background-image: url(../img/common/icon_search.svg);
  background-color: #285F3D;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.25rem 1.25rem;
  z-index: 2;
}
.c-gallery_simple_item.modal_open:hover .c-gallery_simple_img img {
  transform: scale(1.05);
}

.c-gallery_simple_img {
  aspect-ratio: 200/140;
  border-radius: 0.625rem;
  overflow: hidden;
}
.c-gallery_simple_img.-circle {
  aspect-ratio: 1/1;
  border-radius: 50%;
  max-width: 7.125rem;
  margin-left: auto;
  margin-right: auto;
}
.c-gallery_simple_img img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.c-gallery_simple_text {
  font-weight: 500;
  line-height: 2.125;
  line-height: 1.5;
  color: #285F3D;
  text-align: center;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .c-gallery_simple_text {
    font-size: 0.875rem;
    line-height: 2;
  }
}

/*======================================
    page
======================================*/
.c-page_fv {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 19.375rem;
  position: relative;
  z-index: 1;
  padding-bottom: 0.625rem;
}
@media screen and (max-width: 767px) {
  .c-page_fv {
    min-height: 13.125rem;
  }
}
.c-page_fv::before {
  content: "";
  position: absolute;
  top: 0;
  inset: 0;
  background-color: #285F3D;
  opacity: 0.4;
  z-index: -1;
}

.c-page_fv_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.c-page_fv_bg img {
  height: 100%;
  object-fit: cover;
}

.c-page_title {
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: 2.75rem;
  font-weight: 500;
  line-height: 1.7954545455;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .c-page_title {
    font-size: 1.75rem;
  }
}

/*======================================
    section
======================================*/
.-center {
  text-align: center;
}

.-right {
  text-align: right;
}

.c-br10 {
  overflow: hidden;
  border-radius: 0.625rem;
}

.c-section_title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  color: #285F3D;
}
.c-section_title.-underline {
  border-bottom: 1px solid #285F3D;
  padding-bottom: 0.875rem;
}
@media screen and (max-width: 767px) {
  .c-section_title {
    font-size: 1.4375rem;
    line-height: 1.4782608696;
  }
}

.c-section_text {
  font-weight: 500;
  line-height: 2.125;
}
@media screen and (max-width: 767px) {
  .c-section_text {
    font-size: 0.875rem;
    line-height: 2;
  }
}

.c-section_text_md {
  font-size: 1.125rem;
  line-height: 1.75;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .c-section_text_md {
    font-size: 1rem;
  }
}

.c-section_text_lg {
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .c-section_text_lg {
    font-size: 1.125rem;
  }
}

/*======================================
    modal
======================================*/
.modal_open {
  cursor: pointer;
}

.modal {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  padding: 2.5rem 1.25rem;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  overflow: auto;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal_body {
  width: 95%;
  max-width: 56.5rem;
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  color: #285F3D;
  border-radius: 1.25rem;
  padding: 1.25rem 1.5rem;
  background-color: #F4F2ED;
  position: relative;
}
@media screen and (max-width: 767px) {
  .modal_body {
    border-radius: 0.625rem;
    padding: 1.25rem;
  }
}

.modal_close {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border: none;
  box-shadow: none;
  background-color: none;
  border-radius: 0;
  padding-top: 2em;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 2;
  text-align: center;
  width: fit-content;
  margin-left: auto;
  display: block;
  color: #285F3D;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .modal_close {
    font-size: 0.625rem;
  }
}
.modal_close::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  aspect-ratio: 1/1;
  width: 1.69em;
  background: url(../img/common/icon_close.svg) no-repeat center/contain;
}

.modal_contents_inner {
  width: 92%;
  max-width: 48.625rem;
  margin-left: auto;
  margin-right: auto;
}

.modal_swiper {
  position: relative;
}

.modal_prev,
.modal_next {
  position: absolute;
  top: min(50%, 50svh - 2.5rem);
  aspect-ratio: 1/1;
  width: 3.875rem;
  background: url(../img/common/modal_prev.svg) no-repeat center/contain;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .modal_prev,
  .modal_next {
    width: 2.5rem;
  }
}
.modal_prev.swiper-button-disabled,
.modal_next.swiper-button-disabled {
  opacity: 0;
  visibility: hidden;
}

.modal_prev {
  left: 0;
  transform: translate(-50%, -50%);
}

.modal_next {
  right: 0;
  transform: translate(50%, -50%);
  background-image: url(../img/common/modal_next.svg);
}

.modal_title {
  text-align: center;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-weight: 500;
  font-size: 1.75rem;
  line-height: 1.2142857143;
}
@media screen and (max-width: 767px) {
  .modal_title {
    font-size: 1.25rem;
  }
}

.modal_gallery {
  display: grid;
  row-gap: 1.625rem;
  column-gap: 2.125rem;
  max-width: 40.25rem;
  align-items: start;
  margin: 1.5rem auto 0;
}
@media screen and (min-width: 768px) {
  .modal_gallery.column1 {
    grid-template-columns: 1fr;
  }
  .modal_gallery.column1 .modal_gallery_img {
    max-width: 100%;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .modal_gallery.column1 .modal_gallery_img img {
    max-height: 19.625rem;
    height: 100%;
    object-fit: contain;
  }
  .modal_gallery.column2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .modal_gallery.column2 .modal_gallery_img img {
    height: 100%;
    object-fit: cover;
  }
  .modal_gallery.column3 {
    display: block;
    overflow: hidden;
  }
  .modal_gallery.column3 .modal_gallery_img {
    float: left;
  }
  .modal_gallery.column3 .modal_gallery_img img {
    height: 100%;
    object-fit: cover;
  }
  .modal_gallery.column3 .modal_gallery_img:nth-child(1) {
    width: 65%;
    margin-right: 2.125rem;
  }
  .modal_gallery.column3 .modal_gallery_img:nth-child(2) {
    width: calc(35% - 2.125rem);
  }
  .modal_gallery.column3 .modal_gallery_img:nth-child(3) {
    width: calc(35% - 2.125rem);
    margin-top: 1.625rem;
  }
}
@media screen and (max-width: 767px) {
  .modal_gallery {
    grid-template-columns: 1fr;
  }
}

.modal_gallery_img {
  border-radius: 1.25rem;
  overflow: hidden;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .modal_gallery_img {
    border-radius: 0.625rem;
  }
}

.modal_more {
  line-height: 1.625;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 28.5rem;
  margin: 3.125rem auto;
  background-color: #285F3D;
  color: #fff;
  text-align: center;
  position: relative;
  width: 100%;
  height: 4.625rem;
  border-radius: 62.5rem;
  border: 1px solid #285F3D;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .modal_more {
    margin: 1.25rem auto;
  }
}
.modal_more:hover {
  cursor: pointer;
  color: #285F3D;
  background-color: #fff;
}
.modal_more:hover::before {
  background-image: url(../img/common/icon_arrow_circle.svg);
}
.modal_more.active::before {
  transform: translateY(-50%) rotate(270deg);
  background-image: url(../img/common/icon_arrow_circle.svg);
}
.modal_more::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.125rem;
  aspect-ratio: 1/1;
  width: 1.5em;
  background: url(../img/common/icon_arrow_circle.svg) no-repeat center/contain;
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.3s ease, background-image 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .modal_more::before {
    right: 0.75rem;
  }
}

.modal_text {
  line-height: 1.5;
  display: none;
  padding-bottom: 4.375rem;
}

/*======================================
    form
======================================*/
.form {
  max-width: 45.875rem;
  margin-left: auto;
  margin-right: auto;
}
.form .wpcf7-not-valid-tip {
  font-size: 0.75rem;
  margin-top: 0.25rem;
}
.form .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1.625rem;
  align-items: center;
}
.form .wpcf7-radio .wpcf7-list-item {
  margin: 0;
  padding-left: 2em;
  position: relative;
}
.form .wpcf7-radio .wpcf7-list-item input {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #C9DBCF;
}
.form .wpcf7-radio .wpcf7-list-item input:checked::before {
  opacity: 1;
}
.form .wpcf7-radio .wpcf7-list-item input::before {
  content: "";
  position: absolute;
  width: 0.75em;
  height: 0.75em;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #285F3D;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.form_wrap {
  max-width: 45.875rem;
  margin-left: auto;
  margin-right: auto;
}

.form_lead,
.form_privacy {
  font-size: 0.875rem;
  line-height: 2.7142857143;
  font-weight: 500;
  color: #285F3D;
  margin-top: 5.375rem;
}
@media screen and (min-width: 768px) {
  .form_lead,
  .form_privacy {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .form_lead,
  .form_privacy {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.875rem;
  }
}

.form_privacy {
  text-align: center;
  margin-top: 2.5rem;
}
.form_privacy a {
  display: inline-block;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.form_privacy a:hover {
  opacity: 0.7;
}

.form_lists {
  color: #285F3D;
}

.form_list:nth-child(n+2) {
  margin-top: 0.875rem;
}

.form_list_dl {
  display: grid;
  grid-template-columns: 11.875rem auto;
  column-gap: 0.875rem;
  align-items: start;
}
@media screen and (max-width: 767px) {
  .form_list_dl {
    grid-template-columns: 1fr;
  }
}
.form_list_dl dt {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  font-weight: 500;
  line-height: 2.125;
  min-height: 3.375rem;
}
.form_list_dl dt span.sm {
  font-size: 0.625rem;
  line-height: 1;
  display: block;
  width: 100%;
  margin-top: -1.25em;
}
@media screen and (max-width: 767px) {
  .form_list_dl dt {
    font-size: 0.875rem;
    line-height: 2;
  }
}
.required {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.875em;
  font-weight: 700;
  border-radius: 62.5rem;
  height: 1.7em;
  width: 3.21em;
  background-color: #CEB21A;
  color: #fff;
}

.form_input {
  min-height: 3.375rem;
  display: flex;
  align-items: center;
  min-width: 0;
  width: 100%;
}
.form_input .wpcf7-form-control-wrap {
  width: 100%;
}
.form_input input[type=text],
.form_input input[type=tel],
.form_input input[type=email],
.form_input textarea,
.form_input span.form_input_check {
  font-size: max(1rem, 16px);
  font-weight: 500;
  line-height: 1.5;
  padding: 0.9375rem 0.875rem;
  border-radius: 0.625rem;
  background-color: #F4F2ED;
  width: 100%;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  flex: 1;
}
.form_input input[type=text]::placeholder,
.form_input input[type=tel]::placeholder,
.form_input input[type=email]::placeholder,
.form_input textarea::placeholder,
.form_input span.form_input_check::placeholder {
  color: #95AC9D;
}
.form_input textarea {
  height: 18.75rem;
  resize: vertical;
}

.form_text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2;
  margin-top: 3.875rem;
  color: #285F3D;
}
@media screen and (min-width: 768px) {
  .form_text {
    text-align: center;
  }
}

.form_button_wrap {
  margin-top: 4.625rem;
}
@media screen and (max-width: 767px) {
  .form_button_wrap {
    margin-top: 2.5rem;
  }
}

.form_button {
  margin-left: auto;
  margin-right: auto;
  max-width: 28.5rem;
  height: 5.625rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-color: #285F3D;
  border-radius: 62.5rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 500;
  background-image: url(../img/common/icon_arrow_circle.svg);
  background-repeat: no-repeat;
  background-position: center right 2rem;
  background-size: 2.75rem 2.75rem;
  transition: background-position 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  border: 1px solid #285F3D;
}
.form_button:disabled {
  filter: grayscale(1);
  pointer-events: none;
}
.form_button:hover {
  background-position: center right 1.5rem;
  background-image: url(../img/common/icon_arrow_circle.svg);
  background-color: #fff;
  color: #285F3D;
}
@media screen and (max-width: 767px) {
  .form_button:hover {
    background-position: center right 0.625rem;
  }
}
@media screen and (max-width: 767px) {
  .form_button {
    background-position: center right 0.875rem;
  }
}

.form_button_back {
  width: 100%;
  text-align: center;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.form_button_back:hover {
  opacity: 0.7;
}

.form_check_area,
.form_thanks_area {
  display: none;
}

.wpcf7-response-output {
  display: none;
}

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

.form_step {
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px solid #95AC9D;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 1.125rem;
}
@media screen and (max-width: 1024px) {
  .form_step {
    row-gap: 0.625rem;
  }
}
@media screen and (max-width: 767px) {
  .form_step {
    row-gap: 0.375rem;
  }
}
.form_step.active {
  border-width: 3px;
}
.form_step:nth-child(n+2) {
  position: relative;
}
.form_step:nth-child(n+2)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -3.125rem;
  transform: translate(-50%, -50%);
  aspect-ratio: 1/1;
  width: 2.75rem;
  background: url(../img/common/icon_arrow_circle_bg.svg) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .form_step:nth-child(n+2)::before {
    width: 1.25rem;
    left: -1.25rem;
  }
}

.form_step_en {
  font-family: "Oswald", sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: #95AC9D;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  .form_step_en {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .form_step_en {
    font-size: 0.625rem;
  }
}

.form_step_text {
  line-height: 1.4583333333;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-weight: 500;
  color: #285F3D;
  font-size: 1.5rem;
  min-height: 2.92em;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .form_step_text {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .form_step_text {
    font-size: 0.625rem;
  }
}

/*======================================
    header
======================================*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 300;
}
.header.bg {
  background-color: #fff;
}
.header.top .h_logo {
  background-image: url(../img/common/logo_white.png);
}
@media screen and (min-width: 1025px) {
  .header.top .h_logo {
    transform: scale(1.22);
  }
}
.header.top.bg .h_logo {
  background-image: url(../img/common/logo.png);
}
@media screen and (min-width: 1025px) {
  .header.top.bg .h_logo {
    transform: scale(1);
  }
}

.h_inner {
  height: 5rem;
  display: flex;
  align-items: center;
  column-gap: 2.5rem;
  justify-content: space-between;
  padding: 0 2rem;
  max-width: 87.5rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .h_inner {
    padding: 0;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}

.h_logo {
  width: 5.6875rem;
  aspect-ratio: 91/52;
  background: url(../img/common/logo.png) no-repeat center/contain;
  margin-top: 0.375rem;
  transition: background-image 0.3s ease, transform 0.3s ease;
}
.h_logo.active {
  background-image: url(../img/common/logo_white.png) !important;
}
.h_logo img {
  visibility: hidden;
}
.h_logo a {
  display: block;
}

@media screen and (max-width: 1024px) {
  .h_nav_wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #285F3D;
    color: #fff;
    z-index: 200;
    visibility: hidden;
    opacity: 0;
    transform: translateX(102%);
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  }
  .h_nav_wrap.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
  .h_nav_wrap .h_logo {
    margin-top: 1rem;
    margin-left: 1.125rem;
  }
}

@media screen and (max-width: 1024px) {
  .h_nav {
    width: 80.5%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 2.5rem;
    padding-bottom: 4.125rem;
  }
}

.h_nav_links {
  display: flex;
  align-items: center;
  column-gap: 2.8125rem;
}
@media screen and (min-width: 1025px) and (max-width: 1200px) {
  .h_nav_links {
    column-gap: 1.25rem;
  }
}
@media screen and (max-width: 1024px) {
  .h_nav_links {
    flex-direction: column;
    align-items: start;
    row-gap: 1.5rem;
  }
}
.h_nav_links .menu-item a {
  display: block;
  font-weight: 700;
  line-height: 1.6875;
  color: #285F3D;
  padding: 0 0.3125rem;
  transition: opacity 0.3s ease;
  position: relative;
}
.h_nav_links .menu-item a:hover {
  opacity: 0.7;
}
@media screen and (min-width: 1025px) {
  .h_nav_links .menu-item a:hover::before {
    transform: translateX(-50%) scale(1, 1);
    transform-origin: left center;
  }
}
@media screen and (min-width: 1025px) {
  .h_nav_links .menu-item a {
    padding: 2rem 0.375rem 1.875rem;
  }
  .h_nav_links .menu-item a::before {
    content: "";
    position: absolute;
    bottom: 1.125rem;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: #CEB21A;
    transform-origin: right center;
    transition: transform 0.3s ease;
    transform: translateX(-50%) scale(0, 1);
  }
}
@media screen and (max-width: 1024px) {
  .h_nav_links .menu-item a {
    color: #fff;
    font-size: 1.25rem;
    line-height: 1.7;
    padding: 0;
  }
}
@media screen and (min-width: 1025px) {
  .h_nav_links .menu-item:last-child {
    margin-left: 0.625rem;
  }
  .h_nav_links .menu-item:last-child a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 9.375rem;
    height: 2.875rem;
    background-color: #CEB21A;
    color: #fff;
    font-size: 0.875rem;
    border-radius: 1.75rem;
    padding: 0 0.3125rem;
  }
  .h_nav_links .menu-item:last-child a::before {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .h_nav_links .menu-item.no-page a {
    pointer-events: none;
  }
  .h_nav_links .menu-item.no-page a:hover {
    opacity: 1;
  }
  .h_nav_links .menu-item.no-page .sub-menu a {
    pointer-events: all;
  }
  .h_nav_links .menu-item:not(.no-page) a {
    padding-left: 1.6em;
    position: relative;
  }
  .h_nav_links .menu-item:not(.no-page) a:hover::before {
    transform: translate(0.2em, -50%);
  }
  .h_nav_links .menu-item:not(.no-page) a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 1.2em;
    aspect-ratio: 1/1;
    background: url(../img/common/icon_arrow_circle.svg) no-repeat center/contain;
    transition: transform 0.3s ease;
  }
}
@media screen and (min-width: 1025px) {
  .h_nav_links .sub-menu {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .h_nav_links .sub-menu {
    margin-left: 1rem;
  }
  .h_nav_links .sub-menu .menu-item a {
    font-size: 0.875rem;
    line-height: 2;
    padding-left: 1.21em;
    position: relative;
  }
  .h_nav_links .sub-menu .menu-item a:hover::before {
    transform: translate(0.2em, -50%);
  }
  .h_nav_links .sub-menu .menu-item a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 0.79em;
    aspect-ratio: 1/1;
    background: url(../img/common/icon_arrow.svg) no-repeat center/contain;
    transition: transform 0.3s ease;
  }
}

.h_nav_sp .h_logo {
  background-image: url(../img/common/logo_white.png) !important;
}
@media screen and (min-width: 1025px) {
  .h_nav_sp {
    display: none;
  }
}

.h_nav_policy {
  margin-top: 2.875rem;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 2rem;
  margin: 2.875rem -1em 0;
}
.h_nav_policy li {
  font-size: 0.75rem;
}
.h_nav_policy li a {
  font-weight: 500;
  line-height: 1.75;
}
.h_nav_policy li:nth-child(n+2) {
  position: relative;
}
.h_nav_policy li:nth-child(n+2)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -1rem;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 1em;
  background-color: #fff;
}

.h_nav_sns {
  justify-content: flex-end;
  margin-top: 3.5rem;
}

.drawer_icon {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background-color: #285F3D;
  color: #fff;
  border-radius: 0 0 0 0.625rem;
  border: none;
  box-shadow: none;
  width: 4.1875rem;
  aspect-ratio: 1/1;
  padding: 1.375rem 0 0 0;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 400;
  display: flex;
  align-items: start;
  justify-content: center;
}
.drawer_icon::before {
  content: "MENU";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 40%);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
}
.drawer_icon.active::before {
  content: "CLOSE";
}
.drawer_icon.active .drawer_icon_bars::before {
  top: 50%;
  transform: translate(-50%, -50%) rotate(15deg);
}
.drawer_icon.active .drawer_icon_bars::after {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
}
@media screen and (min-width: 1025px) {
  .drawer_icon {
    display: none;
  }
}

.drawer_icon_bars {
  width: 2.5rem;
  height: 0.625rem;
  display: block;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
.drawer_icon_bars::before, .drawer_icon_bars::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: transform 0.3s ease;
}
.drawer_icon_bars::before {
  top: 0;
}
.drawer_icon_bars::after {
  top: 100%;
}

/*======================================
    sub
======================================*/
.pc-nav {
  position: fixed;
  top: 5rem;
  left: 0;
  width: 100%;
  z-index: 299;
  padding: 3.125rem 0;
  transform: translateY(-20px);
  overflow: hidden;
  border-radius: 0 0 1.875rem 1.875rem;
  background-color: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(14px) brightness(1.15);
  -webkit-backdrop-filter: blur(14px) brightness(1.15);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
@media screen and (min-width: 1025px) {
  .pc-nav.active {
    visibility: visible;
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }
}

.h-about-nav_wrap {
  max-width: 40.625rem;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 55.38% auto;
  column-gap: 1.875rem;
  row-gap: 1rem;
}

.h-about-nav_item {
  display: block;
  font-weight: 500;
  line-height: 2.125;
  color: #285F3D;
  line-height: 1.6875;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .h-about-nav_item {
    font-size: 0.875rem;
    line-height: 2;
  }
}
.h-about-nav_item:hover .h-about-nav_item_img img {
  transform: scale(1.05);
}
.h-about-nav_item:nth-child(1) {
  column-gap: 1/2;
  grid-row: 1/3;
}
.h-about-nav_item:nth-child(1) .h-about-nav_item_img {
  aspect-ratio: 360/290;
}

.h-about-nav_item_img {
  aspect-ratio: 256/120;
  overflow: hidden;
  border-radius: 0.625rem;
  margin-bottom: 0.375rem;
}
.h-about-nav_item_img img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/*======================================
    footer
======================================*/
.footer {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 6.875rem 0 1.875rem;
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 4.75rem 0 3.125rem;
  }
}

.f_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.f_bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  inset: 0;
  display: block;
  background-color: #1B4B2D;
  opacity: 0.85;
}
.f_bg img {
  object-fit: cover;
  height: 100%;
}

.f_head {
  display: flex;
  column-gap: 1.125rem;
  align-items: center;
}

.f_logo {
  width: 6.9375rem;
}
@media screen and (max-width: 767px) {
  .f_logo {
    width: 6.0625rem;
  }
}

.f_head_text {
  font-weight: 700;
  line-height: 1.5;
  margin-top: 0.625rem;
}

.f_body {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  column-gap: 5rem;
  margin-top: 1.875rem;
}
@media screen and (max-width: 1024px) {
  .f_body {
    flex-direction: column;
    row-gap: 3.75rem;
    margin-top: 3.75rem;
  }
}
@media screen and (max-width: 767px) {
  .f_body {
    margin-top: 2.5rem;
  }
}

.f_nav {
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .f_nav {
    margin-left: 0;
  }
}
.f_nav .f_nav_links {
  columns: 2;
  column-gap: 5.75rem;
  row-gap: 2.5rem;
  transform: translate(80px);
}
@media screen and (max-width: 1024px) {
  .f_nav .f_nav_links {
    transform: translateX(0);
  }
}
@media screen and (max-width: 767px) {
  .f_nav .f_nav_links {
    column-gap: 1.25rem;
    min-width: 29.75rem;
  }
}
.f_nav .f_nav_links .menu-item {
  break-inside: avoid;
  margin-bottom: 2.25rem;
}
@media screen and (max-width: 767px) {
  .f_nav .f_nav_links .menu-item {
    margin-bottom: 1.875rem;
  }
}
.f_nav .f_nav_links .menu-item a {
  font-weight: 700;
  line-height: 1.6875;
  transition: opacity 0.3s ease;
}
.f_nav .f_nav_links .menu-item a:hover {
  opacity: 0.7;
}
.f_nav .f_nav_links .menu-item.no-page a {
  pointer-events: none;
}
.f_nav .f_nav_links .menu-item.no-page .sub-menu .menu-item a {
  pointer-events: all;
}
.f_nav .f_nav_links .sub-menu {
  margin-top: 0.375rem;
}
.f_nav .f_nav_links .sub-menu .menu-item {
  margin-bottom: 0;
}
.f_nav .f_nav_links .sub-menu .menu-item a {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.7142857143;
}
@media screen and (max-width: 767px) {
  .f_nav .f_nav_links .sub-menu .menu-item a {
    font-size: 0.8125rem;
    line-height: 1.8461538462;
  }
}

.f_office_list:nth-child(n+2) {
  margin-top: 1.875rem;
}

.f_office_list_dl {
  display: grid;
  grid-template-columns: 6.75rem auto;
  column-gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .f_office_list_dl {
    grid-template-columns: 5.875rem auto;
  }
}
.f_office_list_dl dt, .f_office_list_dl dd {
  line-height: 1.5;
}
.f_office_list_dl dt {
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .f_office_list_dl dt {
    font-size: 0.875rem;
    line-height: 1.7142857143;
  }
}
.f_office_list_dl dd {
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .f_office_list_dl dd {
    font-size: 0.75rem;
    line-height: 2;
  }
}
.f_office_list_dl dd span.sm {
  display: none;
}

.f_bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.625rem;
}
@media screen and (max-width: 767px) {
  .f_bottom {
    flex-direction: column-reverse;
    justify-content: center;
    margin-top: 4rem;
  }
}

.f_nav_policy {
  display: flex;
  column-gap: 4.375rem;
}
@media screen and (max-width: 767px) {
  .f_nav_policy {
    margin-top: 2.5rem;
    column-gap: 3.75rem;
  }
}
.f_nav_policy li:nth-child(n+2) {
  position: relative;
}
.f_nav_policy li:nth-child(n+2)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -2.1875rem;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 1em;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .f_nav_policy li:nth-child(n+2)::before {
    left: -1.875rem;
  }
}
.f_nav_policy li a {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7142857143;
  display: block;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .f_nav_policy li a {
    font-size: 0.75rem;
  }
}
.f_nav_policy li a:hover {
  opacity: 0.7;
}

.f_copy {
  text-align: center;
  margin-top: 4.5rem;
}
@media screen and (max-width: 767px) {
  .f_copy {
    margin-top: 3.375rem;
  }
}
.f_copy small {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.7692307692;
}
@media screen and (max-width: 767px) {
  .f_copy small {
    font-size: 0.75rem;
    line-height: 1.6666666667;
  }
}

/*======================================
    TOP
======================================*/
.t-section_title p {
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 1.5;
  color: #95AC9D;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .t-section_title p {
    font-size: 1.125rem;
    line-height: 1.4444444444;
  }
}
.t-section_title h2 {
  font-size: 2rem;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-weight: 500;
  line-height: 1.0625;
  color: #285F3D;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .t-section_title h2 {
    font-size: 1.875rem;
    line-height: 1.1333333333;
    margin-top: 0.625rem;
  }
  .t-section_title h2 .c-link_arrow {
    padding-right: 1.3em;
  }
  .t-section_title h2 .c-link_arrow::before {
    width: 0.8em;
  }
}

.t-fv {
  color: #fff;
}

.t-fv_inner {
  display: grid;
  grid-template-columns: 1fr;
  height: 100svh;
  position: relative;
  z-index: 1;
}

.t-fv_bg {
  grid-column: 1/2;
  grid-row: 1/2;
  z-index: -1;
  height: 100svh;
  min-width: 9.375rem;
  width: 50vw;
  margin-left: calc(50% - 50vw);
  transform: translateX(-338px);
}
@media screen and (max-width: 767px) {
  .t-fv_bg {
    display: none;
  }
}
.t-fv_bg img {
  height: 100%;
  object-fit: cover;
  object-position: 16% center;
}
.t-fv_bg::before {
  content: "";
  position: absolute;
  top: 0;
  inset: 0;
  background-color: #044E20;
  opacity: 0.77;
}

.t-fv_video {
  grid-column: 1/2;
  grid-row: 1/2;
  position: relative;
  z-index: 2;
  margin-right: calc(50% - 50vw);
  height: calc(100svh - 5.5rem);
  margin-top: auto;
  margin-left: 5.5rem;
  overflow: hidden;
  border-radius: 2.375rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .t-fv_video {
    height: 100svh;
    border-radius: 0;
    margin: 0 calc(50% - 50vw);
  }
}
.t-fv_video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t-fv_texts {
  grid-column: 1/2;
  grid-row: 1/2;
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: min(15svh, 7.5rem);
}
@media screen and (max-width: 767px) {
  .t-fv_texts {
    justify-content: center;
    padding-bottom: 0;
    padding-top: 5.5svh;
  }
}

.t-fv_text {
  font-size: 3.375rem;
  letter-spacing: 0.3em;
  line-height: 1.462962963;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 767px) {
  .t-fv_text {
    font-size: 2.125rem;
    line-height: 1.4411764706;
    letter-spacing: normal;
  }
}

.t-fv_sns {
  position: absolute;
  bottom: 1.5rem;
  right: 2.25rem;
  width: fit-content;
  z-index: 3;
}
@media screen and (min-width: 1401px) {
  .t-fv_sns {
    left: 50%;
    transform: translateX(min(50vw + 100%, 308.6%));
  }
}
@media screen and (min-width: 1025px) {
  .t-fv_sns {
    column-gap: 1.125rem;
  }
  .t-fv_sns .c-sns_text {
    font-size: 1.0625rem;
  }
  .t-fv_sns .c-sns_instagram {
    width: 2.8125rem;
  }
  .t-fv_sns .c-sns_youtube {
    width: 2.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .t-fv_sns {
    right: 4.6%;
    bottom: min(3.55svh, 1.875rem);
  }
}

.t-fv_scroll {
  writing-mode: vertical-lr;
  position: absolute;
  left: 3.125rem;
  bottom: 0;
  z-index: 4;
  height: 4.875rem;
}
@media screen and (max-width: 767px) {
  .t-fv_scroll {
    height: 3.5rem;
    left: 4.6%;
  }
}
@media screen and (min-width: 1401px) {
  .t-fv_scroll {
    left: 50%;
    transform: translateX(-40.5rem);
  }
}

.t-fv_scroll_icon {
  width: 1px;
  height: 100%;
  background-color: #fff;
  opacity: 0.55;
  position: relative;
}
.t-fv_scroll_icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.5625rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.55;
  animation: scroll 2s ease infinite;
}
@media screen and (max-width: 767px) {
  .t-fv_scroll_icon::before {
    animation-name: scrollSp;
    width: 0.4375rem;
  }
}

.t-fv_scroll_text {
  font-size: 0.75rem;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  margin-left: 0.625rem;
}
@media screen and (max-width: 767px) {
  .t-fv_scroll_text {
    font-size: 0.5rem;
    margin-left: 0.375rem;
  }
}

.t-about {
  padding: 6.75rem 0;
}
@media screen and (min-width: 1025px) {
  .t-about .t-section_title h2 {
    font-size: 2.375rem;
    margin-top: 1.375rem;
  }
  .t-about .t-section_title h2 a {
    padding-right: 3.75rem;
  }
  .t-about .t-section_title h2 a::before {
    width: 2.75rem;
  }
}
@media screen and (max-width: 767px) {
  .t-about {
    padding: 3.75rem 0;
  }
}

.t-about_wrap {
  display: grid;
  grid-template-columns: 64.65% auto;
  column-gap: 2.1875rem;
  margin-top: 2.875rem;
}
@media screen and (max-width: 767px) {
  .t-about_wrap {
    margin-top: 2.125rem;
    grid-template-columns: 1fr;
    row-gap: 3.125rem;
  }
}

.t-about_main,
.t-about_link_img {
  border-radius: 0.625rem;
  overflow: hidden;
}

.t-about_main {
  aspect-ratio: 737/462;
}
.t-about_main img {
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .t-about_main {
    aspect-ratio: 354/390;
  }
}
.t-about_main .c-youtube_play {
  transform: translate(-50%, -30%);
}
@media screen and (max-width: 767px) {
  .t-about_main .c-youtube_play {
    transform: translate(-50%, -42%);
  }
}

.t-about_main_thumb {
  display: grid;
  grid-template-columns: 1fr;
  color: #fff;
}

.t-about_main_thumb_img {
  grid-column: 1/2;
  grid-row: 1/2;
}
.t-about_main_thumb_img img {
  height: 100%;
  object-fit: cover;
}

.t-about_main_thumb_texts {
  grid-column: 1/2;
  grid-row: 1/2;
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 0.375rem;
}
@media screen and (max-width: 767px) {
  .t-about_main_thumb_texts {
    padding-top: 0;
  }
}

.t-about_main_thumb_title {
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .t-about_main_thumb_title {
    font-size: 1.4375rem;
  }
}

.t-about_main_thumb_text {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6666666667;
  display: flex;
  column-gap: 0.875rem;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .t-about_main_thumb_text {
    font-size: 1rem;
    line-height: 2.125;
    margin-top: 0.125rem;
  }
}

.duration {
  font-size: 0.8125rem;
  display: inline-block;
  border: 1px solid #fff;
  border-radius: 62.5rem;
  padding: 0.31em 1.5em;
  line-height: 1;
}

.t-about_main_thumb_name {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.5454545455;
  margin-top: 10.5rem;
}
@media screen and (max-width: 767px) {
  .t-about_main_thumb_name {
    font-size: 1.125rem;
    margin-top: 10.25rem;
  }
}

.t-about_links {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .t-about_links {
    row-gap: 2.25rem;
  }
}

.t-about_link:hover .t-about_link_img img {
  transform: scale(1.05);
}

.t-about_link_img {
  aspect-ratio: 368/200;
  overflow: hidden;
}
.t-about_link_img img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.t-about_link_text {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3333333333;
  color: #285F3D;
  margin-top: 0.625rem;
}

.t-works {
  margin-top: 2.5rem;
  background: url(../img/top/bg.jpg) no-repeat center/cover;
  padding: 5.625rem 0 7.125rem;
}
@media screen and (max-width: 767px) {
  .t-works {
    padding-bottom: 5.625rem;
  }
}

.t-works_wrapper {
  margin-top: 2.875rem;
}
@media screen and (max-width: 767px) {
  .t-works_wrapper {
    margin-top: 2.625rem;
  }
}

@media screen and (max-width: 767px) {
  .t-works_wrap {
    display: flex;
    flex-direction: column;
    row-gap: 2.125rem;
  }
}

.t-works_lists {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .t-works_lists {
    grid-template-columns: 1fr;
    gap: 2.125rem;
  }
}
@media screen and (min-width: 768px) {
  .t-works_lists:first-child {
    column-gap: 2.625rem;
    grid-template-columns: repeat(2, 1fr);
  }
  .t-works_lists:first-child .t-works_list_img {
    aspect-ratio: 550/234;
  }
  .t-works_lists:nth-child(n+2) {
    margin-top: 2.5rem;
  }
  .t-works_lists:nth-child(n+2) .t-works_list_img {
    aspect-ratio: 348/160;
  }
  .t-works_lists:nth-child(n+2) .t-works_list_title {
    margin-top: 1.5rem;
  }
}

.t-works_list_link:hover .c-link_arrow_front::after {
  transform: scale(1, 1);
}
.t-works_list_link:hover .t-works_list_img img {
  transform: scale(1.05);
}

.t-works_list_img {
  border-radius: 0.625rem;
  overflow: hidden;
}
.t-works_list_img img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.t-works_list_title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #285F3D;
  margin-top: 1.25rem;
}

.t-works_list_text {
  font-size: 0.9375rem;
  line-height: 1.6666666667;
  font-weight: 500;
  margin-top: 0.625rem;
}

.t-activity {
  padding: 8.125rem 0 8.375rem;
}
@media screen and (max-width: 767px) {
  .t-activity {
    padding: 6.25rem 0 6rem;
  }
}

.t-activity_inner {
  display: contents;
}
@media screen and (max-width: 767px) {
  .t-activity_inner {
    display: block;
  }
}

.t-activity_lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 86rem;
  width: 98.29%;
  margin: 5rem auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .t-activity_lists {
    grid-template-columns: 1fr;
    margin-top: 2.25rem;
    width: 100%;
    row-gap: 3.125rem;
  }
}

.t-activity_list_link:hover .c-link_arrow::after {
  transform: scale(1, 1);
}
.t-activity_list_link:hover .t-activity_list_img img {
  transform: scale(1.05);
}

.t-activity_list_img {
  overflow: hidden;
  aspect-ratio: 680/330;
  border-radius: 1.25rem;
}
@media screen and (max-width: 767px) {
  .t-activity_list_img {
    aspect-ratio: 354/170;
    border-radius: 0.625rem;
  }
}
.t-activity_list_img img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.t-activity_list_title {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
  margin-top: 2.25rem;
  color: #285F3D;
}
.t-activity_list_title .c-link_arrow {
  padding-right: 3.45em;
}
.t-activity_list_title .c-link_arrow::before {
  width: 2.75rem;
}
.t-activity_list_title .c-link_arrow:after {
  width: calc(100% - 3.45em);
}
@media screen and (max-width: 767px) {
  .t-activity_list_title {
    text-align: left;
    margin-top: 1.875rem;
  }
}

.t-activity_list_text {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6666666667;
  text-align: center;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .t-activity_list_text {
    text-align: left;
  }
}

.t-recruit_inner {
  display: grid;
  grid-template-columns: 1fr;
}

.t-recruit_bg {
  grid-column: 1/2;
  grid-row: 1/2;
  margin-right: 12.5rem;
  margin-left: calc(50% - 50vw);
  height: 100%;
  border-radius: 0 1.25rem 1.25rem 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .t-recruit_bg {
    margin: 0 calc(50% - 50vw);
    border-radius: 0;
    width: 100vw;
  }
}
.t-recruit_bg img {
  height: 100%;
  object-fit: cover;
}

.t-recruit_contents {
  grid-column: 1/2;
  grid-row: 1/2;
  position: relative;
  z-index: 2;
  padding: 10.625rem 0 9.25rem;
  display: grid;
  grid-template-columns: 15.625rem auto;
  column-gap: 3.125rem;
}
@media screen and (max-width: 767px) {
  .t-recruit_contents {
    grid-template-columns: 1fr;
    padding: 6.125rem 0 5.25rem;
  }
}

.t-recruit_head {
  padding-top: 2.75rem;
}
@media screen and (max-width: 767px) {
  .t-recruit_head {
    padding-top: 0;
  }
}

.t-recruit_body {
  max-width: 50rem;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .t-recruit_body {
    margin-top: 1.875rem;
  }
}

.t-recruit_lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 6.25rem;
  column-gap: 2rem;
}
@media screen and (max-width: 767px) {
  .t-recruit_lists {
    grid-template-columns: 1fr;
    row-gap: 2.375rem;
  }
}

@media screen and (min-width: 768px) {
  .t-recruit_list:first-child {
    grid-column: 1/3;
    grid-row: 1/2;
  }
  .t-recruit_list:first-child .t-recruit_youtube_thumb_img {
    aspect-ratio: 800/418;
  }
  .t-recruit_list:first-child .t-recruit_youtube_thumb_texts {
    padding: 1.25rem 1.75rem;
  }
  .t-recruit_list:first-child .t-recruit_youtube_thumb_title {
    font-size: 2.125rem;
    line-height: 1;
  }
  .t-recruit_list:first-child .t-recruit_youtube_thumb_text {
    font-size: 1.125rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 0.625rem;
    margin-top: 0.625rem;
  }
  .t-recruit_list:nth-child(n+2) .c-youtube_play {
    width: 4.5rem;
    transform: translate(-50%, -66%);
  }
}
@media screen and (max-width: 767px) {
  .t-recruit_list:first-child .t-recruit_youtube_thumb_img {
    aspect-ratio: 354/334;
  }
  .t-recruit_list:first-child .t-recruit_youtube_thumb_texts {
    padding: 1.5rem 0.75rem;
  }
  .t-recruit_list:first-child .t-recruit_youtube_thumb_title {
    font-size: 1.5rem;
    line-height: 1;
  }
  .t-recruit_list:first-child .t-recruit_youtube_thumb_text {
    font-size: 0.9375rem;
    display: flex;
    flex-wrap: wrap;
    column-gap: 0.625rem;
    margin-top: 0.375rem;
  }
  .t-recruit_list:first-child .c-youtube_play {
    width: 5.375rem;
    transform: translate(-50%, -72%);
  }
  .t-recruit_list:nth-child(n+2) .c-youtube_play {
    width: 4.5rem;
    transform: translate(-50%, -66%);
  }
}

.t-recruit_youtube {
  aspect-ratio: 384/250;
}
.t-recruit_youtube.-main {
  aspect-ratio: 800/418;
}
@media screen and (max-width: 767px) {
  .t-recruit_youtube.-main {
    aspect-ratio: 354/334;
  }
}
@media screen and (max-width: 767px) {
  .t-recruit_youtube {
    aspect-ratio: 354/250;
  }
}

.t-recruit_youtube_thumb {
  display: grid;
  grid-template-columns: 1fr;
  color: #fff;
  border-radius: 1.25rem;
  overflow: hidden;
  height: 100%;
}

.t-recruit_youtube_thumb_img {
  grid-column: 1/2;
  grid-row: 1/2;
  min-width: 0;
  aspect-ratio: 384/250;
}
@media screen and (max-width: 767px) {
  .t-recruit_youtube_thumb_img {
    aspect-ratio: 354/250;
  }
}
.t-recruit_youtube_thumb_img img {
  height: 100%;
  object-fit: cover;
}

.t-recruit_youtube_thumb_texts {
  grid-column: 1/2;
  grid-row: 1/2;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.125rem 1.5rem;
}

.t-recruit_youtube_thumb_title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.95;
}

.t-recruit_youtube_thumb_text {
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  align-items: start;
  row-gap: 0.375rem;
  margin-top: -0.25rem;
}

.t-recruit_link {
  text-align: right;
  font-weight: 500;
  line-height: 1.5;
  color: #285F3D;
  margin-top: 6.5rem;
}
@media screen and (max-width: 767px) {
  .t-recruit_link {
    margin-top: 3.125rem;
  }
}
.t-recruit_link .c-link_arrow {
  padding-right: 4em;
}
.t-recruit_link .c-link_arrow::before {
  width: 2.75rem;
}
.t-recruit_link .c-link_arrow::after {
  width: calc(100% - 4em);
}

.t-instagram {
  padding: 8.25rem 0 9.625rem;
}
@media screen and (max-width: 767px) {
  .t-instagram {
    padding: 6.25rem 0 100px;
  }
}

.t-instagram_text {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2.1666666667;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .t-instagram_text {
    font-size: 0.9375rem;
    line-height: 1.6666666667;
    text-align: left;
    margin-top: 2.375rem;
  }
}

.t-instagram_wrap {
  aspect-ratio: 1140/175;
  background-color: black;
  margin-top: 3.375rem;
}
@media screen and (max-width: 767px) {
  .t-instagram_wrap {
    aspect-ratio: 354/234;
    margin-top: 2.125rem;
  }
}

.t-instagram_links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 0.625rem;
  column-gap: 4.5rem;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .t-instagram_links {
    column-gap: 1.25rem;
    justify-content: space-between;
    max-width: 22.125rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2.125rem;
  }
}

.t-instagram_link_url {
  display: flex;
  align-items: center;
  column-gap: 1rem;
  color: #285F3D;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .t-instagram_link_url {
    font-size: 0.8125rem;
  }
}
.t-instagram_link_url .icon {
  display: flex;
  align-items: center;
}
.t-instagram_link_url .icon.-instagram {
  width: 1.25rem;
}
.t-instagram_link_url .icon.-youtube {
  width: 2rem;
}

/*======================================
    about
======================================*/
.p-about {
  padding: 8.125rem 0 16rem;
}
@media screen and (max-width: 767px) {
  .p-about {
    padding: 5.375rem 0 7.125rem;
  }
}

.p-about_youtube {
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-about_youtube {
    aspect-ratio: 960/540;
  }
  .p-about_youtube .t-about_main_thumb_img {
    aspect-ratio: 960/540;
  }
  .p-about_youtube .t-about_main_thumb_img img {
    height: 100%;
    object-fit: cover;
  }
  .p-about_youtube .t-about_main_thumb_title {
    font-size: 2.375rem;
  }
  .p-about_youtube .t-about_main_thumb_texts {
    padding-top: 0;
  }
  .p-about_youtube .t-about_main_thumb_text {
    font-size: 1.25rem;
  }
  .p-about_youtube .t-about_main_thumb_text .duration {
    font-size: 0.875rem;
  }
  .p-about_youtube .t-about_main_thumb_name {
    font-size: 1.125rem;
    margin-top: 12.25rem;
  }
  .p-about_youtube .c-youtube_play {
    transform: translate(-50%, -36%);
  }
}

.p-about-green {
  text-align: center;
  padding: 12.5rem 0 11.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-about-green {
    padding: 4.75rem 0 6.25rem;
  }
}

@media screen and (max-width: 767px) {
  .p-about-green_contents {
    margin-top: 3.375rem;
  }
}

.p-about-green_texts {
  color: #285F3D;
  display: flex;
  flex-direction: column;
  row-gap: 1.625rem;
  margin-top: 1.625rem;
}
@media screen and (min-width: 768px) {
  .p-about-green_head {
    display: contents;
  }
}
@media screen and (max-width: 767px) {
  .p-about-green_head {
    margin-right: calc(50% - 50vw);
  }
}

.p-about-green_img1 {
  width: 14.6875rem;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-about-green_img1 {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-243%, 55%);
  }
}
@media screen and (max-width: 767px) {
  .p-about-green_img1 {
    width: 26.08%;
    position: relative;
    z-index: 2;
  }
}
.p-about-green_img1 img {
  height: 100%;
  object-fit: cover;
}

.p-about-green_img2 {
  width: 28.25rem;
  aspect-ratio: 452/330;
  border-radius: 0.625rem 0 0 0.625rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-about-green_img2 {
    position: absolute;
    right: 50%;
    top: 17.5rem;
    transform: translate(155%, 0);
  }
}
@media screen and (max-width: 767px) {
  .p-about-green_img2 {
    width: 78%;
    margin-left: auto;
    margin-top: -17.5%;
  }
}
.p-about-green_img2 img {
  height: 100%;
  object-fit: cover;
}

.p-about-green_img3 {
  width: 27.25rem;
  aspect-ratio: 436/334;
  border-radius: 0 0.625rem 0.625rem 0;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-about-green_img3 {
    position: absolute;
    left: 50%;
    top: 28.75rem;
    transform: translateX(-160.5%);
  }
}
@media screen and (max-width: 767px) {
  .p-about-green_img3 {
    margin-left: calc(50% - 50vw);
    width: 85.18%;
    aspect-ratio: 302/230;
    margin-top: 2.125rem;
  }
}
.p-about-green_img3 img {
  height: 100%;
  object-fit: cover;
}

.p-about-us {
  margin-top: 4.75rem;
}
@media screen and (max-width: 767px) {
  .p-about-us {
    margin-top: 1.125rem;
  }
}

.p-about-us_list {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-about-us_list {
    column-gap: 3.25rem;
  }
  .p-about-us_list:first-child {
    column-gap: 3.875rem;
  }
  .p-about-us_list:first-child .p-about-us_list_texts {
    width: 28rem;
    margin-left: auto;
  }
  .p-about-us_list:nth-child(odd) {
    margin-left: calc(50% - 50vw);
  }
  .p-about-us_list:nth-child(odd) .p-about-us_list_img {
    border-radius: 0 1.25rem 1.25rem 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  .p-about-us_list:nth-child(odd) .p-about-us_list_img {
    border-radius: 0 0.625rem 0.625rem 0;
  }
}
@media screen and (min-width: 768px) {
  .p-about-us_list:nth-child(even) {
    margin-right: calc(50% - 50vw);
    flex-direction: row-reverse;
  }
  .p-about-us_list:nth-child(even) .p-about-us_list_img {
    border-radius: 1.25rem 0 0 1.25rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  .p-about-us_list:nth-child(even) .p-about-us_list_img {
    border-radius: 0.625rem 0 0 0.625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-about-us_list {
    flex-direction: column;
  }
  .p-about-us_list:nth-child(odd) .p-about-us_list_img {
    border-radius: 0 0.625rem 0.625rem 0;
    margin-left: calc(50% - 50vw);
  }
  .p-about-us_list:nth-child(even) .p-about-us_list_img {
    border-radius: 0.625rem 0 0 0.625rem;
    margin-right: calc(50% - 50vw);
  }
}
.p-about-us_list:nth-child(n+2) {
  margin-top: 9rem;
}
@media screen and (max-width: 767px) {
  .p-about-us_list:nth-child(n+2) {
    margin-top: 3.5rem;
  }
}

.p-about-us_list_img {
  flex: 1;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-about-us_list_img {
    max-height: 28.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-about-us_list_img {
    aspect-ratio: 372/226;
  }
}
.p-about-us_list_img img {
  height: 100%;
  object-fit: cover;
}

@media screen and (min-width: 768px) {
  .p-about-us_list_texts {
    width: 28.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-about-us_list_texts {
    margin-top: 2.125rem;
  }
}

.p-about-us_list_text {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-about-us_list_text {
    margin-top: 1.125rem;
    line-height: 1.8571428571;
  }
}

/*======================================
    company
======================================*/
.p-company {
  margin-top: 8.5rem;
}
@media screen and (max-width: 767px) {
  .p-company {
    margin-top: 3.75rem;
  }
}

.p-company_lists {
  columns: 2;
  column-gap: 5rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 1024px) {
  .p-company_lists {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
    column-gap: 2.5rem;
  }
}

.p-company_list {
  border-top: 1px solid #C9DBCF;
}
.p-company_list:last-child {
  border-bottom: 1px solid #C9DBCF;
}

.p-company_list_dl {
  display: grid;
  grid-template-columns: 6.25rem auto;
  column-gap: 0.875rem;
  align-items: center;
  padding: 1.25rem 0;
}
.p-company_list_dl dt, .p-company_list_dl dd {
  line-height: 1.75;
  font-weight: 500;
}
.p-company_list_dl dt {
  color: #285F3D;
  padding-left: 1em;
}
.p-company_list_dl dd a.c-button_pdf {
  margin-left: 1em;
}

.p-office {
  background-color: #F0F7F6;
  padding: 8.125rem 0 12.25rem;
  margin-top: 8.5rem;
}
@media screen and (max-width: 767px) {
  .p-office {
    margin-top: 5rem;
    padding: 5rem 0;
  }
}

.p-office_lead {
  margin-top: 2rem;
}

.p-office_lists {
  margin-top: 5.875rem;
}

.p-office_list {
  color: #285F3D;
}
.p-office_list:nth-child(n+2) {
  margin-top: 10rem;
}

.p-office_list_main {
  display: grid;
  grid-template-columns: 29.875rem auto;
  column-gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-office_list_main {
    display: flex;
    flex-direction: column;
  }
}

.p-office_list_contents {
  padding-top: 1.125rem;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-office_list_contents {
    display: contents;
  }
}

@media screen and (max-width: 767px) {
  .p-office_list_list_head {
    order: 1;
  }
}

.p-office_list_title {
  font-size: 2.25rem;
  font-weight: 500;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-office_list_title {
    margin-bottom: 1.25rem;
  }
}

.p-office_list_head_text {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8888888889;
}
.p-office_list_head_text span.sm {
  font-size: 0.83em;
  display: inline-block;
  margin-left: 1em;
}

.p-office_list_texts {
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-office_list_texts {
    order: 3;
    margin-top: 1.25rem;
  }
}

.p-office_list_concept {
  display: flex;
  column-gap: 0.9375rem;
  margin-top: 1.875rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .p-office_list_concept {
    flex-direction: column;
    align-items: start;
    row-gap: 0.625rem;
  }
}
.p-office_list_concept dt {
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  background-color: #CEB21A;
  border-radius: 62.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 7.5rem;
  height: 1.5625rem;
}
.p-office_list_concept dd {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.5454545455;
  margin-top: -0.2727272727em;
}

.p-office_list_text {
  margin-bottom: 1.5rem;
}

.p-office_list_text a,
.p-office_list_bottom dd a {
  font-weight: 700;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.p-office_list_text a:hover,
.p-office_list_bottom dd a:hover {
  opacity: 0.7;
}

.p-office_list_bottom {
  margin-top: auto;
  margin-bottom: 1.25rem;
}
.p-office_list_bottom dt {
  font-weight: 700;
  font-size: 1.125rem;
}
.p-office_list_bottom dd {
  margin-top: 0.625rem;
}

.p-office_list_img {
  aspect-ratio: 602/477;
  overflow: hidden;
  border-radius: 0.625rem;
}
.p-office_list_img img {
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-office_list_img {
    order: 2;
  }
}

.p-office_list_gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2.8125rem;
  row-gap: 1.25rem;
  margin-top: 4.375rem;
}
@media screen and (max-width: 1024px) {
  .p-office_list_gallery {
    margin-top: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
    column-gap: 1.25rem;
  }
}

.p-office_list_gallery_img {
  aspect-ratio: 350/230;
  border-radius: 0.625rem;
  overflow: hidden;
}
.p-office_list_gallery_img img {
  height: 100%;
  object-fit: cover;
}

.p-office_list_map_title {
  font-size: 1.5rem;
  font-weight: 300;
  font-family: "Oswald", sans-serif;
  line-height: 1.5;
  color: #95AC9D;
  margin-top: 3.375rem;
  margin-left: 0.1em;
}

.p-office_list_map {
  aspect-ratio: 1140/420;
  margin-top: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-office_list_map {
    aspect-ratio: 5/3;
  }
}
.p-office_list_map iframe {
  width: 100%;
  height: 100%;
}

.p-office_list_map_link {
  display: block;
  width: fit-content;
  margin-left: auto;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.3333333333;
  color: #285F3D;
  padding-left: 1.7em;
  margin-top: 0.875rem;
  position: relative;
  transition: opacity 0.3s ease;
}
.p-office_list_map_link:hover {
  opacity: 0.7;
}
.p-office_list_map_link:hover::before {
  transform: translate(0.2em, -50%);
}
.p-office_list_map_link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1.33em;
  aspect-ratio: 1/1;
  background: url(../img/common/icon_arrow_circle_main.svg) no-repeat center/contain;
  transition: transform 0.3s ease;
}

/*======================================
    history
======================================*/
.p-history {
  padding-bottom: 12.5rem;
}
@media screen and (max-width: 767px) {
  .p-history {
    padding-bottom: 6.25rem;
  }
}

.p-history_lists {
  max-width: 65rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 6.625rem;
}
@media screen and (max-width: 767px) {
  .p-history_lists {
    margin-top: 2.5rem;
  }
}

.p-history_list {
  color: #285F3D;
  position: relative;
  padding-bottom: 4.75rem;
}
.p-history_list:first-child::after {
  top: -6.625rem;
  height: calc(100% + 6.625rem);
}
@media screen and (max-width: 767px) {
  .p-history_list:first-child::after {
    top: -2.5rem;
    height: calc(100% + 2.5rem);
  }
}
.p-history_list:last-child {
  padding-bottom: 0;
}
.p-history_list:last-child::after {
  display: none;
}
.p-history_list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #CEB21A;
  z-index: 2;
  transform: translate(-50%, 50%);
}
.p-history_list::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: #C9DBCF;
  transform: translateX(-50%);
  z-index: 1;
}

.p-history_dl {
  display: grid;
  grid-template-columns: 12.5rem auto;
}
@media screen and (max-width: 767px) {
  .p-history_dl {
    grid-template-columns: 1fr;
    row-gap: 1.25rem;
  }
}
.p-history_dl dt {
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.1;
}
@media screen and (max-width: 767px) {
  .p-history_dl dt {
    display: flex;
    align-items: center;
    column-gap: 0.625rem;
    padding-left: 1.875rem;
  }
}
.p-history_dl dt .sm {
  display: block;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-history_dl dd {
    padding-left: 1.875rem;
  }
}

.p-history_text {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-history_text {
    font-size: 1rem;
  }
}

.p-history_gallery,
.p-history_img {
  margin-top: 1.375rem;
}

.p-history_img,
.p-history_gallery_img {
  overflow: hidden;
  border-radius: 0.625rem;
}

.p-history_gallery {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1.875rem;
  row-gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-history_gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(9.375rem, 1fr));
    gap: 0.625rem;
  }
}

.p-history_gallery_img {
  aspect-ratio: 220/150;
}
.p-history_gallery_img img {
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-history_gallery_img {
    width: 13.75rem;
  }
}

/*======================================
    work
======================================*/
.p-work {
  padding: 6.625rem 0;
}

@media screen and (min-width: 768px) {
  .p-work_wrapper .t-works_lists:first-child .t-works_list_img {
    aspect-ratio: 550/320;
  }
  .p-work_wrapper .t-works_lists:nth-child(n+2) {
    margin-top: 5.25rem;
  }
  .p-work_wrapper .t-works_lists:nth-child(n+2) .t-works_list_img {
    aspect-ratio: 348/210;
  }
  .p-work_wrapper .t-works_lists .t-works_list_title {
    font-size: 1.375rem;
    margin-top: 2.375rem;
  }
  .p-work_wrapper .t-works_lists .t-works_list_title .c-link_arrow_front {
    padding-left: 2.77em;
  }
  .p-work_wrapper .t-works_lists .t-works_list_title .c-link_arrow_front::before {
    width: 2.75rem;
  }
  .p-work_wrapper .t-works_lists .t-works_list_title .c-link_arrow_front::after {
    width: calc(100% - 2.77em);
    left: 2.77em;
  }
  .p-work_wrapper .t-works_lists .t-works_list_text {
    margin-top: 1.75rem;
  }
}

/*======================================
    work tree planting
======================================*/
.p-planting {
  padding: 6.625rem 0;
}
@media screen and (max-width: 767px) {
  .p-planting {
    padding: 3.75rem 0 6.25rem;
  }
}

.p-planting_lead {
  color: #285F3D;
  line-height: 1.5555555556;
}
@media screen and (min-width: 768px) {
  .p-planting_lead {
    text-align: center;
  }
}

.p-planting_section_wrap {
  margin-top: 0.625rem;
}

.p-planting_section {
  padding: 6.25rem 0;
}
.p-planting_section:nth-child(n+2) {
  border-top: 1px solid #DAE0DC;
}
.p-planting_section .c-section_title {
  margin-bottom: 2.125rem;
}

/*======================================
    work garden design
======================================*/
.p-garden {
  padding: 6.625rem 0;
}
@media screen and (max-width: 767px) {
  .p-garden {
    padding: 3.75rem 0 6.25rem;
  }
}

.p-garden_lead {
  line-height: 1.5555555556;
  color: #285F3D;
  margin-bottom: 6.5rem;
}
@media screen and (max-width: 767px) {
  .p-garden_lead {
    margin-bottom: 3.75rem;
  }
}

.p-garden_section {
  margin-top: 5.375rem;
}
@media screen and (max-width: 767px) {
  .p-garden_section {
    margin-top: 3.75rem;
  }
}
.p-garden_section .c-section_title {
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-garden_section .c-section_title {
    margin-bottom: 1.25rem;
  }
}

.p-garden_personal {
  margin-top: 1.875rem;
  display: grid;
  grid-template-columns: 46.5% auto;
  column-gap: 2.5rem;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .p-garden_personal {
    grid-template-columns: 1fr;
    row-gap: 1.25rem;
  }
}

.p-garden_personal_column2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1.875rem;
  align-items: flex-end;
}

.p-garden_en {
  font-size: 1.5rem;
  font-weight: 300;
  font-family: "Oswald", sans-serif;
  line-height: 1.5;
  color: #95AC9D;
  margin-bottom: 0.625rem;
}

.p-garden_personal_column_img {
  aspect-ratio: 270/180;
  border-radius: 0.625rem;
  overflow: hidden;
}
.p-garden_personal_column_img img {
  height: 100%;
  object-fit: cover;
}

.p-garden_personal_text {
  line-height: 1.625;
  margin-top: 1.5rem;
}

.p-garden_oversea_lead {
  margin-top: 2.25rem;
}

.p-garden_oversea_gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
  column-gap: 2.5rem;
  row-gap: 3.125rem;
  margin-top: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-garden_oversea_gallery {
    margin-top: 1.875rem;
    row-gap: 1.25rem;
  }
}

.p-garden_oversea_gallery_item {
  aspect-ratio: 354/220;
}
.p-garden_oversea_gallery_item img {
  height: 100%;
  object-fit: cover;
}

.p-garden_cutting {
  display: grid;
  grid-template-columns: auto 50%;
  column-gap: 3.75rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 1024px) {
  .p-garden_cutting {
    column-gap: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-garden_cutting {
    margin-top: 1.875rem;
    grid-template-columns: 1fr;
    row-gap: 2.5rem;
  }
}

.p-garden_cutting_ex1,
.p-garden_cutting_ex2 {
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-garden_cutting_ex1,
  .p-garden_cutting_ex2 {
    margin-bottom: 1rem;
  }
}

.p-garden_cutting_ex1 {
  display: grid;
  grid-template-columns: auto 59.2%;
  column-gap: 2.125rem;
  align-items: flex-end;
}
@media screen and (max-width: 1024px) {
  .p-garden_cutting_ex1 {
    column-gap: 1.25rem;
  }
}

.p-garden_cutting_img {
  overflow: hidden;
  border-radius: 0.625rem;
}
.p-garden_cutting_img img {
  height: 100%;
  object-fit: cover;
}

.p-garden_cutting_ex1-1 {
  aspect-ratio: 172/180;
}

.p-garden_cutting_ex1-2 {
  aspect-ratio: 302/180;
}

.p-garden_cutting_ex2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1.875rem;
}
@media screen and (max-width: 1024px) {
  .p-garden_cutting_ex2 {
    column-gap: 1.25rem;
  }
}

.p-garden_cutting_ex2-1,
.p-garden_cutting_ex2-2 {
  aspect-ratio: 270/180;
}

.p-garden_shokunin {
  display: block;
  margin-top: 6.25rem;
  padding: 1.375rem;
  background-color: #F7FFFA;
  border: 0.25rem solid #C9DBCF;
  border-radius: 0.625rem;
}
.p-garden_shokunin:hover .c-link_arrow::after {
  transform: scale(1, 1);
}
@media screen and (max-width: 767px) {
  .p-garden_shokunin {
    padding: 2.5rem 1.25rem;
    margin-top: 5rem;
  }
}

.p-garden_shokunin_inner {
  max-width: 59.5rem;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 34.14% auto;
  align-items: center;
  column-gap: 2.5rem;
}
@media screen and (max-width: 1024px) {
  .p-garden_shokunin_inner {
    column-gap: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-garden_shokunin_inner {
    grid-template-columns: 1fr;
    row-gap: 2.5rem;
  }
}
.p-garden_shokunin_inner .logo {
  display: block;
}
@media screen and (max-width: 767px) {
  .p-garden_shokunin_inner .logo {
    width: 80%;
    max-width: 25rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-garden_shokunin_text {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.2142857143;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  width: fit-content;
  margin-left: auto;
  margin-right: 0.3em;
  color: #285F3D;
}
@media screen and (min-width: 768px) {
  .p-garden_shokunin_text .c-link_arrow {
    padding-right: 3.36em;
  }
  .p-garden_shokunin_text .c-link_arrow::before {
    width: 2.75rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-garden_shokunin_text {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-garden_shokunin_text {
    font-size: 1.125rem;
  }
}

/*======================================
    work park management
======================================*/
.p-park {
  padding: 6.5rem 0 3.75rem;
}

.p-park_lead {
  color: #285F3D;
}
@media screen and (min-width: 768px) {
  .p-park_lead {
    line-height: 1.5555555556;
    text-align: center;
  }
}

.p-park_wrap {
  margin-top: 4.75rem;
}
@media screen and (max-width: 767px) {
  .p-park_wrap {
    margin-top: 2.5rem;
  }
}

.p-park_section {
  padding: 7.5rem 0;
}
@media screen and (max-width: 767px) {
  .p-park_section {
    padding: 3.75rem 0;
  }
}
.p-park_section:nth-child(n+2) {
  border-top: 1px solid #DAE0DC;
}

.p-park_section_lead {
  color: #285F3D;
  margin-top: 0.375rem;
}

.p-park_management_lists {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
  column-gap: 2.5rem;
  margin-top: 3.125rem;
  row-gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-park_management_lists {
    margin-top: 1.875rem;
  }
}

.p-park_management_list_title {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.2727272727;
  color: #285F3D;
}
@media screen and (max-width: 767px) {
  .p-park_management_list_title {
    font-size: 1.25rem;
  }
}

.p-park_management_list_img {
  aspect-ratio: 354/220;
  overflow: hidden;
  border-radius: 0.625rem;
  margin-top: 0.625rem;
}
.p-park_management_list_img img {
  height: 100%;
  object-fit: cover;
}

.p-park_section_column2 {
  display: grid;
  grid-template-columns: auto 56.32%;
  column-gap: 2.5rem;
}
@media screen and (max-width: 1024px) {
  .p-park_section_column2 {
    grid-template-columns: repeat(2, 1fr);
    align-items: flex-end;
  }
}
@media screen and (max-width: 767px) {
  .p-park_section_column2 {
    grid-template-columns: 1fr;
    row-gap: 1.25rem;
  }
}

.p-park_section_column2_head {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-park_section_column2_head {
    max-width: 23.75rem;
  }
  .p-park_section_column2_head .c-section_title {
    margin-top: -0.25em;
  }
  .p-park_section_column2_head .p-park_section_lead {
    margin-bottom: 1.25rem;
    line-height: 1.5555555556;
  }
}

@media screen and (min-width: 768px) {
  .p-park_mortar_head {
    justify-content: flex-end;
  }
}

.p-park_dogrun_img1 {
  margin-top: auto;
  aspect-ratio: 380/214;
}
@media screen and (max-width: 767px) {
  .p-park_dogrun_img1 {
    margin-top: 1.875rem;
  }
}

.p-park_dogrun_img2 {
  aspect-ratio: 642/360;
}

.p-park_dogrun_text {
  line-height: 1.625;
  margin-top: 2.375rem;
}

.p-park_mortar_img1 {
  aspect-ratio: 380/286;
}
@media screen and (min-width: 1025px) {
  .p-park_mortar_img1 {
    margin-top: 4.125rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-park_mortar_img1 {
    margin-top: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-park_mortar_img1 {
    margin-top: 1.875rem;
  }
}

.p-park_mortar_img2 {
  aspect-ratio: 642/552;
}

/*======================================
    work overseas greening
======================================*/
.p-greening {
  background-color: #F4F2ED;
  padding: 4.625rem 0 12.125rem;
}
@media screen and (max-width: 767px) {
  .p-greening {
    padding: 3.75rem 0 6.25rem;
  }
}

.p-greening_lead {
  color: #285F3D;
}
@media screen and (min-width: 768px) {
  .p-greening_lead {
    text-align: center;
  }
}

.p-greening_graph {
  max-width: 53.4375rem;
  margin: 4rem auto 0;
}

.p-greening_management {
  margin-top: 6.25rem;
  display: flex;
  flex-direction: column;
  row-gap: 7rem;
}
@media screen and (max-width: 767px) {
  .p-greening_management {
    row-gap: 3.125rem;
  }
}

.p-greening_management_wrap {
  display: grid;
  grid-template-columns: auto 64%;
  column-gap: 4.375rem;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .p-greening_management_wrap {
    column-gap: 1.25rem;
    grid-template-columns: auto 45%;
  }
}
@media screen and (max-width: 767px) {
  .p-greening_management_wrap {
    grid-template-columns: 1fr;
  }
}

.p-greening_management_head .c-section_title {
  margin-bottom: 1.25rem;
}

.p-greening_management_text {
  color: #285F3D;
  line-height: 1.75;
}

.p-greening_management_body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.875rem;
}
@media screen and (max-width: 1024px) {
  .p-greening_management_body {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .p-greening_management_body {
    margin-top: 3.125rem;
  }
}

.p-greening_management_body_img {
  aspect-ratio: 350/240;
}
.p-greening_management_body_img img {
  height: 100%;
  object-fit: cover;
}

.p-greening_tree {
  margin-top: 8.75rem;
  display: grid;
  grid-template-columns: auto 27.2%;
  column-gap: 4rem;
  align-items: flex-end;
}
@media screen and (max-width: 1024px) {
  .p-greening_tree {
    column-gap: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-greening_tree {
    grid-template-columns: 1fr;
    row-gap: 1.875rem;
    margin-top: 5rem;
  }
}

.p-greening_section_title {
  font-size: 1.75rem;
  line-height: 1.2142857143;
  font-weight: 500;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  color: #285F3D;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-greening_section_title {
    font-size: 1.25rem;
  }
}

.p-greening_tree_head_imgs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 4rem;
  margin-top: 5.125rem;
}
@media screen and (max-width: 1024px) {
  .p-greening_tree_head_imgs {
    column-gap: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-greening_tree_head_imgs {
    grid-template-columns: 1fr;
    margin-top: 2.5rem;
    row-gap: 1.875rem;
  }
}

.p-greening_tree_img {
  aspect-ratio: 350/240;
}
.p-greening_tree_img img {
  height: 100%;
  object-fit: cover;
}

.p-greening_tree_img3 {
  aspect-ratio: 310/412;
}
.p-greening_tree_img3 img {
  height: 100%;
  object-fit: cover;
}

.p-greening_bee {
  display: grid;
  grid-template-columns: auto 54.56%;
  column-gap: 3.625rem;
  margin-top: 7.375rem;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .p-greening_bee {
    column-gap: 2.5rem;
    grid-template-columns: 1fr;
    row-gap: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-greening_bee {
    grid-template-columns: 1fr;
    margin-top: 5rem;
  }
}

.p-greening_bee_body {
  display: grid;
  grid-template-columns: 53.38% auto;
  column-gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-greening_bee_body {
    column-gap: 1.25rem;
  }
}

.p-greening_bee_img1 {
  aspect-ratio: 332/248;
}
.p-greening_bee_img1 img {
  height: 100%;
  object-fit: cover;
}

.p-greening_bee_img2 {
  aspect-ratio: 250/250;
}
.p-greening_bee_img2 img {
  height: 100%;
  object-fit: cover;
}

.p-greening_internship {
  margin-top: 7.75rem;
}
@media screen and (min-width: 768px) {
  .p-greening_internship {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    column-gap: 3.125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-greening_internship {
    margin-top: 5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-greening_internship_head {
    flex: 1;
  }
}

@media screen and (min-width: 768px) {
  .p-greening_internship_body {
    width: 50.88%;
  }
}
@media screen and (max-width: 767px) {
  .p-greening_internship_body {
    margin-top: 1.875rem;
  }
}

.p-greening_eco {
  display: grid;
  grid-template-columns: 33.68% auto;
  background-color: #F7FFFA;
  border: 1px solid #95AC9D;
  border-radius: 0.875rem;
  overflow: hidden;
  margin-top: 8.5rem;
  column-gap: 5.125rem;
}
.p-greening_eco:hover .c-link_arrow::after {
  transform: scale(1, 1);
}
@media screen and (max-width: 1024px) {
  .p-greening_eco {
    column-gap: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-greening_eco {
    grid-template-columns: 1fr;
    border-radius: 0.625rem;
    margin-top: 6.25rem;
  }
}

.p-greening_eco_img {
  aspect-ratio: 384/212;
  height: 100%;
}
.p-greening_eco_img img {
  height: 100%;
  object-fit: cover;
}

.p-greening_eco_texts {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  color: #285F3D;
  padding-right: 2.5rem;
}
@media screen and (max-width: 1024px) {
  .p-greening_eco_texts {
    padding: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-greening_eco_texts {
    padding: 1.875rem 1.25rem;
  }
}
.p-greening_eco_texts .c-link_arrow {
  font-size: 1.75rem;
  padding-right: 2.357em;
}
.p-greening_eco_texts .c-link_arrow::before {
  width: 1.57em;
}
@media screen and (max-width: 1024px) {
  .p-greening_eco_texts .c-link_arrow {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-greening_eco_texts .c-link_arrow {
    font-size: 1.125rem;
  }
}

/*======================================
    work application
======================================*/
.p-app {
  padding: 4.75rem 0 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-app {
    padding-top: 3.125rem;
  }
}

.p-app_lead {
  color: #285F3D;
}
@media screen and (min-width: 768px) {
  .p-app_lead {
    text-align: center;
  }
}

.p-app_youtube {
  max-width: 52rem;
  margin: 4.625rem auto 0;
  aspect-ratio: 832/470;
  border-radius: 0.625rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-app_youtube {
    aspect-ratio: 354/334;
    margin-top: 2.5rem;
  }
  .p-app_youtube .c-youtube_play {
    width: 5.625rem;
  }
}

.p-app_youtube_thumb {
  display: grid;
  grid-template-columns: 1fr;
  height: 100%;
}
.p-app_youtube_thumb::before {
  opacity: 0.2;
}
.p-app_youtube_thumb::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 7.8125rem;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
}

.p-app_youtube_thumb_img {
  grid-column: 1/2;
  grid-row: 1/2;
  height: 100%;
}
.p-app_youtube_thumb_img img {
  height: 100%;
  object-fit: cover;
}

.p-app_youtube_thumb_texts {
  color: #fff;
  grid-column: 1/2;
  grid-row: 1/2;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  row-gap: 0.625rem;
  column-gap: 1rem;
  padding: 1.25rem 0.9375rem;
  margin-top: auto;
}

.p-app_youtube_thumb_title {
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.3076923077;
}
@media screen and (max-width: 767px) {
  .p-app_youtube_thumb_title {
    font-size: 0.875rem;
  }
}

.p-app_youtube_thumb_text .duration {
  margin-bottom: 0.4em;
}

.p-app_items {
  margin-top: 6.875rem;
}
@media screen and (max-width: 767px) {
  .p-app_items {
    margin-top: 3.125rem;
  }
}

.p-app_item {
  background-color: #F0F7F6;
  border-radius: 0.625rem;
  padding: 1.875rem 2.5rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-app_item {
    padding: 1.875rem 1.25rem;
  }
}
.p-app_item:nth-child(n+2) {
  margin-top: 1.25rem;
}

.p-app_item_title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5416666667;
  color: #285F3D;
  margin-bottom: 1rem;
}

.p-app_item_list li {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.25;
}
@media screen and (max-width: 767px) {
  .p-app_item_list li {
    font-size: 1rem;
  }
}

.p-app_item_text {
  line-height: 1.625;
  margin-top: 1rem;
}

.p-app_section {
  margin-top: 6.25rem;
}
@media screen and (min-width: 768px) {
  .p-app_section.-staff {
    margin-top: 7rem;
  }
}

.p-app_section_title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5416666667;
  color: #285F3D;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-app_section_title {
    font-size: 1.25rem;
  }
}
.p-app_section_title .lg {
  display: block;
  font-size: 1.58em;
}

.p-app_section_lead {
  color: #285F3D;
  line-height: 1.625;
}
@media screen and (min-width: 768px) {
  .p-app_section_lead {
    text-align: center;
  }
}

.p-app_section_wrap {
  display: grid;
  grid-template-columns: 26.25rem auto;
  column-gap: 2.75rem;
  margin-top: 2.875rem;
  align-items: start;
}
@media screen and (max-width: 1024px) {
  .p-app_section_wrap {
    column-gap: 1.875rem;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    row-gap: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-app_section_wrap {
    grid-template-columns: 1fr;
  }
}

.p-app_target {
  background-color: #F0F7F6;
  border: 0.3125rem solid #C9DBCF;
  border-radius: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.25rem 2rem;
  color: #285F3D;
}
@media screen and (min-width: 1025px) {
  .p-app_target {
    min-height: 30rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-app_target {
    padding: 1.875rem 1.25rem;
  }
}

.p-app_target_title {
  text-align: center;
  font-weight: 500;
  font-size: 1.375rem;
  line-height: 1.1818181818;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-app_target_title {
    font-size: 1.25rem;
  }
}

.p-app_target_list {
  font-weight: 700;
  padding-left: 1.75em;
  position: relative;
}
.p-app_target_list::before {
  content: "";
  position: absolute;
  top: 1.0625em;
  left: 0;
  transform: translateY(-50%);
  width: 1.375em;
  aspect-ratio: 1/1;
  background: url(../img/common/icon_check.svg) no-repeat center/contain;
}

.p-app_target_link {
  margin-top: 1.375rem;
}

@media screen and (max-width: 1024px) {
  .p-app_target_img {
    margin-left: auto;
    margin-right: auto;
  }
}

.p-app_target_support {
  transform: translateY(-3%);
  max-width: 38.25rem;
}

.p-app_target_staff {
  transform: translateX(2%);
}

/*======================================
    social oversea
======================================*/
.p-oversea {
  padding: 10rem 0 9.75rem;
}
@media screen and (max-width: 767px) {
  .p-oversea {
    padding: 3.75rem 0 6.25rem;
  }
}

.p-oversea_message {
  position: relative;
}

.p-oversea_message_imgs {
  display: contents;
}
@media screen and (max-width: 1024px) {
  .p-oversea_message_imgs {
    display: grid;
    grid-template-columns: 26% auto;
    column-gap: 0.625rem;
    margin: 3.75rem auto 0;
  }
}

.p-oversea_message_img1 {
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  .p-oversea_message_img1 {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-389%, -4.375rem);
    width: 11.25rem;
    border-radius: 0 0.625rem 0.625rem 0;
  }
}
@media screen and (max-width: 767px) {
  .p-oversea_message_img1 {
    border-radius: 0.625rem;
  }
}

.p-oversea_message_img2 {
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  .p-oversea_message_img2 {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(138%, 2.125rem);
    width: 18.4375rem;
    border-radius: 0.625rem 0 0 0.625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-oversea_message_img2 {
    border-radius: 0.625rem;
  }
}

.p-oversea_message_title {
  text-align: center;
}

.p-oversea_message_lead {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  line-height: 1.4166666667;
  text-align: center;
  margin-top: 1.5rem;
  color: #285F3D;
}
@media screen and (max-width: 767px) {
  .p-oversea_message_lead {
    font-size: 1rem;
  }
}

.p-oversea_message_texts {
  display: flex;
  flex-direction: column;
  text-align: center;
  row-gap: 1.375rem;
  color: #285F3D;
  margin-top: 3.875rem;
}
@media screen and (max-width: 767px) {
  .p-oversea_message_texts {
    margin-top: 2.5rem;
  }
}

.p-oversea_report {
  margin-top: 7.25rem;
}
@media screen and (max-width: 767px) {
  .p-oversea_report {
    margin-top: 3.75rem;
  }
}

.p-oversea_gallery1 {
  margin-top: 10.625rem;
  display: grid;
  grid-template-columns: 54.21% auto;
  align-items: center;
  column-gap: 1.875rem;
}
@media screen and (min-width: 1025px) {
  .p-oversea_gallery1 .p-oversea_gallery_texts {
    max-width: 25rem;
    margin-left: auto;
    margin-right: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-oversea_gallery1 {
    margin-top: 6.25rem;
    display: flex;
    flex-direction: column-reverse;
    row-gap: 2.5rem;
  }
}

.p-oversea_gallery1_imgs {
  display: grid;
  grid-template-columns: auto 35.6%;
  column-gap: 1.75rem;
}
@media screen and (max-width: 1024px) {
  .p-oversea_gallery1_imgs {
    column-gap: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-oversea_gallery1_imgs {
    column-gap: 1.25rem;
  }
}

.p-oversea_gallery1_img1 {
  aspect-ratio: 370/260;
}

.p-oversea_gallery1_img2 {
  aspect-ratio: 220/260;
}

.p-oversea_gallery_texts {
  color: #285F3D;
}
.p-oversea_gallery_texts .c-section_text_lg {
  line-height: 1.7;
}

.p-oversea_gallery2 {
  margin-top: 7.5rem;
  display: grid;
  grid-template-columns: auto 67.54%;
  column-gap: 1.875rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-oversea_gallery2 {
    grid-template-columns: 1fr;
    row-gap: 2.5rem;
  }
}

.p-oversea_gallery2_imgs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1.875rem;
}
@media screen and (max-width: 1024px) {
  .p-oversea_gallery2_imgs {
    column-gap: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-oversea_gallery2_imgs {
    grid-template-columns: repeat(auto-fit, minmax(15.625rem, 1fr));
    row-gap: 1.25rem;
  }
}

.p-oversea_gallery2_img1,
.p-oversea_gallery2_img2 {
  aspect-ratio: 370/260;
}

.p-oversea_gallery3 {
  margin-top: 5.75rem;
  display: grid;
  grid-template-columns: 32.46% auto;
  align-items: center;
  column-gap: 1.875rem;
}
@media screen and (min-width: 1025px) {
  .p-oversea_gallery3 .p-oversea_gallery_texts {
    max-width: 41.125rem;
    margin-left: auto;
    margin-right: 1.875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-oversea_gallery3 {
    display: flex;
    flex-direction: column-reverse;
    row-gap: 2.5rem;
  }
}

.p-oversea_gallery3_img {
  aspect-ratio: 370/260;
}

.p-oversea_gallery1_img1 img,
.p-oversea_gallery1_img2 img,
.p-oversea_gallery2_img1 img,
.p-oversea_gallery2_img2 img,
.p-oversea_gallery3_img img {
  height: 100%;
  object-fit: cover;
}

/*======================================
    social local
======================================*/
.p-local {
  padding: 4.75rem 0 13.625rem;
}
@media screen and (max-width: 767px) {
  .p-local {
    padding: 3.75rem 0 6.25rem;
  }
}

.p-local_column2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2.5rem;
}
@media screen and (max-width: 1024px) {
  .p-local_column2 {
    grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
    column-gap: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-local_column2 {
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    row-gap: 1.25rem;
  }
}

.p-local_column_img {
  aspect-ratio: 550/300;
}
.p-local_column_img img {
  height: 100%;
  object-fit: cover;
}

.p-local_section {
  text-align: center;
  margin-top: 3.75rem;
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .p-local_section.p-local_green {
    margin-top: 4rem;
    margin-bottom: 6.25rem;
  }
  .p-local_section.p-local_activity {
    margin-top: 3.125rem;
  }
  .p-local_section.p-local_support {
    margin-top: 8.125rem;
  }
  .p-local_section.p-local_kids {
    margin-top: 9rem;
  }
}
@media screen and (max-width: 767px) {
  .p-local_section.p-local_green {
    margin-bottom: 2.5rem;
  }
}

.p-local_section_texts {
  display: flex;
  flex-direction: column;
  row-gap: 0.75rem;
  margin-top: 1.5rem;
}

.p-local_support_img {
  max-width: 43.5rem;
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 696/380;
  margin-bottom: 2.25rem;
}
.p-local_support_img img {
  height: 100%;
  object-fit: cover;
}

/*======================================
    staff
======================================*/
.p-staff {
  padding: 6.875rem 0 12.5rem;
}
@media screen and (max-width: 767px) {
  .p-staff {
    padding: 3.125rem 0 6.25rem;
  }
}

.p-staff_lists {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(12.5rem, 1fr));
  column-gap: 2.5rem;
  row-gap: 2.75rem;
}
@media screen and (max-width: 767px) {
  .p-staff_lists {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1.25rem;
    row-gap: 2.5rem;
  }
}

.p-staff_list:hover .p-staff_list_img img {
  transform: scale(1.05);
}

.p-staff_list_img {
  border-radius: 1.25rem;
  overflow: hidden;
  aspect-ratio: 254/340;
  width: 100%;
  background-color: #C9DBCF;
}
.p-staff_list_img img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.p-staff_list_name {
  text-align: center;
  color: #285F3D;
  margin-top: 1.5rem;
}

/*======================================
    recruit
======================================*/
.p-recruit {
  padding: 9.875rem 0;
}
@media screen and (max-width: 767px) {
  .p-recruit {
    padding: 3.125rem 0 6.25rem;
  }
}

.p-recruit_videos {
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
}

.p-recruit_video_main .c-youtube {
  aspect-ratio: 800/418;
  border-radius: 1.25rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-recruit_video_main .c-youtube {
    border-radius: 0.625rem;
  }
}
@media screen and (min-width: 768px) {
  .p-recruit_video_main .p-recruit_video_texts {
    display: grid;
    grid-template-columns: 16.875rem auto;
  }
}

.p-recruit_video_columns {
  margin-top: 3.75rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15.625rem, 1fr));
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .p-recruit_video_columns {
    margin-top: 2.5rem;
  }
}

.p-recruit_video_column {
  min-width: 0;
}
.p-recruit_video_column .c-youtube {
  aspect-ratio: 384/250;
  border-radius: 1.25rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-recruit_video_column .c-youtube {
    border-radius: 0.625rem;
  }
}

.p-recruit_video_texts {
  margin-top: 1.25rem;
}
.p-recruit_video_texts dt {
  color: #285F3D;
  font-weight: 700;
  line-height: 1.95;
}
.p-recruit_video_texts dd {
  line-height: 2.1666666667;
}

.p-recruit_section {
  margin-top: 6.25rem;
}

@media screen and (min-width: 768px) {
  .p-recruit_message {
    margin-top: 8.5rem;
  }
}

.p-recruit_message_texts {
  color: #285F3D;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-recruit_message_texts {
    text-align: center;
  }
}

.p-recruit_message_hidden {
  display: none;
}

.p-recruit_details_lists {
  max-width: 44rem;
  margin: 3rem auto 0;
}

.p-recruit_details_list {
  border-top: 1px solid #F4F2ED;
}
.p-recruit_details_list:last-child {
  border-bottom: 1px solid #F4F2ED;
}

.p-recruit_details_dl {
  display: grid;
  grid-template-columns: 9.375rem auto;
  align-items: center;
  column-gap: 1.25rem;
  color: #285F3D;
  min-height: 4.3125rem;
  padding: 1.25rem 0;
}
@media screen and (max-width: 767px) {
  .p-recruit_details_dl {
    grid-template-columns: 1fr;
  }
}
.p-recruit_details_dl dt, .p-recruit_details_dl dd {
  line-height: 2.375;
}
.p-recruit_details_dl dt {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-recruit_details_dl dt {
    padding-left: 1rem;
  }
}
.p-recruit_form_area {
  max-width: 47.125rem;
  margin-top: 3.375rem;
}
@media screen and (max-width: 767px) {
  .p-recruit_form_area {
    margin-top: 1.25rem;
  }
}

/*======================================
    contact
======================================*/
.p-contact {
  padding: 6.75rem 0;
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding: 3.125rem 0 6.25rem;
  }
}
.p-contact .form_wrap {
  margin-top: 3.125rem;
}

.p-contact_form_area {
  max-width: 63.75rem;
}

/*======================================
    page simple
======================================*/
.p-simple {
  padding: 6.25rem 0;
}
@media screen and (max-width: 767px) {
  .p-simple {
    padding: 3.125rem 0 6.25rem;
  }
}

.p-simple_title {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  line-height: 1.7954545455;
  color: #285F3D;
  font-size: 2.75rem;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-simple_title {
    font-size: 1.75rem;
  }
}

.c-contents {
  font-weight: 500;
  line-height: 2.125;
  line-height: 1.625;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .c-contents {
    font-size: 0.875rem;
    line-height: 2;
  }
}
.c-contents h2 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  color: #285F3D;
  margin-top: 3.75rem;
  margin-bottom: 1.25rem;
}
.c-contents h3 {
  font-weight: 700;
  color: #285F3D;
  font-size: 1.125rem;
  line-height: 1.5;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}
.c-contents p {
  font-weight: 500;
  margin-bottom: 1.625em;
}
.c-contents ul ul li::before {
  background-color: #fff;
  border: 2px solid #C9DBCF;
  width: 0.3em;
  height: 0.3em;
}
.c-contents ul li {
  padding-left: 1em;
  font-weight: 500;
  position: relative;
}
.c-contents ul li::before {
  content: "";
  position: absolute;
  top: 0.8125em;
  left: 0;
  transform: translateY(-50%);
  width: 0.5em;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #C9DBCF;
}
.c-contents ol {
  counter-reset: li;
}
.c-contents ol li {
  margin-left: 1em;
  position: relative;
}
.c-contents ol li::before {
  content: counter(li) ".";
  counter-increment: li;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  font-weight: 700;
  color: #285F3D;
}
.c-contents ol ol {
  counter-reset: li;
}
.c-contents ul, .c-contents ol {
  margin: 1.25rem 0;
}
.c-contents ul ul, .c-contents ul ol, .c-contents ol ul, .c-contents ol ol {
  margin: 0.625rem 0;
}
.c-contents ul li:nth-child(n+2), .c-contents ol li:nth-child(n+2) {
  margin-top: 0.5em;
}
.c-contents a {
  color: #285F3D;
  font-weight: inherit;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.c-contents a:hover {
  opacity: 0.7;
}
.c-contents img {
  display: block;
  margin: 3.75rem auto;
}
@media screen and (max-width: 767px) {
  .c-contents img {
    margin: 2.5rem auto;
  }
}

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