@charset "UTF-8";
@media print, screen and (min-width: 1025px) {
  .tb {
    display: none !important;
  }
  .sp {
    display: none !important;
  }
}
@media print, screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
@media print, screen and (max-width: 1024px) {
  .pc {
    display: none !important;
  }
}
@media only screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .tc {
    display: none !important;
  }
}
@media print, screen and (min-width: 1025px) {
  .pc-hide {
    display: none !important;
  }
}
@media only screen and (max-width: 768px) {
  .sp-hide {
    display: none !important;
  }
}
#wrapper {
  position: relative;
  width: 100%;
}

main {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* input */
input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
select,
textarea {
  position: relative;
  background-color: transparent;
  border: 1px solid #E7E8E8;
  background-color: #E7E8E8;
  border-radius: 1rem;
  box-sizing: border-box;
  padding: 0.9rem 1.6rem;
  width: 100%;
  font-weight: normal;
  font-size: 1.8rem;
  line-height: 3rem;
  text-align: left;
  color: #000000;
  outline: none !important;
}
@media only screen and (max-width: 768px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  input[type=number],
  input[type=password],
  select,
  textarea {
    padding: 1.2rem 1.6rem;
    font-size: 2.4rem;
    line-height: 3.2rem;
  }
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
select {
  height: 4.8rem;
}
@media only screen and (max-width: 768px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  input[type=number],
  input[type=password],
  select {
    height: 5.6rem;
  }
}

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=number]:focus,
input[type=password]:focus,
select:focus,
textarea:focus {
  border-color: #E7E8E8;
}

select {
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url(../img/select-down.svg);
  background-position: calc(100% - 1.2rem) 50%;
  background-size: 1rem 0.8rem;
  background-repeat: no-repeat;
  z-index: 0;
}
@media only screen and (max-width: 768px) {
  select {
    background-position: calc(100% - 1rem) 50%;
  }
}

picture,
figure,
.image_wrap {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

picture img,
figure img,
.image_wrap img {
  width: 100%;
}

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

.u-img-contain {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.u-list {
  list-style: disc;
  padding-left: 1.5em;
}

.u-line {
  position: relative;
  display: inline-block;
  padding-left: 2px;
  color: #FFFFFF;
  z-index: 2;
  margin-bottom: 3px;
}
.u-line::before, .u-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #3A982A, #008DD4) right/100% 100% repeat-y;
  background-size: 100% 1.3em;
  z-index: -1;
  transition: background-size 0.5s 0.3s cubic-bezier(0.5, 0, 0.3, 1);
}

.u-ib {
  display: inline-block;
}

.h-opacity a, a.h-opacity, .h-opacity button, button.h-opacity {
  transition: opacity 0.3s;
}
.h-opacity a:hover, a.h-opacity:hover, .h-opacity button:hover, button.h-opacity:hover {
  opacity: 0.7;
}

.js-inview.-fadeup {
  opacity: 0;
  transform: translateY(3%);
  transition: opacity 1.8s 0.5s cubic-bezier(0.2, 1, 0.21, 1), transform 1.8s 0.5s cubic-bezier(0.2, 1, 0.21, 1);
}
.js-inview.-fadeup.inview {
  opacity: 1;
  transform: translateY(0%);
}

.js-inview.-fade-y {
  opacity: 0;
  transform: translateY(45px) scale(1, 1.1);
  transition: opacity 1.7s cubic-bezier(0.2, 1, 0.21, 1), transform 1s cubic-bezier(0.2, 1, 0.21, 1);
}
.js-inview.-fade-y.inview {
  opacity: 1;
  transform: translateY(0);
}

.js-inview.-line {
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.5, 0, 0.3, 1);
  line-height: 1.6;
}
.js-inview.-line .u-line::before, .js-inview.-line .u-line::after {
  background-size: 100% 140%;
}
.js-inview.-line .u-line::after {
  z-index: 2;
}
.js-inview.-line.inview {
  opacity: 1;
}
.js-inview.-line.inview .u-line::after {
  background-size: 0 140%;
}

.js-inview.-slideup {
  display: inline-block;
  overflow: hidden;
}
.js-inview.-slideup > span {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.7s 0.4s, opacity 0.7s 0.4s;
}
.js-inview.-slideup.inview > span {
  transform: translateY(0%);
  opacity: 1;
}

.js-inview.-image {
  position: relative;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.6s;
}
.js-inview.-image::after {
  content: "";
  position: absolute;
  background: #fff;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: translateY(0);
  transition: transform 0.6s cubic-bezier(0.52, 0.11, 0.05, 0.89);
}
.js-inview.-image img {
  transform: scale(1.5);
  transition: transform 1s;
  transform-origin: top;
}
.js-inview.-image.inview {
  opacity: 1;
}
.js-inview.-image.inview::after {
  transform: translateY(100%);
}
.js-inview.-image.inview img {
  transform: scale(1);
}

.js-inview.-strech {
  transform: translate(0, 100%) scaleY(2.2);
  opacity: 0;
}
.js-inview.-strech.inview {
  animation: c-heading-strech 1.1s cubic-bezier(0.2, 1, 0.21, 1) both;
}

.mwform-radio-field {
  display: inline-block;
}
.mwform-radio-field.vertical-item {
  display: block;
}
.mwform-radio-field.vertical-item + .mwform-radio-field {
  margin-top: 35px;
}
.mwform-radio-field input[type=radio] {
  display: none;
}
.mwform-radio-field input[type=radio] + .mwform-radio-field-text {
  position: relative;
  padding-left: 45px;
  cursor: pointer;
  display: block;
}
.mwform-radio-field input[type=radio] + .mwform-radio-field-text::before, .mwform-radio-field input[type=radio] + .mwform-radio-field-text::after {
  content: "";
  position: absolute;
  transform: translateY(-50%);
  border-radius: 50%;
  top: 50%;
}
.mwform-radio-field input[type=radio] + .mwform-radio-field-text::before {
  left: 0;
  width: 25px;
  height: 25px;
  border: 1.5em solid #241915;
  font-size: 1px;
}
.mwform-radio-field input[type=radio] + .mwform-radio-field-text::after {
  left: 4px;
  width: 17px;
  height: 17px;
}
.mwform-radio-field input[type=radio]:checked + .mwform-radio-field-text::after {
  background: #241915;
}
@media only screen and (max-width: 768px) {
  .mwform-radio-field.vertical-item + .mwform-radio-field {
    margin-top: 16px;
  }
  .mwform-radio-field input[type=radio] + .mwform-radio-field-text {
    padding-left: 30px;
  }
  .mwform-radio-field input[type=radio] + .mwform-radio-field-text::before {
    width: 19px;
    height: 19px;
  }
  .mwform-radio-field input[type=radio] + .mwform-radio-field-text::after {
    width: 11px;
    height: 11px;
  }
}

.mwform-checkbox-field {
  display: inline-block;
}
.mwform-checkbox-field.vertical-item {
  display: block;
}
.mwform-checkbox-field.vertical-item + .mwform-checkbox-field {
  margin-top: 35px;
}
.mwform-checkbox-field input[type=checkbox] {
  display: none;
}
.mwform-checkbox-field input[type=checkbox] + .mwform-checkbox-field-text {
  position: relative;
  padding-left: 5rem;
  cursor: pointer;
}
.mwform-checkbox-field input[type=checkbox] + .mwform-checkbox-field-text::before, .mwform-checkbox-field input[type=checkbox] + .mwform-checkbox-field-text::after {
  content: "";
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}
.mwform-checkbox-field input[type=checkbox] + .mwform-checkbox-field-text::before {
  left: 0;
  width: 20px;
  height: 20px;
  border: 1.5em solid #241915;
  font-size: 1px;
}
.mwform-checkbox-field input[type=checkbox] + .mwform-checkbox-field-text::after {
  left: 6px;
  width: 8px;
  height: 16px;
  transform: translateY(-68%) rotate(50deg) skew(5deg);
}
.mwform-checkbox-field input[type=checkbox]:checked + .mwform-checkbox-field-text::after {
  border-bottom: 2px solid #241915;
  border-right: 2px solid #241915;
}
@media only screen and (max-width: 768px) {
  .mwform-checkbox-field input[type=checkbox] + .mwform-checkbox-field-text {
    padding-left: 25px;
    display: block;
  }
  .mwform-checkbox-field input[type=checkbox] + .mwform-checkbox-field-text::before, .mwform-checkbox-field input[type=checkbox] + .mwform-checkbox-field-text::after {
    transform: none;
    top: 5px;
  }
  .mwform-checkbox-field input[type=checkbox] + .mwform-checkbox-field-text::after {
    transform: rotate(50deg) skew(5deg);
  }
}

.js-overlap {
  position: relative;
  clip-path: inset(0);
}
.js-overlap-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100lvh;
}

.c-section {
  padding: 0 2.4rem;
}

.c-inner {
  max-width: 1428px;
  margin: 0 auto;
}
.c-inner-s {
  max-width: 1140px;
  margin: 0 auto;
}
.c-inner-1000 {
  max-width: 1000px;
  margin: 0 auto;
}
.c-inner-l {
  max-width: 1720px;
  margin: 0 auto;
}
.c-inner-full {
  max-width: 1920px;
  margin: 0 auto;
}

.c-heading {
  position: relative;
  max-width: 1920px;
  margin: 17.7rem auto 0;
  overflow-x: clip;
}
.c-heading .sec-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  height: 655px;
  height: clamp(0px, 34.11vw, 655px);
}
.c-heading .sec-left {
  position: relative;
  padding-top: 8rem;
  padding-left: clamp(0px, 4vw, 88px);
  z-index: 2;
}
.c-heading .sec-left .title {
  overflow: hidden;
}
.c-heading .sec-left .title > span {
  position: relative;
  display: block;
  font-size: 5.6rem;
  font-size: clamp(0px, 3vw, 56px);
  font-weight: 700;
  padding-left: 1.64em;
  animation: c-heading-slide 0.7s 1.2s cubic-bezier(0.2, 1, 0.21, 1) both;
}
.c-heading .sec-left .title > span::before {
  content: "";
  position: absolute;
  top: 0.2em;
  left: 0.2em;
  width: 1em;
  height: 1em;
  background: url(../img/common/icon-ellipse.svg) center/contain no-repeat;
}
.c-heading .sec-left .en {
  display: block;
  background: url(../img/common/bg-title.jpg) center/cover;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-family: "Roboto", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-size: 13.54vw;
  font-size: clamp(0px, 13.54vw, 260px);
  font-weight: bold;
  line-height: 1.2;
  animation: c-heading-strech 1.1s 0.5s cubic-bezier(0.2, 1, 0.21, 1) both;
}
.c-heading .sec-right {
  position: relative;
  height: 100%;
}
.c-heading .sec-right .content {
  position: absolute;
  top: 0;
  right: 0;
  width: 46.25vw;
  max-width: 888px;
  height: 100%;
  z-index: -3;
}
.c-heading .sec-bg {
  position: absolute;
  top: calc(100% + 10lvh);
  left: 0;
  width: 100%;
  z-index: -1;
}
.c-heading .sec-bg .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110lvh;
}
.c-heading .sec-bg .content::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  margin-top: -10lvh;
  background: linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8666666667) 30%, rgba(255, 255, 255, 0.8666666667) 100%);
}
@media print, screen and (max-width: 1024px) {
  .c-heading {
    margin-top: 100px;
  }
}
@media only screen and (max-width: 768px) {
  .c-heading .sec-left {
    padding: 50px 0 50px 2.4rem;
  }
  .c-heading .sec-inner {
    flex-direction: column;
    height: auto;
  }
  .c-heading .sec-left .title > span {
    font-size: 2rem;
  }
  .c-heading .sec-left .title > span::before {
    top: 0.35em;
    left: 0.4em;
    width: 0.85em;
    height: 0.65em;
  }
  .c-heading .sec-left .en {
    font-size: 8rem;
  }
  .c-heading .sec-right {
    width: 100%;
    height: 295px;
  }
  .c-heading .sec-right .content {
    width: 100%;
    max-width: 100%;
  }
}

.c-title {
  display: block;
  margin-bottom: 32px;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.6;
}
.c-title .num {
  margin-right: 16px;
}
.c-title.-grad span {
  position: relative;
  display: inline;
  background: linear-gradient(90deg, #3A982A 0%, #008DD4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.c-title.-grad span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: -1;
}
@media print, screen and (min-width: 1025px) {
  .c-title.-grad {
    font-size: 64px;
  }
}
@media print, screen and (max-width: 1024px) {
  .c-title {
    font-size: 33px;
  }
}
@media only screen and (max-width: 768px) {
  .c-title {
    font-size: 24px;
  }
  .c-title.-grad {
    margin-top: 15px;
  }
}

.c-title-ellipse {
  position: relative;
  display: block;
  font-size: 40px;
  font-weight: 700;
  padding-left: 0.9em;
  line-height: 1.6;
}
.c-title-ellipse::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0.2em;
  width: 0.5em;
  height: 0.5em;
  background: url(../img/common/icon-ellipse.svg) center/contain no-repeat;
}
@media print, screen and (max-width: 1024px) {
  .c-title-ellipse {
    padding-left: 1.8em;
    font-size: 30px;
  }
  .c-title-ellipse::before {
    top: 0.55em;
    left: 0.5em;
    width: 0.85em;
    height: 0.65em;
  }
}
@media only screen and (max-width: 768px) {
  .c-title-ellipse {
    font-size: 20px;
  }
}

.c-subtitle-ellipse {
  overflow: hidden;
}
.c-subtitle-ellipse > span {
  display: block;
  position: relative;
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 700;
  padding-left: 1.8em;
  line-height: 1.6;
}
.c-subtitle-ellipse > span::before {
  content: "";
  position: absolute;
  top: 0.4em;
  left: 0.5em;
  width: 0.9em;
  height: 0.9em;
  background: url(../img/common/icon-ellipse.svg) center/contain no-repeat;
}

.c-title-grad {
  display: block !important;
  margin-bottom: 40px;
  border-bottom: 1px solid;
  -o-border-image: linear-gradient(90deg, #3A982A 0%, #008DD4 100%) 1;
     border-image: linear-gradient(90deg, #3A982A 0%, #008DD4 100%) 1;
  overflow: hidden;
  font-size: 32px;
  font-weight: bold;
}
.c-title-grad .txt {
  background: linear-gradient(90deg, #3A982A 0%, #008DD4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.c-points {
  display: flex;
  gap: 3rem;
  font-weight: 500;
  line-height: 1.8;
}
.c-points .item {
  width: 100%;
}
.c-points .num,
.c-points .title {
  background: linear-gradient(90deg, #3A982A 0%, #008DD4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 24px;
  font-size: clamp(20px, 2vw, 24px);
}
.c-points .num {
  display: block;
  line-height: 1.2;
}
.c-points .title {
  display: inline-block;
  padding: 14px 0 14px 2px;
  font-weight: bold;
  margin-left: -3px;
}
@media print, screen and (max-width: 1024px) {
  .c-points {
    gap: 2rem;
  }
  .c-points .num,
  .c-points .title {
    font-size: 22px;
  }
}
@media only screen and (max-width: 768px) {
  .c-points {
    flex-direction: column;
    gap: 20px 0;
  }
  .c-points .num,
  .c-points .title {
    font-size: 20px;
  }
  .c-points .num {
    display: inline-block;
  }
  .c-points .title {
    padding: 14px 0 14px 10px;
    margin-left: 0;
  }
  .c-points .text {
    border-top: 1px solid;
    -o-border-image: linear-gradient(90deg, #3A982A 0%, #008DD4 100%) 1;
       border-image: linear-gradient(90deg, #3A982A 0%, #008DD4 100%) 1;
    padding-top: 10px;
  }
}

.c-btn {
  position: relative;
  display: inline-block;
  min-width: 376px;
  height: -moz-fit-content;
  height: fit-content;
  padding: 30px 126px 30px 48px;
  background: #241915;
  border-radius: 100px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  transition-property: background, color;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.c-btn .arw {
  position: absolute;
  right: 4.8rem;
  top: calc(50% - 23px);
  width: 62px;
  height: 47px;
  background: url(../img/common/icon-ellipse-gray.svg) center/contain no-repeat;
}
.c-btn .arw::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  margin-top: -1px;
  background: url(../img/common/icon-arrow.svg) center/14px no-repeat;
}
.c-btn.-transparent {
  background: transparent;
  border: 3px solid #fff;
}
.c-btn:hover {
  background: #E81E10;
  color: #fff;
}
.c-btn:hover .arw {
  background-image: url(../img/common/icon-ellipse-outline-white.svg);
}
.c-btn:hover .arw::before {
  background-image: url(../img/common/icon-arrow-white.svg);
}
@media print, screen and (max-width: 1024px) {
  .c-btn {
    display: block;
    max-width: 349px;
    min-width: 0px;
    width: 100%;
    padding: 28px 116px 28px 40px;
  }
}
@media only screen and (max-width: 768px) {
  .c-btn {
    padding: 28px 11rem 28px 4rem;
  }
  .c-btn .arw {
    right: 4rem;
    top: calc(50% - 22px);
    width: 57px;
    height: 45px;
  }
}

.c-btnlist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media only screen and (max-width: 768px) {
  .c-btnlist {
    grid-template-columns: 1fr;
  }
}

.c-btnlist-btn {
  position: relative;
  display: block;
  width: 100%;
  padding: 18px 0;
  border-bottom: 1px solid #241915;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.8;
}
.c-btnlist-btn .arw {
  position: absolute;
  top: calc(50% - 15px);
  right: 3px;
  width: 43px;
  height: 33px;
  background: url(../img/common/icon-ellipse-gray.svg) center/contain no-repeat;
}
.c-btnlist-btn .arw::before, .c-btnlist-btn .arw::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
}
.c-btnlist-btn .arw::before {
  position: relative;
  margin-top: -1px;
  background: url(../img/common/icon-arrow.svg) center/10px no-repeat;
  z-index: 2;
}
.c-btnlist-btn .arw::after {
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/common/icon-ellipse.svg) center/contain no-repeat;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}
.c-btnlist-btn:hover .arw::before {
  background-image: url(../img/common/icon-arrow-white.svg);
}
.c-btnlist-btn:hover .arw::after {
  opacity: 1;
}
@media print, screen and (max-width: 1024px) {
  .c-btnlist-btn {
    font-size: 21px;
  }
}

.c-btn-accent {
  position: relative;
  display: block;
  width: 100%;
  padding: 25px 0;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.8;
  text-align: left;
}
.c-btn-accent .arw {
  position: absolute;
  top: 0;
  right: 5px;
  width: 62px;
  height: 100%;
  background: url(../img/common/icon-ellipse-gray.svg) center/contain no-repeat;
}
.c-btn-accent .arw::before, .c-btn-accent .arw::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
}
.c-btn-accent .arw::before {
  position: relative;
  margin-top: -1px;
  background: url(../img/common/icon-arrow-white.svg) center/14px no-repeat;
  z-index: 2;
}
.c-btn-accent .arw::after {
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/common/icon-ellipse.svg) center/contain no-repeat;
  opacity: 1;
  transition: opacity 0.3s ease-out;
}

a:hover .c-btn-accent .arw::before, a.c-btn-accent:hover .arw::before {
  background-image: url(../img/common/icon-arrow.svg);
}
a:hover .c-btn-accent .arw::after, a.c-btn-accent:hover .arw::after {
  opacity: 0;
}

.c-sidenav {
  position: relative;
  max-width: 1740px;
  margin: 0 auto;
  padding: 0 2.4rem 0 155px;
}
.c-sidenav-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(138px + 2.4rem);
  height: 100%;
  padding-left: 2.4rem;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
}
.c-sidenav-nav .box {
  padding: 2.4rem 10px;
  border-radius: 16px;
  background: #fff;
}
.c-sidenav-nav .item {
  display: block;
  padding: 6px 0 16px;
  border-bottom: 1px solid;
  -o-border-image: linear-gradient(90deg, #3A982A 0%, #008DD4 100%) 1;
     border-image: linear-gradient(90deg, #3A982A 0%, #008DD4 100%) 1;
}
.c-sidenav-nav .item.active {
  background: linear-gradient(90deg, #3A982A 0%, #008DD4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.c-sidenav-cnt {
  max-width: 1428px;
}
@media print, screen and (max-width: 1024px) {
  .c-sidenav {
    padding: 0 2.4rem;
  }
  .c-sidenav-nav {
    display: none;
  }
}

.c-box {
  position: relative;
  border-radius: 2.4rem;
  z-index: 2;
}
.c-box::before, .c-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  pointer-events: none;
}
.c-box::before {
  top: 1px;
  height: calc(100% - 2px);
  background: url(../img/common/bg-box-light.jpg) left top/489px 366px repeat;
  z-index: -1;
}
.c-box::after {
  background: linear-gradient(90deg, #3A982A 0%, #008DD4 100%);
  border-radius: inherit;
  z-index: -2;
}

.c-outline-svg {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.c-outline {
  position: relative;
}
.c-outline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #3A982A 0%, #008DD4 100%);
  filter: url(#dilate);
}

.c-box-outline {
  position: relative;
  border-radius: 2.4rem;
  z-index: 2;
  background: #F8F8F8;
}
.c-box-outline::before, .c-box-outline::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  pointer-events: none;
}
.c-box-outline::before {
  background: url(../img/common/bg-box.png) left top/489px 366px repeat;
  opacity: 0.2;
  z-index: -2;
}
.c-box-outline::after {
  background: linear-gradient(90deg, #3A982A 0%, #008DD4 100%);
  filter: url(#dilate);
  z-index: -1;
}

.c-bg {
  position: fixed;
  top: 10lvh;
  left: 0;
  width: 100%;
  height: 85lvh;
  z-index: -999;
  opacity: 0.6;
}
.c-bg * {
  height: 100%;
}
.c-bg::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 2;
}
.c-bg img {
  display: block;
  margin: 0 4.4rem;
}
@media only screen and (max-width: 768px) {
  .c-bg {
    top: 0;
  }
}

.c-anchorlinks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
  max-width: 1480px;
  color: #fff;
  font-size: 28px;
  font-size: clamp(0px, 2vw, 28px);
  font-weight: bold;
  line-height: 1.03;
}
.c-anchorlinks .item {
  padding: 1px;
  background: linear-gradient(90deg, #3A982A 0%, #008DD4 100%);
  border-radius: 4px;
  overflow: hidden;
}
.c-anchorlinks .item:hover .image img {
  transform: scale(1.3);
}
.c-anchorlinks .item:hover .title::before {
  transform: scale(0.85);
}
.c-anchorlinks .image {
  position: relative;
  width: 100%;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
  background: #eee;
  padding-top: 72.05%;
  overflow: hidden;
}
.c-anchorlinks .image img {
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.3s;
}
.c-anchorlinks .title {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
  padding: 5px 10px 2px 15px;
  overflow: hidden;
  text-align: center;
  z-index: 2;
}
.c-anchorlinks .title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #3A982A 0%, #008DD4 100%);
  transition: transform 0.3s;
  z-index: -1;
}
.c-anchorlinks .title .txt {
  min-width: 7.28em;
}
.c-anchorlinks .title .arw {
  flex-shrink: 0;
  display: inline-block;
  width: 52px;
  height: 90px;
  background: url(../img/common/icon-ellipse-white.svg) center/46px no-repeat;
}
.c-anchorlinks .title .arw::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
}
.c-anchorlinks .title .arw::before {
  position: relative;
  margin-top: -2px;
  background: url(../img/common/icon-arrow-grad.svg) center/11px no-repeat;
  transform: rotate(90deg);
  z-index: 2;
}
@media print, screen and (max-width: 1024px) {
  .c-anchorlinks {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 40px 2rem;
    font-size: 2.5rem;
  }
  .c-anchorlinks .title {
    justify-content: space-between;
    padding: 0 20px;
    gap: 0 8px;
    text-align: left;
  }
  .c-anchorlinks .title .txt {
    min-width: auto;
  }
  .c-anchorlinks .title .arw {
    height: 80px;
  }
}
@media only screen and (max-width: 768px) {
  .c-anchorlinks {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    font-size: 22px;
  }
  .c-anchorlinks .image {
    padding-top: 44.11%;
  }
  .c-anchorlinks .title .arw {
    height: 73px;
  }
}

.c-post > *:first-child {
  margin-top: 0 !important;
}
.c-post > *:last-child {
  margin-bottom: 0 !important;
}
.c-post h1, .c-post h2, .c-post h3, .c-post h4, .c-post h5, .c-post h6 {
  margin: 1em 0 0.5em;
  font-weight: bold;
}
.c-post h1, .c-post h2 {
  font-size: 26px;
}
.c-post h3 {
  font-size: 24px;
}
.c-post h4 {
  font-size: 22px;
}
.c-post h5 {
  font-size: 20px;
}
.c-post h6 {
  font-size: 18px;
}
.c-post p {
  min-height: 1em;
  margin-bottom: 1em;
}
.c-post ul {
  margin: 1em 0;
  padding-left: 1.5em;
  list-style: disc;
}
.c-post ul ul {
  margin: 0.5em;
  list-style: circle;
}
.c-post ol {
  margin: 1em 0;
  padding-left: 1.5em;
  list-style: decimal;
}
.c-post > .wp-block-image {
  margin-bottom: 3rem;
}

.c-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100lvh + 10rem);
  padding: 5rem 2.4rem 15rem;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 200;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  background: rgba(0, 0, 0, 0.7019607843);
}
.c-popup::-webkit-scrollbar {
  display: none;
}
.c-popup .sec-inner {
  position: relative;
  padding: 112px 20px;
}
.c-popup .sec-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: block;
  width: 96px;
  height: 96px;
  background: linear-gradient(90deg, #3A982A 0%, #008DD4 100%);
  border-radius: 50%;
  z-index: 3;
  transition: opacity 0.3s;
}
.c-popup .sec-close:hover {
  opacity: 0.6;
}
.c-popup .sec-close::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  background: #fff;
  border-radius: inherit;
  z-index: -1;
}
.c-popup .sec-close span::before,
.c-popup .sec-close span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 24%;
  width: 52%;
  height: 3px;
  background: linear-gradient(90deg, #3A982A 0%, #008DD4 100%);
  transform: rotate(45deg);
}
.c-popup .sec-close span::after {
  transform: rotate(-45deg);
}
.c-popup .sec-title {
  margin-bottom: 32px;
  font-size: 40px;
  font-weight: 900;
}
.c-popup .sec-image {
  position: relative;
  width: 100%;
  margin-bottom: 40px;
  padding-top: 34.73%;
}
.c-popup .sec-image img {
  position: absolute;
  top: 0;
  left: 0;
}
.c-popup .sec-text {
  font-weight: 500;
  line-height: 2;
}
@media print, screen and (max-width: 1024px) {
  .c-popup .sec-inner {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .c-popup .sec-title {
    font-size: 28px;
  }
  .c-popup .sec-image {
    margin-bottom: 32px;
    padding-top: 48.07%;
  }
  .c-popup .sec-close {
    width: 74px;
    height: 74px;
  }
  .c-popup .sec-close::before {
    top: 2px;
    left: 2px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
  }
  .c-popup .sec-close span::before,
  .c-popup .sec-close span::after {
    height: 2px;
  }
}
@media only screen and (max-width: 768px) {
  .c-popup .sec-inner {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .c-popup .sec-title {
    font-size: 24px;
  }
  .c-popup .sec-close {
    width: 52px;
    height: 52px;
  }
}

.c-tabs {
  position: relative;
  display: flex;
  justify-content: flex-start;
  margin-bottom: 40px;
  border-bottom: 1px solid;
  -o-border-image: linear-gradient(90deg, #3A982A 0%, #008DD4 100%) 1;
     border-image: linear-gradient(90deg, #3A982A 0%, #008DD4 100%) 1;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  z-index: 2;
}
.c-tabs .item {
  position: relative;
  padding: 11px 35px;
  background: #fff;
  color: #fff;
  z-index: 2;
}
.c-tabs .item::before, .c-tabs .item::after {
  content: "";
  position: absolute;
  border-radius: inherit;
}
.c-tabs .item::before {
  top: 1px;
  left: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 1px);
  background: #fff;
  opacity: 0;
  z-index: -1;
}
.c-tabs .item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #3A982A 0%, #008DD4 100%);
  z-index: -2;
}
.c-tabs .item:hover span {
  opacity: 0.6;
}
.c-tabs .item:not(.active)::before {
  opacity: 1;
}
.c-tabs .item:not(.active) span {
  background: linear-gradient(90deg, #3A982A 0%, #008DD4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: 200;
  transition: opacity 0.3s;
}
.c-tabs .item.active {
  pointer-events: none;
}
@media only screen and (max-width: 768px) {
  .c-tabs {
    margin-bottom: 30px;
    font-size: 16px;
  }
  .c-tabs .item {
    border-top-right-radius: 15px;
    min-width: 120px;
    padding: 13px 8px;
  }
  .c-tabs .item + .item {
    padding-left: 50px;
    margin-left: -42px;
    z-index: -1;
  }
}/*# sourceMappingURL=style.css.map */