@charset "UTF-8";
/*
  Made by Elly Loel - https://ellyloel.com/
  With inspiration from:
    - Josh W Comeau - https://courses.joshwcomeau.com/css-for-js/treasure-trove/010-global-styles/
    - Andy Bell - https://piccalil.li/blog/a-modern-css-reset/
    - Adam Argyle - https://unpkg.com/open-props@1.3.16/normalize.min.css / https://codepen.io/argyleink/pen/KKvRORE

  Notes:
    - `:where()` is used to lower specificity for easy overriding.
*/
* {
  /* Remove default margin on everything */
  margin: 0;
  /* Remove default padding on everything */
  padding: 0;
}

/* Use a more-intuitive box-sizing model on everything */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove border and set sensible defaults for backgrounds, on all elements except fieldset progress and meter */
*:where(:not(fieldset, progress, meter)) {
  border-width: 0;
  border-style: solid;
  background-origin: border-box;
  background-repeat: no-repeat;
}

html {
  /* Allow percentage-based heights in the application */
  block-size: 100%;
  /* Making sure text size is only controlled by font-size */
  -webkit-text-size-adjust: none;
}

/* Smooth scrolling for users that don't prefer reduced motion */
@media (prefers-reduced-motion: no-preference) {
  html:focus-within {
    scroll-behavior: smooth;
  }
}
body {
  /* Improve text rendering */
  -webkit-font-smoothing: antialiased;
  /* https://marco.org/2012/11/15/text-rendering-optimize-legibility */
  text-rendering: optimizeSpeed;
  /* Allow percentage-based heights in the application */
  min-block-size: 100%;
  /* https://developer.mozilla.org/en-US/docs/Web/CSS/scrollbar-gutter#example_2 */
  /* scrollbar-gutter: stable both-edges; Removed until this bug is fixed: https://bugs.chromium.org/p/chromium/issues/detail?id=1318404#c2 */
}

/* Improve media defaults */
:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, svg, video) {
  block-size: auto;
  max-inline-size: 100%;
}

/* Remove stroke and set fill colour to the inherited font colour */
:where(svg) {
  stroke: none;
  fill: currentColor;
}

/* SVG's without a fill attribute */
:where(svg):where(:not([fill])) {
  /* Remove fill and set stroke colour to the inherited font colour */
  stroke: currentColor;
  fill: none;
  /* Rounded stroke */
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Set a size for SVG's without a width attribute */
:where(svg):where(:not([width])) {
  inline-size: 5rem;
}

/* Remove built-in form typography styles */
:where(input, button, textarea, select),
:where(input[type=file])::-webkit-file-upload-button {
  color: inherit;
  font: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
}

/* Change textarea resize to vertical only and block only if the browser supports that */
:where(textarea) {
  resize: vertical;
}

@supports (resize: block) {
  :where(textarea) {
    resize: block;
  }
}
/* Avoid text overflows */
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

/* Fix h1 font size inside article, aside, nav, and section */
h1 {
  font-size: 2em;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
:where(ul, ol)[role=list] {
  list-style: none;
}

/* More readable underline style for anchor tags without a class. This could be set on anchor tags globally, but it can cause conflicts. */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make it clear that interactive elements are interactive */
:where(a[href], area, button, input, label[for], select, summary, textarea, [tabindex]:not([tabindex*="-"])) {
  cursor: pointer;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

:where(input[type=file]) {
  cursor: auto;
}

:where(input[type=file])::-webkit-file-upload-button {
  cursor: pointer;
}

:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  cursor: pointer;
}

/* Animate focus outline */
@media (prefers-reduced-motion: no-preference) {
  :focus-visible {
    -webkit-transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
    transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
  }
  :where(:not(:active)):focus-visible {
    -webkit-transition-duration: 0.25s;
            transition-duration: 0.25s;
  }
}
:where(:not(:active)):focus-visible {
  outline-offset: 5px;
}

/* Make sure users can't select button text */
:where(input[type=file])::-webkit-file-upload-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
          user-select: none;
  text-align: center;
}
:where(button, button[type], input[type=button], input[type=submit], input[type=reset]),
:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
          user-select: none;
  text-align: center;
}

/* Disabled cursor for disabled buttons */
:where(button, button[type], input[type=button], input[type=submit], input[type=reset])[disabled] {
  cursor: not-allowed;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.inner {
  max-width: 1200px;
  height: 100%;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .inner {
    padding: 0 20px;
  }
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: rgb(84, 82, 82);
}

section {
  overflow: hidden;
}

body {
  color: rgb(0, 0, 0);
  font-family: "Lato", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

@font-face {
  font-family: "myFont";
  src: url("../css/APJapanesefont.eot?") format("eot"), url("../css/APJapanesefont.woff") format("woff");
}
.mv__title--top {
  font-family: "Lato", sans-serif;
  position: relative;
  font-size: 53px;
  font-weight: 900;
  color: rgb(67, 66, 63);
  text-shadow: 3.5px 1.5px 0 rgb(255, 255, 255);
  display: block;
  line-height: 1.1;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(75%, transparent), color-stop(75%, rgb(255, 202, 60)));
  background: linear-gradient(transparent 75%, rgb(255, 202, 60) 75%);
  width: 70%;
  margin-left: 35px;
  margin-bottom: 8px;
  -webkit-transform: skewX(-15deg);
          transform: skewX(-15deg);
}
@media screen and (max-width: 992px) {
  .mv__title--top {
    font-size: 5vw;
    -webkit-transform: skewX(-10deg);
            transform: skewX(-10deg);
  }
}
@media screen and (max-width: 768px) {
  .mv__title--top {
    font-size: 34px;
    text-shadow: 1.5px 1.5px 0 rgb(255, 255, 255);
    max-width: 360px;
    width: 100%;
    margin-left: 0;
    margin-bottom: 6px;
    line-height: 1.3;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, rgb(255, 202, 60)));
    background: linear-gradient(transparent 70%, rgb(255, 202, 60) 70%);
  }
}
@media screen and (max-width: 768px) {
  .mv__title--top span {
    font-size: 24px;
  }
}

.mv__title--middle {
  font-size: 53px;
  font-weight: 800;
  color: rgb(255, 142, 76);
  text-shadow: 3.5px 1.5px 0 rgb(255, 255, 255);
  display: block;
  width: 66%;
  margin-left: 35px;
  line-height: normal;
  -webkit-transform: skewX(-15deg);
          transform: skewX(-15deg);
  line-height: 1;
}
@media screen and (max-width: 992px) {
  .mv__title--middle {
    font-size: 5vw;
  }
}
@media screen and (max-width: 768px) {
  .mv__title--middle {
    font-size: 34px;
    text-shadow: 1.5px 1.5px 0 rgb(255, 255, 255);
    width: 100%;
    text-align: left;
    margin-left: 0;
    -webkit-transform: skewX(-6deg);
            transform: skewX(-6deg);
    margin-bottom: 15px;
  }
}

.price__h1 {
  font-size: 36px;
  font-weight: 800;
  font-style: italic;
  line-height: 36px;
}
@media screen and (max-width: 992px) {
  .price__h1 {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .price__h1 {
    font-size: 24px;
    line-height: 1.7;
  }
}

.price__text {
  font-size: 16px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .price__text {
    font-size: 12px;
  }
}
.price__text span {
  font-size: 20px;
  color: rgb(255, 142, 76);
}
@media screen and (max-width: 768px) {
  .price__text span {
    font-size: 16px;
  }
}

.section__title {
  font-size: 56px;
  text-align: center;
  font-weight: 700;
  font-style: italic;
  color: rgb(17, 17, 17);
}
@media screen and (max-width: 992px) {
  .section__title {
    font-size: 42px;
  }
}
@media screen and (max-width: 702px) {
  .section__title {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  .section__title {
    font-size: 28px;
  }
}
.section__title span {
  color: rgb(254, 120, 37);
}

.review h3 {
  font-size: 25px;
  font-weight: bold;
  text-align: center;
}

.review h3 span {
  font-size: 20px;
}

.reviewerType {
  font-family: "myFont", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 1.0079385042px;
  text-align: left;
}

.section__title--2 {
  font-size: 32px;
  font-weight: 700;
  font-style: italic;
  text-align: center;
  line-height: 1.6;
  color: rgb(17, 17, 17);
}
@media screen and (max-width: 768px) {
  .section__title--2 {
    font-size: 24px;
    line-height: 38px;
  }
}
.section__title--2 .span--1 {
  display: inline-block;
  line-height: 1;
  padding: 8px 18px 8px 10px;
  margin: 0 4px;
  color: #fff;
  background-color: rgb(254, 120, 37);
}

.subtitle-2 {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  color: #DE0000;
}

.marker-type28 {
  font-size: 28px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: 0.6999999881px;
  text-align: center;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, rgb(255, 240, 151)));
  background: linear-gradient(transparent 70%, rgb(255, 240, 151) 70%);
}
@media screen and (max-width: 390px) {
  .marker-type28 {
    font-size: 21px;
  }
}

.type28 {
  font-size: 28px;
  font-weight: 700;
  color: rgb(17, 17, 17);
}
@media screen and (max-width: 576px) {
  .type28 {
    font-size: 21px;
  }
}
.type28 span {
  color: rgb(254, 120, 37);
}

.StepTitleType {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.6999999881px;
  text-align: center;
  color: #fff;
}

.StephHeadder {
  font-size: 21px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: 0.6999999881px;
}

.featuresType {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.6999999881px;
  text-align: left;
}

.catchCP-14 {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.8819462061px;
  text-align: center;
}

.type-11 {
  font-size: 11px;
  font-weight: normal;
}

.type-14 {
  font-size: 14px;
}

.type17 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
.type17 span {
  display: inline-block;
  color: #fff;
  background-color: rgb(222, 0, 0);
  padding: 5px 12px;
  margin: 0 5px;
  margin-bottom: 8px;
}

.type-22 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.type-40 {
  font-size: 40px;
  font-weight: 700;
  font-weight: 700;
  line-height: 44px;
  letter-spacing: 0.6999999881px;
}

.type-64 {
  font-size: 64px;
  font-weight: 700;
  line-height: 70px;
  letter-spacing: -3.2999999523px;
  text-align: left;
}

.btn-type {
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0.6999999881px;
  text-align: center;
}

.logo-rotate {
  -webkit-animation-name: logorotate;
          animation-name: logorotate;
  -webkit-animation-duration: 7s;
          animation-duration: 7s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}

@-webkit-keyframes logorotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(720deg);
            transform: rotate(720deg);
  }
}

@keyframes logorotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(720deg);
            transform: rotate(720deg);
  }
}
.logo-rotate-revers {
  -webkit-animation-name: logorotaterevers;
          animation-name: logorotaterevers;
  -webkit-animation-duration: 15s;
          animation-duration: 15s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}

@-webkit-keyframes logorotaterevers {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-720deg);
            transform: rotate(-720deg);
  }
}

@keyframes logorotaterevers {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-720deg);
            transform: rotate(-720deg);
  }
}
.btn-jump {
  -webkit-animation-name: jumpAnime;
          animation-name: jumpAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
@media screen and (max-width: 576px) {
  .btn-jump {
    -webkit-animation-name: jumpAnimeaa;
            animation-name: jumpAnimeaa;
  }
}

@-webkit-keyframes jumpAnime {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transform: scaleY(0.5);
            transform: scaleY(0.5);
  }
  50% {
    -webkit-transform: translateY(-25px);
            transform: translateY(-25px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes jumpAnime {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transform: scaleY(0.5);
            transform: scaleY(0.5);
  }
  50% {
    -webkit-transform: translateY(-25px);
            transform: translateY(-25px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
.btn-jump:hover {
  opacity: 0.7;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

.fadeIn {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

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

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*左から */
.fadeLeft {
  -webkit-animation-name: fadeLeftAnime;
          animation-name: fadeLeftAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/* 右から */
.fadeRight {
  -webkit-animation-name: fadeRightAnime;
          animation-name: fadeRightAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/* 　Y 軸（横へ） */
.rotateY {
  -webkit-animation-name: rotateYAnime;
          animation-name: rotateYAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes rotateYAnime {
  from {
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
  }
  to {
    -webkit-transform: rotateY(-360deg);
            transform: rotateY(-360deg);
  }
}

@keyframes rotateYAnime {
  from {
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
  }
  to {
    -webkit-transform: rotateY(-360deg);
            transform: rotateY(-360deg);
  }
}
/* 上から */
.fadeDown {
  -webkit-animation-name: fadeDownAnime;
          animation-name: fadeDownAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

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

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*遅延アニメーション  */
.delay-time02 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.delay-time04 {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.delay-time06 {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.delay-time08 {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

/* 拡大 */
.zoomIn {
  -webkit-animation-name: zoomInAnime;
          animation-name: zoomInAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes zoomInAnime {
  from {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes zoomInAnime {
  from {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger,
.fadeLeftTrigger,
.fadeRightTrigger,
.fadeDownTrigger,
.fadeUpTrigger {
  opacity: 0;
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 90px;
  position: fixed;
  top: 0;
  left: 0;
  background: #fffffff0;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .header {
    height: 60px;
  }
}
.header__inner {
  max-width: 1340px;
  width: 100%;
  padding: 0 10px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          /* justify-content: space-between; */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__inner h1{
  margin: 0;
}

@media screen and (max-width: 768px) {
  .header__inner {
    padding: 0 20px;
  }
}
@media screen and (max-width: 390px) {
  .header__inner {
    padding: 0 10px;
  }
}

/* 240627　header__inner内のリード文変更　開始 */

.header__inner p{
    line-height: 1.3;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-left: 30px;
  }

@media screen and (max-width: 768px) {
  .header__inner p{
    line-height: 1.2;
    color: #333;
    font-size: 12px;
    font-weight: 600;
    margin-left: 20px;
  }
}
@media screen and (max-width: 390px) {
  .header__inner p{
    line-height: 1.2;
    color: #333;
    font-size: 12px;
    font-weight: 600;
    margin-left: 20px;
  }
}

.header__price {
  background: linear-gradient(transparent 60%, #ffca3ccc 60%);
  text-decoration-thickness: 2px; /* 必要に応じて調整 */
  font-size: 130%;
  font-weight: bold;
}

/* 240627　header__inner内のリード文変更　終了 */
.header .logo {
  width: 182px;
}
@media screen and (max-width: 768px) {
  .header .logo {
    width: 113px;
  }
}
.header__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  gap: 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .header__tel {
    font-size: 16px;
  }
}
.header__tel img {
  width: 20px;
}

main {
  margin-top: 90px;
}
@media screen and (max-width: 768px) {
  main {
    margin-top: 60px;
  }
}

/* ハンバーガーメニュー */
.openbtn1 {
  display: none;
  position: relative;
  /*ボタン内側の基点となるためrelativeを指定*/
  background: -webkit-gradient(linear, left top, left bottom, color-stop(48.44%, #E0B255), to(rgba(234, 204, 100, 0.51)));
  background: linear-gradient(180deg, #E0B255 48.44%, rgba(234, 204, 100, 0.51) 100%);
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  position: absolute;
  z-index: 2;
  top: 23px;
  right: 10px;
}
@media screen and (max-width: 768px) {
  .openbtn1 {
    display: block;
    position: fixed;
  }
}

/*ボタン内側*/
.openbtn1 span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: #fff;
  width: 45%;
}

.openbtn1 span:nth-of-type(1) {
  top: 15px;
}

.openbtn1 span:nth-of-type(2) {
  top: 23px;
}

.openbtn1 span:nth-of-type(3) {
  top: 31px;
}

/*activeクラスが付与されると線が回転して×に*/
.openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
  /*真ん中の線は透過*/
}

.openbtn1.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  -webkit-transform: translateY(-6px) rotate(45deg);
          transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

.menu_active {
  display: block;
}

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

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

.mv {
  background: -webkit-gradient(linear, left top, left bottom, from(#DDDDDC), to(#F3F2EE));
  background: linear-gradient(to bottom, #DDDDDC, #F3F2EE);
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .mv {
    margin-bottom: 0;
  }
}
.mv__top {
  background: rgb(255, 202, 60);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 25px;
}
@media screen and (max-width: 768px) {
  .mv__top {
    padding: 10px;
  }
}
.mv__top p {
  position: relative;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  background: #fff;
  padding: 9px 9px 12px;
  max-width: 864.54px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .mv__top p {
    font-size: 14px;
    padding: 2px;
  }
}
@media screen and (max-width: 576px) {
  .mv__top p {
    font-size: 11px;
    padding: 0 0 2px;
  }
}
.mv__top p strong {
  color: #F1924F;
}
.mv__top p strong span {
  font-size: 28px;
  font-style: italic;
}
@media screen and (max-width: 768px) {
  .mv__top p strong span {
    font-size: 20px;
  }
}
@media screen and (max-width: 576px) {
  .mv__top p strong span {
    font-size: 16px;
  }
}
.mv__top p::before, .mv__top p::after {
  content: "";
  height: 100%;
  border-top: 28px solid transparent;
  border-bottom: 28px solid transparent;
  position: absolute;
  top: 0;
}
@media screen and (max-width: 768px) {
  .mv__top p::before, .mv__top p::after {
    border-top-width: 16px;
    border-bottom-width: 16px;
  }
}
@media screen and (max-width: 576px) {
  .mv__top p::before, .mv__top p::after {
    border-top-width: 13px;
    border-bottom-width: 13px;
  }
}
.mv__top p::before {
  border-left: 30px solid rgb(255, 202, 60);
  left: 0;
}
@media screen and (max-width: 768px) {
  .mv__top p::before {
    border-left-width: 13px;
  }
}
.mv__top p::after {
  border-right: 30px solid rgb(255, 202, 60);
  right: 0;
}
@media screen and (max-width: 768px) {
  .mv__top p::after {
    border-right-width: 13px;
  }
}
.mv__inner {
  max-width: 1019px;
  width: 100%;
  margin: 0 auto;
  padding-left: 45px;
}
@media screen and (max-width: 768px) {
  .mv__inner {
    padding: 55% 10px 5px;
    position: relative;
  }
}
@media screen and (max-width: 576px) {
  .mv__inner {
    padding-top: 250px;
  }
}
.mv__middle {
  background-image: url(../img/mv_bk.png);
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .mv__middle {
    background-image: url(../img/sp_mv.png);
  }
}
@media screen and (max-width: 576px) {
  .mv__middle {
    background-position: center;
    margin-bottom: 20px;
  }
}
.mv__medal {
  width: 130px;
  position: relative;
  top: -10px;
  left: 20px;
}
@media screen and (max-width: 768px) {
  .mv__medal {
    position: absolute;
    top: 10px;
  }
}
.mv__title {
  text-align: center;
  padding-right: 65px;
  margin-top: -32px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .mv__title {
    padding-right: 0px;
    margin-top: 0px;
    margin-bottom: 15px;
  }
}
.mv__catchCP {
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  font-style: italic;
  padding: 4px 12px;
  max-width: 600px;
  width: 100%;
  margin-bottom: 55px;
  color: #fff;
  background: #FF8E4C;
}
@media screen and (max-width: 768px) {
  .mv__catchCP {
    position: absolute;
    left: 0;
    bottom: 45%;
    font-size: 20px;
    padding: 0 32px 0 3px;
    max-width: 460px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 576px) {
  .mv__catchCP {
    font-size: 13px;
    max-width: 310px;
    bottom: calc(47% + 10px);
    top: auto;
  }
}
.mv__catchCP span {
  font-size: 27px;
  color: #FFE356;
}
@media screen and (max-width: 768px) {
  .mv__catchCP span {
    font-size: 23px;
  }
}
@media screen and (max-width: 576px) {
  .mv__catchCP span {
    font-size: 15px;
  }
}
.mv__crown {
  width: 528px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .mv__crown {
    width: 100%;
    position: relative;
    margin-bottom: 10px;
  }
}
.mv .reserch {
  line-height: 1.2;
  font-size: 7px;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .mv .reserch {
    padding-bottom: 0px;
    padding-bottom: 0px;
    font-size: 5px;
  }
}

.pc-none .pc-none--bk {
  background-color: #f5f5f5;
}
.pc-none .sp-title-warp {
  position: relative;
  top: -80px;
}

.price {
  margin-bottom: 87px;
}
@media screen and (max-width: 576px) {
  .price {
    margin-bottom: 10px;
  }
}
.price__inner {
  max-width: 1020px;
  width: 100%;
  margin: 0 auto;
  border: 3px solid rgb(255, 142, 76);
}
.price__h1 {
  text-align: center;
  padding: 17px 0 20px;
  width: 100%;
  margin: 0 auto;
  background-color: rgb(255, 142, 76);
  color: #fff;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .price__h1 {
    padding: 10px;
  }
}
@media screen and (max-width: 576px) {
  .price__h1 {
    padding: 3px;
    margin-bottom: 20px;
  }
}
.price__h1 span {
  background-color: #fff;
  color: rgb(255, 142, 76);
  display: inline-block;
  line-height: 1;
  padding: 6px;
  padding-right: 12px;
}
@media screen and (max-width: 768px) {
  .price__h1 span {
    padding: 3px 5px;
    padding-right: 10px;
  }
}
.price__wrap {
  width: 88.8%;
  margin: 0 auto;
}
.price__menu {
  background: #F2F2F2;
  padding: 30px 42px;
  margin-bottom: 10px;
}
@media screen and (max-width: 992px) {
  .price__menu {
    padding: 40px 8px 30px;
  }
}
@media screen and (max-width: 768px) {
  .price__menu {
    padding: 14px 8px 8px;
  }
}
.price__menu--top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 992px) {
  .price__menu--top {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .price__menu--top {
    margin-bottom: 5px;
  }
}
.price__menu--top img {
  width: 206px;
}
@media screen and (max-width: 992px) {
  .price__menu--top img {
    position: absolute;
    top: -52px;
    left: -22px;
    width: 180px;
  }
}
@media screen and (max-width: 768px) {
  .price__menu--top img {
    width: 140px;
    top: -36px;
  }
}
@media screen and (max-width: 576px) {
  .price__menu--top img {
    top: -28px;
    width: 100px;
    left: -15px;
  }
}
.price__menu--top p {
  font-size: 110px;
  font-style: italic;
  font-weight: 900;
  margin-left: -4px;
}
@media screen and (max-width: 992px) {
  .price__menu--top p {
    font-size: 12.3vw;
    margin-left: 22%;
  }
}
@media screen and (max-width: 768px) {
  .price__menu--top p {
    margin-left: 100px;
  }
}
@media screen and (max-width: 576px) {
  .price__menu--top p {
    margin-left: 54px;
  }
}
.price__menu--top p small {
  font-size: 27.5px;
  margin-left: -10px;
}
@media screen and (max-width: 992px) {
  .price__menu--top p small {
    font-size: 3.6vw;
  }
}
@media screen and (max-width: 576px) {
  .price__menu--top p small {
    margin-left: -5px;
  }
}
.price__menu--bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 576px) {
  .price__menu--bottom {
    gap: 5px;
  }
}
.price__menu--bottom li {
  text-align: center;
  font-weight: 900;
  max-width: 240px;
  width: 30%;
  padding: 10px;
  color: #FF8E4C;
  background: #fff;
  border: 1px solid #FF8E4C;
}
@media screen and (max-width: 768px) {
  .price__menu--bottom li {
    font-size: 16px;
    padding: 5px;
  }
}
@media screen and (max-width: 576px) {
  .price__menu--bottom li {
    font-size: 12px;
    padding: 0 2px;
  }
}
.price__text {
  text-align: center;
  margin-bottom: 2px;
}
.price__cta {
  font-size: 32px;
  font-weight: bold;
  font-style: italic;
  height: 110px;
  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;
  gap: 80px;
  color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(#06C755), color-stop(60%, #11B755), to(#10B051));
  background: linear-gradient(to bottom, #06C755 0%, #11B755 60%, #10B051 100%);
  border-radius: 80px;
  margin-bottom: 20px;
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 992px) {
  .price__cta {
    font-size: 24px;
    gap: 40px;
    height: 80px;
  }
}
@media screen and (max-width: 576px) {
  .price__cta {
    font-size: 16px;
    height: 64px;
    gap: 15px;
    max-width: 308px;
    margin: 0px auto 20px;
  }
}
.price__cta::before {
  content: "";
  width: 64px;
  height: 61px;
  background: url(../img/line.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
@media screen and (max-width: 992px) {
  .price__cta::before {
    width: 50px;
    height: 48px;
  }
}
@media screen and (max-width: 576px) {
  .price__cta::before {
    width: 28px;
    height: 26px;
  }
}
.price__cta::after {
  content: "";
  width: 32px;
  height: 15px;
  background: url(../img/arrow_btn.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 576px) {
  .price__cta::after {
    width: 15px;
    height: 15px;
  }
}
.price__cta:hover {
  opacity: 0.8;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.price__card {
  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;
  gap: 15px;
  border: 1px solid #DDDDDC;
  background: #F1F6F7;
  padding: 12px 35px;
  margin-bottom: 30px;
}
@media screen and (max-width: 576px) {
  .price__card {
    padding: 10px 15px;
    gap: 8px;
    margin-bottom: 25px;
  }
}
.price__card p {
  font-size: 14px;
  font-weight: bold;
}
@media screen and (max-width: 576px) {
  .price__card p {
    font-size: 10px;
    line-height: 1.1;
  }
}
.price__card ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 60%;
}
.price__card li {
  width: 16.4%;
}

.review {
  margin-bottom: 91px;
}
@media screen and (max-width: 576px) {
  .review {
    margin-bottom: 40px;
  }
}
.review .review__reviewerListItem.slick__slide {
  margin-top: 50px;
  margin-bottom: 50px;
}
.review__title {
  margin-bottom: 36px;
}
.review__catchCP {
  text-align: center;
  margin-bottom: 19px;
}
.review__reviewer {
  background-image: url(../img/pseudo.png);
  background-size: 100%;
  position: relative;
}
.review__reviewerListBox {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  padding-top: 37px;
  position: relative;
}
@media screen and (max-width: 992px) {
  .review__reviewerListBox {
    max-width: 600px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .review__reviewerListBox {
    padding: 0;
  }
}
.review__reviewerListBox .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
.review__reviewerListItem {
  background-color: #fff;
  padding: 33px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 2.5198462009px 3.7797691822px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 2.5198462009px 3.7797691822px 0px rgba(0, 0, 0, 0.16);
  margin-bottom: 5px;
}
@media screen and (max-width: 992px) {
  .review__reviewerListItem {
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .review__reviewerListItem {
    padding: 28px;
  }
}
.review__reviewerListItem h3 {
  margin-bottom: 17px;
}
@media screen and (max-width: 576px) {
  .review__reviewerListItem h3 {
    margin-bottom: 13px;
  }
}
.review__reviewerListItem img {
  margin: 0 auto 25.8px;
}

@media screen and (max-width: 992px) {
  .slick-list {
    padding: 5% !important;
  }
}

.slick-slide {
  height: auto !important;
}

button.slick-prev,
button.slick-next {
  background-color: transparent;
  width: 73px;
  height: 73px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: absolute;
  top: 50%;
  z-index: 2;
  color: transparent;
}
@media screen and (max-width: 768px) {
  button.slick-prev,
  button.slick-next {
    width: 58px;
    height: 58px;
  }
}

button.slick-prev::before,
button.slick-next::before {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
}

button.slick-arrow.slick-next {
  right: 33.2%;
  -webkit-transform: translate(40%, -25%);
          transform: translate(40%, -25%);
}
@media screen and (max-width: 992px) {
  button.slick-arrow.slick-next {
    right: 5%;
    -webkit-transform: translate(25%, -25%);
            transform: translate(25%, -25%);
  }
}
@media screen and (max-width: 768px) {
  button.slick-arrow.slick-next {
    right: 0%;
    -webkit-transform: translate(-10%, -25%);
            transform: translate(-10%, -25%);
  }
}

button.slick-arrow.slick-prev {
  left: 33.2%;
  -webkit-transform: translate(-40%, -25%);
          transform: translate(-40%, -25%);
}
@media screen and (max-width: 992px) {
  button.slick-arrow.slick-prev {
    left: 5%;
    -webkit-transform: translate(-25%, -25%);
            transform: translate(-25%, -25%);
  }
}
@media screen and (max-width: 768px) {
  button.slick-arrow.slick-prev {
    left: 0;
    -webkit-transform: translate(10%, -25%);
            transform: translate(10%, -25%);
  }
}

button.slick-arrow.slick-prev::before {
  background-image: url("../img/prev-arrow.png");
}

button.slick-arrow.slick-next::before {
  background-image: url("../img/next-arrow.png");
}

@media screen and (max-width: 1400px) {
  .slick__slide img {
    width: 60%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .slick__slide img {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 30px;
  }
}

.slick__pagination .slick__pagination__page.is-active {
  background-color: rgb(254, 120, 37);
}

.slick-dots {
  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;
  margin: 0;
  padding: 0;
  text-align: center;
  height: 52px;
}
@media screen and (max-width: 576px) {
  .slick-dots {
    height: 42px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.slick-dots li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 10px;
}
@media screen and (max-width: 576px) {
  .slick-dots li {
    width: 8px;
    height: 8px;
    margin: 0 4px;
  }
}

.slick-dots li button {
  position: relative;
  text-indent: -9999px;
  width: 100%;
  height: 100%;
}

.slick-dots li button::before {
  content: "";
  cursor: pointer;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #CBCBCB;
}

.slick-dots li.slick-active button::before {
  background: #FE7825;
}

button {
  background: none;
  border: none;
  outline: none;
}

/* .authority__itemのcssは.problem__itemのcssをコピーしているだけで対応した 240626　開始*/

.authority {
  margin-bottom: 115px;
}
@media screen and (max-width: 992px) {
  .authority {
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 576px) {
  .authority {
    margin-bottom: 32px;
  }
}
.authority__title {
  margin-bottom: 40px;
}
.authority__imageWarp {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 992px) {
  .authority__imageWarp {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .authority__imageWarp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 992px) {
  .authority__item {
    width: 45%;
    max-width: 350px;
  }
}
@media screen and (max-width: 768px) {
  .authority__item {
    width: 90%;
    margin: 0 auto;
  }
  .authority__item img {
    width: 100%;
  }
}
@media screen and (max-width: 390px) {
  .authority__item {
    width: 100%;
  }
}

/* .authority__itemのcssは.problem__itemのcssをコピーしているだけで対応した　終了 */

.problem {
  margin-bottom: 115px;
}
@media screen and (max-width: 992px) {
  .problem {
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 576px) {
  .problem {
    margin-bottom: 32px;
  }
}
.problem__title {
  margin-bottom: 40px;
}
.problem__imageWarp {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 992px) {
  .problem__imageWarp {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .problem__imageWarp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 992px) {
  .problem__item {
    width: 45%;
    max-width: 350px;
  }
}
@media screen and (max-width: 768px) {
  .problem__item {
    width: 90%;
    margin: 0 auto;
  }
  .problem__item img {
    width: 100%;
  }
}
@media screen and (max-width: 390px) {
  .problem__item {
    width: 100%;
  }
}

.policy {
  font-size: 16px;
  min-height: calc(100vh - 260px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 120px;
}
@media screen and (max-width: 992px) {
  .policy {
    font-size: 12px;
    padding-bottom: 0;
    padding: 40px 0 0;
    margin-bottom: 40px;
    min-height: calc(100vh - 159px);
  }
}

.features {
  padding: 80px 0;
  background-color: rgb(241, 246, 247);
  text-align: center;
}
@media screen and (max-width: 576px) {
  .features {
    padding-bottom: 40px;
  }
}
.features__title {
  margin-bottom: 18px;
}
.features__subtitle-1 {
  font-size: 16px;
  font-weight: bold;
  width: 152px;
  margin: 0 auto;
  border-bottom: solid 2px rgb(34, 34, 34);
  padding-bottom: 5px;
  margin-bottom: 40px;
}
@media screen and (max-width: 576px) {
  .features__subtitle-1 {
    font-size: 14px;
  }
}
.features__catchCp {
  width: 644px;
  margin: 0 auto;
  margin-bottom: 40px;
}
@media screen and (max-width: 992px) {
  .features__catchCp {
    width: 60%;
  }
}
@media screen and (max-width: 576px) {
  .features__catchCp {
    width: 100%;
    max-width: 250px;
    margin-bottom: 20px;
  }
}
.features__subtitle-2 {
  margin-bottom: 80px;
}
@media screen and (max-width: 576px) {
  .features__subtitle-2 {
    font-size: 18px;
    margin-bottom: 40px;
  }
}
.features .sp_4step {
  margin-bottom: 55px;
}
@media screen and (max-width: 702px) {
  .features .sp_4step {
    margin-bottom: 0;
    background-color: #fff;
    padding-top: 40px;
    padding-bottom: 30px;
  }
}
.features__step {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 40px;
}
@media screen and (max-width: 390px) {
  .features__step {
    margin-bottom: 0px;
  }
}
.features__StepBox {
  max-width: 1420px;
  padding: 0 20px;
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  .features__StepBox {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 36px 20px;
  }
}
@media screen and (max-width: 702px) {
  .features__StepBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
    gap: 0;
    background: #fff;
  }
}
.features__StepItem {
  background-color: #fff;
  padding: 30px 30px 10px;
  width: 24%;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .features__StepItem {
    width: 40%;
  }
}
@media screen and (max-width: 702px) {
  .features__StepItem {
    width: 79%;
    margin: 0 auto;
    max-width: 380px;
    padding: 0 20px 40px;
  }
}
.features__StepItem img {
  width: 160px;
  display: block;
  margin: -8px auto 0;
}
.features__StepTitle {
  background-color: rgb(34, 34, 34);
  padding: 5px 0;
  width: 90%;
  margin: 0 auto;
  border-radius: 20px;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 702px) {
  .features__StepTitle {
    position: static;
    -webkit-transform: none;
            transform: none;
    margin-bottom: 14px;
  }
}
.features__StephHeadder {
  margin-bottom: 10px;
}

.diff {
  padding: 70px 0 120px 0;
}
@media screen and (max-width: 576px) {
  .diff {
    padding: 40px 0 60px;
  }
}
.diff__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 20px;
}
.diff__text {
  margin-bottom: 53px;
}
@media screen and (max-width: 576px) {
  .diff__text {
    margin-bottom: 25px;
  }
}
.diff__image {
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
  padding: 0 18px;
}
.diff__image img {
  width: 100%;
  margin-bottom: 30px;
}
@media screen and (max-width: 576px) {
  .diff__image img {
    margin-bottom: 12px;
  }
}
.diff__image p {
  font-size: 18px;
  margin-bottom: 82px;
}
@media screen and (max-width: 992px) {
  .diff__image p {
    font-size: 12px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 576px) {
  .diff__image p {
    font-size: 8px;
  }
}

.namely {
  background-image: url(../img/bk_img.png);
  background-size: 100%;
  background-position: top 40px center;
  padding: 80px 0 0 0;
  background-color: rgb(241, 246, 247);
}
@media screen and (max-width: 702px) {
  .namely {
    background-position: top 60px center;
    padding-top: 10px;
  }
}
.namely__inner {
  width: 100%;
  max-width: 1180px;
  padding: 0 20px;
  margin: 0 auto;
  margin-bottom: 80px;
}
.namely__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  padding: 75px 70px;
  gap: 30px;
}
@media screen and (max-width: 992px) {
  .namely__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 70px 35px;
  }
}
@media screen and (max-width: 702px) {
  .namely__flex {
    padding: 35px 0px;
  }
}
@media screen and (max-width: 576px) {
  .namely__flex {
    padding: 20px 0px;
  }
}
.namely__content {
  width: 58%;
}
@media screen and (max-width: 992px) {
  .namely__content {
    width: 90%;
    margin: 0 auto;
  }
}
.namely__content ul {
  margin-bottom: 20px;
}
.namely__title {
  text-align: center;
  margin-bottom: 15px;
}
.namely__text {
  padding: 15px 0;
  border-bottom: 1px dotted rgb(221, 221, 221);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 576px) {
  .namely__text {
    font-size: 17px;
  }
}
.namely__text span {
  background-color: rgb(17, 17, 17);
  color: #fff;
  font-size: 14px;
  border-radius: 50%;
  display: inline-block;
  width: 40px;
  height: 40px;
  padding: 10px 12px;
}
.namely__text:nth-of-type(1) {
  border-top: 1px dotted rgb(221, 221, 221);
}
.namely__arrow {
  width: 60px;
  margin: 0 auto;
  margin-bottom: 20px;
}
.namely__arrow img {
  width: 100%;
}
.namely__eyecatch {
  font-size: 38px;
  font-weight: bold;
  font-style: italic;
  line-height: 1.8;
  height: 560px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -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;
  background: url("../img/namely_eyecatch.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}
@media screen and (max-width: 992px) {
  .namely__eyecatch {
    height: 440px;
    font-size: 30px;
  }
}
@media screen and (max-width: 576px) {
  .namely__eyecatch {
    height: 310px;
    font-size: 19px;
  }
}
.namely__eyecatch span {
  color: #FE7825;
}

.commitment {
  padding: 0 20px;
  padding-top: 100px;
}
@media screen and (max-width: 576px) {
  .commitment {
    padding-top: 70px;
  }
}
.commitment__inner {
  max-width: 1292px;
  padding: 40px;
  margin: 0 auto;
  margin-bottom: 80px;
  border-top: solid 1px rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.16);
  position: relative;
}
@media screen and (max-width: 576px) {
  .commitment__inner {
    padding: 40px 20px 20px;
  }
}
.commitment__parent {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  grid-template-rows: repeat(3, 85px);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}
@media screen and (max-width: 702px) {
  .commitment__parent {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-template-rows: repeat(3, 120px);
  }
}
.commitment__balloon {
  font-size: 16px;
  text-align: center;
  width: 371px;
  padding: 10px;
  margin: 0 auto;
  border-radius: 50px;
  background: #111;
  color: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.commitment__balloon::after {
  content: "";
  border-top: 11px solid #111111;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 702px) {
  .commitment__balloon {
    width: 88.24%;
  }
}
.commitment__balloon img {
  width: 100%;
  margin-top: -18px;
}
.commitment__title {
  margin-bottom: 40px;
}
.commitment__title .section__title--span {
  padding: 0px;
  color: rgb(254, 120, 37);
  background-color: transparent;
}
.commitment__child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  border: 1px solid rgb(221, 221, 221);
  border-radius: 10px;
  padding: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 576px) {
  .commitment__child {
    padding: 12px 22px;
    gap: 20px;
  }
}
.commitment__child img {
  width: 40px;
}
.commitment__text {
  font-weight: bold;
}

.plan {
  padding: 80px 0;
  background-color: rgb(241, 246, 247);
}
@media screen and (max-width: 576px) {
  .plan {
    padding: 60px 0;
  }
}
.plan__title {
  margin-bottom: 75px;
}
@media screen and (max-width: 576px) {
  .plan__title {
    margin-bottom: 60px;
  }
}
.plan__StepBox {
  max-width: 1420px;
  padding: 0 20px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-grow: 4;
  justify-content: center;
  gap: 40px;
  -ms-flex-pack: distribute;
}

.plan__StepBox:has(> :nth-child(4)) {
  justify-content: start;
}

@media screen and (max-width: 992px) {
  .plan__StepBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .plan__StepBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 90%;
  }
}
@media screen and (max-width: 390px) {
  .plan__StepBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}
.plan__border {
  border: solid 3px;
}
.plan__border1 {
  border: solid 3px rgb(229, 199, 53);
}
.plan__border2 {
  border: solid 3px rgb(237, 169, 46);
}
.plan__border3 {
  border: solid 3px rgb(244, 146, 42);
}
.plan__StepItem {
  width: 22%;
  padding-bottom: 30px;
  background-color: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 1200px) {
  .plan__StepItem {
    width: 30%;
  }
}
@media screen and (max-width: 992px) {
  .plan__StepItem {
    width: 100%;
  }
}
.plan__StepItem .bk-cl-1 {
  background-color: rgb(229, 199, 53);
}
.plan__StepItem .bk-cl-2 {
  background-color: rgb(237, 169, 46);
}
.plan__StepItem .bk-cl-3 {
  background-color: rgb(244, 146, 42);
}
.plan__StepTitle {
  padding: 15px 0;
  width: 100%;
  margin: 0 auto;
}
.plan__StephHeadder {
  padding: 12px 10px;
}
.plan .boderTOP_Under1 {
  border-bottom: 3px solid rgb(229, 199, 53);
  border-top: 3px solid rgb(229, 199, 53);
}
.plan .boderTOP_Under2 {
  border-bottom: 3px solid rgb(237, 169, 46);
  border-top: 3px solid rgb(237, 169, 46);
}
.plan .boderTOP_Under3 {
  border-bottom: 3px solid rgb(244, 146, 42);
  border-top: 3px solid rgb(244, 146, 42);
}
.plan__period {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 50px 0 25px;
}
.plan__Text {
  padding: 0 40px 25px 40px;
  min-height: 179px;
}
@media screen and (max-width: 992px) {
  .plan__Text {
    min-height: auto;
  }
}
.plan .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgb(17, 17, 17);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 80%;
  border-radius: 30px;
  margin: 0 auto;
}
.plan .btn:hover {
  opacity: 0.8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.plan .btn a {
  display: block;
  padding: 11px;
  color: rgb(255, 255, 255);
  width: 100%;
  margin-right: 0;
}
.plan .btn img.btn-arrow {
  position: relative;
  display: block;
  right: 20px;
  pointer-events: none;
}

.faq {
  padding: 80px 0;
}
.faq__inner {
  max-width: 1180px;
  padding: 0 20px;
  width: 100%;
  margin: 0 auto;
}
.faq__title {
  margin-bottom: 40px;
}
.faq_box {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .faq_box {
    margin-bottom: 10px;
  }
}
.faq_q {
  background-color: rgb(241, 246, 247);
  border-radius: 10px;
}
.faq .q-txt {
  font-size: 16px;
  font-weight: bold;
  padding: 22px 70px 20px 110px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .faq .q-txt {
    padding: 20px 35px 20px 68px;
  }
}
.faq .q-txt::before {
  content: "Q";
  font-size: 27px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  background: #FE7825;
  position: absolute;
  left: 50px;
  top: 15px;
}
@media screen and (max-width: 768px) {
  .faq .q-txt::before {
    top: 12px;
    left: 15px;
  }
}
.faq .q-txt::after {
  content: "";
  background-image: url(../img/faq-arr.png);
  background-size: 100%;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 30px;
  top: 26px;
}
@media screen and (max-width: 768px) {
  .faq .q-txt::after {
    width: 12px;
    height: 12px;
    top: 22px;
    right: 15px;
  }
}
.faq .open .q-txt::after {
  content: "";
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.faq .qa_a {
  background-color: rgb(255, 255, 255);
  display: none;
}
.faq .a-txt {
  font-size: 16px;
  padding: 20px 35px 20px 110px;
  position: relative;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .faq .a-txt {
    padding: 20px 35px 20px 68px;
  }
}
.faq .a-txt::before {
  content: "A";
  font-size: 27px;
  font-weight: bold;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  background: #FE7825;
  position: absolute;
  left: 50px;
  top: 15px;
}
@media screen and (max-width: 768px) {
  .faq .a-txt::before {
    top: 12px;
    left: 15px;
  }
}

.faq_box:first-of-type .qa_a {
  display: block;
}

.footer {
  background-color: rgb(242, 246, 247);
}
.footer small {
  font-size: 12px;
  padding: 20px 0;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
  line-height: 1.5em;
}

.footer:has(+ .fix-cta) {
  padding-bottom: 84px;
}

.fix-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 768px) {
  .fix-cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.fix-cta .price__cta {
  margin: 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .fix-cta .price__cta {
    max-width: 550px;
  }
}
@media screen and (max-width: 576px) {
  .fix-cta .price__cta {
    max-width: 340px;
  }
}


/* Contact Form */

#contact {
  padding-top: 90px;
  min-height: calc(100vh / 2);
}

#contact .container {
  margin: 10vh auto;
}

#contact form {
  margin: 30px auto;
}

#contact .button.is-primary {
  background-color: #083979;
}

/* 240702作業　注意喚起アイコンアニメーション */

@keyframes pulse {
  0% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.05);
  }
  100% {
      transform: scale(1);
  }
}

#caution-icon, #cta-icon {
  animation: pulse 1.2s infinite;
}

/** Private mode alert */

.private-mode-alert {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.private-mode-alert .modal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 16px;
  width: 80%;
  max-width: 400px;
  text-align: center;
}

.private-mode-alert .modal img {
  width: 50%;
  margin: 0 auto;
  max-width: 200px;
}

.private-mode-alert .modal button {
  margin: 20px 0;
}

.private-mode-alert .modal button i {
  margin-left: 2px;
}

.copied-message {
  display: none;
  font-size: 10px;
  color: gray; 
  margin-top: 2px;
}
/** Private mode alert 終わり*/

/* 2025/06/11　追加　price.tplから */
.price-banner-container {
  max-width: 600px;
  margin: 0 auto 10px;
  text-align: center;
}

.payment-ok-banner {
  background-color: #e54b3a; /* Red color from image */
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  padding: 10px 0;
  position: relative;
  margin-bottom: 10px;
}

.payment-ok-banner::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #e54b3a; /* Match banner color */
}

.no-additional-fee-banner {
  background-color: #ffeb3b; /* Yellow color from image */
  color: #000; /* Assuming black text */
  font-size: 28px;
  font-weight: 900;
  padding: 10px 0;
  margin-bottom: 10px;
}

.total-price-text {
  font-size: 24px;
  font-weight: 900;
  color: #333;
  margin-bottom: 10px;
}

.final-price {
  font-size: 72px;
  font-weight: 900;
  color: #333;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
  font-family: 'Helvetica Neue';
}

.yen {
  font-size: 36px;
  vertical-align: middle;
  margin-right: 5px;
}

.tax-included {
  font-size: 18px;
  font-weight: bold;
  vertical-align: bottom;
  display: inline-block;
}

@media (max-width: 600px) {
  .payment-ok-banner {
      font-size: 30px;
  }
  .no-additional-fee-banner {
      font-size: 20px;
  }
  .total-price-text {
      font-size: 18px;
  }
  .final-price {
      font-size: 65px;
  }
  .yen {
      font-size: 24px;
  }
  .tax-included {
      font-size: 14px;
  }
   .price-box {
      padding-left: 15px;
      margin-left: 30px;
   }
}

/* 2025/06/11　asterisk.tplのcss */
.asterisk-text {
  font-size: 10px;
}