@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: 1440px) {
  html {
    font-size: 0.6944444444vw;
  }
}
@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: 1440px;
  box-sizing: content-box;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 10px;
  }
}

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

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

.inline-block {
  display: inline-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);
}

.parts {
  padding: 10rem 5rem;
}

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

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

.contact__list {
  display: flex;
  justify-content: center;
  gap: 8rem;
}
@media screen and (max-width: 767px) {
  .contact__list {
    gap: 3.5rem;
    flex-direction: column;
    align-items: center;
  }
}

.contact__item.kantan-btn {
  width: 37rem;
}
@media screen and (max-width: 767px) {
  .contact__item.kantan-btn {
    width: 76.6197183099%;
  }
}

.contact .kantan-btn a {
  padding: 2.4rem 0;
  font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
  .contact .kantan-btn a {
    padding: 2rem 0;
    font-size: 1.8rem;
  }
}

/*-------------------------------
faq
-------------------------------*/
.faq {
  margin-top: 8.5rem;
}
@media screen and (max-width: 767px) {
  .faq {
    margin-top: 4rem;
  }
}

.faq__bg {
  padding-block: 6.9rem 8.6rem;
  background-image: url(../images/faq-bg.webp);
  background-repeat: repeat-y;
  background-size: 100% auto;
}
@media screen and (max-width: 767px) {
  .faq__bg {
    padding-block: 2.7rem 3.1rem;
    background-image: url(../images/faq-bg_sp.webp);
  }
}

.faq__inner.inner {
  max-width: 124rem;
}
@media screen and (max-width: 767px) {
  .faq__inner.inner {
    max-width: 50rem;
  }
}

.faq__title {
  margin: 0 auto;
  width: 11.6rem;
}
@media screen and (max-width: 767px) {
  .faq__title {
    width: 5.5rem;
  }
}

.faq__title img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 116/37;
}

.faq__list {
  margin-top: 3.2rem;
  display: flex;
  flex-direction: column;
  gap: 2.1rem;
}
@media screen and (max-width: 767px) {
  .faq__list {
    margin-top: 1.8rem;
    gap: 0.9rem;
  }
}

.faq__item {
  background-color: #fff;
}

.faq__Q,
.faq__A {
  position: relative;
}

.faq__Q::before,
.faq__Q::after {
  content: "";
  width: 1.6rem;
  height: 0.2rem;
  position: absolute;
  top: 50%;
  right: 4rem;
  transform: translateY(-50%);
  background-color: #000;
}
@media screen and (max-width: 767px) {
  .faq__Q::before,
  .faq__Q::after {
    width: 1.2rem;
    right: 1rem;
  }
}

.faq__Q::after {
  transform: translateY(-50%) rotate(90deg);
  transition: 0.3s ease-out;
}

.faq__Q.is-open::after {
  transform: translateY(-50%) rotate(0deg);
}

.faq__A {
  display: none;
}

.faq__Q-container,
.faq__A-container {
  padding: 2rem 3.6rem;
  display: flex;
  gap: 2.4rem;
}
@media screen and (max-width: 767px) {
  .faq__Q-container,
  .faq__A-container {
    padding: 1.9rem 3rem 1.9rem 1.4rem;
    gap: 1.2rem;
    align-items: center;
  }
}

.faq__Q-icon,
.faq__A-icon {
  margin-top: 0.2rem;
  width: 1.7rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .faq__Q-icon,
  .faq__A-icon {
    margin-top: 0.1rem;
    width: 1.3rem;
  }
}

.faq__Q-text,
.faq__A-text {
  font-size: 1.8rem;
  line-height: 1.2222222222;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .faq__Q-text,
  .faq__A-text {
    font-size: 1.4rem;
    line-height: 1.2142857143;
    letter-spacing: 0;
  }
}

/*-------------------------------
feature
-------------------------------*/
.feature__bg {
  padding-block: 7rem 8.5rem;
  background-image: url(../images/feature-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
@media screen and (max-width: 767px) {
  .feature__bg {
    padding-block: 2.8rem 3.5rem;
    background-image: url(../images/feature-bg_sp.webp);
  }
}

.feature__inner.inner {
  max-width: 138rem;
}
@media screen and (max-width: 767px) {
  .feature__inner.inner {
    max-width: 50rem;
  }
}

.feature__title {
  font-size: 2.6rem;
  line-height: 1.6538461538;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .feature__title {
    font-size: 1.6rem;
    line-height: 1.0269230769;
    gap: 1rem;
  }
}

.feature__title::before {
  content: "";
  width: 2rem;
  height: 2rem;
  display: block;
  border-radius: 2rem;
  background-color: #db2f7e;
}
@media screen and (max-width: 767px) {
  .feature__title::before {
    width: 1.2rem;
    height: 1.2rem;
  }
}

.feature__list {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 3rem;
}
@media screen and (max-width: 767px) {
  .feature__list {
    margin-top: 1.7rem;
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 2.1rem;
  }
}

.feature__item {
  padding: 3.2rem 4.3rem 5.7rem;
  background-color: #fff;
  border-radius: 1.5rem;
  border: 0.7rem solid #7199eb;
}
@media screen and (max-width: 767px) {
  .feature__item {
    padding: 2.4rem 3.4rem 4.4rem;
    border-radius: 1.1rem;
    border: 0.5rem solid #7199eb;
  }
}

.feature__item-number {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature__item-number span {
  width: -moz-max-content;
  width: max-content;
  font-size: 2.1rem;
  line-height: 1.2380952381;
  letter-spacing: 0.05em;
  font-weight: 300;
  color: #7199eb;
}
@media screen and (max-width: 767px) {
  .feature__item-number span {
    font-size: 1.6rem;
    line-height: 1.1875;
  }
}

.feature__item-number-img {
  margin-top: 1.4rem;
  width: 3.6rem;
}
@media screen and (max-width: 767px) {
  .feature__item-number-img {
    margin-top: 1.1rem;
    width: 2.7rem;
  }
}

.feature__item-number-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 36/49;
}

.feature__item-title {
  margin-top: 2.7rem;
  font-size: 2.8rem;
  line-height: 1.4642857143;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #7199eb;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .feature__item-title {
    margin-top: 2.2rem;
    font-size: 2.1rem;
    line-height: 1.4761904762;
  }
}

.feature__item-text {
  margin-top: 1rem;
  font-size: 1.8rem;
  line-height: 1.8055555556;
}
@media screen and (max-width: 767px) {
  .feature__item-text {
    margin-top: 0.8rem;
    font-size: 1.4rem;
    line-height: 1.7621428571;
  }
}

.feature__bottom {
  margin-top: 5.4rem;
}
@media screen and (max-width: 767px) {
  .feature__bottom {
    margin-top: 2.9rem;
  }
}

.feature__mini-list {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 3rem;
}
@media screen and (max-width: 767px) {
  .feature__mini-list {
    margin-top: 1.6rem;
    padding: 0 1rem;
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 1.5rem;
  }
}

.feature__mini-item {
  position: relative;
}

.feature__mini-item::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  z-index: 0;
  background-color: #eaeaea;
  border-radius: 1.5rem;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 767px) {
  .feature__mini-item::before {
    top: 0.5rem;
    left: 0.5rem;
    border-radius: 1.1rem;
  }
}

.feature__mini-item p {
  padding: 2.6rem 4rem 2.4rem;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  border-radius: 1.5rem;
  position: relative;
  z-index: 10;
  font-size: 2.4rem;
  line-height: 1.4583333333;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: #e22760;
  background-color: #fffb9d;
}
@media screen and (max-width: 767px) {
  .feature__mini-item p {
    padding: 2rem 3rem 1.8rem;
    border-radius: 1.1rem;
    font-size: 1.8rem;
    line-height: 1.5;
  }
}

/*-------------------------------
footer
-------------------------------*/
.footer {
  padding: 3.8rem 0 3.4rem 8.2rem;
  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: 1.8rem 0 2rem;
    background-image: url(../images/footer-bg_sp.webp);
  }
}

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

/*-------------------------------
footer__left
-------------------------------*/
.footer__left {
  width: 19.9298245614%;
}
@media screen and (max-width: 767px) {
  .footer__left {
    padding: 0 10px;
    width: 100%;
  }
}

.footer__logo {
  width: 28.4rem;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    width: 18rem;
  }
}

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

.footer__contact {
  margin-top: 1.3rem;
  font-size: 1.6rem;
  line-height: 1.625;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .footer__contact {
    margin-top: 1.3rem;
    font-size: 1.4rem;
    line-height: 1.4285714286;
    letter-spacing: 0;
  }
}

/*-------------------------------
footer__mid
-------------------------------*/
.footer__mid {
  width: 30.1754385965%;
  font-size: 1.6rem;
  line-height: 1.53125;
}
@media screen and (max-width: 767px) {
  .footer__mid {
    margin-top: 1.7rem;
    width: 100%;
    font-size: 1.3rem;
    line-height: 1.5384615385;
  }
}

.footer__mid-title {
  text-align: center;
  letter-spacing: 0.04em;
  background-color: #dbe5fa;
}

.footer__mid-list {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #f0f0f0;
}

.footer__mid-list dt {
  width: 26.511627907%;
  display: flex;
  justify-content: center;
  letter-spacing: 0.04em;
  align-items: center;
  border-right: 1px solid #f0f0f0;
}

.footer__mid-list dd {
  width: 73.488372093%;
}

.footer__mid-list dd span,
.footer__mid-list li {
  padding-left: 0.6rem;
}

.footer__mid-list dt:not(:last-of-type),
.footer__mid-list dd:not(:last-of-type),
.footer__mid-list li:not(:last-of-type) {
  border-bottom: 1px solid #f0f0f0;
}

.footer__mid-list li:first-child {
  border-top: 1px solid #f0f0f0;
}

/*-------------------------------
footer__right
-------------------------------*/
.footer__right {
  width: 32.4912280702%;
}
@media screen and (max-width: 767px) {
  .footer__right {
    margin-top: 1.8rem;
    padding: 0 10px;
    width: 100%;
  }
}

.footer__right-title {
  padding-bottom: 0.6rem;
  font-size: 1.6rem;
  line-height: 1.5;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .footer__right-title {
    padding-bottom: 0.4rem;
    font-size: 1.3rem;
    line-height: 1.3846153846;
  }
}

.footer__right-contact {
  margin-top: 1.2rem;
  display: flex;
  gap: 4rem;
  font-size: 1.6rem;
  line-height: 1.5;
  padding-bottom: 0.6rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .footer__right-contact {
    gap: 3rem;
    font-size: 1.3rem;
    line-height: 1.3846153846;
    padding-bottom: 0.6rem;
    letter-spacing: 0;
  }
}

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

.header__inner {
  height: inherit;
  max-width: 148rem;
  display: flex;
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding-bottom: 1.8rem;
    flex-direction: column;
  }
}

/*-------------------------------
header__left
-------------------------------*/
.header__left {
  width: 20.6081081081%;
  height: inherit;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header__left {
    width: 100%;
  }
}

.header__logo {
  padding: 2rem 0;
  width: 22rem;
  position: relative;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .header__logo {
    padding-block: 1.2rem;
    padding-left: 0.5rem;
    width: 19.4rem;
  }
}

.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 220/70;
}

/*-------------------------------
header__mid
-------------------------------*/
.header__mid {
  width: 45%;
  height: inherit;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header__mid {
    display: none;
  }
}

.header__nav-top-list {
  display: flex;
}

.header__nav-item a {
  padding: 0.9rem 2.8rem;
  font-size: 1.8rem;
  line-height: 1.2222222222;
  letter-spacing: 0.07em;
}

.header__nav-top-list .header__nav-item:first-child span {
  background-color: #fffa7b;
}

.header__nav-bottom-list {
  display: flex;
}

/*-------------------------------
header__right
-------------------------------*/
.header__right {
  width: 34.6621621622%;
  height: inherit;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .header__right {
    width: 100%;
  }
}

.hedaer__btns {
  height: inherit;
  display: flex;
  gap: 1.3rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .hedaer__btns {
    margin-top: 0.6rem;
    flex-direction: column;
    gap: 1.8rem;
  }
}

.header__btn.kantan-btn {
  width: 25rem;
}
@media screen and (max-width: 767px) {
  .header__btn.kantan-btn {
    width: 27.2rem;
  }
}

.header__btn.kantan-btn a {
  padding: 1.9rem 0;
  font-size: 1.7rem;
}
@media screen and (max-width: 767px) {
  .header__btn.kantan-btn a {
    padding: 1.9rem 0;
    font-size: 1.8rem;
  }
}

/*-------------------------------
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 #7199eb;
    border-radius: 0.6rem;
    position: absolute;
    top: 1.5rem;
    right: 1rem;
    z-index: 999;
    cursor: pointer;
    transition: 0.3s;
    background-color: #fff;
  }
}

.header__hamburger.is-open {
  background-color: transparent;
}

.header__hamburger span {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 2.5rem;
  height: 0.3rem;
  border-radius: 0.3rem;
  background-color: #7199eb;
  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, 255, 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;
  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__img {
  width: 100%;
}

.mv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1920/794;
}
@media screen and (max-width: 767px) {
  .mv__img img {
    aspect-ratio: 375/208;
  }
}

.mv-bg {
  padding: 3.8rem 0;
  background-color: #7199eb;
}
@media screen and (max-width: 767px) {
  .mv-bg {
    padding: 1.8rem 0 2.2rem;
  }
}

.mv__title-inner.inner {
  max-width: 138rem;
  display: flex;
  align-items: center;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .mv__title-inner.inner {
    padding: 0 14px;
    max-width: 50rem;
    flex-direction: column;
    align-items: start;
    gap: 1.6rem;
  }
}

.mv__main-title {
  font-size: 7.8rem;
  line-height: 1;
  font-weight: 600;
  color: #fffa7b;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .mv__main-title {
    font-size: 3.2rem;
    line-height: 1;
  }
}

.mv__sub-title {
  font-size: 2.5rem;
  line-height: 1.5;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .mv__sub-title {
    font-size: 1.5rem;
  }
}

/*-------------------------------
project
-------------------------------*/
.project {
  margin-top: 5.5rem;
  padding-bottom: 7rem;
}
@media screen and (max-width: 767px) {
  .project {
    margin-top: 2.8rem;
    padding-bottom: 2rem;
  }
}

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

.project__header {
  padding-left: 5rem;
}
@media screen and (max-width: 767px) {
  .project__header {
    padding-left: 0;
  }
}

.project__title {
  font-size: 2.6rem;
  line-height: 1.6538461538;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .project__title {
    font-size: 1.6rem;
    line-height: 1.0269230769;
  }
}

.project__title::before {
  content: "";
  width: 2rem;
  height: 2rem;
  display: block;
  border-radius: 2rem;
  background-color: #db2f7e;
}
@media screen and (max-width: 767px) {
  .project__title::before {
    width: 1.2rem;
    height: 1.2rem;
  }
}

.project__header-container {
  margin-top: 1.2rem;
  display: flex;
  gap: 9rem;
}
@media screen and (max-width: 767px) {
  .project__header-container {
    margin-top: 1.7rem;
    gap: 2rem;
    flex-direction: column;
  }
}

.project__benefit {
  font-size: 3.7rem;
  line-height: 1.4324324324;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .project__benefit {
    font-size: 2rem;
    line-height: 1.45;
    letter-spacing: -0.03em;
  }
}

.project__benefit span {
  position: relative;
}

.project__benefit span::after {
  content: "";
  width: 100%;
  height: 1.2rem;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #eb6565;
  opacity: 0.3;
}
@media screen and (max-width: 767px) {
  .project__benefit span::after {
    height: 0.7rem;
    bottom: 0.2rem;
  }
}

.project__header-text {
  font-size: 1.7rem;
  line-height: 2.0294117647;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .project__header-text {
    font-size: 1.6rem;
    line-height: 1.625;
    letter-spacing: 0.02em;
  }
}

.project__content {
  margin-top: 8.2rem;
}
@media screen and (max-width: 767px) {
  .project__content {
    margin-top: 3rem;
  }
}

.project__content-title {
  padding: 2rem 4rem;
  font-size: 2.4rem;
  line-height: 1.2083333333;
  letter-spacing: 0.03em;
  font-weight: 500;
  color: #fff;
  background-color: #7199eb;
  border-radius: 5rem;
}
@media screen and (max-width: 767px) {
  .project__content-title {
    padding: 0.8rem 2rem;
    font-size: 1.8rem;
    line-height: 1.2222222222;
  }
}

.project__content-img {
  margin-top: 4rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .project__content-img {
    margin-top: 0.9rem;
  }
}

.project__content-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1380/646;
}
@media screen and (max-width: 767px) {
  .project__content-img img {
    aspect-ratio: 360/169;
  }
}

/*-------------------------------
service
-------------------------------*/
.service {
  margin-top: 10.6rem;
}
@media screen and (max-width: 767px) {
  .service {
    margin-top: 2.2rem;
  }
}

.service__inner.inner {
  max-width: 138rem;
}
@media screen and (max-width: 767px) {
  .service__inner.inner {
    max-width: 50rem;
  }
}

.service__cost-btn {
  margin: 0 auto;
  max-width: 69rem;
}

.service__cost-btn a {
  padding: 2.2rem 4.3rem;
  font-size: 3rem;
  letter-spacing: 0.13em;
  font-weight: 500;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5.3rem;
  background-color: #7199eb;
  border-radius: 3.4rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .service__cost-btn a {
    padding: 1.2rem 2.3rem;
    font-size: 1.5rem;
    gap: 2.8rem;
    border-radius: 1.8rem;
  }
}

.service__cost-btn a::after {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  position: absolute;
  top: 50%;
  right: 7.2rem;
  transform: translateY(-50%) rotate(-45deg);
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}
@media screen and (max-width: 767px) {
  .service__cost-btn a::after {
    width: 1.2rem;
    height: 1.2rem;
    right: 3.6rem;
  }
}

.service__cost-btn a img {
  width: 13.8rem;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .service__cost-btn a img {
    width: 7rem;
  }
}

.service__achievement {
  margin-top: 10.4rem;
}
@media screen and (max-width: 767px) {
  .service__achievement {
    margin-top: 2.9rem;
  }
}

.service__achievement-title,
.service__frc-title {
  padding: 2.1rem 3.9rem;
  font-size: 2.3rem;
  line-height: 1.2608695652;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #fff;
  background-color: #7199eb;
  border-radius: 5rem;
}
@media screen and (max-width: 767px) {
  .service__achievement-title,
  .service__frc-title {
    margin: 0 calc(50% - 50vw);
    padding: 1.1rem;
    font-size: 1.7rem;
    line-height: 1;
    border-radius: 0;
  }
}

.service__achievement-bold {
  margin-top: 2.4rem;
  padding-left: 1rem;
  display: inline-block;
  font-size: 2.2rem;
  line-height: 1.2272727273;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .service__achievement-bold {
    margin-top: 0.6rem;
    padding-left: 0;
    font-size: 1.9rem;
    line-height: 1.3684210526;
  }
}

.service__achievement-caution {
  padding-left: 1rem;
  font-size: 1.8rem;
  line-height: 2.2222222222;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .service__achievement-caution {
    padding-left: 0;
    font-size: 1.5rem;
    line-height: 1.8888888889;
  }
}

.service__achievement-text {
  margin-top: 0.5rem;
  padding-inline: 1rem;
  font-size: 1.8rem;
  line-height: 1.5833333333;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .service__achievement-text {
    margin-top: 0.6rem;
    padding-inline: 0;
    font-size: 1.5rem;
    line-height: 1.5333333333;
  }
}

.service__frc {
  margin-top: 6.5rem;
}
@media screen and (max-width: 767px) {
  .service__frc {
    margin-top: 3.6rem;
  }
}

.service__frc-text {
  margin-top: 2.4rem;
  padding-left: 1rem;
  font-size: 2.3rem;
  line-height: 1.2608695652;
  letter-spacing: -0.025em;
}
@media screen and (max-width: 767px) {
  .service__frc-text {
    margin-top: 0.4rem;
    padding-left: 0;
    font-size: 1.6rem;
    line-height: 1.6875;
  }
}

.service__frc-btn-list {
  margin-top: 5.2rem;
  display: flex;
  justify-content: center;
  gap: 4.3rem;
}
@media screen and (max-width: 767px) {
  .service__frc-btn-list {
    margin-top: 2.3rem;
    padding: 0 1rem;
    flex-direction: column;
    gap: 2.8rem;
    align-items: center;
  }
}

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

/*-------------------------------
step
-------------------------------*/
.step {
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .step {
    margin-top: 3.2rem;
  }
}

.step__bg {
  padding-block: 6.2rem 6.6rem;
  background-image: url(../images/step-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .step__bg {
    padding-block: 2.9rem 6rem;
    background-image: url(../images/step-bg_sp.webp);
  }
}

.step__inner.inner {
  max-width: 138rem;
}
@media screen and (max-width: 767px) {
  .step__inner.inner {
    max-width: 55rem;
  }
}

.step__header {
  display: flex;
  gap: 4.3rem;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .step__header {
    padding-inline: 1rem;
    gap: 0.8rem;
    flex-direction: column;
    align-items: flex-start;
  }
}

.step__title {
  font-size: 4.2rem;
  line-height: 1.380952381;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #7199eb;
}
@media screen and (max-width: 767px) {
  .step__title {
    font-size: 2.1rem;
    line-height: 1;
  }
}

.step__title span {
  color: #eb6565;
}

.step__sub-title {
  font-size: 2.2rem;
  line-height: 1.5909090909;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .step__sub-title {
    font-size: 1.6rem;
    line-height: 1.6875;
  }
}

.step__list {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 6.65rem;
}
@media screen and (max-width: 767px) {
  .step__list {
    display: none;
  }
}

.step__item {
  padding: 3.4rem 0 2.2rem;
  border-radius: 2rem;
  border: 0.7rem solid #7199eb;
  background-color: #fff;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  justify-items: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .step__item {
    padding: 2.4rem 0 1.7rem;
    border-radius: 1.6rem;
    border: 0.5rem solid #7199eb;
    grid-row-gap: 0;
  }
}

.step__item:not(:last-child)::after {
  content: "";
  width: 2.4rem;
  height: 4.2rem;
  position: absolute;
  bottom: 50%;
  right: -5.2rem;
  transform: translateY(50%);
  background-image: url(../images/step-arrow.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .step__item:not(:last-child)::after {
    width: 1.9rem;
    height: 3.4rem;
    bottom: -5.1rem;
    right: 50%;
    transform: translateX(50%) rotate(90deg);
  }
}

.step__item-number {
  width: 3.1rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .step__item-number {
    width: 2.6rem;
  }
}

.step__item-number::after {
  content: "";
  width: 5.4rem;
  height: 1.3rem;
  position: absolute;
  bottom: -0.6rem;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
  background-color: #fffa7b;
}
@media screen and (max-width: 767px) {
  .step__item-number::after {
    width: 4.3rem;
    height: 1.1rem;
    bottom: -0.3rem;
    left: 50%;
  }
}

.step__item-number img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 31/41;
}

.step__item-icon {
  margin-top: 3.5rem;
  width: 11.15rem;
}
@media screen and (max-width: 767px) {
  .step__item-icon {
    margin-top: 2.3rem;
    width: 8.95rem;
  }
}

.step__item-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 226/216;
}

.step__item:nth-of-type(1) .step__item-title,
.step__item:nth-of-type(4) .step__item-title {
  margin-top: 2.5rem;
  padding: 2rem 0;
  width: 18rem;
  font-size: 2.9rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../images/step-ribbon.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .step__item:nth-of-type(1) .step__item-title,
  .step__item:nth-of-type(4) .step__item-title {
    margin-top: 2.1rem;
    width: 14.4rem;
    font-size: 2.3rem;
  }
}

.step__item:nth-of-type(2) .step__item-title {
  margin-top: 1.4rem;
  padding: 1.3rem 0;
  width: 22rem;
  font-size: 1.7rem;
  line-height: 1.5882352941;
  letter-spacing: 0.05em;
  background-color: #f5b2b2;
  text-align: center;
  position: relative;
  border-radius: 0.7rem;
}
@media screen and (max-width: 767px) {
  .step__item:nth-of-type(2) .step__item-title {
    margin-top: 1.7rem;
    padding: 0.8rem 0;
    width: 17.5rem;
    font-size: 1.35rem;
    line-height: 1.5555555556;
    border-radius: 0.5rem;
  }
}

.step__item:nth-of-type(2) .step__item-title::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 1rem solid transparent;
  border-left: 1rem solid transparent;
  border-bottom: 1.7rem solid #f5b2b2;
  border-top: 0;
  position: absolute;
  top: -1.4rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .step__item:nth-of-type(2) .step__item-title::before {
    border-right: 1rem solid transparent;
    border-left: 1rem solid transparent;
    border-bottom: 1.7rem solid #f5b2b2;
    top: -1.4rem;
  }
}

.step__item-text {
  margin-top: 1rem;
  font-size: 1.8rem;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .step__item-text {
    margin-top: 0.6rem;
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}

.step__sp-img {
  display: none;
}
@media screen and (max-width: 767px) {
  .step__sp-img {
    display: block;
    margin: 0 auto;
    margin-top: 1.9rem;
    max-width: 50rem;
  }
}

/*-------------------------------
btn-blue
-------------------------------*/
.btn-blue {
  position: relative;
}

.btn-blue::before {
  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 {
  padding: 1.5rem 1.5rem 1.5rem 0;
  width: 100%;
  font-size: 1.8rem;
  font-weight: 500;
  color: #2c53b6;
  text-align: center;
  border-radius: 2rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  border-radius: 5rem;
  text-wrap: nowrap;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .btn-blue a {
    padding: 1.1rem 1.5rem 1.1rem 0;
    font-size: 1.4rem;
  }
}

.btn-blue a::before {
  content: "";
  width: calc(100% + 1rem);
  height: calc(100% + 1rem);
  position: absolute;
  top: -0.5rem;
  left: -0.5rem;
  z-index: -1;
  background: linear-gradient(90deg, rgb(35, 106, 225) 0%, rgb(50, 163, 231) 50%, rgb(55, 205, 227) 100%);
  border-radius: 5rem;
}

.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 #2c53b6;
  border-right: 0.3rem solid #2c53b6;
  transition: 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  .btn-blue a::after {
    width: 1.2rem;
    height: 1.2rem;
    top: 51%;
    right: 2.6rem;
    border-bottom: 0.2rem solid #7199eb;
    border-right: 0.2rem solid #7199eb;
  }
}

.btn-blue a:hover {
  color: #fff;
  background-color: transparent;
  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;
  }
}

/*-------------------------------
kantan-btn
-------------------------------*/
.kantan-btn a {
  padding: 1.9rem 0;
  width: 100%;
  font-size: 1.7rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  border-radius: 5rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-position 0.6s ease-in-out;
  text-wrap: nowrap;
}
@media screen and (max-width: 767px) {
  .kantan-btn a {
    padding: 1.6rem 1.5rem 1.6rem 0;
    font-size: 1.4rem;
  }
}

.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: 5rem;
  filter: blur(3px);
  mix-blend-mode: multiply;
}

.kantan-btn.-hattyu a:hover,
.kantan-btn.-mitsumori a:hover {
  background-position: right;
  box-sizing: border-box;
  opacity: 1;
}

/*-------------------------------
-hattyu ご発注前ご相談
-------------------------------*/
.kantan-btn.-hattyu a {
  background: linear-gradient(90deg, rgb(189, 12, 183) 0%, rgb(139, 30, 253) 25%, rgb(72, 194, 253) 50%, rgb(139, 30, 253) 75%, rgb(189, 12, 183) 100%);
  background-size: 200% 100%;
  background-position: left;
}

/*-------------------------------
-mitusmori ご予算お見積り
-------------------------------*/
.kantan-btn.-mitsumori a {
  background: linear-gradient(90deg, rgb(235, 68, 29) 0%, rgb(228, 154, 16) 50%, rgb(235, 68, 29) 100%);
  background-size: 200% 100%;
  background-position: left;
}
/*# sourceMappingURL=style.css.map */
