@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", "メイリオ", "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #262A2D;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #F7F6F5;
  overflow-x: hidden;
  overflow-wrap: break-word;
}

h2 {
  font-size: 35px;
}

@media (max-width: 768px) {
  h2 {
    font-size: 4.5vw;
  }
}

a {
  text-decoration: none;
}

a:hover {
  opacity: .7;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

video {
  max-width: 1634px;
  width: 100%;
}

@media min-width {
  .hidden-pc {
    display: none;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hidden-tab {
    display: none;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hidden-tab {
    display: none;
  }
}

.section {
  margin: 40px auto 0 auto;
}

@media (max-width: 768px) {
  .section {
    margin: 24px auto 0 auto;
  }
}

.inner {
  max-width: 1634px;
  width: 85%;
  margin: 0 auto;
  padding: 80px 40px 40px 40px;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .inner {
    padding: 48px 24px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .inner {
    padding: 24px 16px;
    width: 100%;
  }
}

.section--title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 56px;
}

@media (max-width: 768px) {
  .section--title {
    flex-direction: column;
    justify-content: center;
    margin-bottom: 24px;
  }
}

.section--title h2 {
  margin-right: 24px;
  font-weight: bold;
  font-size: 35px;
}

@media (max-width: 768px) {
  .section--title h2 {
    font-size: 4.5vw;
    margin-right: 0;
  }
}

.section--title span {
  color: #C1C2C3;
  font-weight: bold;
  font-size: 25px;
}

@media (max-width: 768px) {
  .section--title span {
    font-size: 3.3vw;
  }
}

.title-decoration {
  position: relative;
  display: inline-block;
  padding: 0 48px;
}

.title-decoration::before, .title-decoration::after {
  content: "";
  position: absolute;
  top: 0;
  width: 7px;
  height: 100%;
}

.title-decoration::before {
  left: 24px;
  border-left: 7px dotted #262A2D;
  transform-origin: left;
  transform: rotate(-20deg);
}

@media (max-width: 768px) {
  .title-decoration::before {
    border-left-width: 4px;
  }
}

.title-decoration::after {
  right: 24px;
  border-right: 7px dotted #262A2D;
  transform-origin: right;
  transform: rotate(20deg);
}

@media (max-width: 768px) {
  .title-decoration::after {
    border-right-width: 4px;
  }
}

.scroll_up {
  transition: .8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}

.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}

.header {
  background: #fff;
  padding: 16px;
}

.header__logo {
  width: 10%;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .header__logo {
    width: 20%;
  }
}

.fv::before {
  content: "";
  height: 90px;
  display: block;
}

.sec1 video {
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .sec1 video {
    margin-bottom: 0;
  }
}

.sec2__box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.sec2__box__item {
  flex-basis: 22%;
}

@media (max-width: 768px) {
  .sec2__box__item {
    flex-basis: 48%;
  }
  .sec2__box__item:nth-child(n+3) {
    margin-top: 24px;
  }
}

.sec2__box__item__info {
  padding: 16px 8px;
}

@media (max-width: 768px) {
  .sec2__box__item__info {
    padding: 8px 4px;
  }
}

.sec2__box__item__info p {
  font-size: 22px;
}

@media (max-width: 768px) {
  .sec2__box__item__info p {
    font-size: 2.8vw;
  }
}

.sec2__box__item__info span {
  font-weight: bold;
  font-size: 17px;
}

@media (max-width: 768px) {
  .sec2__box__item__info span {
    font-size: 2.2vw;
  }
}

.sec2__box__item__info span:first-of-type {
  position: relative;
}

.sec2__box__item__info span:first-of-type::before, .sec2__box__item__info span:first-of-type::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.sec2__box__item__info span:first-of-type::before {
  right: -50px;
  width: 48px;
  height: 1px;
  background: #000;
}

.sec2__box__item__info span:first-of-type::after {
  right: -52.5px;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background: #000;
}

.sec2__box__item__info span:not(:first-of-type) {
  color: #ECC6BC;
  font-weight: bold;
}

.sec3 .inner {
  background: #fff;
}

@media (max-width: 768px) {
  .sec3 .inner {
    width: 100%;
  }
}

.sec3__wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.sec3__wrapper__item {
  flex-basis: 33.333%;
  padding: 24px 8px;
}

.sec3__wrapper__item:not(:nth-child(n+4)) {
  border-bottom: 1px solid #707070;
}

.sec3__wrapper__item:nth-child(n+4) {
  margin-top: 24px;
}

@media (max-width: 768px) {
  .sec3__wrapper__item {
    flex-basis: 50%;
  }
  .sec3__wrapper__item:not(:nth-child(n+5)) {
    border-bottom: 1px solid #707070;
  }
  .sec3__wrapper__item:nth-child(n+3) {
    margin-top: 24px;
  }
}

.sec3__wrapper__item__title p {
  font-size: 33px;
  font-weight: bold;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .sec3__wrapper__item__title p {
    font-size: 3.3vw;
  }
}

.sec3__wrapper__item__title p img {
  width: 54px;
  height: 94px;
  margin-right: 16px;
}

@media (max-width: 768px) {
  .sec3__wrapper__item__title p img {
    width: 7vw;
    height: 12.2vw;
  }
}

.sec3__wrapper__item__content {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}

.sec3__wrapper__item__content span {
  flex-basis: 10%;
  text-align: right;
  writing-mode: vertical-lr;
  font-size: 21px;
  font-weight: bold;
  transform: rotate(180deg);
  color: #ECC6BC;
}

@media (max-width: 768px) {
  .sec3__wrapper__item__content span {
    font-size: 2.7vw;
  }
}

.sec3__wrapper__item__content__box {
  flex-basis: 80%;
}

.sec3__wrapper__item__content__box__title {
  font-size: 25px;
  font-weight: bold;
  color: #192027;
  padding: 8px 0;
  border-bottom: 1px solid #707070;
}

@media (max-width: 768px) {
  .sec3__wrapper__item__content__box__title {
    font-size: 3.2vw;
  }
}

.sec3__wrapper__item__content__box__text {
  color: #192027;
  font-size: 20px;
  padding: 8px 0;
}

@media (max-width: 768px) {
  .sec3__wrapper__item__content__box__text {
    font-size: 2.6vw;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .sec4 {
    width: 95%;
  }
}

@media (max-width: 768px) {
  .sec4 {
    width: 95%;
  }
}

.sec4 .inner {
  position: relative;
  background: url(../images/cta.png) no-repeat center center/cover;
  padding: 48px;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .sec4 .inner {
    background: url(../images/cta_sp.png) no-repeat center center/cover;
  }
}

@media (max-width: 768px) {
  .sec4 .inner {
    background: url(../images/cta_sp.png) no-repeat center center/cover;
  }
}

.sec4__wrapper {
  text-align: center;
}

.sec4__wrapper__title h2 {
  font-size: 37px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .sec4__wrapper__title h2 {
    font-size: 4.8vw;
  }
}

.sec4__wrapper__title p {
  font-size: 22px;
  color: #CB755B;
}

@media (max-width: 768px) {
  .sec4__wrapper__title p {
    font-size: 2.8vw;
  }
}

.sec4__wrapper__link {
  margin-top: 24px;
}

.sec4__wrapper__link__btn {
  color: #CB755B;
  background: #fff;
  border: 3px solid #CB755B;
  padding: 16px 40px;
  font-size: 24px;
}

@media (max-width: 768px) {
  .sec4__wrapper__link__btn {
    font-size: 3.1vw;
    padding: 8px;
    display: block;
    width: 50%;
    margin: 0 auto;
  }
}

.sec5 .inner {
  padding: 80px 0;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .sec5 .inner {
    padding: 80px 16px;
  }
}

@media (max-width: 768px) {
  .sec5 .inner {
    padding: 80px 24px;
  }
}

.sec5__wrapper {
  border: 5px solid #C1C2C3;
  padding: 64px 32px 40px 32px;
  text-align: center;
  position: relative;
}

@media (max-width: 768px) {
  .sec5__wrapper {
    padding: 32px 8px 24px 8px;
  }
}

.sec5__wrapper__title {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #F7F6F5;
  font-size: 35px;
  font-weight: bold;
  width: 62%;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .sec5__wrapper__title {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .sec5__wrapper__title {
    width: 98%;
    font-size: 4.5vw;
  }
}

.sec5__wrapper__title span {
  font-size: 45px;
}

@media (max-width: 768px) {
  .sec5__wrapper__title span {
    font-size: 5.5vw;
  }
}

.sec5__wrapper__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .sec5__wrapper__box {
    flex-direction: column;
  }
}

.sec5__wrapper__box__item {
  max-width: 493px;
  flex-basis: 32%;
}

@media (max-width: 768px) {
  .sec5__wrapper__box__item {
    flex-basis: 100%;
  }
  .sec5__wrapper__box__item:not(:last-child) {
    margin-bottom: 24px;
  }
}

.sec5__wrapper__box__item__img {
  width: 100%;
  min-width: 271px;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .sec5__wrapper__box__item__img {
    min-width: auto;
    width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .sec5__wrapper__box__item__img {
    width: 80%;
    margin: 0 auto;
  }
}

.sec5__wrapper__box__item__img img {
  max-width: 100%;
}

@media (max-width: 768px) {
  .sec5__wrapper__box__item__img img {
    width: 90%;
  }
}

.sec5__wrapper__box__item__text {
  margin-top: 16px;
}

.sec5__wrapper__box__item__text p:first-of-type {
  font-size: 23px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .sec5__wrapper__box__item__text p:first-of-type {
    font-size: 2.5vw;
  }
}

.sec5__wrapper__box__item__text p:not(:first-of-type) {
  font-size: 41px;
  color: #E3AB9D;
  font-weight: bolder;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .sec5__wrapper__box__item__text p:not(:first-of-type) {
    font-size: 4vw;
  }
}

@media (max-width: 768px) {
  .sec5__wrapper__box__item__text p:not(:first-of-type) {
    font-size: 5.3vw;
  }
}

.sec6__top {
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .sec6__top {
    flex-direction: column;
  }
}

.sec6__top p {
  margin-left: 16px;
  font-size: 24px;
}

@media (max-width: 768px) {
  .sec6__top p {
    margin: 24px auto 0 auto;
    font-size: 3.1vw;
  }
}

.sec6__wrapper {
  display: flex;
  margin-top: 32px;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}

.sec6__wrapper::after {
  content: "";
  display: block;
  width: 30%;
}

.sec6__wrapper__item {
  flex-basis: 18%;
}

@media (max-width: 768px) {
  .sec6__wrapper__item {
    flex-basis: 30%;
  }
}

.sec6__wrapper__item__img {
  margin: 0 auto;
  position: relative;
  padding: 20px;
}

@media (max-width: 768px) {
  .sec6__wrapper__item__img {
    padding: 8px;
  }
}

.sec6__wrapper__item__img::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 40px 40px;
}

@media (max-width: 768px) {
  .sec6__wrapper__item__img::before {
    border-width: 0 0 5.2vw 5.2vw;
  }
}

.sec6__wrapper__item__img__1::before {
  border-color: transparent transparent #EAEAEA transparent;
}

.sec6__wrapper__item__img__2::before {
  border-color: transparent transparent #D8D8D8 transparent;
}

.sec6__wrapper__item__img__3::before {
  border-color: transparent transparent #F8E6E1 transparent;
}

.sec6__wrapper__item__img__4::before {
  border-color: transparent transparent #EFD8D2 transparent;
}

.sec6__wrapper__item__img__5::before {
  border-color: transparent transparent transparent transparent;
}

.sec6__wrapper__item__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 24px;
  border-width: 24px 0 0 24px;
  border-style: solid;
  padding: 24px;
}

@media (max-width: 768px) {
  .sec6__wrapper__item__title {
    margin-top: 16px;
    padding: 8px;
    border-width: 3.1vw 0 0 3.1vw;
  }
}

.sec6__wrapper__item__title img {
  width: 50%;
}

.sec6__wrapper__item__title p {
  font-size: 20px;
}

@media (max-width: 768px) {
  .sec6__wrapper__item__title p {
    font-size: 2.6vw;
  }
}

.sec6__wrapper__item__title__1 {
  border-color: #EAEAEA;
}

.sec6__wrapper__item__title__1 img {
  opacity: 0;
}

.sec6__wrapper__item__title__2 {
  border-color: #D8D8D8;
}

.sec6__wrapper__item__title__3 {
  border-color: #F8E6E1;
}

.sec6__wrapper__item__title__4 {
  border-color: #EFD8D2;
}

.sec6__wrapper__item__title__5 {
  border-color: #E8C4B9;
}

.sec6__wrapper__item__list {
  margin: 16px auto;
  padding-left: 24px;
}

.sec6__wrapper__item__list li {
  font-weight: bold;
}

@media (max-width: 768px) {
  .sec6__wrapper__item__list li {
    font-size: 2.3vw;
  }
}

.sec6__wrapper__item:nth-child(1) {
  padding-top: 256px;
}

@media (max-width: 768px) {
  .sec6__wrapper__item:nth-child(1) {
    padding-top: 128px;
  }
}

.sec6__wrapper__item:nth-child(2) {
  padding-top: 192px;
}

@media (max-width: 768px) {
  .sec6__wrapper__item:nth-child(2) {
    padding-top: 64px;
  }
}

.sec6__wrapper__item:nth-child(3) {
  padding-top: 128px;
}

@media (max-width: 768px) {
  .sec6__wrapper__item:nth-child(3) {
    padding-top: 0;
  }
}

.sec6__wrapper__item:nth-child(4) {
  padding-top: 64px;
}

.sec7 .inner {
  background: #fff;
  text-align: center;
}

@media (max-width: 768px) {
  .sec7 .inner {
    width: 100%;
  }
}

.sec7__text {
  padding: 16px;
  border: 4px solid #E3AB9D;
  width: 60%;
  margin: 40px auto;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .sec7__text {
    width: 70%;
  }
}

@media (max-width: 768px) {
  .sec7__text {
    width: 90%;
  }
}

.sec7__text p {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .sec7__text p {
    font-size: 3.4vw;
  }
}

.sec7__text p span {
  margin-left: 24px;
  font-size: 20px;
  font-weight: 400;
}

@media (max-width: 768px) {
  .sec7__text p span {
    font-size: 2.6vw;
  }
}

.sec7__wrapper {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .sec7__wrapper {
    flex-direction: column;
  }
}

.sec7__wrapper__box {
  flex-basis: 48%;
}

.sec7__wrapper__box__item {
  display: flex;
  justify-content: flex-start;
  text-align: left;
  align-items: flex-start;
}

.sec7__wrapper__box__item:not(:last-of-type) {
  margin-bottom: 24px;
}

.sec7__wrapper__box__item dt {
  flex-basis: 25%;
  font-size: 25px;
  font-weight: bold;
  position: relative;
}

@media (max-width: 768px) {
  .sec7__wrapper__box__item dt {
    font-size: 3.4vw;
    flex-basis: 30%;
  }
}

.sec7__wrapper__box__item dt::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -16px;
  width: 4px;
  height: 80%;
  background: #E3AB9D;
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  .sec7__wrapper__box__item dt::before {
    left: -8px;
    width: 2px;
  }
}

.sec7__wrapper__box__item dd {
  flex-basis: 72.5%;
  font-size: 20px;
}

@media (max-width: 768px) {
  .sec7__wrapper__box__item dd {
    font-size: 2.6vw;
  }
}

.sec7__link {
  margin-top: 40px;
  width: 100%;
}

@media (max-width: 768px) {
  .sec7__link {
    margin-top: 24px;
  }
}

.sec7__link__btn {
  padding: 16px 40px;
  border: 3px solid #CB755B;
  color: #CB755B;
  font-size: 24px;
}

@media (max-width: 768px) {
  .sec7__link__btn {
    width: 50%;
    margin: 0 auto;
    font-size: 3.3vw;
    padding: 8px;
    display: block;
  }
}

.sec8 {
  background: url(../images/contact.png) no-repeat center center/cover;
}

.sec8__top {
  text-align: center;
}

.sec8__top__title {
  font-size: 50px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .sec8__top__title {
    font-size: 6.5vw;
  }
}

.sec8__top p {
  font-size: 25px;
  font-weight: bold;
  margin-top: 16px;
}

@media (max-width: 768px) {
  .sec8__top p {
    font-size: 3.3vw;
  }
}

.sec8__top span {
  display: block;
  margin-top: 24px;
  font-size: 26px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .sec8__top span {
    font-size: 3.4vw;
  }
}

.sec8 .form-wrapper {
  width: 90%;
  margin: 32px auto;
}

@media (max-width: 768px) {
  .sec8 .form-wrapper {
    width: 100%;
  }
}

.sec8 .form-wrapper form .box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .sec8 .form-wrapper form .box {
    flex-direction: column;
    align-items: flex-start;
  }
}

.sec8 .form-wrapper form .box:not(:last-child) {
  margin-bottom: 24px;
}

.sec8 .form-wrapper form .box label {
  flex-basis: 30%;
  font-size: 26px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .sec8 .form-wrapper form .box label {
    flex-basis: auto;
    margin-bottom: 8px;
    font-size: 3.4vw;
  }
}

.sec8 .form-wrapper form .box input, .sec8 .form-wrapper form .box textarea {
  flex-basis: 70%;
  padding: 16px;
  background: #fff;
  border: 1px solid #707070;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .sec8 .form-wrapper form .box input, .sec8 .form-wrapper form .box textarea {
    flex-basis: 100%;
    width: 100%;
    padding: 8px 16px;
  }
}

.sec8 .form-wrapper form .submit {
  text-align: center;
  margin-top: 24px;
}

.sec8 .form-wrapper form .submit__btn {
  width: 50%;
  color: #fff;
  background: #E3AB9D;
  padding: 16px;
  font-size: 32px;
}

@media (max-width: 768px) {
  .sec8 .form-wrapper form .submit__btn {
    padding: 8px;
    font-size: 4.1vw;
  }
}

.sec8 .end-message {
  display: none;
}

.sec8 .false-message {
  display: none;
}
