@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため､スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため､スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 10px;
}
@media (max-width: 1380px) {
  html {
    font-size: 0.7246376812vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 10px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 400;
  color: #000;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
  display: inline-block;
}

a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

.inner {
  padding: 0 25px;
  margin: 0 auto;
  max-width: 1380px;
  box-sizing: content-box;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 20px;
  }
}

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

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

.js-fadeIn {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 0.2s ease, transform 0.7s ease;
}
@media screen and (max-width: 767px) {
  .js-fadeIn {
    transform: translateY(50px);
    transition: opacity 0.4s ease, transform 0.7s ease;
  }
}

.js-fadeIn.active {
  opacity: 1;
  transform: translateY(0);
}

/*-------------------------------
achievement
-------------------------------*/
.achievement {
  margin-top: 10.8rem;
}
@media screen and (max-width: 767px) {
  .achievement {
    margin-top: 0;
    padding-top: 3.4rem;
    padding-bottom: 5rem;
  }
}

.achievement__title {
  margin: 0 auto;
}

.achievement__comment {
  margin-top: 6rem;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .achievement__comment {
    margin-top: 4rem;
    font-size: 1.4rem;
  }
}

.achievement__list {
  margin-top: 6rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 7.2rem;
  grid-row-gap: 5rem;
}
@media screen and (max-width: 767px) {
  .achievement__list {
    margin: 0 auto;
    margin-top: 3.8rem;
    max-width: 50rem;
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 3.3rem;
  }
}

.achievement__item-img {
  width: 100%;
}

.achievement__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 412/226;
}

.achievement__text {
  margin-top: 1.4rem;
  font-size: 1.7rem;
  line-height: 1.8235294118;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .achievement__text {
    margin-top: 1.4rem;
    font-size: 1.4rem;
    line-height: 1.7857142857;
  }
}

.achievement__link {
  margin-top: 9.3rem;
  font-size: 2rem;
  line-height: 1.25;
  letter-spacing: 0.05em;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .achievement__link {
    margin-top: 3.7rem;
    font-size: 1.6rem;
    line-height: 1.3125;
    letter-spacing: 0;
  }
}

.achievement__link a {
  color: #0e9a53;
  position: relative;
}

.achievement__link a::after {
  content: "";
  width: 100%;
  height: 0.2rem;
  position: absolute;
  bottom: -0.3rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #0e9a53;
}

/*-------------------------------
contact
-------------------------------*/
.contact {
  margin-top: 12rem;
}
@media screen and (max-width: 767px) {
  .contact {
    margin-top: 3.7rem;
  }
}

@media screen and (max-width: 767px) {
  .contact__inner.inner {
    padding: 0;
  }
}

.contact__title {
  padding: 2.4rem 0 2.4rem 13.5rem;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #fff;
  background-color: #0e9a53;
  border-radius: 3.6rem 0 0 3.6rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact__title {
    padding: 2rem 0 2rem 7.7rem;
    font-size: 1.6rem;
    border-radius: 0;
  }
}

.contact__title::before {
  content: "";
  width: 11rem;
  height: 11rem;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url(../images/contact-icon.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .contact__title::before {
    width: 6.4rem;
    height: 6.4rem;
    left: 0.8rem;
  }
}

.contact__list {
  margin-top: 8rem;
  display: flex;
  justify-content: center;
  gap: 8.8rem;
}
@media screen and (max-width: 767px) {
  .contact__list {
    margin-top: 2.3rem;
    padding: 0 20px;
    flex-direction: column;
    gap: 3.8rem;
  }
}

.contact__item {
  display: flex;
  gap: 3rem;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .contact__item {
    gap: 1rem;
  }
}

.contact__item-text {
  width: -moz-max-content;
  width: max-content;
  font-size: 2rem;
  font-weight: 500;
  text-wrap: nowrap;
}
@media screen and (max-width: 767px) {
  .contact__item-text {
    font-size: 1.6rem;
  }
}

.contact__item-btn {
  width: 34.4rem;
}
@media screen and (max-width: 767px) {
  .contact__item-btn {
    width: 100%;
    max-width: 40rem;
  }
}

/*-------------------------------
cost
-------------------------------*/
.cost__bg {
  padding: 6rem 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/cost-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .cost__bg {
    padding: 2.6rem 2rem;
    background-image: url(../images/cost-bg_sp.webp);
  }
}

.cost__inner.inner {
  max-width: 99.6rem;
}
@media screen and (max-width: 767px) {
  .cost__inner.inner {
    padding: 0;
  }
}

.cost__wrap {
  padding: 5.4rem 5.8rem;
  background-color: #fff;
  border-radius: 1.7rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .cost__wrap {
    margin: 0 auto;
    padding: 3rem 2rem 4rem;
    max-width: 50rem;
    flex-direction: column;
    gap: 1.8rem;
    border-radius: 1.6rem;
  }
}

.cost__img1,
.cost__img2 {
  max-width: 15rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .cost__img1,
  .cost__img2 {
    display: none;
  }
}

.cost__img1 img,
.cost__img2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 150/255;
}

.cost__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .cost__content {
    width: 100%;
  }
}

.cost__title.section-title {
  margin: 0 auto;
  padding: 0;
}

.cost__title.section-title::after {
  display: none;
}

.cost__link-btn {
  margin-top: 5.5rem;
  width: 100%;
  max-width: 42.1rem;
}
@media screen and (max-width: 767px) {
  .cost__link-btn {
    margin-top: 2.8rem;
    max-width: 40rem;
  }
}

.cost__link-btn a {
  padding: 2.8rem 0;
  width: 100%;
  font-size: 2.1rem;
  line-height: 1.1904761905;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #fff;
  display: flex;
  justify-content: center;
  gap: 3.4rem;
  position: relative;
  border-radius: 1.7rem;
  border: 2px solid #f15a24;
  background-color: #f15a24;
  transition: 0.25s ease-out;
}
@media screen and (max-width: 767px) {
  .cost__link-btn a {
    padding: 1.8rem 0;
    font-size: 1.5rem;
    line-height: 1.0666666667;
    gap: 2.2rem;
    border-radius: 0.9rem;
  }
}

.cost__link-btn a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 3px;
  left: 3px;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 1.7rem;
  filter: blur(3px);
  mix-blend-mode: multiply;
}

.cost__link-btn a::after {
  content: "";
  width: 2.5rem;
  height: 2.5rem;
  background-image: url(../images/link-icon.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: 0.25s ease-out;
}
@media screen and (max-width: 767px) {
  .cost__link-btn a::after {
    width: 1.7rem;
    height: 1.7rem;
  }
}

.cost__link-btn a:hover {
  opacity: 1;
  color: #f15a24;
  background-color: #fff;
}

.cost__link-btn a:hover::after {
  background-image: url(../images/link-icon_hover.webp);
}

.cost__img-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .cost__img-sp {
    margin-top: 1.8rem;
    display: block;
    width: 17.9rem;
  }
}

.cost__contact {
  margin-top: 4.5rem;
  font-size: 1.9rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #0e9a53;
}
@media screen and (max-width: 767px) {
  .cost__contact {
    margin-top: 2.5rem;
    font-size: 1.4rem;
  }
}

.cost__contact a {
  padding-bottom: 0.7rem;
  border-bottom: 2px solid #0e9a53;
}

/*-------------------------------
feature
-------------------------------*/
.feature {
  margin-top: 5rem;
  padding: 6rem 0 10.3rem;
  background-color: #ffffe4;
}
@media screen and (max-width: 767px) {
  .feature {
    margin-top: 3rem;
    padding: 3.4rem 0 0;
  }
}

.feature__inner.inner {
  position: relative;
}
@media screen and (max-width: 767px) {
  .feature__inner.inner {
    padding-bottom: 17.4rem;
  }
}

.feature__inner::after {
  content: "";
  width: 18rem;
  height: 27rem;
  position: absolute;
  bottom: -5.4rem;
  right: 5.2rem;
  background-image: url(../images/feature-decoration.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .feature__inner::after {
    width: 9.6rem;
    height: 14.4rem;
    bottom: 1rem;
    right: 50%;
    transform: translateX(50%);
  }
}

.feature__title {
  margin: 0 auto;
}

.feature__list {
  margin-top: 6rem;
  display: grid;
  grid-template-rows: auto;
  grid-row-gap: 4.3rem;
}
@media screen and (max-width: 767px) {
  .feature__list {
    margin: 0 auto;
    margin-top: 3.7rem;
    max-width: 50rem;
    grid-row-gap: 2rem;
  }
}

.feature__item {
  padding: 1.9rem 0 1.9rem 18rem;
  display: grid;
  grid-template-columns: 18.83% 77.83%;
  gap: 3.8rem;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 2rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .feature__item {
    padding: 4.6rem 2rem 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
}

.feature__item::before {
  content: "";
  width: 11rem;
  height: 13rem;
  position: absolute;
  top: -0.8rem;
  left: 3.6rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .feature__item::before {
    width: 6.7rem;
    height: 8rem;
    top: -0.6rem;
    left: 2rem;
  }
}

.feature__item:nth-child(1):before {
  background-image: url(../images/feature-flag1.webp);
}

.feature__item:nth-child(2):before {
  background-image: url(../images/feature-flag2.webp);
}

.feature__item:nth-child(3):before {
  background-image: url(../images/feature-flag3.webp);
}

.feature__item:nth-child(4):before {
  background-image: url(../images/feature-flag4.webp);
}

.feature__item-img {
  margin-left: auto;
  width: 100%;
  max-width: 22.6rem;
  box-sizing: content-box;
}
@media screen and (max-width: 767px) {
  .feature__item-img {
    margin: 0;
    max-width: 23.5rem;
  }
}

.feature__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 226/181;
}
@media screen and (max-width: 767px) {
  .feature__item:nth-child(1) .feature__item-text {
    margin-top: -1.3rem;
  }
}

@media screen and (max-width: 767px) {
  .feature__item:nth-child(2) .feature__item-text {
    margin-top: -1rem;
  }
}

.feature__item:nth-child(3) {
  padding-top: 1.7rem;
}
@media screen and (max-width: 767px) {
  .feature__item:nth-child(3) {
    padding-top: 6rem;
  }
}

@media screen and (max-width: 767px) {
  .feature__item:nth-child(3) .feature__item-img {
    max-width: 20.5rem;
    position: relative;
    top: -2.2rem;
  }
}

.feature__item:nth-child(4) {
  padding-top: 2rem;
}
@media screen and (max-width: 767px) {
  .feature__item:nth-child(4) {
    padding-top: 8.6rem;
  }
}

@media screen and (max-width: 767px) {
  .feature__item:nth-child(4) .feature__item-img {
    max-width: 18.3rem;
    position: relative;
    top: -0.6rem;
  }
}

.feature__item-text-wrap {
  padding-right: 11.5rem;
}
@media screen and (max-width: 767px) {
  .feature__item-text-wrap {
    padding: 0;
  }
}

.feature__item-text {
  font-size: 2.2rem;
  line-height: 1.8181818182;
  font-weight: 500;
  letter-spacing: -0.05em;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .feature__item-text {
    font-size: 1.6rem;
    line-height: 1.625;
    font-weight: 600;
  }
}

.feature__item-text-small {
  margin-top: 2.4rem;
  font-size: 1.6rem;
  line-height: 1.5625;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .feature__item-text-small {
    margin-top: 1rem;
    font-size: 1.4rem;
    line-height: 1.6428571429;
  }
}

.feature__item-text-mid {
  margin-top: 2.4rem;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .feature__item-text-mid {
    margin-top: 0.6rem;
    font-size: 1.4rem;
    line-height: 1.6428571429;
  }
}

.feature__item-text-small span,
.feature__item-text-mid span {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .feature__item-text-small span,
  .feature__item-text-mid span {
    display: inline;
  }
}

.feature__item-text sup {
  position: relative;
}
@media screen and (max-width: 767px) {
  .feature__item-text sup {
    font-size: 1rem;
    top: 0.2rem;
  }
}

.feature__support {
  margin-top: 5.8rem;
  font-size: 2.6rem;
  line-height: 1.2307692308;
  letter-spacing: 0.05em;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .feature__support {
    margin-top: 2rem;
    font-size: 1.6rem;
    line-height: 1.4375;
  }
}

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

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

.feature__support span {
  margin: 0 auto;
  padding: 0 1rem;
  width: -moz-max-content;
  width: max-content;
  background-color: #fffa7b;
  display: block;
}

.feature__support span + span {
  margin-top: 1.6rem;
}
@media screen and (max-width: 767px) {
  .feature__support span + span {
    margin-top: 0.9rem;
  }
}

/*-------------------------------
footer
-------------------------------*/
.footer {
  padding: 6rem 12rem;
  background-image: url(../images/footer-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 2rem 0 5rem;
    background-image: url(../images/footer-bg_sp.webp);
  }
}

.footer__inner.inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer__inner.inner {
    flex-direction: column;
  }
}

.footer__logo {
  width: 41rem;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    width: 100%;
    max-width: 40rem;
  }
}

.footer__logo a {
  width: 100%;
}

.footer__logo a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 410/90;
}

.footer__left p {
  margin-top: 4rem;
  font-size: 1.6rem;
  line-height: 1.6875;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .footer__left p {
    margin-top: 1.6rem;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

.footer__btn-list {
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .footer__btn-list {
    margin-top: 3rem;
    flex-direction: column;
    gap: 2rem;
  }
}

.footer__btn-item {
  width: 30rem;
}
@media screen and (max-width: 767px) {
  .footer__btn-item {
    margin: 0 auto;
    width: 100%;
    max-width: 28.6rem;
  }
}

.footer__btn-item a {
  padding: 2.6rem 0 1.6rem;
  width: 100%;
  font-size: 1.9rem;
  line-height: 1.2631578947;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-align: center;
  background-color: #fff;
  border-radius: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
  transition: 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  .footer__btn-item a {
    padding: 2.4rem 0 1.4rem;
    font-size: 1.8rem;
    line-height: 1.2222222222;
    border-radius: 1.6rem;
  }
}

.footer__btn-item a:hover {
  opacity: 1;
}

.footer__btn-item:nth-child(1) a {
  color: #2a62ae;
  border: 4px solid #2a62ae;
}

.footer__btn-item:nth-child(2) a {
  color: #e27113;
  border: 4px solid #e27113;
}

.footer__btn-item:nth-child(1) a:hover {
  color: #fff;
  background-color: #2a62ae;
}

.footer__btn-item:nth-child(2) a:hover {
  color: #fff;
  background-color: #e27113;
}

.footer__btn-item a::after {
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  z-index: 50;
  position: relative;
  top: -0.3rem;
  transform: rotate(45deg);
  transition: 0.3s ease-out;
}

.footer__btn-item:nth-child(1) a::after {
  border-bottom: 0.3rem solid #2a62ae;
  border-right: 0.3rem solid #2a62ae;
}

.footer__btn-item:nth-child(2) a::after {
  border-bottom: 0.3rem solid #e27113;
  border-right: 0.3rem solid #e27113;
}

.footer__btn-item:nth-child(1) a:hover::after {
  border-bottom: 0.3rem solid #fff;
  border-right: 0.3rem solid #fff;
}

.footer__btn-item:nth-child(2) a:hover::after {
  border-bottom: 0.3rem solid #fff;
  border-right: 0.3rem solid #fff;
}

/*-------------------------------
frc
-------------------------------*/
.frc {
  margin-top: 10rem;
  padding-bottom: 13rem;
}
@media screen and (max-width: 767px) {
  .frc {
    margin-top: 5.7rem;
    padding-bottom: 4rem;
  }
}

@media screen and (max-width: 767px) {
  .frc__inner.inner {
    padding: 0;
  }
}

.frc__title {
  padding: 2.4rem 0 2.4rem 13.5rem;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #fff;
  background-color: #0e9a53;
  border-radius: 3.6rem 0 0 3.6rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .frc__title {
    padding: 0.6rem 0 0.6rem 7.7rem;
    font-size: 1.6rem;
    line-height: 1.375;
    border-radius: 0;
  }
}

.frc__title::before {
  content: "";
  width: 11rem;
  height: 11rem;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url(../images/frc-icon.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .frc__title::before {
    width: 6.4rem;
    height: 6.4rem;
    left: 0.8rem;
  }
}

@media screen and (max-width: 767px) {
  .frc__wrap {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 50rem;
  }
}

.frc__text {
  margin-top: 3rem;
  padding-left: 13.5rem;
  font-size: 2rem;
  line-height: 1.8;
  font-weight: 500;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .frc__text {
    margin-top: 1.2rem;
    padding-left: 0;
    font-size: 1.6rem;
    line-height: 1.625;
    letter-spacing: 0.05em;
  }
}

.frc__btn-list {
  margin-top: 4.2rem;
  display: flex;
  justify-content: center;
  gap: 6rem;
}
@media screen and (max-width: 767px) {
  .frc__btn-list {
    margin-top: 3.2rem;
    flex-direction: column;
    gap: 2.8rem;
    align-items: center;
  }
}

.frc__btn-item {
  width: 42.6rem;
}
@media screen and (max-width: 767px) {
  .frc__btn-item {
    width: 100%;
    max-width: 40rem;
  }
}

.header {
  height: 16.5rem;
  background-color: #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .header {
    height: initial;
  }
}

.header__inner {
  max-width: 165rem;
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding-bottom: 2.3rem;
  }
}

/*-------------------------------
header__top
-------------------------------*/
.header__top {
  height: 10rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .header__top {
    height: auto;
    display: block;
  }
}

.header__logo {
  max-width: 36.4rem;
  width: 100%;
  height: inherit;
  position: relative;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .header__logo {
    max-width: 26.3rem;
    height: 6.8rem;
  }
}

.header__logo a {
  height: inherit;
  display: flex;
  align-items: center;
}

.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.hedaer__btns {
  display: flex;
  align-items: center;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .hedaer__btns {
    margin: 0 auto;
    margin-top: 0.5rem;
    max-width: 40rem;
    flex-direction: column;
    gap: 1.6rem;
  }
}

.header__btn {
  width: 34.4rem;
}
@media screen and (max-width: 767px) {
  .header__btn {
    width: 100%;
  }
}

/*-------------------------------
header__nav
-------------------------------*/
.header__nav {
  height: 6.6rem;
  background-color: #0e9a53;
}
@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}

.header__nav-list {
  display: flex;
  justify-content: center;
  gap: 2rem;
  height: inherit;
}

.header__nav-item {
  height: inherit;
}

.header__nav-item a {
  padding: 0 3rem;
  height: inherit;
  font-size: 2.1rem;
  font-weight: 500;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header__nav-item a::before {
  content: "";
  width: 2rem;
  height: 2rem;
  border-radius: 1rem;
  background-color: #fff;
}

.header__nav-item:first-child a::before {
  background-color: #fffa7b;
}

/*-------------------------------
header__hamburger
-------------------------------*/
.header__hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__hamburger {
    margin: 0;
    padding: 0;
    width: 5rem;
    height: 4.5rem;
    display: block;
    outline: none;
    border: 2px solid #2a62ae;
    border-radius: 0.6rem;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 999;
    cursor: pointer;
    transition: 0.3s;
    background-color: #fff;
  }
}

.header__hamburger.is-open {
  background-color: #fff;
}

.header__hamburger span {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 2.5rem;
  height: 0.3rem;
  border-radius: 0.3rem;
  background-color: #2a62ae;
  transition: 0.5s;
}

.header__hamburger span:nth-of-type(1) {
  top: -0.5rem;
}

.header__hamburger span:nth-of-type(2) {
  top: 0;
}

.header__hamburger span:nth-of-type(3) {
  top: 0.5rem;
}

.header__hamburger.is-open span:nth-of-type(1) {
  top: 0.3rem;
  transform: translateX(-50%) rotate(45deg);
}

.header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.header__hamburger.is-open span:nth-of-type(3) {
  top: -0.3rem;
  transform: translateX(-50%) rotate(-45deg);
}

.header__drawer {
  padding: 22rem 0;
  display: none;
  position: absolute;
  z-index: 900;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 228, 0.95);
  overflow-y: scroll;
  scrollbar-width: none;
}

.header__drawer::-webkit-scrollbar {
  display: none;
}

.header__drawer-item a {
  padding: 1.5rem 0;
  display: block;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #0e9a53;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .header__drawer-item a {
    font-size: 2rem;
  }
}

.header__drawer-btns {
  margin-top: 3rem;
  padding: 0 20px;
}

/*-------------------------------
mv
-------------------------------*/
.mv {
  position: relative;
  overflow: hidden;
}

.mv__bg {
  background-image: url(../images/mv-bg-green.webp);
  background-position: center;
  background-repeat: repeat-x;
  background-size: auto 54.8rem;
}
@media screen and (max-width: 767px) {
  .mv__bg {
    background-image: none;
    max-height: 54.5rem;
  }
}

.mv__bg img {
  margin: 0 auto;
  width: 100%;
  max-width: 170rem;
  height: auto;
  aspect-ratio: 1700/550;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .mv__bg img {
    aspect-ratio: 375/400;
    max-height: 54.5rem;
    -o-object-position: bottom;
       object-position: bottom;
  }
}

.mv__inner.inner {
  width: 100%;
  max-width: 145rem;
  display: flex;
  gap: 6rem;
  position: absolute;
  top: 41.4%;
  left: 51.6%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .mv__inner.inner {
    max-width: 50rem;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    top: 32.8%;
    left: 50%;
  }
}

.mv__text {
  width: 45%;
}
@media screen and (max-width: 767px) {
  .mv__text {
    width: 100%;
  }
}

.mv__illustration {
  width: 50.2142857143%;
}
@media screen and (max-width: 767px) {
  .mv__illustration {
    width: 100%;
  }
}

/*-------------------------------
project
-------------------------------*/
.project {
  margin-top: 5.1rem;
}
@media screen and (max-width: 767px) {
  .project {
    margin-top: 2.5rem;
  }
}

.project__inner.inner {
  max-width: 138rem;
}
@media screen and (max-width: 767px) {
  .project__inner.inner {
    padding: 0 10px;
  }
}

.project__wrap {
  padding: 5.2rem 4.7rem 5.4rem;
  background-color: #0e9a53;
  border-radius: 2rem;
}
@media screen and (max-width: 767px) {
  .project__wrap {
    margin: 0 auto;
    padding: 2rem 1rem;
    max-width: 50rem;
    border-radius: 1.25rem;
  }
}

.project__top {
  display: flex;
  gap: 3.3rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .project__top {
    flex-direction: column;
    gap: 0.9rem;
  }
}

.project__top::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to right, #fff 0.7rem, transparent 0.7rem);
  background-position: bottom left;
  background-repeat: repeat-x;
  background-size: 1.4rem 2px;
}
@media screen and (max-width: 767px) {
  .project__top::after {
    height: 1px;
    background-image: linear-gradient(to right, #fff 0.45rem, transparent 0.45rem);
    background-size: 0.9rem 1px;
  }
}

.project__label {
  max-width: 23.9rem;
  height: -moz-max-content;
  height: max-content;
}
@media screen and (max-width: 767px) {
  .project__label {
    max-width: 15rem;
  }
}

.project__label img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 239/55;
}
@media screen and (max-width: 767px) {
  .project__label img {
    aspect-ratio: 150/35;
  }
}

.project__title {
  padding-bottom: 4.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}
@media screen and (max-width: 767px) {
  .project__title {
    padding-bottom: 1.6rem;
    padding-left: 1.7rem;
    gap: 0.4rem;
  }
}

.project__main-title {
  font-size: 3.2rem;
  line-height: 1.71875;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #fffa7b;
}
@media screen and (max-width: 767px) {
  .project__main-title {
    font-size: 2rem;
    line-height: 1.4;
    letter-spacing: -0.03em;
  }
}

.project__sub-title {
  font-size: 2rem;
  font-weight: 400;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .project__sub-title {
    font-size: 1.6rem;
    line-height: 1.4375;
  }
}

.project__text {
  margin-top: 4.2rem;
  font-size: 2.6rem;
  line-height: 1.2307692308;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #f15a24;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .project__text {
    margin-top: 2rem;
    font-size: 1.4rem;
    line-height: 1;
    letter-spacing: 0;
  }
}

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

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

.project__text p {
  margin: 0 auto;
  padding: 0.3rem 2rem;
  width: -moz-max-content;
  width: max-content;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .project__text p {
    padding: 0.3rem 0.4rem;
  }
}

.project__text p + p {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .project__text p + p {
    margin-top: 1.2rem;
  }
}

/*-------------------------------
btn-blue
-------------------------------*/
.btn-blue a {
  padding: 2.1rem 1.5rem 2.1rem 0;
  width: 100%;
  font-size: 1.8rem;
  font-weight: 500;
  color: #e27113;
  text-align: center;
  border-radius: 2rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  border-radius: 5rem;
  border: 3px solid #e27113;
  text-wrap: nowrap;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .btn-blue a {
    padding: 1.6rem 1.5rem 1.6rem 0;
    font-size: 1.4rem;
  }
}

.btn-blue a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 2px;
  left: 2px;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 5rem;
  filter: blur(3px);
  mix-blend-mode: multiply;
}

.btn-blue a::after {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  position: absolute;
  top: 52%;
  right: 3rem;
  z-index: 50;
  transform: translateY(-50%) rotate(-45deg);
  border-bottom: 0.3rem solid #e27113;
  border-right: 0.3rem solid #e27113;
  transition: 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  .btn-blue a::after {
    width: 1rem;
    height: 1rem;
    top: 51%;
    right: 2.2rem;
    border-bottom: 0.2rem solid #e27113;
    border-right: 0.2rem solid #e27113;
  }
}

.btn-blue a:hover {
  color: #fff;
  background-color: #e27113;
  box-sizing: border-box;
  opacity: 1;
}

.btn-blue a:hover::after {
  border-bottom: 0.3rem solid #fff;
  border-right: 0.3rem solid #fff;
}
@media screen and (max-width: 767px) {
  .btn-blue a:hover::after {
    border-bottom: 0.2rem solid #fff;
    border-right: 0.2rem solid #fff;
  }
}

/*-------------------------------
btn-blue--big
-------------------------------*/
@media screen and (max-width: 767px) {
  .btn-blue--big a {
    padding: 0.6rem 0rem 0.6rem 0rem;
    font-size: 1.5rem;
    line-height: 1.9333333333;
    border: 2px solid #e27113;
  }
}

@media screen and (max-width: 767px) {
  .btn-blue--big a::before {
    width: 1.7rem;
    height: 1.7rem;
    right: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .btn-blue--big a::after {
    width: 0.6rem;
    height: 0.6rem;
    right: 1.6rem;
    border-bottom: 0.2rem solid #e27113;
    border-right: 0.2rem solid #e27113;
  }
}

/*-------------------------------
kantan-btn
-------------------------------*/
.kantan-btn a {
  padding: 1.8rem 0 1.8rem 1rem;
  width: 100%;
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.7rem;
  border-radius: 1rem;
  transition: 0.25s ease-out;
  position: relative;
}

.kantan-btn a::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 0.9rem solid transparent;
  border-bottom: 0.9rem solid transparent;
  border-left: 1.3rem solid #fff;
  border-right: 0;
  transition: 0.25s ease-out;
}

.kantan-btn a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 2px;
  left: 2px;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 1rem;
  filter: blur(3px);
  mix-blend-mode: multiply;
}

.kantan-btn a:hover {
  opacity: 1;
}

/*-------------------------------
$blue ご発注前ご相談
-------------------------------*/
.kantan-btn.-blue a {
  background-color: #2a62ae;
  border: 2px solid #2a62ae;
}

.kantan-btn.-blue a::after {
  color: #2a62ae;
}

.kantan-btn.-blue a:hover {
  color: #2a62ae;
  background-color: #fff;
}

.kantan-btn.-blue a:hover::after {
  border-left: 1.3rem solid #2a62ae;
}

/*-------------------------------
$orange ご予算お見積り
-------------------------------*/
.kantan-btn.-orange a {
  background-color: #f15a24;
  border: 2px solid #f15a24;
}

.kantan-btn.-orange a::after {
  color: #f15a24;
}

.kantan-btn.-orange a:hover {
  color: #f15a24;
  background-color: #fff;
}

.kantan-btn.-orange a:hover::after {
  border-left: 1.3rem solid #f15a24;
}

/*-------------------------------
section-title
-------------------------------*/
.section-title {
  padding-bottom: 2.7rem;
  width: -moz-max-content;
  width: max-content;
  font-size: 3rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  position: relative;
}
@media screen and (max-width: 767px) {
  .section-title {
    padding-bottom: 1.9rem;
    font-size: 2.1rem;
    letter-spacing: 0;
  }
}

.section-title::after {
  content: "";
  width: 8.1rem;
  height: 0.4rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #000;
}
@media screen and (max-width: 767px) {
  .section-title::after {
    width: 6rem;
    height: 0.3rem;
  }
}
/*# sourceMappingURL=style.css.map */
