@charset "utf-8";
/*
Theme Name: diver_child
Template: diver
Description:  Diverの子テーマです。
Theme URI: http://tan-taka.com/diver/
Author: Takato Takagi
 */

/*全体*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
}

body {
  font-family: "Noto Sans JP", serif;
  line-height: 1.5;
  color: rgba(34, 34, 34, 1);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  font-feature-settings: normal;
}

#container {
  margin: auto;
  max-width: 1920px;
  width: 100%;
  box-shadow: 0px 4px 100px 0px rgba(0, 0, 0, 0.25);
}

img {
  vertical-align: middle;
  max-width: 100%;
}

ul, ol {
  padding: 0;
  list-style: none;
}

button {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background: none;
  padding: 0;
}

a {
  text-decoration: none;
}

@media screen and (min-width: 1041px) {
  a:hover {
    opacity: 0.5;
  }
}

.sp-br {
  display: none;
}

.sm-br {
  display: none;
}

@media screen and (max-width: 1040px) {
  .sp-br {
    display: inline;
  }

  .pc-br {
    display: none;
  }
}

@media screen and (max-width: 640px) {
  .md-br {
    display: none;
  }

  .sm-br {
    display: inline;
  }
}

body {
  overflow-x: hidden;
}

/*topbar*/
.topbar {
  position: relative;
  z-index: 5;
  height: 28px;
  background: rgba(51, 51, 51, 1);
}

.topbar__text {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 1);
}

/*header*/
.site-header {
  display: flex;
  align-items: center;
  position: fixed;
  top: 28px;
  right: 0;
  left: 0;
  z-index: 4;
  margin: auto;
  padding: 0 48px;
  max-width: 1920px;
  width: 100%;
  height: 122px;
  background: rgba(255, 255, 255, 1);
  transition: top 0.3s;
}

.site-header.is-fixed {
  top: 0;
}

.site-header__logo {
  margin-right: auto;
  width: 290px;
}

.site-header__logo-image {
  display: block;
  width: 100%;
  height: auto;
}

.site-header__nav {
  display: flex;
  align-items: center;
}

.gnav__list {
  display: flex;
  align-items: center;
  gap: 36px;
}

.gnav__link {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: rgba(34, 34, 34, 1);
}

.gnav__item {
  position: relative;
}

.gnav__link.gnav__btn {
  display: block;
  text-align: center;
  width: 192px;
  height: 43px;
  font-size: 18px;
  font-weight: 600;
  line-height: 43px;
  color: rgba(255, 255, 255, 1);
  background: rgba(21, 175, 20, 1);
  border-radius: 40px;
}

.gnav__link:hover {
  opacity: 1;
  border-bottom-width: 3px;
  border-bottom-style: solid;
  border-image-source: linear-gradient(90deg, #FF831A 0%, #FC4201 100%);
  border-image-slice: 1;
}

.gnav__link.is-current {
  opacity: 1;
  border-bottom-width: 3px;
  border-bottom-style: solid;
  border-image-source: linear-gradient(90deg, #FF831A 0%, #FC4201 100%);
  border-image-slice: 1;
}

a.gnav__link.gnav__btn:hover {
  opacity: 0.5;
  border: none;
}

.gnav__link.gnav__btn.is-current {
  line-height: 39px;
  color: rgba(21, 175, 20, 1);
  background: rgba(255, 255, 255, 1);
  border: 2px solid rgba(21, 175, 20, 1);
}

.sns {
  display: none;
}

.hamburger {
  display: none;
}

@media screen and (max-width: 1270px) {
  .topbar {
    height: 21px;
  }

  .topbar__text {
    font-size: 9px;
    line-height: 21px;
  }

  .site-header {
    top: 21px;
    padding: 0 10px;
    height: 50px;
  }

  .site-header.is-fixed {
    top: 0;
  }

  .site-header.is-menu-open {
    transition: none;
  }

  .site-header__logo {
    width: 160px;
  }

  .site-header__nav {
    display: block;
    position: fixed;
    right: 0;
    z-index: 2;
    overflow-y: auto;
    padding: 10px 30px 30px;
    width: 360px;
    max-width: 100%;
    background: rgba(255, 255, 255, 1);
    white-space: nowrap;
    transform: translateX(100%);
    transition: transform 0.5s;
  }

  .site-header:not(.is-fixed) .site-header__nav {
    top: 71px;
    height: calc(100vh - 71px);
  }

  .site-header.is-fixed .site-header__nav {
    top: 50px;
    height: calc(100vh - 50px);
  }

  .site-header__nav.toggle {
    transform: translateX(0);
  }

  .gnav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .gnav__item {
    display: block;
    width: 100%;
  }

  .gnav__link {
    font-weight: 600;
    line-height: 2;
  }

  .gnav__link.is-current {
    border: none;
  }

  a.gnav__link.gnav__btn {
    width: 300px;
    line-height: 43px;
  }

  .sns {
    display: flex;
    gap: 32px;
    margin-top: 30px;
  }

  .hamburger {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 4px;
    position: relative;
    z-index: 4;
    width: 26px;
    margin-left: auto;
    cursor: pointer;
  }

  .site-header:not(.is-fixed) .hamburger.toggle {
    position: fixed;
    top: 31px;
    right: 10px;
    background-color: rgba(255, 255, 255, 1);
  }

  .site-header.is-fixed .hamburger.toggle {
    position: fixed;
    top: 10px;
    right: 10px;
    background-color: rgba(255, 255, 255, 1);
  }

  .hamburger span:not(.hamburger__text) {
    display: block;
    width: 100%;
    height: 2.7px;
    background: rgba(34, 34, 34, 1);
    transition: transform 0.5s, opacity 0.5s;
  }

  .hamburger.toggle span:not(.hamburger__text):nth-of-type(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger.toggle span:not(.hamburger__text):nth-of-type(2) {
    opacity: 0;
  }

  .hamburger.toggle span:not(.hamburger__text):nth-of-type(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hamburger__text {
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-size: 9px;
    line-height: 1;
    letter-spacing: 0;
    color: rgba(114, 114, 118, 1);
    white-space: nowrap;
    background: none;
  }

  .no-scroll {
    position: fixed;
    right: 0;
    left: 0;
    overflow: hidden;
    width: 100%;
  }
}

@media screen and (max-width: 640px) {
  .site-header__logo {
    width: 130px;
  }
}

/*footer*/
.site-footer {
  overflow: hidden;
  margin: auto;
  background: rgba(255, 255, 255, 1);
}

.site-footer__inner {
  margin: auto;
  max-width: 1920px;
  width: 100%;
}

.site-footer__body {
  margin: auto;
  padding: 74px 20px 90px;
  max-width: 1040px;
  width: 100%;
}

.site-footer__logo {
  margin-bottom: 68px;
  width: 290px;
}

.fnav__cols {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 70px;
}

.fnav__item + .fnav__item {
  margin-top: 30px;
}

.fnav__link {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  color: rgba(33, 36, 33, 1);
}

.fnav__sublist {
  margin-top: 26px;
}

.fnav__subitem + .fnav__subitem {
  margin-top: 18px;
}

.fnav__subitem {
  position: relative;
  padding-left: 20px;
}

.fnav__subitem::before {
  position: absolute;
  left: 0;
  top: 0;
}

.fnav__subitem--branch::before {
  content: "├";
}

.fnav__subitem--last::before {
  content: "└";
}

.fnav__sublink {
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  color: rgba(33, 36, 33, 1);
}

a.fnav__btn {
  display: block;
  text-align: center;
  width: 200px;
  height: 43px;
  font-size: 18px;
  font-weight: 600;
  line-height: 43px;
  color: #FFF;
  background: rgba(21, 175, 20, 1);
  border-radius: 40px;
}

.fnav__sns {
  display: flex;
  gap: 20px;
}

.site-footer__copy {
  display: block;
  text-align: center;
  padding: 30px 0;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: rgba(0, 0, 0, 1);
  border-top: 1px solid rgba(0, 0, 0, 1);
}

@media screen and (max-width: 1040px) {
  .site-footer__body {
    padding: 50px 70px;
  }

  .site-footer__logo {
    margin-bottom: 28px;
    width: 220px;
  }

  .fnav__cols {
    flex-direction: column;
    gap: 30px;
  }

  .fnav__link {
    font-size: 16px;
  }

  .fnav__sublink {
    font-weight: 500;
  }

  a.fnav__btn {
    width: 320px;
  }

  .fnav__sns {
    gap: 32px;
  }

  .site-footer__copy {
    padding: 20px 0;
  }
}

@media screen and (max-width: 640px) {
  .site-footer__body {
    padding: 50px 20px;
  }
}

/*breadcrumb*/
#breadcrumb {
  margin: 122px auto 0;
  padding: 12px 48px;
  background: rgba(246, 243, 236, 1);
}

#breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

#breadcrumb li {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  color: rgba(51, 51, 51, 1);
}

#breadcrumb li a {
  color: rgba(0, 137, 228, 1);
}

#breadcrumb li + li::before {
  display: inline-block;
  content: "";
  width: 6px;
  height: 9px;
  margin-right: 8px;
  background: url("/wp-content/uploads/img/breadcrumb-arrow.svg") no-repeat center / contain;
}

@media screen and (max-width: 1270px) {
  #breadcrumb {
    margin-top: 50px;
  }
}

@media screen and (max-width: 1040px) {
  #breadcrumb {
    padding: 8px 20px;
  }

  #breadcrumb li {
    font-size: 10px;
  }

  #breadcrumb li + li::before {
    vertical-align: -1px;
  }
}

/*top*/
.top {
  margin: auto;
  max-width: 1920px;
  width: 100%;
  background: rgba(246, 243, 236, 1);
}

.top-fv {
  margin-top: 122px;
}

.top-fv__title {
  position: relative;
  text-align: center;
  margin: -1.56vw auto 0;
  padding: 40px 20px;
  max-width: 1000px;
  width: calc(100% - 40px);
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.05em;
  background: rgba(237, 232, 218, 1);
}

@media screen and (max-width: 1270px) {
  .top-fv {
    margin-top: 50px;
  }
}

@media screen and (max-width: 1040px) {
  .top-fv__title {
    margin: 0 auto;
    padding: 30px 20px;
    max-width: 600px;
    font-size: 24px;
  }
}

@media screen and (max-width: 640px) {
  .top-fv__title {
    padding: 16px 20px;
    max-width: 320px;
    font-size: 16px;
  }
}

/*contact-cta*/
.contact-cta {
  text-align: center;
  padding: 84px 20px;
  background: rgba(246, 243, 236, 1);
}

.contact-cta__text {
  margin-bottom: 26px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.contact-cta__image {
  width: 804px;
  border-radius: 82px;
  box-shadow: 0 12px 24px rgba(0, 133, 28, 0.22);
}

.contact-cta.contact-cta--entry {
  padding: 76px 16px 20px;
}

@media screen and (max-width: 1040px) {
  .contact-cta {
    text-align: center;
    padding: 34px 16px 44px;
  }

  .contact-cta__text {
    margin-bottom: 18px;
    font-size: 14px;
  }

  .contact-cta__image {
    width: 328px;
    border-radius: 34px;
  }

  .contact-cta.contact-cta--entry {
    padding-top: 52px;
  }
}

/*intro*/
.intro {
  text-align: center;
  padding: 56px 20px 102px;
  background: rgba(246, 243, 236, 1);
}

.intro__title {
  font-family: "Noto Serif JP", serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.86;
  letter-spacing: 0;
}

.intro__lead {
  margin: 8px 0 54px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.05em;
}

.intro__list {
  display: flex;
  gap: 20px;
  margin: auto;
  max-width: 1000px;
  width: 100%;
}

.intro__item {
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}

.intro__item::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -8px;
  width: 74px;
  height: 74px;
}

.intro__item--web::before {
  background: url("/wp-content/uploads/img/intro1.svg") no-repeat center / contain;
}

.intro__item--lp::before {
  background: url("/wp-content/uploads/img/intro2.svg") no-repeat center / contain;
}

.intro__item--flyer::before {
  background: url("/wp-content/uploads/img/intro3.svg") no-repeat center / contain;
}

.intro__category {
  margin-left: 36px;
  height: 45px;
  font-size: 20px;
  font-weight: 400;
  line-height: 45px;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 1);
  background: linear-gradient(90deg, #FF831A 0%, #FC4201 100%);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.intro__body {
  flex-grow: 1;
  padding: 24px 0 30px;
  background: rgba(255, 255, 255, 1);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.intro__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
}

.intro__data {
  margin: 24px 0 20px;
  font-family: "Noto Serif JP", serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0;
  color: rgba(255, 45, 85, 1);
}

.intro__num {
  font-size: 33px;
}

.intro__value {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  color: rgba(255, 45, 85, 1);
}

.intro__label {
  align-self: flex-end;
  padding: 0 8px;
  height: 25px;
  font-family: "Noto Sans JP", serif;
  font-size: 15px;
  line-height: 25px;
  color: rgba(255, 255, 255, 1);
  background: rgba(255, 45, 85, 1);
  border-radius: 2px;
}

.intro__key {
  font-size: 50px;
}

.intro__unit {
  align-self: flex-end;
}

@media screen and (max-width: 1040px) {
  .intro {
    padding: 44px 20px 66px;
  }

  .intro__title {
    font-size: 24px;
    line-height: 1.5;
  }

  .intro__lead {
    margin: 10px 0 26px;
    font-size: 16px;
    line-height: 1.5;
  }

  .intro__list {
    flex-direction: column;
    gap: 30px;
    max-width: 320px;
  }
}

/*problem*/
.problem {
  padding: 88px 20px 118px;
  background: rgba(255, 255, 255, 1) url("/wp-content/uploads/img/problem-bg.png") no-repeat center 213px / 1920px;
}

.problem__title {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.problem__group {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 36px auto 60px;
  padding: 42px 0;
  max-width: 1000px;
  width: 100%;
  background: rgba(117, 117, 117, 0.2);
  box-shadow: 8px 8px 22px 7px rgba(196, 196, 196, 0.31);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.problem__group::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: -40px;
  margin: auto;
  width: 30px;
  height: 62px;
  background: url("/wp-content/uploads/img/triple-arrow.svg") no-repeat center / contain;
}

.problem__item {
  padding-left: 40px;
  text-indent: -40px; 
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.problem__item::before {
  display: inline-block;
  content: "";
  width: 28px;
  height: 28px;
  margin-right: 12px;
  vertical-align: -6px;
  background: url("/wp-content/uploads/img/worries.svg") no-repeat center / contain;
}

.problem__accent {
  font-weight: 800;
  text-decoration: underline;
}

.problem__item + .problem__item {
  margin-top: 28px;
}

.problem__note {
  text-align: center;
  font-size: 33px;
  font-weight: 500;
  line-height: 1.86;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 1040px) {
  .problem {
    background: rgba(255, 255, 255, 1) url("/wp-content/uploads/img/problem-bg-md.png") no-repeat center 28px / 1040px;
  }

  .problem__group {
    margin: 60px auto 72px;
  }

  .problem__group {
    margin: 60px auto 72px;
    max-width: 600px;
  }

  .problem__item {
    font-size: 20px;
  }

  .problem__note {
    line-height: 1.54;
  }
}

@media screen and (max-width: 640px) {
  .problem {
    padding: 74px 20px 62px;
    background: rgba(255, 255, 255, 1) url("/wp-content/uploads/img/problem-bg-sp.png") no-repeat center 28px / 640px;
  }

  .problem__title {
    font-size: 19px;
    line-height: 1.5;
    letter-spacing: 0;
  }

  .problem__main {
    font-size: 22px;
  }

  .problem__group {
    padding: 30px 20px;
    margin: 24px auto 36px;
  }

  .problem__group::after {
    bottom: -20px;
    width: 20px;
    height: 42px;
  }

  .problem__item {
    font-size: 16px;
  }

  .problem__item::before {
    vertical-align: -8px;
  }

  .problem__item + .problem__item {
    margin-top: 20px;
  }

  .problem__note {
    font-size: 18px;
    line-height: 1.5;
  }
}

/*cause*/
.cause {
  text-align: center;
  padding: 0 20px 20px;
  background: rgba(255, 255, 255, 1);
}

.cause__lead {
  text-align: center;
  margin: auto;
  width: 318px;
  height: 115px;
  font-family: "Noto Serif JP", serif;
  font-size: 78px;
  font-weight: 500;
  line-height: 115px;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 1);
  background: rgba(0, 0, 0, 1);
  transform: translateY(-57px);
}

.cause__title {
  text-align: center;
  margin: 0 0 62px;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.86;
  letter-spacing: 0.05em;
}

.cause__main {
  font-family: "Noto Serif JP", serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.67;
}

.cause__mark {
  display: inline;
  background: linear-gradient( transparent 48%, rgba(255, 250, 103, 1) 48%, rgba(255, 250, 103, 1) 92%, transparent 92% );
}

.cause__image {
  width: 862px;
}

@media screen and (max-width: 1040px) {
  .cause__title {
    margin: 0 0 28px;
    font-size: 18px;
  }

  .cause__main {
    font-size: 26px;
    line-height: 1.5;
  }

  .cause__mark {
    background: linear-gradient( transparent 60%, rgba(255, 250, 103, 1) 60%, rgba(255, 250, 103, 1) 92%, transparent 92%);
  }
}

@media screen and (max-width: 640px) {
  .cause__lead {
    width: 164px;
    height: 60px;
    font-size: 40px;
    line-height: 60px;
    transform: translateY(-30px);
  }
}

/*design*/
.design {
  text-align: center;
  padding: 0 20px 276px;
  background: rgba(255, 255, 255, 1) url("/wp-content/uploads/img/design-bg.png") no-repeat center 320px / 1920px;
}

.design__lead {
  width: 378px;
}

.design__inner {
  margin: -30px auto 0;
  padding: 55px 34px 32px;
  max-width: 1000px;
  width: 100%;
  background: rgba(255, 239, 203, 1);
  box-shadow: 12px 11px 27px 0px rgba(92, 92, 92, 0.25);
}

.design__text {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: rgba(0, 0, 0, 1);
}

.design__accent {
  color: rgba(255, 45, 85, 1);
}

.design__title {
  margin-bottom: 54px;
  font-family: "Noto Serif JP", serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.77;
  letter-spacing: 0.05em;
  color: rgba(0, 0, 0, 1);
}

.design__main {
  position: relative;
  display: inline-block;
  font-size: 92px;
  font-weight: 700;
  line-height: 1.77;
  letter-spacing: 0.05em;
  background: linear-gradient(90deg, #FB4100 0%, #FF8B1A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.design__main::before,
.design__main::after {
  position: absolute;
  top: 0;
  font-size: 1.68em;
  color: #ffffff;
  line-height: 1;
  -webkit-text-fill-color: initial;
}

.design__main::before {
  content: "“";
  left: -0.6em;
}

.design__main::after {
  content: "”";
  right: -0.6em;
}

.design__box {
  padding: 40px;
  background: rgba(255, 255, 255, 1);
  border-radius: 10px;
}

.design__heading {
  text-align: left;
  margin-bottom: 20px;
  padding-bottom: 24px;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  border-bottom: 4px dotted rgba(255, 131, 26, 1);
}

.design__body {
  display: flex;
  align-items: center;
  gap: 50px;
}

.design__desc {
  text-align: left;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
}

.design__term {
  color: rgba(255, 45, 85, 1);
}

.design__image {
  width: 400px;
}

@media screen and (max-width: 1040px) {
  .design {
    padding: 0 20px 350px;
    background: rgb(255, 255, 255) url("/wp-content/uploads/img/design-bg-md.png") no-repeat left bottom 110px / 1040px;
  }

  .design__inner {
    margin: -30px auto 0;
    padding: 64px 35px 35px;
    max-width: 600px;
    box-shadow: 12px 11px 27px 0px rgba(92, 92, 92, 0.25);
  }

  .design__main {
    font-size: 65px;
  }

  .design__main::before, .design__main::after {
    font-size: 70px;
  }

  .design__title {
    font-size: 40px;
  }

  .design__box {
    padding: 40px;
  }

  .design__body {
    flex-direction: column;
    gap: 6px;
  }

  .design__desc {
    align-self: flex-start;
    font-size: 18px;
  }

  .design__image {
    width: 450px;
  }
}

@media screen and (max-width: 640px) {
  .design {
    padding: 0 20px calc(26vw + 110px);
    background: rgb(255, 255, 255) url("/wp-content/uploads/img/design-bg-sp.png") no-repeat left bottom 110px / contain;
  }

  .design__inner {
    margin: -10px auto 0;
    padding: 24px 15px;
    box-shadow: 3.75px 3.44px 8.44px 0px rgba(92, 92, 92, 0.25);
  }

  .design__lead {
    width: 184px;
  }

  .design__text {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
  }

  .design__main {
    font-size: 34px;
  }

  .design__main::before, .design__main::after {
    font-size: 30px;
  }

  .design__title {
    margin-bottom: 26px;
    font-size: 24px;
  }

  .design__box {
    padding: 20px 12px 16px;
  }

  .design__heading {
    text-align: left;
    margin-bottom: 10px;
    padding-bottom: 8px;
    font-size: 16px;
    border-bottom: 2px dotted rgb(255, 131, 26);
  }

  .design__desc {
    font-size: 14px;
  }
}

/*pillar*/
.pillar {
  position: relative;
  background:
    linear-gradient(
      to top,
      #FFF 0,
      #FFF 150px,
      transparent 150px,
      transparent 100%
    );
}

.pillar::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: -36px;
  margin: auto;
  width: 8px;
  height: 88px;
  background: url("/wp-content/uploads/img/five-dots.svg") no-repeat center / contain;
}

.pillar__title {
  position: relative;
  margin: -120px 0 0 18%;
  padding: 34px 0 10px 354px;
  font-family: "Noto Serif JP", serif;
  font-size: 45px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 1);
  background: linear-gradient(90deg, #FF831A 0%, #FC4201 100%);
  border-radius: 120px 0 0 120px;
}

.pillar__main {
  margin-left: 82px;
  font-size: 78px;
}

.pillar__num {
  font-size: 108px;
}

.pillar__inner {
  padding: 0 20px 116px;
  background: url("/wp-content/uploads/img/pillar-bg.png") no-repeat center bottom / 1920px;
}

.pillar__list {
  margin: 88px auto 0;
  max-width: 1040px;
  width: 100%;
  counter-reset: pillar;
}

.pillar__item {
  display: flex;
  align-items: flex-start;
  counter-increment: pillar;
  position: relative;
}

.pillar__item + .pillar__item {
  margin-top: 106px;
}

.pillar__image {
  position: relative;
  z-index: 2;
  width: 380px;
  box-shadow: 12px 11px 27px 0px rgba(100, 56, 10, 0.2);
  border-radius: 10px;
}

.pillar__body {
  flex-shrink: 0;
  position: relative;
  margin: 50px 0 0 -140px;
  padding: 56px 56px 44px 175px;
  width: 760px;
  background: rgba(255, 255, 255, 1);
}

.pillar__body::before {
  position: absolute;
  content: counter(pillar, decimal-leading-zero);
  top: -100px;
  right: 36px;
  font-family: "Noto Serif JP", serif;
  font-size: 122px;
  color: rgba(255, 209, 171, 1);
}

.pillar__heading {
  margin-bottom: 28px;
  font-family: "Noto Serif JP", serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
  background: linear-gradient(90deg, #FF831A 0%, #FC4201 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.pillar__label {
  font-size: 60px;
}

.pillar__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
}

.pillar__steps {
  display: flex;
  gap: 18px;
  margin: 18px 0;
}

.pillar__step {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  width: 120px;
  height: 74px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 1);
  background: rgba(203, 145, 103, 1);
  border-radius: 10px;
}

.pillar__step::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -12px;
  transform: translateY(-50%);
  width: 6px;
  height: 14px;
  background: url("/wp-content/uploads/img/step-arrow.svg") no-repeat center / contain;
}

.pillar__step:first-child::before {
  content: none;
}

.pillar__figure {
  display: block;
  margin: 56px auto 32px;
  width: 866px;
}

.pillar__closing {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.61;
  letter-spacing: 0.05em;
  color: rgba(0, 0, 0, 1);
}

.pillar__closing + .pillar__closing {
  margin-top: 24px;
}

.pillar__accent {
  font-size: 26px;
  font-weight: 700;
  color: rgba(255, 105, 0, 1);
  text-decoration: underline;
}

@media screen and (min-width: 1921px) {
  .pillar__title {
    margin: -120px 0 0 360px;
  }
}

@media screen and (max-width: 1040px) {
  .pillar::after {
    bottom: -40px;
    width: 5px;
    height: 55px;
  }

  .pillar__title {
    margin: -60px 0 0 22px;
    padding: 16px 0 10px 40px;
    font-size: 24px;
    line-height: 1.2;
    border-radius: 64px 0 0 64px;
  }

  .pillar__main {
    margin-left: 68px;
    font-size: 42px;
  }

  .pillar__num {
    font-size: 56px;
  }

  .pillar__inner {
    padding: 0 0 70px;
    background:
      linear-gradient(
        rgba(246, 243, 236, 1) 0%,
        rgba(246, 243, 236, 1) 80%,
        transparent 80%
      ),
      url("/wp-content/uploads/img/pillar-bg-md.png") no-repeat center bottom / 1040px;
  }

  .pillar__list {
    margin: 44px auto 0;
  }

  .pillar__item {
    flex-direction: column;
  }

  .pillar__item + .pillar__item {
    margin-top: 30px;
  }

  .pillar__image {
    margin: auto;
    width: 280px;
    box-shadow: 8.66px 7.94px 19.49px 0px rgba(100, 56, 10, 0.2);
  }

  .pillar__body {
    margin: -30px auto 0;
    padding: 70px 20px 32px;
    width: 100%;
  }

  .pillar__body::before {
    top: -54px;
    right: calc(50% - 170px);
    z-index: 3;
    font-size: 90px;
    font-weight: 300;
  }

  .pillar__heading {
    margin: 0 auto 16px;
    max-width: 600px;
    font-size: 24px;
  }

  .pillar__label {
    font-size: 34px;
  }

  .pillar__text {
    margin: auto;
    max-width: 600px;
    font-size: 16px;
    line-height: 1.6;
  }

  .pillar__steps {
    margin: 15px auto;
    max-width: 600px;
  }

  .pillar__figure {
    margin: 42px auto 28px;
    width: 600px;
  }

  .pillar__closing + .pillar__closing {
    margin-top: 32px;
  }

  .pillar__closing:first-of-type {
    font-size: 16px;
  }
}

@media screen and (max-width: 640px) {
  .pillar__inner {
    background:
      linear-gradient(
        rgba(246, 243, 236, 1) 0%,
        rgba(246, 243, 236, 1) 85%,
        transparent 80%
      ),
      url("/wp-content/uploads/img/pillar-bg-sp.png") no-repeat center bottom / 640px;
  }

  .pillar__steps {
    flex-direction: column;
    gap: 14px;
  }

  .pillar__step {
    width: 320px;
    height: 40px;
    font-size: 16px;
  }

  .pillar__step::before {
    top: -13px;
    left: 0;
    right: 0;
    margin: auto;
    transform: rotate(90deg);
  }
}

/*service*/
.service {
  padding: 94px 20px 20px;
  background: rgba(255, 255, 255, 1);
}

.service__title {
  text-align: center;
  margin-bottom: 65px;
  font-family: "Noto Serif JP", serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 80px;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 1);
  background: url("/wp-content/uploads/img/orange-strip.png") no-repeat center / contain;
}

.service__list {
  margin: auto;
  max-width: 1000px;
  width: 100%;
}

.service__item {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 2px solid rgba(204, 204, 204, 1);
}

.service__item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.service__img {
  width: 200px;
  border-radius: 50%;
  box-shadow: 3px 4px 10px 0px rgba(127, 127, 127, 0.2);
}

.service__heading {
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
  color: rgba(0, 0, 0, 1);
}

.service__text {
  margin: 16px 0 24px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.77;
  letter-spacing: 0.05em;
  color: rgba(0, 0, 0, 1);
}

.service__price {
  text-align: right;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 1040px) {
  .service {
    padding: 60px 20px 40px;
  }

  .service__title {
    margin-bottom: 30px;
    font-size: 24px;
    line-height: 40px;
    background: url("/wp-content/uploads/img/orange-strip-sp.png") no-repeat center / contain;
  }

  .service__item {
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .service__img {
    width: 260px;
  }

  .service__heading {
    font-size: 20px;
  }

  .service__text {
    margin: 16px 0x;
    font-size: 16px;
    line-height: 1.6;
  }

  .service__price {
    font-size: 14px;
  }
}

/*reason*/
.reason {
  padding: 230px 20px 126px;
  background: rgba(255, 255, 255, 1) url("/wp-content/uploads/img/reason-bg.png") no-repeat center top / cover;
}

.reason__title {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 1);
}

.reason__brand {
  font-size: 45px;
}

.reason__main {
  font-size: 78px;
}

.reason__list {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin: 64px auto 0;
  max-width: 1000px;
  width: 100%;
}

.reason__item {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 24px;
  width: calc((100% - 34px) / 2);
  background: rgba(255, 255, 255, 1);
  border-radius: 10px;
  box-shadow: 0px 20px 24px -4px rgba(10, 13, 18, 0.1);
}

.reason__item:first-child::before {
  content: "";
  position: absolute;
  top: -38px;
  left: -38px;
  width: 208px;
  height: 216px;
  background: url("/wp-content/uploads/img/reason-badge.png") no-repeat center / contain;
}

.reason__heading {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  text-align: center;
  margin-bottom: 15px;
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: rgba(255, 105, 0, 1);
}

.reason__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.77;
  letter-spacing: 0;
}

@media screen and (max-width: 1040px) {
  .reason {
    padding: 176px 20px 72px;
    background: rgba(255, 255, 255, 1) url("/wp-content/uploads/img/reason-bg-md.png") no-repeat center top / cover;
  }

  .reason__title {
    font-size: 27px;
    line-height: 1.5;
  }

  .reason__brand {
    font-size: 40px;
  }

  .reason__main {
    font-size: 65px;
  }

  .reason__list {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 44px auto 0;
  }

  .reason__item {
    padding: 24px;
    max-width: 483px;
    width: 100%;
  }

  .reason__heading {
    font-size: 20px;
  }

  .reason__text {
    font-size: 16px;
  }
}

@media screen and (max-width: 640px) {
  .reason {
    padding: 64px 20px 72px;
    background: rgb(255, 255, 255) url("/wp-content/uploads/img/reason-bg-sp.png") no-repeat center top / 640px;
  }

  .reason__title {
    font-size: 16px;
  }

  .reason__brand {
    font-size: 23px;
  }

  .reason__main {
    font-size: 40px;
  }

  .reason__item:first-child::before {
    top: -56px;
    left: -36px;
    width: 172px;
    height: 178px;
  }
}


/*result*/
.result {
  padding: 75px 20px 148px;
  background: rgba(255, 255, 255, 1);
}

.result__title {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.86;
  letter-spacing: 0;
}

.result__list {
  display: flex;
  gap: 23px;
  margin: 32px auto 54px;
  max-width: 1000px;
  width: 100%;
}

.result__item {
  flex: 1;
}

.result__image {
  border-radius: 10px;
  box-shadow: 3px 4px 10px 0px rgba(127, 127, 127, 0.2);
}

.result__tag {
  display: inline-block;
  text-align: center;
  margin: 20px 0 10px;
  width: 75px;
  height: 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 1);
  background: rgba(34, 34, 34, 1);
  border-radius: 40px;
}

.result__name {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: rgba(34, 34, 34, 1);
}

.result__more {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: auto;
  width: 195px;
  height: 50px;
  font-size: 18px;
  font-weight: 400;
  line-height: 46px;
  letter-spacing: 0;
  color: rgba(34, 34, 34, 1);
  border: 1.61px solid rgba(34, 34, 34, 1);
}

.result__more::after {
  content: "→";
  font-size: 20px;
}

@media screen and (max-width: 1040px) {
  .result {
    padding: 52px 20px 46px;
  }

  .result__title {
    font-size: 24px;
    line-height: 1.5;
  }

  .result__list {
    flex-direction: column;
    align-items: center;
    margin: 30px auto;
  }

  .result__item {
    max-width: 320px;
    width: 100%;
  }

  .result__tag {
    margin: 16px 0 6px;
  }

  .result__name {
    font-size: 14px;
  }

  .result__more {
    width: 174px;
    height: 42px;
    font-size: 14px;
    line-height: 38px;
    border: 1.61px solid rgba(34, 34, 34, 1);
  }

  .result__more::after {
    font-size: 14px;
  }
}

/*voice*/
.voice {
  margin-top: 100px;
}

.voice__title {
  text-align: center;
  margin-top: -40px;
  font-family: "Noto Serif JP", serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 80px;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 1);
  background: url("/wp-content/uploads/img/orange-strip.png") no-repeat center / contain;
}

.voice__carousel {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  padding: 72px 0 94px;
  max-width: 1830px;
  width: 100%;
}

.swiper {
  position: relative;
  margin: 0 auto;
  width: 540px;
  overflow: visible;
}

.swiper-wrapper {
  align-items: stretch;
}

.swiper-slide {
  height: auto;
}

.voice-card {
  padding: 40px 45px;
  height: 100%;
  background: rgba(255, 255, 255, 1);
  border-radius: 10px;
  box-shadow: 12px 11px 27px 0px rgba(100, 56, 10, 0.2);
}

.voice__head {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.voice__image {
  width: 118px;
}

.voice__name {
  min-height: 72px;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0;
  color: rgba(0, 0, 0, 1);
}

.voice__label {
  text-align: center;
  margin: 14px 0 4px;
  width: 110px;
  height: 20px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 1);
  background: rgba(112, 57, 35, 1);
}

.voice__order {
  min-height: 48px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  color: rgba(112, 57, 35, 1);
}

.voice__text {
  margin: 24px 0 20px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: rgba(0, 0, 0, 1);
}

.voice__mark {
  display: inline;
  background: linear-gradient( transparent 10%, rgba(255, 250, 103, 1) 10%, rgba(255, 250, 103, 1) 90%, transparent 90% );
}

.voice__note {
  text-align: right;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  color: rgba(0, 0, 0, 1);
}

.voice-prev,
.voice-next {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 62px;
  height: 62px;
  border: 0;
  background: url("/wp-content/uploads/img/swiper-arrow.svg") no-repeat center / contain;
  cursor: pointer;
  transform: translateY(-50%);
}

.voice-prev {
  left: -46px;
  transform: translateY(-50%) scaleX(-1);
}

.voice-next {
  right: -46px;
}

.voice-dots {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}

.voice-dots__button {
  width: 14px;
  height: 14px;
  background: rgba(217, 217, 217, 1);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.voice-dots__button.is-active {
  background: rgba(255, 131, 26, 1);
}

@media screen and (max-width: 1040px) {
  .voice__title {
    margin-top: -20px;
    font-size: 24px;
    line-height: 40px;
    background: url("/wp-content/uploads/img/orange-strip-sp.png") no-repeat center / contain;
  }

  .voice__carousel {
    padding: 40px 0 62px;
  }

  .swiper {
    width: 320px;
  }

  .voice-card {
    padding: 20px 25px;
  }

  .voice__head {
    flex-direction: column;
    align-items: center;
  }

  .voice__name {
    min-height: 60px;
    font-size: 20px;
  }

  .voice__order {
    min-height: 42px;
    font-size: 14px;
  }

  .voice__text {
    font-size: 14px;
  }

  .voice-prev,
  .voice-next {
    width: 30px;
    height: 30px;
  }

  .voice-prev {
    left: -15px;
  }

  .voice-next {
    right: -15px;
  }

  .voice-dots {
    gap: 12px;
    margin-top: 20px;
  }

  .voice-dots__button {
    width: 10px;
    height: 10px;
  }
}

/*greet*/
.greet {
  padding: 116px 20px 334px;
  background: url("/wp-content/uploads/img/greet-bg.png") no-repeat center / 1920px;
}

.greet__inner {
  margin: auto;
  padding: 72px 100px;
  max-width: 1200px;
  width: 100%;
  background: rgba(255, 255, 255, 1);
  border-radius: 10px;
}

.greet__title {
  text-align: center;
  margin-bottom: 46px;
  font-family: "Noto Serif JP", serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
}

.greet__body {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  color: rgba(0, 0, 0, 1);
}

.greet__profile {
  flex-shrink: 0;
  text-align: center;
  width: 360px;
}

.greet__brand {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.86;
  letter-spacing: 0;
}

.greet__sub {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.86;
  letter-spacing: 0;
}

.greet__role {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.86;
  letter-spacing: 0;
}

.greet__name {
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.86;
  letter-spacing: 0;
}

.greet__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
}

.greet__text + .greet__text {
  margin-top: 24px;
}

a.greet__link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin: 16px 0 0 auto;
  width: 230px;
  height: 50px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  color: rgba(34, 34, 34, 1);
  border: 1.61px solid rgba(34, 34, 34, 1);
}

.greet__link::after {
  content: "→";
}

@media screen and (max-width: 1040px) {
  .greet {
    padding: 100px 20px 334px;
    background: url("/wp-content/uploads/img/greet-bg-md.png") no-repeat center / cover;
  }

  .greet__inner {
    margin: auto;
    padding: 54px 40px;
    max-width: 600px;
  }

  .greet__title {
    margin-bottom: 30px;
  }

  .greet__body {
    flex-direction: column;
    align-items: center;
  }

  .greet__profile {
    max-width: 100%;
  }

  a.greet__link {
    margin: 80px auto 0;
  }
}

@media screen and (max-width: 640px) {
  .greet {
    padding: 54px 20px 130px;
  }

  .greet__inner {
    padding: 32px 22px;
  }

  .greet__title {
    margin-bottom: 10px;
    font-size: 24px;
    letter-spacing: 0;
  }

  .greet__brand {
    font-size: 14px;
  }

  .greet__sub {
    font-size: 12px;
    font-weight: 400;
  }

  .greet__role {
    font-size: 14px;
  }

  .greet__name {
    font-size: 20px;
    line-height: 1;
  }

  .greet__text {
    font-size: 14px;
  }

  .greet__text + .greet__text {
    margin-top: 24px;
  }

  a.greet__link {
    margin: 48px auto 0;
    width: 275px;
    height: 42px;
    font-size: 14px;
  }
}

/*flow*/
.flow {
  margin-top: -246px;
  padding: 156px 20px 150px;
  background: url("/wp-content/uploads/img/flow-bg.png") no-repeat center top / 1920px;
  counter-reset: flow;
}

.flow__title {
  text-align: center;
  margin-bottom: 35px;
  font-family: "Noto Serif JP", serif;
  font-size: 45px;
  font-weight: 600;
  line-height: 1.86;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 1);
}

.flow__inner {
  position: relative;
  margin: auto;
  max-width: 1000px;
  width: 100%;
}

.flow__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 104px;
  width: 6px;
  height: 100%;
  background: rgba(255, 255, 255, 1);
}

.flow__item {
  position: relative;
  padding: 40px 32px 40px 198px;
  color: rgba(0, 0, 0, 1);
  background: rgba(255, 255, 255, 1);
  border-radius: 10px;
  counter-increment: flow;
}

.flow__item::before {
  content: counter(flow);
  position: absolute;
  top: 50%;
  left: 76px;
  font-family: "Noto Serif JP", serif;
  font-size: 103px;
  font-weight: 300;
  line-height: 1;
  color: transparent;
  background: linear-gradient(178.94deg, #FF831A 1.02%, #FC4201 98.57%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: translateY(-50%);
}

.flow__item + .flow__item {
  margin-top: 32px;
}

.flow__heading {
  margin-bottom: 20px;
  font-family: "Noto Serif JP", serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.flow__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
}

.flow__note {
  position: relative;
  padding: 32px 0 32px 198px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 1);
}

.flow__note::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 90px;
  width: 33px;
  height: 33px;
  background: url("/wp-content/uploads/img/circle.svg") no-repeat center / contain;
  transform: translateY(-50%);
}

.flow__lead {
  font-family: "Noto Serif JP", serif;
  font-size: 25px;
  font-weight: 600;
}

.flow__desc {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.8;
}

@media screen and (max-width: 1040px) {
  .flow {
    padding: 148px 20px 60px;
    background: url("/wp-content/uploads/img/flow-bg-md.png") no-repeat center top / 1040px;
  }

  .flow__title {
    margin-bottom: 30px;
  }

  .flow__inner {
    max-width: 600px;
  }

  .flow__inner::before {
    left: 74px;
    width: 4px;
  }

  .flow__item {
    padding: 40px 34px 40px 147px;
  }

  .flow__item::before {
    top: 30px;
    left: 52px;
    transform: none;
  }

  .flow__note {
    padding: 52px 0 52px 143px;
  }

  .flow__note::before {
    left: 60px;
    top: 60px;
    transform: none;
  }
}

@media screen and (max-width: 640px) {
  .flow {
    margin-top: -60px;
    padding: 64px 20px 60px;
    background: url("/wp-content/uploads/img/flow-bg-sp.png") no-repeat center top / 640px;
  }

  .flow__title {
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: 0;
  }

  .flow__inner::before {
    left: 37px;
    width: 4px;
  }

  .flow__item {
    padding: 30px 20px;
  }

  .flow__item::before {
    top: 30px;
    left: 20px;
    font-size: 50px;
    transform: none;
  }

  .flow__item + .flow__item {
    margin-top: 16px;
  }

  .flow__heading {
    margin: 0 0 20px 38px;
    font-size: 20px;
    line-height: 50px;
  }

  .flow__text {
    font-size: 14px;
  }

  .flow__note {
    padding: 16px 0 16px 74px;
  }

  .flow__note::before {
    top: 37px;
    left: 22px;
  }

  .flow__lead {
    margin-bottom: 8px;
    font-size: 20px;
    line-height: 1.6;
  }

  .flow__desc {
    font-size: 14px;
  }
}

/*floating-cta*/
.floating-cta {
  display: none;
  position: fixed;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 10;
  margin: auto;
  padding: 24px;
  max-width: 1920px;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.floating-cta__link:hover {
  opacity: 1;
}

.floating-cta.is-show {
  display: block;
}

.floating-cta__link {
  display: block;
  margin: auto;
  width: 400px;
}

@media screen and (max-width: 1040px) {
  .floating-cta {
    padding: 15px;
  }

  .floating-cta__link {
    width: 250px;
  }
}

/*back-home*/
.back-home {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin: auto;
  width: 312px;
  height: 60px;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0;
  border: 1.61px solid rgba(34, 34, 34, 1);
  color: rgba(0, 0, 0, 1);
}

.back-home::after {
  content: "→";
}

@media screen and (max-width: 1040px) {
  .back-home {
    width: 132px;
    height: 42px;
    font-size: 14px;
  }
}

/*page-head*/
.page-head {
  text-align: center;
  padding-top: 94px;
  height: 324px;
  background: url("/wp-content/uploads/img/page-head-bg.png") no-repeat center bottom / cover;
}

.page-head__label {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 1);
}

@media screen and (max-width: 1040px) {
  .page-head {
    padding-top: 18px;
    height: 124px;
    background: url("/wp-content/uploads/img/page-head-bg-sp.png") no-repeat center bottom / cover;
  }

  .page-head__label {
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: 0;
  }
}

/*profile*/
.company {
  padding: 100px 24px;
  margin: -100px auto 0;
  max-width: 1000px;
  width: calc(100% - 40px);
  background: rgba(255, 255, 255, 1);
  border-radius: 10px;
  box-shadow: 3px 3px 18px 0px rgba(77, 77, 77, 0.2);
}

.company__inner {
  margin: auto;
  max-width: 800px;
  width: 100%;
}

.company__title {
  text-align: center;
  margin-bottom: 14px;
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
}

.company__table {
  text-align: left;
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.company__row {
  border-bottom: 2px solid rgba(204, 204, 204, 1);
}

.company__head {
  vertical-align: top;
  padding: 40px 0;
  width: 21%;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
}

.company__data {
  vertical-align: top;
  padding: 40px 0;
  width: 79%;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  color: rgba(0, 0, 0, 1);
}

.company__list {
  padding-left: 1.5em;
  list-style: disc;
}

.company__note {
  display: block;
  margin-top: 5px;
  font-size: 16px;
}

.about {
  padding: 60px 24px;
  margin: 40px auto 150px;
  max-width: 1000px;
  width: calc(100% - 40px);
  color: rgba(0, 0, 0, 1);
  background: rgba(255, 255, 255, 1);
  border-radius: 10px;
  box-shadow: 3px 3px 18px 0px rgba(77, 77, 77, 0.2);
}

.about__inner {
  margin: auto;
  max-width: 900px;
  width: 100%;
}

.about__title {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
}

.message {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin: 54px auto;
  padding-bottom: 54px;
  border-bottom: 2px solid rgba(204, 204, 204, 1);
}

.message__image {
  width: 180px;
}

.message__brand {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.86;
  letter-spacing: 0;
}

.message__sub {
  font-size: 14px;
  font-weight: 400;
}

.message__role {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.86;
  letter-spacing: 0;
}

.message__name {
  font-family: "Noto Serif JP", serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.message__text {
  text-align: left;
  margin-top: 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0;
}

.works {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.works__image {
  width: 180px;
  box-shadow: 2px 2px 9px 0px rgba(0, 0, 0, 0.3);
}

.works__caption {
  text-align: center;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
  color: rgba(34, 34, 34, 1);
}

.works__body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0;
}

.works__title {
  font-size: inherit;
  font-weight: inherit;
}

.works__list {
  padding-left: 1.5em;
  list-style: disc;
}

.promise {
  padding: 100px 20px 140px;
  border-top: 12px solid;
  border-bottom: 12px solid;
  border-image: linear-gradient( 82.92deg, #E2D8A0 11.08%, #F1ECC9 55.66%, #CCB971 100.24% ) 1;
}

.promise__inner {
  margin: auto;
  max-width: 844px;
  width: 100%;
}

.promise__title {
  text-align: center;
  margin-bottom: 62px;
  font-family: "Noto Serif JP", serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.86;
  letter-spacing: 0;
}

.promise__item {
  position: relative;
  padding-left: 48px;
  color: rgba(0, 0, 0, 1);
}

.promise__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background: linear-gradient(180.11deg, #E2D8A0 0.14%, #F1ECC9 50.44%, #CCB971 100.74%);
}

.promise__item + .promise__item {
  margin-top: 64px;
}

.promise__heading {
  margin-bottom: 14px;
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.promise__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
}

@media screen and (max-width: 1040px) {
  .company {
    margin: -50px auto 0;
    padding: 50px 24px;
  }

  .company__title {
    margin-bottom: 10x;
    font-size: 20px;
    font-weight: 700;
  }

    .company__table,
    .company__tbody,
    .company__row,
    .company__head,
    .company__data {
      display: block;
      width: 100%;
    }

  .company__head {
    padding: 30px 0 0;
    font-size: 18px;
  }

  .company__data {
    padding: 8px 0 24px;
    font-size: 16px;
  }

  .company__note {
    font-size: 14px;
  }

  .about {
    padding: 50px 24px;
    margin: 40px auto;
  }

  .about__title {
    font-size: 20px;
    font-weight: 700;
  }

  .message {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin: 40px auto;
    padding-bottom: 40px;
  }

  .message__body {
    text-align: center;
  }

  .message__brand {
    line-height: 1.6;
  }

  .message__role {
    font-size: 16px;
    line-height: 1.6;
  }

  .message__name {
    font-size: 20px;
    line-height: 1.6;
  }

  .message__text {
    margin-top: 40px;
  }

  .works {
    flex-direction: column;
    align-items: center;
  }

  .works__caption {
    font-size: 14px;
  }

  .promise {
    padding: 70px 20px 90px;
  }

  .promise__inner {
    max-width: 600px;
  }

  .promise__title {
    margin-bottom: 50px;
    font-size: 24px;
  }

  .promise__item {
    padding-left: 24px;
  }

  .promise__item + .promise__item {
    margin-top: 50px;
  }

  .promise__heading {
    margin-bottom: 16px;
    font-size: 18px;
  }

  .promise__text {
    font-size: 16px;
  }
}

/*faq*/
.faq__list {
  margin: -100px auto 150px;
  max-width: 1000px;
  width: calc(100% - 40px);
}

.faq__item {
  position: relative;
  background: rgba(255, 255, 255, 1);
  border-radius: 10px;
  box-shadow: 3px 3px 18px 0px rgba(77, 77, 77, 0.2);
}

.faq__item + .faq__item {
  margin-top: 40px;
}

.faq__trigger {
  display: block;
  text-align: left;
  padding: 50px 136px 50px 104px;
  width: 100%;
  font-family: "Noto Serif JP", serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0;
  color: rgba(0, 0, 0, 1);
  cursor: pointer;
}

.faq__item.is-open .faq__trigger {
  padding: 50px 136px 0 104px;
}

.faq__question::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 32px;
  width: 30px;
  height: 45px;
  background: url("/wp-content/uploads/img/q.png") no-repeat center / contain;
  pointer-events: none;
}

.faq__icon {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
  cursor: pointer;
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(255, 131, 26, 1);
  border-radius: 20px;
  transform: translate(-50%, -50%);
}

.faq__icon::before {
  width: 4px;
  height: 24px;
}

.faq__icon::after {
  width: 24px;
  height: 4px;
}

.faq__item.is-open .faq__icon::before {
  opacity: 0;
}

.faq__item.is-open .faq__icon::after {
  background: rgba(34, 34, 34, 1);
}

.faq__answer {
  height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 135px 0 105px;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  color: rgba(0, 0, 0, 1);
  transition: padding 0.3s;
}

.faq__item.is-open .faq__answer {
  opacity: 1;
  overflow: visible;
  padding: 22px 135px 50px 105px;
  height: auto;
}

.faq__link {
  display: flex;
  gap: 8px;
  color: rgba(0, 137, 228, 1);
}

.faq__link::after {
  content: "→";
}

@media screen and (max-width: 1040px) {
  .faq__list {
    margin: -50px auto 60px;
  }

  .faq__item {
    box-shadow: 0px 20px 24px -4px rgba(10, 13, 18, 0.1);
  }

  .faq__item + .faq__item {
    margin-top: 20px;
  }

  .faq__trigger {
    padding: 24px 24px 24px 50px;
    font-size: 18px;
    font-weight: 700;
  }

  .faq__item.is-open .faq__trigger {
    padding: 24px 24px 0 50px;
  }

  .faq__question::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 24px;
    width: 17px;
    height: 36px;
  }

  .faq__text {
    display: block;
    position: relative;
    padding-right: 32px;
  }

  .faq__icon {
    right: 0;
    width: 40px;
    height: 40px;
  }

  .faq__icon::before, .faq__icon::after {
    right: 0;
    left: auto;
    transform: translateY(-50%);
  }


  .faq__icon::before {
    right: 10px;
  }

  .faq__answer {
    padding: 0 24px 0 24px;
    font-size: 16px;
  }

  .faq__item.is-open .faq__answer {
    padding: 12px 24px 24px 24px;
  }
}

/*policy*/
.policy__body {
  padding: 100px 24px;
  margin: -100px auto 40px;
  max-width: 1000px;
  width: calc(100% - 40px);
  color: rgba(51, 51, 51, 1);
  background: rgba(255, 255, 255, 1);
  border-radius: 10px;
  box-shadow: 3px 3px 18px 0px rgba(77, 77, 77, 0.2);
}

.policy__inner {
  margin: auto;
  max-width: 800px;
  width: 100%;
}

.policy__lead {
  margin-bottom: 54px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

.policy__item {
  padding-top: 34px;
  border-top: 2px solid rgba(204, 204, 204, 1);
}

.policy__item + .policy__item {
  margin-top: 34px;
}

.policy__heading {
  margin-bottom: 16px;
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.policy__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

.policy__sublist {
  padding-left: 1.5em;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
  list-style: disc;
}

@media screen and (max-width: 1040px) {
  .policy__body {
    margin: -50px auto 40px;
    padding: 50px 24px;
  }

  .policy__lead {
    font-weight: 400;
  }

  .policy__heading {
    font-size: 20px;
  }

  .policy__text {
    font-weight: 400;
  }

  .policy__sublist {
    font-weight: 400;
  }
}

/*contact*/
.contact__body {
  padding: 100px 24px;
  margin: -100px auto 40px;
  max-width: 1000px;
  width: calc(100% - 40px);
  background: rgba(255, 255, 255, 1);
  border-radius: 10px;
  box-shadow: 0px 8px 30px 0px rgba(0, 0, 0, 0.25);
}

.contact__inner {
  margin: auto;
  max-width: 800px;
  width: 100%;
}

.contact__lead {
  margin-bottom: 80px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0;
}

.hidden-fields-container {
  display: none;
}

.cntact_form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
}

.form_title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  color: rgba(33, 34, 28, 1);
}

.require {
  text-align: center;
  width: 40px;
  height: 18px;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 1);
  background: rgba(255, 45, 85, 1);
  border-radius: 30px;
}

.form_checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wpcf7-form-control-wrap {
  width: 100%;
}

#form_contact-type {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

#form_contact-type label {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  cursor: pointer;
}

input[type="checkbox"] {
  width: 30px;
  height: 30px;
  background: url("/wp-content/uploads/img/nocheck.svg") no-repeat center / contain;
  cursor: pointer;
}

input[type="checkbox"]:checked {
  background: url("/wp-content/uploads/img/checked.svg") no-repeat center / contain;
}

.wpcf7-list-item-label {
  font-size: 18px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0;
  color: rgba(40, 40, 40, 1);
}

.cntact_form .wpcf7-form-control-wrap {
  margin-top: 8px;
  width: 100%;
}

.cntact_form .wpcf7-form-control-wrap input {
  padding: 16px;
  width: 100%;
  height: 50px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  border: 1px solid rgba(170, 170, 170, 1);
  border-radius: 4px;
}

#form_your-message {
  padding: 16px;
  width: 100%;
  height: 400px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0;
  border: 1px solid rgba(170, 170, 170, 1);
  border-radius: 4px;
}

a, form, input, textarea,label {
  appearance: none;
  -webkit-appearance: none;/*Google Chrome/Safari対応*/
  -moz-appearance: none;/*Firefox対応*/
  -o-appearance: none;/*Opera対応*/
  border-radius: 0;/*ihoneの角丸をとる*/
}

.cntact_form_privacy {
  text-align: center;
  margin: 80px 0 40px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0;
}

.cntact_form_privacy a {
  color: rgba(0, 137, 228, 1);
}

#form_submit {
  text-align: center;
}

.wpcf7-form-control.wpcf7-submit.has-spinner {
  width: 180px;
  height: 70px;
  font-size: 20px;
  font-weight: 600;
  line-height: 70px;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 1);
  background: rgba(34, 34, 34, 1);
  border: none;
  border-radius: 40px;
  cursor: pointer;
}

.wpcf7-form-control.wpcf7-submit.has-spinner:hover {
opacity: 0.5;
}

.screen-reader-response {
  display: none;
}

.wpcf7-not-valid-tip {
  display: none;
}

.wpcf7-response-output {
  text-align: center;
  margin-top: 20px;
}

@media screen and (max-width: 1040px) {
  .contact__body {
    padding: 50px 24px;
    margin: -50px auto 40px;
    box-shadow: 3px 3px 18px 0px rgba(77, 77, 77, 0.2);
  }

  .contact__lead {
    margin-bottom: 40px;
    font-size: 16px;
  }

  .cntact_form {
    margin-top: 30px;
  }

  .cntact_form_privacy {
    margin: 40px 0;
  }

  .wpcf7-form-control.wpcf7-submit.has-spinner {
    width: 272px;
    height: 43px;
    font-size: 18px;
    line-height: 43px;
  }
}

/*thanks*/
.thanks__body {
  padding: 100px 24px;
  margin: -100px auto 40px;
  max-width: 1000px;
  width: calc(100% - 40px);
  background: rgba(255, 255, 255, 1);
  border-radius: 10px;
  box-shadow: 0px 8px 30px 0px rgba(0, 0, 0, 0.25);
}

.thanks__inner {
  margin: auto;
  max-width: 618px;
  width: 100%;
}

.thanks__title {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.86;
  letter-spacing: 0;
}

.thanks__text {
  margin: 40px 0 28px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0;
  color: rgba(33, 34, 28, 1);
}

.thanks__note, .thanks__list {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0;
  color: rgba(33, 34, 28, 1);
}

.thanks__list {
  margin-bottom: 80px;
  padding-left: 1.5em;
  list-style: disc;
}

@media screen and (max-width: 1040px) {
  .thanks__body {
    padding: 50px 24px;
    margin: -50px auto 40px;
    box-shadow: 3px 3px 18px 0px rgba(77, 77, 77, 0.2);
  }

  .thanks__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }

  .thanks__text {
    font-size: 16px;
  }

  .thanks__note, .thanks__list {
    font-size: 14px;
  }

  .thanks__list {
    margin-bottom: 40px;
  }
}

/*notfound*/
.notfound {
  margin: auto;
  padding: 322px 20px 200px;
  max-width: 1920px;
  width: 100%;
  background: rgba(238, 238, 238, 1);
  box-shadow: 0px 4px 100px 0px rgba(0, 0, 0, 0.25);
}

.notfound__text {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.86;
  letter-spacing: 0;
}

h1.notfound__text {
  margin-bottom: 80px;
}

@media screen and (max-width: 1040px) {
  .notfound {
    padding: 104px 20px 80px;
  }

  .notfound__text {
    font-size: 20px;
    line-height: 1.5;
  }

  h1.notfound__text {
    margin-bottom: 44px;
  }
}