@charset "UTF-8";
/* reset css
----------------------------------------------- */
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  border-radius: 0;
}

/* common
----------------------------------------------- */
@media screen and (max-width: 1250px) {
  html,
  body {
    font-size: 0.8vw;
  }
}
@media (max-width: 767px) {
  html,
  body {
    font-size: 2.6666666667vw;
  }
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #000000;
}

.hidden {
  overflow: hidden;
}

.sp {
  display: none;
}

.tb {
  display: none;
}

.pc {
  display: block;
}

@media (max-width: 1079px) {
  .tb {
    display: block;
  }
}
@media (max-width: 767px) {
  .tb {
    display: none;
  }
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}
.shadow {
  box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.16);
}

@media (min-width: 1080px) {
  .hover {
    transition: all 0.3s;
  }
  .hover:hover {
    opacity: 0.7;
    transition: all 0.3s;
  }
}
.common-inner {
  max-width: 100rem;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .common-inner {
    padding: 0 2rem;
  }
}

img {
  width: 100%;
  height: auto;
}
/* !fc
------------------------------------------------ */
@font-face {
  font-family: 'VDL-PenLetter';
  src: url('../fonts/VDL-PenLetter.ttf');
}
.ff-vpen {
  font-family: "VDL-PenLetter";
}

/* common-btn */
.common-btn {
  display: inline-block;
  min-width: 45.2rem;
  font-size: 2.2rem;
  color: #fff;
  font-weight: 700;
  text-align: center;
  padding: 3.6rem 2rem;
  background-color: #000000;
}
.common-btn .f-orange {
  color: #FFCE00;
}
.common-btn .f-yellow {
  color: #F4D432;
}

.common-btn--arrow {
  position: relative;
}
.common-btn--arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 3.6rem;
  transform: translateY(-50%);
  background-image: url(../img/arrow_white_right.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 1rem;
  height: 1.7rem;
}

@media (max-width: 767px) {
  .common-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: auto;
    width: 27.7rem;
    height: 6.4rem;
    font-size: 1.4rem;
    padding: 0;
  }
  .common-btn--arrow::after {
    right: -1.3rem;
    width: 6.5rem;
    height: 1.1rem;
  }
}
/* ttl */
.ttl-wrap {
  text-align: center;
}

.sun-ttl {
  font-size: 3.2rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #FFBA00;
}
.sun-ttl.white {
  color: #fff;
}

.ttl {
  font-size: 5rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin-top: 1rem;
}

@media (max-width: 767px) {
  .sun-ttl {
    font-size: 1.8rem;
  }
  .ttl {
    font-size: 2.4rem;
    margin-top: 1rem;
  }
}
/* introduction */
.introduction {
  margin-top: 4rem;
}

.introduction-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4.5rem 5rem;
  box-shadow: 0 0.1rem 1.2rem rgba(0, 0, 0, 0.16);
  border-top: 0.6rem solid #FFCE00;
  background-color: #fff;
}
.introduction-item:not(:first-of-type) {
  margin-top: 2.5rem;
}

.voice .introduction-item {
  align-items: flex-start;
}

.introduction-pic {
  width: 18.5rem;
  flex-shrink: 0;
  margin-right: 4rem;
}
.introduction-pic img {
  border-radius: 50%;
  overflow: hidden;
}

.voice .introduction-pic {
  margin-top: 0.5rem;
}

.introduction-pic__post {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 2.7rem;
  font-size: 1.5rem;
  font-weight: 700;
  background-color: #ffad3e;
  margin-top: 1.2rem;
}

.introduction-pic__name {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-top: 1rem;
  text-align: center;
}

.voice .introduction-pic__name {
  font-size: 1.7rem;
}

.introduction-item__ttl {
  font-size: 2.4rem;
  line-height: 1.4;
}

.history {
  margin: 2.5rem 0 3rem;
}

.history-item {
  display: flex;
  align-items: center;
}
.history-item:not(:first-of-type) {
  margin-top: 1.2rem;
}

.history-item__cat {
  display: inline-block;
  min-width: 10rem;
  font-size: 1.5rem;
  text-align: center;
  padding: 0.7rem 0;
  margin-right: 1.2rem;
  background-color: #ebebeb;
}
.history-item__cat.orange {
  background-color: #ffad3e;
}
.history-item__cat.mt {
  margin-top: -1.6rem;
}

.history-item__txt {
  font-size: 1.5rem;
  line-height: 2;
}

.introduction-item__txt {
  margin-top: 1.5rem;
  font-size: 1.8rem;
  line-height: 1.8;
}

@media (max-width: 767px) {
  .introduction {
    margin-top: 2rem;
  }
  .introduction-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    padding: 3rem 2.5rem;
    box-shadow: 0 0.1rem 1.2rem rgba(0, 0, 0, 0.16);
    border-top: 0.6rem solid #FFCE00;
    background-color: #fff;
  }
  .introduction-item:not(:first-of-type) {
    margin-top: 2rem;
  }
  .voice .introduction-item {
    align-items: center;
  }
  .introduction-pic {
    width: 100%;
    flex-shrink: 0;
    margin-right: 0;
    text-align: center;
  }
  .introduction-pic img {
    width: 12rem;
    border-radius: 50%;
    overflow: hidden;
  }
  .voice .introduction-pic {
    margin-top: 0;
  }
  .introduction-pic__post {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 18.1rem;
    height: 2.7rem;
    font-size: 1.4rem;
    font-weight: 700;
    background-color: #ffad3e;
    margin: 1.2rem auto 0;
  }
  .introduction-pic__name {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-top: 1rem;
    text-align: center;
  }
  .voice .introduction-pic__name {
    font-size: 1.6rem;
  }
  .introduction-item__ttl {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-top: 2rem;
  }
  .history {
    margin: 2.5rem 0 2rem;
  }
  .history-item {
    display: flex;
    align-items: center;
  }
  .history-item:not(:first-of-type) {
    margin-top: 1.2rem;
  }
  .history-item__cat {
    display: inline-block;
    min-width: 8rem;
    font-size: 1.3rem;
    text-align: center;
    padding: 0.7rem 0;
    margin-right: 1.2rem;
    background-color: #ebebeb;
    align-self: flex-start;
  }
  .history-item__cat.orange {
    background-color: #ffad3e;
  }
  .history-item__cat.mt {
    margin-top: 0;
  }
  .history-item__txt {
    font-size: 1.3rem;
    line-height: 1.8;
  }
  .introduction-item__txt {
    font-size: 1.4rem;
    line-height: 1.7;
    margin-top: 2rem;
  }
}
/* header
----------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.header__flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3.4rem;
  transition: all 0.3s;
}
.hasbg .header__flex {
  background-color: rgba(255, 255, 255, .95);
}
.logo {
  width: 48.3rem;
}

.header-items {
  align-self: flex-start;
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
  z-index: 10;
}

.header-items__link {
  padding: 2.7rem 2.2rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  background-color: #000000;
}
.header-items__link span {
  color: #FFCE00;
}

.burger-btn {
  display: block;
  padding: 2rem 1rem;
  margin-left: 2rem;
  opacity: 1;
}

.bar {
  display: block;
  margin: 0 auto;
  width: 3.8rem;
  height: 0.5rem;
  background-color: #000000;
  transition: all 0.3s;
  box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.16);
}

.bar-top {
  margin-bottom: 0.9rem;
}

.bar.bar-top.is-open {
  transform: translateY(0.8rem) rotate(45deg);
}

.bar.bar-mid.is-open {
  opacity: 0;
}

.bar.bar-bot.is-open {
  transform: translateY(-0.7rem) rotate(-45deg);
}

.g-nav {
  position: fixed;
  top: 0;
  right: -50%;
  z-index: 9;
  background-color: #eeeff0;
  opacity: 0.94;
  padding: 28.2rem 9.6rem 5rem;
  height: 100%;
  text-align: center;
  overflow-y: scroll;
  transition: all 0.3s;
}
.g-nav.is-open {
  right: 0;
  transition: all 0.3s;
}

.g-nav__items {
  font-size: 1.8rem;
}
.g-nav__items li:not(:first-of-type) {
  color: #000000;
  margin-top: 4.4rem;
}
.g-nav__items a {
  color: #000000;
}

.g-nav__btn {
  display: none;
}

@media (max-width: 767px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
  }
  .header__flex {
    display: flex;
    justify-content: space-between;
    padding: 1.3rem 2rem;
  }
  .logo {
    width: 22rem;
    z-index: 10;
  }
  .header-items {
    align-self: center;
    display: flex;
    align-items: center;
    margin-top: 0;
    z-index: 10;
  }
  .header-items__link {
    display: none;
  }
  .burger-btn {
    display: block;
    padding: 2rem 1rem;
    margin-left: 0;
    opacity: 1;
  }
  .bar {
    display: block;
    margin: 0 auto;
    width: 2.8rem;
    height: 3px;
    background-color: #000000;
    transition: all 0.3s;
    box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.16);
  }
  .bar-top {
    margin-bottom: 0.6rem;
  }
  .bar.bar-top.is-open {
    transform: translateY(0.5rem) rotate(45deg);
  }
  .bar.bar-mid.is-open {
    opacity: 0;
  }
  .bar.bar-bot.is-open {
    transform: translateY(-0.4rem) rotate(-45deg);
  }
  .g-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9;
    background-color: #eeeff0;
    padding: 9.4rem 0 4.5rem;
    width: 100%;
    text-align: center;
    overflow-y: scroll;
    transition: opacity 0.3s;
    opacity: 0;
    height: 0;
    visibility: hidden;
  }
  .g-nav.is-open {
    right: 0;
    opacity: 1;
    height: 100%;
    visibility: visible;
    transition: opacity 0.3s;
  }
  .g-nav__items {
    font-size: 1.6rem;
  }
  .g-nav__items li:not(:first-of-type) {
    color: #000000;
    margin-top: 3.3rem;
  }
  .g-nav__items a {
    color: #000000;
  }
  .g-nav__btn {
    display: block;
    margin-top: 4.1rem;
  }
  .g-nav__btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28.4rem;
    height: 6.7rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    background-color: #000000;
    margin: 4.1rem auto 0;
  }
  .g-nav__btn span {
    color: #FFCE00;
  }
}
/* fv
----------------------------------------------- */
.fv {
  position: relative;
}

.fv__link {
  position: absolute;
  top: 42vw;
  left: 10.6vw;
  min-width: 26.7vw;
  font-size: 1.1vw;
  color: #fff;
  font-weight: 700;
  text-align: center;
  padding: 2.3vw 1vw;
  background-color: #000000;
}
.fv__link span {
  color: #FFCE00;
}

@media (max-width: 767px) {
  .fv {
    position: relative;
  }
  .fv__link {
    position: absolute;
    top: auto;
    bottom: 3.4rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: auto;
    width: 28.4rem;
    height: 6.7rem;
    font-size: 1.4rem;
    color: #fff;
    font-weight: 700;
    text-align: center;
    padding: 0;
    background-color: #000000;
  }
  .fv__link span {
    color: #FFCE00;
  }
}
/* sec01
----------------------------------------------- */
.sec01 {
  padding: 3rem 0;
}

.slider li {
  width: 100rem !important;
}
.slider img {
  width: 100rem !important;
}

@media (max-width: 767px) {
  .sec01 {
    padding: 1rem 0;
  }
  .slider li {
    width: 37rem !important;
  }
  .slider img {
    width: 37rem !important;
  }
}
/* sec02
----------------------------------------------- */
.sec02 {
  background-image: url(../img/sec02_01.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 9.3rem 0 12rem;
}
@media (min-width: 1921px) {
  .sec02 {
    padding: 4.8vw 0 6.2vw;
  }
}

.sec02-item-01 {
  width: 100%;
  padding: 4.5rem 5rem 8rem;
  background-color: #fff;
  border: 0.5rem solid #000000;
  position: relative;
}
.sec02-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 6rem;
  margin-bottom: 3.5rem;
}
.sec02-item-01__txt01 {
  font-size: 3.1rem;
  font-weight: 700;
  text-align: center;
}

.sec02-item-01__txt02 {
  font-size: 5.4rem;
  font-weight: 700;
  text-align: center;
  margin-top: 1rem;
  position: relative;
}
.sec02-item-01__txt02 .sml {
  font-size: 4.6rem;
}
.sec02-item-01__txt02 .lg {
  font-size: 11.8rem;
  letter-spacing: -0.04em;
  color: #F28B13;
}
.sec02-item-01__txt02 .mid {
  font-size: 6.8rem;
  font-weight: 800;
  color: #F28B13;
}

.sec02-item-01__txt02--absolute {
  position: absolute;
  top: 3.5rem;
  right: 1.3rem;
  font-size: 1.8rem;
}

.sec02-item-01__txt03 {
  font-size: 1.4rem;
  margin-top: 2rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.common-btn--sec02-item-01 {
  position: absolute;
  bottom: -5rem;
  left: 50%;
  transform: translateX(-50%);
}

.sec02-item-02 {
  background-color: #fff;
  box-shadow: 0 0.1rem 1.4rem rgba(0, 0, 0, 0.16);
  padding: 4.2rem 5rem 5.5rem;
  margin-top: 23.5rem;
}
@media (min-width: 1921px) {
  .sec02-item-02 {
    margin-top: 12.2vw;
  }
}

.sec02-item-02__ttl {
  font-size: 3.6rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-align: center;
  line-height: 1.4;
  padding-bottom: 1rem;
  border-bottom: 0.6rem solid #000000;
}
.sec02-item-02__ttl span {
  font-size: 4.4rem;
}

.sec02-item-02__items {
  margin-top: 0.4rem;
  border-top: 0.2rem solid #000000;
}
.sec02-item-02__items li {
  display: flex;
  align-items: center;
  padding: 0 2rem;
  margin-top: 3rem;
}
.sec02-item-02__items li:first-of-type {
  margin-top: 5rem;
}
.sec02-item-02__items li span {
  font-size: 2.2rem;
  font-weight: 700;
  margin-left: 1.3rem;
}
.sec02-item-02__items img {
  width: 3.3rem;
}

@media (max-width: 767px) {
  .sec02 {
    background-image: url(../img/sp/sec02_01_sp.jpg);
    padding: 4.2rem 0 5rem;
  }
  .sec02-logo {
    column-gap: 3.2rem;
    margin-bottom: 2rem;
  }
  .sec02-logo .g_logo:nth-child(1) img {
    width: 12.6rem;
  }
  .sec02-logo .g_logo:nth-child(2) img {
    width: 10.2rem;
  }
  .sec02-item-01 {
    width: 100%;
    padding: 3rem 2rem 6.5rem;
    background-color: #fff;
    border: 0.3rem solid #000000;
    position: relative;
  }
  .sec02-item-01__txt01 {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
  }
  .sec02-item-01__txt02 {
    font-size: 2.7rem;
    font-weight: 700;
    text-align: center;
    margin-top: 3rem;
    position: relative;
  }
  .sec02-item-01__txt02 .sml {
    font-size: 2.2rem;
  }
  .sec02-item-01__txt02 .lg {
    font-size: 8.2rem;
    letter-spacing: -0.04em;
    color: #F28B13;
  }
  .sec02-item-01__txt02 .mid {
    font-size: 5.6rem;
    font-weight: 800;
    color: #F28B13;
  }
  .sec02-item-01__txt02--absolute {
    position: absolute;
    top: 4.5rem;
    right: 1.3rem;
    font-size: 1.4rem;
  }
  .sec02-item-01__txt03 {
    font-size: 1.2rem;
    margin-top: 2.5rem;
    line-height: 1.8;
    letter-spacing: 0.04em;
    text-align: center;
  }
  .common-btn--sec02-item-01 {
    position: absolute;
    bottom: -3.2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 25.9rem;
  }
  .sec02-item-02 {
    background-color: #fff;
    box-shadow: 0 0.1rem 1.4rem rgba(0, 0, 0, 0.16);
    padding: 1.7rem 1.4rem 2.5rem;
    margin-top: 11rem;
  }
  .sec02-item-02__ttl {
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-align: center;
    line-height: 1.4;
    padding-bottom: 0.6rem;
    border-bottom: 0.35rem solid #000000;
  }
  .sec02-item-02__ttl span {
    font-size: 2rem;
    letter-spacing: 0.08em;
  }
  .sec02-item-02__items {
    margin-top: 0.25rem;
    border-top: 0.11rem solid #000000;
  }
  .sec02-item-02__items li {
    display: flex;
    align-items: flex-start;
    padding: 0;
    margin-top: 2rem;
  }
  .sec02-item-02__items li:first-of-type {
    margin-top: 1.5rem;
  }
  .sec02-item-02__items li span {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin-left: 0.6rem;
  }
  .sec02-item-02__items img {
    width: 2.4rem;
    margin-top: 0.3rem;
  }
}
/* sec03
----------------------------------------------- */
.sec03 {
  background-image: url(../img/sec03_01.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 9.5rem 0 23rem;
}
@media (min-width: 1921px) {
  .sec03 {
    padding: 6.9vw 0 12.9vw;
  }
}
@media (min-width: 2400px) {
  .sec03 {
    padding: 8.9vw 0 12.9vw;
  }
}

.sec03__ttl {
  font-size: 4.6rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-align: center;
}

.sec03__pic {
  margin-top: 3rem;
}
@media (min-width: 1921px) {
  .sec03__pic {
    margin-top: 1.5vw;
  }
}

@media (max-width: 767px) {
  .sec03 {
    background-image: url(../img/sp/sec03_01_sp.jpg);
    padding: 5.2rem 0 10.5rem;
  }
  .sec03__ttl {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 0;
    text-align: center;
  }
  .sec03__pic {
    margin-top: 2rem;
  }
}
/* sec04
----------------------------------------------- */
.sec04 {
  background-image: url(../img/sec04_01.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 5rem 0 12.4rem;
}
.sec04 .common-inner {
  max-width: 152rem;
}

.sec04__ttl {
  font-size: 4.4rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.8;
  text-align: center;
}
.sec04__ttl img {
  width: 62rem;
  transform: translateY(0.9rem);
}

.sec04-items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 7rem;
}
@media (max-width: 1579px) {
  .sec04-items {
    max-width: 80rem;
    margin: 7rem auto 0;
  }
}

@media (max-width: 1579px) {
  .sec04-item-wrap:nth-of-type(n + 3) {
    margin-top: 5rem;
  }
}
.sec04-item {
  width: 36.4rem;
  padding-bottom: 7rem;
  background-color: #fff;
  position: relative;
}

.sec04-item__num {
  display: inline-block;
  font-size: 2rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #fff;
  background-color: #000000;
  padding: 1rem 5rem 1rem 2.4rem;
  letter-spacing: 0.04em;
  position: relative;
}
.sec04-item__num::after {
  position: absolute;
  top: 0;
  right: -0.1rem;
  content: "";
  border-bottom: 5.8rem solid #fff;
  border-left: 4rem solid transparent;
}
.sec04-item__num span {
  font-size: 3.6rem;
  letter-spacing: 0;
}

.sec04-item__ttl {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.58;
  margin-top: 2rem;
}
.sec04-item__ttl span {
  font-weight: 900;
}

.sec04-item__pic {
  width: 18.5rem;
  margin: 1rem auto 0;
}

.sec04-item__txt {
  font-size: 1.8rem;
  line-height: 1.6;
  padding: 0 2.6rem;
  margin-top: 2rem;
}

.sec04-item__open {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 3.7rem;
  height: 3.7rem;
  background-color: #000000;
  cursor: pointer;
}
.sec04-item__open::before, .sec04-item__open::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  width: 1.85rem;
  height: 0.2rem;
  background-color: #fff;
}
.sec04-item__open::before {
  transform: translate(-50%, -50%);
}
.sec04-item__open::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 11;
  overflow: auto;
  opacity: 0;
  height: 0;
  visibility: hidden;
  transition: opacity 0.3s;
}
.modal.is-open {
  opacity: 1;
  height: 100%;
  visibility: visible;
  transition: opacity 0.3s;
}

.modal-area {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100rem;
  padding: 10rem 0 15rem;
}

.modal-item {
  position: relative;
  background-color: #fff;
  padding-bottom: 5rem;
}

.modal-item__num {
  display: inline-block;
  font-size: 2rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #fff;
  background-color: #000000;
  padding: 1rem 5rem 1rem 2.4rem;
  letter-spacing: 0.04em;
  position: relative;
}
.modal-item__num::after {
  position: absolute;
  top: 0;
  right: -0.1rem;
  content: "";
  border-bottom: 5.8rem solid #fff;
  border-left: 4rem solid transparent;
}
.modal-item__num span {
  font-size: 3.6rem;
  letter-spacing: 0;
}

.modal-item__ttl {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.58;
  margin-top: 2rem;
}

.modal-item__pic {
  width: 55rem;
  margin: 2rem auto;
}

.modal-item__txt {
  font-size: 1.8rem;
  line-height: 1.6;
  padding: 0 5rem;
  margin-top: 3rem;
}

.modal-item__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 4.5rem;
  height: 4.5rem;
  background-color: #000000;
  cursor: pointer;
}
.modal-item__close::before, .modal-item__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  width: 2.5rem;
  height: 0.2rem;
  background-color: #fff;
}
.modal-item__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal-item__close::after {
  transform: translate(-50%, -50%) rotate(135deg);
}

.modal-item__close-btn {
  display: none;
}

@media (max-width: 767px) {
  .sec04 {
    background-image: url(../img/sp/sec04_01_sp.jpg);
    padding: 1.5rem 0 5.5rem;
  }
  .sec04__ttl {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    line-height: 1;
    text-align: center;
  }
  .sec04__ttl img {
    width: 31.7rem;
    transform: translateY(0);
  }
  .sec04__ttl .mid {
    display: inline-block;
    transform: translateY(-0.2rem);
    margin-bottom: 1.2rem;
  }
  .sec04__ttl .lg {
    font-size: 3rem;
    letter-spacing: 0.18em;
    line-height: 1.33;
  }
  .sec04-items {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: column;
    margin-top: 3rem;
  }
  .sec04-item-wrap:nth-of-type(n + 2) {
    margin-top: 2rem;
  }
  .sec04-item {
    width: 100%;
    padding-bottom: 5rem;
    background-color: #fff;
    position: relative;
  }
  .sec04-item__num {
    display: inline-block;
    font-size: 1.3rem;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    color: #fff;
    background-color: #000000;
    padding: 1rem 4rem 1rem 1.4rem;
    letter-spacing: 0.04em;
    position: relative;
  }
  .sec04-item__num::after {
    position: absolute;
    top: 0;
    right: 0;
    content: "";
    border-bottom: 4.4rem solid #fff;
    border-left: 2.8rem solid transparent;
  }
  .sec04-item__num span {
    font-size: 2.3rem;
    letter-spacing: 0;
  }
  .sec04-item__ttl {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
    margin-top: 1.5rem;
  }
  .sec04-item__pic {
    width: 16.6rem;
    margin: 1rem auto 0;
  }
  .sec04-item__txt {
    font-size: 1.5rem;
    line-height: 1.6;
    padding: 0 2rem;
    margin-top: 1.2rem;
  }
  .sec04-item__open {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 3.7rem;
    height: 3.7rem;
    background-color: #000000;
    cursor: pointer;
  }
  .sec04-item__open::before, .sec04-item__open::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-block;
    width: 1.85rem;
    height: 0.2rem;
    background-color: #fff;
  }
  .sec04-item__open::before {
    transform: translate(-50%, -50%);
  }
  .sec04-item__open::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 11;
    overflow: auto;
    opacity: 0;
    height: 0;
    visibility: hidden;
    transition: opacity 0.3s;
  }
  .modal.is-open {
    opacity: 1;
    height: 100%;
    visibility: visible;
    transition: opacity 0.3s;
  }
  .modal-area {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    padding: 5rem 2rem;
  }
  .modal-item {
    position: relative;
    background-color: #fff;
    padding-bottom: 3rem;
  }
  .modal-item__num {
    display: inline-block;
    font-size: 1.3rem;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    color: #fff;
    background-color: #000000;
    padding: 1rem 4rem 1rem 1.4rem;
    letter-spacing: 0.04em;
    position: relative;
  }
  .modal-item__num::after {
    position: absolute;
    top: 0;
    right: -0.05rem;
    content: "";
    border-bottom: 4.4rem solid #fff;
    border-left: 2.8rem solid transparent;
  }
  .modal-item__num span {
    font-size: 2.3rem;
    letter-spacing: 0;
  }
  .modal-item__ttl {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
    padding: 0 1.5rem;
    margin-top: 1.5rem;
  }
  .modal-item__pic {
    width: 100%;
    padding: 0 1.5rem;
    margin: 2rem auto;
  }
  .modal-item__txt {
    font-size: 1.4rem;
    line-height: 1.8;
    padding: 0 1.5rem;
    margin-top: 2rem;
  }
  .modal-item__close {
    display: none;
  }
  .modal-item__close-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 23rem;
    height: 5.5rem;
    font-size: 1.4rem;
    color: #fff;
    background-color: #000000;
    margin: 1.5rem auto 0;
  }
}
/* cta
----------------------------------------------- */
.cta {
  background-image: url(../img/cta_01.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 11rem 0;
}

.cta-item {
  position: relative;
}

.common-btn--cta {
  position: absolute;
  top: 20.5rem;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 767px) {
  .cta {
    background-image: url(../img/sp/cta_01_sp.jpg);
    padding: 5rem 0;
  }
  .cta-item {
    position: relative;
  }
  .common-btn--cta {
    position: absolute;
    top: 18rem;
    left: 50%;
    transform: translateX(-50%);
  }
}
/* sec05
----------------------------------------------- */
.sec05 {
  padding: 9.3rem 0 12rem;
  position: relative;
}
.sec05::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background-image: url(../img/sec05_04.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 132.6rem;
  height: 106.6rem;
  z-index: -1;
}

.sec05__txt {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  margin-top: 4rem;
}

@media (max-width: 767px) {
  .sec05 {
    padding: 5rem 0 7rem;
  }
  .sec05::before {
    content: "";
    position: absolute;
    left: auto;
    right: -16rem;
    bottom: 0;
    width: 82.6rem;
    height: 66.5rem;
    z-index: -1;
  }
  .sec05__txt {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    margin-top: 3rem;
    letter-spacing: -0.01em;
  }
}
/* sec06
----------------------------------------------- */
.sec06 {
  background-image: url(../img/sec06_01.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 10rem 0 12rem;
}

.sec06__pic {
  margin-top: 6rem;
}

.sec06 .sun-ttl {
  color: #FFCE00;
}
@media (max-width: 767px) {
  .sec06 {
    background-image: url(../img/sp/sec06_01_sp.jpg);
    padding: 5rem 0 6rem;
  }
  .sec06__pic {
    margin-top: 5rem;
  }
}
/* sec07
----------------------------------------------- */
.sec07 {
  background-image: url(../img/sec07_01.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 10rem 0 13rem;
}

.sec07-item01 {
  background-color: #fff;
  box-shadow: 0 0.1rem 1.2rem rgba(0, 0, 0, 0.16);
}

.sec07-item01__ttl-wrap {
  text-align: center;
  padding: 2rem 0 3rem;
  background-color: #000000;
  border: 0.7rem solid #fff;
  border-bottom: 0;
}
.sec07-item01__ttl-wrap span {
  font-size: 3.2rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #FFCE00;
}
.sec07-item01__ttl-wrap h2 {
  font-size: 5.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #fff;
  margin-top: 1.5rem;
}

.sec07-item01__info {
  padding: 5rem;
}

.sec07-item01__txt {
  font-size: 3.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  padding-bottom: 1rem;
  border-bottom: 0.6rem solid #000000;
}

.sec07-item01__info img {
  margin-top: 0.4rem;
}

.sec07-item02 {
  background-color: #fff;
  box-shadow: 0 0.1rem 1.2rem rgba(0, 0, 0, 0.16);
  margin-top: 5rem;
}
.sec07-item02 h2 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 2.2rem 0;
  text-align: center;
  background-color: #ffd822;
}

.sec07-item02__box {
  padding: 3.2rem 5rem 4rem;
  text-align: center;
}

.sec07-item02__txt-lg {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.sec07-item02__show {
  display: none;
}

.sec07-item02__txt {
  font-size: 1.8rem;
  line-height: 1.7;
  margin-top: 2.4rem;
}

.sec07-item03 {
  background-color: #fff;
  box-shadow: 0 0.1rem 1.2rem rgba(0, 0, 0, 0.16);
  padding: 7.5rem 5rem 4.6rem;
  margin-top: 7.6rem;
  position: relative;
}

.sec07-item03__heading {
  position: absolute;
  top: -2.6rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 29.4rem;
  height: 6.2rem;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  background-color: #000000;
}
.sec07-item03__heading::before {
  content: "";
  position: absolute;
  bottom: -1.3rem;
  left: 50%;
  transform: translateX(-50%);
  border-top: 1.4rem solid #000000;
  border-right: 1.5rem solid transparent;
  border-left: 1.5rem solid transparent;
}

.sec07-item03__txt {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
}

.sec07-item03__txt-lg {
  font-size: 4.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
}

.sec07-item03__txt-price {
  display: inline-block;
  font-size: 12rem;
  font-weight: 700;
  color: #f28b24;
  letter-spacing: -0.022em;
  margin: 0.5rem 0 0 -1rem;
  transform: translateY(0.3rem);
}

.sec07-item03__txt-mid {
  font-size: 5.6rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.sec07-item03__flex {
  display: flex;
  justify-content: space-between;
  margin-top: 4.5rem;
}

.sec07-item03-info {
  margin-right: 2.5rem;
}

.sec07-item03-info__ttl {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.sec07-item03-info__txt {
  font-size: 1.8rem;
  line-height: 1.7;
  margin-top: 2rem;
}

.sec07-item03-info__bb {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  padding-bottom: 0.5rem;
  background: linear-gradient(transparent 50%, #f4d432 50%);
  margin-top: 3rem;
}

.sec07-item03-pic {
  width: 45rem;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .sec07 {
    background-image: url(../img/sp/sec07_01_sp.jpg);
    padding: 5rem 0 6rem;
  }
  .sec07-item01 {
    background-color: #fff;
    box-shadow: 0 0.1rem 1.2rem rgba(0, 0, 0, 0.16);
  }
  .sec07-item01__ttl-wrap {
    text-align: center;
    padding: 2.5rem 0;
    background-color: #000000;
    border: 0.4rem solid #fff;
    border-bottom: 0;
  }
  .sec07-item01__ttl-wrap span {
    font-size: 2rem;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #FFCE00;
  }
  .sec07-item01__ttl-wrap h2 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: #fff;
    margin-top: 1rem;
  }
  .sec07-item01__info {
    padding: 1.8rem 1.5rem;
  }
  .sec07-item01__txt {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-align: center;
    line-height: 1.33;
    padding-bottom: 0.7rem;
    border-bottom: 0.2rem solid #000000;
  }
  .sec07-item01__info img {
    margin-top: 0.5rem;
  }
  .sec07-item02 {
    background-color: #fff;
    box-shadow: 0 0.1rem 1.2rem rgba(0, 0, 0, 0.16);
    margin-top: 3rem;
  }
  .sec07-item02 h2 {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.33;
    padding: 2rem 0;
    text-align: center;
    background-color: #ffd822;
  }
  .sec07-item02__box {
    padding: 1.7rem 1.4rem 2.6rem;
    text-align: center;
  }
  .sec07-item02__txt-lg {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.5;
  }
  .sec07-item02__show {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 4rem;
    font-size: 1.4rem;
    color: #fff;
    background-color: #000000;
    margin-top: 2rem;
    position: relative;
  }
  .sec07-item02__show::before, .sec07-item02__show::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    display: inline-block;
    width: 1.6rem;
    height: 0.2rem;
    background-color: #fff;
  }
  .sec07-item02__show::after {
    transform: translateY(-50%) rotate(90deg);
  }
  .sec07-item02__txt {
    display: none;
    font-size: 1.4rem;
    line-height: 1.7;
    margin-top: 2rem;
  }
  .sec07-item03 {
    background-color: #f4f3f3;
    box-shadow: 0 0.1rem 1.2rem rgba(0, 0, 0, 0.16);
    padding: 4rem 1.4rem 2rem;
    margin-top: 5.5rem;
    position: relative;
  }
  .sec07-item03__heading {
    position: absolute;
    top: -2.2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20.4rem;
    height: 4.2rem;
    font-size: 1.9rem;
    font-weight: 700;
    color: #fff;
    background-color: #000000;
  }
  .sec07-item03__heading::before {
    content: "";
    position: absolute;
    bottom: -0.7rem;
    left: 50%;
    transform: translateX(-50%);
    border-top: 0.9rem solid #000000;
    border-right: 0.9rem solid transparent;
    border-left: 0.9rem solid transparent;
  }
  .sec07-item03__txt {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.44;
    text-align: center;
  }
  .sec07-item03__txt-lg {
    font-size: 2.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-align: center;
    margin-top: 2rem;
  }
  .sec07-item03__txt-price {
    display: inline-block;
    font-size: 8.2rem;
    font-weight: 700;
    color: #f28b24;
    letter-spacing: -0.046em;
    margin: 0 0.5rem 0 0;
    transform: translateY(0);
  }
  .sec07-item03__txt-mid {
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: 0.02em;
  }
  .sec07-item03__flex {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    margin-top: 2rem;
  }
  .sec07-item03-info {
    margin-right: 0;
  }
  .sec07-item03-info__ttl {
    font-size: 1.8rem;
    letter-spacing: 0;
    line-height: 1.55;
  }
  .sec07-item03-info__txt {
    font-size: 1.4rem;
    line-height: 1.7;
    margin-top: 2rem;
  }
  .sec07-item03-info__bb {
    font-size: 2.1rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
    background: none;
    padding-bottom: 0;
    margin-top: 2rem;
  }
  .sec07-item03-info__bb span {
    background: linear-gradient(transparent 60%, #f4d432 60%);
  }
  .sec07-item03-pic {
    width: 100%;
    flex-shrink: 0;
    margin-top: 2.7rem;
  }
}
/* sec08
----------------------------------------------- */
.sec08 {
  padding: 10rem 0 14rem;
}
.sec08 .common-inner {
  max-width: 124rem;
}

.sec08__txt {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 3rem;
  text-align: center;
}

.sec08__pic-wrap {
  margin-top: 4rem;
  padding: 0 2rem;
}

@media (max-width: 767px) {
  .sec08 {
    padding: 6rem 0 5rem;
  }
  .sec08 .common-inner {
    max-width: 156rem;
  }
  .sec08__txt {
    font-size: 1.6rem;
    line-height: 1.68;
    margin-top: 2rem;
    text-align: center;
  }
  .sec08__pic-wrap {
    width: 100%;
    height: 50rem;
    margin-top: 2rem;
    padding: 0;
    overflow-x: auto;
  }
  /* スクロールバーの背景 */
  .simplebar-scrollbar::before {
    background: #b9b9b9 !important;
  }
  /* スクロールバーの親要素 */
  .simplebar-track {
    background: #f5f5f5;
    height: 1.6rem !important;
    border-radius: 10rem;
  }
  /* スクロールバーの幅 */
  .simplebar-scrollbar {
    width: 2.2rem;
    border-radius: 10rem;
  }
  /* スクロールバーの常時表示 */
  .simplebar-scrollbar::before {
    opacity: 1 !important;
  }
  .simplebar-scrollbar {
    visibility: visible !important;
    background-color: #b9b9b9 !important;
  }
  .sec08__pic {
    width: 68.3rem;
    height: auto;
  }
}
/* 768px以上ではスクロールバーを無効にする */
@media (min-width: 768px) {
  .simplebar-scrollbar, .simplebar-track {
    display: none !important;
  }
  .sec08__pic-wrap {
    overflow: hidden !important; /* スクロール無効化 */
  }
}
/* sec09
----------------------------------------------- */
.sec09 {
  background-image: url(../img/sec09_01.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 10rem 0 13rem;
}

.sec09-item {
  padding-bottom: 2.5rem;
  margin-top: 6.3rem;
  background-color: #fff;
  position: relative;
}
.sec09-item:not(:first-of-type) {
  margin-top: 6.2rem;
}
.sec09-item:not(:first-of-type)::before {
  content: "";
  position: absolute;
  top: -4.6rem;
  left: 50%;
  transform: translateX(-50%);
  border-top: 3.4rem solid #000000;
  border-right: 4rem solid transparent;
  border-left: 4rem solid transparent;
}

.sec09-item__ttl-wrap {
  display: flex;
  height: 6.3rem;
  background-color: #faa24a;
  overflow: hidden;
  position: relative;
}
.sec09-item__ttl-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: -0.1rem;
  border-bottom: 6.5rem solid #fff;
  border-left: 4.2rem solid transparent;
}

.sec09-item--step4 .sec09-item__ttl-wrap {
  width: 54rem;
}

.sec09-item__num {
  display: flex;
  align-items: center;
  width: 19.5rem;
  font-size: 3.6rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #fff;
  background-color: #000000;
  padding-left: 3.3rem;
  position: relative;
}
.sec09-item__num::after {
  content: "";
  position: absolute;
  top: 0;
  right: -0.1rem;
  border-bottom: 6.5rem solid #faa24a;
  border-left: 4.2rem solid transparent;
}
.sec09-item__num span {
  font-size: 2rem;
  margin-right: 0.5rem;
  transform: translateY(0.5rem);
  letter-spacing: 0.04em;
}

.sec09-item__ttl {
  display: flex;
  align-items: center;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding-left: 2.5rem;
}
.sec09-item__ttl span {
  font-size: 3.4rem;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.sec09-item__flex {
  display: flex;
  justify-content: space-between;
  padding: 3rem 3rem 0;
}

.sec09-item__info {
  display: flex;
  width: 46rem;
}

.sec09-item__pic {
  width: 15.6rem;
  flex-shrink: 0;
  margin-right: 2rem;
}

.sec09-item__heading {
  font-size: 2.2rem;
  font-weight: 700;
  background-color: #eeeff0;
  padding: 0.7rem 0.6rem;
}

.sec09-item__txt {
  font-size: 1.8rem;
  line-height: 1.77;
  margin-top: 1.2rem;
}

.sec09-item__payment {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin: 2rem 3rem 0;
  position: relative;
}
.sec09-item__payment::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0.5rem;
  background-color: #f4ca2e;
}
.sec09-item__payment span {
  display: inline-block;
  padding: 0 1.8rem;
  background-color: #fff;
  position: relative;
}

.sec09-item--step4 .sec09-item__payment {
  margin: 2rem 0 0;
}

@media (max-width: 767px) {
  .sec09 {
    background-image: url(../img/sp/sec09_01_sp.jpg);
    padding: 5rem 0 6rem;
  }
  .sec09-item {
    padding-bottom: 2rem;
    margin-top: 3rem;
    background-color: #fff;
    position: relative;
  }
  .sec09-item:not(:first-of-type) {
    margin-top: 5.1rem;
  }
  .sec09-item:not(:first-of-type)::before {
    content: "";
    position: absolute;
    top: -3.6rem;
    left: 50%;
    transform: translateX(-50%);
    border-top: 2.4rem solid #000000;
    border-right: 2.8rem solid transparent;
    border-left: 2.8rem solid transparent;
  }
  .sec09-item__ttl-wrap {
    display: flex;
    height: 7.5rem;
    background-color: #faa24a;
    overflow: hidden;
    position: relative;
  }
  .sec09-item__ttl-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    right: -0.1rem;
    border-bottom: 7.6rem solid #fff;
    border-left: 4.8rem solid transparent;
  }
  .sec09-item--step4 .sec09-item__ttl-wrap {
    width: 100%;
  }
  .sec09-item__num {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    width: 9rem;
    font-size: 2.7rem;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    color: #fff;
    background-color: #000000;
    padding-left: 1.2rem;
    position: relative;
  }
  .sec09-item__num::after {
    content: "";
    position: absolute;
    top: 0;
    right: -0.1rem;
    border-bottom: 7.6rem solid #faa24a;
    border-left: 4.8rem solid transparent;
  }
  .sec09-item__num span {
    font-size: 1.3rem;
    margin-right: 0;
    transform: translateY(0);
    letter-spacing: 0.04em;
  }
  .sec09-item__ttl {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.04em;
    padding-left: 2.5rem;
  }
  .sec09-item__ttl span {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.09em;
  }
  .sec09-item:nth-of-type(2) .sec09-item__ttl {
    padding-left: 4.5rem;
  }
  .sec09-item:nth-of-type(3) .sec09-item__ttl {
    padding-left: 1.8rem;
  }
  .sec09-item:nth-of-type(4) .sec09-item__ttl {
    padding-left: 5rem;
  }
  .sec09-item__flex {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    padding: 2rem 1.4rem 0;
  }
  .sec09-item__info {
    display: flex;
    width: 100%;
  }
  .sec09-item__info:nth-of-type(n + 2) {
    margin-top: 2rem;
  }
  .sec09-item__pic {
    width: 10.6rem;
    flex-shrink: 0;
    margin-right: 2rem;
  }
  .sec09-item__heading {
    font-size: 1.8rem;
    font-weight: 700;
    background-color: #eeeff0;
    padding: 0.5rem 0.6rem;
  }
  .sec09-item__txt {
    font-size: 1.5rem;
    line-height: 1.46;
    margin-top: 1rem;
  }
  .sec09-item__payment {
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    margin: 1.8rem 1.4rem 0;
    position: relative;
  }
  .sec09-item__payment::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 0.2rem;
    background-color: #f4ca2e;
  }
  .sec09-item__payment span {
    display: inline-block;
    padding: 0 1rem;
    background-color: #fff;
    position: relative;
  }
  .sec09-item--step4 {
    background-color: transparent;
  }
  .sec09-item--step4 .sec09-item__flex {
    padding: 0;
  }
  .sec09-item--step4 .sec09-item__payment-area {
    background-color: #fff;
  }
  .sec09-item--step4 .sec09-item__payment-area .sec09-item__info {
    padding-bottom: 0;
  }
  .sec09-item--step4 .sec09-item__info {
    padding: 2rem 1.4rem;
    background-color: #fff;
  }
  .sec09-item--step4 .sec09-item__info:nth-of-type(n + 2) {
    margin-top: 1.2rem;
  }
  .sec09-item--step4 .sec09-item__payment {
    margin: 1.8rem 2rem 2rem;
  }
}
/* sec10
----------------------------------------------- */
.sec10 {
  background-image: url(../img/sec10_01.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 10rem 0 11rem;
}

.faq-items {
  margin-top: 7rem;
}

.faq-item {
  background-color: #fff;
  padding: 2rem 0 2rem 0;
  margin-bottom: 3rem;
  cursor: pointer;
}

.question {
  display: flex;
  align-items: center;
  padding: 0 7rem 0 2.5rem;
  position: relative;
}

.question__q {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 5.1rem;
  height: 5.1rem;
  background-color: #000000;
  border-radius: 50%;
  margin-right: 1.8rem;
}
.question__q img {
  width: 2rem;
}

.question__ttl {
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 2;
}

.answer {
  padding: 2rem 2.5rem 1rem;
  display: none;
}

.answer__ttl {
  font-size: 1.8rem;
  line-height: 1.8;
}

.question::before,
.question::after {
  content: "";
  display: block;
  background-color: #000;
  position: absolute;
  top: 2.3rem;
  right: 3rem;
  width: 2.5rem;
  height: 0.3rem;
}

.question::after {
  transform: rotate(90deg);
  transition: all 0.3s;
}

.question.is-active::before {
  opacity: 0;
}

.question.is-active::after {
  transform: rotate(0);
}

.sec10__link {
  margin-top: 6rem;
  text-align: center;
}

@media (max-width: 767px) {
  .sec10 {
    background-image: url(../img/sp/sec10_01_sp.jpg);
    padding: 5rem 0 6rem;
  }
  .faq-items {
    margin-top: 4rem;
  }
  .faq-item {
    background-color: #fff;
    padding: 1.5rem 0 1.5rem 0;
    margin-bottom: 1.2rem;
    cursor: pointer;
  }
  .question {
    display: flex;
    align-items: center;
    padding: 0 4.4rem 0 1.2rem;
    position: relative;
  }
  .question__q {
    flex-shrink: 0;
    align-self: flex-start;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.8rem;
    height: 2.8rem;
    background-color: #000000;
    border-radius: 50%;
    margin-right: 0.8rem;
  }
  .question__q img {
    width: 1.4rem;
  }
  .question__ttl {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.6;
  }
  .answer {
    padding: 2rem 1.2rem 1rem;
    display: none;
  }
  .answer__ttl {
    font-size: 1.4rem;
    line-height: 1.8;
  }
  .question::before,
  .question::after {
    content: "";
    display: block;
    background-color: #000;
    position: absolute;
    top: 1.3rem;
    right: 1.5rem;
    width: 1.6rem;
    height: 0.2rem;
  }
  .question::after {
    transform: rotate(90deg);
    transition: all 0.3s;
  }
  .question.is-active::before {
    opacity: 0;
  }
  .question.is-active::after {
    transform: rotate(0);
  }
  .sec10__link {
    margin-top: 3rem;
    text-align: center;
  }
  .sec10__link .common-btn {
    margin: 0 auto;
  }
}
/* sec11
----------------------------------------------- */
.sec11 {
  position: relative;
  background-color: #fff;
}
.sec11::before {
  content: '';
  position: absolute;
  left: 0;
  top: 32rem;
  display: block;
  width: 100%;
  height: 102rem;
  background: #FEDF4C;
  transform: skewY(12deg);
  transform-origin: 0 0;
}
.sec11 .common-inner {
  position: relative;
  max-width: 160rem;
  padding: 0 4rem;
  z-index: 1;
}
.sec11__sub {
  max-width: 64.8rem;
  height: 20.8rem;
  margin: 0 auto;
  padding: 3rem;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.36;
  color: #fff;
  background-color: #000;
  text-align: center;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}
.sec11__ttl {
  position: relative;
  margin-top: 5.6rem;
  padding-bottom: 4.8rem;
  text-align: center;
}
.sec11__ttl::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  display: block;
  width: 8.2rem;
  height: 0.3rem;
  background: #000;
  transform: translateX(-50%);
}
.sec11__ttl .sun-ttl {
  font-size: 3.2rem;
  color: #F0C900;
}
.sec11__ttl .tit {
  margin-top: 1rem;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0.07em;
}
.sec11__ttl .tit img {
  width: 81.8rem;
  transform: translateY(0.4rem);
}
.sec11__txt {
  margin-top: 3.8rem;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}
.sec11-items {
  margin-top: 10rem;
  display: flex;
  align-items: flex-start;
  column-gap: 3.22368%;
}
.sec11-item {
  position: relative;
  width: 31.18421%;
  padding: 2rem 0 4rem;
  background-color: #f5f5f5;
}
.sec11-item::after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  display: block;
  width: 100%;
  height: 1.6rem;
  background-color: rgba(145, 145, 145, .77);
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%);
}
.sec11-item_num {
  position: absolute;
  top: 0;
  left: 0;
  width: 9.8rem;
  height: 10.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.1rem;
  font-weight: 700;
  color: #fff;
  background-color: #0B0A0A;
}
.sec11-item_tit {
  padding: 0 0 1rem 11.8rem;
  font-size: 2.9rem;
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: 0.08em;
}
.sec11-item_tit span {
  color: #F0B001;
}
.step01 .sec11-item_tit {
  font-size: 2.6rem;
}
.step01 .sec11-item_tit strong {
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.06em;
  font-feature-settings: "palt";
}
.sec11-item_txt {
  margin: 2rem 2rem 2.5rem;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.78;
  min-height: 9em;
}
.sec11-flow {
  margin: 0 1.5rem;
  padding: 2rem 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  background-color: #fff;
}
.sec11-flow_li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  row-gap: 1rem;
}
.sec11-flow_li .lab {
  width: 10.8rem;
  height: 3.6rem;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 3.6rem;
  text-align: center;
  color: #fff;
  background-color: #0B0A0A;
  border-radius: 1.8rem;
}
.sec11-flow_li .txt {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.78;
} 
.sec11-flow_dd {
  padding: 1rem;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 3.2rem;
  text-align: center;
  background-color: #F0F0F0;
}
.sec11-flow_dd span {
  font-size: 1.8rem;
  font-weight: 600;
}
.sec11-sec {
  margin-top: 10rem;
}
.sec11-sec_tit {
  font-size: 4.4rem;
  font-weight: 800;
  line-height: 1.56;
  letter-spacing: 0.07em;
  text-align: center;
}
.sec11-sec_bd {
  max-width: 100rem;
  margin: 3rem auto 0;
  padding: 4rem 2rem;
  text-align: center;
  background-color: #F5F5F5;
}
.sec11-sec_bd .txt {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 2;
}
.sec11-item_btn {
  display: none;
}
@media (max-width: 1500px) {
  .sec11-item_num {
    width: 9.2rem;
    height: 10rem;
    font-size: 2rem;
  }
  .sec11-item_tit {
    padding: 0 0 1rem 11rem;
    font-size: 2.6rem;
  }
  .step01 .sec11-item_tit strong {
    font-size: 3.2rem;
  }
}
@media (max-width: 767px) {
  .sec11::before {
    top: 30rem;
    height: 213rem;
    background: linear-gradient(0deg, #FFF6D1 50%, #FEDF4C 50%);
    transform: skewY(15deg);
  }
  .sec11 .common-inner {
    padding: 0;
  }
  .sec11__sub {
    max-width: 37.5rem;
    height: 12rem;
    padding: 2rem;
    font-size: 1.6rem;
    line-height: 1.6875;
  }
  .sec11__ttl {
    margin-top: 2rem;
    padding-bottom: 1.2rem;
  }
  .sec11__ttl::after {
    width: 3.6rem;
    height: 0.2rem;
  }
  .sec11__ttl .sun-ttl {
    font-size: 2.2rem;
  }
  .sec11__ttl .tit {
    font-size: 2rem;
    line-height: 1.2;
  }
  .sec11__ttl .tit img {
    width: 19rem;
    transform: none;
  }
  .sec11__txt {
    margin-top: 2.8rem;
    font-size: 1.6rem;
    line-height: 1.6875;
  }
  .sec11-items {
    margin-top: 4rem;
    padding: 0 2rem;
    flex-direction: column;
    row-gap: 3rem;
  }
  .sec11-item {
    width: 100%;
    padding: 1rem 0 2rem;
  }
  .sec11-item::after {
    height: 1.2rem;
  }
  .sec11-item_num {
    width: 7rem;
    height: 7.6rem;
    font-size: 1.6rem;
  }
  .sec11-item_tit {
    padding: 0 0 0 8.5rem;
    font-size: 2.1rem;
    line-height: 1.35;
  }
  .step01 .sec11-item_tit {
    font-size: 2rem;
  }
  .step01 .sec11-item_tit strong {
    font-size: 2.8rem;
  }
  .sec11-item_txt {
    margin: 2rem 1.5rem 1.5rem;
    font-size: 1.5rem;
    line-height: 1.4;
    min-height: 0;
  }
  .sec11-flow {
    display: none;
    margin: 0 1rem;
    padding: 1.5rem 1.5rem 2rem;
    row-gap: 1.5rem;
  }
  .sec11-flow_li {
    row-gap: 0.6rem;
  }
  .sec11-flow_li .lab {
    width: 7.6rem;
    height: 2.5rem;
    line-height: 2.5rem;
    border-radius: 1.3rem;
  }
  .sec11-flow_li .txt {
    font-size: 1.6rem;
    line-height: 1.35;
  } 
  .sec11-flow_dd {
    padding: 0.5rem;
    font-size: 1.5rem;
    line-height: 2.2rem;
  }
  .sec11-flow_dd span {
    font-size: 1.6rem;
  }
  .sec11-sec {
    margin-top: 6rem;
  }
  .sec11-sec_tit {
    font-size: 2.2rem;
    line-height: 1.46;
  }
  .sec11-sec_bd {
    max-width: none;
    margin: 3rem 2rem 0;
    padding: 1.5rem 1rem;
    text-align: left;
  }
  .sec11-sec_bd .txt {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 2;
  }
  
  .sec11-item_btn {
    display: block;
    padding: 1.5rem 1.5rem 0;
  }
  .sec11-item_btn .btn_show {
    position: relative;
    display: block;
    width: 100%;
    height: 5rem;
    font-size: 1.5rem;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    line-height: 5rem;
    color: #fff;
    background-color: #000;
    border: 0;
  }
  .sec11-item_btn .btn_show::after {
    content: '';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    display: block;
    width: 1.6rem;
    height: 1.6rem;
    background: url(../img/ico_more.svg) center / contain no-repeat;
    transform: translateY(-50%);
  }
}
/* sec11
----------------------------------------------- */
.ttl-wrap.un-line {
  position: relative;
  padding-bottom: 4rem;
}
.ttl-wrap.un-line::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  display: block;
  width: 8.2rem;
  height: 0.3rem;
  background: #000;
  transform: translateX(-50%);
}
.sec12 {
  position: relative;
  padding: 15rem 0 12rem;
  background: linear-gradient(12deg, #F0F0F0 50%, #fff 50%);
}
.sec12::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12rem;
  display: block;
  width: 100%;
  height: 102rem;
  background: #FEDF4C;
  transform: skewY(12deg);
  transform-origin: 0 0;
}

.sec12 .sun-ttl {
  color: #F0C900;
}
.sec12 .ttl {
  font-size: 5rem;
  line-height: 1.45;
}
.sec12-item {
  position: relative;
  margin-top: 12.5rem;
  display: flex;
  column-gap: 3rem;
}
.sec12-item_num {
  position: absolute;
  top: 0;
  left: 0;
  width: 13.6rem;
  height: 13.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #F0C928;
  background-color: #000;
  border-radius: 50%;
  transform: translateY(-50%);
}
.sec12-item_num .lit {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.sec12-item_num .num {
  font-size: 5.2rem;
  font-weight: 700;
  line-height: 1;
}
.sec12-item_pic {
  width: 50rem;
}
.sec12-item_des {
  width: 47rem;
}
.sec12-item_des .tit {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.45;
}
.sec12-item_des .txt {
  margin-top: 2rem;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.78;
}
.sec12-item_des .pic {
  margin-top: 4rem;
}
.sec12-item_des .pic img {
  width: 35.3rem;
}
.sec12-item.even {
  flex-direction: row-reverse;
}
.sec12-item.even .sec12-item_num {
  left: auto;
  right: 0;
}
@media (max-width: 767px) {
  .ttl-wrap.un-line {
    padding-bottom: 1.2rem;
  }
  .ttl-wrap.un-line::before {
    width: 4rem;
    height: 0.2rem;
  }
  .sec12 {
    padding: 6rem 0 5rem;
    background: none;
  }
  .sec12::before {
    top: -6rem;
    height: 80rem;
    background: linear-gradient(0deg, #FEDF4C 32rem, #F0F0F0 32rem);
    transform: skewY(15deg);
  }
  .sec12::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8rem;
    z-index: -1;
    display: block;
    width: 100%;
    height: 58rem;
    background: #F0F0F0;
    transform: skewY(15deg);
    transform-origin: 0 0;
  }
  
  .sec12 .ttl-wrap {
    margin: 0 -1rem;
  }
  .sec12 .ttl {
    font-size: 2.4rem;
    line-height: 1.4;
    letter-spacing: 0.1em;
  }
  .sec12-item {
    margin-top: 7rem;
    flex-direction: column;
    row-gap: 2rem;
  }
  .sec12-item_num {
    width: 9rem;
    height: 9rem;
  }
  .sec12-item_num .lit {
    font-size: 1.2rem;
  }
  .sec12-item_num .num {
    font-size: 3.6rem;
  }
  .sec12-item_pic {
    width: 100%;
  }
  .sec12-item_des {
    width: 100%;
  }
  .sec12-item_des .tit {
    font-size: 2.4rem;
    line-height: 1.5;
  }
  .sec12-item_des .txt {
    margin-top: 1rem;
    font-size: 1.5rem;
    line-height: 1.86;
  }
  .sec12-item_des .pic {
    margin-top: 1rem;
    text-align: center;
  }
  .sec12-item_des .pic img {
    width: 25rem;
  }
  .sec12-item.even {
    flex-direction: column;
  }
}
/* footer
----------------------------------------------- */
.footer {
  padding: 4rem 0;
  background-color: #000000;
}

.footerlink {
  display: flex;
  justify-content: center;
  column-gap: 8.5rem;
}

.footerlink a {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
}

.copyright {
  margin-top: 3rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

@media (max-width: 767px) {
  .footerlink {
    flex-wrap: wrap;
    row-gap: 2rem;
    column-gap: 2rem;
  }
}
/* ----- sec06_05.png からwebpにしている ----- */
/*# sourceMappingURL=../../sass/sourcemap/style.css.map */
