@charset "UTF-8";

/* ====================================

    ▼ ブレイクポイントのルール ▼
    - スマホを基本設計にする
    - デバイスによって変えるのではなくサイズによって変える

==================================== */


/* *****************************************************************************



***************************************************************************** */
@font-face {
	font-family: 'sans';
	src: url(../fonts/axisstd-bold.otf) format('opentype');
  font-weight: bold;
}
@font-face {
	font-family: 'sans';
	src: url(../fonts/axisstd-medium.otf) format('opentype');
  font-weight: 400;
}
@font-face {
	font-family: 'sans';
	src: url(../fonts/axisstd-regular.otf) format('opentype');
}



* {
  border: none;
  box-sizing: border-box;
}

body {
  font-size: 14px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  position: relative;
  color: #505963;
  max-width: 480px;
  margin: 0 auto;
  letter-spacing: 0.05em;
}

img {
  width: 100%;
  margin: auto;
}

p {
  line-height: 1.75;
  letter-spacing: 0.05em;
}


a, button {
  transition: .5s;
}
a {
  display: block;
  color: #FFF;
}

.pc_view {
  display: block!important;
}
.sp_view {
  display: none!important;
}

h2 {
  font-size: 2.1em;
}

html > img {
  display: none;
}


/* *****************************************************************************

  contents

***************************************************************************** */

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

section {
  clear: both;
}

.wrap_button  img {
  margin: auto;
}

.title-img img {
  width: 100%;
  margin: auto;
}


.title_img--ig {
  width: 80%;
  height: auto;
  margin: 0 auto 16px;
}

/* *****************************************************************************

  MAIN

***************************************************************************** */

.pc_only {
  display: block;
}
.sp_only {
  display: none;
}

section.mainVisual {
  padding: 0;
}

.wrap_mainVisual {
  position: relative;
}

/* *****************************************************************************

 content

***************************************************************************** */
.wrap_section {
  width: 100%;
}



/* *****************************************************************************

  voice

***************************************************************************** */

.voice{
  background-image: url(../images/bg_voice.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 50px 0 30px;
}

.wrap_voice {
  padding: 0 5%;
  margin-bottom: 40px;
}

.voice_box{
  background-color: #fff;
  margin: 20px 0;
  padding: 15px;
  border-radius: 5px;
}

.voice_box_h3{
  display: flex;
  justify-content: space-between;
}
.voice_box_h3_left{
  width: 20%;
}

.voice_name{
  font-size: 12px;
  font-weight: bold;
  text-align: center;
}

.voice_box_h3_right{
  width: 75%;
  color: #e87e0a;
  font-weight: bold;
  line-height: 1.25rem;
  font-size: 1.2em;
}

.accordion {
  margin: 10px auto 0 ;
  }
  .toggle {
  display: none;
  }
  .option {
  position: relative;
  }
  .title,
  .content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
  }
  .title {
  padding: 5px;
  display: block;
  color: #fff;
  font-weight: bold;
  text-align: center;
  background-color: #e87e0a;
  border-radius: 3px;
  }
  .title::after,
  .title::before {
  content: "";
  position: absolute;
  right: 1.25em;
  top: 7px;
  width: 2px;
  height: 0.75em;
  background-color: #fff;
  transition: all 0.3s;
  }
  .title::after {
  transform: rotate(90deg);
  }
  .content {
  max-height: 0;
  overflow: hidden;
  }
  .content p {
  margin: 0;
  line-height: 1.5;
  }
  .toggle:checked + .title + .content {
  max-height: 650px;
  transition: all 1.5s;
  }
  .toggle:checked + .title::before {
  transform: rotate(90deg) !important;
  }

  .voice_box_con_h4{
    display: inline-block;
    color: #fff;
    font-weight: bold;
    background-color: #686353;
    margin: 15px 0 7px;
    padding: 7px;
    border-radius: 4px;
    font-size: 12px;
  }
/* *****************************************************************************

  FAQ

***************************************************************************** */

/* FAQ */
#lp6s2qa {
  background: #eaf7fc;
  padding: 1rem
}

.accordion-qa {
  max-width: 800px;
  margin: 0 auto 10px;
  border-radius: 25px;
  box-shadow: 0 7px 15px -5px rgb(0 0 0 / 5%);
  background-color: #fff;
}

.accordion-qa summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em;
  font-weight: bold;
  cursor: pointer;
}

.accordion-qa summary::-webkit-details-marker {
  display: none;
}

.accordion-qa summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 3px solid #d0d1d7;
  border-right: 3px solid #d0d1d7;
  content: '';
  transition: transform .5s;
}

.accordion-qa[open] summary::after {
  transform: rotate(225deg);
}

.accordion-qa p {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: .3em 2em 1.5em;
  transition: transform .5s, opacity .5s;
  font-size: 0.9em;
}

.accordion-qa[open] p {
  transform: none;
  opacity: 1;
}

.accordion-qa a {
  text-decoration: none;
  color: #088ac1;
}

.qa-gp {
  font-size: 1.2em;
  font-weight: bold;
  color: #5c94d7;
  text-align: center;
  margin: 1rem auto;
}

.qa-wrap {
  margin-bottom: 2rem;
}


/* *****************************************************************************

  FORM

***************************************************************************** */
.wrap_contents {
  width: 100%;
  background-color: #fff;
}

.wrap-form {
  height: auto;
  margin: 0 auto;
  width: 81%;
  background-color: #FFF;
  padding-bottom: 16px;
}

.wrap-form img {
  width: 295px;
  padding: 40px 0;
}

.wrap-form a {
  display: inline-block;
  color: #205fff;
}

.wrap-form dt {
  margin: 0 0 10px;
  font-weight: bold;
}

.wrap-form dt span.required {
  color: #E87A74;
  font-size: 0.7em;
  line-height: 1em;
  display: inline;
  position: relative;
  margin: 0 8px;
}

.wrap-form dt span.small-text {
  font-size: 0.9em;
  font-weight: normal;
}
.wrap-form dt span.small-text.post {
  display: none;
}

.wrap-form .small-text--indention {
  font-size: 0.8em;
  font-weight: normal;
  line-height: 1.2;
  padding: 0px 0 6px;
  display: block;
}

.wrap-form dd input,
.wrap-form dd select,
.wrap-form dd textarea {
  width: 100%;
  height: auto;
  margin: 0 auto 23px;
  padding: 21px 28px;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  color: #505963;
  background-color: #F0F2F3;
}
.wrap-form dd input:focus,
.wrap-form dd textarea:focus {
  background-color: #fff8ed;
}

.wrap-form dd select {
  /* appearance = デフォルトデザイン */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  margin: 0;
  background-color: transparent;
  background-image: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 19px 23px;
  font-size: 14px;
}

.wrap-form dd.select-style {
  position: relative;
  width: 100%;
  margin: 0 0 24px;
  padding: 0;
  background-color: #ffffff;
  border: solid 3px #F0F2F3;
  border-radius: 8px;
}

.wrap-form dd.select-style::before {
  content: '▼';
  position: absolute;
  top: 0;
  right: 29px;
  bottom: 11px;
  width: 0;
  height: 0;
  margin: auto;
  font-size: 10px;
}

.input:-webkit-autofill{
  color: #505963;
}

.wrap-form dd textarea {
  width: 100%;
  height: 130px;
  padding: 21px 28px;
  line-height: 1.4;
  font-size: 0.95em;
}

.wrap-form dt span .color-red {
  color: #E87A74;
  line-height: 1.3;
  display: block;
  margin: 5px 0 0 0;
}

.wrap-form  .move_btn .wrap_btn:active {
  padding: 0;
}

.wrap-form  .move_btn .wrap_btn button:active {
  margin: 5px 0 0;
  padding: 18.5px 0;
}

.a_btn {
  background-color: #FFF;
  padding: 0;
}

.move_btn .form-privacy__txt {
  margin:  10px 0 20px;
  font-size: 12px;
  padding: 0;
  text-align: center;
}
.move_btn .form-privacy__txt a{
  text-decoration: underline;
}

::placeholder {
  color: #A6ADB4;
  font-weight: normal;
  font-size: 0.95em;
}

.form-age {
  width: 75px;
}

.form-banner {
  background-color: #eaeff1;
  padding: 3em;
}
.form-banner img {
  margin: 0 auto;
  max-width: 300px;
  display: block;
  padding-bottom: 2em;
}
.form-banner p {
  font-size: 11px;
  color: #404040;
}
@media screen and (min-width: 520px) {
  .form-banner {
    padding: 3em 3em;
    margin: 0 auto;
    max-width: 500px;
  }
}


/* form */
.form {
  padding: 40px 24px;
}

.wrap-form .small-text--indention {
  font-size: 12px;
  color: #6e728d;
  font-weight: normal;
  line-height: 1.2;
  padding: 0px 0 6px;
  display: block;
  text-align: left;
  font-weight: normal;
  margin-top: -6px;
}

.wrap-form dt span.small-text {
  font-weight: normal;
}

.section-block {
  padding: 24px;
  max-width: 600px;
  margin: 0 auto;
}

#element-1247 {
  padding: 16px 0;
  font-size: 13px;
}

.x_dc68832a {
  text-align: center;
}

#element-1234 {
  font-size: 10px;
  padding: 16px 0 0 0;
  color: #fff;
  text-align: center;
}


#element-1238 {
  padding: 100px 0 0 0;
  font-size: 12px;
  color: #fff;
  text-align: center;
}

#page-block-mjs7ikn9rp {
  background: rgb(72, 74, 96);
}

#element-1239 {
  width: 200px;
  margin: 0 auto 8px;
}

#element-1236, #element-1237, #element-1235, #element-1240 {
  width: 60px;
  height: auto;
  width: 60px;
  position: absolute;
}

#element-1236 {
  left: 2.25rem;
}

#element-1237 {
  left: 7.875rem;
}

#element-1235 {
  left: 13.75rem;
}

#element-1240 {
  left: 19.375rem;
}

@media screen and (min-width: 520px) {
  #element-1236 {
    left: 24.25rem;
  }

  #element-1237 {
    left: 29.875rem;
  }

  #element-1235 {
    left: 35.75rem;
  }

  #element-1240 {
    left: 41.375rem;
  }
}

.wrap-form {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .form-content_box-btn button[type="submit"]>b {
    font-size: 1em !important;
  }
}


/* *****************************************************************************

フローティングボタン 

***************************************************************************** */

.fixed-button-container {
  z-index: 9998;
  background-color: transparent;
  position: fixed;
  right: -20px;
  bottom: -2px;
  cursor: pointer;
}

.fixed-button-img {
  display: flex;
  justify-content: right;
  transition: .3s;
  align-items: flex-end;
  right: 0;
  bottom: 0;
  width: 280px;
  height: 100%;
  /* 非表示にする */
  opacity: 0;
  visibility: hidden;
}

.fixed-button-img a:hover {
  opacity: unset !important;
}

/*このクラスが付与されると表示する*/
.is-active {
  /* 表示する */
  opacity: 1;
  visibility: visible;
}

/*このクラスが付与されると表示する*/
.absolute {
  visibility: hidden;
}


/* *****************************************************************************

footer

***************************************************************************** */


/* footer */
footer {
  background-color: #C0506B;
}

.wrap_footer {
  text-align: center;
  color: #FFF;
  font-size: 0.7em;
  padding: 40px 13%;
}

.wrap_sns {
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
}

.wrap_sns img {
  width: 55%;
  margin: 0 auto;
}

.fotter-address img {
  margin-bottom: 60px;
}

footer p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.5);
  ;
}





/* *****************************************************************************

その他

***************************************************************************** */


.lp6s2-title {
  text-align: center;
  padding: 1rem 0;
}

.lp6s2-title h2 {
  margin: 15px;
  color: #fff;
  font-size: 1.5em;
  text-shadow: 1px 0 0 #5a5a5a, 0 1px 0 #5a5a5a, -1px 0 0 #5a5a5a, 0 -1px 0 #5a5a5a;
}

.lp6s2-title h3 {
  margin: 0;
  font-size: 2em;
  font-weight: bold;
}

.entry-bnr {
  display: block;
  width:  100%;
}



/* *****************************************************************************

  SP-VIEW

***************************************************************************** */
@media screen and (max-width: 769px) {
  /* ALL */
  .sp_only {
    display: block;
  }
  .pc_only {
    display: none;
  }
  .wrap_contents {
    width: 100%;
  }
  .wrap_graph {
    width: 100%;
  }
}