@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/*--- setting ---*/
:root {
  --color-white: #ffffff;
  --color-black: #000000;
  --color-orange: #EA6000;
  --color-Dkorange: #EC6000;
  --color-navy: #22025F;
}

/*--- flexbox-control ---*/
.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-middle {
  align-items: center;
}

.flex-center {
  justify-content: center;
}

.flex-right {
  justify-content: flex-end;
}

.flex-between {
  justify-content: space-between;
}

.flex-column {
  flex-direction: column;
}

/*--- animation ---*/
.animation {
  transform: translate(0, 40px);
  opacity: 0;
  visibility: hidden;
  transition: all 400ms ease-in;
}
.animation.show {
  transform: translate(0, 0);
  opacity: 1;
  visibility: visible;
}

.delay200 {
  transition-delay: 200ms;
  -moz-transition-delay: 200ms;
  -webkit-transition-delay: 200ms;
  -o-transition-delay: 200ms;
  -ms-transition-delay: 200ms;
}

.delay400 {
  transition-delay: 400ms;
  -moz-transition-delay: 400ms;
  -webkit-transition-delay: 400ms;
  -o-transition-delay: 400ms;
  -ms-transition-delay: 400ms;
}

.delay800 {
  transition-delay: 800ms;
  -moz-transition-delay: 800ms;
  -webkit-transition-delay: 800ms;
  -o-transition-delay: 800ms;
  -ms-transition-delay: 800ms;
}

.delay1200 {
  transition-delay: 1200ms;
  -moz-transition-delay: 1200ms;
  -webkit-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
}

/*--- font size ---*/
.small_text {
  font-size: 1.2rem;
}

/*--- font weight ---*/
body .fw100 {
  font-weight: 100;
}

body .fw300 {
  font-weight: 300;
}

body .fw400 {
  font-weight: 400;
}

body .fw500 {
  font-weight: 500;
}

body .fw600 {
  font-weight: 600;
}

body .fw700 {
  font-weight: 700;
}

body .fw900 {
  font-weight: 900;
}

/*--- margin ---*/
.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.pb10 {
  padding-bottom: 10px;
}

.pb20 {
  padding-bottom: 20px;
}

.pb30 {
  padding-bottom: 30px;
}

/*--- base styles ---*/
html {
  font-size: 62.5%; /* base size 10px*/
}

body {
  position: relative;
  color: var(--color-black);
  background-color: var(--color-white);
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: normal;
  font-size: 1rem; /* 10px */
  line-height: 2;
  font-weight: 400;
  overflow-x: hidden;
}

a {
  color: var(--color-black);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

a:hover {
  text-decoration: none;
  opacity: 0.7;
  transition: 1s;
}

body, th, td, li, dt, dd, input, select, a, p, div, span, textarea, h1, h2, h3, h4, h5, h6, label {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: normal;
  color: var(--color-black);
}

button, input, input[type=button], input[type=reset], input[type=submit] {
  touch-action: manipulation;
  transition: border 0.15s linear, color 0.15s linear, background-color 0.15s linear;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: normal;
}

img {
  vertical-align: bottom;
}

/*--- pc / sp ---*/
.pc {
  display: block;
}

.sp {
  display: none;
}

@media (max-width: 768px) {
  img.width_full {
    width: 100%;
    height: auto;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
/*--- site style ---*/
/* header */
header {
position: static !important;
  width: 100%;
}
header .header_inner {
  background: #fff;
  width: 100%;
  height: 140px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header_inner h1 {
  margin-left: 75px;
}
header .header_inner .btn {
  position: relative;
}
header .header_inner .btn a {
  position: relative;
  margin-right: 85px;
  padding: 13px 25px 10px 20px;
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 2px;
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
  color: #fff;
  background: #F07313;
  background: linear-gradient(270deg, rgb(240, 115, 19) 0%, rgb(245, 157, 93) 100%);
  border-radius: 100px;
}
header .header_inner .btn a span {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 8px;
  color: var(--color-Dkorange);
  border: solid #EB6000 1px;
  background: #fff;
  padding: 1px 6px 4px 16px;
  border-radius: 40px;
  margin-right: 20px;
}
header .header_inner .btn a::after {
  content: url("../../img/arw_header_btn.png");
  width: 20px;
  display: inline-block;
  margin-left: 15px;
  position: relative;
  top: 3px;
}

@media screen and (max-width: 768px) {
  header .header_inner {
    min-height: 60px;
    padding: 15px 5%;
    height: auto;
    justify-content: space-between;
  }
  header .header_inner h1 {
    width: 40%;
    height: auto;
    margin: 0;
  }
  header .header_inner .btn a {
    margin-right: 0;
    padding: 0px 18px 10px 12px;
    font-size: 1.4rem;
    letter-spacing: 1px;
  }
  header .header_inner .btn a::after {
    width: 10px;
    height: 10px;
    margin-left: 0;
    top: 5px;
  }
}
/* footer */
footer {
  padding-top: 100px;
  padding-bottom: 50px;
  text-align: center;
  line-height: 1.6;
}
footer #f_navi {
  width: 410px;
  margin: 0 auto 10px;
  display: flex;
  justify-content: space-between;
}
footer #f_navi a {
  display: block;
  color: var(--color-black);
  font-size: 2rem;
  font-weight: 500;
  transition: all 0.3s;
}
footer .copyright {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  footer {
    padding: 60px 0 30px;
  }
  footer #f_navi {
    width: 80%;
    margin: 0 auto 10px;
    flex-wrap: wrap;
  }
  footer #f_navi a {
    font-size: 1.4rem;
    font-weight: 400;
  }
  footer .copyright {
    margin-top: 30px;
    font-size: 1.1rem;
    letter-spacing: 0;
  }
}
/* common misc */
.btn {
  position: relative;
}
.btn a {
  position: relative;
  display: inline-block;
  padding: 13px 25px 10px 15px;
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 2px;
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
  color: #fff;
  background: #F07313;
  background: linear-gradient(270deg, rgb(240, 115, 19) 0%, rgb(245, 157, 93) 100%);
  border-radius: 100px;
  line-height: 1;
}
.btn a span {
  position: relative;
  display: inline-block;
  top: -2px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 8px;
  color: var(--color-Dkorange);
  border: solid #EB6000 1px;
  background: #fff;
  padding: 3px 6px 5px 16px;
  border-radius: 40px;
  margin-right: 20px;
}
.btn a::after {
  content: url("../../img/arw_header_btn.png");
  margin-left: 15px;
  position: relative;
  top: 3px;
}

.btn_area {
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.btn_area .btn_large {
  position: relative;
  margin: 0 auto;
}
.btn_area .btn_large a {
  width: 720px;
  position: relative;
  display: inline-block;
  padding: 35px 0;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 2px;
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
  color: #fff;
  background: #F07313;
  background: linear-gradient(270deg, rgb(240, 115, 19) 0%, rgb(245, 157, 93) 100%);
  border-radius: 100px;
  line-height: 1;
}
.btn_area .btn_large a span {
  position: relative;
  display: inline-block;
  top: -2px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 8px;
  color: var(--color-Dkorange);
  border: solid #EB6000 1px;
  background: #fff;
  padding: 3px 6px 5px 16px;
  border-radius: 40px;
  margin-right: 20px;
}
.btn_area .btn_large a::after {
  content: url("../../img/arw_header_btn.png");
  margin-left: 15px;
  position: relative;
  top: 3px;
}
.btn_area p {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 5px;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .btn_area {
    max-width: 90%;
    width: 90%;
  }
  .btn_area .btn {
    position: relative;
    margin-top: 15px;
  }
  .btn_area .btn a {
    padding: 10px 7px;
    font-size: 1.5rem;
    letter-spacing: 0;
  }
  .btn_area .btn a span {
    font-size: 1.4rem;
    letter-spacing: 2px;
    padding: 3px 6px 5px 10px;
    margin-right: 5px;
  }
  .btn_area .btn a::after {
    margin-left: 5px;
  }
  .btn_area .btn_large a {
    width: 100%;
    font-size: 1.4rem;
    padding: 10px 5px;
    letter-spacing: 0;
  }
  .btn_area .btn_large a span {
    margin-right: 8px;
    font-size: 1.2rem;
    letter-spacing: 2px;
    padding: 5px;
  }
  .btn_area p {
    font-size: 2rem;
    letter-spacing: 3px;
    margin-top: 10px;
  }
}
.reverse {
  flex-direction: row-reverse;
}

/* feature */
.feature {
  padding-top: 140px;
}
.feature .inner_feature {
  min-height: 563px;
  background-image: url("../../img/feature_bg.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}
.feature .inner_feature .txt_box {
  max-width: 460px;
  width: 100%;
  margin: 0 auto;
}
.feature .inner_feature .txt_box p {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 2px;
}
.feature .inner_feature .txt_box .or_bg {
  background: var(--color-Dkorange);
  color: var(--color-white);
  font-size: 4.5rem;
  line-height: 1;
  text-align: center;
  margin: 15px 0 10px;
  padding: 10px 0 15px;
}
.feature .inner_feature .txt_box .or_bg span {
  font-size: 6.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--color-white);
  display: inline-block;
}
.feature .inner_feature .txt_box .bottom {
  font-size: 4rem;
  letter-spacing: 5px;
  margin-bottom: 15px;
}

.feature_under {
  background-color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature_under .feature_under_inner {
  max-width: 1140px;
  width: 100%;
  padding: 35px 0 30px;
}
.feature_under .feature_under_inner ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.feature_under .feature_under_inner ul li {
  color: var(--color-white);
  font-size: 2.3rem;
  font-weight: 300;
  line-height: 1;
}
.feature_under .feature_under_inner ul li p {
  color: var(--color-white);
}
.feature_under .feature_under_inner ul li span.small {
  font-size: 1.4rem;
  color: var(--color-white);
  line-height: 1;
}
.feature_under .feature_under_inner ul li span.large {
  font-size: 4.2rem;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1;
}
.feature_under .feature_under_inner ul li.mensetsu {
  line-height: 1.2;
  font-size: 3rem;
}
.feature_under .feature_under_inner ul.notice {
  justify-content: center;
  margin-top: 25px;
}
.feature_under .feature_under_inner ul.notice li {
  font-size: 1.4rem;
  font-weight: 400;
  margin: 0 0.5rem;
}

@media (max-width: 768px) {
  .feature {
    padding-top: 65px;
  }
  .feature img {
    width: 90%;
    height: auto;
    margin: 0 auto 20px;
  }
  .feature .inner_feature {
    background-image: url("../../img/feature_bg_sp.png");
    background-size: cover;
    width: 100%;
    min-height: 270px;
    padding-bottom: 100px;
  }
  .feature_under {
    position: relative;
    display: none;
    display: block;
    background: none;
    margin-top: -120px;
  }
  .feature_under .feature_under_inner {
    padding: 0;
  }
  .feature_under .feature_under_inner > ul:first-child {
    display: flex;
    justify-content: space-around;
  }
  .feature_under .feature_under_inner > ul:first-child li {
    width: 28vw;
    height: 28vw;
    text-align: center;
    vertical-align: middle;
    border-radius: 50%;
    background-color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .feature_under .feature_under_inner > ul:first-child li p {
    font-size: 10px;
    width: 80%;
    color: var(--color-navy);
    font-size: 1.4rem;
    line-height: 1.4;
  }
  .feature_under .feature_under_inner > ul:first-child li p span.large {
    font-size: 2rem;
    font-weight: 900;
  }
  .feature_under .feature_under_inner > ul:first-child li p span.small {
    display: inline-block;
    font-size: 1.2rem;
    padding-top: 3px;
  }
  .feature_under .feature_under_inner > ul:first-child li span {
    color: var(--color-navy);
  }
  .feature_under .feature_under_inner > ul:first-child li.mensetsu p {
    font-size: 2rem;
  }
  .feature_under .feature_under_inner > ul:first-child li.pc {
    display: none;
  }
  .feature_under .feature_under_inner ul.notice {
    display: none;
  }
}
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/* main */
main {
  margin: 0 auto;
}

.adlp-logo {
  animation: infinity-scroll-left 35s infinite linear 0.5s both;
  width: min(212.5925925926vw, 2859px);
}

.adlp-logo__wrapper {
  display: flex;
  align-items: center;
  width: min(425.1851851852vw, 5718px);
  padding: 20px 0;
  margin-top: 10px;
}

.fv__logos {
  width: min(282.962962963vw, 5718px);
}

.fv__logos img {
  width: min(141.4814814815vw, 2859px);
  padding: 0 30px;
}

#sec01 {
  overflow: hidden;
  text-align: center;
  color: var(--color-navy);
  padding-bottom: 100px;
}
#sec01 .feature_sp {
  display: none;
}
#sec01 .sec01_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 700px;
  width: 100%;
  margin: 0 auto 20px;
}
#sec01 .sec01_inner p, #sec01 .sec01_inner span {
  color: var(--color-navy);
}
#sec01 .sec01_inner p {
  font-size: 2.5rem;
  text-align: right;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 3px;
}
#sec01 .sec01_inner p span.large01 {
  font-size: 3.5rem;
  font-weight: 600;
}
#sec01 .sec01_inner p.no1 {
  font-size: 5rem;
  font-weight: 500;
  letter-spacing: 8px;
  line-height: 1;
}
#sec01 .sec01_inner p.no1 span.large02 {
  font-size: 10rem;
  font-weight: 500;
}
#sec01 .sec01_inner p.no1 span.large03 {
  font-size: 8rem;
  font-weight: 500;
  letter-spacing: 7px;
}
#sec01 .sec01_inner p.note {
  font-size: 0.9rem;
  font-weight: 400;
  margin-top: 10px;
  letter-spacing: 0;
}
#sec01 p.content_txt {
  font-size: 1.8rem;
  color: var(--color-navy);
  font-weight: 400;
}

@media (max-width: 768px) {
  .adlp-logo__wrapper {
    width: 612.2666666667vw;
  }
  .adlp-logo {
    width: 306.1333333333vw;
  }
  .fv__logo {
    position: absolute;
    top: 8vw;
    left: 50%;
    translate: -50% 0;
    width: 84vw;
  }
  .fv__logos {
    width: 538.6666666667vw;
  }
  .fv__logos img {
    width: 269.3333333333vw;
    padding: 0 15px;
  }
  #sec01 {
    padding: 0 0 30px;
  }
  #sec01 .feature_sp {
    display: block;
    width: 90%;
    margin: 0 auto 40px;
  }
  #sec01 .feature_sp .txt_box p {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 1px;
    text-align: left;
  }
  #sec01 .feature_sp .txt_box .or_bg {
    background: var(--color-Dkorange);
    color: #fff;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    margin: 10px 0 0;
    padding: 8px 0 15px;
  }
  #sec01 .feature_sp .txt_box .or_bg span {
    font-size: 3.5rem;
    color: #fff;
    font-weight: 600;
  }
  #sec01 .feature_sp .txt_box .bottom {
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: 3px;
    margin-bottom: 10px;
  }
  #sec01 .feature_sp ul.notice {
    margin-top: 10px;
  }
  #sec01 .feature_sp ul.notice li {
    text-align: left;
  }
  #sec01 .feature_sp .btn_area {
    width: 100%;
    max-width: 100%;
    margin-bottom: 15px;
  }
  #sec01 .feature_sp .btn_area .btn {
    margin-top: 0;
  }
  #sec01 .feature_sp .btn_area .btn a {
    width: 100%;
    max-width: 100%;
    font-size: 1.7rem;
    letter-spacing: 3px;
  }
  #sec01 .sec01_inner {
    display: block;
    max-width: 90%;
    width: 100%;
    margin: 20px auto;
  }
  #sec01 .sec01_inner img {
    width: 45%;
    height: auto;
    margin-bottom: 20px;
  }
  #sec01 .sec01_inner img.no1 {
    width: auto;
    height: auto;
    margin-bottom: 0;
  }
  #sec01 .sec01_inner p {
    font-size: 2rem;
    text-align: center;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1.2;
  }
  #sec01 .sec01_inner p.no1 {
    font-size: 3rem;
    letter-spacing: 2px;
  }
  #sec01 .sec01_inner p.no1 span.large02 {
    font-size: 4rem;
    font-weight: 500;
    letter-spacing: 2px;
  }
  #sec01 .sec01_inner p.no1 span.large03 {
    font-size: 4rem;
    font-weight: 500;
    letter-spacing: 2px;
  }
  #sec01 .sec01_inner p.note {
    font-size: 1.1rem;
    line-height: 1.4;
    letter-spacing: 1px;
    text-align: left;
  }
  #sec01 p.content_txt {
    font-size: 1.5rem;
    line-height: 1.6;
    max-width: 90%;
    width: 90%;
    margin: 20px auto 0;
    letter-spacing: 0;
  }
}
#sec02 {
  position: relative;
}
#sec02 .sec02_inner {
  background-color: #EEEEEE;
  position: relative;
  z-index: 10;
  padding-top: 80px;
}
#sec02 .sec02_inner p.copy {
  font-size: 3rem;
  text-align: center;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 2px;
}
#sec02 .sec02_inner p.copy span {
  display: inline-block;
  padding: 10px 15px;
  margin: 0 10px;
  background: var(--color-Dkorange);
  color: var(--color-white);
  font-weight: 500;
  font-size: 2.8rem;
  border-radius: 5px;
}
#sec02 .sec02_inner h2 {
  text-align: center;
  font-size: 4.5rem;
  font-weight: 600;
  line-height: 1;
  margin: 20px auto 45px;
}
#sec02 .sec02_inner h2 span {
  color: var(--color-Dkorange);
  font-weight: 600;
}
#sec02 .sec02_inner .sec02_card {
  border-radius: 20px;
  background-color: var(--color-white);
  padding-bottom: 55px;
  max-width: 1050px;
  width: 100%;
  margin: 0 auto 60px;
}
#sec02 .sec02_inner .sec02_card h3 {
  background-color: #EE7624;
  color: var(--color-white);
  border-radius: 20px 20px 0 0;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 500;
  padding: 30px 0;
  letter-spacing: 1px;
}
#sec02 .sec02_inner .sec02_card ul.list {
  max-width: 915px;
  width: 90%;
  margin: 35px auto;
}
#sec02 .sec02_inner .sec02_card ul.list li {
  font-size: 2.8rem;
  font-weight: 600;
  margin-left: 15px;
  line-height: 1.4;
  display: flex;
  position: relative;
  align-items: center;
  padding-left: 25px;
  margin-bottom: 5px;
}
#sec02 .sec02_inner .sec02_card ul.list li:before {
  content: url("../../img/icon_check.png");
  margin-right: 5px;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 1px;
}
#sec02 .sec02_inner .sec02_card .point {
  max-width: 915px;
  width: 100%;
  margin: 0 auto;
}
#sec02 .sec02_inner .sec02_card .point h4 {
  background-color: var(--color-Dkorange);
  border-radius: 5px;
  text-align: center;
  font-size: 2.3rem;
  line-height: 1.2;
  font-weight: 400;
  color: var(--color-white);
  padding: 10px 0;
  margin-bottom: 55px;
}
#sec02 .sec02_inner .sec02_card .point .point01_inner01 {
  position: relative;
  display: flex;
  justify-content: space-between;
  max-width: 870px;
  width: 100%;
  margin: 0 auto;
}
#sec02 .sec02_inner .sec02_card .point .point01_inner01 img {
  position: relative;
  margin-top: -115px;
}
#sec02 .sec02_inner .sec02_card .point .point01_inner02 ul.fukidashi {
  width: 700px;
  margin: min(3.7037037037vw, 40px) auto 0;
  display: flex;
  flex-direction: column;
  gap: min(2.2222222222vw, 30px);
}
#sec02 .sec02_inner .sec02_card .point .point01_inner02 ul.fukidashi li {
  display: flex;
  gap: 40px;
  align-items: center;
  font-weight: 300;
}
#sec02 .sec02_inner .sec02_card .point .point01_inner02 ul.fukidashi li p {
  background: #FFDD25;
  border-radius: min(1.8518518519vw, 20px);
  position: relative;
  padding: min(2.2222222222vw, 24px);
  font-size: 1.8rem;
  padding: 15px 10px 15px 15px;
  font-weight: 400;
}
#sec02 .sec02_inner .sec02_card .point .point01_inner02 ul.fukidashi li strong {
  font-weight: 600;
  font-size: 2.1rem;
}
#sec02 .sec02_inner .sec02_card .point .point01_inner02 ul.fukidashi li p::before {
  display: inline-block;
  width: min(2.4074074074vw, 26px);
  height: min(2.4074074074vw, 26px);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  background-image: url("../../img/fukidashi_02.png");
  position: absolute;
  right: max(-2.4074074074vw, -25px);
  transform: scale(-1, 1);
}
#sec02 .sec02_inner .sec02_card .point .point01_inner02 ul.fukidashi li img {
  width: min(12.962962963vw, 140px);
}
#sec02 .sec02_inner .sec02_card .point .point01_inner02 ul.fukidashi li:nth-of-type(even) p::before {
  left: max(-2.4074074074vw, -25px);
  right: auto;
  transform: scale(1, 1);
}
#sec02 .sec02_inner .sec02_card .point .point01_inner03 {
  display: flex;
  max-width: 875px;
  width: 100%;
  justify-content: space-around;
  align-items: center;
  padding-top: 40px;
}
#sec02 .sec02_inner .sec02_card .point .point01_inner03 .inner_l {
  flex-basis: 60%;
}
#sec02 .sec02_inner .sec02_card .point .point01_inner03 .inner_l .orange {
  font-size: 4rem;
}
#sec02 .sec02_inner .sec02_card .point .point01_inner03 .inner_l img {
  margin-top: 40px;
}
#sec02 .sec02_inner .sec02_card .point p {
  font-size: 3.5rem;
  line-height: 1.6;
  font-weight: 600;
  letter-spacing: 1px;
}
#sec02 .sec02_inner .sec02_card .point p .orange {
  color: #EE7624;
  font-weight: 600;
}
#sec02 .sec02_inner .sec02_card .point p .small {
  font-size: 2.8rem;
  font-weight: 600;
}
#sec02 .sec02_bottom {
  position: relative;
}
#sec02 .sec02_bottom p {
  position: relative;
  padding-top: 60px;
  font-size: 5rem;
  font-weight: 600;
  text-align: center;
  color: var(--color-Dkorange);
  line-height: 1;
  margin-bottom: -60px;
}
#sec02 .sec02_bottom p::after {
  content: url("../../img/sankaku_under.png");
  display: block;
  margin-top: 20px;
}

#sec02::after {
  content: "";
  background-image: url(../../img/sec02_bottom_bg.svg);
  background-position: center top;
  background-size: cover;
  display: block;
  height: 500px;
  width: 100%;
  position: relative;
  margin-top: -420px;
}

@media (max-width: 768px) {
  #sec02 .sec02_inner {
    margin: 0 auto;
    padding: 30px 0;
    text-align: center;
  }
  #sec02 .sec02_inner p.copy {
    width: 90%;
    margin: 0 auto;
    line-height: 1.2;
    letter-spacing: 1px;
    font-size: 2rem;
  }
  #sec02 .sec02_inner p.copy span {
    font-size: 1.8rem;
    padding: 10px 13px 10px 15p;
    margin: 0 5px;
  }
  #sec02 .sec02_inner h2 {
    font-size: 2.5rem;
    margin: 10px auto 20px;
  }
  #sec02 .sec02_inner .sec02_card {
    max-width: 90%;
    width: 90%;
    padding-bottom: 30px;
    margin: 0 auto 30px;
  }
  #sec02 .sec02_inner .sec02_card h3 {
    font-size: 1.8rem;
    padding: 20px 0;
  }
  #sec02 .sec02_inner .sec02_card ul.list {
    margin: 20px auto;
  }
  #sec02 .sec02_inner .sec02_card ul.list li {
    text-align: left;
    font-size: 1.6rem;
    margin-bottom: 8px;
  }
  #sec02 .sec02_inner .sec02_card ul.list li:before {
    width: 10px;
    height: auto;
  }
  #sec02 .sec02_inner .sec02_card .point {
    width: 90%;
  }
  #sec02 .sec02_inner .sec02_card .point h4 {
    font-size: 1.8em;
    margin-bottom: 15px;
  }
  #sec02 .sec02_inner .sec02_card .point .point01_inner01 {
    display: block;
    text-align: center;
  }
  #sec02 .sec02_inner .sec02_card .point .point01_inner01 img {
    margin: 20px auto 0;
    text-align: center;
    width: 50%;
    height: auto;
  }
  #sec02 .sec02_inner .sec02_card .point .point01_inner02 ul.fukidashi {
    width: 100%;
  }
  #sec02 .sec02_inner .sec02_card .point .point01_inner02 ul.fukidashi li {
    display: flex;
    gap: 24px;
  }
  #sec02 .sec02_inner .sec02_card .point .point01_inner02 ul.fukidashi li p {
    font-size: 1.6rem;
    font-weight: 400;
  }
  #sec02 .sec02_inner .sec02_card .point .point01_inner02 ul.fukidashi li strong {
    font-size: 1.9rem;
  }
  #sec02 .sec02_inner .sec02_card .point .point01_inner02 ul.fukidashi li img {
    width: 18.6666666667vw;
    height: 18.6666666667vw;
  }
  #sec02 .sec02_inner .sec02_card .point .point01_inner03 {
    display: block;
    padding-top: 20px;
    text-align: center;
  }
  #sec02 .sec02_inner .sec02_card .point .point01_inner03 .inner_l .orange {
    font-size: 2rem;
  }
  #sec02 .sec02_inner .sec02_card .point .point01_inner03 img {
    width: 70%;
  }
  #sec02 .sec02_inner .sec02_card .point .point01_inner03 img.img02 {
    width: 70%;
    height: auto;
    margin-top: 10px;
  }
  #sec02 .sec02_inner .sec02_card .point .point01_inner03 p {
    font-size: 1.4rem;
    font-weight: 400;
    text-align: center;
    margin-top: 10px;
  }
  #sec02 .sec02_inner .sec02_card .point p {
    text-align: left;
    line-height: 1.4;
    font-size: 2rem;
  }
  #sec02 .sec02_inner .sec02_card .point p .small {
    font-size: 2.3rem;
  }
  #sec02 .sec02_bottom p {
    padding-top: 0;
    margin: 0;
    font-size: 3rem;
  }
  #sec02::after {
    background-image: url(../../img/sec02_bottom_bg_sp.svg);
    margin-top: -470px;
  }
}
#sec03 {
  max-width: 1130px;
  width: 100%;
  margin: 50px auto 100px;
}
#sec03 h2 {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans";
  text-align: center;
  font-size: 6.5rem;
  margin-bottom: 50px;
  font-weight: 600;
  color: var(--color-Dkorange);
  line-height: 1.2;
  letter-spacing: 5px;
}
#sec03 h2 span {
  font-size: 4.5rem;
  font-weight: 600;
}
#sec03 .sec03_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
}
#sec03 .sec03_inner p {
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.6;
  margin-top: -20px;
}
#sec03 .sec03_inner p span.orange {
  color: var(--color-orange);
  font-weight: 600;
}
#sec03 .bottom_txt {
  margin-top: 100px;
  text-align: center;
  line-height: 1.4;
  font-size: 4.5rem;
  font-weight: 600;
  letter-spacing: 1px;
}
#sec03 .bottom_txt span.orange {
  font-weight: 600;
  color: #EE7624;
  font-size: 6rem;
}

@media (max-width: 768px) {
  #sec03 {
    max-width: 90%;
    width: 90%;
    margin: 30px auto;
  }
  #sec03 h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
  }
  #sec03 h2 span {
    font-size: 2rem;
    letter-spacing: 1px;
  }
  #sec03 .sec03_inner {
    display: block;
    margin-top: 20px;
  }
  #sec03 .sec03_inner p {
    margin-top: 15px;
    font-size: 2rem;
    line-height: 1.4;
    text-align: center;
  }
  #sec03 .bottom_txt {
    margin-top: 40px;
    line-height: 1.4;
    font-size: 2.2rem;
  }
  #sec03 .bottom_txt span.orange {
    font-size: 2.5rem;
  }
}
#sec08 {
  padding: 60px 0 115px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
#sec08 .bl_bg {
  background-color: #51BAD8;
  padding: 15px;
  width: 100%;
}
#sec08 h2 {
  font-size: 5rem;
  color: #fff;
  font-weight: 600;
  text-align: center;
  letter-spacing: 2px;
  line-height: 1.4;
}
#sec08 h2 span.large {
  font-size: 7.5rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: 4px;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans";
}
#sec08 p.copy {
  font-size: 3.5rem;
  color: #fff;
  text-align: center;
  font-weight: 600;
  letter-spacing: 3px;
}
#sec08 ul {
  display: flex;
  max-width: 1200px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 55px;
  align-items: center;
}
#sec08 ul li {
  flex-basis: 33%;
  margin-bottom: 65px;
  text-align: center;
}
#sec08 p.bottom {
  background-color: #51BAD8;
  padding: 15px 0;
  width: 100%;
  text-align: center;
  color: var(--color-white);
  font-size: 2.1rem;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  #sec08 {
    padding: 30px 0;
    margin: 0 auto;
  }
  #sec08 h2 {
    font-size: 2rem;
    letter-spacing: 1px;
  }
  #sec08 h2 span.large {
    font-size: 3rem;
  }
  #sec08 p.copy {
    font-size: 2rem;
    letter-spacing: 1px;
    line-height: 1.5;
    font-weight: 500;
  }
  #sec08 ul {
    display: flex;
    max-width: 90%;
    width: 90%;
    margin: 30px auto 10px;
  }
  #sec08 ul li {
    flex-basis: 30%;
    margin-bottom: 20px;
  }
  #sec08 p.bottom {
    font-size: 1.4rem;
    line-height: 1.1;
    font-weight: 300;
    padding: 10px;
  }
}
#sec04 {
  overflow: hidden;
  background-color: #EEECF3;
  padding: 70px 0 100px;
}
#sec04 .tit {
  max-width: 485px;
  margin: 0 auto 50px;
  text-align: center;
  padding: 8px 25px 13px 15px;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 2px;
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
  color: #fff;
  background: #F07313;
  background: linear-gradient(270deg, rgb(240, 115, 19) 0%, rgb(245, 157, 93) 100%);
  border-radius: 100px;
}
#sec04 .sec03__wrap {
  width: min(80.5555555556vw, 870px);
  margin: 0 auto;
}
#sec04 .sec03__sli-slider-label {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 160%;
  letter-spacing: min(0.0925925926vw, 1.6px);
  background: #EE7624;
  padding: 5px 26px;
  display: inline-block;
  position: relative;
}
#sec04 .sec03__sli-slider-label span {
  font-size: 2.4rem;
  font-weight: 400;
  color: #fff;
}
#sec04 .sec03__sli-slider-item {
  background-color: #fff;
  padding: 0 70px 48px 70px;
  width: 775px;
}
#sec04 .sec03__sli-slider-head {
  font-size: min(2.4074074074vw, 26px);
  font-weight: 700;
  line-height: 160%;
  letter-spacing: min(0.0925925926vw, 1.04px);
  margin-top: min(1.4814814815vw, 16px);
}
#sec04 table.sec03__sli-slider-table {
  border-spacing: 16px;
  border-collapse: separate;
}
#sec04 .sec03__sli-slider-table th span {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: min(0.0925925926vw, 1.6px);
  border: 1px solid var(--color-black);
  border-radius: 5px;
  padding: 4px 15px;
  vertical-align: middle;
}
#sec04 .sec03__sli-slider-table td {
  padding-left: min(2.2222222222vw, 24px);
  font-size: min(2.4074074074vw, 26px);
  font-weight: 600;
  line-height: 140%;
  letter-spacing: min(0.0925925926vw, 1.04px);
  vertical-align: middle;
}
#sec04 .sec03__sli-slider-sub-head {
  color: var(--color-Dkorange);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: min(0.0925925926vw, 1.2px);
  display: flex;
  align-items: center;
  gap: min(2.2222222222vw, 24px);
  overflow: hidden;
  white-space: nowrap;
  margin: 20px 0;
}
#sec04 .sec03__sli-slider-sub-head::after {
  background-color: var(--color-Dkorange);
  content: "";
  height: min(0.0925925926vw, 1px);
  width: 100%;
}
#sec04 .sec03__sli-slider-list li {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: min(0.0925925926vw, 1.04px);
  padding-left: 30px;
  position: relative;
  display: flex;
  align-items: center;
}
#sec04 .sec03__sli-slider-list li span {
  font-size: min(1.1111111111vw, 12px);
  font-weight: 400;
  line-height: 150%;
  letter-spacing: min(0vw, 0.48px);
}
#sec04 .sec03__sli-slider-list li::before {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  background-image: url("../../img/icon_check.png");
  position: absolute;
  top: 10px;
  left: 0%;
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  #sec04 {
    padding: 30px 0 40px;
  }
  #sec04 .sec03__sli {
    width: 90%;
    margin: 0 auto;
  }
  #sec04 .sec03__sli .tit {
    margin: 0 auto 30px;
    padding: 8px 20px 10px 15px;
  }
  #sec04 .sec03__wrap {
    width: 89.3333333333vw;
  }
  #sec04 .sec03__sli-slider {
    margin-top: 8.5333333333vw;
  }
  #sec04 .sec03__sli-slider-label {
    font-size: 3.4666666667vw;
    letter-spacing: 0.2666666667vw;
    padding: 0.5333333333vw 2.1333333333vw;
  }
  #sec04 .sec03__sli-slider-item {
    box-shadow: 0 1.6vw 4vw 0 rgba(0, 0, 0, 0.12);
    padding: 0 6vw 6vw;
    max-width: 100%;
  }
  #sec04 .sec03__sli-slider-head {
    font-size: 4.8vw;
    letter-spacing: 0.1333333333vw;
    margin-top: 2.6666666667vw;
  }
  #sec04 .sec03__sli-slider-sub-head {
    font-size: 4.2666666667vw;
    letter-spacing: 0.1333333333vw;
    gap: 3.2vw;
  }
  #sec04 .sec03__sli-slider-sub-head::before, #sec04 .sec03__sli-slider-sub-head::after {
    height: 0.1333333333vw;
  }
  #sec04 table.sec03__sli-slider-table {
    border-spacing: 0 2.1333333333vw;
  }
  #sec04 .sec03__sli-slider-table th {
    font-size: 3.4666666667vw;
    letter-spacing: 0.2666666667vw;
    padding: 0.5333333333vw 3.2vw;
  }
  #sec04 .sec03__sli-slider-table th span {
    font-size: 1.4rem;
    padding: 4px 7px;
  }
  #sec04 .sec03__sli-slider-table td {
    font-size: 4.2666666667vw;
    letter-spacing: 0.1333333333vw;
  }
  #sec04 .sec03__sli-slider-list {
    margin-top: 3.6vw;
    gap: 2.9333333333vw;
  }
  #sec04 .sec03__sli-slider-list li {
    font-size: 3.4666666667vw;
    letter-spacing: 0.1333333333vw;
    padding-left: 7.4666666667vw;
  }
  #sec04 .sec03__sli-slider-list li span {
    font-size: 2.4vw;
    letter-spacing: 0vw;
  }
  #sec04 .sec03__sli-slider-list li::before {
    width: 5.3333333333vw;
    height: 5.3333333333vw;
  }
}
#sec05 {
  background: var(--color-navy);
  padding: 115px 0;
}
#sec05 h2 {
  color: var(--color-white);
  font-size: 5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 45px;
  line-height: 1;
}
#sec05 .sec05_inner {
  background-color: var(--color-white);
  max-width: 840px;
  margin: 0 auto 60px;
  padding: 45px 55px 50px;
  text-align: center;
  border-radius: 10px;
}
#sec05 .sec05_inner h3 {
  text-align: left;
  font-size: 4.2rem;
  line-height: 1;
  font-weight: 300;
  margin-bottom: 25px;
}
#sec05 .sec05_inner h3 span.orange {
  color: #F07313;
}

@media (max-width: 768px) {
  #sec05 {
    padding: 30px 0 10px;
  }
  #sec05 h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  #sec05 .sec05_inner {
    max-width: 90%;
    width: 90%;
    margin: 0 auto 30px;
    padding: 20px;
  }
  #sec05 .sec05_inner h3 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 18px;
  }
}
#sec06 {
  padding-top: 130px;
}
#sec06 h2 {
  font-size: 5rem;
  font-weight: 600;
  color: var(--color-navy);
  text-align: center;
  letter-spacing: 2px;
}
#sec06 h2 .h2_inner {
  display: inline-block;
  font-weight: 600;
  color: var(--color-navy);
  letter-spacing: 1px;
}
#sec06 h2 .large {
  font-weight: 600;
  color: var(--color-navy);
}
#sec06 .sec06_card {
  max-width: 975px;
  width: 100%;
  margin: 100px auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
#sec06 .sec06_card .sec06_card_txt {
  width: 395px;
}
#sec06 .sec06_card .sec06_card_txt .point {
  color: var(--color-navy);
  font-size: 3rem;
  font-weight: 600;
}
#sec06 .sec06_card .sec06_card_txt .point span.large {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans";
  font-size: 4.5rem;
  color: var(--color-navy);
  font-weight: 600;
}
#sec06 .sec06_card .sec06_card_txt .copy {
  font-size: 3.5rem;
  line-height: 1.4;
  font-weight: 400;
  margin-bottom: 30px;
}
#sec06 .sec06_card .sec06_card_txt p {
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  #sec06 {
    width: 90%;
    margin: 0 auto 30px;
    padding-top: 30px;
  }
  #sec06 h2 {
    background: #F49A58;
    color: var(--color-navy);
    padding: 15px;
    border-radius: 10px;
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 0;
    position: relative;
    display: inline-block;
    margin: 0 auto 20px;
    width: 100%;
  }
  #sec06 h2 .h2_inner {
    font-size: 3.2rem;
    font-weight: 600;
    color: var(--color-navy);
    letter-spacing: 1px;
  }
  #sec06 h2 .large {
    font-size: 5rem;
    font-weight: 600;
    color: var(--color-navy);
  }
  #sec06 h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    border-style: solid;
    border-width: 20px 12px 0 12px;
    border-color: #F49A58 transparent transparent;
    translate: -50% 100%;
  }
  #sec06 .sec06_card {
    display: block;
    margin: 20px auto 40px;
  }
  #sec06 .sec06_card .sec06_card_txt {
    width: 100%;
    margin-bottom: 15px;
  }
  #sec06 .sec06_card .sec06_card_txt .point {
    font-size: 2.9rem;
    font-weight: 600;
  }
  #sec06 .sec06_card .sec06_card_txt .point span.large {
    font-size: 4.4rem;
    font-weight: 500;
  }
  #sec06 .sec06_card .sec06_card_txt .copy {
    font-size: 3.3rem;
    letter-spacing: 0px;
    margin-bottom: 10px;
  }
  #sec06 .sec06_card .sec06_card_txt p {
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 1.5px;
  }
}
#sec07 {
  margin-top: 100px;
  padding: 120px 0 150px;
  background-color: #EEECF3;
}
#sec07 h2 {
  font-size: 5rem;
  font-weight: 600;
  text-align: center;
  color: #23015F;
  margin-bottom: 80px;
}
#sec07 .sec07_inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  border-top: 1px solid #9F9A9A;
  display: flex;
  align-items: center;
  padding: 50px 0 50px 150px;
}
#sec07 .sec07_inner .txt {
  margin-left: 55px;
}
#sec07 .sec07_inner p.tit {
  font-size: 2.5rem;
  font-weight: 600;
  color: #23015F;
  margin-bottom: 10px;
}
#sec07 .sec07_inner p {
  font-size: 2.1rem;
  line-height: 1.6;
}
#sec07 .last_box {
  border-bottom: 1px solid #9F9A9A;
}

@media (max-width: 768px) {
  #sec07 {
    margin-top: 30px;
    padding: 20px 0;
  }
  #sec07 h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    width: 90%;
    margin: 0 auto;
    letter-spacing: 1px;
    text-align: center;
  }
  #sec07 .sec07_inner {
    max-width: 90%;
    width: 90%;
    display: block;
    padding: 15px 0;
    margin: 0 auto;
    text-align: center;
  }
  #sec07 .sec07_inner img {
    width: 35%;
    height: auto;
  }
  #sec07 .sec07_inner .txt {
    margin-left: 0;
    margin-top: 20px;
  }
  #sec07 .sec07_inner p.tit {
    font-size: 2rem;
    text-align: center;
  }
  #sec07 .sec07_inner p {
    text-align: left;
    font-size: 1.6rem;
  }
}
#sec09 {
  background-color: #EEECF3;
}
#sec09 .sec09_inner {
  display: flex;
  justify-items: center;
  justify-content: space-between;
  align-items: center;
  max-width: 1050px;
  width: 100%;
  margin: 0 auto;
  padding-top: 50px;
}
#sec09 .sec09_inner h2 {
  background-color: var(--color-Dkorange);
  color: var(--color-white);
  font-size: 4.5rem;
  font-weight: 600;
  text-align: center;
  line-height: 1;
  padding: 7px 0 15px;
  max-width: 540px;
  width: 100%;
}
#sec09 .sec09_inner h2 span.large {
  color: var(--color-white);
  font-size: 6.5rem;
  font-weight: 600;
}
#sec09 .sec09_inner p {
  font-size: 3rem;
  text-align: center;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 3px;
  margin: 15px auto 40px;
}

@media (max-width: 768px) {
  #sec09 {
    margin: 0 auto;
    text-align: center;
  }
  #sec09 .sec09_inner {
    padding: 30px 0 0;
    display: block;
  }
  #sec09 .sec09_inner h2 {
    font-size: 2.5rem;
    max-width: 90%;
    width: 90%;
    margin: 0 auto 20px;
  }
  #sec09 .sec09_inner h2 span.large {
    font-size: 3.5rem;
  }
  #sec09 .sec09_inner p {
    font-size: 2rem;
    width: 90%;
    margin: 0 auto 20px;
  }
  #sec09 .sec09_inner img {
    width: 80%;
    height: auto;
  }
  #sec09 .sec09_inner img.wm {
    margin-top: 20px;
    width: 70%;
  }
}
#sec10 {
  background-color: var(--color-navy);
  padding: 65px 0 60px;
}
#sec10 p {
  color: var(--color-white);
}

@media (max-width: 768px) {
  #sec10 {
    background-color: var(--color-navy);
    padding: 30px 0;
  }
}
#sec11 {
  max-width: 1085px;
  width: 100%;
  margin: 0 auto;
  padding: 90px 0 0;
}
#sec11 h2 {
  font-size: 5rem;
  text-align: center;
  font-weight: 600;
  color: var(--color-navy);
}

@media (max-width: 768px) {
  #sec11 {
    max-width: 90%;
    width: 90%;
    margin: 0 auto;
    padding: 30px 0 0;
  }
  #sec11 h2 {
    font-size: 2rem;
  }
  #sec11 .adlp-accordion__header::after {
    width: 20px;
    height: 20px;
    right: 10px;
  }
}/*# sourceMappingURL=styles.css.map */