@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&family=Josefin+Sans:wght@300;400;500;600;700&family=Noto+Serif+JP:wght@400;500;600;700;900&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rozha+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@700&family=Rozha+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@700&display=swap");
.media-check {
  display: none;
}
@media only screen and (min-width: 1200px) {
  .media-check::before {
    content: "xl";
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .media-check::before {
    content: "lg";
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .media-check::before {
    content: "md";
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px) {
  .media-check::before {
    content: "sm";
  }
}
@media only screen and (max-width: 575.98px) {
  .media-check::before {
    content: "xs";
  }
}

.mt-10 {
  margin-top: 1rem;
}

.mt-20 {
  margin-top: 2rem;
}

.mt-24 {
  margin-top: 2.4rem;
}

.mt-30 {
  margin-top: 3rem;
}

.mb-10 {
  margin-bottom: 1rem;
}

.mb-16 {
  margin-bottom: 1.6rem;
}

.mb-20 {
  margin-bottom: 2rem;
}

.mb-24 {
  margin-bottom: 2.4rem;
}

.mb-28 {
  margin-bottom: 2.8rem;
}

.mb-30 {
  margin-bottom: 3rem;
}

.mb-40 {
  margin-bottom: 4rem;
}

.ml-20 {
  margin-left: 2rem;
}

.mr-20 {
  margin-right: 2rem;
}

.pl-20 {
  padding-right: 2rem;
}

.pr-20 {
  padding-left: 2rem;
}

:root {
  --scrollbar-width: 0;
}

/* ***********************************************************************************

Utility

*********************************************************************************** */
/* Easy Style
//////////////////////////////////////////// */
@media (max-width: 991.98px) {
  .o-pc {
    display: none !important;
  }
}

@media only screen and (min-width: 576px) {
  .o-sp {
    display: none;
  }
}

@media only screen and (min-width: 992px) {
  .o-tab {
    display: none;
  }
}
@media only screen and (max-width: 575.98px) {
  .o-tab {
    display: none;
  }
}

@media only screen and (max-width: 575.98px) {
  .o-tab-pc {
    display: none;
  }
}

@media only screen and (min-width: 992px) {
  .o-sp-tab {
    display: none;
  }
}

@media only screen and (max-width: 1199.98px) {
  .o-xl {
    display: none;
  }
}

@media only screen and (min-width: 1200px) {
  .o-lg {
    display: none;
  }
}
@media only screen and (max-width: 991.98px) {
  .o-lg {
    display: none;
  }
}

@media only screen and (min-width: 992px) {
  .o-md {
    display: none;
  }
}
@media only screen and (max-width: 767.98px) {
  .o-md {
    display: none;
  }
}

@media only screen and (min-width: 768px) {
  .o-sm {
    display: none;
  }
}
@media only screen and (max-width: 575.98px) {
  .o-sm {
    display: none;
  }
}

@media only screen and (min-width: 576px) {
  .o-xs {
    display: none;
  }
}

/* ***********************************************************************************

Basic

*********************************************************************************** */
/* リセット
//////////////////////////////////////////// */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 基本設定
//////////////////////////////////////////// */
/* 基本設定 */
/* border-box
//////////////////////// */
*, *:before, *:after {
  box-sizing: border-box;
}

/* imgタグ
//////////////////////// */
img {
  width: 100%;
  max-width: 100%;
  vertical-align: bottom;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* body
//////////////////////// */
body {
  width: 100%;
  word-break: break-word;
  color: #333333;
  overflow-x: hidden;
}

main {
  width: 100%;
  margin: auto;
  margin-top: 0;
}
@media only screen and (min-width: 576px) and (max-width: 767.98px) {
  main {
    max-width: 100%;
  }
}
@media only screen and (max-width: 991.98px) {
  main {
    overflow: hidden;
  }
}
main.top {
  background-color: #ffffff;
}

/* 背景色
//////////////////////// */
.page-main {
  background-color: #ffffff;
}

/* スクロール固定時
//////////////////////// */
body.is--fixed {
  overflow: hidden;
}
@media only screen and (min-width: 992px) {
  body.is--fixed {
    width: calc(100vw - var(--scrollbar-width));
  }
}

/* フォント設定 */
/* Font Import
//////////////////////// */
/* 基本フォントサイズ
//////////////////////// */
html {
  font-size: 62.5%;
}

body {
  font-size: 1.4rem;
}

/* 基本フォントスタイル
//////////////////////// */
body,
body input,
body textarea {
  font-size: 1.4rem;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 400;
  color: #333333;
  -webkit-text-size-adjust: 100%;
  letter-spacing: 0em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* aタグスタイル
//////////////////////// */
a {
  text-shadow: none;
  outline: none;
  color: #333333;
  text-decoration: none;
}
.f--min {
  font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  line-height: 1.5;
  font-weight: 600;
}

.f--en {
  font-family: "Lato", sans-serif;
  letter-spacing: 0.1em;
}

.f--blue {
  color: #7AADC1;
}

.f--white {
  color: #ffffff;
}

.f--red {
  color: #F55252;
}

.f--pink {
  color: #D8AEB2;
}

.f--24 {
  font-size: 2.4rem !important;
}

.f--16 {
  font-size: 1.6rem;
}

.f--18 {
  font-size: 1.8rem !important;
}

.f--10 {
  font-size: 1rem;
}

.f--24 {
  font-size: 2.4rem;
  line-height: 1.3;
}

.f--32 {
  font-size: 3.2rem !important;
}

.f--40 {
  font-size: 4rem !important;
}

.f--w7 {
  font-weight: 700;
}

.f--w8 {
  font-weight: 800 !important;
}

.f--block {
  display: inline-block !important;
}

/*  電話番号リンクをスマホ以外では無効化
//////////////////////// */
@media only screen and (min-width: 992px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/* レイアウト
//////////////////////////////////////////// */
/* コンテンツ幅（mw）に関する設定 */
body {
  max-width: none;
  margin: auto;
}

.mw--01 {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1232px) {
  .mw--01 {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media only screen and (max-width: 1232px) and (min-width: 992px) {
  .mw--01 {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media only screen and (max-width: 1232px) and (min-width: 576px) and (max-width: 991.98px) {
  .mw--01 {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media only screen and (max-width: 1232px) and (max-width: 575.98px) {
  .mw--01 {
    padding-left: 5vmin;
    padding-right: 5vmin;
  }
}

.mw--02 {
  max-width: 884px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 916px) {
  .mw--02 {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media only screen and (max-width: 916px) and (min-width: 992px) {
  .mw--02 {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media only screen and (max-width: 916px) and (min-width: 576px) and (max-width: 991.98px) {
  .mw--02 {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media only screen and (max-width: 916px) and (max-width: 575.98px) {
  .mw--02 {
    padding-left: 5vmin;
    padding-right: 5vmin;
  }
}

.mw--03 {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 632px) {
  .mw--03 {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media only screen and (max-width: 632px) and (min-width: 992px) {
  .mw--03 {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media only screen and (max-width: 632px) and (min-width: 576px) and (max-width: 991.98px) {
  .mw--03 {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media only screen and (max-width: 632px) and (max-width: 575.98px) {
  .mw--03 {
    padding-left: 5vmin;
    padding-right: 5vmin;
  }
}

@media only screen and (min-width: 992px) {
  .ph {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 991.98px) {
  .ph {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media only screen and (max-width: 575.98px) {
  .ph {
    padding-left: 5vmin;
    padding-right: 5vmin;
  }
}

@media only screen and (min-width: 992px) {
  .ph-pc {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 991.98px) {
  .ph-tab {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media only screen and (max-width: 575.98px) {
  .ph-sp {
    padding-left: 5vmin;
    padding-right: 5vmin;
  }
}

/* ***********************************************************************************

Design：01_parts

*********************************************************************************** */
/* 
ボタン：
//////////////////////////////////////////// */
.c-btn {
  width: 36rem;
  text-align: center;
}
.c-btn a {
  font-weight: 700;
  letter-spacing: 0.2rem;
  display: block;
  font-size: 1.8rem;
}
.c-btn a:hover {
  transition: opacity 0.3s ease;
}
.c-btn a:hover:hover {
  opacity: 0.8;
}
@media only screen and (max-width: 575.98px) {
  .c-btn a:hover.js_hover {
    opacity: 0.8;
  }
}
@media only screen and (max-width: 991.98px) {
  .c-btn {
    width: 100%;
  }
}
.c-btn__line {
  padding: 2.1rem 0;
  color: #ffffff;
  border-radius: 3px;
  background-color: #1FC755;
  -webkit-tap-highlight-color: rgb(4, 139, 59);
  position: relative;
}
.c-btn__line::after {
  content: "";
  width: 34px;
  height: 32px;
  background: no-repeat url("../img/btn-line.svg");
  background-size: contain;
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 991.98px) {
  .c-btn__line {
    padding: 2.1rem 0;
  }
}

/* 
見出し：
//////////////////////////////////////////// */
.c-section__title {
  text-align: center;
}
.c-section__title .f--min {
  display: block;
}
.c-section__title__main {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
}
.c-section__title__sub {
  font-size: 1.6rem;
  font-weight: bold;
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}
.c-section__title__sub::after, .c-section__title__sub::before {
  content: "";
  display: block;
  width: 5.8rem;
  height: 0.1rem;
  background-color: #333333;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.c-section__title__sub::after {
  right: -7.4rem;
}
.c-section__title__sub::before {
  left: -7.4rem;
}
.c-section__title.f--white .c-section__title__sub::after, .c-section__title.f--white .c-section__title__sub::before {
  background-color: #ffffff;
}

/* ***********************************************************************************

Design：02_Frame

*********************************************************************************** */
/*  Contents
//////////////////////////////////////////// */
/* Header
//////////////////////////////////////////// */
header .header-block {
  max-width: 1350px;
  margin: 0 auto;
  padding-left: 4rem;
}
header .header-block .logo {
  margin-top: 1.7rem;
}
header .header-block .logo img {
  width: 20.7rem;
}
@media only screen and (max-width: 991.98px) {
  header .header-block {
    padding: 0;
    height: 5rem;
    display: flex;
    align-items: center;
  }
  header .header-block .logo {
    margin: 0 0 0 1.6rem;
  }
  header .header-block .logo img {
    width: 16.5rem;
  }
}

/* Footer
//////////////////////////////////////////// */
footer .footer-block {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 7rem;
}
footer .footer-block .logo {
  margin-left: 2rem;
}
footer .footer-block .logo img {
  width: 18rem;
}
footer .footer-block small {
  font-family: "Lato";
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
}
footer .footer-block #page-top {
  font-family: "Lato";
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
  background-color: #333333;
  color: #ffffff;
  width: 16rem;
  height: 100%;
  text-align: center;
  position: relative;
  padding-top: 3.4rem;
  cursor: pointer;
}
footer .footer-block #page-top::before {
  display: block;
  content: "";
  width: 1.2rem;
  height: 0.8rem;
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
          clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background-color: #ffffff;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 1.8rem;
}
footer .footer-block #page-top:hover {
  transition: opacity 0.3s ease;
}
footer .footer-block #page-top:hover:hover {
  opacity: 0.8;
}
@media only screen and (max-width: 575.98px) {
  footer .footer-block #page-top:hover.js_hover {
    opacity: 0.8;
  }
}
@media only screen and (max-width: 991.98px) {
  footer .footer-block {
    justify-content: center;
  }
}

/* ***********************************************************************************

Design：03_Page

*********************************************************************************** */
/* 
トップページ 
//////////////////////////////////////////// */
.mv-block {
  max-width: 1350px;
  margin: -5rem auto 0;
  background: no-repeat url("../img/main_image.svg") right;
  background-size: 900px;
  padding: 19rem 0 14rem 4rem;
}
.mv-block__inner {
  width: 40%;
  white-space: nowrap;
}
.mv-block__title {
  margin-bottom: 1.5rem;
}
.mv-block__title span {
  display: block;
  font-size: 4.9rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.2rem;
}
.mv-block__text {
  font-weight: 500;
  font-size: 1.7rem;
  margin-bottom: 6.2rem;
}
.mv-block__btn {
  width: 36rem;
  margin: 0 auto;
  text-align: center;
}
.mv-block__btn p {
  font-weight: 600;
  font-size: 1.4rem;
  color: #1FC755;
  margin-bottom: 1.2rem;
  letter-spacing: 0.1rem;
}
.mv-block__btn .c-btn a {
  padding: 2rem 0;
  font-size: 2rem;
}
@media only screen and (max-width: 991.98px) {
  .mv-block {
    max-width: 100%;
    background: no-repeat url("../img/main_image_sp.svg") center;
    background-size: cover;
    margin: 0;
    padding: 25rem 0;
    position: relative;
    margin-bottom: 12.2rem;
  }
  .mv-block::after {
    display: block;
    content: "";
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgb(255, 255, 255));
    width: 100%;
    height: 24rem;
    position: absolute;
    bottom: 0;
  }
  .mv-block__inner {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: -14rem;
    z-index: 1;
  }
  .mv-block__title span {
    font-size: 2.8rem;
    line-height: 1.3;
    text-shadow: 0px 0px 6px rgb(255, 255, 255);
  }
  .mv-block__text {
    font-weight: 600;
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 3rem;
  }
  .mv-block__btn {
    padding: 0 2rem;
    width: 100%;
  }
  .mv-block__btn p {
    margin-bottom: 1.5rem;
  }
}

.cv-btn-area {
  padding: 4.3rem 0;
  text-align: center;
}
.cv-btn-area.bg-green {
  background-color: #CFDBE0;
}
.cv-btn-area p {
  margin-bottom: 1.6rem;
  font-size: 1.8rem;
  font-weight: 700;
}
.cv-btn-area .c-btn {
  margin: 0 auto;
}
@media only screen and (max-width: 991.98px) {
  .cv-btn-area {
    padding: 4.2rem 2rem;
  }
  .cv-btn-area p {
    font-size: 1.6rem;
    margin-bottom: 1.4rem;
  }
}

.sec01 {
  padding: 6rem 0 4.8rem;
}
.sec01 .c-section__title {
  margin-bottom: 4.4rem;
}
.sec01 .c-section__title__sub {
  margin-bottom: 1.6rem;
}
.sec01 .c-section__title .f--min {
  font-size: 3.2rem;
}
.sec01__list {
  width: 72rem;
  margin: 0 auto;
}
.sec01__list li {
  font-weight: 600;
  padding-left: 3.8rem;
  position: relative;
  margin-bottom: 2.6rem;
  line-height: 1.6;
  color: #000;
}
.sec01__list li .arrow {
  width: 2rem;
  height: 2rem;
  border-radius: 2rem;
  background-color: #7AADC1;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.sec01__list li .arrow::after, .sec01__list li .arrow::before {
  content: "";
  display: block;
  height: 2px;
  width: 8px;
  background: #ffffff;
  border-radius: 12px;
  transform: rotate(45deg);
  position: absolute;
  left: 2.4px;
  top: 0px;
  bottom: -4px;
  margin: auto;
  z-index: 2;
}
.sec01__list li .arrow::after {
  transform: rotate(-45deg);
  width: 11.4px;
  left: 6.4px;
  bottom: -1px;
}
@media only screen and (max-width: 991.98px) {
  .sec01 {
    padding: 6rem 0 3rem;
  }
  .sec01 .c-section__title {
    margin-bottom: 3.6rem;
  }
  .sec01 .c-section__title__sub {
    margin-bottom: 2.5rem;
  }
  .sec01 .c-section__title .f--min {
    font-size: 2.4rem;
  }
  .sec01__list {
    width: auto;
    margin: 0 2rem;
  }
  .sec01__list li {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    line-height: 1.7;
  }
  .sec01__list li .arrow {
    top: 6px;
    transform: translateY(0%);
  }
}

.sec02 {
  padding: 5.3rem 0 4rem;
  background-color: #EFECEA;
  position: relative;
}
.sec02::after {
  content: "";
  display: block;
  background-color: #FCF8F4;
  width: 50%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}
.sec02::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 35px 0 35px 38px;
  border-color: transparent transparent transparent #EFECEA;
  position: absolute;
  bottom: 13rem;
  right: calc(50% - 38px);
  z-index: 2;
}
.sec02 .c-section__title {
  z-index: 2;
  position: relative;
  width: 260px;
  margin: 0 auto;
}
.sec02 .c-section__title::after, .sec02 .c-section__title::before {
  display: block;
  content: "";
  width: 6.6rem;
  height: 0.5rem;
  border-radius: 0.5rem;
  background-color: #ffffff;
  position: absolute;
  bottom: 24px;
}
.sec02 .c-section__title::after {
  transform: rotate(-55deg);
  right: -6.4rem;
}
.sec02 .c-section__title::before {
  transform: rotate(55deg);
  left: -6.4rem;
}
.sec02__inner {
  text-align: center;
  position: relative;
  z-index: 2;
  margin-top: 4.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec02__inner img {
  max-width: 34.4rem;
  max-height: 30rem;
}
.sec02__inner img:first-child {
  margin-right: 4rem;
}
.sec02__inner img:last-child {
  margin-left: 5rem;
}
@media only screen and (max-width: 991.98px) {
  .sec02 {
    padding: 5rem 0 2rem;
    background-color: #EFECEA;
  }
  .sec02::after {
    background-color: #FCF8F4;
    width: 100%;
    height: 44%;
    position: absolute;
    right: 0;
    bottom: 0;
    top: auto;
  }
  .sec02::before {
    border-width: 40px 50vw 0 50vw;
    border-color: #EFECEA transparent transparent transparent;
    position: absolute;
    top: 56%;
    left: 0;
    right: 0;
  }
  .sec02 .c-section__title::after, .sec02 .c-section__title::before {
    width: 4.8rem;
    height: 0.36rem;
  }
  .sec02 .c-section__title::after {
    right: -4.2rem;
  }
  .sec02 .c-section__title::before {
    left: -4.2rem;
  }
  .sec02__inner {
    flex-flow: column;
    margin: 0 2rem;
    padding-top: 4.4rem;
  }
  .sec02__inner img {
    width: 100%;
    height: 100%;
  }
  .sec02__inner img:first-child, .sec02__inner img:last-child {
    margin: 0 auto;
  }
  .sec02__inner img:last-child {
    margin-top: 5rem;
  }
}

.sec03 {
  padding: 7.6rem 0 6.4rem;
}
.sec03__list {
  position: relative;
  width: 58rem;
  margin: 6rem auto 0;
}
.sec03__list::before {
  display: block;
  content: "";
  width: 22rem;
  height: 22rem;
  background-size: cover;
  background-image: url("../img/sec03_image_01.svg");
  position: absolute;
  left: -12.4rem;
  top: -12.4rem;
}
.sec03__list li {
  border: solid 1px #333333;
  background-color: #ffffff;
  padding: 2.4rem 2.4rem 2.4rem 3rem;
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
  position: relative;
}
.sec03__list li::after, .sec03__list li::before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: #333333;
  position: absolute;
  bottom: -28px;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-radius: 24px;
  transform: rotate(144deg);
  transform-origin: calc(100% - 1px) 50%;
}
.sec03__list li::after {
  transform: rotate(36deg);
  left: -2px;
}
.sec03__list li:last-child {
  margin-bottom: 0;
}
.sec03__list li:last-child::after, .sec03__list li:last-child::before {
  display: none;
}
.sec03__list__nam {
  font-size: 5.6rem;
  font-family: "Rozha One";
  position: relative;
  white-space: nowrap;
  margin-right: 4rem;
}
.sec03__list__nam::after {
  display: block;
  content: "";
  width: 4.4rem;
  height: 0.1rem;
  background-color: #333333;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -3px;
}
.sec03__list__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.sec03__list__text {
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: 300;
}
@media only screen and (max-width: 991.98px) {
  .sec03 {
    padding: 5.8rem 0 4.8rem;
  }
  .sec03__list {
    margin: 5rem 2rem 0;
    width: auto;
  }
  .sec03__list::before {
    width: 15rem;
    height: 15rem;
    left: -8.4rem;
    top: -8.4rem;
  }
  .sec03__list li {
    padding: 2.7rem 2rem 2.4rem 2rem;
    margin-bottom: 5.5rem;
    flex-flow: column;
  }
  .sec03__list li::after, .sec03__list li::before {
    bottom: -35px;
  }
  .sec03__list__nam {
    margin: 0 0 3.4rem;
  }
  .sec03__list__title {
    text-align: center;
    margin-bottom: 2.6rem;
  }
  .sec03__list__text {
    font-size: 1.6rem;
    line-height: 1.7;
  }
}

.sec04 {
  padding: 6.7rem 0 8rem;
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3), rgb(217, 232, 237));
}
.sec04__inner {
  display: flex;
  margin: 5.8rem auto 0;
  max-width: 1030px;
}
.sec04__inner img {
  width: 52rem;
  margin-right: 4.8rem;
}
.sec04__inner__title {
  font-size: 3rem;
  line-height: 1.6;
  margin-top: 8rem;
}
.sec04__inner__title::after {
  display: block;
  content: "";
  width: 24px;
  height: 1px;
  background-color: #333333;
  margin: 2.4rem 0;
}
.sec04__inner__text {
  font-size: 1.6rem;
  line-height: 2;
}
@media only screen and (max-width: 991.98px) {
  .sec04 {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(217, 232, 237, 0.3), rgb(217, 232, 237));
    padding: 5.8rem 0 5rem;
  }
  .sec04__inner {
    margin: 3.6rem auto 0;
    flex-direction: column-reverse;
  }
  .sec04__inner img {
    width: 100%;
    max-width: 52rem;
    margin: 0;
    padding-right: 4rem;
  }
  .sec04__inner p {
    margin: 0 2rem;
  }
  .sec04__inner__title {
    font-size: 2.4rem;
    line-height: 1.5;
  }
  .sec04__inner__title::after {
    margin: 2rem 0;
  }
  .sec04__inner__text {
    font-size: 2rem;
    line-height: 1.8;
    margin-bottom: 2rem !important;
  }
}

.sec05 {
  padding: 5.6rem 0 8rem;
  background: linear-gradient(to bottom right, rgb(215, 221, 226), rgb(244, 236, 239));
}
.sec05__list {
  display: flex;
  justify-content: center;
  margin-top: 10rem;
}
.sec05__list li {
  background-color: #ffffff;
  max-width: 36rem;
  width: 40%;
  border-radius: 0.4rem;
  padding: 14.2rem 3.2rem 2.8rem;
  position: relative;
}
.sec05__list li:first-child {
  margin-right: 6rem;
}
.sec05__list li img {
  width: 20rem;
  height: 20rem;
  border-radius: 20rem;
  position: absolute;
  top: -14%;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.sec05__list__name {
  text-align: center;
  color: #819BA5;
  font-weight: 600;
  margin-bottom: 2rem;
}
.sec05__list__name p {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}
.sec05__list__name span {
  font-size: 1.2rem;
}
.sec05__list__title {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 0.8rem;
  font-weight: 600;
}
.sec05__list__text {
  line-height: 1.8;
}
@media only screen and (max-width: 991.98px) {
  .sec05 {
    padding: 5.6rem 0 4.6rem;
    background: linear-gradient(to bottom, rgb(215, 221, 226), rgb(244, 236, 239));
  }
  .sec05__list {
    flex-flow: column;
    margin-top: 13rem;
  }
  .sec05__list li {
    width: 100%;
    margin: 0 auto 11rem;
    padding: 15rem 2rem 1.8rem;
  }
  .sec05__list li:first-child {
    margin-right: auto;
  }
  .sec05__list li:last-child {
    margin-bottom: 0;
  }
  .sec05__list__title {
    font-size: 2.4rem;
    line-height: 1.4;
    margin-bottom: 1.2rem;
  }
  .sec05__list__text {
    font-size: 1.6rem;
  }
}

.sec06 {
  padding: 6.7rem 0 8.5rem;
  background-image: url("../img/sec06_image_01.jpg");
  background-size: cover;
  position: relative;
}
.sec06::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.15);
}
.sec06__inner {
  position: relative;
  z-index: 2;
}
.sec06__list {
  max-width: 64rem;
  margin: 4.2rem auto 0;
}
.sec06__list li {
  background-color: #ffffff;
  border-radius: 3px;
  padding: 1.6rem 3.2rem 2.8rem;
  margin-bottom: 3.2rem;
}
.sec06__list li:last-child {
  margin-bottom: 0;
}
.sec06__list li span {
  font-size: 3.2rem;
  white-space: nowrap;
  margin-right: 1.6rem;
  font-family: "Rozha One";
  font-weight: normal;
}
.sec06__list__title {
  font-weight: 600;
  font-size: 1.6rem;
  display: flex;
  align-items: baseline;
  line-height: 1.4;
  margin-bottom: 1.6rem;
}
.sec06__list__text {
  border-top: dotted 1px #555555;
  font-size: 1.4rem;
  display: flex;
  line-height: 1.7;
  padding-top: 1.8rem;
}
.sec06__list__text span {
  margin-top: -13px;
}
@media only screen and (max-width: 991.98px) {
  .sec06 {
    padding: 6.6rem 0 6.4rem;
    background-image: url("../img/sec06_image-sp_01.jpg");
  }
  .sec06__list {
    max-width: 100%;
    margin: 4.5rem 2rem 0;
  }
  .sec06__list li {
    padding: 1.6rem 2.6rem 2.8rem;
  }
}/*# sourceMappingURL=main.css.map */