@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.company-info {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

address {
    font-size: 18px;
    line-height: 1.5;
    color: #333;
}

.company-info {
    margin-top: 60px;
    padding: 20px;
    max-width: 1100px;
    margin-left:auto;
    margin-right:auto;
}

.company-info address {
    font-size: 14px;
    line-height: 1.5;
    padding: 15px;
}

.company-info p {
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
}

.company-info p:last-child {
    border-bottom: none;
}
        .info-row {
            display: flex;
            justify-content: space-between;
            padding: 40px 0;
            border-bottom: 1px solid #ccc;
            font-style: normal;
            font-weight: normal;
        }
        .info-row:last-child {
            border-bottom: none;
        }
        .label {
            flex: 1;
            color: #333;
        }
        .value {
            flex: 2;
            color: #333;
        }
@media screen and (max-width: 768px) {
    .company-info address {
        font-size: 11px;
        padding: 10px;
    }
}
.privacy-section {
    margin-top: 60px;
    padding: 20px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.privacy-section h2 {
    font-size: 15px;
    text-align: center;
    margin-bottom: 20px;
}

.privacy-section p {
    font-size: 12px;
    line-height: 1.6;
    color: #333;
    padding: 10px;
}
.privacy-section ul li{
    font-size: 10px;
    line-height: 1.6;
    color: #333;
}
.privacy-section h3 {
    font-size: 14px;
    margin-top: 20px;
    border-bottom: 2px solid #ccc;
    padding-bottom: 5px;
}

.privacy-section ul {
    padding-left: 20px;
}

.privacy-section ul li {
    margin-bottom: 5px;
}

.privacy-section a {
    color: #007bff;
    text-decoration: none;
}

.privacy-section a:hover {
    text-decoration: underline;
}


html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  text-align: left;
  font-weight: 500;
  color: #2e2e2e;
  line-height: 1.6;
  font-family: "Zen Kaku Gothic New", "ヒラギノ丸ゴ ProN", "Hiragino Maru Gothic ProN", YuGothic, "Yu Gothic", sans-serif;
  -webkit-animation: fadeIn 1.2s ease-out normal;
          animation: fadeIn 1.2s ease-out normal;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
}

* {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
}

@-webkit-keyframes fadeIn {
  /*フェードインの詳細な動き*/
  from {
    /*フェードインの始まりの項目*/
    opacity: 0; /*始まりの透明度*/
    -webkit-transform: translateY(1px);
            transform: translateY(1px); /*縦軸の始まりの位置*/
  }
  to {
    /*フェードインの終わりの項目*/
    opacity: 1; /*終わりの透明度*/
    -webkit-transform: translateY(0%);
            transform: translateY(0%); /*縦軸の終わりの位置*/
  }
}

@keyframes fadeIn {
  /*フェードインの詳細な動き*/
  from {
    /*フェードインの始まりの項目*/
    opacity: 0; /*始まりの透明度*/
    -webkit-transform: translateY(1px);
            transform: translateY(1px); /*縦軸の始まりの位置*/
  }
  to {
    /*フェードインの終わりの項目*/
    opacity: 1; /*終わりの透明度*/
    -webkit-transform: translateY(0%);
            transform: translateY(0%); /*縦軸の終わりの位置*/
  }
}
/* fadeUp */
.fade {
  opacity: 0;
}

.fade.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.mon {
  font-family: "Montserrat", "Zen Kaku Gothic New", "Arial", sans-serif;
}

.zen {
  font-family: "Zen Kaku Gothic New", "ヒラギノ丸ゴ ProN", "Hiragino Maru Gothic ProN", YuGothic, "Yu Gothic", sans-serif;
}

/* fadeUp */
.fade {
  opacity: 0;
}

.fade.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.upper {
  text-transform: uppercase;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.sp-none {
  display: block;
}
@media screen and (max-width: 767.9px) {
  .sp-none {
    display: none;
  }
}

.sp-block {
  display: none;
}
@media screen and (max-width: 767.9px) {
  .sp-block {
    display: block;
  }
}

.pc-none {
  display: none;
}
@media screen and (max-width: 1024px) {
  .pc-none {
    display: block;
  }
}

.pc-block {
  display: block;
}
@media screen and (max-width: 1024px) {
  .pc-block {
    display: none;
  }
}

a {
  color: #2e2e2e;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  cursor: pointer;
}
a:hover {
  opacity: 0.7;
}

p {
  line-height: 1.6;
}

.wrapper {
  width: 100%;
}

.cont {
  width: 89.3%;
  max-width: 1100px;
  margin: 0 auto;
}

li {
  list-style: none;
}

@media screen and (min-width: 1250px) {
  .header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    z-index: 11;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 0 0 0 150px;
  }
  .header .ham-block {
    display: none;
  }
  .header h1 {
    margin-top: 40px;
    width: 140px;
  }
  .header h1 a {
    display: block;
  }
  .header h1 img {
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .header .gnav ul {
    background: #fff;
    border-radius: 0 0 0 30px;
    gap: 29px;
    padding: 21px 60px 28px 60px;
    -webkit-box-shadow: 9px 1px 0px 3px rgb(46, 46, 46);
            box-shadow: 9px 1px 0px 3px rgb(46, 46, 46);
  }
  .header .gnav li a {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 2;
  }
}
@media screen and (max-width: 1249.9px) {
  .header {
    height: 60px;
    top: 0;
    display: block;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
  }
}
@media screen and (max-width: 1249.9px) and (max-width: 767.9px) {
  .header {
    height: 60px;
  }
}
@media screen and (max-width: 1249.9px) {
  .header h1 {
    width: 120px;
    margin-top: 20px;
    margin-left: 20px;
    z-index: 99;
    position: relative;
  }
  .header .header-wrap {
    background: rgba(255, 228, 0, 0.95);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 91;
    overflow: auto;
    display: block;
    margin: 0;
    width: 100%;
    height: 100dvh;
    -webkit-transform: translateX(200%);
            transform: translateX(200%);
    -webkit-transition: -webkit-transform 1s;
    transition: -webkit-transform 1s;
    transition: transform 1s;
    transition: transform 1s, -webkit-transform 1s;
  }
  .header .gnav {
    padding-top: 64px;
    padding-left: 18px;
    padding-right: 18px;
  }
  .header .gnav ul {
    display: block;
    margin-bottom: 35px;
  }
  .header .gnav ul li a {
    display: block;
    font-size: 1.8rem;
    padding: 17px 0 16px;
    border-bottom: solid 1px #fff;
  }
  .header .ham-block {
    padding-bottom: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 25px;
  }
  .header .ham-block a {
    background: #69c85c;
    border-radius: 20px;
    color: #fff;
    text-align: center;
    width: 260px;
    padding: 7px 20px;
    position: relative;
    display: block;
    margin: 0 auto;
    font-size: 1.6rem;
    font-weight: 700;
  }
  .header .ham-block a::after {
    content: "";
    width: 8px;
    height: 10px;
    background: #fff;
    position: absolute;
    right: 25px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-clip-path: polygon(0 100%, 0% 0, 100% 50%);
    clip-path: polygon(0 100%, 0% 0, 100% 50%);
  }
}
.hamburger {
  display: none;
}

@media screen and (max-width: 1249.9px) {
  .hamburger {
    display: block;
    cursor: pointer;
    width: 72px;
    height: 63px;
    position: fixed;
    top: -2px;
    right: 0;
    z-index: 99;
    border-radius: 0 0 0 20px;
    border: none;
    background: #fff;
    -webkit-box-shadow: 9px 1px 0px 3px rgb(46, 46, 46);
            box-shadow: 9px 1px 0px 3px rgb(46, 46, 46);
  }
  .hamburger__line,
  .hamburger__line::before,
  .hamburger__line::after {
    display: inline-block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s; /*アニメーションの設定*/
    position: absolute;
    width: 36px;
    height: 2px;
    background: #2e2e2e;
  }
  .hamburger__line {
    top: 22px;
    left: 20px;
  }
  .hamburger__line::before {
    content: "";
    top: 10px;
    left: 0;
  }
  .hamburger__line::after {
    content: "";
    top: 20px;
    left: 0;
  }
  /*activeクラスが付与されると線が回転して×になる*/
  .hamburger.active {
    background: unset;
    -webkit-box-shadow: unset;
            box-shadow: unset;
  }
  .hamburger.active span {
    top: 23px;
    -webkit-transform: translateY(6px) rotate(-45deg);
            transform: translateY(6px) rotate(-45deg);
  }
  .hamburger.active span::after {
    top: 0px;
    left: 0px;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .hamburger.active span::before {
    opacity: 0;
  }
  .header-wrap.active {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transition: -webkit-transform 0.6s;
    transition: -webkit-transform 0.6s;
    transition: transform 0.6s;
    transition: transform 0.6s, -webkit-transform 0.6s;
  }
}
.cv {
  background: #ffe400;
  position: relative;
  overflow: hidden;
  padding: 68px 0 96px;
}
@media screen and (max-width: 767.9px) {
  .cv {
    padding: 40px 0 65px;
  }
}
.cv::before {
  content: "";
  background-image: url(assets/img/oj1.png);
  width: 672px;
  height: auto;
  aspect-ratio: 672/751;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 107px;
  right: 0;
  max-width: 60%;
}
@media screen and (max-width: 767.9px) {
  .cv::before {
    width: 88%;
    top: auto;
    top: 73%;
    right: -26px;
    max-width: unset;
  }
}
.cv .cont {
  position: relative;
}
.cv h2 {
  text-align: center;
  font-size: 2rem;
  line-height: 2;
  letter-spacing: 0.025em;
  margin-bottom: 50px;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .cv h2 {
    font-size: 1.6rem;
  }
}

.btn a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #69c85c;
  border-radius: 50px;
  -webkit-box-shadow: 0px 5px 0px 0px rgb(36, 158, 20);
          box-shadow: 0px 5px 0px 0px rgb(36, 158, 20);
  position: relative;
  margin: 0 auto;
  font-size: 1.8rem;
  letter-spacing: 0.025em;
  padding: 24px 140px 26px 150px;
  -webkit-transform: all 0.3s;
          transform: all 0.3s;
  font-weight: 900;
}
@media screen and (max-width: 767.9px) {
  .btn a {
    padding: 15px 85px 20px 24px;
    text-align: right;
    width: 100%;
    max-width: 335px;
  }
}
.btn a .letter {
  letter-spacing: -0.035em;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .btn a .letter {
    letter-spacing: -0.04em;
  }
}
@media screen and (max-width: 767.9px) {
  .btn a .f-m {
    font-size: 2rem;
  }
}
.btn a .big {
  font-size: 3rem;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .btn a .big {
    font-size: 2.2rem;
  }
}
.btn a::after {
  content: "";
  width: 92px;
  height: 120px;
  background-image: url(assets/img/illustration1.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 39px;
  bottom: 5px;
}
@media screen and (max-width: 767.9px) {
  .btn a::after {
    width: 72px;
    height: 94px;
    right: 10px;
    bottom: auto;
    top: -9px;
  }
}
.btn .second {
  -webkit-animation: pico 2s ease-out infinite;
          animation: pico 2s ease-out infinite;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: -15px;
  left: 40px;
  width: 100px;
  height: auto;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767.9px) {
  .btn .second {
    top: -29px;
    left: 50px;
    width: 70px;
  }
}
.btn .second .orange {
  font-size: 4.8rem;
  font-style: italic;
}
@media screen and (max-width: 767.9px) {
  .btn .second .orange {
    font-size: 3.36rem;
  }
}
.btn .second .black {
  font-weight: 900;
  font-size: 2rem;
  color: #2e2e2e;
  text-shadow: 1px 1px 0px #fff, -1px -1px 0px #fff, -1px 1px 0px #fff, 1px -1px 0px #fff, 1px 0px 0px #fff, -1px 0px 0px #fff, 0px 1px 0px #fff, 0px -1px 0px #fff;
  margin: 0;
  display: inline-block;
  margin-left: -10px;
  margin-top: 30px;
}
@media screen and (max-width: 767.9px) {
  .btn .second .black {
    font-size: 1.4rem;
  }
}
.btn .second::after {
  content: "";
  width: 19px;
  height: 14px;
  background: #fff;
  -webkit-clip-path: polygon(0 0, 0 78%, 100% 100%);
          clip-path: polygon(0 0, 0 78%, 100% 100%);
  position: absolute;
  top: 42%;
  right: -18px;
}
@media screen and (max-width: 767.9px) {
  .btn .second::after {
    width: 15px;
    height: 9px;
    right: -14px;
    -webkit-clip-path: polygon(0 0, 0 85%, 100% 100%);
            clip-path: polygon(0 0, 0 85%, 100% 100%);
    top: 41%;
  }
}
.btn a:hover {
  -webkit-box-shadow: 0px 2px 0px 0px rgb(36, 158, 20);
          box-shadow: 0px 2px 0px 0px rgb(36, 158, 20);
}

.btn a {
  color: #fff;
  font-weight: 700;
  display: block;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.btn a .second {
  -webkit-animation: pico 2s ease-out infinite;
          animation: pico 2s ease-out infinite;
}

@-webkit-keyframes pico {
  0%, 40%, 60%, 80% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50%, 70% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
}

@keyframes pico {
  0%, 40%, 60%, 80% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50%, 70% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
}
.btn a:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  opacity: 1;
  -webkit-transform: scale(0.99, 0.99) translateY(2px);
          transform: scale(0.99, 0.99) translateY(2px);
  -webkit-animation: none;
          animation: none;
}

.btn2 a {
  font-size: 2.4rem;
  height: 81px;
  padding: 0 51px 0 59px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 8.1rem;
  border-radius: 40px;
  position: relative;
  letter-spacing: 0.08em;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}
.btn2 a span {
  display: grid;
  place-content: center;
  position: absolute;
  width: 70px;
  height: 70px;
  top: -36px;
  left: -30px;
  background: #ffe400;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1.4666666667;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .btn2 a span {
    font-size: 1.1rem;
    width: 55px;
    height: 55px;
    top: -30px;
    left: -26px;
  }
}
.btn2 a span::after {
  content: "";
  width: 10px;
  aspect-ratio: 1;
  -webkit-clip-path: polygon(0 65%, 60% 0, 100% 100%);
          clip-path: polygon(0 65%, 60% 0, 100% 100%);
  background: #02b3ea;
  position: absolute;
  right: 7px;
  bottom: 4px;
}
@media screen and (max-width: 767.9px) {
  .btn2 a span::after {
    right: 7px;
    bottom: 2px;
  }
}
.btn2 a:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.main_visual {
  height: auto;
  aspect-ratio: 1400/700;
  background: #ffe400;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .main_visual {
    aspect-ratio: 375/680;
  }
}
.main_visual::before {
  content: "";
  width: 22.71%;
  height: auto;
  aspect-ratio: 319/560;
  background-image: url(assets/img/mv_oj1.png);
  position: absolute;
  left: 0;
  bottom: -204px;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767.9px) {
  .main_visual::before {
    display: none;
  }
}
.main_visual::after {
  content: "";
  width: 43.57%;
  height: auto;
  aspect-ratio: 610/640;
  background-image: url(assets/img/mv_oj2.png);
  position: absolute;
  right: 0;
  top: 0;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767.9px) {
  .main_visual::after {
    display: none;
  }
}
.main_visual .img {
  position: absolute;
  width: 79.36%;
  bottom: 0;
  left: 10.7%;
  z-index: 2;
}
@media screen and (max-width: 767.9px) {
  .main_visual .img {
    width: 100%;
    bottom: 0;
    left: 0;
  }
}
.main_visual .img img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 3333/1716;
  -o-object-position: top center;
     object-position: top center;
  display: block;
}
@media screen and (max-width: 767.9px) {
  .main_visual .img img {
    aspect-ratio: unset;
    width: 100%;
    height: 100%;
  }
}

.green {
  color: #249e14;
}

.orange {
  color: #fe6600;
}

.main-color {
  color: #ffe400;
}

.black {
  color: #2e2e2e;
}

.heading_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 25px;
  margin-bottom: 84px;
}
@media screen and (max-width: 767.9px) {
  .heading_wrap {
    display: block;
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 34px;
  }
}
.heading_wrap::before, .heading_wrap::after {
  content: "";
  margin-bottom: -5px;
  width: 54px;
  height: 70px;
  background-image: url(assets/img/shape.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767.9px) {
  .heading_wrap::before, .heading_wrap::after {
    position: absolute;
    bottom: 0;
    width: 38px;
    height: 50px;
    margin-bottom: 6px;
  }
}
.heading_wrap::after {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
@media screen and (max-width: 767.9px) {
  .heading_wrap::after {
    right: -8px;
  }
}
.heading_wrap::before {
  margin-right: 3px;
}
@media screen and (max-width: 767.9px) {
  .heading_wrap::before {
    left: -7px;
  }
}

.know {
  background: #fff;
  padding-top: 104px;
}
@media screen and (max-width: 767.9px) {
  .know {
    padding-top: 43px;
  }
}
.know h2 {
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .know h2 {
    font-size: 2rem;
  }
}
.know .cont {
  max-width: 1000px;
}
.know img {
  width: 600px;
  max-width: 100%;
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 767.9px) {
  .know img {
    width: 100%;
  }
}

.worries {
  padding-top: 83px;
  background-image: url(assets/img/worries_bg.png);
  background-size: cover;
}
@media screen and (max-width: 767.9px) {
  .worries {
    padding-top: 34px;
    background-image: url(assets/img/worries_bg-sp.png);
  }
}
@media screen and (max-width: 767.9px) {
  .worries .cont {
    width: 100%;
  }
}
.worries .heading_wrap {
  margin-bottom: 40px;
  gap: 17px;
}
@media screen and (max-width: 767.9px) {
  .worries .heading_wrap {
    width: 89.3%;
    max-width: 335px;
    margin: 0 auto 14px;
  }
}
.worries .heading_wrap::before, .worries .heading_wrap::after {
  width: 38px;
  height: 50px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767.9px) {
  .worries .heading_wrap::before, .worries .heading_wrap::after {
    width: 40px;
    height: 51px;
    bottom: 2px;
  }
}
@media screen and (max-width: 767.9px) {
  .worries .heading_wrap::after {
    right: -4px;
  }
}
@media screen and (max-width: 767.9px) {
  .worries .heading_wrap::before {
    left: -3px;
  }
}
.worries h2 {
  font-size: 4.8rem;
  font-weight: 900;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .worries h2 {
    font-size: 3rem;
  }
}
.worries .img {
  text-align: center;
  overflow: hidden;
}
.worries .img img {
  width: 909px;
  -webkit-transform: translateX(9px);
          transform: translateX(9px);
  display: block;
  margin: 0 auto -5px;
}
@media screen and (max-width: 767.9px) {
  .worries .img img {
    width: 100%;
    -webkit-transform: unset;
            transform: unset;
  }
}

.resolution h2 {
  background: #2e2e2e;
  padding: 63px 0;
  text-align: center;
  margin: 0 auto;
  color: #ffe400;
  font-weight: 900;
  font-size: 4.8rem;
  letter-spacing: 0.025em;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .resolution h2 {
    font-size: 3.36rem;
    padding: 30px 0;
  }
}
.resolution h2 img {
  width: 170px;
  display: inline-block;
  margin: 0 8px -3px 13px;
}
@media screen and (max-width: 767.9px) {
  .resolution h2 img {
    width: 119px;
    margin: 0 4px -3px 10px;
  }
}
.resolution h2 span {
  color: #fff;
  font-size: 3rem;
  font-weight: 900;
}
@media screen and (max-width: 767.9px) {
  .resolution h2 span {
    font-size: 2.1rem;
  }
}
.resolution h2 .letter {
  margin-left: -8px;
  margin-right: -4px;
  color: #ffe400;
  font-weight: 900;
  font-size: 4.8rem;
}
@media screen and (max-width: 767.9px) {
  .resolution h2 .letter {
    font-size: 3.36rem;
  }
}
.resolution h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 20px;
  position: absolute;
  bottom: -19px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #2e2e2e;
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
          clip-path: polygon(100% 0, 0 0, 50% 100%);
}
@media screen and (max-width: 767.9px) {
  .resolution h2::after {
    width: 30px;
    height: 15px;
    bottom: -14px;
  }
}
.resolution .resolution_content {
  padding: 100px 0;
  background: #fff;
}
@media screen and (max-width: 767.9px) {
  .resolution .resolution_content {
    padding: 50px 0 38px;
  }
}
@media screen and (max-width: 767.9px) {
  .resolution .resolution_content .cont {
    width: 100%;
  }
}
.resolution .resolution_content .swiper-wrapper {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767.9px) {
  .resolution .resolution_content .swiper-wrapper {
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
    gap: unset;
    -ms-flex-wrap: unset;
        flex-wrap: unset;
  }
}
.resolution .resolution_content .swiper-wrapper .swiper-slide {
  background: #fffce5;
  border-radius: 15px;
  width: calc((100% - 40px) / 2);
  border: solid 1px #ffe400;
  padding: 40px 20px 75px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .resolution .resolution_content .swiper-wrapper .swiper-slide {
    width: auto;
    padding: 30px 20px 56px;
  }
}
.resolution .resolution_content .swiper-wrapper .swiper-slide .no {
  position: absolute;
  color: #ffe400;
  font-size: 12rem;
  font-style: italic;
  opacity: 0.4;
  right: -1px;
  bottom: -19px;
  line-height: 1;
}
@media screen and (max-width: 767.9px) {
  .resolution .resolution_content .swiper-wrapper .swiper-slide .no {
    font-size: 8rem;
    bottom: -12px;
  }
}
.resolution .resolution_content .swiper-wrapper .swiper-slide img {
  margin: 0 auto 24px;
  display: block;
}
@media screen and (max-width: 767.9px) {
  .resolution .resolution_content .swiper-wrapper .swiper-slide img {
    margin-bottom: 20px;
  }
}
.resolution .resolution_content .swiper-wrapper .swiper-slide h3 {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 767.9px) {
  .resolution .resolution_content .swiper-wrapper .swiper-slide h3 {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}
.resolution .resolution_content .swiper-wrapper .swiper-slide .note {
  font-size: 1.4rem;
  margin-top: 4px;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .resolution .resolution_content .swiper-wrapper .swiper-slide .note {
    margin-top: 20px;
  }
}
.resolution .resolution_content .swiper-wrapper .resolution1 img {
  width: 210px;
  -webkit-transform: translateX(1px);
          transform: translateX(1px);
}
@media screen and (max-width: 767.9px) {
  .resolution .resolution_content .swiper-wrapper .resolution1 img {
    width: 166px;
  }
}
.resolution .resolution_content .swiper-wrapper .resolution2 img {
  width: 160px;
  -webkit-transform: translateX(-7px);
          transform: translateX(-7px);
}
@media screen and (max-width: 767.9px) {
  .resolution .resolution_content .swiper-wrapper .resolution2 img {
    width: 127px;
    margin-bottom: 22px;
  }
}
.resolution .resolution_content .swiper-wrapper .resolution3 img {
  width: 214px;
  margin-bottom: 19px;
}
@media screen and (max-width: 767.9px) {
  .resolution .resolution_content .swiper-wrapper .resolution3 img {
    width: 171px;
  }
}
.resolution .resolution_content .swiper-wrapper .resolution4 img {
  width: 209px;
}
@media screen and (max-width: 767.9px) {
  .resolution .resolution_content .swiper-wrapper .resolution4 img {
    width: 167px;
  }
}
.resolution .resolution_content .swiper-wrapper .resolution5 img {
  width: 288px;
}
@media screen and (max-width: 767.9px) {
  .resolution .resolution_content .swiper-wrapper .resolution5 img {
    width: 232px;
  }
}

.swiper-button-next,
.swiper-button-prev {
  display: none;
}
@media screen and (max-width: 767.9px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: block;
  }
}

@media screen and (max-width: 767.9px) {
  .swiper {
    position: relative;
    padding-bottom: 46px;
  }
}

.swiper-pagination {
  display: none;
  top: auto;
  bottom: 0;
}
@media screen and (max-width: 767.9px) {
  .swiper-pagination {
    display: block;
  }
}
.swiper-pagination .swiper-pagination-bullet {
  background: #d2d2d2;
  margin: 0 5px !important;
  opacity: 1;
}
.swiper-pagination .swiper-pagination-bullet-active {
  background: #2e2e2e !important;
}

.swiper-button-next,
.swiper-button-prev {
  top: 44%;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  content: "";
  width: 40px;
  height: 40px;
  background-image: url(assets/img/swiper_btn.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
}

.swiper-button-prev {
  left: 0;
}

.swiper-button-next {
  right: 14px;
}
.swiper-button-next::after {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.strong_point {
  padding: 100px 0 120px;
  background: #fff;
}
@media screen and (max-width: 767.9px) {
  .strong_point {
    padding: 50px 0;
  }
}
.strong_point .ttl_wrap {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 63px;
}
@media screen and (max-width: 767.9px) {
  .strong_point .ttl_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 28px;
    margin-bottom: 33px;
  }
}
.strong_point .ttl_wrap h2 {
  font-size: 3rem;
  font-weight: 900;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767.9px) {
  .strong_point .ttl_wrap h2 {
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
    font-size: 1.8rem;
    text-align: center;
  }
}
.strong_point .ttl_wrap h2 span {
  font-size: 4rem;
  font-weight: 900;
}
@media screen and (max-width: 767.9px) {
  .strong_point .ttl_wrap h2 span {
    font-size: 2.4rem;
  }
}
.strong_point .ttl_wrap h2 .f-s {
  font-size: 3rem;
}
@media screen and (max-width: 767.9px) {
  .strong_point .ttl_wrap h2 .f-s {
    font-size: 1.8rem;
  }
}
.strong_point .ttl_wrap p {
  background: #2e2e2e;
  color: #fff;
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  font-size: 1.8rem;
}
.strong_point .ttl_wrap p::after {
  content: "";
  width: 12px;
  height: 12px;
  background: #2e2e2e;
  position: absolute;
  right: -11px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-clip-path: polygon(0 100%, 0% 0, 100% 50%);
          clip-path: polygon(0 100%, 0% 0, 100% 50%);
}
@media screen and (max-width: 767.9px) {
  .strong_point .ttl_wrap p::after {
    -webkit-clip-path: polygon(0 0, 100% 0%, 50% 100%);
            clip-path: polygon(0 0, 100% 0%, 50% 100%);
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: -11px;
    top: auto;
    left: 50%;
  }
}
@media screen and (max-width: 767.9px) {
  .strong_point .scroll-hint {
    margin-right: calc(50% - 50vw);
  }
}
.strong_point table {
  display: block;
  margin-bottom: 0px;
  width: 1100px;
}
@media screen and (max-width: 767.9px) {
  .strong_point table {
    margin-bottom: 0px;
    width: unset;
  }
}
.strong_point table tbody {
  display: block;
}
.strong_point table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  letter-spacing: 0.025em;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.strong_point table th,
.strong_point table td {
  width: 33.33%;
  display: inline-block;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.strong_point table th {
  min-width: 180px;
}
@media screen and (max-width: 767.9px) {
  .strong_point table th {
    min-width: 170px;
  }
}
.strong_point table td {
  min-width: 260px;
}
.strong_point table .head td {
  min-width: 180px;
}
@media screen and (max-width: 767.9px) {
  .strong_point table .head td {
    min-width: 170px;
  }
}
.strong_point table .head th {
  color: #fff;
  font-size: 2.4rem;
  padding: 30px 20px;
  min-width: 260px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media screen and (max-width: 767.9px) {
  .strong_point table .head th {
    font-size: 1.8rem;
    padding: 14px 18px;
  }
}
.strong_point table .head th span {
  font-weight: 400;
  display: inline-block;
  margin: 0 5px;
}
@media screen and (max-width: 767.9px) {
  .strong_point table .head th span {
    margin: 0 2px;
  }
}
.strong_point table .head th:nth-child(2) {
  background: #69c85c;
}
.strong_point table .head th:nth-child(3) {
  background: #f68b01;
}
.strong_point table .detail th,
.strong_point table .detail td {
  padding: 25px 20px 18px;
}
@media screen and (max-width: 767.9px) {
  .strong_point table .detail th,
  .strong_point table .detail td {
    padding: 10px 16px 10px;
  }
}
.strong_point table .detail th {
  font-size: 2.4rem;
  background: #f0efef;
  border-bottom: solid 1px #d2d2d2;
  border-left: solid 1px #d2d2d2;
}
@media screen and (max-width: 767.9px) {
  .strong_point table .detail th {
    font-size: 1.8rem;
  }
}
.strong_point table .detail td {
  border-bottom: solid 1px #d2d2d2;
}
.strong_point table .detail td img {
  width: 50px;
  display: block;
  margin-bottom: 10px;
}
@media screen and (max-width: 767.9px) {
  .strong_point table .detail td img {
    width: 35px;
    margin-bottom: 5px;
  }
}
.strong_point table .detail td p {
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .strong_point table .detail td p {
    font-size: 1.6rem;
  }
}
.strong_point table .detail td:nth-child(3) {
  border-left: solid 4px #f68b01;
  border-right: solid 4px #f68b01;
}
.strong_point table .detail:nth-child(2) th {
  border-top: solid 1px #d2d2d2;
}
.strong_point table .detail:last-child td:nth-child(3) {
  border-bottom: solid 4px #f68b01;
}
.strong_point .strong_point_answer .clip {
  padding: 11px 80px 40px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 50px;
  color: #fff;
  font-size: 3rem;
  background: #69c85c;
  -webkit-clip-path: polygon(100% 0%, 50% 100%, 0 0);
          clip-path: polygon(100% 0%, 50% 100%, 0 0);
  margin-top: 80px;
}
@media screen and (max-width: 767.9px) {
  .strong_point .strong_point_answer .clip {
    font-size: 2.4rem;
    margin-bottom: 34px;
    margin-top: 50px;
    padding: 9px 64px 33px;
  }
}
.strong_point .strong_point_answer h3 {
  text-align: center;
  font-size: 4.8rem;
  letter-spacing: 0.025em;
  line-height: 1;
  margin-bottom: 20px;
  font-weight: 900;
}
@media screen and (max-width: 767.9px) {
  .strong_point .strong_point_answer h3 {
    font-size: 3rem;
    margin-bottom: 24px;
  }
}
.strong_point .strong_point_answer h3 .green {
  display: block;
  font-size: 3rem;
  margin-bottom: -28px;
  font-weight: 900;
}
@media screen and (max-width: 767.9px) {
  .strong_point .strong_point_answer h3 .green {
    font-size: 2rem;
    margin-bottom: 15px;
  }
}
.strong_point .strong_point_answer h3 .orange {
  font-size: 8rem;
  font-weight: 700;
  display: inline-block;
  margin-left: -3px;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}
@media screen and (max-width: 767.9px) {
  .strong_point .strong_point_answer h3 .orange {
    font-size: 7.2rem;
    margin-top: -6px;
    line-height: 1;
  }
}
.strong_point .strong_point_answer h3 .f-s {
  font-size: 3.6rem;
  font-weight: 900;
}
@media screen and (max-width: 767.9px) {
  .strong_point .strong_point_answer h3 .f-s {
    font-size: 2rem;
  }
}
.strong_point .strong_point_answer h3 .letter {
  margin-left: -8px;
}
.strong_point .strong_point_answer .flex-top {
  gap: 25px 40px;
}
.strong_point .strong_point_answer .flex-top picture {
  width: calc((100% - 40px) / 2);
}
@media screen and (max-width: 767.9px) {
  .strong_point .strong_point_answer .flex-top picture {
    width: 100%;
  }
}

.merit {
  background-image: url(assets/img/merit_bg.png);
  background-size: cover;
  padding-top: 83px;
  padding-bottom: 120px;
}
@media screen and (max-width: 767.9px) {
  .merit {
    padding-top: 40px;
    padding-bottom: 60px;
    background-image: url(assets/img/merit_bg-sp.png);
  }
}
.merit .cont {
  position: relative;
}
.merit h2 {
  letter-spacing: -0.1em;
  font-size: 4.8rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .merit h2 {
    font-size: 3.6rem;
  }
}
.merit h2 img {
  width: 160px;
  margin-right: 10px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .merit h2 img {
    width: 119px;
    margin-right: 0px;
  }
}
.merit h2 .f-s {
  font-size: 3.6rem;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767.9px) {
  .merit h2 .f-s {
    font-size: 2.4rem;
  }
}
.merit h2 .letter {
  letter-spacing: -0.22em;
  margin-left: -9px;
}
.merit .heading2 {
  color: #249e14;
  margin-bottom: 100px;
  margin-top: 4px;
}
@media screen and (max-width: 1024px) {
  .merit .heading2 {
    margin-bottom: 163px;
  }
}
.merit img {
  position: absolute;
}
.merit .img1 {
  width: 167px;
  top: 27px;
  left: 108px;
}
@media screen and (max-width: 1024px) {
  .merit .img1 {
    width: 122px;
    top: 109px;
    left: 24px;
  }
}
.merit .img2 {
  top: 16px;
  width: 205px;
  right: 87px;
}
@media screen and (max-width: 1024px) {
  .merit .img2 {
    width: 134px;
    top: 105px;
    right: 27px;
  }
}
.merit ol {
  position: relative;
  gap: 90px 40px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 767.9px) {
  .merit ol {
    row-gap: 50px;
  }
}
.merit ol li {
  width: calc((100% - 80px) / 3);
  max-width: 100%;
  background: #fff;
  border-radius: 15px;
  padding: 73px 25px 32px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .merit ol li {
    width: 100%;
  }
}
@media screen and (max-width: 767.9px) {
  .merit ol li {
    padding: 47px 20px 30px;
  }
}
.merit ol li .no {
  background: #f68b01;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  color: #fff;
  letter-spacing: 0.05em;
  font-size: 4rem;
  width: 100px;
  height: auto;
  aspect-ratio: 1/1;
  position: absolute;
  top: -50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767.9px) {
  .merit ol li .no {
    width: 60px;
    top: -30px;
    font-size: 3rem;
  }
}
.merit ol li h3 {
  text-align: center;
  font-size: 2rem;
  color: #249e14;
  margin-inline: -6px;
  padding-bottom: 23px;
  margin-bottom: 18px;
  border-bottom: solid 1px #f0efef;
  line-height: 1.8;
}
@media screen and (max-width: 767.9px) {
  .merit ol li h3 {
    font-size: 1.8rem;
    padding-bottom: 17px;
    margin-bottom: 17px;
  }
}
.merit ol li .description {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 767.9px) {
  .merit ol li .description {
    font-size: 1.4rem;
  }
}

.heading2 {
  font-size: 2rem;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 10px;
}
@media screen and (max-width: 767.9px) {
  .heading2 {
    font-size: 1.6rem;
  }
}

.case {
  padding-top: 82px;
  padding-bottom: 120px;
  background-image: url(assets/img/case_bg.png);
  background-size: cover;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .case {
    padding-top: 38px;
    padding-bottom: 36px;
    background-image: url(assets/img/case_bg-sp.png);
  }
}
@media screen and (max-width: 767.9px) {
  .case .cont {
    width: 100%;
  }
}
.case h2 {
  letter-spacing: 0.025em;
  font-size: 4.8rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .case h2 {
    font-size: 3.6rem;
    line-height: 1.4;
  }
}
.case h2 img {
  width: 160px;
}
@media screen and (max-width: 767.9px) {
  .case h2 img {
    width: 119px;
  }
}
.case h2 .f-s {
  font-size: 3.6rem;
}
@media screen and (max-width: 767.9px) {
  .case h2 .f-s {
    font-size: 2.4rem;
  }
}
.case h2 .letter {
  letter-spacing: -0.2em;
  margin-left: -5px;
}
.case .heading2 {
  color: #fff;
  margin-bottom: 68px;
  margin-top: 8px;
}
@media screen and (max-width: 767.9px) {
  .case .heading2 {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 768px) {
  .case .swiper-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
@media screen and (max-width: 767.9px) {
  .case .swiper-wrapper {
    position: relative;
    padding-bottom: 49px;
  }
}
.case .swiper-wrapper .swiper-slide {
  position: relative;
  background: #fff;
  overflow: hidden;
  border-radius: 15px;
  padding: 30px 40px 40px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  row-gap: 20px;
}
@media screen and (max-width: 767.9px) {
  .case .swiper-wrapper .swiper-slide {
    width: auto;
    padding: 0 0 30px;
    display: block;
  }
}
.case .swiper-wrapper .swiper-slide .no {
  position: absolute;
  top: 0;
  left: 0;
  padding: 4px 38px 5px;
  background: #2e2e2e;
  color: #fff;
  font-size: 2rem;
  letter-spacing: 0.05em;
  font-weight: 600;
}
@media screen and (max-width: 767.9px) {
  .case .swiper-wrapper .swiper-slide .no {
    position: static;
    width: 100%;
    text-align: center;
  }
}
.case .swiper-wrapper .swiper-slide .left {
  gap: 0 29px;
  height: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-right: solid 1px #f0efef;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 10px;
}
@media screen and (max-width: 1024px) {
  .case .swiper-wrapper .swiper-slide .left {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 767.9px) {
  .case .swiper-wrapper .swiper-slide .left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 10px 20px 20px;
    margin-bottom: 20px;
    border-right: none;
    border-bottom: solid 1px #f0efef;
    width: 100%;
    row-gap: 10px;
  }
}
.case .swiper-wrapper .swiper-slide .icon {
  width: 120px;
  display: grid;
  place-content: center;
  margin: 20px 0;
}
@media screen and (max-width: 767.9px) {
  .case .swiper-wrapper .swiper-slide .icon {
    width: 100px;
    margin: 0 auto;
  }
}
.case .swiper-wrapper .swiper-slide .icon img {
  width: 100%;
  display: block;
  margin-bottom: 10px;
}
@media screen and (max-width: 767.9px) {
  .case .swiper-wrapper .swiper-slide .icon img {
    margin-bottom: 3px;
  }
}
.case .swiper-wrapper .swiper-slide .icon p {
  text-align: center;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767.9px) {
  .case .swiper-wrapper .swiper-slide .icon p {
    font-size: 1.4rem;
  }
}
.case .swiper-wrapper .swiper-slide .detail {
  display: grid;
  place-content: center;
  padding-right: 20px;
}
@media screen and (max-width: 767.9px) {
  .case .swiper-wrapper .swiper-slide .detail {
    -webkit-columns: 2;
       -moz-columns: 2;
            columns: 2;
    -webkit-column-gap: 22px;
       -moz-column-gap: 22px;
            column-gap: 22px;
    display: block;
    padding-right: 0;
  }
}
.case .swiper-wrapper .swiper-slide .detail p {
  font-weight: 500;
  line-height: 2.18;
}
@media screen and (max-width: 767.9px) {
  .case .swiper-wrapper .swiper-slide .detail p {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}
.case .swiper-wrapper .swiper-slide .detail p span {
  font-weight: 700;
}
.case .swiper-wrapper .swiper-slide .right {
  width: 610px;
  padding-left: 40px;
  padding-top: 10px;
}
@media screen and (max-width: 767.9px) {
  .case .swiper-wrapper .swiper-slide .right {
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
    padding-top: 0;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
  }
}
.case .swiper-wrapper .swiper-slide .right .flex-top {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 35px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  .case .swiper-wrapper .swiper-slide .right .flex-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1px;
    margin-bottom: 10px;
  }
}
.case .swiper-wrapper .swiper-slide .right .arrow {
  background: #2e2e2e;
  width: 30px;
  height: 40px;
  -webkit-clip-path: polygon(0 100%, 0% 0, 100% 50%);
          clip-path: polygon(0 100%, 0% 0, 100% 50%);
  margin-top: auto;
  margin-bottom: 12px;
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
@media screen and (max-width: 767.9px) {
  .case .swiper-wrapper .swiper-slide .right .arrow {
    width: 24px;
    height: 16px;
    -webkit-clip-path: polygon(100% 0%, 50% 100%, 0 0);
            clip-path: polygon(100% 0%, 50% 100%, 0 0);
  }
}
.case .swiper-wrapper .swiper-slide .right .kokuho {
  min-width: 230px;
}
.case .swiper-wrapper .swiper-slide .right .ttl {
  background-size: cover;
  padding: 6px 15px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 1.8rem;
  letter-spacing: 0.025em;
  margin-bottom: 15px;
}
@media screen and (max-width: 767.9px) {
  .case .swiper-wrapper .swiper-slide .right .ttl {
    margin: 0 auto 3px;
    padding: 2px 15px;
    font-size: 1.6rem;
    margin-bottom: 5px;
  }
}
.case .swiper-wrapper .swiper-slide .right .price {
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767.9px) {
  .case .swiper-wrapper .swiper-slide .right .price {
    text-align: center;
  }
}
.case .swiper-wrapper .swiper-slide .right .price span {
  font-size: 3.6rem;
  margin-left: 5px;
  margin-right: 4px;
}
@media screen and (max-width: 767.9px) {
  .case .swiper-wrapper .swiper-slide .right .price span {
    font-size: 3.2rem;
  }
}
.case .swiper-wrapper .swiper-slide .right .total {
  background: #fffce5;
  border: solid 1px #ffe400;
  padding: 2px 20px 10px;
  text-align: center;
  font-weight: 900;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767.9px) {
  .case .swiper-wrapper .swiper-slide .right .total {
    padding-top: 6px;
  }
}
.case .swiper-wrapper .swiper-slide .right .total span {
  font-size: 4rem;
  font-weight: 700;
  margin: 0 7px 0 -1px;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  display: inline-block;
}
@media screen and (max-width: 767.9px) {
  .case .swiper-wrapper .swiper-slide .right .total span {
    line-height: 1;
    margin-bottom: 4px;
    font-size: 3.6rem;
  }
}
.case .swiper-wrapper .swiper-slide .right .kokuho .ttl {
  background-image: url(assets/img/green_bg.png);
}
.case .swiper-wrapper .swiper-slide .right .shaho .ttl {
  background-image: url(assets/img/orange_bg.png);
}
.case .swiper-button-next,
.case .swiper-button-prev {
  top: 56%;
}
.case .swiper-pagination .swiper-pagination-bullet {
  background: #fff;
}

.reason {
  padding-top: 82px;
  padding-bottom: 100px;
  background: #fff;
}
@media screen and (max-width: 767.9px) {
  .reason {
    padding-top: 36px;
    padding-bottom: 60px;
  }
}
.reason h2 {
  letter-spacing: 0.025em;
  font-size: 4.8rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .reason h2 {
    font-size: 3.6rem;
    line-height: 1.4;
  }
}
.reason h2 img {
  width: 160px;
}
@media screen and (max-width: 767.9px) {
  .reason h2 img {
    width: 119px;
  }
}
.reason h2 .f-s {
  font-size: 3.6rem;
  margin-right: 5px;
  margin-left: 1px;
}
@media screen and (max-width: 767.9px) {
  .reason h2 .f-s {
    font-size: 2.4rem;
  }
}
.reason .heading2 {
  color: #249e14;
  margin-bottom: 100px;
  margin-top: 8px;
}
@media screen and (max-width: 767.9px) {
  .reason .heading2 {
    margin-bottom: 70px;
    margin-top: 12px;
  }
}
.reason ul {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 80px 40px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767.9px) {
  .reason ul {
    gap: 64px 15px;
    margin-bottom: 22px;
  }
}
.reason ul li {
  width: 245px;
  position: relative;
  border: solid 3px #69c85c;
  border-radius: 15px;
  padding: 64px 20px 67px;
}
@media screen and (max-width: 767.9px) {
  .reason ul li {
    width: calc((100% - 15px) / 2);
    padding: 35px 12px 42px;
  }
}
.reason ul li img {
  width: 96px;
  height: auto;
  aspect-ratio: 1/1;
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
  top: -52px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767.9px) {
  .reason ul li img {
    width: 80px;
  }
}
.reason ul li .description {
  font-size: 2rem;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .reason ul li .description {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}
.reason ul li .no {
  position: absolute;
  color: #f0efef;
  font-size: 10rem;
  font-style: italic;
  opacity: 0.7;
  right: -2px;
  bottom: -16px;
  line-height: 1;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .reason ul li .no {
    font-size: 6rem;
    right: -1px;
    bottom: -9px;
  }
}
.reason .reason_bottom {
  gap: 30px;
}
@media screen and (max-width: 767.9px) {
  .reason .reason_bottom {
    display: block;
    position: relative;
  }
}
.reason .reason_bottom .img {
  width: 153px;
  margin-top: 24px;
}
@media screen and (max-width: 767.9px) {
  .reason .reason_bottom .img {
    width: 70px;
    position: absolute;
    top: 0;
    left: 0;
  }
}
.reason .reason_bottom .img img {
  width: 100%;
}
.reason .reason_bottom .content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767.9px) {
  .reason .reason_bottom .content {
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
  }
}
.reason .reason_bottom .content .ttl {
  gap: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  .reason .reason_bottom .content .ttl {
    position: relative;
    margin-left: 76px;
    max-width: 335px;
    margin-bottom: 26px;
  }
}
.reason .reason_bottom .content .ttl .balloon {
  background: #69c85c;
  line-height: 1.3;
  padding-bottom: 10px;
  margin-top: 20px;
  color: #fff;
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  font-size: 2rem;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767.9px) {
  .reason .reason_bottom .content .ttl .balloon {
    font-size: 1.4rem;
    width: 70px;
    height: 70px;
    position: absolute;
    top: 0;
    left: 10px;
    padding-bottom: 2px;
  }
}
.reason .reason_bottom .content .ttl .balloon .mon {
  font-weight: 600;
}
.reason .reason_bottom .content .ttl .balloon::after {
  content: "";
  width: 12px;
  height: 12px;
  background: #69c85c;
  position: absolute;
  right: -11px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-clip-path: polygon(0 100%, 0% 0, 100% 50%);
          clip-path: polygon(0 100%, 0% 0, 100% 50%);
}
@media screen and (max-width: 767.9px) {
  .reason .reason_bottom .content .ttl .balloon::after {
    width: 9px;
    height: 9px;
    right: -8px;
  }
}
.reason .reason_bottom .content .ttl .ttl_wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767.9px) {
  .reason .reason_bottom .content .ttl .ttl_wrap {
    width: 100%;
  }
}
.reason .reason_bottom .content .ttl .ttl_wrap h3 {
  margin-top: 10px;
  font-size: 4rem;
  font-weight: 900;
}
@media screen and (max-width: 767.9px) {
  .reason .reason_bottom .content .ttl .ttl_wrap h3 {
    font-size: 1.8rem;
    padding-top: 30px;
    margin-bottom: 9px;
  }
}
.reason .reason_bottom .content .ttl .ttl_wrap h3 span {
  color: #2e2e2e;
  font-size: 3rem;
  font-weight: 900;
}
@media screen and (max-width: 767.9px) {
  .reason .reason_bottom .content .ttl .ttl_wrap h3 span {
    font-size: 3rem;
    padding-left: 94px;
    display: block;
    margin-bottom: 13px;
  }
}
.reason .reason_bottom .content .ttl .ttl_wrap p {
  font-weight: 500;
  font-size: 1.8rem;
  margin-top: 6px;
  line-height: 2;
}
@media screen and (max-width: 767.9px) {
  .reason .reason_bottom .content .ttl .ttl_wrap p {
    font-size: 1.4rem;
    padding-left: 11px;
  }
}
.reason .reason_bottom .content .box {
  border: solid 3px #69c85c;
  border-radius: 15px;
  padding: 29px 37px 32px;
}
@media screen and (max-width: 767.9px) {
  .reason .reason_bottom .content .box {
    padding: 20px 20px;
  }
}
.reason .reason_bottom .content .box p {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 2rem;
}
@media screen and (max-width: 767.9px) {
  .reason .reason_bottom .content .box p {
    font-size: 1.6rem;
    line-height: 1.4;
  }
}
.reason .reason_bottom .content .box p .orange {
  font-size: 2.4rem;
  font-weight: 700;
  margin-right: 10px;
}
@media screen and (max-width: 767.9px) {
  .reason .reason_bottom .content .box p .orange {
    font-size: 2rem;
  }
}
.reason .reason_bottom .content .box .note {
  margin-bottom: 0;
  font-size: 1.6rem;
  font-weight: 500;
  margin-top: 30px;
}
@media screen and (max-width: 767.9px) {
  .reason .reason_bottom .content .box .note {
    font-size: 1.4rem;
  }
}

.check {
  padding-top: 82px;
  padding-bottom: 120px;
  background-image: url(assets/img/check_bg.png);
  background-size: cover;
}
@media screen and (max-width: 767.9px) {
  .check {
    background-image: url(assets/img/check_bg-sp.png);
    padding-bottom: 60px;
    padding-top: 70px;
  }
}
.check .ttl_wrap {
  position: relative;
  text-align: center;
  margin: 0 auto 40px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767.9px) {
  .check .ttl_wrap {
    max-width: 335px;
    width: 100%;
    margin-bottom: 20px;
  }
}
.check .ttl_wrap h2 {
  font-size: 4.8rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767.9px) {
  .check .ttl_wrap h2 {
    font-size: 3.6rem;
    width: 100%;
    line-height: 1.4;
  }
}
.check .ttl_wrap h2 img {
  width: 120px;
  position: static;
  margin-right: 5px;
}
@media screen and (max-width: 767.9px) {
  .check .ttl_wrap h2 img {
    width: 119px;
  }
}
.check .ttl_wrap h2 span {
  letter-spacing: -0.2em;
}
@media screen and (max-width: 767.9px) {
  .check .ttl_wrap h2 span {
    letter-spacing: 0;
  }
}
.check .ttl_wrap .heading2 {
  color: #249e14;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 8px auto 0;
}
.check .ttl_wrap img {
  position: absolute;
  top: -10px;
}
@media screen and (max-width: 767.9px) {
  .check .ttl_wrap img {
    top: -38px;
  }
}
.check .ttl_wrap .img1 {
  width: 119px;
  left: -144px;
}
@media screen and (max-width: 767.9px) {
  .check .ttl_wrap .img1 {
    width: 76px;
    left: 17px;
  }
}
.check .ttl_wrap .img2 {
  width: 118px;
  right: -143px;
}
@media screen and (max-width: 767.9px) {
  .check .ttl_wrap .img2 {
    width: 76px;
    right: 16px;
  }
}
.check .description {
  text-align: center;
  font-weight: 500;
  margin-bottom: 48px;
  line-height: 2.2;
}
@media screen and (max-width: 767.9px) {
  .check .description {
    font-size: 1.4rem;
    margin-bottom: 35px;
    line-height: 2;
  }
}
.check .check_box_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  margin-bottom: 127px;
}
@media screen and (max-width: 767.9px) {
  .check .check_box_wrapper {
    margin-bottom: 77px;
    gap: 32px;
  }
}
.check .check_box_wrapper #q2,
.check .check_box_wrapper #q3 {
  padding-top: 100px;
  margin-top: -100px;
}
@media screen and (max-width: 767.9px) {
  .check .check_box_wrapper #q2,
  .check .check_box_wrapper #q3 {
    padding-top: 60px;
    margin-top: -60px;
  }
}
.check .check_box_wrapper .check_box {
  background: #fff;
  border-radius: 15px;
  padding: 0 20px 20px 0;
  overflow: hidden;
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767.9px) {
  .check .check_box_wrapper .check_box {
    padding: 0 0 30px;
  }
}
.check .check_box_wrapper .check_box .check_box_title {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 28px;
  margin-bottom: 35px;
}
@media screen and (max-width: 767.9px) {
  .check .check_box_wrapper .check_box .check_box_title {
    gap: 20px;
    margin-bottom: 20px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.check .check_box_wrapper .check_box .check_box_title .no {
  font-size: 2.4rem;
  display: grid;
  place-content: center;
  text-align: center;
  width: 70px;
  height: 70px;
  background: #2e2e2e;
  color: #fff;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767.9px) {
  .check .check_box_wrapper .check_box .check_box_title .no {
    width: 50px;
    height: 50px;
    font-size: 2rem;
  }
}
.check .check_box_wrapper .check_box .check_box_title h3 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.8rem;
}
@media screen and (max-width: 767.9px) {
  .check .check_box_wrapper .check_box .check_box_title h3 {
    font-size: 1.6rem;
    padding-top: 10px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 767.9px) {
  .check .check_box_wrapper .check_box .sp-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 30px;
    gap: 15px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.check .check_box_wrapper .check_box .yn_area {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 28px;
  padding-left: 20px;
}
@media screen and (max-width: 767.9px) {
  .check .check_box_wrapper .check_box .yn_area {
    padding: 0;
    width: calc((100% - 15px) / 2);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
  }
}
.check .check_box_wrapper .check_box .yn_area p,
.check .check_box_wrapper .check_box .yn_area a {
  font-size: 2rem;
  letter-spacing: 0.05em;
  border: solid 2px #2e2e2e;
  border-radius: 5px;
  text-align: center;
  padding: 8px 20px;
}
@media screen and (max-width: 767.9px) {
  .check .check_box_wrapper .check_box .yn_area p,
  .check .check_box_wrapper .check_box .yn_area a {
    font-size: 1.8rem;
    padding: 4px 10px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.check .check_box_wrapper .check_box .yn_area .yn {
  background: #f0efef;
  min-width: 150px;
}
@media screen and (max-width: 767.9px) {
  .check .check_box_wrapper .check_box .yn_area .yn {
    min-width: unset;
    width: 100%;
    max-width: 150px;
  }
}
.check .check_box_wrapper .check_box .yn_area .arrow {
  width: 96px;
}
@media screen and (max-width: 767.9px) {
  .check .check_box_wrapper .check_box .yn_area .arrow {
    width: 20px;
    margin-bottom: 10px;
  }
}
.check .check_box_wrapper .check_box .yn_area .arrow img {
  display: block;
}
.check .check_box_wrapper .check_box .yn_area a {
  background: #fffce5;
  min-width: 200px;
  margin-left: 20px;
}
@media screen and (max-width: 767.9px) {
  .check .check_box_wrapper .check_box .yn_area a {
    min-width: unset;
    width: 100%;
    margin-left: 0;
    max-width: 150px;
  }
}
.check .check_box_wrapper .check_box .yn_area .bg_arrow {
  color: #fff;
}
.check .check_box_wrapper .check_box .yn_area .bg_arrow::after {
  content: "";
  width: 8px;
  height: 10px;
  background: #fff;
  display: inline-block;
  -webkit-clip-path: polygon(0 100%, 0% 0, 100% 50%);
          clip-path: polygon(0 100%, 0% 0, 100% 50%);
  margin-left: 10px;
  margin-bottom: 2px;
}
.check .check_box_wrapper .check_box .yn_area .bg_o {
  border: none;
  background-image: url(assets/img/orange_bg.png);
  background-size: cover;
}
.check .check_box_wrapper .check_box .yn_area .bg_g {
  border: none;
  background-image: url(assets/img/green_bg.png);
  background-size: cover;
}
.check .check_box_wrapper .check_box .yn_area .bg_b {
  border: none;
  background-image: url(assets/img/black_bg.png);
  background-size: cover;
}
.check .check_answer_wrapper {
  gap: 90px 40px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 767.9px) {
  .check .check_answer_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 57px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.check .check_answer {
  padding-top: 150px;
  margin-top: -150px;
  width: 340px;
  max-width: 100%;
}
@media screen and (max-width: 767.9px) {
  .check .check_answer {
    padding-top: 80px;
    margin-top: -80px;
  }
}
.check .check_answer .inner {
  border-radius: 15px;
  position: relative;
  background: #fff;
  padding: 82px 25px 40px;
}
@media screen and (max-width: 767.9px) {
  .check .check_answer .inner {
    padding: 56px 22px 40px;
  }
}
.check .check_answer .inner .no {
  position: absolute;
  left: 50%;
  top: -50px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  font-size: 6rem;
  text-align: center;
  display: grid;
  place-content: center;
  color: #fff;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .check .check_answer .inner .no {
    font-size: 4.8rem;
    width: 80px;
    height: 80px;
    top: -40px;
  }
}
.check .check_answer .inner h3 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 22px;
}
@media screen and (max-width: 767.9px) {
  .check .check_answer .inner h3 {
    margin-bottom: 12px;
  }
}
.check .check_answer .inner p {
  line-height: 2;
  font-weight: 500;
  text-align: center;
  margin-bottom: 32px;
}
@media screen and (max-width: 767.9px) {
  .check .check_answer .inner p {
    margin-bottom: 22px;
  }
}
.check .check_answer .inner a {
  background: #69c85c;
  border-radius: 20px;
  color: #fff;
  text-align: center;
  width: 260px;
  padding: 7px 20px;
  position: relative;
  display: block;
  margin: 0 auto;
}
.check .check_answer .inner a::after {
  content: "";
  width: 8px;
  height: 10px;
  background: #fff;
  position: absolute;
  right: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-clip-path: polygon(0 100%, 0% 0, 100% 50%);
          clip-path: polygon(0 100%, 0% 0, 100% 50%);
}
.check #a .inner {
  border: solid 2px #f68b01;
}
.check #a .inner .no {
  background-image: url(assets/img/orange_bg.png);
  background-size: cover;
}
.check #a .inner h3 {
  color: #fe6600;
}
.check #b .inner {
  border: solid 2px #69c85c;
}
.check #b .inner .no {
  background-image: url(assets/img/green_bg.png);
  background-size: cover;
}
.check #b .inner h3 {
  color: #249e14;
}
.check #c .inner {
  border: solid 2px #2e2e2e;
}
.check #c .inner .no {
  background-image: url(assets/img/black_bg.png);
  background-size: cover;
}
.check #c .inner h3 {
  color: #2e2e2e;
}

.flow {
  padding-top: 82px;
  padding-bottom: 120px;
}
@media screen and (max-width: 767.9px) {
  .flow {
    padding-top: 50px;
    padding-bottom: 60px;
  }
}
.flow .ttl_wrap {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 767.9px) {
  .flow .ttl_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 14px;
  }
}
.flow .ttl_wrap p {
  margin-top: 9px;
  background: #2e2e2e;
  padding: 6px 27px 2px;
  border-radius: 27px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.07em;
  font-size: 2.4rem;
}
.flow .ttl_wrap p .main-color {
  font-size: 4rem;
  margin-left: -5px;
  margin-right: 4px;
  line-height: 1;
}
.flow .ttl_wrap h2 {
  font-size: 4.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .flow .ttl_wrap h2 {
    font-size: 3.6rem;
  }
}
.flow .ttl_wrap h2 img {
  width: 120px;
  margin-right: 7px;
  margin-bottom: -4px;
  display: inline-block;
}
@media screen and (max-width: 767.9px) {
  .flow .ttl_wrap h2 img {
    width: 119px;
  }
}
.flow .heading2 {
  color: #249e14;
  margin-bottom: 100px;
}
@media screen and (max-width: 767.9px) {
  .flow .heading2 {
    margin-bottom: 64px;
  }
}
.flow ul {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 80px 40px;
}
@media screen and (max-width: 767.9px) {
  .flow ul {
    gap: 64px 15px;
  }
}
.flow ul li {
  width: 245px;
  position: relative;
  border: solid 3px #69c85c;
  border-radius: 15px;
  padding: 70px 20px;
}
@media screen and (max-width: 767.9px) {
  .flow ul li {
    width: calc((100% - 15px) / 2);
    padding: 40px 12px;
  }
}
.flow ul li img {
  width: 96px;
  height: auto;
  aspect-ratio: 1/1;
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
  top: -50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767.9px) {
  .flow ul li img {
    width: 80px;
  }
}
.flow ul li h3 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 13px;
}
@media screen and (max-width: 767.9px) {
  .flow ul li h3 {
    font-size: 1.6rem;
    margin-bottom: 6px;
  }
}
.flow ul li .description {
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 767.9px) {
  .flow ul li .description {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}
.flow ul li .no {
  position: absolute;
  color: #f0efef;
  font-size: 10rem;
  font-style: italic;
  opacity: 0.7;
  right: -2px;
  bottom: -16px;
  line-height: 1;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .flow ul li .no {
    font-size: 6rem;
    right: -1px;
    bottom: -9px;
  }
}

.faq {
  padding-top: 80px;
  padding-bottom: 120px;
  background-image: url(assets/img/faq_bg.png);
  background-size: cover;
}
@media screen and (max-width: 767.9px) {
  .faq {
    padding-top: 38px;
    padding-bottom: 60px;
    background-image: url(assets/img/faq_bg-sp.png);
  }
}
.faq .cont {
  max-width: 1000px;
}
.faq .ttl_wrap {
  position: relative;
  text-align: center;
  margin: 0 auto 55px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767.9px) {
  .faq .ttl_wrap {
    margin-bottom: 94px;
  }
}
.faq .ttl_wrap h2 {
  font-size: 4.8rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767.9px) {
  .faq .ttl_wrap h2 {
    font-size: 3.6rem;
  }
}
.faq .ttl_wrap .heading2 {
  color: #249e14;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 8px auto 0;
}
@media screen and (max-width: 767.9px) {
  .faq .ttl_wrap .heading2 {
    margin: 6px auto;
  }
}
.faq .ttl_wrap img {
  position: absolute;
}
.faq .ttl_wrap .img1 {
  width: 106px;
  left: -134px;
  top: 4px;
}
@media screen and (max-width: 767.9px) {
  .faq .ttl_wrap .img1 {
    left: 7px;
    width: 76px;
    top: 59px;
  }
}
.faq .ttl_wrap .img2 {
  width: 111px;
  right: -136px;
  top: 14px;
}
@media screen and (max-width: 767.9px) {
  .faq .ttl_wrap .img2 {
    right: 6px;
    width: 80px;
    top: 67px;
  }
}
.faq ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}
.faq ul li {
  width: 100%;
  padding: 30px 30px 32px;
  background: #fff;
  border-radius: 15px;
}
@media screen and (max-width: 767.9px) {
  .faq ul li {
    padding: 22px 20px 25px;
  }
}
.faq ul .mon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  display: grid;
  place-content: center;
  text-align: center;
  margin-right: 20px;
}
@media screen and (max-width: 767.9px) {
  .faq ul .mon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
  }
}
.faq ul .detail {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.faq ul .title {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767.9px) {
  .faq ul .title {
    padding-right: 43px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.faq ul .title .mon {
  background: #69c85c;
}
@media screen and (max-width: 767.9px) {
  .faq ul .title .mon {
    margin-top: 9px;
  }
}
.faq ul .title .detail {
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .faq ul .title .detail {
    font-size: 1.6rem;
  }
}
.faq ul .box {
  padding-top: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767.9px) {
  .faq ul .box {
    padding-top: 16px;
  }
}
.faq ul .box .mon {
  background: #f68b01;
}
@media screen and (max-width: 767.9px) {
  .faq ul .box .mon {
    margin-top: 9px;
  }
}
.faq ul .box .detail {
  margin-top: 5px;
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .faq ul .box .detail {
    font-size: 1.4rem;
    margin-top: 0;
  }
}
@media screen and (max-width: 767.9px) {
  .faq {
    /*アイコンの＋と-*/
    /*　closeというクラスがついたら形状変化　*/
  }
  .faq .title {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    position: relative;
    cursor: pointer;
  }
  .faq .title::before,
  .faq .title::after {
    position: absolute;
    content: "";
    width: 30px;
    height: 2px;
    top: 26px;
    right: 0px;
    background: #69c85c;
  }
  .faq .title::before {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  .faq .title::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .faq .title.close::after {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  .faq .title.close::after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .faq .title.close::after {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  .faq li:nth-child(n+2) .box {
    display: none;
  }
}

#scroll-top {
  position: fixed;
  z-index: 77;
  bottom: 20px;
  display: none;
  right: 15px;
}
@media screen and (max-width: 767.9px) {
  #scroll-top {
    bottom: 130px;
    right: 10px;
  }
}

#scroll-top a {
  padding: 10px 10px 15px;
  background: #2e2e2e;
  display: block;
  line-height: 1;
  border-radius: 3px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (max-width: 767.9px) {
  #scroll-top a {
    padding: 10px 7px 15px;
  }
}
#scroll-top a img {
  width: 12px;
  display: block;
}
#scroll-top a:hover {
  opacity: 1;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.footer {
  background: #2e2e2e;
  padding: 58px 0 60px;
}
@media screen and (max-width: 767.9px) {
  .footer {
    padding: 40px 0 160px;
  }
}
.footer * {
  color: #fff;
}
@media screen and (max-width: 1249.9px) {
  .footer .fnav {
    display: none;
  }
}
.footer .fnav ul {
  gap: 20px 0;
  margin-bottom: 55px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.footer .fnav ul li a {
  padding: 0 24px;
  position: relative;
  font-weight: 500;
  font-size: 1.6rem;
}
.footer .fnav ul li a::after {
  content: "|";
  position: absolute;
  right: 0;
}
.footer .fnav ul li:last-child a {
  padding-right: 0;
}
.footer .fnav ul li:last-child a::after {
  content: none;
}
.footer .fnav ul li:first-child a {
  padding-left: 0;
}
.footer .fnav ul li:last-child a::after {
  content: none;
}
.footer .footer_bottom {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 767.9px) {
  .footer .footer_bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer .footer_bottom .flex {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 767.9px) {
  .footer .footer_bottom .flex {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 30px;
  }
}
.footer .footer_bottom img {
  display: block;
}
@media screen and (max-width: 767.9px) {
  .footer .footer_bottom img {
    width: 120px;
    margin: 0 auto;
  }
}
.footer .footer_bottom a,
.footer .footer_bottom small {
  font-size: 1.4rem;
  font-weight: 500;
  color: #f0efef;
}
.footer .footer_bottom .f_logo {
  width: 120px;
  margin-right: 50px;
}
@media screen and (max-width: 767.9px) {
  .footer .footer_bottom .f_logo {
    width: 100%;
    margin-right: 0;
    margin-bottom: 25px;
  }
}
.footer .footer_bottom .f_logo img {
  -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(1692%) hue-rotate(303deg) brightness(103%) contrast(100%);
          filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(1692%) hue-rotate(303deg) brightness(103%) contrast(100%);
}
.footer .footer_bottom .f_pp {
  margin-right: 28px;
}

.fixed_line {
  display: none;
}
@media screen and (max-width: 767.9px) {
  .fixed_line {
    display: block;
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 90;
    background: #fff;
    padding: 30px 20px 25px;
  }
  .fixed_line .btn a {
    font-size: 1.6rem;
    padding: 16px 55px 16px 24px;
    width: 334px;
    max-width: 100%;
  }
  .fixed_line .btn a .big {
    font-size: 1.8rem;
    margin-left: 3px;
  }
  .fixed_line .btn a::after {
    width: 52px;
    right: 3px;
    top: -17px;
  }
  .fixed_line .btn a .second {
    background: #ffe400;
    top: -19px;
    left: 0;
    width: 60px;
  }
  .fixed_line .btn a .second::after {
    background: #ffe400;
  }
  .fixed_line .btn a .second .orange {
    font-size: 2.88rem;
  }
  .fixed_line .btn a .second .black {
    text-shadow: 1px 1px 0px #ffe400, -1px -1px 0px #ffe400, -1px 1px 0px #ffe400, 1px -1px 0px #ffe400, 1px 0px 0px #ffe400, -1px 0px 0px #ffe400, 0px 1px 0px #ffe400, 0px -1px 0px #ffe400;
    font-size: 1.2rem;
    margin-left: -8px;
    margin-top: 19px;
  }
}/*# sourceMappingURL=style.css.map */