/* -------------------------------------------------- */
/* global */

html {
  font-size: 62.5%;
}
body {
  color: var(--black);
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 500;
  line-height: 1.6;
}
section {
  padding-block: 100px;
}
h2 {
  font-size: 45px;
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
}
h2 strong {
  font-size: 52px;
  font-weight: 900;
}
p {
  font-size: 20px;
  margin-bottom: 1em;
}
.container {
  overflow: hidden;
}
.general {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100vh;
}
.general main {
  flex-grow: 1;
}
.wrapper {
  margin: auto;
  max-width: 1204px;
  max-width: min(90%, 1204px);
}

/* component */

.button {
  align-items: center;
  display: flex;
  justify-content: center;
}
.button a,
.button input[type='submit'] {
  background: var(--black) url(../images/button.webp) no-repeat center right 20px / 10px auto;
  border-radius: 9999px;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  padding: .75em 3.75em;
  position: relative;
  text-align: center;
}
.button span {
  background: var(--orange);
  border-radius: 7px;
  display: inline-block;
  font-size: 20px;
  margin-right: .5em;
  padding: .1em .65em;
}
.d-f {
  align-items: flex-start;
  display: flex;
  justify-content: flex-start;
}
.d-f.ai-s {
  align-items: stretch;
}
.d-f.ai-c {
  align-items: center;
}
.d-f.ai-fe {
  align-items: flex-end;
}
.d-f.jc-c {
  justify-content: center;
}
.d-f.jc-sb {
  justify-content: space-between;
}
.d-f.jc-fe {
  justify-content: flex-end;
}
.d-f.fd-c {
  flex-direction: column;
}
.d-f.fw-w {
  flex-wrap: wrap;
}
.en {
  font-family: bahnschrift, sans-serif;
}
.hover {
  cursor: pointer;
  transition: opacity .2s;
}
.hover:hover {
  opacity: .8;
}
.pc {
  display: block;
}
.sp {
  display: none;
}

/* -------------------------------------------------- */
/* header */

.header {
  background: url(../images/header.webp) no-repeat center center /cover;
  padding-block: 30px 60px;
  position: relative;
}
.header::before {
  background: linear-gradient(122.27deg, transparent 0%, transparent 8%, rgba(0,0,0,.64) 8%, rgba(0,0,0,.64) 50%, transparent 50%);
  content: '';
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}
.header .wrapper {
  max-width: 1308px;
  max-width: min(92%, 1308px);
  position: relative;
  z-index: 1;
}
.header-content {
  color: #fff;
  margin-left: 4%;
  width: 48%;
}
.header-logo {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 70px;
}
.header-logo img {
  width: 150px;
}
.header-title {
  border-left: 2px solid #fff;
  font-size: 57px;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 30px;
  padding: .15em .45em;
}
.header-content p {
  font-size: 24px;
}
.header-list li {
  background: linear-gradient(180deg, #4b4b4b, #4b4b4b 50%, #ffa629 50%, #ffa629);
  border-radius: 50%;
  height: 223px;
  margin-right: 20px;
  position: relative;
  width: 223px;
}
.header-list li::before {
  background: #fff;
  border-radius: 50%;
  content: '';
  display: block;
  height: 210px;
  position: absolute;
  width: 210px;
  z-index: 0;
}
.header-list p {
  color: var(--green);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0;
  position: relative;
  text-align: center;
  z-index: 1;
}
.header-list strong {
  font-size: 55px;
  font-weight: 900;
}
.header-list .en {
  font-size: 55px;
}

/* form */

.form {
  background: rgba(255,255,255,.9);
  margin-top: 34px;
  padding: 45px 35px;
  width: 48%;
}
.form-title {
  border-left: 4px solid var(--green);
  font-size: 31px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 10px;
  padding-left: .25em;
}
.form-title span {
  background: var(--orange);
  color: #fff;
  display: inline-block;
  font-size: 25px;
  letter-spacing: .16em;
  margin-left: .25em;
  padding: .1em .8em;
}
.form p {
  font-size: 19px;
  line-height: 1.4;
  margin-bottom: 24px;
}
.form small {
  display: block;
  font-size: 14px;
  font-weight: 400;
}
.form-item {
  margin-bottom: 15px;
}
.form-item label {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.4;
  text-align: right;
  width: 30%;
}
.form-item span {
  color: #f00;
  font-size: 18px;
}
.form-item div {
  width: 66%;
}
.form-item input[type='text'],
.form-item input[type='email'] {
  background: #fff;
  border: 1px solid #b1b1b1;
  border-radius: 5px;
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 19px;
  padding: .25em .5em;
  width: 100%;
}
.form-item .half input[type='text'] {
  width: 48%;
}
.form-item input::placeholder {
  color: #a4a4a4;
}
.form-content p {
  color: #0071cd;
  font-size: 13px;
  margin-block: 20px;
  text-align: center;
}
.form-content a {
  color: #0071cd;
  text-decoration: underline;
}
.form-content a:hover {
  text-decoration: none;
}
.form-button input[type='submit'] {
  padding-block: .6em;
}

/* general */

.general .header {
  background: var(--black);
  padding: 0;
}
.general .header .wrapper {
  max-width: 1204px;
  max-width: min(90%, 1204px);
}
.general .header::before {
  display: none;
}
.general .header-body {
  height: 70px;
}
.general .header-logo {
  font-size: 0;
  line-height: 1;
  margin-bottom: 0;
}
.general .header-logo img {
  width: 156px;
}

/* -------------------------------------------------- */
/* report */

.report {
  background: var(--green);
  color: #fff;
}
.report-head {
  margin-bottom: .5em;
}
.report-head div {
  position: relative;
}
.report-head p {
  font-size: inherit;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.report-head strong {
  font-size: 80px;
}
.report-head span {
  background: var(--orange);
  border-radius: 50%;
  font-size: 34px;
  font-weight: 700;
  height: 123px;
  position: absolute;
  right: -123px;
  top: 0;
  width: 123px;
  z-index: 0;
}
.report-text {
  margin-bottom: 2.5em;
  text-align: center;
}
.report-image {
  margin-bottom: 3em;
}
.report-image li {
  width: 20%;
}
.report-button em.pc {
  display: inline;
}

/* cta */

.cta {
  padding-bottom: 0;
  padding-top: 50px;
}
.cta .report-image {
  margin-bottom: 0;
  margin-top: 40px;
  width: 37%;
}
.cta .report-content {
  margin-left: 50px;
}
.cta .report-head {
  line-height: 1.2;
  margin-bottom: .25em;
  text-align: left;
}
.cta .report-head span {
  right: -61.5px;
}
.cta .report-text {
  margin-bottom: 1em;
  text-align: left;
}
.cta .report-button {
  justify-content: flex-start;
  margin-bottom: 2em;
}

/* -------------------------------------------------- */
/* market */

.market {
  background: url(../images/market.webp) no-repeat center center / cover;
}
.market-head {
  margin-bottom: 30px;
}
.market-head strong {
  border-bottom: 3px solid var(--orange);
  color: var(--orange);
}
.market-text p:last-child {
  margin-bottom: 0;
}
.market-image {
  width: 34.1%;
}

/* -------------------------------------------------- */
/* slider */

.slider {
  background: var(--green);
  color: #fff;
  padding-block: 50px;
}
.slider-head {
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1;
  margin-bottom: 30px;
}
.slider-head strong.en {
  font-size: 70px;
  font-weight: normal;
}
.slider-head span {
  background: #fff;
  color: var(--green);
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  margin-left: 1em;
  padding: .5em .75em;
}
.slider-body {
  transition-timing-function: linear;
}

/* -------------------------------------------------- */
/* result */

.result {
  background: #f0f2e8;
  padding-top: 50px;
}
.result-list {
  margin-bottom: 50px;
}
.result-list li {
  background: #fff;
  box-shadow: 0 0 9px rgba(0,0,0,.12);
  margin-bottom: 30px;
  padding: 40px 50px 25px;
}
.result-text {
  width: 68%;
}
.result-title {
  font-size: 30px;
  font-weight: 900;
  margin-bottom: .25em;
  text-align: left;
}
.result-tags {
  margin-bottom: 15px;
}
.result-tags span {
  background: var(--green);
  color: #fff;
  display: inline-block;
  font-size: 14px;
  margin-right: .75em;
  padding: .25em .5em;
}
.result-name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: .1em;
}
.result-text p {
  font-weight: 400;
}
.result-image {
  width: 29.4%;
}
.result-desc {
  background: #f0f2e8;
  color: #4b4b4b;
  padding: 10px 40px 10px 100px;
  position: relative;
}
.result-desc::before {
  border: 18px solid transparent;
  border-left-color: var(--green);
  content: '';
  display: block;
  left: 45px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.result-capt {
  font-size: 24px;
  font-weight: 500;
}
.result-desc p {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 0;
}
.result-button a {
  background-color: #4b4b4b;
}

/* -------------------------------------------------- */
/* graph */

.graph {
  position: relative;
}
.graph::before {
  background: linear-gradient(116.5deg, transparent 0%, transparent 15%, #f5f5f5 15%, #f5f5f5 56%, transparent 56%);
  content: '';
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}
.graph .wrapper {
  position: relative;
  z-index: 1;
}
.graph-head {
  margin-bottom: .6em;
}
.graph-head span {
  background: var(--black);
  color: #fff;
  margin-bottom: 15px;
  padding-inline: .25em;
}
.graph-head + p {
  margin-bottom: 2em;
  text-align: center;
}
.graph-head + p strong {
  color: var(--orange);
}
.graph-image img {
  margin-bottom: 30px;
  width: 70%;
}
.graph-image p {
  font-size: 12px;
  font-weight: 400;
}
.graph-arrow {
  margin-block: 34px;
  text-align: center;
}
.graph-arrow img {
  width: 21.34%;
}
.graph-foot {
  font-size: 39px;
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
}
.graph-foot strong {
  color: var(--orange);
  font-size: 44px;
}

/* -------------------------------------------------- */
/* feature */

.feature {
  background: #f0f2e8 url(../images/feature.webp) no-repeat top center / 510px auto;
}
.feature-head {
  margin-bottom: 1em;
}
.feature-head em {
  color: var(--orange);
}
.feature-text {
  margin-bottom: 100px;
}
.feature p {
  text-align: center;
}
.feature p strong {
  color: var(--orange);
}
.feature-slide {
  left: -6vw;
  margin-bottom: 70px;
  position: relative;
  width: 112vw;
}
.feature-slide img {
  margin: 6px;
  width: calc(100% / 7 - 12px);
}
.feature-item {
  margin-bottom: 70px;
}
.feature-item:last-child {
  margin-bottom: 40px;
}
.feature-num {
  color: var(--green);
  font-size: 25px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 2em;
}
.feature-num span {
  font-size: 133px;
  line-height: .75;
}
.feature-title {
  font-size: 45px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: .75em;
  text-align: center;
}
.feature-title strong {
  font-size: 62px;
  font-weight: 900;
}
.feature-title small {
  font-size: 20px;
  font-weight: 400;
}
.feature-image {
  margin-top: 40px;
}

/* -------------------------------------------------- */
/* foot */

.foot-body {
  font-size: 18px;
  margin: 0 auto 80px;
  max-width: 1000px;
}
.foot h2 {
  font-size: 40px;
  margin-bottom: .9em;
}

/* faq */

.faq-list {
  margin-bottom: 30px;
}
.faq-list:last-child {
  margin-bottom: 0;
}
.faq-list dt,
.faq-list dd {
  align-items: flex-start;
  background: #fff;
  display: flex;
  font-size: inherit;
  justify-content: flex-start;
}
.faq-list dt {
  align-items: center;
  background: #e6e6e6;
  cursor: pointer;
  font-weight: 700;
  position: relative;
}
.faq-list dt::before,
.faq-list dd::before {
  display: block;
  font-family: bahnschrift, sans-serif;
  font-size: 48px;
  font-weight: bold;
  height: 100%;
  margin-right: .5em;
  min-height: 80px;
  min-width: 78px;
  text-align: center;
}
.faq-list dt::before {
  background: var(--green);
  content: 'Q';
  color: #fff;
}
.faq-list dd::before {
  background: #fff;
  content: 'A';
  color: var(--green);
}
.faq-list dt i::before,
.faq-list dt i::after {
  background: var(--black);
  content: '';
  display: block;
  height: 4px;
  position: absolute;
  right: 25px;
  transition: transform .3s;
  width: 22px;
}
.faq-list dt i::before {
  transform: rotate(90deg);
}
.faq-list dt.show i::before {
  transform: rotate(0);
}
.faq-list dd p {
  font-size: inherit;
  margin-block: 1em 0;
  padding-right: 2em;
}

/* company */

.company-table {
  font-size: inherit;
  width: 100%;
}
.company-table th,
.company-table td {
  padding-block: 1em;
  vertical-align: top;
}
.company-table th {
  border-bottom: 3px solid var(--green);
}
.company-table td {
  border-bottom: 2px solid #eaeaea;
  padding-left: 2em;
}

/* media */

.media-logo {
  text-align: center;
}
.media-logo img {
  width: 283px;
}

/* -------------------------------------------------- */
/* thanks */

.thanks-head {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 2em;
}
.thanks p {
  font-size: 16px;
  margin-bottom: 1.6em;
  text-align: center;
}
.thanks p:last-of-type {
  margin-bottom: 4em;
}
.thanks-button a {
  background-color: #9dbc00;
  background-position: center right 25%;
  color: #fff;
  font-size: 18px;
  padding: .5em 5em;
}

/* -------------------------------------------------- */
/* footer */

.footer {
  background: var(--black);
  padding-block: 2.75em;
}
.footer-nav:nth-child(1) {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 1em;
}
.footer-nav:nth-child(2) {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 3em;
}
.footer-nav li {
  margin-inline: 1em;
}
.footer-nav a {
  color: #fff;
}
.footer-nav a:hover {
  text-decoration: underline;
}
.footer-small {
  color: #fff;
  display: block;
  font-size: 14px;
  text-align: center;
}
