@charset "utf-8";

/*---------------------------------------------------------------------------------------------

ベース

---------------------------------------------------------------------------------------------*/

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  font-family: 'Noto Sans JP', "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
    background: #F5F5F5;
}

img {
  max-width: 100%;
  height: auto;
}

.mplus {
  font-family: 'Noto Sans JP', sans-serif;
}

.t-center {
  text-align: center;
}

.t-left {
  text-align: left;
}

.t-right {
  text-align: right;
}

.mb150 {
  margin-bottom: 150px;
}

@media screen and (max-width: 768px) {

  .mb150 {
    margin-bottom: 60px;
  }

}

/*---------------------------------------------------------------------------------------------

FLEX

---------------------------------------------------------------------------------------------*/

.flex {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
}

.al-start {
  -webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.al-end {
  -webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.al-center {
  -webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.jt-center {
  -webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.jt-around {
  -ms-flex-pack: distribute;
	justify-content: space-around;
}

.jt-between {
  -webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.jt-start {
  -webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.jt-end {
  -webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.flex_wrap {
  -ms-flex-wrap: wrap;
  	flex-wrap: wrap;
}

@media screen and (max-width: 768px) {

  .sp_noflex {
    display: block;
  }

  .sp_wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .sp_column_r {
    flex-flow: column-reverse;
  }

  .sp_column {
    flex-flow: column;
  }

}

/*---------------------------------------------------------------------------------------------

PC

---------------------------------------------------------------------------------------------*/

@media screen and (min-width: 769px) {

  .onlyPC {
    display: block;
  }

  .onlySP {
    display: none !important;
  }

}

/*---------------------------------------------------------------------------------------------

SP

---------------------------------------------------------------------------------------------*/


@media screen and (max-width: 768px) {

  .onlyPC {
    display: none !important;
  }

  .onlySP {
    display: block;
  }

}

/*---------------------------------------------------------------------------------------------

ハンバーガーメニュー

---------------------------------------------------------------------------------------------*/

.hamburger {
  display: block;
  position: absolute;
  z-index: 3;
  right: 20px;
  top: 18px;
  width: 40px;
  height: 30px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 3px ;
  left    : 6px;
  background : #FFF;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 16px;
  left: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index : 2;
  top  : 0;
  left : 0;
  background: #ff8001;
  text-align: center;
  transform: translateY(-100%);
  transition: all 0.6s;
  width: 100%;
  height: 100vh;
}

nav.globalMenuSp ul {
  margin: 50px auto;
  padding: 0;
  width: 100%;
  display: block;
}

nav.globalMenuSp ul li {
  position: relative;
  list-style-type: none;
  padding: 0;
  width: 90%;
  margin: 0 auto;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
  -webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}

nav.globalMenuSp ul li a {
  display: block;
  padding: 1em 0;
  text-decoration :underline;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateY(0%);
}

/* @media screen and (max-width: 1199px) {

  .hamburger {
    top: 32px;
    right: 50px;
  }

} */

@media screen and (max-width: 768px) {

  .hamburger {
    right: 20px;
    top: 18px;
  }

}


/*---------------------------------------------------------------------------------------------

フェードインアニメーション

---------------------------------------------------------------------------------------------*/


.view.on {
    opacity: 1;
    transform: translate(0px,0px);
    visibility: visible;
}
.view {
    transition: 1.2s;
    opacity: 0;
    transform: translate(0px,60px);
}


/*---------------------------------------------------------------------------------------------

ヘッダー

---------------------------------------------------------------------------------------------*/


.head_cont {
  position: fixed;
  width: 100%;
  background: #ff8001;
  padding: 20px 50px;
  z-index: 99;
  box-shadow: 0px 3px 8px 0px rgba(0,0,0,0.3);
}

.head_logo {
  width: 180px;
}

.head_list ul {
  color: #FFF;
  font-size: 1.6rem;
}

.head_list ul li {
  margin-left: 15px;
  padding-right: 15px;
  border-right: 2px solid;
}

.head_list ul li a:hover {
  text-decoration: underline;
}

.float_demo_box {
    display:none;
  position: fixed;
  width: 200px;
  height: 80px;
  color: #FFF;
  background: #f63;
  border-radius: 0 20px 20px 0;
  top: 15%;
  left: -250px;
  z-index: 11;
  box-shadow: 0px 3px 8px 0px rgba(0,0,0,0.3);
  transition: left 0.3s ease;
}

.float_store_box {
  position: fixed;
  width: 200px;
  height: 80px;
  color: #FFF;
  background: #000;
  border-radius: 0 20px 20px 0;
  top: 28%;
  left: -250px;
  z-index: 11;
  box-shadow: 0px 3px 8px 0px rgba(0,0,0,0.3);
  transition: left 0.3s ease;
}

.float_demo_box p,
.float_store_box p {
  text-align: center;
  font-size: 1.3rem;
}

.float_demo_box p span,
.float_store_box p span {
  display: block;
  font-size: 2.8rem;
}

.head_menu{
}
@media screen and (min-width: 1250px) {

  .over1200 {
    display: block;
  }

  .under1200 {
    display: none;
  }

}

@media screen and (max-width: 1249px) {

  .over1200 {
    display: none;
  }

  .under1200 {
    display: block;
  }

}

@media screen and (max-width: 768px) {

  .head_cont {
    padding: 20px 10px;
  }

  .head_logo {
    width: 40%;
  }

  .head_list ul li {
    border-right: none;
  }

}

/*---------------------------------------------------------------------------------------------

フッター

---------------------------------------------------------------------------------------------*/

.foot_cont_wrapA {
  background: #ff8001;
  padding: 60px 0;
}

.foot_cont_wrapB {
  background: #3D8DCC;
  padding: 60px 0 200px;
}

.foot_cont {
  max-width: 868px;
  width: 90%;
  margin: auto;
  color: #FFF;
  font-size: 1.6rem;
}

.foot_cont img {
  width: 17%;
}

.foot_txt {
  margin-top: 30px;
  line-height: 2;
}

.foot_txt a {
  text-decoration: underline;
}

.foot_list li {
  text-indent: -1em;
  padding-left: 1em;
  line-height: 2;
  margin-bottom: 10px;
}

.foot_rule {
  display: block;
  text-align: center;
  font-size: 1.8rem;
  color: #00BAFF;
  text-decoration: underline;
  margin: 30px auto;
}

.copy {
  font-size: 2.1rem;
  font-weight: bold;
  margin-top: 15px;
}

.rule_cont {
  margin-bottom: 50px;
}

.rule_cont a {
  color: #FFF;
  font-size: 1.6rem;
  text-decoration: underline;
  margin: 0 20px;
}

@media screen and (max-width: 768px) {

  footer {
    position: relative;
  }

  .foot_cont_wrapA {
    padding: 40px 0;
  }

  .foot_cont_wrapB {
    padding: 40px 0 80px 0;
  }

  .foot_cont {
    font-size: 1.3rem;
  }

  .foot_cont img {
    width: 45%;
  }

  .foot_rule {
    font-size: 1.5rem;
    margin-top: 20px;
  }

  .copy {
    font-size: 1.5rem;
  }

  .rule_cont a {
    display: block;
    text-align: center;
    margin: 10px auto;
  }

}

/*---------------------------------------------------------------------------------------------

メイン

---------------------------------------------------------------------------------------------*/

.bg_cont {
  width: 100%;
  height: 100vh;
  background: url("/assets/img/bg.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  z-index: -1;
  position: fixed;
}

.main_cont {
  max-width: 756px;
  margin: auto;
}

.cont_tit {
  max-width: 580px;
  width: 100%;
  margin: 0 auto 60px auto;
  position: relative;
}

.cont_tit img {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: 0;
}

.cont_tit.sub_style img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: 0;
}

.cont_tit h2 {
  position: relative;
  font-size: 7rem;
  font-weight: bold;
  color: #ff8001;
  z-index: 1;
}

.cont_tit p {
  max-width: 400px;
  width: 90%;
  height: 60px;
  background: #3D8DCC;
  border-radius: 30px;
  color: #FFF;
  font-size: 2.4rem;
  position: relative;
  z-index: 1;
  margin: 20px auto;
}

.cont_tit.sub_style p {
  max-width: 400px;
  width: 90%;
  height: 60px;
  color: #ff8001;
  background: transparent;
  margin: 0 auto;
  font-size: 2.4rem;
  position: relative;
  z-index: 1;
}

.cont_block {
  width: 100%;
  background: #FFF;
  /* border: 4px solid; */
  border-radius: 30px;
  padding: 40px;
}

.cont_block.tool_bg {
  background: #3193e0;
  border: 5px solid #165c94;
}

.store_btn {
  width: 100%;
  height: 120px;
  border: 8px solid #333db1;
  border-radius: 60px;
  background: #6a74ea;
  margin: 30px auto;
  box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.3);
  transition: .3s;
}

.store_btn:hover {
  background: #FFF;
}

.store_btn p {
  color: #FFF;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: .1em;
  position: relative;
  margin-left: -5%;
  text-align: center;
  line-height: 1.2;
  transition: .3s;
}

.store_btn:hover p {
  color: #333db1;
}

.store_btn p small {
  font-size: 1.2rem;
}

.store_btn p::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #FFF;
  border-right: 0;
  top: 55%;
  right: -10%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.store_btn:hover p::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #333db1;
  border-right: 0;
  top: 55%;
  right: -10%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.over_care {
  margin-top: -65px;
  padding-top: 65px;
}

.news_box ul li {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.news_box ul li span {
  display: inline-block;
  margin-right: 20px;
  color: #333;
}

@media screen and (max-width: 768px) {

  .bg_cont {
    width: auto;
    height: auto;
    position: relative;
    background: none;
    z-index: 0;
  }

  .bg_cont::before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-position: center center;
    background: url("/assets/img/bg_sp.jpg");
    background-size: cover;
  }

  .main_cont {
    width: 90%;
    margin: auto;
  }

  .cont_tit {
    margin: 0 auto 30px auto;
  }

  .cont_tit h2 {
    font-size: 3.5rem;
  }

  .cont_tit img {
    width: 90%;
  }

  .cont_tit p {
    height: 30px;
    font-size: 1.6rem;
    border-radius: 15px;
    margin: 15px auto;
  }

  .cont_tit.sub_style p {
    height: 30px;
    font-size: 1.6rem;
  }

  .cont_block {
    border: 2px solid;
    border-radius: 25px;
    padding: 15px;
    margin: 0 auto 60px auto;
  }

  .store_btn {
    height: 80px;
    border-radius: 40px;
    margin: 30px auto;
  }

  .store_btn p {
    font-size: 1.5rem;
    letter-spacing: 0;
    width: 100%;
  }

  .store_btn p small {
    font-size: 1rem;
  }

  .store_btn p::after {
    right: 0;
  }

  .news_box ul li {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }

  .news_box ul li span {
    margin-right: 0px;
    margin-bottom: 10px;
  }


}


/*---------------------------------------------------------------------------------------------

MV

---------------------------------------------------------------------------------------------*/

.mv_cont {
  width: 100%;
  /* height: 100vh; */
  height: calc(100vh + 65px);
  position: relative;
  padding-top: 65px;
}

/* .mv_illust {
  position: absolute;
  top: 5%;
  right: 15%;
  max-width: 350px;
  z-index: 10;
  transition: all .1s ease-in-out;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-duration: 1s;
  animation-name: mv;
} */

.comic_btn {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.comic_btn span {
  font-size: 2.4rem;
    font-weight: bold;
}

.comic_btn.pink {
  z-index: 3;
  border-radius: 20px 0px 0px 20px;
  top: 15%;
  right: 0;
  left: auto;
  background: #F87CBA;
  padding: 10px;
  color: #FFF;
  font-size: 1.4rem;
  width: 250px;
  height: 100px;
  text-align: center;
  box-shadow: 0px 3px 8px 0px rgba(0,0,0,0.3);
}

.comic_btn.blue {
  z-index: 3;
  border-radius: 20px 0px 0px 20px;
  top: 30%;
  right: 0;
  left: auto;
  background: #A27CF8;
  padding: 10px;
  color: #FFF;
  font-size: 1.4rem;
  width: 250px;
  height: 80px;
  text-align: center;
  box-shadow: 0px 3px 8px 0px rgba(0,0,0,0.3);
}

.slick-prev {
  left: 0;
  z-index: 1;
  width: 20px;
  height: 40px;
  background: #333;
  border-radius: 12px;
  opacity: 1;
  transition: .3s;
}

.slick-prev:hover {
  opacity: .6;
  background: #333;
}

.slick-next {
  right: 0%;
  z-index: 1;
  width: 20px;
  height: 40px;
  background: #333;
  border-radius: 12px;
  opacity: 1;
  transition: .3s;
}

.slick-next:hover {
  opacity: .6;
  background: #333;
}

.slick-slider,
.slick-track,
.slick-list {
  height: 100%;
}

.slick-slide {
  position: relative;
  padding-bottom: 65px;
}

.slick-next:before {
  position: absolute;
  content: '・';
  font-size: 20px;
  opacity: 1;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transition: .3s;
}

.slick-prev:hover:before {
  opacity: .6;
}

.slick-prev:before {
  position: absolute;
  content: '・';
  font-size: 20px;
  opacity: 1;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transition: .3s;
}

.slick-next:hover:before {
  opacity: .6;
}

.comic_banner01 {
  position: absolute;
  width: 360px;
  bottom: 25%;
  left: 15%;
}

.comic_banner02 {
  position: absolute;
  width: 360px;
  bottom: 10%;
  left: 15%;
}

.mv_layer_bg {
  position: relative;
  width: 95%;
  margin: auto;
  z-index: 0;
}

.mv_layer_center {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 2;
}

@keyframes anim01 {
    0% {
        top: 12%;
    }
    50% {
        top: 20%;
    }
    100% {
        top: 12%;
    }
}

@keyframes anim02 {
    0% {
        top: 0%;
    }
    50% {
        top: 5%;
    }
    100% {
        top: 0%;
    }
}

.mv_layer_left {
  position: absolute;
  width: 390px;
  left: 5%;
  top: 20%;
  z-index: 1;
  transition: all .2s ease-in-out;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-duration: 1.6s;
  animation-name: anim01;
}

.mv_layer_right {
  position: absolute;
  width: 450px;
  right: 0%;
  top: 10%;
  z-index: 1;
  transition: all .2s ease-in-out;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-duration: 2s;
  animation-name: anim02;
}

.comic_slide {
  position: absolute;
  max-width: 1010px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}


@media screen and (min-width: 1400px) {

  .mv_layer_center {
    position: absolute;
    width: 90%;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 2;
  }

  .mv_layer_left {
    position: absolute;
    width: 455px;
    left: 5%;
    top: 20%;
    z-index: 1;
  }

  .mv_layer_right {
    position: absolute;
    width: 520px;
    right: 0%;
    top: 10%;
    z-index: 1;
  }

  .mv_illust {
    position: absolute;
    top: 5%;
    right: 20%;
    max-width: 400px;
    z-index: 10;
  }

}

@media screen and (max-height: 750px) {
  .comic_slide {
    max-width: 750px;
  }
}

@media screen and (max-width: 768px) {

  .mv_illust {
    position: absolute;
    top: 22%;
    right: 2%;
    max-width: 100px;
    z-index: 10;
  }

  .mv_cont {
    height: 100%;
    padding-top: 55px;
  }

  .comic_btn.blue {
    width: 90%;
    height: 80px;
    top: auto;
    bottom: 10%;
    left: 50%;
    border-radius: 20px;
    font-size: 1.4rem;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }

  .comic_btn.pink {
    width: 90%;
    height: 80px;
    top: auto;
    bottom: 25%;
    border-radius: 20px;
    left: 50%;
    font-size: 1.4rem;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }

  .comic_btn span {
    font-size: 2rem;
  }

  .comic_banner01 {
    position: absolute;
    width: 90%;
    bottom: 35%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }

  .comic_banner02 {
    position: absolute;
    width: 90%;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }

  .slick-next,
  .slick-prev {
    width: 25px;
    height: 100px;
  }

  .slick-next:before,
  .slick-prev:before {
    font-size: 2.5rem;
  }

  .slick-slide {
    padding-bottom: 0;
  }

  .slick-slide img {
    width: 85%;
    margin: auto;
  }

  .float_area {
    position: relative;
    z-index: 2;
  }

  .float_demo_box_sp,
  .float_store_box_sp,
  .float_tool_box_sp {
    width: 45%;
    height: 50px;
    position: fixed;
    font-size: 1.5rem;
    color: #FFF;
    border-radius: 12px 12px 0 0;
    text-align: center;
    line-height: 1.2;
    box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.3);
  }

  .float_demo_box_sp {
    background: #f63;
    bottom: 0;
    left: 4%;
  }

  .float_store_box_sp {
    background: #000;
    bottom: 0;
    left: 74%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }

  .float_tool_box_sp {
    background: #fcb400;
    bottom: 0;
    right: 1.5%;
  }


}


/*---------------------------------------------------------------------------------------------

何ができるの？

---------------------------------------------------------------------------------------------*/

.cont_block.what {
  position: relative;
  margin-bottom: 200px;
}

.what_head {
  width: 100%;
  height: 90px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  border-radius: 30px 30px 0 0;
  background: #ff8001;
}

.what_tit {
  color: #FFF;
  font-size: 2.8rem;
  font-weight: bold;
}

.what_box {
  width: 100%;
  margin-bottom: 60px;
}

.cont_block div.what_box:nth-child(2) {
  padding-top: 90px;
}

.what_text_box {
  width: 100%;
}

.what_text_box h3 {
  color: #f18431;
  font-size: 3rem;
  padding: 10px;
  margin-bottom: 30px;
  padding-left: 20px;
    font-weight: bold;
    margin-top: 100px;
}

.what_text_box p {
  font-size: 1.6rem;
  line-height: 2;
}

.what_img_box {
  width: 95%;
  margin: 10px auto;
}

video {
  width: 100%;
  height: auto;
}

.what_illust {
  width: 15%;
}

.what_voice {
  position: relative;
  width: 80%;
  background: #f4a10d;
  padding: 20px;
  color: #FFF;
  margin-left: 20px;
}

.what_voice::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-right: 25px solid #f4a10d;
  border-left: 0;
  top: 50%;
  left: -10px;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.what_message {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}

.what_message span {
  font-size: 3.6rem;
  color: #EB5169;
}

@media screen and (max-width: 768px) {

  .what_head {
    border-radius: 23px 23px 0 0;
    height: 70px;
  }

  .what_box {
    margin-bottom: 35px;
  }

  .what_tit {
    font-size: 1.8rem;
    text-align: center;
  }

  .what_tit p {
    font-size: 1.8rem;
  }

  .what_text_box {
    width: 100%;
  }

  .what_img_box {
    width: 100%;
    margin-bottom: 10px;
  }

  .what_text_box h3 {
    font-size: 1.6rem;
  }

  .what_text_box p {
    font-size: 1.4rem;
  }

  video {
    width: 100%;
  }

  .what_message {
    font-size: 1.8rem;
  }

  .what_message span {
    font-size: 2.4rem;
  }


}


/*---------------------------------------------------------------------------------------------

メリット・ご利用シーン紹介

---------------------------------------------------------------------------------------------*/

.about_wrap {
  padding-top: 90px;
}

.merit_area {
  margin-bottom: 60px;
}

.merit_box {
  width: 48%;
  background: #FFF;
  padding: 30px;
  border: 5px solid #555;
  border-radius: 25px;
  margin-bottom: 30px;
  box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.3);
}

.merit_area .merit_box:nth-of-type(3),
.merit_area .merit_box:last-of-type {
  margin-bottom: 0;
}

.merit_tit {
  font-size: 2.4rem;
  font-weight: bold;
  color: #ff8001;
  text-align: center;
  margin-bottom: 20px;
}

.merit_tit span {
  font-size: 3.6rem;
}

.merit_txt {
  font-size: 1.4rem;
}

.cont_block.scene {
  margin: 0 auto 35px auto;
  border: 5px solid #555;
  box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.3);
}

.scene_thumb {
  width: 25%;
}

.scene_txt_box {
  width: 70%;
}

.scene_head {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: bold;
  color: #ff8001;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 3px solid #000;
}

.scene_txt {
  font-size: 1.6rem;
  line-height: 2;
}

.scene_txt span {
  font-size: 2.4rem;
  font-weight: bold;
  color: #EB5169;
}

@media screen and (max-width: 768px) {

  .merit_box {
    width: 100%;
    margin-bottom: 20px;
  }

  .scene_thumb {
    display: block;
    width: 50%;
    margin: auto;
    margin-bottom: 15px;
  }

  .scene_txt_box {
    width: 100%;
  }

  .scene_head {
    font-size: 1.8rem;
    text-align: center;
  }

  .scene_txt {
    font-size: 1.4rem;
    line-height: 2;
  }

  .scene_txt span {
    font-size: 2rem;
  }

  .cont_block.scene {
    border: none;
    box-shadow: none;
    padding: 0;
  }

  .merit_area .merit_box:nth-of-type(3), .merit_area .merit_box:last-of-type {
    margin-bottom: 20px;
  }


}

/*---------------------------------------------------------------------------------------------

体験版

---------------------------------------------------------------------------------------------*/
.txS{
    font-size: 11px !important;
}
#demo {
  margin-top: 60px;
}

.demo_head {
    width: 100%;
    height: 90px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    border-radius: 30px 30px 0 0;
    background: #EB5169;
}

.demo_tit {
    color: #FFF;
    font-size: 2.8rem;
    font-weight: bold;
}

.demo_flow_box {
    width: 100%;
    padding-bottom: 20px;
    margin-bottom: 40px;
    border-bottom: 5px solid #EB5169;
    position: relative;
}

.demo_flow_box::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
    border-top: 20px solid #EB5169;
    border-bottom: 0;
    bottom: -14%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.demo_flow_box.last {
  border-bottom: none;
  padding-bottom: 0;
}

.demo_flow_box.last::before {
  display: none;
}

.demo_flow_box img {
  width: 30%;
}

.demo_flow_box h4 {
  font-size: 3rem;
  font-weight: bold;
  margin-left: 20px;
  margin-bottom: 10px;
  color: #EB5169;
}

.demo_coution {
  margin-top: 15px;
  font-size: 1.6rem;
  line-height: 1.5;
}

.demo_coution span {
  font-weight: bold;
  color: #EB5169;
}

.price_copy.demo {
  font-size: 3rem;
  font-weight: bold;
  margin-left: 0;
  text-align: center;
}

.demo_btn {
  width: 100%;
  height: 120px;
  border: 8px solid #c70524;
  border-radius: 60px;
  background: #EB5169;
  margin: 30px auto;
  box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.3);
  transition: .3s;
}

.demo_btn:hover {
  background: #FFF;
}

.demo_btn p {
  color: #FFF;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: .1em;
  position: relative;
  margin-left: -5%;
  text-align: center;
  line-height: 1.2;
  transition: .3s;
}

.demo_btn:hover p {
  color: #c70524;
}

.demo_btn p small {
  font-size: 1.2rem;
}

.demo_btn p::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #FFF;
  border-right: 0;
  top: 55%;
  right: -10%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.demo_btn:hover p::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #c70524;
  border-right: 0;
  top: 55%;
  right: -10%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

@media screen and (max-width: 768px) {

  .demo_head {
    border-radius: 23px 23px 0 0;
    height: 70px;
  }

  .demo_tit {
    font-size: 1.8rem;
    text-align: center;
  }

  .demo_flow_box {
    flex-flow: column-reverse;
  }

  .demo_head {
    font-size: 1.8rem;
  }

  .demo_flow_box img {
    width: 80%;
  }

  .demo_flow_box h4 {
    font-size: 2.4rem;
    margin-left: 0;
  }

  .demo_flow_box::before {
    bottom: -8%;
  }

  .demo_copy.large {
    font-size: 2rem;
    margin-bottom: 0;
  }

}

/*---------------------------------------------------------------------------------------------

ツール＆料金

---------------------------------------------------------------------------------------------*/

.price_head {
  font-size: 2.6rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  margin: 20px auto;
}

.price_copy {
  margin-left: 20px;
  font-size: 2rem;
  line-height: 1.5;
}

.price_copy.large {
  font-size: 3rem;
  font-weight: bold;
  margin-left: 0;
}

.price_copy a {
  color: #3d8dcc;
  text-decoration: underline;
}

.tool_copy {
  font-size: 2rem;
  font-weight: bold;
  width: 100%;
  text-align: center;
  border-bottom: 5px solid #3D8DCC;
  padding-bottom: 10px;
  margin-bottom: 20px;
  position: relative;
}

.tool_copy::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 17px solid transparent;
  border-left: 17px solid transparent;
  border-top: 15px solid #3D8DCC;
  border-bottom: 0;
  bottom: -55%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.price_box {
  max-width: 390px;
  width: 100%;
  background: #ff8001;
  color: #FFF;
  padding: 40px 20px;
  border-radius: 14px;
  margin: auto;
}

.tool_box {
  width: 100%;
  color: #FFF;
  margin: 30px auto;
}

.price_box span {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin: auto;
}

.tool_box span {
  width: 80%;
  margin: auto;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #175c94;
  background: #FFF;
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 1.8rem;
}

.price_box p {
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
}

.tool_box p {
  font-size: 5.5rem;
  font-weight: bold;
  text-align: center;
  margin: 15px auto;
}

.tool_box p small {
  font-size: 2rem;
}

.price_line {
  width: 100%;
  height: 1px;
  border-bottom: 3px dashed #000;
  margin: 45px auto;
}

.tool_img {
  display: block;
  max-width: 390px;
  width: 90%;
  height: auto;
  margin: auto;
}

.tool_illust_box {
  position: relative;
  margin-bottom: 30px;
  padding: 160px 0;
}

.tool_illust_box img {
  display: block;
  width: 25%;
  margin: auto;
}

.tool_circle {
  width: 280px;
  height: 280px;
  position: absolute;
  background: #FFF;
  border-radius: 140px;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  color: #ff8001;
  text-align: center;
}

.tool_circle span {
  font-size: 1.5rem;
  padding-bottom: 5px;
  margin-bottom: 10px;
  color: #000;
  border-bottom: 3px solid #175c94;
}

.tool_circle.data01 {
  top: 0;
  left: 0;
}

.tool_circle.data01::after {
  position: absolute;
  content: "";
  background: url("/assets/img/ico_tool01.png") no-repeat;
  background-size: 100%;
  background-position: center;
  width: 120px;
  height: 120px;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.tool_circle.data02 {
  top: 0;
  right: 0;
}

.tool_circle.data02::after {
  position: absolute;
  content: "";
  background: url("/assets/img/ico_tool02.png") no-repeat;
  background-size: 100%;
  background-position: center;
  width: 120px;
  height: 120px;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.tool_circle.data03 {
  bottom: 0;
  left: 0;
}

.tool_circle.data03::after {
  position: absolute;
  content: "";
  background: url("/assets/img/ico_tool03.png") no-repeat;
  background-size: 100%;
  background-position: center;
  width: 120px;
  height: 120px;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.tool_circle.data04 {
  bottom: 0;
  right: 0;
}

.tool_circle.data04::after {
  position: absolute;
  content: "";
  background: url("/assets/img/ico_tool04.png") no-repeat;
  background-size: 100%;
  background-position: center;
  width: 120px;
  height: 120px;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.tool_info {
  margin-bottom: 30px;
}

.tool_info img {
  max-width: 450px;
}

.tool_info p {
  font-size: 2rem;
  font-weight: bold;
}

.tool_intro {
  font-size: 2rem;
  font-weight: bold;
  margin-left: 20px;
  margin-bottom: 10px;
}

.tool_detail_btn {
  width: 100%;
  height: 120px;
  border: 8px solid #d08601;
  border-radius: 60px;
  background: #fcb400;
  margin: 30px auto;
  box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.3);
  transition: .3s;
}

.tool_detail_btn p {
    color: #FFF;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: .1em;
    position: relative;
    margin-left: -5%;
    text-align: center;
    line-height: 1.2;
    transition: .3s;
}

.tool_detail_btn:hover {
  background: #FFF;
}

.tool_detail_btn:hover p {
  color: #d08601;
}

.tool_detail_btn p::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #FFF;
    border-right: 0;
    top: 55%;
    right: -10%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.tool_detail_btn:hover p::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #d08601;
  border-right: 0;
  top: 55%;
  right: -10%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.tool_head {
  color: #FFF;
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  margin: 20px auto;
}

.tool_cost {
  width: 80%;
  text-align: right;
  display: block;
  font-size: 1.6rem;
  margin: auto;
}

.tool_coution {
  font-size: 1.4rem;
  line-height: 2;
  margin-bottom: 30px;
  color: #FFF;
}

.tool_coution li {
  text-indent: -1em;
  padding-left: 1em;
}

.price_flow_box {
  width: 100%;
  padding-bottom: 20px;
  margin-bottom: 40px;
  border-bottom: 5px solid #f18431;
  position: relative;
}

.price_flow_box.last {
  border-bottom: none;
  padding-bottom: 0;
}

.price_flow_box::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  border-top: 20px solid #f18330;
  border-bottom: 0;
  bottom: -14%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.price_flow_box.last::before {
  display: none;
}

.price_flow_box img {
  width: 30%;
}

.price_flow_box h4 {
  font-size: 3rem;
  font-weight: bold;
  margin-left: 20px;
  margin-bottom: 10px;
  color: #f18431;
}

.price_logo {
  display: block;
  padding-top: 90px;
  margin: auto;
}

.product_btn {
  width: 100%;
  height: 120px;
  border: 8px solid #d64408;
  border-radius: 60px;
  background: #ff8001;
  margin: 30px auto;
  box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.3);
  transition: .3s;
}

.product_btn:hover {
  background: #FFF;
}

.product_btn p {
  color: #FFF;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: .1em;
  position: relative;
  margin-left: -5%;
  text-align: center;
  line-height: 1.2;
  transition: .3s;
}

.product_btn:hover p {
  color: #d64408;
}

.product_btn p small {
  font-size: 1.2rem;
}

.product_btn p::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #FFF;
  border-right: 0;
  top: 55%;
  right: -10%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.product_btn:hover p::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #d64408;
  border-right: 0;
  top: 55%;
  right: -10%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.btn_flex_box {
  margin-bottom: 100px;
}

.btn_flex_box .demo_btn,
.btn_flex_box .product_btn {
  width: 48%;
}

.btn_flex_box .demo_btn p,
.btn_flex_box .product_btn p {
  width: 100%;
}

.btn_flex_box .demo_btn p::after,
.btn_flex_box .product_btn p::after {
  right: 5%;
}

.btn_flex_box .demo_btn:hover p::after,
.btn_flex_box .product_btn:hover p::after {
  right: 5%;
}


@media screen and (max-width: 768px) {

  .price_head {
    font-size: 1.8rem;
  }

  .price_copy,
  .tool_copy {
    font-size: 1.4rem;
  }

  .price_copy {
    margin-left: 0;
    margin-bottom: 20px;
  }

  .price_box span,
  .tool_box span {
    width: 100%;
    font-size: 1.4rem;
    line-height: 1.8;
  }

  .tool_detail_btn {
    height: 80px;
    border-radius: 40px;
    margin: 30px auto;
  }

  .tool_detail_btn p {
    width: 90%;
    font-size: 1.5rem;
    margin-left: -2%;
    letter-spacing: 0;
  }

  .tool_detail_btn p::after {
    right: 0%;
  }

  .tool_list li {
    width: 100%;
    font-size: 1.4rem;
  }

  .tool_intro {
    margin-left: 0;
    font-size: 1.6rem;
  }

  .tool_info p {
    font-size: 1.6rem;
    margin-top: 10px;
    text-align: right;
  }

  .tool_illust_box {
    display: flex;
    flex-flow: column-reverse;
    padding: 0;
  }

  .tool_list {
    width: 100%;
  }

  .tool_illust_box img {
    width: 50%;
  }

  .tool_head {
    font-size: 1.8rem;
  }

  .tool_circle {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 15px;
    padding: 10px;
    margin-bottom: 25px;
    font-size: 1.8rem;
  }

  .tool_circle span {
    width: 100%;
    text-align: center;
    font-size: 1.4rem;
  }

  .tool_circle.data01::after {
    position: absolute;
    content: "";
    background: url(/assets/img/ico_tool01.png) no-repeat;
    background-size: 100%;
    background-position: center;
    width: 70px;
    height: 70px;
    top: -25%;
    left: 5%;
  }

  .tool_circle.data02::after {
    position: absolute;
    content: "";
    background: url(/assets/img/ico_tool02.png) no-repeat;
    background-size: 100%;
    background-position: center;
    width: 70px;
    height: 70px;
    top: -25%;
    left: 5%;
  }

  .tool_circle.data03::after {
    position: absolute;
    content: "";
    background: url(/assets/img/ico_tool03.png) no-repeat;
    background-size: 100%;
    background-position: center;
    width: 70px;
    height: 70px;
    top: -25%;
    left: 5%;
  }

  .tool_circle.data04::after {
    position: absolute;
    content: "";
    background: url(/assets/img/ico_tool04.png) no-repeat;
    background-size: 100%;
    background-position: center;
    width: 70px;
    height: 70px;
    top: -25%;
    left: 5%;
  }

  .tool_box p {
    font-size: 3.6rem;
  }

  .price_flow_box {
    flex-flow: column-reverse;
  }

  .price_flow_box img {
    width: 80%;
  }

  .price_flow_box h4 {
    font-size: 2.4rem;
    margin-left: 0;
  }

  .price_flow_box::before {
    bottom: -8%;
  }

  .price_copy.large {
    font-size: 2rem;
    margin-bottom: 0;
  }

  .btn_flex_box .demo_btn, .btn_flex_box .product_btn {
    width: 100%;
    z-index: 1;
    position: relative;
  }

  .product_btn,
  .demo_btn {
    height: 80px;
    border-radius: 40px;
    margin: 30px auto;
  }

  .product_btn p,
  .demo_btn p{
    font-size: 1.5rem;
    letter-spacing: 0;
    width: 100%;
  }

  .product_btn p::after,
  .demo_btn p::after {
    right: 0;
  }


}


/*---------------------------------------------------------------------------------------------

フォーム

---------------------------------------------------------------------------------------------*/

.cont_block.form {
  position: relative;
}

.form_head {
  width: 100%;
  height: 90px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  border-radius: 30px 30px 0 0;
  background: #ff8001;
}

.form_tit {
  font-size: 2.8rem;
  font-weight: bold;
  color: #FFF;
}

.form_read {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.8;
  margin-bottom: 20px;
  padding-top: 80px;
}

.form_coution {
  font-size: 1.4rem;
  line-height: 2;
  margin-bottom: 30px;
}

.form_coution li {
  text-indent: -1em;
  padding-left: 1em;
}

.form_coution2 {
  font-size: 1.4rem;
  line-height: 2;
  margin-bottom: 30px;
}

.form_coution2 li {
  text-indent: -2em;
  padding-left: 2em;
}

.form_list {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.form_list span {
  background: #EB5169;
  padding: 10px 20px;
  color: #FFF;
  font-size: 1.4rem;
  height: 36px;
  border-radius: 18px;
  margin-left: 15px;
}

.form_input {
  width: 100%;
  height: 50px;
  background: #fff;
  border: 2px solid;
  border-radius: 25px;
  padding: 15px;
  font-size: 1.4rem;
  margin-bottom: 30px;
}

.select_wrap {
  position: relative;
  margin-bottom: 30px;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form_select {
  position: relative;
  width: 100%;
  background: transparent;
  border: 2px solid;
  border-radius: 10px;
  padding: 15px;
  font-size: 1.4rem;
  z-index: 1;
}

.select_wrap::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  border-top: 15px solid #ff0000;
  border-bottom: 0;
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.form_txtArea {
  width: 100%;
  min-height: 350px;
  background: #fff;
  border: 2px solid;
  border-radius: 25px;
  padding: 15px;
  font-size: 1.4rem;
  margin-bottom: 30px;
}

.form_button {
  max-width: 288px;
  width: 90%;
  height: 50px;
  font-size: 2rem;
  color: #FFF;
  background: #FF0000;
  border-radius: 25px;
  margin: 40px auto;
  text-align: center;
  display: block;
  box-shadow: 7px 7px 5px -1px rgba(0,0,0,0.2);
  transition: .3s;
}

.form_button.disabled {
  pointer-events: none;
  background: gray;
}

.p-agree {
  width: 80%;
  margin: 40px auto;
  display: flex;
  font-size: 1.8rem;
  font-weight: bold;
  position: relative;
}

input[type="checkbox"] {
    width: 30px;
    height: 30px;
    cursor: pointer;
    opacity: .1;
    margin-right: 10px;
}

input[type="checkbox"] {
    vertical-align: bottom;
}

.p-agree .checkmark_wrap {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 0;
    left: 0;
    background: #EB5169;
}

.checkmark {
    width: 20px;
    height: 12px;
    position: relative;
    display: block;
    left: 8px;
    top: 6px;
    text-align: center;
    text-decoration: none;
    outline: none;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all .2s;
    transition: all .2s;
}

input[type="checkbox"]:checked + div .checkmark {
    color: #FFF;
}

.checkmark::before {
    position: absolute;
    z-index: 2;
    content: "";
    width: 0;
    height: 0;
    border: 3px solid transparent;
    top: -2px;
    left: -2px;
}

input[type="checkbox"]:checked + div .checkmark::before {
    width: 100%;
    height: 100%;
    border-bottom-color: #FFF;
    border-left-color: #FFF;
    -webkit-transition: height .1s, width .1s .1s;
    transition: height .1s, width .1s .1s;
}

.p-agree span {
  line-height: 30px;
}

@media screen and (max-width: 768px) {

  .form_head {
    border-radius: 23px 23px 0 0;
    height: 70px;
  }

  .form_tit {
    font-size: 1.8rem;
  }

  .form_read {
    font-size: 1.5rem;
    padding-top: 70px;
  }

  .form_list {
    font-size: 1.2rem;
  }

  .form_input {
    height: 40px;
    border-radius: 20px;
    font-size: 1.2rem;
  }

  .form_list span {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    height: 24px;
    border-radius: 12px;
    padding: 10px 15px;
  }

  .form_button {
    font-size: 1.6rem;
  }

  .form_select {
    font-size: 1.1rem;
  }

  .p-agree {
    width: 100%;
    font-size: 1.4rem;
  }

  .p-agree span {
    line-height: 1.5;
    padding-left: 10px;
  }

}

.interview_link {
  margin: 80px auto;
}

.interview_link img {
  max-width: 500px;
  width: 80%;
  display: block;
  margin: auto;
  margin-bottom: -45px;
  position: relative;
  z-index: 0;
}

.interview_link .store_btn {
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 768px) {

  .interview_link {
    margin: 40px auto 0 auto;
  }


}


.oshiete_banner {
  margin-bottom: 80px;
  display: block;
}

.interview_link .oshiete_banner img {
  max-width: 100%;
    width: 100%;
}
.faqH2{
    font-size: 24px;
    color: #fff;
}
.faqSec{
    width:800px;
    margin:20px auto 50px;
    font-size: 18px;
    line-height: 2;
    color: #fff;
}
.faqSec dt{
    font-size: 22px;
    margin-top: 20px;
}
.faqSec dd{
    border-bottom: 1px solid #bbb;
    padding-bottom: 20px;
}
.centered-form {
    text-align: center;
    position: fixed;
    bottom: 70px;
    width: 100%;
    z-index: 99999;
}

.centered-form h2 {
    margin-bottom: 20px;
    font-size: 14px;
    color:#ff8001;
    font-weight: bold;
}

.centered-form input[type="text"] {
    margin-bottom: 10px;
    border: 3px solid #ff8001;
    padding: 15px 10px;
    font-size: 20px;
    width: 80%;
    max-width: 800px;
    box-sizing: border-box;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
    background: #fff;
            transition: opacity 0.3s ease, visibility 0.3s ease;
}
.hidden {
    opacity: 0;
    visibility: hidden;
}
.centered-form input[type="submit"] {
    display: block; /* submitボタンをブロック要素に */
    margin: 10px auto 0 auto; /* 上部にマージン、左右はautoで中央揃え */
    padding: 10px;
    font-size: 16px;
    width: 80%;
    max-width: 200px; /* submitボタンの最大幅を200pxに */
    box-sizing: border-box;
    border-radius: 10px;
    background: #ff8001;
    color:#fff;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
}

.centered-form input[type="text"]:focus,
.centered-form input[type="submit"]:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    outline: none;
}
.centered-form a{
    padding:10px;
    font-size: 20px;
    background: #f63;
    display: block;
    margin:50px;
    border-radius: 20px;
    color: #fff;
    font-weight: bold;
    top:110px;
}
.centered-form a {
  position: relative;
}

.centered-form a::after {
  content: '▶'; /* 三角形を表示 */
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%); /* 垂直方向のセンタリング */
  font-size: 14px; /* 必要に応じてサイズ調整 */
}

@media screen and (max-width: 768px) {
    .faqSec{
        width:90%;
    }
    .centered-form input[type="text"] {
        padding:10px;
    }
    .centered-form {
        bottom:55px;
    }
    .centered-form h2 {
        margin-left:40px;
        margin-right:40px;
        
    }
    .centered-form a{
        display:none;
    }
}