@charset "UTF-8";
/*! css/style */
/* ↑にはビルド生成されるファイル名（拡張子を除く）を下記ルールで記載してください */
/* 
	・コメントアウト最初には ! を付けてください（/*! ...）
	・プロジェクトルート（vite.configの"base"、このリポジトリのTOPページとなるHTMLファイルの場所）からの相対パス
	例: assets/css/style
	→ <outDir(dist)>/<base>/assets/css/style.css として排出される
*/
.cta {
  display: grid;
  font-weight: bold;
  grid-template-columns: 5px auto 14px auto 25px 15px 21px;
  grid-template-areas: ". A . B . C .";
  justify-content: space-between;
  align-items: center;
  color: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
  border-radius: 51px;
  padding-block: 5px;
  width: 500px;
  background-color: #FF370D;
  margin: 0 auto;
}
@media (any-hover: hover) {
  .cta:hover {
    opacity: 0.8;
  }
}
@media (max-width: 768px) {
  .cta {
    grid-template-columns: 3px auto 46px auto 54px 15px 14px;
    width: 315px;
    padding-block: 3px;
    margin-top: 23px;
  }
}
.cta__badge {
  grid-area: A;
  color: #FF370D;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  display: grid;
  place-items: center;
}
.cta__badge-text {
  font-size: 20px;
}
@media (max-width: 768px) {
  .cta__badge {
    width: 54px;
    height: 54px;
  }
}
.cta__text {
  font-size: 24px;
  grid-area: B;
}
@media (max-width: 768px) {
  .cta__text {
    font-size: 16px;
    line-height: 1.3125;
    text-align: left;
  }
}
.cta__arrow {
  width: 30px;
  height: 15px;
  grid-area: C;
}

.footer .cta {
  grid-template-columns: 10px auto 35px auto 28px 15px 32px;
  margin: 80px auto;
  width: 620px;
  padding-block: 10px;
}
@media (max-width: 768px) {
  .footer .cta {
    margin: 40px auto;
    padding-block: 6px;
    width: 315px;
    grid-template-columns: 6px auto 23px auto 28px 15px 25px;
  }
}
.footer .cta__badge {
  width: 80px;
  height: 80px;
}
@media (max-width: 768px) {
  .footer .cta__badge {
    width: 58px;
    height: 58px;
  }
}
.footer .cta__badge-text {
  font-size: 26px;
}
@media (max-width: 768px) {
  .footer .cta__badge-text {
    font-size: 20px;
  }
}
.footer .cta__text {
  font-size: 28px;
}
@media (max-width: 768px) {
  .footer .cta__text {
    font-size: 20px;
  }
}

/* --------------------------------
- outline
------------------------------------- */
body {
  font-family: "Noto Sans JP", ArialMT, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", メイリオ, sans-serif;
  font-size: 16px;
  line-height: 1;
  color: #000;
  animation: fadeIn ease 0.5s;
  overflow-x: hidden;
}

.no-scroll {
  overflow: hidden;
}

.main {
  width: 100%;
  margin: 0 auto;
}

.inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.inline {
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .main {
    width: 100%;
    min-width: 100%;
  }
  .inner {
    max-width: 100%;
  }
}
/* -----------------------------------------
- animation
----------------------------------------- */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes popup {
  0% {
    transform: translateY(40px) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
  }
  80%, 100% {
    opacity: 1;
  }
}
/* -----------------------------------------
- effect js-fade-in
----------------------------------------- */
.js-fade-in {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease-in;
  transition-delay: 0.6s;
}

.js-fade-in.active {
  opacity: 1;
  visibility: visible;
}

.js-fade-in:nth-of-type(1) {
  transition-delay: 0.9s;
}

.js-fade-in:nth-of-type(2) {
  transition-delay: 1.2s;
}

.js-fade-in:nth-of-type(3) {
  transition-delay: 1.5s;
}

.js-fade-in:nth-of-type(4) {
  transition-delay: 1.8s;
}

/* .js-fade-in-left */
.js-fade-in-left {
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-out;
  transform: translate(-50%, 0);
}

.js-fade-in-left.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* --------------------------------
- scrollbar
------------------------------------- */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #000;
}

::-webkit-scrollbar-thumb {
  background: #fff;
  border-radius: 4px;
}

/* --------------------------------
- only
------------------------------------- */
.pc_only {
  display: block;
}

.sp_only {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
}
/* --------------------------------
- common
------------------------------------- */
h1 {
  font-size: 22px;
  font-weight: bold;
  line-height: 33px;
}

.hd_01 {
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: bold;
  line-height: 33px;
}

h2,
.hd_02 {
  display: inline-block;
  margin: 0 auto;
  text-align: center;
  font-size: 45px;
  font-weight: bold;
  line-height: 66px;
}

h3,
.hd_03 {
  font-size: 40px;
  font-weight: bold;
}

h4,
.hd_04 {
  font-size: 20px;
  font-weight: bold;
  line-height: 29px;
}

@media screen and (max-width: 768px) {
  h1,
  .hd_01 {
    font-size: 11px;
    line-height: 14px;
  }
  h2,
  .hd_02 {
    font-size: 26px;
    line-height: 36px;
  }
  h3,
  .hd_03 {
    font-size: 40px;
    font-weight: bold;
  }
  h4,
  .hd_04 {
    font-size: 20px;
    font-weight: bold;
    line-height: 29px;
  }
}
/* .hd_box */
.hd_box {
  margin: 0 auto;
  text-align: center;
}

.hd_box .line_yellow {
  font-size: 24px;
  font-weight: bold;
  line-height: 36px;
}

@media screen and (max-width: 768px) {
  .hd_box .line_yellow {
    font-size: 18px;
    line-height: 26px;
  }
}
/* .hd_gradient */
.hd_gradient {
  position: absolute;
  top: 79px;
  right: 40.3%;
  display: flex;
  justify-content: flex-end;
  width: 100vw;
  height: 115px;
  padding: 37px 100px 0 0;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  line-height: 36px;
  box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.16);
  white-space: nowrap;
}

.hd_gradient .num {
  display: inline-block;
  margin-left: 6px;
  font-size: 55px;
}

.hd_gradient .num_set {
  font-size: 50px;
}

.set01 .hd_gradient {
  right: 38.4%;
  width: calc(100vw - 38.4%);
  background: rgb(8, 175, 233);
  background: linear-gradient(90deg, rgb(8, 175, 233) 0%, rgb(42, 245, 152) 100%);
}

.set02 .hd_gradient {
  right: 46%;
  width: calc(100vw - 46%);
  background: rgb(230, 60, 110);
  background: linear-gradient(90deg, rgb(230, 60, 110) 0%, rgb(253, 213, 103) 100%);
}

.set03 .hd_gradient {
  right: 40.2%;
  width: calc(100vw - 40.2%);
  background: rgb(60, 140, 231);
  background: linear-gradient(90deg, rgb(60, 140, 231) 0%, rgb(247, 149, 253) 100%);
}

.line_yellow {
  background: linear-gradient(transparent 70%, #FCEE21 0%);
}

@media screen and (max-width: 1080px) {
  .set01 .hd_gradient {
    right: 34%;
    width: calc(100vw - 34%);
  }
  .set02 .hd_gradient {
    right: 44%;
    width: calc(100vw - 44%);
  }
  .set03 .hd_gradient {
    right: 36%;
    width: calc(100vw - 36%);
  }
}
@media screen and (max-width: 1000px) {
  .set01 .hd_gradient {
    right: 14%;
    width: calc(100vw - 14%);
  }
  .set02 .hd_gradient {
    right: 26%;
    width: calc(100vw - 26%);
  }
  .set03 .hd_gradient {
    right: 16%;
    width: calc(100vw - 16%);
  }
}
@media screen and (max-width: 768px) {
  .hd_gradient {
    position: absolute;
    top: 41px;
    right: unset;
    left: 0;
    display: flex;
    justify-content: flex-start;
    width: 94.6666%;
    height: 92px;
    padding: 10px 0 0 20px;
    font-size: 18px;
    line-height: 27px;
    text-align: left;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.16);
  }
  .hd_gradient .num {
    margin-left: 0;
    margin-top: 8px;
    font-size: 39px;
  }
  .hd_gradient .num_set {
    font-size: 39px;
  }
  .set01 .hd_gradient,
  .set02 .hd_gradient,
  .set03 .hd_gradient {
    right: unset;
    left: 0;
    width: 94.6666%;
  }
}
p {
  font-size: 16px;
  line-height: 32px;
}

.txt {
  display: block;
  font-size: 16px;
  line-height: 32px;
}

.read {
  display: block;
  font-size: 24px;
  line-height: 36px;
  font-weight: bold;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .read {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: normal;
  }
}
.red {
  color: #FF370D;
}

.none {
  display: none;
}

a {
  transition: 0.25s;
}

img {
  display: block;
  width: 100%;
  margin: 0 auto;
}

/* .linkbtn */
.linkbtn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 600px;
  height: 102px;
  margin: 0 auto;
  background: rgb(8, 175, 233);
  background: linear-gradient(90deg, rgb(8, 175, 233) 0%, rgb(42, 245, 152) 100%);
  border-radius: 51px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
  transition: 0.25s;
}

.linkbtn .linkbtn_inner {
  position: relative;
  width: 100%;
  height: 100%;
  color: #fff;
  padding-top: 10px;
  font-weight: bold;
  line-height: 33px;
  background: url(../img/ico_btn-dl.svg) no-repeat left 35px center;
  background-size: 50px;
}

.linkbtn .linkbtn_inner .small {
  font-size: 22px;
}

.linkbtn .linkbtn_inner .num {
  font-size: 40px;
}

.linkbtn .linkbtn_inner .num_set {
  font-size: 28px;
}

.linkbtn .linkbtn_inner::after {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 37px;
  content: "";
  display: inline-block;
  width: 19px;
  height: 26px;
  background: url(../img/ico_arrow-right.svg) no-repeat center;
  background-size: contain;
}

@media screen and (max-width: 768px) {
  .linkbtn {
    width: 89.3333%;
    max-width: 400px;
    height: 89px;
    margin: 0 auto;
    border-radius: 48px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
  }
  .linkbtn .linkbtn_inner {
    position: relative;
    width: 100%;
    height: 100%;
    color: #fff;
    padding-top: 4px;
    font-weight: bold;
    line-height: 26px;
    background: url(../img/ico_btn-dl.svg) no-repeat left 20px center;
    background-size: 40px;
  }
  .linkbtn .linkbtn_inner .small {
    font-size: 16px;
  }
  .linkbtn .linkbtn_inner .num {
    font-size: 20px;
  }
  .linkbtn .linkbtn_inner .num_set {
    font-size: 20px;
  }
  .linkbtn .linkbtn_inner::after {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: 18px;
    content: "";
    display: inline-block;
    width: 12px;
    height: 18px;
    background: url(../img/ico_arrow-right.svg) no-repeat center;
    background-size: contain;
  }
  /* .linkbtn_dl */
  .linkbtn_dl {
    width: 94.0298%;
    height: 70px;
    margin: 40px auto;
  }
  .linkbtn_dl .linkbtn_inner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 0;
    font-size: 20px;
    line-height: 26px;
    border-radius: 50px;
    background: url(../img/ico_btn-dl.svg) no-repeat left 25px center;
    background-size: 40px;
  }
  .linkbtn_dl .linkbtn_inner::after {
    right: 23px;
  }
}
.linkbtn:hover {
  cursor: pointer;
}

@media screen and (min-width: 769px) {
  .linkbtn:hover {
    transform: scale(1.06);
  }
}
/* --------------------------------
- .header
------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 80px;
  margin: 0 auto;
  background: #000;
  z-index: 1000;
}

.header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

.header .hd_01 {
  padding-left: 10px;
}

.header .hd_txt {
  margin-left: 20px;
  letter-spacing: 0.05em;
}

.header .hd_btn_dl {
  width: 240px;
}

.header .hd_btn_dl .txt {
  font-size: 18px;
  font-weight: bold;
  line-height: 24px;
}

.header .hd_btn_dl a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 80px;
  padding: 5px;
  color: #fff;
  background: #FF370D;
}

.header .hd_btn_dl a::before {
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin: auto 5px auto 15px;
  background: url(../img/ico_btn-dl.svg) no-repeat center;
  background-size: contain;
}

.logo_top {
  width: 160px;
}

@media screen and (min-width: 769px) {
  .header a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .header {
    max-width: 100%;
    height: 50px;
  }
  .header .hd_01 {
    flex-shrink: 0;
    padding-left: 5px;
  }
  .logo_top {
    width: 99px;
    margin: 0;
  }
  .header .hd_txt {
    flex-shrink: 0;
    margin-left: 5px;
  }
  .header .hd_btn_dl {
    width: 140px;
  }
  .header .hd_btn_dl .txt {
    flex-shrink: 0;
    font-size: 11px;
    line-height: 14px;
  }
  .header .hd_btn_dl a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 50px;
    padding: 5px;
    color: #fff;
    background: #FF370D;
  }
  .header .hd_btn_dl a::before {
    content: "";
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    margin: auto 6px auto 3px;
    background: url(../img/ico_btn-dl.svg) no-repeat center;
    background-size: contain;
  }
}
/* --------------------------------
- .fv
------------------------------------- */
.fv {
  position: relative;
  /*height: 880px;*/
  padding-top: 80px;
  background-color: #000;
}

.fv .inner {
  height: 100%;
  padding: 40px;
  text-align: center;
  color: #fff;
  background: url(../img/fv_bg.jpg) no-repeat;
  background-size: cover;
  background-position: top center;
}

.fv_catch img {
  display: block;
}

.fv_catch_01 {
  max-width: 597px;
  margin: 0 auto 10px;
}

.fv_catch_02 {
  max-width: 660px;
  margin: 0 auto 10px;
  opacity: 0;
}

.fv_catch_02.active {
  animation: popup 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s 1 forwards;
}

/* .fv_read */
.fv_read {
  display: block;
  margin: 16px auto 22px;
}

.fv_read p {
  font-size: 24px;
  font-weight: bold;
  line-height: 34px;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .fv {
    position: relative;
    height: auto;
    padding-top: 50px;
    background-color: #000;
  }
  .fv .inner {
    width: 100%;
    padding: 20px 6% 30px;
    background: url(../img/fv_bg_sp.jpg) no-repeat;
    background-size: cover;
    background-position: top center;
  }
  .fv_catch_01 {
    width: 89.3939%;
    max-width: 400px;
    margin: 0 auto 10px;
  }
  .fv_catch_02 {
    width: 100vw;
    max-width: 280px;
    margin: 0 auto;
  }
  /* .fv_read */
  .fv_read {
    margin: 8px auto 21px;
  }
  .fv_read p {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: normal;
  }
}
/* .fv_btn_box */
.btn_set ul {
  display: flex;
  gap: 0 20px;
  max-width: 760px;
  margin: 0 auto 40px;
  justify-content: center;
}

.btn_set li {
  position: relative;
  width: 33.3333%;
  max-width: 240px;
  height: 178px;
}

.btn_set a {
  display: block;
  height: 100%;
  text-align: center;
  border-radius: 15px;
  color: #fff;
}

.btn_set img {
  display: block;
  max-width: 220px;
  margin: 0 auto;
  padding: 11px 0 0;
}

.btn_set .txt_box {
  font-weight: bold;
}

.btn_set .big {
  display: inline-block;
  margin-top: -2px;
  font-size: 24px;
}

.btn_set .num {
  font-size: 36px;
}

.btn_set a::after {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 8px;
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: url(../img/ico_arrow-down.svg) no-repeat center;
  background-size: contain;
}

.btn_set01 a {
  background: rgb(8, 175, 233);
  background: linear-gradient(90deg, rgb(8, 175, 233) 0%, rgb(42, 245, 152) 100%);
}

.btn_set02 a {
  background: rgb(230, 60, 110);
  background: linear-gradient(90deg, rgb(230, 60, 110) 0%, rgb(253, 213, 103) 100%);
}

.btn_set03 a {
  background: rgb(60, 140, 231);
  background: linear-gradient(90deg, rgb(60, 140, 231) 0%, rgb(247, 149, 253) 100%);
}

@media screen and (max-width: 768px) {
  .btn_set ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0 10px;
    max-width: 100%;
    margin: 0 auto 10px;
  }
  .btn_set li {
    width: 45.4545%;
    max-width: 240px;
    height: 98px;
    margin-bottom: 10px;
  }
  .btn_set a {
    border-radius: 10px;
  }
  .btn_set img {
    max-width: 130px;
    padding: 4px 0 0;
  }
  .btn_set .txt_box {
    font-size: 11px;
    line-height: 17px;
  }
  .btn_set .txt {
    font-size: 11px;
    line-height: 17px;
  }
  .btn_set .big {
    display: inline-block;
    margin-top: -2px;
    font-size: 14px;
  }
  .btn_set .num {
    font-size: 17px;
  }
  .btn_set a::after {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    bottom: 7px;
    content: "";
    display: block;
    width: 12px;
    height: 8px;
    background: url(../img/ico_arrow-down.svg) no-repeat center;
    background-size: contain;
  }
}
/* --------------------------------
- .about
------------------------------------- */
.about {
  text-align: center;
  background: url(../img/about_bg.jpg) no-repeat center;
  background-size: cover;
}

.about .inner {
  padding: 100px 0 160px;
}

.about .read_01 {
  margin: 0 auto 37px;
}

.about .hd_02 {
  margin: 17px auto;
}

.about .read_01 p {
  display: block;
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
}

.about .img_box {
  max-width: 750px;
  margin: 0 auto 40px;
}

.about .read_02 p {
  display: block;
  font-size: 30px;
  font-weight: bold;
  line-height: 48px;
}

@media screen and (max-width: 768px) {
  .about {
    text-align: center;
    background: url(../img/about_bg_sp.jpg) no-repeat center;
    background-size: cover;
  }
  .about .inner {
    padding: 40px 0 40px;
  }
  .about .read_01 {
    margin: 0 auto 18px;
  }
  .about .hd_02 {
    margin: 7px auto 14px;
  }
  .about .read_01 p {
    width: 89.3333%;
    margin: 0 auto;
    font-size: 14px;
    line-height: 24px;
    text-align: left;
  }
  .about .img_box {
    width: 66.6666%;
    max-width: 400px;
    margin: 0 auto 10px;
  }
  .about .read_02 p {
    font-size: 18px;
    line-height: 26px;
  }
}
/* --------------------------------
- .set
------------------------------------- */
.set {
  position: relative;
  padding: 140px 0 160px;
  text-align: center;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(232, 253, 244) 100%);
}

.set01 {
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(232, 253, 244) 100%);
}

.set02 {
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(255, 249, 233) 100%);
}

.set03 {
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(255, 236, 245) 100%);
}

.set .set_inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 93px 0 100px;
  background: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
}

.set .inner {
  max-width: 880px;
}

.set_store {
  margin: 40px auto 59px;
  padding: 31px 40px;
  background: #E7F9FB;
}

.set01 .set_store {
  background: #E7F9FB;
}

.set02 .set_store {
  background: #FDEEF1;
}

.set03 .set_store {
  background: #EAEEFD;
}

.set_store_box {
  display: flex;
  justify-content: space-between;
  margin: 0 auto 20px;
  gap: 0 40px;
}

.set_store_box .set_txt_box {
  width: 50%;
  max-width: 380px;
  margin: 0 auto;
  text-align: center;
}

.set_store_box img {
  width: 50%;
  max-width: 380px;
}

.set_store_box .catch {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  height: 49px;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  color: #FCEE21;
  background: #14C3D7;
}

.set_store_box .txt {
  margin: 0 auto 27px;
  color: #14C3D7;
  font-size: 45px;
  font-weight: 400;
}

.set_store_box .set_read {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}

/* .set_store .meyasu  */
.set_store .meyasu {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 47px;
  background: #fff;
}

.set_store .meyasu p {
  font-size: 18px;
  font-weight: 500;
}

.set_store .point {
  color: #14C3D7;
  font-weight: bold;
}

/* .set_service */
.set_service {
  display: none;
  margin: 50px auto 0;
  padding: 60px 0 0;
}

/* .set_service .hd_03 */
.set_service .hd_03 {
  margin: 0 auto 41px;
}

.set_service .hd_03 .fukidashi {
  position: relative;
  top: -10px;
  display: flex;
  width: 194px;
  height: 42px;
  margin: 0 auto;
  background: #14C3D7;
  text-align: center;
  color: #FCEE21;
  font-size: 22px;
  font-weight: bold;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
}

.set_service .hd_03 .fukidashi::after {
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  border-top-width: 10px;
  border-bottom-width: 10px;
  margin-left: -10px;
  border-left-width: 8px;
  border-right-width: 8px;
  border-top-color: #14C3D7;
  top: 100%;
  left: 50%;
}

.set01 .set_service .hd_03 .fukidashi {
  background: #14C3D7;
}

.set01 .set_service .hd_03 .fukidashi::after {
  border-top-color: #14C3D7;
}

.set02 .set_service .hd_03 .fukidashi {
  background: #EB506E;
}

.set02 .set_service .hd_03 .fukidashi::after {
  border-top-color: #EB506E;
}

.set03 .set_service .hd_03 .fukidashi {
  background: #758FEE;
}

.set03 .set_service .hd_03 .fukidashi::after {
  border-top-color: #758FEE;
}

.set_service .hd_03 .txt {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0 14px;
  font-size: 24px;
}

.set_service .hd_03 .txt::before,
.set_service .hd_03 .txt::after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background: #000;
}

/* .set_service_box */
.set_service_box {
  margin: 0 auto 78px;
}

.set_service_box ul {
  display: flex;
  flex-wrap: wrap;
  gap: 17px 2.3%;
}

.set_service_box li {
  position: relative;
  width: 31.8%;
  padding: 15px 18px;
  background: #fff;
  border: 1px solid #E6E6E6;
  text-align: left;
}

.set_service_box .set_recommend::before {
  position: absolute;
  top: -10px;
  left: -11px;
  content: "";
  width: 70px;
  height: 70px;
  background: url(../img/set01_recommend.svg) no-repeat center;
  background-size: cover;
}

.set01 .set_service_box .set_recommend::before {
  background: url(../img/set01_recommend.svg) no-repeat center;
  background-size: cover;
}

.set02 .set_service_box .set_recommend::before {
  background: url(../img/set02_recommend.svg) no-repeat center;
  background-size: cover;
}

.set03 .set_service_box .set_recommend::before {
  background: url(../img/set03_recommend.svg) no-repeat center;
  background-size: cover;
}

.set_service_box li .hd_04 {
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: bold;
  line-height: 27px;
  color: #14C3D7;
  text-align: center;
}

.set01 .set_service_box li .hd_04 {
  color: #14C3D7;
}

.set02 .set_service_box li .hd_04 {
  color: #EB506E;
}

.set03 .set_service_box li .hd_04 {
  color: #758FEE;
}

.set_service_box .hd_box {
  margin: 0 auto 10px;
  padding: 5px 0 10px;
  background: #E7F9FB;
}

.set01 .set_service_box .hd_box {
  background: #E7F9FB;
}

.set02 .set_service_box .hd_box {
  background: #FDEEF1;
}

.set03 .set_service_box .hd_box {
  background: #EAEEFD;
}

.set_service_box li img {
  width: 100px;
}

.set_service_box li .title {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: bold;
  line-height: 24px;
  text-align: left;
}

.set_service_box li .txt {
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
}

/* .set common */
.set01 .lg {
  background: rgb(8, 175, 233);
  background: linear-gradient(90deg, rgb(8, 175, 233) 0%, rgb(42, 245, 152) 100%);
}

.set02 .lg {
  background: rgb(230, 60, 110);
  background: linear-gradient(90deg, rgb(230, 60, 110) 0%, rgb(253, 213, 103) 100%);
}

.set03 .lg {
  background: rgb(60, 140, 231);
  background: linear-gradient(90deg, rgb(60, 140, 231) 0%, rgb(247, 149, 253) 100%);
}

.set01 .bc {
  background: #14C3D7;
}

.set02 .bc {
  background: #EB506E;
}

.set03 .bc {
  background: #758FEE;
}

.set01 .set_store .color {
  color: #14C3D7;
}

.set02 .set_store .color {
  color: #EB506E;
}

.set03 .set_store .color {
  color: #758FEE;
}

@media screen and (max-width: 768px) {
  .set {
    position: relative;
    padding: 142px 0 0;
    background: #fff;
  }
  .set .set_inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 12px 0 30px;
    background: #fff;
    box-shadow: none;
  }
  .set .inner {
    max-width: 100%;
  }
  .set_img {
    width: 89.3333%;
    max-width: 400px;
  }
  .set_store {
    width: 89.3333%;
    margin: 20px auto 39px;
    padding: 21px 20px;
  }
  .set_store_box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0 auto 14px;
    gap: 0;
  }
  .set_store_box .set_txt_box {
    margin: 0 auto 18px;
    width: 100%;
    max-width: 100%;
  }
  .set_store_box img {
    width: 100%;
    max-width: 100%;
    max-width: 400px;
  }
  .set_store_box .catch {
    margin: 0 auto 9px;
    height: 35px;
    font-size: 18px;
  }
  .set_store_box .txt {
    margin: 0 auto 13px;
    font-size: 35px;
  }
  .set_store_box .set_read {
    font-size: 14px;
    line-height: 24px;
  }
  /* .set_store .meyasu  */
  .set_store .meyasu {
    height: 64px;
    padding-left: 10px;
    background: #fff;
  }
  .set_store .meyasu p {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: -0.02em;
    text-align: left;
  }
  .set_store .point {
    color: #14C3D7;
    font-weight: bold;
  }
  /* .set_service */
  .set_service {
    margin: 20px auto 0;
    padding: 15px 0 0;
  }
  /* .set_service .hd_03 */
  .set_service .hd_03 {
    margin: 0 auto 17px;
  }
  .set_service .hd_03 .fukidashi {
    position: relative;
    top: -6px;
    width: 142px;
    height: 31px;
    background: #14C3D7;
    text-align: center;
    color: #FCEE21;
    font-size: 16px;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
  }
  .set_service .hd_03 .fukidashi::after {
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    pointer-events: none;
    position: absolute;
    border-top-width: 8px;
    border-bottom-width: 8px;
    margin-left: -8px;
    border-left-width: 8px;
    border-right-width: 8px;
    border-top-color: #14C3D7;
    top: 100%;
    left: 50%;
  }
  .set_service .hd_03 .txt {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0 6px;
    width: 89.3333%;
    margin: 0 auto;
    font-size: 18px;
  }
  .set_service .hd_03 .txt::before,
  .set_service .hd_03 .txt::after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background: #000;
  }
  /* .set_service_box */
  .set_service_box {
    margin: 0 auto 38px;
  }
  .set_service_box ul {
    gap: 9px 3.2835%;
    width: 89.3333%;
  }
  .set_service_box li {
    width: 48.3%;
    padding: 10px 8px;
  }
  .set_service_box .set_recommend::before {
    position: absolute;
    top: -6px;
    left: -6px;
    content: "";
    width: 45px;
    height: 45px;
    background: url(../img/set01_recommend.svg) no-repeat center;
    background-size: cover;
  }
  .set_service_box .hd_box {
    margin: 0 auto 5px;
    padding: 5px 0 5px;
  }
  .set_service_box li .hd_04 {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 16px;
  }
  .set_service_box li img {
    width: 70px;
  }
  .set_service_box li .title {
    margin-bottom: 4px;
    font-size: 13px;
    line-height: 19px;
  }
  .set_service_box li .txt {
    font-size: 11px;
    line-height: 18px;
  }
}
/* --------------------------------
- .required_service
------------------------------------- */
.required_service {
  padding: 60px 0 0;
}

.required_service .hd_box {
  margin: 0 auto 20px;
  padding: 40px 0 20px;
}

.required_service .hd_02 {
  margin-top: 16px;
}

.required_service_box li {
  padding: 41px 0 37px;
}

.required_service_box li:nth-child(1),
.required_service_box li:nth-child(4) {
  background: #E7F9FB;
}

.required_service_box li:nth-child(2),
.required_service_box li:nth-child(5) {
  background: #FDEEF1;
}

.required_service_box li:nth-child(3),
.required_service_box li:nth-child(6) {
  background: #EAEEFD;
}

.required_service_box_inner {
  display: flex;
  max-width: 880px;
  margin: 0 auto;
}

.required_service_box .img_box {
  display: flex;
  justify-content: center;
  flex-shrink: 0;
  align-items: center;
  width: 150px;
  height: 150px;
  margin-right: 30px;
  background: #fff;
  border-radius: 50%;
}

.required_service_box .img_box img {
  width: 90px;
}

/* .required_service_box .hd_03 */
.required_service_box .hd_03 {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: bold;
}

.required_service_box .hd_03 .txt {
  font-size: 24px;
  font-weight: bold;
}

.required_service_box .block_01 {
  display: inline-flex;
  align-items: center;
  width: auto;
  height: 40px;
  margin-bottom: 10px;
  padding: 0 10px;
  color: #fff;
  background: #14C3D7;
}

.required_service_01 .hd_03 .block_01,
.required_service_04 .hd_03 .block_01 {
  background: #14C3D7;
}

.required_service_02 .hd_03 .block_01,
.required_service_05 .hd_03 .block_01 {
  background: #EB506E;
}

.required_service_03 .hd_03 .block_01,
.required_service_06 .hd_03 .block_01 {
  background: #758FEE;
}

.required_service_box .block_02 {
  display: flex;
  margin: 9px 0 11px;
  align-items: baseline;
}

.required_service_box .color {
  margin-right: 7px;
  color: #14C3D7;
  font-size: 30px;
  font-weight: bold;
}

.required_service_01 .color,
.required_service_04 .color {
  color: #14C3D7;
}

.required_service_02 .color,
.required_service_05 .color {
  color: #EB506E;
}

.required_service_03 .color,
.required_service_06 .color {
  color: #758FEE;
}

.required_service_box .read {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: normal;
}

@media screen and (max-width: 768px) {
  .required_service {
    padding: 10px 0 0;
  }
  .required_service .hd_box {
    margin: 0 auto;
    padding: 32px 0 20px;
  }
  .required_service .hd_02 {
    margin-top: 7px;
  }
  .required_service_box li {
    padding: 20px 0 40px;
  }
  .required_service_box_inner {
    display: flex;
    flex-direction: column;
    max-width: 89.3333%;
  }
  .required_service_box .img_box {
    width: 120px;
    height: 120px;
    margin: 0 auto;
  }
  .required_service_box .img_box img {
    width: 72px;
  }
  /* .required_service_box .hd_03 */
  .required_service_box .hd_03 {
    margin: 20px 0 7px;
    font-size: 18px;
  }
  .required_service_box .hd_03 .txt {
    display: inline;
    font-size: 18px;
    line-height: 26px;
  }
  .required_service_box .block_01 {
    display: inline-flex;
    align-items: center;
    width: auto;
    height: 31px;
    margin-bottom: 8px;
    padding: 0 8px;
    color: #fff;
    background: #14C3D7;
  }
  .required_service_box .block_02 {
    display: inline;
    margin: 0;
    align-items: baseline;
  }
  .required_service_box .color {
    margin-right: 4px;
    font-size: 20px;
    line-height: 26px;
  }
  .required_service_box .read {
    font-size: 12px;
    line-height: 20px;
  }
}
/* --------------------------------
- .footer
------------------------------------- */
.footer {
  position: relative;
  background: url(../img/footer_bg.jpg) no-repeat top -47px center;
  background-size: cover;
  color: #fff;
  text-align: center;
}

.footer .inner {
  padding: 20px 20px 78px;
}

.copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 47px;
  background: #000;
}

.copy_txt {
  color: #fff;
  font-size: 11px;
}

@media screen and (max-width: 768px) {
  .footer {
    background: url(../img/footer_bg_sp.jpg) no-repeat top center;
    background-size: 100%;
  }
  .footer .inner {
    padding: 20px;
  }
  .copyright {
    height: 43px;
  }
  .copy_txt {
    font-size: 9px;
  }
}
.linkbtn_slide {
  font-weight: bold;
  font-size: 24px;
  text-align: center;
  padding: 17px 0;
  border: solid 1px #000;
  margin-top: 60px;
  position: relative;
  cursor: pointer;
}

.linkbtn_slide:after {
  content: "";
  background: url(../img/ico_arrow-right_bk.svg) no-repeat;
  background-size: contain;
  width: 22px;
  height: 14px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 36px;
}

.linkbtn_slide.is-active:after {
  transform: rotate(-180deg);
}

@media screen and (max-width: 768px) {
  .linkbtn_slide {
    font-size: 17px;
    padding: 15px 30px;
    width: 89.3333%;
    max-width: 400px;
    margin: 40px auto 0;
  }
  .linkbtn_slide:after {
    width: 16px;
    height: 10px;
    right: 10px;
  }
}