@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.eot?i59q2k");
  src: url("../fonts/icomoon.eot?i59q2k#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?i59q2k") format("truetype"), url("../fonts/icomoon.woff?i59q2k") format("woff"), url("../fonts/icomoon.svg?i59q2k#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-arrow:before {
  content: "\e900";
}

.icon-mail:before {
  content: "\e901";
}

.icon-person:before {
  content: "\e902";
}

:root {
  --noto:"Noto Sans JP", serif;
  --jost:"Jost", serif;
  --green:#521615;
  --l-green:#fff2c1;
  --yellow:#fac333;
  --black:#2a0505;
  font-size: 10px;
  font-family: var(--noto);
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #fff;
}

.w1200 {
  width: 1200px !important;
  max-width: 90% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

h2, h3, h5 {
  font-weight: 900;
}

p {
  font-size: 1.6rem;
  line-height: 1.8;
}

a {
  text-decoration: none !important;
  color: var(--black);
}

ul, ol {
  list-style: none;
}

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

.logo {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 337px;
  display: block;
  line-height: 1;
  z-index: 10;
}

#ham {
  width: 60px;
  height: 60px;
  position: fixed;
  top: 20px;
  right: 20px;
  border-radius: 50%;
  background-color: var(--l-green);
  z-index: 10;
}
#ham .ham {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
}
#ham .ham .line {
  width: 50%;
  height: 3px;
  background-color: var(--green);
  position: absolute;
  top: 50%;
  left: 25%;
  transition: all 0.5s;
  display: block;
  border-radius: 10px;
}
#ham .ham .line:first-child {
  top: 35%;
}
#ham .ham .line:last-child {
  top: 65%;
}
#ham.active {
  background-color: var(--green);
}
#ham.active .line {
  background-color: #fff;
}
#ham.active .line:first-child {
  transform: rotate(45deg);
  top: 50%;
}
#ham.active .line:nth-child(2) {
  opacity: 0;
}
#ham.active .line:last-child {
  transform: rotate(-45deg);
  top: 50%;
}

#header__nav-bl {
  width: 400px;
  max-width: 100%;
  height: 100vh;
  background-color: var(--l-green);
  position: fixed;
  top: 0;
  right: -101%;
  z-index: 9;
  transition: all 0.5s;
}
#header__nav-bl.active {
  right: 0;
}

.header__nav-wrapper {
  width: 100%;
  padding: 100px 30px;
}

.header__nav-list li a {
  display: block;
  position: relative;
  font-size: 1.6rem;
  font-weight: bold;
  border-bottom: 1px solid var(--green);
  color: var(--green);
  padding: 15px 0 15px 20px;
  transition-duration: 0.3s;
}
.header__nav-list li a::before {
  content: "";
  width: 12px;
  height: 111112px;
  background-image: url(../img/circle-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-radius: 50%;
}
.header__nav-list li a:hover {
  opacity: 0.7;
  transition-duration: 0.3s;
}

.base__small-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--green);
  color: #fff;
  font-weight: 900;
  font-size: 1.8rem;
  gap: 10px;
  height: 55px;
  width: 260px;
  border-radius: 100px;
  transition-duration: 0.3s;
  line-height: 1;
}
.base__small-btn.bg-yellow {
  background-color: var(--yellow);
  color: var(--green);
}
.base__small-btn:hover {
  opacity: 0.7;
  transition-duration: 0.3s;
}
.base__small-btn .icon-person {
  font-size: 0.9em;
  transform: translateY(3px);
}
.base__small-btn .icon-mail {
  font-size: 0.7em;
  transform: translateY(3px);
}

.header__nav-button-bl {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-top: 30px;
}

#menu-bg {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 8;
  opacity: 0;
  visibility: hidden;
}
#menu-bg.active {
  visibility: visible;
  opacity: 1;
}

.header__nav-insta {
  width: 19px;
  height: 19px;
  margin: 20px auto 50px 0;
  display: block;
}

footer {
  background-color: var(--l-green);
  padding: 100px 0 40px;
}

.footer__logo {
  width: 340px;
  margin: 0 auto 50px;
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.footer__btn-list {
  display: flex;
  gap: 20px;
  margin: 0 auto 50px;
  width: -moz-fit-content;
  width: fit-content;
}

.footer__list {
  display: flex;
  justify-content: center;
  gap: 20px 50px;
  margin: 0 auto;
  flex-wrap: wrap;
  max-width: 90%;
}
.footer__list li a {
  font-size: 1.6rem;
  font-weight: 900;
}

.footer__copy {
  color: var(--green);
  font-weight: 400;
  font-family: var(--jost);
  font-size: 1.2rem;
  text-align: center;
  margin-top: 100px;
}

@media screen and (max-width: 834px) {
  #ham {
    width: 50px;
    height: 50px;
    top: 10px;
    right: 10px;
  }
  .logo {
    top: 17px;
    left: 15px;
    width: 250px;
  }
  footer {
    padding: 60px 0 20px;
  }
  .footer__logo {
    width: 280px;
    margin: 0 auto 40px;
  }
  .footer__btn-list {
    gap: 15px;
    margin: 0px auto 40px;
    flex-direction: column;
  }
  .footer__list {
    gap: 0;
  }
  .footer__list li {
    width: 100%;
  }
  .footer__list li a {
    display: block;
    width: 100%;
    font-size: 1.4rem;
    text-align: center;
    border-bottom: 1px solid var(--green);
    padding: 15px 0;
    font-weight: 500;
  }
  .footer__list li:last-of-type {
    width: -moz-fit-content;
    width: fit-content;
    margin: 15px auto 0;
  }
  .footer__list li:last-of-type a {
    width: -moz-fit-content;
    width: fit-content;
    border-bottom: none;
    padding: 0;
  }
  .footer__copy {
    margin-top: 60px;
  }
  .header__nav-list li a {
    font-size: 1.4rem;
  }
  .base__small-btn {
    font-size: 1.6rem;
    height: 55px;
    width: 230px;
  }
  .base__small-btn .icon-person {
    transform: translateY(1px);
  }
  .base__small-btn .icon-mail {
    transform: translateY(1px);
  }
}
#top-mv {
  width: 100%;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}
#top-mv::before {
  content: "";
  width: 65%;
  aspect-ratio: 714/492;
  background-image: url(../img/drone.webp);
  background-size: contain;
  background-position: center;
  position: absolute;
  display: block;
  top: 50%;
  transform: translate(0, -40%);
  left: -22%;
  z-index: 1;
  opacity: 0.5;
}
#top-mv .inner {
  position: relative;
}

.top-mv__img-bl {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 660px;
  margin: 0 0 0 auto;
  max-width: 70%;
}

.top-mv__img-item {
  width: calc(50% - 10px);
  aspect-ratio: 1/1;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.top-mv__img-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.inner {
  width: 1200px;
  max-width: 90%;
  margin: 0 auto;
}

.top-mv__ttl-bl {
  display: flex;
  flex-direction: column-reverse;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  gap: 30px;
  z-index: 2;
  width: 100%;
}

.top-mv__ttl-en {
  font-family: var(--jost);
  position: relative;
  margin-bottom: 0;
}

.top-mv__ttl-en-wrapper {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  overflow: hidden;
  position: relative;
  height: 85px;
  width: 100%;
}

.top-mv__ttl-en-txt {
  display: block;
  font-size: 7.7rem;
  font-weight: bold;
  color: var(--green);
  line-height: 1.3;
  position: absolute;
  top: 100%;
  animation: textAnimation 1s 0.5s forwards;
}

@keyframes textAnimation {
  0% {
    top: 100%;
  }
  100% {
    top: 0;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.top-mv__catch {
  font-size: 3.2rem;
  color: var(--green);
  position: relative;
  background: transparent;
  margin: 0;
  padding: 0;
  border-radius: 0;
  opacity: 0;
  animation: fadeIn 1s 1.5s forwards;
}
.top-mv__catch .rubi {
  position: relative;
}
.top-mv__catch .rubi::before {
  content: "テクノロジー";
  position: absolute;
  left: 50%;
  transform: translate(-50%, -100%);
  font-size: 1.2rem;
  white-space: nowrap;
}

#top-news {
  padding: 60px 0 120px;
}

.top-news__bl {
  border-radius: 35px;
  width: 1080px;
  max-width: 90%;
  margin: 0 auto;
  padding: 80px 5%;
  background-color: #F5F5F5;
}

.top-news__ttl-bl {
  margin: 0 auto 80px;
  width: -moz-fit-content;
  width: fit-content;
}

.top-news__ttl-en {
  font-family: var(--jost);
  font-weight: bold;
  color: var(--green);
  font-size: 7rem;
  margin: 0;
}

.top-news__ttl-ja {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--green);
  background-color: transparent;
  padding: 0;
  margin: 0;
}

.news__list li a {
  position: relative;
  padding: 25px 60px 25px 130px;
  display: block;
  min-height: 140px;
  border-bottom: 1px solid #B8B8B8;
  transition-duration: 0.3s;
}
.news__list li a::after {
  content: "";
  width: 13.5px;
  height: 23.62px;
  background-image: url(../img/arrow-bold.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition-duration: 0.3s;
}
.news__list li a:hover {
  transition-duration: 0.3s;
  opacity: 0.7;
}
.news__list li a:hover::after {
  right: 17px;
  transition-duration: 0.3s;
}

.news__list-date {
  width: 110px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--l-green);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: var(--jost);
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.2;
  color: var(--green);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.news__list-date-big {
  font-size: 2.4rem;
}

.news__list-ttl {
  font-size: 2.4rem;
  color: var(--green);
  margin: 0 0 5px !important;
  border-bottom: none !important;
}

.news__list-txt {
  font-size: 1.6rem;
  margin-bottom: 0 !important;
}

.base__link {
  width: 425px;
  height: 100px;
  border-radius: 100px;
  background-color: var(--green);
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 30px;
  position: relative;
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.5;
  transition-duration: 0.5s;
  text-align: center;
  max-width: 100%;
}
.base__link::before {
  content: "";
  width: 60px;
  height: 60px;
  background-image: url(../img/set-white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  transition-duration: 0.5s;
}
.base__link::after {
  content: "";
  width: 13px;
  height: 24px;
  background-image: url(../img/arrow-green.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-46%);
  right: 43px;
  z-index: 1;
}
.base__link:hover {
  background-color: #1c6209;
  transition-duration: 0.5s;
}
.base__link:hover::before {
  transform: translateY(-50%) rotate(135deg);
  transition-duration: 0.5s;
}
.base__link.center {
  margin-left: auto;
  margin-right: auto;
}

.mt50 {
  margin-top: 50px !important;
}

@media screen and (max-width: 834px) {
  #top-mv::before {
    width: 600px;
    top: 100px;
    transform: translate(0, 0);
    left: 30%;
    max-width: 110%;
  }
  #top-mv .inner {
    flex-direction: column-reverse;
    display: flex;
  }
  .top-mv__img-bl {
    gap: 10px;
    margin: 30px auto 0;
    max-width: 100%;
  }
  .top-mv__img-item {
    width: calc(50% - 5px);
  }
  .top-mv__ttl-bl {
    flex-direction: column-reverse;
    position: relative;
    top: 0;
    transform: translateY(0);
    gap: 30px;
  }
  .top-mv__ttl-en-wrapper {
    height: 12vw;
  }
  .top-mv__ttl-en-txt {
    font-size: 10.5vw;
  }
  .top-mv__catch {
    font-size: 2.6rem;
  }
  .top-mv__img-item {
    border-radius: 10px;
  }
  .top-news__bl {
    border-radius: 15px;
    width: 1080px;
    padding: 50px 5%;
  }
  .top-news__ttl-en {
    font-size: 4.5rem;
  }
  .top-news__ttl-ja {
    font-size: 1.5rem;
  }
  .news__list-date {
    width: 100px;
    font-size: 1.4rem;
    aspect-ratio: initial;
    border-radius: 5px;
    padding: 7px 10px;
    margin-bottom: 5px;
    flex-direction: row;
    position: relative;
    transform: translate(0, 0);
    top: 0;
  }
  .news__list-date-big {
    font-size: 1.4rem;
  }
  .news__list-ttl {
    font-size: 1.8rem;
    margin-bottom: 5px;
  }
  .news__list-txt {
    font-size: 1.3rem;
  }
  .news__list li a {
    padding: 20px 37px 20px 0;
    min-height: auto;
  }
  .news__list li a::after {
    width: 11.5px;
    height: 17.62px;
    right: 15px;
  }
  .news__list li a:hover::after {
    right: 12px;
  }
  .top-news__ttl-bl {
    margin: 0 auto 20px;
  }
  .base__link::after {
    width: 11px;
    height: 19px;
    right: 32px;
  }
  .base__link::before {
    width: 45px;
    height: 45px;
    right: 15px;
  }
  .base__link {
    width: 320px;
    height: 70px;
    padding-right: 20px;
    font-size: 1.6rem;
  }
  #top-news {
    padding: 0 0 60px;
  }
}
@media screen and (max-width: 449px) {
  #top-mv {
    padding-top: 80px;
  }
  #top-mv::before {
    top: 65px;
    left: 15%;
  }
  .top-mv__catch {
    font-size: 2.4rem;
  }
  .top-mv__catch .rubi::before {
    transform: translate(-50%, -90%);
    font-size: 1rem;
  }
  .top-mv__ttl-bl {
    gap: 20px;
  }
  .top-mv__img-bl {
    margin: 25px auto 0;
  }
}
#under-mv {
  padding: 130px 0 0;
}
#under-mv::before {
  content: "";
  width: 50%;
  aspect-ratio: 714/492;
  background-image: url(../img/drone.webp);
  background-size: contain;
  background-position: center;
  position: absolute;
  display: block;
  top: -5vw;
  /* transform: translate(0, -40%); */
  left: -13%;
  z-index: -1;
  opacity: 0.5;
}

.under-mv__fukidashi {
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--l-green);
  border-radius: 100px;
  padding: 10px 20px;
  font-family: var(--jost);
  font-weight: bold;
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  position: relative;
  margin-bottom: 23px;
  color: var(--green);
  margin-left: auto;
  margin-right: auto;
}
.under-mv__fukidashi::after {
  content: "";
  position: absolute;
  top: 99%;
  left: 50%;
  transform: translate(-50%, 0);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-top: 9px solid var(--l-green);
  border-bottom: 0;
  display: block;
}

#under-sec {
  padding: 100px 0;
}

.under-mv__ttl {
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 900;
  border-bottom: 5px solid var(--green);
  padding-bottom: 10px;
  margin-bottom: 15px;
  color: var(--green);
  text-align: center;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 30px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 40px auto;
}
.breadcrumb li {
  font-size: 1.6rem;
  color: var(--black);
  position: relative;
}
.breadcrumb li a {
  font-size: 1.6rem;
  color: var(--black);
}
.breadcrumb li:after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  transform: rotate(-45deg);
  right: -17px;
  top: 10px;
}
.breadcrumb li:last-of-type:after {
  display: none;
}

.under-mv__img {
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
  position: relative;
  aspect-ratio: 1178/414;
  width: 100%;
}
.under-mv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.about__catch {
  text-align: center;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  margin-bottom: 40px;
  line-height: 1.6;
  font-weight: 900;
  color: var(--green);
}

.under-inner {
  width: 960px;
  max-width: 90%;
  margin: 0 auto;
}

@media screen and (max-width: 834px) {
  .breadcrumb li {
    font-size: 1.3rem;
  }
  .breadcrumb li a {
    font-size: 1.3rem;
  }
  .under-mv__ttl {
    border-bottom: 4px solid var(--green);
    padding-bottom: 7px;
    margin-bottom: 12px;
  }
  .breadcrumb {
    margin: 0 0 20px auto;
  }
  .under-mv__img {
    height: 170px;
  }
  #under-mv {
    padding: 100px 0 0;
  }
  #under-sec {
    padding: 50px 0 60px;
  }
  .about__catch {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 450px) {
  .under-mv__ttl {
    text-align: left;
  }
  #under-mv::before {
    width: 100%;
    top: -9vw;
    left: -29%;
  }
}
.pt0 {
  padding-top: 0 !important;
}

.single-time {
  font-size: 1.4rem;
  color: var(--green);
  background-color: var(--l-green);
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: 500;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-family: var(--jost);
}

.single-link {
  width: -moz-fit-content;
  width: fit-content;
  margin: 70px auto 0;
}

.nav-links {
  width: -moz-fit-content;
  width: fit-content;
  margin: 50px auto 0;
  font-size: 1.6rem;
  font-family: var(--jost);
  gap: 15px;
  display: flex;
  align-items: center;
}

.current {
  background-color: var(--l-green);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 2px;
}

.prev-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--l-green);
  position: relative;
}
.prev-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 14%;
  width: 10px;
  height: 10px;
  background-image: url(../img/arrow-green.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotateY(180deg) translate(-50%, -50%);
}

.next-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--l-green);
  position: relative;
}
.next-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background-image: url(../img/arrow-green.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 834px) {
  .single-link {
    margin: 50px auto 0;
  }
}
.top-under-line-ttl {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  border-bottom: 6px solid var(--green);
  padding-bottom: 10px;
  margin-bottom: 20px;
  color: var(--green);
  text-align: center;
  background: transparent;
  margin-top: 0;
  border-radius: 0;
  padding: 0 0 15px;
}

.defo-padding {
  padding: 90px 0;
}

.top-intr-bl p {
  margin-bottom: 30px;
}
.top-intr-bl > .wp-block-columns {
  gap: 40px;
  max-width: 90% !important;
}

.pc-row-reverse {
  display: flex;
  flex-direction: row-reverse;
}

.bg-l-green {
  background-color: var(--l-green);
}

.cjc {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

h2 {
  background-color: var(--green);
  color: #fff;
  font-weight: 900;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  border-radius: 10px;
  padding: 15px 35px;
  margin: 80px 0 50px;
}
h2.bg-yellow {
  background-color: #ffde5a;
  color: var(--green);
}

h3 {
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  font-weight: 900;
  color: var(--green);
  padding-bottom: 5px;
  margin: 30px auto 20px;
  border-bottom: 4px solid var(--green);
}

h4 {
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  font-weight: 900;
  color: var(--green);
  margin: 30px 0 20px;
  position: relative;
  padding-left: 1.2em;
}
h4::before {
  content: "";
  width: 0.8em;
  height: 0.8em;
  background-color: var(--green);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.4em;
  display: block;
}

h5 {
  font-size: clamp(1.7rem, 2vw, 2rem);
  font-weight: 900;
  color: var(--green);
  margin: 25px 0 15px;
}

h6 {
  font-size: clamp(1.6rem, 1.8vw, 1.8rem);
  font-weight: 900;
  color: var(--green);
  margin: 25px 0 15px;
}

p {
  margin-bottom: 30px;
}

:where(figure) {
  margin-bottom: 1.5em;
}

.feature__bl-tag {
  width: 90px;
  height: 90px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center !important;
  color: #fff;
  font-family: var(--jost);
  font-weight: bold;
  line-height: 1;
  position: absolute;
  left: -30px;
  top: -30px;
  flex-direction: column !important;
  flex-wrap: nowrap;
}

.feature__bl-tag-small {
  font-size: 1.4rem;
  margin: 0 !important;
  line-height: 1 !important;
}

.feature__bl-tag-num {
  font-size: 3.4rem;
  margin: 0 !important;
  line-height: 1 !important;
}

.feature__bl {
  border-radius: 10px;
  background-color: #F3F3F2;
  padding: 50px 5%;
  position: relative;
}
.feature__bl h3 {
  font-size: 3rem;
  font-weight: 900;
  border-bottom: 3px solid var(--green);
  color: var(--green);
  padding-bottom: 5px;
  margin-bottom: 20px;
}

.feature__images {
  gap: 0 !important;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  z-index: 1;
}
.feature__images figure {
  width: 50%;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.feature__images figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.center-bl {
  margin-left: auto;
  margin-right: auto;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.base__link-bl a {
  width: 425px;
  height: 100px;
  border-radius: 100px;
  background-color: var(--green);
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 100px;
  position: relative;
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.5;
  transition-duration: 0.5s;
  text-align: center;
  max-width: 100%;
}
.base__link-bl a::before {
  content: "";
  width: 60px;
  height: 60px;
  background-image: url(../img/set-white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  transition-duration: 0.5s;
}
.base__link-bl a::after {
  content: "";
  width: 13px;
  height: 24px;
  background-image: url(../img/arrow-green.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-46%);
  right: 43px;
  z-index: 1;
}
.base__link-bl a:hover {
  background-color: #6e2b2a;
  transition-duration: 0.5s;
}
.base__link-bl a:hover::before {
  transform: translateY(-50%) rotate(135deg);
  transition-duration: 0.5s;
}
.base__link-bl.center a {
  margin-left: auto;
  margin-right: auto;
}
.base__link-bl.yellow a {
  background-color: var(--yellow);
  color: var(--green);
}
.base__link-bl.yellow a::before {
  background-image: url(../img/set-green.svg);
}
.base__link-bl.yellow a::after {
  background-image: url(../img/arrow-yellow.svg);
}

.tag-ttl {
  font-size: clamp(1.6rem, 2.1vw, 2.1rem) !important;
  font-weight: 900;
  padding: 5px 25px;
  border-radius: 5px;
  margin: 0 auto 10px !important;
  background-color: var(--l-green);
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: none !important;
}

.right-shadow {
  width: calc(100% - 20px);
  position: relative;
  border-radius: 20px;
  z-index: 1;
}
.right-shadow img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 20px;
}
.right-shadow::before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--green);
  border-radius: 20px;
  position: absolute;
  top: 20px;
  right: -20px;
  left: auto;
  z-index: -1;
  border-radius: 20px;
  display: block;
}
.right-shadow.yellow::before {
  background: var(--yellow);
}

.wp-block-buttons > .wp-block-button {
  max-width: 100%;
}

.is-layout-flex:has(.center-bl) {
  justify-content: center !important;
}

.eq-tag {
  font-size: clamp(1.4rem, 2vw, 1.6rem) !important;
  margin-bottom: 10px !important;
  background: var(--l-green);
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 15px;
  font-weight: 900;
  border-radius: 3px;
  color: var(--green);
}

.eq-ttl {
  font-size: clamp(2.1rem, 3.2vw, 2.8rem) !important;
  font-weight: 900;
  margin-bottom: 15px !important;
  margin-top: 0 !important;
  border-bottom: none !important;
}

.eq-bl {
  gap: 3%;
  margin-bottom: 40px;
}
.eq-bl p {
  font-size: 1.6rem;
  margin-bottom: 30px;
}
.eq-bl p:last-of-type {
  margin-bottom: 0 !important;
}

.eq-img-bl figure {
  aspect-ratio: 1/1;
  border-radius: 10px;
}
.eq-img-bl figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 10px;
}

.f28-w900 {
  font-weight: 900;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  color: var(--green);
}

.mt0 {
  margin-top: 0 !important;
}

.mt40 {
  margin-top: 40px !important;
}

.member-catch {
  font-size: clamp(2.4rem, 3.2vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 0 !important;
  color: var(--green);
}

.member-yuzu {
  margin: -2vw 0 1em !important;
  width: 70% !important;
}

.under-none {
  border-bottom: none !important;
}

.anchor-link {
  width: 100%;
}
.anchor-link .wp-block-button__link {
  width: 100%;
  background: var(--l-green);
  color: var(--green);
  font-weight: 900;
  height: 65px;
  font-size: 2rem;
  position: relative;
}
.anchor-link .wp-block-button__link::after {
  content: "";
  width: 10px;
  height: 19px;
  background-image: url(../img/arrow-green.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  right: 20px;
  transition-duration: 0.3s;
}
.anchor-link .wp-block-button__link:hover::after {
  right: 17px;
  transition-duration: 0.3s;
}

.program-item {
  border-radius: 10px;
}

.program-ttl-bl {
  background-color: #602524;
  border-radius: 10px 10px 0 0;
  padding: 20px 30px;
  margin-bottom: 0 !important;
}

.program-num {
  margin-bottom: 0 !important;
  background-image: url(../img/set-white.svg);
  width: 49px;
  height: 49px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-family: var(--jost);
  margin-right: 10px;
  color: var(--green);
  line-height: 1;
  font-size: 2.1rem;
}

.program-ttl {
  font-size: 3rem !important;
  color: #fff !important;
  border-bottom: 0 !important;
  margin: 0 !important;
}

.program-ttl-small {
  font-size: 1.4rem;
  font-weight: 500;
  padding-left: 25px;
  border-left: 2px solid #fff;
  margin-bottom: 0 !important;
  color: #fff;
}

.program-item-cont {
  padding: 40px;
  border-radius: 0 0 10px 10px;
  background-color: var(--l-green);
}

.program-list:last-of-type {
  margin-bottom: 0 !important;
}

.program-list-bl {
  border: 4px solid #602524;
  border-radius: 10px;
  padding: 30px;
  background-color: #fff;
  width: 600px;
  max-width: 100% !important;
  margin-left: auto;
  margin-right: auto;
}

.program-list-txt {
  margin-bottom: 0 !important;
}

.program-list-ttl {
  background-color: var(--green);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem !important;
  font-weight: 900 !important;
  color: #fff !important;
  padding: 5px;
  border-radius: 3px;
  margin: 0 !important;
}

.program-list-txt {
  font-size: 1.4rem;
  font-weight: bold;
}

.mb0 {
  margin-bottom: 0 !important;
}

.wp-block-image {
  display: block !important;
  width: -moz-fit-content;
  width: fit-content;
}
.wp-block-image.alignright {
  margin-left: auto;
}
.wp-block-image.alignleft {
  margin-right: auto;
}
.wp-block-image.aligncenter {
  margin-left: auto;
  margin-right: auto;
}

.grecaptcha-badge {
  z-index: 5;
}

@media screen and (max-width: 834px) {
  .top-under-line-ttl {
    text-align: left;
    padding: 0 0 10px;
    border-bottom: 3px solid var(--green);
  }
  .defo-padding {
    padding: 50px 0;
  }
  h2 {
    border-radius: 5px;
    padding: 15px 20px;
    margin: 40px 0 20px;
  }
  #under-mv::before {
    width: 65%;
    top: -6vw;
    left: -13%;
  }
  .sp-row-gap30 {
    row-gap: 30px !important;
  }
  .feature__bl h3 {
    font-size: clamp(1.7rem, 3.4vw, 3.4rem);
  }
  .feature__bl {
    padding: 50px 8%;
  }
  .feature__bl-tag-num {
    font-size: 2.1rem;
  }
  .feature__bl-tag-small {
    font-size: 1.1rem;
  }
  .feature__bl-tag {
    width: 65px;
    height: 65px;
    left: -15px;
    top: -14px;
  }
  .sp-column-reverse {
    flex-direction: column-reverse !important;
    display: flex !important;
  }
  .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
    max-width: 100% !important;
  }
  .smt40 {
    margin-top: 40px !important;
  }
  .smt30 {
    margin-top: 30px !important;
  }
  .base__link-bl a {
    width: 320px;
    height: 70px;
    font-size: 1.6rem;
    padding-right: 70px;
  }
  .base__link-bl a::before {
    width: 40px;
    height: 40px;
    right: 17px;
    top: 50%;
  }
  .base__link-bl a::after {
    width: 10px;
    height: 19px;
    right: 32px;
  }
  .eq-img-bl figure {
    width: 300px;
    max-width: 85%;
    margin: 0 auto 25px !important;
  }
  .eq-bl {
    gap: 0;
  }
  .smb0 {
    margin-bottom: 0 !important;
  }
  .smb30 {
    margin-bottom: 30px !important;
  }
  .member-yuzu {
    margin: -1vw auto -10px !important;
    width: 160px !important;
  }
  .member-catch {
    font-size: clamp(1.7rem, 3.2vw, 3.2rem);
  }
  .program-list-bl {
    padding: 20px;
  }
  .program-list {
    gap: 1em !important;
  }
  .program-item-cont {
    padding: 25px;
  }
  .program-ttl-bl {
    padding: 20px 20px;
    gap: 1em !important;
  }
  .program-ttl {
    font-size: 2rem !important;
  }
  .program-num {
    width: 35px;
    height: 35px;
    margin-right: 5px !important;
    font-size: 1.7rem;
  }
  .program-ttl-small {
    padding-left: 0;
    border-top: 1px solid #fff;
    border-left: none;
    padding-top: 15px;
  }
  h3 {
    padding-bottom: 3px;
    margin: 25px 0 15px;
  }
  h4 {
    margin: 25px 0 15px;
  }
  h5, h6 {
    margin: 20px 0 10px;
  }
  .right-shadow::before {
    top: 10px;
    right: -10px;
  }
}/*# sourceMappingURL=style.css.map */