@charset "UTF-8";

/* ==================================
    メディアクエリ
===================================== */
/* フォントサイズ
    メディアクエリに変換してくれる

    @include pc-layout() {
        color: #fff;
    }
    @include sp-layout() {
        color: #000;
    }

    こんな感じで記述する。
    案件によってブレイクポイントは変更してね。
 */
/* ==================================
レイアウト
===================================== */
.l-content-wrap {
  max-width: 1300px;
  margin-right: auto;
  margin-left: auto;
  box-sizing: content-box;
  padding-right: 100px;
  padding-left: 100px;
}

@media only screen and (max-width: 767px) {
  .l-content-wrap {
    max-width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    box-sizing: border-box;
  }
}

@media only screen and (max-width: 767px) {
  .l-spinner {
    width: 85%;
    margin: 0 auto;
  }
}

/* レイアウト */
.l-content-wrap-default {
  position: relative;
  max-width: 1024px;
  margin-right: auto;
  margin-left: auto;
  box-sizing: content-box;
  padding-right: 2.4%;
  padding-left: 2.4%;
}

@media only screen and (max-width: 767px) {
  .l-content-wrap-default {
    max-width: 100%;
    padding-right: 5%;
    padding-left: 5%;
    box-sizing: border-box;
  }
}

/* destyle.css v4.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -webkit-tap-highlight-color: transparent;
  /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  /* 1 */
  -moz-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
  /* 2 */
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  cursor: pointer;
}

button:disabled,
[type="button"]:disabled,
[type="reset"]:disabled,
[type="submit"]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the outline style in Safari.
 */
[type="search"] {
  outline-offset: -2px;
  /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Fix appearance for Firefox
 */
[type="number"] {
  -moz-appearance: textfield;
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit;
  /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

* {
  font-family: "游ゴシック", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

body {
  font-size: 16px;
  color: #333;
  width: 100vw;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
dt,
dd,
th,
td,
a,
button {
  line-height: 1.6;
}

.u-sp {
  display: block;
}

.u-sp_inline {
  display: inline-block;
}

@media only screen and (min-width: 768px) {
  .u-sp,
  .u-sp_inline {
    display: none;
  }
}

.u-pc {
  display: none !important;
}

@media only screen and (min-width: 768px) {
  .u-pc {
    display: block !important;
  }
}

.c-txt-center {
  text-align: center;
}

.c-txt-right {
  text-align: right;
}

img {
  max-width: 100%;
  display: block;
}

.l-header {
  width: 100%;
  background-color: #fff;
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
}

.l-header__inner {
  padding: 23px 15px;
  position: relative;
}

@media only screen and (min-width: 768px) {
  .l-header__inner {
    padding: 15px 30px;
  }
}

.l-header__logo {
  height: 23px;
}

@media only screen and (min-width: 768px) {
  .l-header__logo {
    height: 35px;
  }
}

.l-header__logo img {
  height: 100%;
}

.l-header__login {
  width: 34px;
  height: 33px;
  position: absolute;
  top: 50%;
  right: 55px;
  transform: translateY(-50%);
  transition: 0.3s ease-in-out;
}

@media only screen and (min-width: 768px) {
  .l-header__login {
    right: 95px;
  }
}

.l-header__login img {
  height: 100%;
}

.l-header__close,
.l-header__menu {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s ease-in-out;
}

.l-header__close {
  width: 25px;
  height: 33px;
  opacity: 0;
  visibility: hidden;
}

.l-header .c-button {
  position: relative;
  display: inline-block;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.l-header .p-hamburger {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  width: 34px;
  height: 28px;
  margin: auto;
  border-radius: 50%;
  outline: none;
  transition: 0.3s ease-in-out;
}

@media only screen and (min-width: 768px) {
  .l-header .p-hamburger {
    right: 40px;
  }
}

.l-header .u-visuallyHidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  margin: -1px;
}

.l-header__cover {
  width: 100%;
  height: 100vh;
  background-color: rgb(0 0 0 / 66%);
  position: fixed;
  top: 80px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}

@media screen and (min-width: 821px) {
  .l-header__cover {
    top: 0;
  }
}

.l-header__nav {
  width: 100%;
  height: calc(100vh - 68px);
  padding: 0 0 35px;
  background-color: #302a28;
  position: fixed;
  top: 68px;
  right: 0;
  overflow: scroll;
  opacity: 0;
  box-shadow: -5px 0px 5px rgba(49, 49, 49, 0.767);
  visibility: hidden;
  transition: 0.3s ease-in-out;
  z-index: 2;
}

@media only screen and (min-width: 768px) {
  .l-header__nav {
    max-width: 600px;
    padding: 100px 40px 30px;
    top: 0px;
    height: 100vh;
  }
}

.l-header__nav p {
  text-align: center;
  color: #808080;
  font-size: 10px;
}

@media screen and (min-width: 821px) {
  .l-header__nav p {
    font-size: 14px;
  }
}

.l-header__nav .l-column__blocks {
  margin-bottom: 25px;
  padding: 0 15px;
  display: flex;
  justify-content: flex-start;
}

@media only screen and (min-width: 768px) {
  .l-header__nav .l-column__blocks {
    margin-bottom: 15px;
    padding: 0 25px 0 20px;
  }
}

.l-header__nav .l-column__blocks a {
  width: 48%;
}

@media only screen and (min-width: 768px) {
  .l-header__nav .l-column__blocks a {
    width: 100%;
  }
}

.l-header__nav .l-column__blocks a:not(:first-child) {
  margin-left: 4%;
}

@media only screen and (min-width: 768px) {
  .l-header__nav .l-column__blocks a:not(:first-child) {
    margin-left: 2%;
  }
}

.l-header__nav .l-header__list {
  margin-bottom: 10px;
  margin-left: auto;
}

@media only screen and (min-width: 768px) {
  .l-header__nav .l-header__list {
    margin-bottom: 5px;
    display: flex;
    flex-wrap: wrap;
  }
}

@media only screen and (min-width: 768px) {
  .l-header__nav .l-header__list li {
    width: 100%;
  }
  .l-header__nav .l-header__list li:last-child a {
    border-bottom: none;
  }
}

.l-header__nav .l-header__list li a {
  padding: 15px;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.12em;
  display: block;
  border-bottom: 1px solid #333;
  position: relative;
}

@media only screen and (min-width: 768px) {
  .l-header__nav .l-header__list li a {
    font-size: 24px;
  }
}

.l-header__nav .l-header__list li a:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%) rotate(-45deg);
}

.l-header__nav .l-header__txt {
  padding: 15px 0;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.5;
  background-color: #e2e2e2;
  text-align: center;
}

@media only screen and (min-width: 768px) {
  .l-header__nav .l-header__txt {
    font-size: 20px;
  }
}

.l-header__nav .l-header__support {
  padding: 20px 15px 0 30px;
  background-color: #fafafa;
}

@media only screen and (min-width: 768px) {
  .l-header__nav .l-header__support img {
    max-width: 450px;
    margin: 0 auto;
  }
}

.l-header__nav .l-header__contact {
  padding: 0 15px;
}

@media only screen and (min-width: 768px) {
  .l-header__nav .l-header__contact {
    padding: 0 15px;
    flex-wrap: wrap;
  }
}

@media only screen and (min-width: 768px) {
  .l-header__nav .l-header__contact li {
    width: 100%;
  }
}

.l-header__nav .l-header__label {
  height: 19px;
  margin-bottom: 10px;
}

@media only screen and (min-width: 768px) {
  .l-header__nav .l-header__label {
    height: 20px;
    margin-bottom: 10px;
  }
}

.l-header__nav .l-header__label--tel,
.l-header__nav .l-header__label--line {
  height: 24px;
}

@media only screen and (min-width: 768px) {
  .l-header__nav .l-header__label--tel,
  .l-header__nav .l-header__label--line {
    height: 25px;
  }
}

@media only screen and (min-width: 768px) {
  .l-header__nav .l-header__label--chat {
    height: 22px;
  }
}

.l-header__nav .l-header__btn {
  margin-bottom: 10px;
  display: inline-block;
}

.l-header__nav dl {
  margin-bottom: 12px;
}

@media only screen and (min-width: 768px) {
  .l-header__nav dl {
    margin-bottom: 15px;
  }
}

.l-header__nav dl dt {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.12em;
}

@media only screen and (min-width: 768px) {
  .l-header__nav dl dt {
    font-size: 14px;
  }
}

.l-header__nav dl dd {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

@media only screen and (min-width: 768px) {
  .l-header__nav dl dd {
    line-height: 1.5;
  }
}

.l-header__nav dl dd span {
  font-size: 12px;
}

.l-header__nav dl dd span.un-notice {
  letter-spacing: normal;
}

body.is-drawerActive .l-header {
  background: #302a28;
}

@media screen and (min-width: 821px) {
  body.is-drawerActive .l-header {
    background: none;
  }
}

body.is-drawerActive .l-header__menu {
  opacity: 0;
  visibility: hidden;
}

body.is-drawerActive .l-header__close {
  opacity: 1;
  visibility: visible;
}

body.is-drawerActive .l-header__cover {
  opacity: 1;
  visibility: visible;
}

body.is-drawerActive .l-header__nav {
  opacity: 1;
  visibility: visible;
}

@media screen and (min-width: 821px) {
  body.is-drawerActive .l-header__nav::before {
    content: "";
    width: 100%;
    height: 100px;
    position: absolute;
    top: -100px;
    left: 0;
    background: #000;
    z-index: 1;
  }
}

.l-main {
  padding-top: 53px;
  overflow: hidden;
}

.l-main-content {
  padding-top: 53px;
  margin-top: -53px;
}

.p-mv {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}

.p-mv img {
  margin: 0 auto;
}

.p-mv__bnr {
  margin-top: -1px;
  position: relative;
  z-index: 3;
}

@media only screen and (min-width: 768px) {
  .p-mv__bnr {
    width: 69%;
    margin: -9vw auto 0;
  }
}

.p-mv__hukidashi {
  max-width: 146px;
  width: 39%;
  position: absolute;
  top: -60px;
  left: 0;
}

@media only screen and (min-width: 768px) {
  .p-mv__hukidashi {
    max-width: initial;
    width: 20%;
    position: absolute;
    top: -3vw;
    left: 30px;
  }
}

.p-mv__btnEntry {
  position: absolute;
}

@media only screen and (max-width: 767px) {
  .p-mv__btnEntry {
    width: 88%;
    bottom: 8%;
    left: calc(50% + 5px);
    transform: translateX(-50%);
  }
}

@media only screen and (min-width: 768px) {
  .p-mv__btnEntry {
    width: 46.5%;
    bottom: 13.5%;
    right: 5.5%;
  }
}

.p-fixed__btn {
  max-width: 250px;
  width: 19.2%;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 7;
}

@media only screen and (max-width: 767px) {
  .p-fixed__btn {
    max-width: 50vw;
    width: 100%;
    bottom: 5px;
    left: 0;
  }

  .p-fixed__btn:nth-of-type(2) {
    right: 5px;
    left: auto;
  }
}

.p-about {
  padding: 40px 0 75px;
  position: relative;
}

@media only screen and (min-width: 768px) {
  .p-about {
    padding: 55px 0 50px;
  }

  .p-about::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: center/cover no-repeat url(../img/bg_about.jpg);
    z-index: -1;
  }
}

.p-about::after {
  right: 0;
}

.p-about__ttl {
  width: 49.6%;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}

@media only screen and (min-width: 768px) {
  .p-about__ttl {
    width: 18.3076923077%;
    margin-bottom: 60px;
  }
}

.p-about__sticky {
  margin-top: -140px;
  margin-bottom: 25px;
}

@media only screen and (min-width: 768px) {
  .p-about__sticky {
    margin-top: 0;
  }
}

@media only screen and (min-width: 1100px) {
  .p-about__sticky {
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 50px;
    position: -webkit-sticky;
    position: sticky;
    top: 150px;
  }
}

@media only screen and (min-width: 768px) {
  .p-about__img {
    width: 70%;
    margin: 0 auto 100px;
  }
}

@media only screen and (min-width: 1100px) {
  .p-about__img {
    width: 40%;
    transform: translateX(60%);
  }
}

@media only screen and (min-width: 768px) {
  .p-about__wrap {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media only screen and (min-width: 1100px) {
  .p-about__wrap {
    max-width: initial;
    min-width: 500px;
    width: 38.4615384615%;
    margin-top: -40vw;
    margin-right: auto;
    margin-left: auto;
    padding: 50px 35px;
    background-color: #fff;
    transform: translateX(-60%);
    position: relative;
  }
}

.p-about__hodai {
  height: 20px;
  margin: 0 auto 10px;
}

.p-about__num {
  height: 31px;
  margin: 0 auto 10px;
}

.p-about__num--01 {
  height: 31px;
  margin: 0 auto 10px;
  transform: translateX(-5px);
}

.p-about__plan {
  height: 29px;
  margin: 0 auto 15px;
}

.p-about__minites {
  height: 17px;
  margin: 0 auto 15px;
}

.p-about__movieWrap {
  max-width: 600px;
  margin: 0 auto;
}

.p-about__movieWrap .p-about__inner {
  width: 85%;
  margin: 0 auto 55px;
  padding-top: 85%;
  position: relative;
}

.p-about__movieWrap iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.p-about__free {
  height: 30px;
  margin: 0 auto 25px;
}

.p-about__swiperWrap {
  overflow: hidden;
}

.p-about .swiper-about {
  position: relative;
}

.p-about__sliderWrap {
  margin-bottom: 25px;
  padding-bottom: 25px;
}

.p-about .swiper-button-next,
.p-about .swiper-rtl .swiper-button-prev {
  width: 45px;
  height: 45px;
  right: 3px;
  top: calc(50% - 20px);
}

.p-about .swiper-button-prev,
.p-about .swiper-rtl .swiper-button-next {
  width: 45px;
  height: 45px;
  left: 3px;
  top: calc(50% - 20px);
}

.p-about .swiper-button-next:after,
.p-about .swiper-rtl .swiper-button-prev:after {
  content: "";
  width: 100%;
  height: 100%;
  background: center/contain no-repeat url(../img/icon_arrow_right.png);
}

.p-about .swiper-button-prev:after,
.p-about .swiper-rtl .swiper-button-next:after {
  content: "";
  width: 100%;
  height: 100%;
  background: center/contain no-repeat url(../img/icon_arrow_right.png);
  transform: rotate(180deg);
}

.p-about .swiper-pagination-bullet-active {
  background: #ff2a05;
}

.p-about li {
  width: 100%;
  padding: 0 25px;
  flex-shrink: 0;
  position: relative;
}

@media only screen and (min-width: 768px) {
  .p-about li {
    width: 34%;
    padding: 0;
  }
}

.p-about__otoku {
  height: 29px;
  margin: 0 auto 15px;
}

.p-about__kouza {
  width: 87.5%;
  margin: auto;
  transform: translateX(1%);
}

.p-cta {
  margin-top: -30px;
  position: relative;
  z-index: 2;
}

@media only screen and (min-width: 768px) {
  .p-cta {
    margin-top: 0;
    padding: 65px 0;
  }
}

@media only screen and (min-width: 768px) {
  .p-cta__entry {
    max-width: 1324px;
    width: 69%;
    margin: 0 auto;
  }
}

.p-cta__btn {
  width: 87%;
  position: absolute;
  bottom: 7%;
  left: 51%;
  transform: translateX(-50%);
}

@media only screen and (min-width: 768px) {
  .p-cta__btn {
    max-width: 615px;
    width: 32%;
    bottom: 17%;
    left: calc(50% + 10px);
  }
}

@media only screen and (min-width: 768px) {
  .p-cta__btn {
    bottom: 19.5%;
  }
}

@media only screen and (min-width: 865px) {
  .p-cta__btn {
    bottom: 18%;
  }
}

@media only screen and (min-width: 1050px) {
  .p-cta__btn {
    bottom: 17%;
  }
}

@media only screen and (min-width: 1301px) {
  .p-cta__btn {
    bottom: 16%;
  }
}

@media only screen and (min-width: 1701px) {
  .p-cta__btn {
    bottom: 14.5%;
  }
}

.p-kouza {
  padding: 20px 15px;
  background: center/cover no-repeat url(../img/bg_kouza_sp.jpg);
  overflow: hidden;
}

@media only screen and (min-width: 768px) {
  .p-kouza {
    padding: 20px 80px 35px;
  }
}

.p-kouza__inner {
  padding: 40px 0 25px;
  background-color: #fff;
}

@media only screen and (min-width: 768px) {
  .p-kouza__inner {
    padding: 55px 0 45px;
  }
}

.p-kouza__ttl {
  height: 82px;
  margin: 0 auto 15px;
}

@media only screen and (min-width: 768px) {
  .p-kouza__ttl {
    width: 19%;
    height: auto;
    margin-bottom: 10px;
  }
}

.p-kouza__txt {
  margin-bottom: 20px;
  letter-spacing: 0.12em;
  text-align: center;
}

@media only screen and (min-width: 768px) {
  .p-kouza__txt {
    margin-bottom: 35px;
  }
}

.p-kouza__taishou {
  width: 87%;
  margin: 0 auto 20px;
}

@media only screen and (max-width: 767px) {
  .p-kouza__taishou {
    max-width: 300px;
  }
}

@media only screen and (min-width: 768px) {
  .p-kouza__taishou {
    width: 41.5%;
    margin-bottom: 50px;
  }
}

.p-kouza__categories {
  width: 87%;
  margin: 0 auto 32px;
  padding-bottom: 8px;
  display: flex;
  overflow-x: scroll;
}

@media only screen and (min-width: 768px) {
  .p-kouza__categories {
    max-width: 1200px;
    margin-bottom: 52px;
  }
}

.p-kouza__categories::-webkit-scrollbar {
  height: 8px;
  border-radius: 5px;
}

@media only screen and (min-width: 768px) {
  .p-kouza__categories::-webkit-scrollbar {
    height: 15px;
  }
}

.p-kouza__categories::-webkit-scrollbar-track {
  background-color: #ccc;
  border-radius: 10px;
}

.p-kouza__categories::-webkit-scrollbar-thumb {
  background-color: #196aff;
  border-radius: 10px;
}

.p-kouza__categories .p-kouza__category {
  width: 115px;
  padding: 14px 15px;
  font-size: 14px;
  font-weight: bold;
  border: 1px solid #d1d1d1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: 0.15s ease-in-out;
}

@media only screen and (min-width: 768px) {
  .p-kouza__categories .p-kouza__category {
    width: 130px;
    font-size: 16px;
  }
}

.p-kouza__categories .p-kouza__category.is-active {
  color: #fff;
}

.p-kouza__categories .p-kouza__category:not(:first-child) {
  border-left: none;
}

.p-kouza__categories .p-kouza__category--01.is-active {
  background-color: #00c966;
}

.p-kouza__categories .p-kouza__category--02.is-active {
  background-color: #c48de3;
}

.p-kouza__categories .p-kouza__category--03.is-active {
  background-color: #f5b100;
}

.p-kouza__categories .p-kouza__category--07 {
  font-size: 12px;
}

/*.p-kouza__categories .p-kouza__category--04 {
  font-size: 12px;
}*/
@media only screen and (min-width: 768px) {
  .p-kouza__categories .p-kouza__category--07 {
    font-size: 14px;
  }

  /*.p-kouza__categories .p-kouza__category--04 {
    font-size: 14px;
  }*/
}

.p-kouza__categories .p-kouza__category--04.is-active {
  background-color: #85c5e1;
}

.p-kouza__categories .p-kouza__category--05.is-active {
  background-color: #c6ca0f;
}

.p-kouza__categories .p-kouza__category--06.is-active {
  background-color: #cdb773;
}

.p-kouza__categories .p-kouza__category--07.is-active {
  background-color: #f86e36;
}

.p-kouza__categories .p-kouza__category--08.is-active {
  background-color: #b6aefc;
}

.p-kouza__categories .p-kouza__category--09.is-active {
  background-color: #afacd2;
}

.p-kouza__categories .p-kouza__category--10.is-active {
  background-color: #84e269;
}

.p-kouza__categories .p-kouza__category--11.is-active {
  background-color: #fa3b6c;
}

.p-kouza__categories .p-kouza__category--12.is-active {
  background-color: #ff5757;
}

.p-kouza__categories .p-kouza__category--13.is-active {
  background-color: #00bf63;
}

.p-kouza__categoryList {
  max-width: 300px;
  width: 95%;
  margin: 0 auto 25px;
  border: 1px solid #333;
  position: relative;
}

@media only screen and (min-width: 768px) {
  .p-kouza__categoryList {
    max-width: 470px;
    margin-bottom: 50px;
  }
}

.p-kouza__categoryList::before {
  content: "";
  width: 50px;
  height: 100%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: #196aff;
}

.p-kouza__categoryList::after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: calc(50% - 2px);
  right: 20px;
  transform: translateY(-50%) rotate(45deg);
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.p-kouza__categoryList .p-kouza__label {
  width: 100%;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  position: absolute;
  top: 50%;
  left: calc(50% - 25px);
  transform: translate(-50%, -50%);
  z-index: 1;
}

@media only screen and (min-width: 768px) {
  .p-kouza__categoryList .p-kouza__label {
    font-size: 20px;
  }
}

.p-kouza__categoryList select {
  width: 100%;
  padding: 14px 50px 14px 0;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  -moz-text-align-last: center;
  text-align-last: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  opacity: 0;
  position: relative;
  z-index: 2;
}

@media only screen and (min-width: 768px) {
  .p-kouza__categoryList select {
    padding: 20px 50px 20px 0;
    font-size: 20px;
  }
}

.p-kouza__categoryList select:focus {
  z-index: -1;
  opacity: 1;
}

.p-kouza__categoryList option {
  font-size: 20px;
  font-weight: bold;
}

.p-kouza__list {
  width: 87%;
  margin: 0 auto 12px;
  position: relative;
}

@media only screen and (min-width: 768px) {
  .p-kouza__list {
    max-width: 1200px;
    margin-bottom: 7px;
  }
}

.p-kouza__list .p-kouza__wrap {
  padding-bottom: 8px;
  display: flex;
  flex-wrap: wrap;
  display: none;
}

.p-kouza__list .p-kouza__wrap::-webkit-scrollbar,
.p-kouza__list .p-kouza__container::-webkit-scrollbar {
  height: 8px;
  border-radius: 5px;
}

@media only screen and (min-width: 768px) {
  .p-kouza__list .p-kouza__wrap::-webkit-scrollbar,
  .p-kouza__list .p-kouza__container::-webkit-scrollbar {
    height: 15px;
  }
}

.p-kouza__list .p-kouza__wrap::-webkit-scrollbar-track,
.p-kouza__list .p-kouza__container::-webkit-scrollbar-track {
  background-color: #ccc;
  border-radius: 10px;
}

.p-kouza__list .p-kouza__wrap::-webkit-scrollbar-thumb,
.p-kouza__list .p-kouza__container::-webkit-scrollbar-thumb {
  background-color: #196aff;
  border-radius: 10px;
}

.p-kouza__list .p-kouza__wrap.is-active {
  display: block;
}

.p-kouza__list .p-kouza__wrap + .p-kouza__wrap {
  margin-top: 30px;
}

.p-kouza__list .p-kouza__container {
  padding-bottom: 10px;
  display: flex;
  overflow-x: scroll;
}

.p-kouza__list .p-kouza__container + .p-kouza__container {
  margin-top: 15px;
}

.p-kouza__list .p-kouza__item {
  width: 185px;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  flex-shrink: 0;
  margin-right: 10px;
}

@media only screen and (min-width: 768px) {
  .p-kouza__list .p-kouza__item {
    width: 205px;
  }
}

.p-kouza__list .p-kouza__img {
  margin-bottom: 5px;
}

.p-kouza__list .p-kouza__name {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

@media only screen and (min-width: 768px) {
  .p-kouza__list .p-kouza__name {
    font-size: clamp(20px, 1.55vw, 30px);
  }
}

.p-kouza__list .p-kouza__name img {
  height: 30px;
  margin-right: 10px;
}

@media only screen and (min-width: 768px) {
  .p-kouza__list .p-kouza__name img {
    height: 50px;
  }
}

.p-kouza__list .p-kouza__price {
  width: 100%;
  margin-top: auto;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.08em;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media only screen and (min-width: 768px) {
  .p-kouza__list .p-kouza__price {
    font-size: clamp(16px, 1.24vw, 24px);
  }
}

.p-kouza__list .p-kouza__price img {
  height: 13px;
  margin-right: 5px;
}

@media only screen and (min-width: 768px) {
  .p-kouza__list .p-kouza__price img {
    width: 1.2vw;
    height: auto;
  }
}

.p-kouza__list .p-kouza__price span {
  margin-left: 2px;
  font-size: 10px;
  display: inline-block;
}

.p-kouza__btn {
  max-width: 385px;
  width: 96%;
  margin: 0 auto;
  transform: translateX(1%);
  display: block;
}

@media only screen and (min-width: 768px) {
  .p-kouza__btn {
    width: 34%;
  }
}

.p-point {
  padding-bottom: 80px;
}

@media only screen and (min-width: 768px) {
  .p-point {
    padding-bottom: 20px;
  }
}

.p-point__lead {
  margin-bottom: 25px;
}

.p-point__iina {
  width: 64%;
  margin: 0 auto 33px;
}

@media only screen and (min-width: 768px) {
  .p-point__iina {
    width: 31%;
    margin: 0 auto 88px;
  }
}

@media only screen and (min-width: 768px) {
  .p-point__list {
    width: 64%;
    margin: 0 auto;
  }
}

@media only screen and (min-width: 768px) {
  .p-point__list {
    display: flex;
    flex-wrap: wrap;
    max-width: 1000px;
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .p-point__list li:not(:last-child) {
    margin-bottom: 38px;
  }
}

.p-point__list li:nth-child(3) {
  position: relative;
}

@media only screen and (max-width: 767px) {
  .p-point__list li:nth-child(3) {
    margin-bottom: 25px;
  }
}

@media only screen and (min-width: 768px) {
  .p-point__list li:nth-child(3) {
    display: flex;
    flex-direction: column;
  }
}

.p-point__movie {
  width: 70%;
  margin: 20px auto 0;
  padding-top: 98%;
  overflow: hidden;
  position: relative;
}

@media only screen and (min-width: 768px) {
  .p-point__movie {
    width: 100%;
    margin: auto auto 0;
    padding-top: 140%;
  }
}

.p-point__movie iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.p-support {
  padding-bottom: 40px;
  background-color: #ffdcdb;
}

@media only screen and (max-width: 767px) {
  .p-support {
    margin-bottom: 90px;
  }
}

@media only screen and (min-width: 768px) {
  .p-support {
    margin-top: 25px;
    padding-bottom: 50px;
  }
}

.p-support__huan {
  width: 92%;
  margin: 0 auto;
  margin-top: -68px;
  position: relative;
  z-index: 3;
}

@media only screen and (min-width: 768px) {
  .p-support__huan {
    width: 69.5%;
    margin-top: -120px;
  }
}

.p-support__support {
  width: 94.5%;
  margin: -10px auto 0;
  position: relative;
  z-index: 2;
}

@media only screen and (max-width: 767px) {
  .p-support__support {
    transform: translateX(1.5%);
  }
}

@media only screen and (min-width: 768px) {
  .p-support__support {
    width: 46.5%;
    margin: -60px auto 0;
  }
}

.p-support__madoguchi {
  margin-top: -10px;
  position: relative;
  z-index: 1;
}

@media only screen and (min-width: 768px) {
  .p-support__madoguchi {
    width: 70%;
    margin-right: auto;
    margin-left: auto;
  }
}

.p-support__btn {
  width: 92%;
  margin: -50px auto 0;
  position: relative;
  z-index: 2;
  display: block;
}

@media only screen and (min-width: 768px) {
  .p-support__btn {
    width: 34.5%;
    margin: 0 auto;
  }
}

.p-entry {
  padding: 60px 0;
}

@media only screen and (min-width: 768px) {
  .p-entry {
    padding: 40px 0 55px;
  }
}

.p-entry__ttl {
  height: 75px;
  margin: 0 auto 30px;
}

@media only screen and (min-width: 768px) {
  .p-entry__ttl {
    width: 13.3%;
    height: auto;
    margin: 0 auto 70px;
  }
}

.p-entry__wrap {
  width: 92%;
  margin: 0 auto;
  border: 2px solid #ff2a05;
  border-bottom: 35px solid #ff2a05;
  border-radius: 5px 5px 15px 15px;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
}

@media only screen and (min-width: 768px) {
  .p-entry__wrap {
    width: 69%;
    border-width: 5px;
    border-bottom: 70px solid #ff2a05;
    border-radius: 5px 5px 25px 25px;
  }
}

.p-entry__lead {
  margin-bottom: 10px;
  padding: 14px 0;
  background-color: #ff2a05;
}

@media only screen and (min-width: 768px) {
  .p-entry__lead {
    margin-bottom: 20px;
    padding: 14px 0 24px;
  }
}

.p-entry__lead img {
  height: 49px;
  margin: 0 auto;
}

@media only screen and (min-width: 768px) {
  .p-entry__lead img {
    height: 73px;
  }
}

.p-entry__contents {
  width: 91.5%;
  margin: 0 auto 20px;
  transform: translate(3%);
}

@media only screen and (min-width: 768px) {
  .p-entry__contents {
    width: 79%;
    margin-bottom: 10px;
    transform: translate(7.5%);
  }
}

@media only screen and (min-width: 768px) {
  .p-entry .l-column__blocks {
    margin: -20px 0 5px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media only screen and (min-width: 768px) {
  .p-entry__priceWrap {
    width: 42%;
    margin-right: 1.5%;
    padding-left: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .p-entry__price {
    width: 75%;
    margin: 0 auto 5px;
  }
}

.p-entry__btn {
  width: 98%;
  display: block;
}

@media only screen and (max-width: 767px) {
  .p-entry__btn {
    margin: 0 auto;
    transform: translateX(2%);
  }
}

@media only screen and (min-width: 768px) {
  .p-entry__btn {
    width: 47%;
  }
}

.p-entry__flow {
  width: 64%;
  margin: -20px auto 23px;
}

@media only screen and (min-width: 768px) {
  .p-entry__flow {
    width: 36%;
    margin: -25px auto 45px;
  }
}

.p-entry__step {
  margin-bottom: 25px;
}

@media only screen and (min-width: 768px) {
  .p-entry__step {
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 768px) {
  .p-entry .swiper-entry {
    padding-right: 7%;
    padding-left: 7%;
  }
}

.p-entry .swiper-entry .swiper-pagination-bullet {
  width: 5px;
  height: 5px;
}

@media only screen and (min-width: 768px) {
  .p-entry .swiper-entry .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}

.p-entry .swiper-entry .swiper-pagination-bullet-active {
  background: #ff2a05;
}

.p-entry .swiper-entry .swiper-horizontal > .swiper-pagination-bullets,
.p-entry .swiper-entry .swiper-pagination-bullets.swiper-pagination-horizontal,
.p-entry .swiper-entry .swiper-pagination-custom,
.p-entry .swiper-entry .swiper-pagination-fraction {
  bottom: 20px;
}

@media only screen and (min-width: 768px) {
  .p-entry .swiper-entry .swiper-horizontal > .swiper-pagination-bullets,
  .p-entry .swiper-entry .swiper-pagination-bullets.swiper-pagination-horizontal,
  .p-entry .swiper-entry .swiper-pagination-custom,
  .p-entry .swiper-entry .swiper-pagination-fraction {
    bottom: 45px;
  }
}

.p-entry .swiper-entry .swiper-button-next,
.p-entry .swiper-entry .swiper-rtl .swiper-button-prev {
  width: 45px;
  height: 45px;
  right: -15px;
  top: calc(50% - 70px);
}

@media only screen and (min-width: 768px) {
  .p-entry .swiper-entry .swiper-button-next,
  .p-entry .swiper-entry .swiper-rtl .swiper-button-prev {
    right: 50px;
  }
}

.p-entry .swiper-entry .swiper-button-prev,
.p-entry .swiper-entry .swiper-rtl .swiper-button-next {
  width: 45px;
  height: 45px;
  left: -15px;
  top: calc(50% - 70px);
}

@media only screen and (min-width: 768px) {
  .p-entry .swiper-entry .swiper-button-prev,
  .p-entry .swiper-entry .swiper-rtl .swiper-button-next {
    left: 50px;
  }
}

.p-entry .swiper-entry .swiper-button-next:after,
.p-entry .swiper-entry .swiper-rtl .swiper-button-prev:after {
  content: "";
  width: 100%;
  height: 100%;
  background: center/contain no-repeat url(../img/icon_arrow_right.png);
}

.p-entry .swiper-entry .swiper-button-prev:after,
.p-entry .swiper-entry .swiper-rtl .swiper-button-next:after {
  content: "";
  width: 100%;
  height: 100%;
  background: center/contain no-repeat url(../img/icon_arrow_right.png);
  transform: rotate(180deg);
}

.p-entry__list {
  padding-bottom: 60px;
}

@media only screen and (min-width: 768px) {
  .p-entry__list {
    padding-bottom: 85px;
  }
}

.p-entry__list li {
  width: 100%;
  position: relative;
}

@media only screen and (min-width: 768px) {
  .p-entry__list li {
    width: 50%;
  }
}

@media only screen and (max-width: 767px) {
  .p-entry__list li:not(:last-child)::after {
    content: "";
    width: 15px;
    height: 15px;
    border-top: solid 1px #333;
    border-right: solid 1px #333;
    position: absolute;
    top: calc(50% - 40px);
    right: -15px;
    transform: rotate(45deg) translateY(-50%);
  }
}

.p-entry__list dl {
  width: 90%;
  margin: 0 auto;
}

.p-entry__list dl dt {
  width: 100%;
  min-height: 52px;
  margin-bottom: 5px;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: #ff2a05;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

@media only screen and (min-width: 768px) {
  .p-entry__list dl dt {
    min-height: 58px;
    font-size: clamp(16px, 1.24vw, 18px);
  }
}

.p-entry__list dl dd {
  font-size: 14px;
}

@media only screen and (min-width: 768px) {
  .p-entry__list dl dd {
    font-size: clamp(14px, 1.07vw, 16px);
  }
}

.p-entry__list dl dd:nth-of-type(2) {
  margin-top: 10px;
  font-size: 12px;
}

@media only screen and (min-width: 768px) {
  .p-entry__list dl dd:nth-of-type(2) {
    font-size: clamp(12px, 0.93vw, 14px);
  }
}

.p-entry__list dl dd:nth-of-type(2) a {
  border-bottom: 1px solid #333;
}

@media only screen and (min-width: 768px) {
  .p-entry__list dl dd.un-desc {
    letter-spacing: -0.06em;
  }
}

.p-faq__ttl {
  max-width: 60vw;
  margin: 15vw auto 5vw;
}

@media only screen and (min-width: 768px) {
  .p-faq__ttl {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin: 40px auto 30px;
  }
}

.p-faq__list {
  scroll-behavior: smooth;
  width: 91%;
  margin: 0 auto;
}

/* .p-faq__list dl .selected {
  width: 100%;
  margin-top: -73px;
  padding-top: 73px;
} */

@media only screen and (min-width: 768px) {
  .p-faq__list {
    max-width: 800px;
    width: 100%;
    display: block;
  }
}

.p-faq__list dt {
  margin-top: 15px;
  padding: 15px 40px 15px 60px;
  font-size: 16px;
  font-weight: bold;
  color: #e26477;
  border: 1px solid #b2b2b3;
  position: relative;
  cursor: pointer;
}

@media only screen and (min-width: 768px) {
  .p-faq__list dl {
    width: 100%;
  }

  .p-faq__list dt {
    padding: 2vw 3.5vw 2vw 5vw;
    font-size: clamp(20px, 0.5vw, 40px);
    width: 100%;
    display: block;
  }
}

.p-faq__list dt.is-open {
  border-bottom: none;
}

.p-faq__list dt::before {
  content: "";
  width: 35px;
  height: 35px;
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  background: center/contain no-repeat url(../img/icon_q_03.png);
  transition: 0.3s ease-in-out;
}

@media only screen and (min-width: 768px) {
  .p-faq__list dt::before {
    width: 35px;
    height: 35px;
    left: 3%;
  }
}

.p-faq__list dt::after {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  top: 25px;
  right: 15px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(-45deg);
  transition: 0.3s ease-in-out;
}

@media only screen and (min-width: 768px) {
  .p-faq__list dt::after {
    width: 17px;
    height: 16px;
    top: 47%;
    right: 5%;
  }
}

.p-faq__list dt.is-open::after {
  top: 18px;
  transform: rotate(135deg);
}

@media only screen and (min-width: 768px) {
  .p-faq__list dt.is-open::after {
    top: 47%;
  }
}

.p-faq__list dd {
  display: none;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  border-right: 1px solid #b2b2b3;
  border-bottom: 1px solid #b2b2b3;
  border-left: 1px solid #b2b2b3;
  position: relative;
}

.p-faq__list dd span {
  font-size: 14px;
}

@media only screen and (min-width: 768px) {
  .p-faq__list dd span {
    font-size: 1.1vw;
    font-size: clamp(12px, 1.1vw, 16px);
  }
}

@media only screen and (min-width: 768px) {
  .p-faq__list dd {
    padding: 20px 30px;
    font-size: 1.23vw;
    font-size: clamp(15px, 1.23vw, 28px);
  }
}

.p-faq__list dd::before {
  content: "";
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fceeee;
  z-index: -1;
}

@media only screen and (min-width: 768px) {
  .p-faq__list dd::before {
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    top: 50%;
  }
}

.p-faq__list dd.is-open {
  display: block;
}

.p-faq .p-faq__btn {
  padding-left: 25px;
  font-weight: bold;
  color: #32a2a2;
  position: relative;
}

.p-faq .p-faq__btn::before {
  content: "";
  width: 22px;
  height: 19px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: center/contain no-repeat url(../img/icon_triangle_02.png);
}

.p-faq .p-faq__btn span {
  border-bottom: 1px solid #32a2a2;
  display: inline-block;
}

@media only screen and (min-width: 768px) {
  .p-faq .p-faq__btn span {
    font-size: clamp(15px, 1.23vw, 28px);
  }
}

.p-faq .p-faq__modal {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 8;
  background-color: rgba(255, 255, 255, 0.5);
  display: none;
}

.p-faq .p-faq__modalInner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-faq .p-faq__modalWrap {
  width: 80%;
  position: relative;
}

@media only screen and (min-width: 768px) {
  .p-faq .p-faq__modalWrap {
    max-width: 350px;
  }
}

.p-faq .p-faq__closer {
  width: 30px;
  height: 30px;
  position: absolute;
  top: -15px;
  right: -15px;
  background-color: #fff;
  border: 1px solid #b2b2b3;
  border-radius: 50%;
}

.p-faq .p-faq__closer::before,
.p-faq .p-faq__closer::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  /* 棒の幅（太さ） */
  height: 15px;
  /* 棒の高さ */
  background: #333;
}

.p-faq .p-faq__closer::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.p-faq .p-faq__closer::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.p-faq .p-faq__closer span {
  display: none;
}

.p-contact {
  padding-top: 70px;
}

@media only screen and (min-width: 768px) {
  .p-contact {
    padding-top: 45px;
  }
}

.p-contact__ttl {
  max-width: 70vw;
  margin: 0 auto 5vw;
}

@media only screen and (min-width: 768px) {
  .p-contact__ttl {
    max-width: 300px;
    width: 100%;
    margin: 45px auto;
  }
}

.p-contact__img {
  max-width: 75vw;
  margin: 0 auto 20px;
}

@media only screen and (min-width: 768px) {
  .p-contact__img {
    max-width: 500px;
    width: 100%;
    margin-bottom: 0;
  }
}

.p-contact__txt {
  max-width: 75vw;
  margin: 0 auto 30px;
}

@media only screen and (min-width: 768px) {
  .p-contact__txt {
    max-width: 550px;
    width: 50%;
    margin: 20px auto;
  }
}

.p-contact__img--02 {
  max-width: 75vw;
  margin: 0 auto 5vw;
}

.p-contact__wrap {
  padding: 50px 15px 10px;
  background-color: #fafafa;
}

@media only screen and (min-width: 768px) {
  .p-contact__wrap {
    padding: 65px 15px 20px;
  }
}

.p-contact__support {
  max-width: 80vw;
  margin: 0 auto 10vw;
}

@media only screen and (min-width: 768px) {
  .p-contact__support {
    width: 35%;
    margin: 0 auto 55px;
  }
}

@media only screen and (min-width: 768px) {
  .p-contact__list {
    min-width: 600px;
    width: 48%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
  }
}

@media only screen and (min-width: 768px) {
  .p-contact__list li {
    width: 47%;
  }
}

@media only screen and (min-width: 768px) {
  .p-contact__list li:nth-child(even) {
    margin-left: 6%;
  }
}

.p-contact__label {
  height: 25px;
  margin-bottom: 15px;
}

@media only screen and (min-width: 768px) {
  .p-contact__label {
    height: 20px;
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 1301px) {
  .p-contact__label {
    height: 1.55vw;
  }
}

.p-contact__label--tel,
.p-contact__label--line {
  height: 30px;
}

@media only screen and (min-width: 768px) {
  .p-contact__label--tel,
  .p-contact__label--line {
    height: 25px;
  }
}

@media only screen and (min-width: 1301px) {
  .p-contact__label--tel,
  .p-contact__label--line {
    height: 1.9vw;
  }
}

@media only screen and (min-width: 768px) {
  .p-contact__label--chat {
    height: 22px;
  }
}

@media only screen and (min-width: 1301px) {
  .p-contact__label--chat {
    height: 1.7vw;
  }
}

.p-contact dl {
  margin-bottom: 15px;
}

@media only screen and (min-width: 768px) {
  .p-contact dl {
    margin-bottom: 10px;
  }
}

.p-contact dl dt {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.12em;
}

@media only screen and (min-width: 768px) {
  .p-contact dl dt {
    font-size: 14px;
    font-size: clamp(14px, 1.1vw, 20px);
  }
}

.p-contact dl dd {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.9;
}

@media only screen and (min-width: 768px) {
  .p-contact dl dd {
    line-height: 1.5;
    font-size: clamp(14px, 1.05vw, 18px);
  }

  .p-contact dl dd span {
    font-size: 12px;
    font-size: clamp(12px, 0.9vw, 18px);
  }
}

@media only screen and (min-width: 768px) and (min-width: 768px) {
  .p-contact dl dd span.un-notice {
    letter-spacing: -0.04em;
  }
}

.p-contact__btn {
  height: 40px;
  margin-bottom: 25px;
  display: inline-block;
}

@media only screen and (min-width: 1300px) {
  .p-contact__btn {
    height: 3.15vw;
  }
}

.p-contact__btn img {
  height: 100%;
}

.l-footer {
  padding-top: 35px;
}

@media only screen and (min-width: 768px) {
  .l-footer {
    padding-top: 45px;
  }
}

.l-footer__logo {
  height: 40px;
  margin: 0 auto 20px;
}

@media only screen and (min-width: 768px) {
  .l-footer__logo {
    height: 54px;
    margin-bottom: 35px;
  }
}

.l-footer__nav {
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
}

@media only screen and (min-width: 768px) {
  .l-footer__nav {
    margin-bottom: 45px;
  }
}

@media only screen and (min-width: 768px) {
  .l-footer__nav {
    justify-content: center;
  }
}

@media only screen and (max-width: 767px) {
  .l-footer__nav li:nth-child(odd) {
    width: 42%;
    margin-right: 5%;
    text-align: right;
  }
}

@media only screen and (max-width: 767px) {
  .l-footer__nav li:nth-child(even) {
    width: 49%;
  }
}

@media only screen and (min-width: 768px) {
  .l-footer__nav li:not(:first-child) {
    margin-left: 25px;
  }
}

.l-footer__nav li a {
  font-size: 14px;
  font-weight: 500;
}

@media only screen and (min-width: 768px) {
  .l-footer__nav li a {
    font-size: 16px;
  }
}

.l-footer__btn {
  max-width: 200px;
  margin: 0 auto 30px;
  display: block;
}

@media only screen and (min-width: 768px) {
  .l-footer__btn {
    max-width: 265px;
    margin-bottom: 45px;
  }
}

.l-footer__copyright {
  padding: 12px 0 78px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-align: center;
  color: #fff;
  background-color: #ff2a05;
  display: block;
}

@media only screen and (min-width: 768px) {
  .l-footer__copyright {
    font-size: 12px;
    padding: 12px 0;
  }
}

.no-scroll {
  height: 100%;
}

/* モーダルのスタイル */
.p-kouza__modal .popup-content {
  display: none;
  position: fixed;
  bottom: 0;
  left: 50%;
  /* transform: translate(-50%, 0); */
  background-color: white;
  z-index: 1000;
  max-width: 700px;
  width: 100%;
  padding: 35px 35px 65px;
  max-height: calc(100vh - 80vw);
  overflow: hidden;
}

_::-webkit-full-page-media,
_:future,
:root .p-kouza__modal .popup-content {
  max-height: calc(100% - 100px);
}

@media only screen and (min-width: 768px) {
  .p-kouza__modal .popup-content {
    bottom: 50%;
    max-height: calc(100vh - 100px);
  }
}

.cat01 button.top_close_btn.close-button {
  background: #00c966;
}

.cat02 button.top_close_btn.close-button {
  background: #c48de3;
}

.cat03 button.top_close_btn.close-button {
  background: #f5b100;
}

.cat04 button.top_close_btn.close-button {
  background: #85c5e1;
}

.cat05 button.top_close_btn.close-button {
  background: #ff5757;
}

.cat06 button.top_close_btn.close-button {
  background: #00bf63;
}

.cat07 button.top_close_btn.close-button {
  background: #c6ca0f;
}

.cat08 button.top_close_btn.close-button {
  background: #cdb773;
}

.cat09 button.top_close_btn.close-button {
  background: #f86e36;
}

.cat10 button.top_close_btn.close-button {
  background: #afacd2;
}

.cat11 button.top_close_btn.close-button {
  background: #84e269;
}

.cat_me button.top_close_btn.close-button {
  background: #ff2a05;
}

.p-kouza__modal .popup-content__box {
  margin: 0 auto;
  max-width: 700px;
  font-feature-settings: "palt";
  font-weight: bold;
  max-height: calc(100vh - 100px);
  height: 100%;
  overflow: scroll;
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
}

/*Google Chrome、Safariへの対応*/
.p-kouza__modal .popup-content__box::-webkit-scrollbar {
  display: none;
}

.p-kouza__modal .popup-content__box .c-check {
  padding-left: 1.4em;
  position: relative;
}

.p-kouza__modal .popup-content__box .c-check::before {
  content: "";
  display: inline-block;
  background-image: url(../img/modal_icon_check.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top: 4px;
}

.p-kouza__modal .popup-content__box .c-btn {
  font-size: 20px;
  font-weight: bold;
  width: 350px;
  height: 75px;
  border: 3px solid #084b91;
  border-radius: 100px;
  margin: 30px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffec3e;
  color: #084b91;
  box-shadow: 4px 4px 0px 0px #084b91;
}

.p-kouza__modal .popup-content__box .c-btn.soon {
  flex-direction: column;
  border-radius: 10px;
  box-shadow: 0px 4px 0px 0px #666;
  background-color: #999;
  color: #fff;
  border: 3px solid #999;
}

.p-kouza__modal .popup-content__box .c-btn.soon span {
  font-size: 16px;
  display: block;
  margin-top: -2px;
}

.p-kouza__modal .popup-content__box .c-ttl {
  display: flex;
  align-items: flex-end;
  position: relative;
  margin-bottom: 30px;
}

.p-kouza__modal .popup-content__box .c-ttl::after {
  content: "";
  display: inline-block;
  width: calc(100% - 100px);
  height: 2px;
  background-color: #084b91;
  position: absolute;
  bottom: 0;
  right: 0;
}

.p-kouza__modal .popup-content__box .c-ttl img {
  width: 100px;
}

.p-kouza__modal .popup-content__box .c-ttl span {
  font-size: 24px;
  font-weight: bold;
  padding-bottom: 5px;
  width: calc(100% - 100px);
}

.p-kouza__modal .popup-content__box .ttl {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3;
  position: relative;
  padding: 7px 55px;
  margin: 0 auto;
  max-width: 100%;
}

.p-kouza__modal .popup-content__box .ttl_icon {
  position: absolute;
  width: 51px;
  left: 0;
  top: calc(50% - 25px);
}

.p-kouza__modal .popup-content__box .outline {
  margin-top: 2vw;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.p-kouza__modal .popup-content__box .outline_mv {
  width: 35%;
}

.p-kouza__modal .popup-content__box .outline_mv img {
  box-shadow: 7px 7px 0px 0px #084b91;
}

.p-kouza__modal .popup-content__box .outline_txtBox {
  width: 46.2%;
}

.p-kouza__modal .popup-content__box .outline_txtBox-ttl {
  margin: 0 auto;
  width: 84px;
}

.p-kouza__modal .popup-content__box .outline_txtBox-det {
  margin-top: 20px;
}

.p-kouza__modal .popup-content__box .outline_txtBox-det dl:nth-of-type(n + 2) {
  margin-top: 13px;
}

.p-kouza__modal .popup-content__box .outline_txtBox-det dl dt {
  border-bottom: 1px solid #084b91;
}

.p-kouza__modal .popup-content__box .outline_txtBox-det dl dt span {
  background-color: #084b91;
  border-radius: 10px 10px 0 0;
  display: inline-block;
  padding: 2px 18px;
  color: #fff;
}

.p-kouza__modal .popup-content__box .outline_txtBox-det dl dd {
  margin-top: 13px;
}

.p-kouza__modal .popup-content__box .point {
  margin-top: 20px;
  border: 2px solid #084b91;
  border-radius: 20px;
  padding: 0 20px 30px;
  max-width: 60%;
}

.p-kouza__modal .popup-content__box .point_ttl {
  background-color: #fff;
  width: 274px;
  position: relative;
  top: -27px;
  margin: 0 auto;
}

.p-kouza__modal .popup-content__box .point_ttl img {
  width: 208px;
  margin: 0 auto;
}

.p-kouza__modal .popup-content__box .point_txt {
  margin: 5px auto 0;
  width: 90%;
  text-align: center;
}

.p-kouza__modal .popup-content__box .point_btn {
  margin-top: 10px;
  font-size: 13px;
  width: 90%;
  height: 55px;
}

.p-kouza__modal .popup-content__box .textmov {
  margin-top: 60px;
}

.p-kouza__modal .popup-content__box .textmov_cont-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.p-kouza__modal .popup-content__box .textmov_cont-flex-Lft {
  width: 49.3%;
  box-shadow: 0px 0px 10px #aaa;
}

.p-kouza__modal .popup-content__box .textmov_cont-flex-Rgt {
  width: 49.3%;
  position: relative;
  box-shadow: 0px 0px 10px #aaa;
}

.p-kouza__modal .popup-content__box .textmov_cont-flex-Rgt::after {
  display: none;
}

.p-kouza__modal.p-melit__modal .popup-content__box .textmov_cont-btn {
  margin: 30px auto;
  width: 90%;
  border: 3px solid rgb(245, 4, 0);
  color: rgb(245, 4, 0);
  box-shadow: 4px 4px 0px 0px rgb(245, 4, 0);
  font-size: calc(85vw / 20);
}

.p-kouza__modal .popup-content__box .howto {
  margin-top: 60px;
}

.p-kouza__modal .popup-content__box .howto_cont .c-check {
  font-weight: bold;
  font-size: 18px;
}

.p-kouza__modal .popup-content__box .howto_cont .c-check:nth-of-type(n + 2) {
  margin-top: 5px;
}

.p-kouza__modal .popup-content__box .howto_cont .c-check::before {
  top: 6px;
}

.p-kouza__modal .popup-content__box .review {
  margin-top: 60px;
}

.p-kouza__modal .popup-content__box .review_cont-btn {
  margin-top: 30px;
}

.p-kouza__modal .popup-content__box .exam {
  margin-top: 60px;
}

.p-kouza__modal .popup-content__box .exam_cont-box:nth-of-type(n + 2) {
  margin-top: 34px;
}

.p-kouza__modal .popup-content__box .exam_cont-box-ttl {
  font-weight: bold;
}

.p-kouza__modal .popup-content__box .exam_cont-box-tableWrap {
  margin-top: 8px;
}

.p-kouza__modal .popup-content__box .exam_cont-box-tableWrap table {
  width: 100%;
}

.p-kouza__modal .popup-content__box .exam_cont-box-tableWrap table,
.p-kouza__modal .popup-content__box .exam_cont-box-tableWrap td,
.p-kouza__modal .popup-content__box .exam_cont-box-tableWrap th {
  border: 1px solid #000;
  border-collapse: collapse;
}

.p-kouza__modal .popup-content__box .exam_cont-box-tableWrap td,
.p-kouza__modal .popup-content__box .exam_cont-box-tableWrap th {
  padding: 12px 18px;
}

.p-kouza__modal .popup-content__box .exam_cont-box-tableWrap th {
  width: 155px;
  background-color: #084b91;
  color: #fff;
  font-weight: bold;
}

.p-kouza__modal .popup-content__box .exam_cont-box-tableWrap td {
  width: calc(100% - 155px);
}

.p-kouza__modal .popup-content__box .recom {
  margin-top: 50px;
}

.p-kouza__modal .popup-content__box .recom_ttl {
  padding-bottom: 13px;
  border-bottom: 2px solid #084b91;
}

.p-kouza__modal .popup-content__box .recom_ttl img {
  width: 410px;
  margin: 0 auto;
  position: relative;
  left: -28px;
}

.p-kouza__modal .popup-content__box .recom_cont {
  margin-top: 29px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.p-kouza__modal .popup-content__box .recom_cont-link {
  width: 21.2%;
  margin-right: 5.0666666667%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.p-kouza__modal .popup-content__box .recom_cont-link:nth-of-type(4n) {
  margin-right: 0;
}

.p-kouza__modal .popup-content__box .recom_cont-link:nth-of-type(n + 5) {
  margin-top: 30px;
}

.p-kouza__modal .popup-content__box .recom_cont-link-ttl {
  font-size: 11px;
  font-weight: bold;
  margin-top: 10px;
  min-height: 36px;
}

.p-kouza__modal .popup-content__box .recom_btn {
  margin: 37px auto 65px;
  display: block;
  width: 384px;
  position: relative;
  left: -2px;
}

.p-kouza__modal .close-button {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  width: 20px;
  cursor: pointer;
}

.p-kouza__modal .overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 900;
  overscroll-behavior-y: contain;
}

.p-kouza__list--record {
  background-color: #f7f7f7;
  box-sizing: border-box;
  padding: 25px 50px 40px;
  margin-top: 45px;
  border-top: 10px solid #0000ff;
}

.p-kouza__list--record .p-kouza__wrap {
  display: block;
}

.p-kouza__list--record .p-kouza__name {
  padding-bottom: 10px;
  margin-bottom: 30px;
  border-bottom: 1px solid #d1d1d1;
}

.p-kouza__modal .popup-content__box .point_ttl {
  width: 100%;
  top: -17px;
}

@media only screen and (max-width: 767px) {
  /* モーダルのスタイル */
  .p-kouza__modal .popup-content {
    max-width: 100%;
    width: 100%;
    padding: 30px 0;
    max-height: calc(100vh - 50px);
  }

  .p-kouza__modal .popup-content__box {
    width: 100%;
    padding: 30px;
  }

  .p-kouza__modal .popup-content__box .c-btn {
    width: 260px;
    height: 64px;
    border: 2px solid #084b91;
    box-shadow: 3px 3px 0px 0px #084b91;
  }

  .p-kouza__modal .popup-content__box .c-ttl {
    position: relative;
    margin-bottom: 30px;
  }

  .p-kouza__modal .popup-content__box .c-ttl::after {
    width: calc(100% - 70px);
    height: 1px;
  }

  .p-kouza__modal .popup-content__box .c-ttl img {
    width: 70px;
  }

  .p-kouza__modal .popup-content__box .c-ttl span {
    font-size: 19px;
    padding-bottom: 5px;
    width: calc(100% - 70px);
  }

  .p-kouza__modal .popup-content__box .ttl {
    text-align: left;
    font-size: 20px;
    padding: 15px 0;
    margin: 0 auto;
  }

  .p-kouza__modal .popup-content__box .ttl_icon {
    top: calc(50% - 20px);
    width: 40px;
  }

  .p-kouza__modal .popup-content__box .ttl_txt {
    line-height: 1.2;
  }

  .p-kouza__modal .popup-content__box .outline {
    font-size: 0.85em;
  }

  .p-kouza__modal .popup-content__box .outline_mv {
    width: 40%;
  }

  .p-kouza__modal .popup-content__box .outline_mv img {
    box-shadow: 5px 5px 0px 0px #084b91;
  }

  .p-kouza__modal .popup-content__box .outline_txtBox {
    width: 55%;
  }

  .p-kouza__modal .popup-content__box .outline_txtBox-ttl {
    margin: 0 auto;
    width: 78px;
  }

  .p-kouza__modal .popup-content__box .outline_txtBox-det {
    margin-top: 0;
  }

  .p-kouza__modal .popup-content__box .outline_txtBox-det dl:nth-of-type(n + 2) {
    margin-top: 13px;
  }

  .p-kouza__modal .popup-content__box .outline_txtBox-det dl dt span {
    border-radius: 16px 16px 0 0;
    padding: 4px 18px;
  }

  .p-kouza__modal .popup-content__box .outline_txtBox-det dl dd {
    margin-top: 12px;
  }

  .p-kouza__modal .popup-content__box .point {
    margin-top: 70px;
    border-radius: 14px;
    padding: 0 30px 34px;
  }

  .p-kouza__modal .popup-content__box .point_ttl {
    width: 230px;
    top: -24px;
  }

  .p-kouza__modal .popup-content__box .point_ttl img {
    width: 208px;
  }

  .p-kouza__modal .popup-content__box .point_txt {
    margin: 5px auto 0;
    width: 100%;
    font-size: 16px;
    text-align: justify;
  }

  .p-kouza__modal .popup-content__box .point_btn {
    margin-top: 26px;
    font-size: 18px;
  }

  .p-kouza__modal .popup-content__box .textmov {
    margin-top: 40px;
  }

  .p-kouza__modal .popup-content__box .textmov_cont-flex {
    display: block;
  }

  .p-kouza__modal .popup-content__box .textmov_cont-flex-Lft {
    width: 100%;
  }

  .p-kouza__modal .popup-content__box .textmov_cont-flex-Rgt {
    width: 100%;
    position: relative;
    margin-top: 20px;
  }

  .p-kouza__modal .popup-content__box .howto_cont .c-check {
    font-size: 17px;
  }

  .p-kouza__modal .popup-content__box .howto_cont .c-check:nth-of-type(n + 2) {
    margin-top: 6px;
  }

  .p-kouza__modal .popup-content__box .howto_cont .c-check::before {
    top: 5px;
  }

  .p-kouza__modal .popup-content__box .exam_cont-box:nth-of-type(n + 2) {
    margin-top: 48px;
  }

  .p-kouza__modal .popup-content__box .exam_cont-box-tableWrap {
    margin-top: 8px;
  }

  .p-kouza__modal .popup-content__box .exam_cont-box-tableWrap td,
  .p-kouza__modal .popup-content__box .exam_cont-box-tableWrap th {
    padding: 10.7px 5px;
    font-size: 15px;
  }

  .p-kouza__modal .popup-content__box .exam_cont-box-tableWrap th {
    width: 80px;
  }

  .p-kouza__modal .popup-content__box .exam_cont-box-tableWrap td {
    width: calc(100% - 80px);
  }

  .p-kouza__modal .popup-content__box .recom_ttl {
    padding-bottom: 13px;
  }

  .p-kouza__modal .popup-content__box .recom_ttl img {
    width: 190px;
    margin: 0 auto;
    position: relative;
    left: -5px;
  }

  .p-kouza__modal .popup-content__box .recom_cont {
    margin-top: 17px;
  }

  .p-kouza__modal .popup-content__box .recom_cont-link {
    display: block;
    width: 47%;
    margin-right: 6%;
    text-align: center;
  }

  .p-kouza__modal .popup-content__box .recom_cont-link:nth-of-type(4n) {
    margin-right: 6%;
  }

  .p-kouza__modal .popup-content__box .recom_cont-link:nth-of-type(2n) {
    margin-right: 0;
  }

  .p-kouza__modal .popup-content__box .recom_cont-link:nth-of-type(n + 3) {
    margin-top: 23px;
  }

  .p-kouza__modal .popup-content__box .recom_cont-link-ttl {
    font-size: 12px;
    margin-top: 7px;
    line-height: 1.4;
  }

  .p-kouza__modal .popup-content__box .recom_btn {
    margin: 0 auto 65px;
    width: 296px;
    left: 4px;
  }

  .p-kouza__list--record {
    padding: 18px 17px 40px;
    margin-top: 35px;
    border-top: 5px solid #0000ff;
  }

  .p-kouza__list--record .p-kouza__name {
    padding-bottom: 5px;
    margin-bottom: 20px;
  }
}

/* 問い合わせ */

.consultation_list {
  max-width: 1000px;
  width: 100%;
  margin: 60px auto;
}

.consultation_list ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 50px 60px 50px;
  padding: 0;
  list-style: none;
}

.consultation_list ul li {
  width: 48%;
  background: #eeeeee;
  border-radius: 10px;
  margin-bottom: 30px;
}

.consultation_list ul li h3 {
  text-align: center;
  text-align: -webkit-center;
  padding: 15px 0 10px 0;
  border-radius: 10px 10px 0 0;
}

.consultation_list ul li.tel h3 {
  background: #409b83;
}

.consultation_list ul li.line h3 {
  background: #00b900;
}

.consultation_list ul li.chat h3 {
  background: #309ab7;
}

.consultation_list ul li.mail h3 {
  background: #394d8e;
  min-height: 98px;
  padding: 35px 0 25px;
}

.consultation_list ul li .txt {
  padding: 25px;
}

.consultation_list ul li .txt h4 {
  font-size: 16px;
  font-weight: bold;
}

.consultation_list ul li .txt h4 small {
  font-size: 14px;
  font-weight: lighter;
}

.consultation_list ul li a {
  display: block;
  margin: 10px auto 0;
  max-width: 85%;
}

.consultation_list ul li:nth-of-type(3) a {
  max-width: 100%;
}

@media only screen and (min-width: 767px) {
  .consultation_list ul li a {
    max-width: 60%;
  }

  .consultation_list ul li:nth-of-type(3) a {
    max-width: 85%;
  }
}

@media (min-width: 751px) {
  .consultation_list ul li a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}

@media only screen and (max-width: 767px) {
  .consultation_list {
    margin: 4vw auto;
  }

  .consultation_list ul {
    margin: 0 20px 40px 20px;
  }

  .consultation_list ul li {
    width: 48%;
    background: #eeeeee;
    border-radius: 10px;
    margin-bottom: 10px;
  }

  .consultation_list ul li h3 {
    text-align: center;
    padding: 10px;
    border-radius: 10px 10px 0 0;
  }

  .consultation_list ul li .txt {
    padding: 10px;
  }

  .consultation_list ul li .txt h4 {
    font-size: calc(40vw / 13);
    margin-bottom: 10px;
  }

  .consultation_list ul li .txt h4 small {
    font-size: 12px;
    font-weight: lighter;
    display: block;
  }

  .consultation_list ul li a {
    color: #e6340c;
    font-size: 13px;
    font-weight: bold;
    text-align: center;
    display: block;
    margin-top: 10px;
  }

  .consultation_list ul li.mail h3 {
    min-height: 14vw;
    padding: 4vw 0;
  }
}

.p-release {
  padding: 5.8vw 0;
  background-image: url(../img/hodai/bg_about_sp.jpg);
  background-position: bottom center;
  position: relative;
}

.p-release__inner {
  max-width: 90vw;
  margin: 0 auto;
}

.p-release__ttl {
  max-width: 90vw;
  margin: 0 auto;
  z-index: 0;
  position: relative;
}

.p-release__ttl2 {
  max-width: 70vw;
  margin: 6vw auto;
}

.p-release__graph {
  background: #fff;
  padding: 20vw 2vw 2vw 2vw;
  margin-top: -24vw;
}

#cta .p-release__ttl2 {
  max-width: 50vw;
  margin: 1vw auto 2vw;
  padding: 5.8vw 0 0;
}

@media only screen and (max-width: 767px) {
  #cta .p-release__ttl2 {
    max-width: 50vw;
    margin: -11vw auto 2vw;
    padding: 20.8vw 0 0;
  }
}

#faq {
  padding: 5.8vw 0;
}

@media only screen and (min-width: 768px) {
  .p-kouza__modal.p-melit__modal .popup-content__box .textmov_cont-btn {
    font-size: calc(350px / 17);
  }

  .p-release {
    padding: 60px 0 30px;
    /*background-image: url(../img/hodai/release_bg.jpg);
  background-position: bottom center;
  background-size: cover;*/
  }

  .p-release__inner {
    max-width: 1000px;
    margin: 0 auto;
    margin: 0 auto;
  }

  .p-release__ttl {
    max-width: 550px;
    width: 100%;
  }

  .p-release__ttl2 {
    max-width: 350px;
    width: 100%;
    margin: 0 auto 30px;
  }

  #release .p-release__ttl2 {
    margin: 0 auto 0;
  }

  #cta .p-release__ttl2 {
    max-width: 240px;
  }

  .p-release__graph {
    padding: 30px;
    -webkit-filter: drop-shadow(0px 0px 6px #eee);
    filter: drop-shadow(0px 0px 6px #eee);
    margin-top: -50px;
  }
}

.p-free {
  margin: 0 auto;
  background: url(../img/hodai/free_price_bg_sp.png) no-repeat;
  background-size: contain;
  background-position: top center;
  background-color: #fff9b1;
  padding: 8vw 0;
  position: relative;
}

.p-free::before {
  content: "";
  display: block;
  width: 100%;
  height: 15vw;
  background: url(../img/hodai/release_arrow.png) no-repeat;
  background-size: 100%;
  position: absolute;
  top: 0;
}

.p-free__ttl {
  max-width: 100vw;
  margin: 0 auto;
}

.p-free__img {
  max-width: 90vw;
  margin: 0 auto;
}

.p-free_rt {
  font-size: 0.7em;
  line-height: 1.3;
  padding: 1vw 0 0;
  max-width: 90vw;
  margin: 0 auto;
  text-align: left;
}

#melit .p-free_rt {
  max-width: 55vw;
}

@media only screen and (min-width: 768px) {
  .p-free {
    margin: 0 auto;
    background: url(../img/hodai/free_price_bg.png) no-repeat;
    background-size: contain;
    background-position: top center;
    background-color: #fff9b1;
    padding: 120px 0 60px;
    position: relative;
  }

  .p-free::before {
    content: "";
    display: block;
    width: 1400px;
    height: 155px;
    background: url(../img/hodai/release_arrow_pc.png) no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    left: 50%;
  }

  .p-free_rt {
    padding: 10px 0px 0px;
    max-width: 900px;
    text-align: left;
  }

  .p-free__ttl {
    max-width: 800px;
    padding-top: 50px;
  }

  .p-free__img {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
  }
}

#naritai.p-release {
  padding: 45vw 0 25vw;
  background-image: url(../img/hodai/naritai_bg_sp.jpg);
  background-position: top center;
  background-size: cover;
  position: relative;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
  clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

#naritai.p-release::before {
  content: "";
  display: block;
  width: 100%;
  height: 15vw;
  background: url(../img/hodai/release_arrow.png) no-repeat;
  background-size: 100%;
  position: absolute;
  top: 0;
}

#naritai .p-release__ttl {
  max-width: 100vw;
  margin: -30vw auto 0;
  margin-left: -8vw;
  padding-bottom: 3%;
}

@media only screen and (min-width: 768px) {
  #naritai.p-release {
    padding: 120px 0 160px;
    background-image: url(../img/hodai/naritai_bg.jpg);
    background-position: top center;
    background-size: cover;
    position: relative;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
  }

  #naritai.p-release::before {
    content: "";
    display: block;
    width: 1400px;
    height: 155px;
    background: url(../img/hodai/release_arrow_pc.png) no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    left: 50%;
  }

  #naritai .p-release__ttl {
    max-width: 650px;
    margin: 50px auto 0;
  }

  #naritai .p-release__graph {
    padding: 20px 30px 30px;
    margin-top: -85px;
  }

  #naritai .p-release__img {
    position: relative;
  }
}

#melit.p-release {
  background-image: none;
  position: relative;
  padding: 5.8vw 0;
}

@media only screen and (max-width: 768px) {
  #melit.p-release {
    padding: 15vw 0 5.8vw;
    margin: -4vw auto 0;
  }
}

#melit .p-release__ttl2 {
  max-width: 100vw;
  padding: 0vw 12vw 0vw;
  margin: 0 auto;
}

#melit .p-release__graph {
  background: #fff;
  padding: 20vw 5vw 5vw;
  margin-top: -16vw;
}

#melit .p-release__inner {
  max-width: 100vw;
  margin: 0 auto;
}

#melit .p-release__ttl {
  margin-left: auto;
}

.melit__bottom_rt {
  max-width: 90vw;
  margin: 40px auto 0;
}

@media only screen and (min-width: 768px) {
  #melit .p-release__ttl2 {
    max-width: 350px;
    margin: 0 auto;
    padding: 0;
  }

  #melit .p-release__ttl {
    margin-left: auto;
  }

  .melit__bottom_rt {
    text-align: center;
  }
}

.p-point__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1100px;
}

.p-point__list li {
  width: 49vw;
  text-align: center;
}

.point__list__item__lead {
  font-size: 14px;
  padding: 2vw 0 0;
  margin-bottom: 2vw;
  font-weight: bold;
}

.point__list__item__lead span {
  font-size: 1.2em;
  color: #ff2a05;
}

.point__list__item__btn {
  display: block;
  width: 100%;
  max-width: 85%;
  margin: 0 auto;
  border: 2px solid rgb(245, 4, 0);
  color: rgb(245, 4, 0);
  box-shadow: 3px 3px 0px 0px rgb(245, 4, 0);
  font-size: calc(85vw / 20);
  border-radius: 30px;
  padding: 2% 0;
  position: relative;
  background-color: #ffec3e;
}

.point__list__item__btn::before {
  content: "+";
  display: block;
  position: absolute;
  transform: translateY(-50%);
  top: 48%;
  left: 12px;
}

.p-point__list li:last-of-type {
  width: 90vw;
}

@media only screen and (min-width: 768px) {
  .p-point__list li {
    width: calc((100% - 100px) / 4);
    margin-bottom: 30px;
  }

  .p-point__list li:last-of-type {
    width: 400px;
  }

  .point__list__item__lead {
    font-size: 16px;
    padding: 15px 0;
    margin-bottom: 0;
    font-weight: bold;
  }

  .point__list__item__btn {
    font-size: calc(200px / 10);
  }
}

.downAnime {
  opacity: 1;
  /* 事前に透過0 にして消しておく*/
  position: relative;
}

.slideAnimeDownUp {
  -webkit-animation-name: slideTextY100;
  animation-name: slideTextY100;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 1;
}

@-webkit-keyframes slideTextY100 {
  from {
    transform: translate(-50%, 100vh);
    /* 要素を上の枠外に移動*/
    opacity: 1;
  }

  to {
    transform: translate(-50%, 0);
    /* 要素を元の位置に移動*/
    opacity: 1;
  }
}

@keyframes slideTextY100 {
  from {
    transform: translate(-50%, 100vh);
    /* 要素を上の枠外に移動*/
    opacity: 1;
  }

  to {
    transform: translate(-50%, 0);
    /* 要素を元の位置に移動*/
    opacity: 1;
  }
}

@media only screen and (min-width: 768px) {
  @-webkit-keyframes slideTextY100 {
    from {
      transform: translate(-50%, 100vh);
      /* 要素を上の枠外に移動*/
      opacity: 1;
    }

    to {
      transform: translate(-50%, 50%);
      /* 要素を元の位置に移動*/
      opacity: 1;
    }
  }
  @keyframes slideTextY100 {
    from {
      transform: translate(-50%, 100vh);
      /* 要素を上の枠外に移動*/
      opacity: 1;
    }

    to {
      transform: translate(-50%, 50%);
      /* 要素を元の位置に移動*/
      opacity: 1;
    }
  }
}

button.top_close_btn.close-button {
  right: 0%;
  position: fixed;
  top: 0;
  cursor: pointer;
  font-size: 14px;
  cursor: pointer;
  color: #fff;
  width: 100vw;
  height: 40px;
  text-align: center;
  line-height: 0;
  z-index: 1;
}

.top_close_btn.close-button::before {
  content: "×";
  display: block;
  position: absolute;
  right: 2%;
  top: 50%;
}

@media only screen and (min-width: 768px) {
  button.top_close_btn.close-button {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 25px;
    cursor: pointer;
    border: 2px solid #fff;
    width: 45px;
    height: 45px;
    border-radius: 5px;
    z-index: 1400;
  }

  .top_close_btn.close-button::before {
    right: 20%;
    top: 50%;
    color: #fff;
  }
}

.melit_ttl {
  margin-bottom: 20px;
}

.p-kouza__modal.p-melit__modal .popup-content {
  max-height: calc(100% - 100px);
  height: 100%;
}

@media only screen and (min-width: 768px) {
  .p-kouza__modal.p-melit__modal .popup-content {
    max-width: 630px;
    width: calc(100% - 30px);
    padding: 30px;
    max-height: calc(100vh - 100px);
  }
}

#cta.p-hodai {
  padding: 8vw 0 0vw;
  position: relative;
}

#cta.p-hodai::before {
  content: "";
  display: block;
  width: 100%;
  height: 44px;
  background: url(../img/hodai/release_arrow_pc.png) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  left: 50%;
}

@media only screen and (min-width: 768px) {
  #cta.p-hodai {
    padding: 50px 0 4vw;
    position: relative;
  }

  #cta.p-hodai::before {
    content: "";
    display: block;
    width: 1100px;
    height: 120px;
    background: url(../img/hodai/release_arrow_pc.png) no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    left: 50%;
  }
}

#cta .p-hodai__ctablock__u {
  display: flex;
  max-width: 80vw;
  width: 100%;
  margin: 0 auto;
  justify-content: center;
  flex-direction: column;
}

#cta .p-hodai__ctablock__u .p-hodai__ctablock__u__item {
  width: 100%;
  position: relative;
  margin-bottom: 2vw;
}

#cta .p-hodai__ctablock__u .p-hodai__img__ctablock {
  position: absolute;
  max-width: 75vw;
  bottom: 44px;
  left: 12px;
}

#cta .p-hodai__ctablock__u .p-hodai__ctablock__u__item:nth-child(1) {
  order: 1;
}

#cta .p-hodai__ctablock__u .p-hodai__ctablock__u__item:nth-child(2) {
  order: 0;
}

#cta .p-hodai__ctablock__u .p-hodai__ctablock__u__item:nth-child(3) {
  order: 2;
}

@media only screen and (min-width: 768px) {
  #cta .p-hodai__ctablock__u {
    max-width: 1000px;
    flex-direction: row;
    justify-content: space-between;
  }

  #cta .p-hodai__ctablock__u .p-hodai__ctablock__u__item {
    width: calc((100% - 30px) / 3);
  }

  #cta .p-hodai__ctablock__u .p-hodai__img__ctablock {
    max-width: 300px;
    bottom: 50px;
    left: 15px;
  }

  #cta .p-hodai__ctablock__u .p-hodai__ctablock__u__item:nth-child(1) {
    order: 0;
  }

  #cta .p-hodai__ctablock__u .p-hodai__ctablock__u__item:nth-child(2) {
    order: 1;
  }
}

#popup-fixedbtn li .floating_pop_btn {
  display: block;
  width: 100%;
  background: rgb(245, 4, 0);
  margin-bottom: 2vw;
  font-size: 18px;
  padding: 2vw;
  border-radius: 10px;
  box-shadow: 0 5px 0 #ccc;
  color: #fff;
  position: relative;
}

#popup-fixedbtn li .floating_pop_btn::after {
  content: "▶︎";
  display: block;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
}

#popup-fixedbtn li:nth-of-type(2) .floating_pop_btn {
  background: rgb(140, 198, 63);
}

#popup-fixedbtn li:nth-of-type(3) .floating_pop_btn {
  background: rgb(242, 183, 2);
  margin-bottom: 0;
}

.hodai_catalog_banner {
  max-width: 900px;
  width: 100%;
  margin: 120px auto 0;
  padding: 20px;
  position: relative;
  background: #1b3399;
  border-radius: 20px;
}

.hodai_catalog_detail {
  background: #fff;
  border-radius: 10px;
  padding: 0;
}

.hodai_catalog_ttl {
  position: absolute;
  width: 650px;
  top: -95px;
  left: 50%;
  transform: translateX(-64%);
}

.hodai_catalog_content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 90%;
  margin: 0 auto;
}

.hodai_catalog_content_img {
  display: block;
}

.hodai_catalog_content_img1 {
  width: 50%;
  padding-top: 25px;
}

.hodai_catalog_content_img2 {
  width: 50%;
  padding-top: 15px;
}

.hodai_catalog_content_img3 {
  width: 100%;
  margin-top: -10px;
}

#catalog_pc.hodai_catalog_banner {
  border-radius: 0;
}

@media only screen and (max-width: 768px) {
  .hodai_catalog_banner {
    max-width: 90vw;
    margin: 20vw auto 0;
    padding: 2vw;
    border-radius: 0 0 20px 20px;
  }

  #catalog_sp.hodai_catalog_banner {
    max-width: 80vw;
    border-radius: 0;
  }

  .hodai_catalog_detail {
    padding: 3vw 3vw 1vw;
  }

  .hodai_catalog_ttl {
    width: 100%;
    top: -51px;
    transform: translateX(-50%);
  }

  #catalog_sp .hodai_catalog_ttl {
    width: 100%;
    top: -44px;
    transform: translateX(-50%);
  }

  .hodai_catalog_content {
    max-width: 100%;
    justify-content: space-evenly;
  }

  .hodai_catalog_content_img1 {
    padding-top: 0;
  }

  .hodai_catalog_content_img3 {
    width: 75vw;
  }

  .p-kouza__modal .popup-content__box .point {
    margin-top: 0px;
    border-radius: 14px;
    padding: 0 15px 10px;
    max-width: 55%;
  }

  .p-kouza__modal .popup-content__box .point_txt {
    font-size: 11px;
  }

  .p-kouza__modal .popup-content__box .point_btn {
    margin-top: 10px;
    font-size: 13px;
    width: 90%;
    height: 55px;
  }

  .p-kouza__modal .popup-content__box .point_btn {
    height: 40px;
  }

  .p-kouza__modal .popup-content__box .point_ttl {
    width: 100%;
    top: -17px;
  }

  .p-kouza__modal .popup-content__box {
    width: 100%;
    padding: 30px 20px;
  }

  .p-kouza__modal .popup-content__box .point {
    margin-top: 0px;
    border-radius: 14px;
    padding: 0 15px 10px;
    max-width: 55%;
  }

  .p-kouza__modal .popup-content__box .point_txt {
    margin: 5px auto 0;
    width: 90%;
    text-align: center;
  }

  .l-header__logo {
    height: 23px;
  }
}
