@charset "UTF-8";
/* Scss Document */
/* A Modern CSS Reset */
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role="list"], ol[role="list"] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

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

input, button, textarea, select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    -webkit-animation-duration: .01ms !important;
            animation-duration: .01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: .01ms !important;
            transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

img {
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

ul, li {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  outline: none;
  text-decoration: none;
}

/*--------------------------
メディアクエリ設定
---------------------------*/
/*マップ型変数で定義*/
/*@mixinでメディアクエリを呼び出す。変数mq、初期値sm*/
/*	@include mq(sm){
	}
	@include mq(pc){
	}*/
/*------------------------------------------
	@include mq(sm){
		pointer-events: auto;
	}
	@include mq(pc){
		pointer-events: none;
	}
------------------------------------------*/
/*------------------------------------------
ヘルパー
------------------------------------------*/
.ta-c {
  text-align: center !important;
}

.hp_txt_small {
  font-size: 0.8em !important;
}

.hp_scrollPt {
  padding-top: 100px;
  margin-top: -100px;
}

.mt30 {
  margin-top: 30px !important;
}

.hp_pos_rel {
  position: relative;
}

.hp_color_gray {
  color: #707070;
}

@media screen and (max-width: 767px) {
  .hp_sp_br {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .hp_sp_br {
    display: none;
  }
}

/*
.hp_rotate_180 {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}*/
/*------------------------------------------
カラー設定
------------------------------------------*/
/*------------------------------------------
デフォ設定
------------------------------------------*/
img {
  width: 100%;
  vertical-align: bottom;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

body {
  font-family: 'Noto Sans JP',"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  counter-reset: number 0;
  color: #333;
}

main {
  overflow-x: hidden;
}

.slick-arrow {
  display: none !important;
}

/*------------------------------------------
全体設定
------------------------------------------*/
.ly_container {
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .ly_container {
    max-width: 748px;
  }
}

.hp_small_txt {
  font-size: 0.8em;
}

/*------------------------------------------
共通見出し
------------------------------------------*/
.el_heading.el_heading__lv2 {
  color: #333333;
  font-weight: 700;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .el_heading.el_heading__lv2 {
    font-size: 1.8em;
  }
}

/*------------------------------------------
共通背景
------------------------------------------*/
.ly_bg {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .ly_bg {
    padding: 0;
  }
}

@media screen and (min-width: 768px) {
  .ly_bg {
    padding: 3em;
  }
}

.ly_bg.ly_bg__gray {
  background: #F7F7F7;
}

.ly_bg.ly_bg__yellowSlant {
  background: url("../img/common/pt-yellowslant.png");
  background-repeat: repeat;
  background-size: 4%;
}

@media screen and (max-width: 767px) {
  .ly_bg.ly_bg__yellowSlant {
    padding: 2em 0;
  }
}

/*------------------------------------------
共通設定
------------------------------------------*/
@media screen and (min-width: 768px) {
  .ly_contentsInner {
    width: 100%;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
  }
}

/*------------------------------------------
header
------------------------------------------*/
.ly_header {
  width: 100%;
  display: block;
  /*	position: fixed;*/
  background: #fff;
  z-index: 9999;
}

@media screen and (max-width: 767px) {
  .ly_header {
    pointer-events: auto;
    padding: 0.5em;
  }
}

@media screen and (min-width: 768px) {
  .ly_header {
    padding: 1.5em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (max-width: 767px) {
  .bl_header {
    width: 26%;
  }
}

@media screen and (min-width: 768px) {
  .bl_header {
    width: 100%;
    max-width: 400px;
  }
}

.bl_header_left, .bl_header_right {
  -ms-flex: 0 1 auto;
  -webkit-box-flex: 0;
          flex: 0 1 auto;
}

@media screen and (max-width: 767px) {
  .bl_header_left, .bl_header_right {
    width: 46%;
  }
}

@media screen and (min-width: 768px) {
  .bl_header_left, .bl_header_right {
    width: 25%;
  }
}

.bl_header_conversion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 5;
}

@media screen and (min-width: 768px) {
  .bl_header_conversion {
    position: relative;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 50%;
    min-width: 520px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.btn_header {
  width: 100%;
  /*display:none;*/
}

@media screen and (min-width: 768px) {
  .btn_header {
    width: auto;
  }
}

.btn_header .tel-btn {
  width: 100%;
  background: #fff;
  padding: 1em;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 90px;
}

@media screen and (min-width: 768px) {
  .btn_header .tel-btn {
    min-width: 300px;
    height: auto;
  }
}

.btn_header .tel-btn .telicon {
  width: 30px;
}

@media screen and (min-width: 768px) {
  .btn_header .tel-btn .telicon {
    width: auto;
  }
}

.btn_header .tel-btn .telnumber {
  font-size: 0.9em;
  color: #000;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .btn_header .tel-btn .telnumber {
    font-size: 1.5em;
  }
}

.btn_header .inquiry-btn {
  padding: 1em;
  width: 100%;
  border: 1px solid #12a73b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 0.8em;
  height: 90px;
  background: #12a73b;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .btn_header .inquiry-btn {
    background: #fff;
    border-radius: 10px;
    font-size: 1em;
    min-width: 200px;
    height: auto;
    color: #12a73b;
  }
}

.btn_header-top {
  font-size: 0.7em;
  text-align: center;
  color: #000;
}

.btn_header-mid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.btn_header-bottom {
  font-size: 0.7em;
  text-align: center;
  color: #000;
}

.btn_header:last-of-type {
  display: block;
}

.btn_conversion .btn_header {
  display: none;
}

.btn_conversion .btn_header:last-of-type() {
  display: block;
}

/*spトグル用ボタン*/
.bl_gnaviSp_btn {
  /*ボタン*/
  /*span終わり*/
  /*js-active*/
}

@media screen and (max-width: 767px) {
  .bl_gnaviSp_btn {
    width: 24px;
    display: block;
    margin-left: auto;
    /*
		position: fixed;
		top: 1em;
		right: 1em;
		z-index: 999;*/
  }
}

@media screen and (min-width: 768px) {
  .bl_gnaviSp_btn {
    display: none;
  }
}

.bl_gnaviSp_btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: #000;
  position: relative;
  -webkit-transition: .3s all;
  transition: .3s all;
}

.bl_gnaviSp_btn span:first-of-type {
  top: -4px;
}

.bl_gnaviSp_btn span:nth-of-type(2) {
  top: 0px;
}

.bl_gnaviSp_btn span:nth-of-type(3) {
  top: 4px;
}

.bl_gnaviSp_btn.js-active span {
  -webkit-transition: .3s all;
  transition: .3s all;
}

.bl_gnaviSp_btn.js-active span:first-of-type {
  top: 2px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.bl_gnaviSp_btn.js-active span:nth-of-type(2) {
  display: none;
}

.bl_gnaviSp_btn.js-active span:nth-of-type(3) {
  top: 0px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*サイドメニュー*/
.bl_nav {
  opacity: 0;
  visibility: hidden;
  background: rgba(255, 255, 255, 0.95);
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 30px;
  right: -200px;
  -webkit-transition: .3s all;
  transition: .3s all;
  z-index: 10;
}

.bl_nav.js-active {
  opacity: 1;
  visibility: visible;
  position: fixed;
  right: -20px;
  -webkit-transition: .3s all;
  transition: .3s all;
}

.bl_nav {
  padding: 1em;
}

.bl_navListItem {
  border-bottom: dashed #000 1px;
}

/*aタグ*/
.el_navLink {
  display: block;
  padding: 0.5em;
  text-decoration: none;
  color: #000;
}

.bl_navOrder_lead {
  text-align: center;
  margin-bottom: 0.5em;
}

.bl_navOrder_lead_txt {
  color: #000;
  font-size: 1.313em;
  font-weight: 500;
  position: relative;
}

.bl_navOrder_lead_txt::before {
  display: block;
  content: "";
  width: 2px;
  height: 1em;
  border-radius: 8px;
  background: #000;
  position: absolute;
  top: 50%;
  left: -1em;
  -webkit-transform: rotate(-15deg) translateY(-50%);
  transform: rotate(-15deg) translateY(-50%);
}

.bl_navOrder_lead_txt::after {
  display: block;
  content: "";
  width: 2px;
  height: 1em;
  border-radius: 8px;
  background: #000;
  position: absolute;
  top: 50%;
  right: -1em;
  -webkit-transform: rotate(15deg) translateY(-50%);
  transform: rotate(15deg) translateY(-50%);
}

.el_btnImg {
  display: block;
  width: 90%;
  margin: 0 auto;
}

/*------------------------------------------
FV
------------------------------------------*/
.slickbox-mv {
  margin: 0;
  /*デフォルトへの打消し*/
}

.bl_fv {
  position: relative;
  margin-top: 3em;
}

.bl_fv_movie {
  position: absolute;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .bl_fv_movie {
    bottom: 5.5em;
    right: 1.5em;
  }
}

@media screen and (min-width: 768px) {
  .bl_fv_movie {
    bottom: 200px;
    right: 60px;
  }
}

@media screen and (max-width: 767px) {
  .bl_fv_movie iframe {
    width: 160px;
    height: 90px;
  }
}

@media screen and (min-width: 768px) {
  .bl_fv_movie iframe {
    width: 300px;
    height: 169px;
  }
}

/*------------------------------------------
FV下のナビ
------------------------------------------*/
.ly_lpNav {
  background: #292929;
}

@media screen and (max-width: 767px) {
  .ly_lpNav {
    padding: 1em 1.5em 2em;
  }
}

@media screen and (min-width: 768px) {
  .ly_lpNav {
    padding: 2em 1.5em 3em;
  }
}

.bl_lpNavList {
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .bl_lpNavList {
    max-width: 800px;
  }
}

.bl_lpNavListItem {
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  text-align: center;
  position: relative;
}

.bl_lpNavListItem::before {
  display: block;
  content: "";
  width: 3em;
  height: 1px;
  background: #FDD23E;
  position: absolute;
  top: 50%;
  -webkit-transform: rotate(-70deg) translateY(-50%);
  transform: rotate(-70deg) translateY(-50%);
}

@media screen and (max-width: 767px) {
  .bl_lpNavListItem::before {
    left: -1.1em;
  }
}

@media screen and (min-width: 768px) {
  .bl_lpNavListItem::before {
    left: 0;
  }
}

.bl_lpNavListItem:last-child::after {
  display: block;
  content: "";
  width: 3em;
  height: 1px;
  background: #FDD23E;
  position: absolute;
  top: 50%;
  -webkit-transform: rotate(-70deg) translateY(-50%);
  transform: rotate(-70deg) translateY(-50%);
}

@media screen and (max-width: 767px) {
  .bl_lpNavListItem:last-child::after {
    right: -1.1em;
  }
}

@media screen and (min-width: 768px) {
  .bl_lpNavListItem:last-child::after {
    right: 0;
  }
}

.el_lpNav_txt {
  color: #FDD23E;
  font-size: 1.125em;
  font-weight: 500;
  position: relative;
}

.el_lpNav_txt::before {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 8px 0 8px;
  border-color: #FDD23E transparent transparent transparent;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1.2em;
  margin: auto;
}

/*------------------------------------------
タブ
------------------------------------------*/
@media screen and (max-width: 767px) {
  .ly_tab {
    margin: 3em auto;
  }
}

@media screen and (min-width: 768px) {
  .ly_tab {
    width: 100%;
    max-width: 700px;
    margin: 2em auto;
  }
}

.tab {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
  cursor: pointer;
}

.tablistItem {
  width: 100%;
  -ms-flex: 0 1 auto;
  -webkit-box-flex: 0;
          flex: 0 1 auto;
  background: #B5B5B6;
  border-radius: 8px 8px 0 0;
  padding: 1em 0.5em;
  text-align: center;
  color: #fff;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .tablistItem {
    font-size: 1em;
  }
}

@media screen and (min-width: 768px) {
  .tablistItem {
    font-size: 1.313em;
  }
}

.tablistItem.select {
  background: #303030;
}

.content {
  border: solid 4px #303030;
  margin: 0;
}

.content > li {
  display: none;
}

.content > li.select {
  display: block;
}

.contentItemList {
  background: #fff;
}

.bl_contents_title {
  margin: 0 auto;
  padding-bottom: 1em;
  padding: 1.5em 1em;
}

@media screen and (max-width: 767px) {
  .bl_contents_title {
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .bl_contents_title {
    width: 80%;
  }
}

.bl_contents_belt {
  background: #B5B5B6;
}

.el_contets_belt_lead {
  font-weight: 700;
  color: #fff;
  padding: 0.5em 1em;
  text-align: center;
  text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.3);
  position: relative;
}

@media screen and (max-width: 767px) {
  .el_contets_belt_lead {
    font-size: 1.5em;
  }
}

@media screen and (min-width: 768px) {
  .el_contets_belt_lead {
    font-size: 2em;
  }
}

.el_contets_belt_lead::after {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16px 16px 0 16px;
  border-color: #B5B5B6 transparent transparent transparent;
  position: absolute;
  bottom: -0.5em;
  left: 0;
  right: 0;
  margin: auto;
}

.el_contets_belt_lead.el_contets_belt_lead__merihari {
  background: #FDD23E;
  text-shadow: none;
  color: #303030;
}

.el_contets_belt_lead.el_contets_belt_lead__merihari::after {
  border-color: #FDD23E transparent transparent transparent;
}

.el_contets_belt_lead.el_contets_belt_lead__sumahodebut {
  background: #70BB2D;
  text-shadow: none;
  color: #fff;
  text-align: center;
}

.el_contets_belt_lead.el_contets_belt_lead__sumahodebut::after {
  border-color: #70BB2D transparent transparent transparent;
}

@media screen and (max-width: 767px) {
  .bl_contents_priceInner {
    padding: 1em;
  }
}

@media screen and (min-width: 768px) {
  .bl_contents_priceInner {
    padding: 2em;
  }
}

.bl_cautionList {
  display: block;
  margin-top: 1em;
}

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

@media screen and (max-width: 767px) {
  .bl_cautionListItem {
    font-size: 0.5em;
  }
}

@media screen and (min-width: 768px) {
  .bl_cautionListItem {
    font-size: 0.8em;
  }
}

.bl_merihariwaribiki {
  background: #0057E7;
  position: relative;
}

@media screen and (max-width: 767px) {
  .bl_merihariwaribiki {
    padding: 2.5em 0.5em 1em;
  }
}

@media screen and (min-width: 768px) {
  .bl_merihariwaribiki {
    padding: 2em;
  }
}

.bl_merihariwaribiki::before {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 24px 32px 0 32px;
  border-color: #fff transparent transparent transparent;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
}

/*------------------------------------------
お問合せフロー
------------------------------------------*/
.bl_flowList {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .bl_flowList {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media screen and (min-width: 768px) {
  .bl_flowList {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

.bl_flowListItem {
  -ms-flex: 0 1 auto;
  -webkit-box-flex: 0;
          flex: 0 1 auto;
  margin-left: 0.5em;
}

.bl_flowListItem:nth-child(1) {
  margin-left: 0;
}

@media screen and (max-width: 767px) {
  .bl_flowListItem {
    width: 47%;
  }
  .bl_flowListItem:nth-child(n+3) {
    margin-top: 1em;
  }
}

@media screen and (min-width: 768px) {
  .bl_flowListItem {
    width: 100%;
  }
}

.el_flow_txt {
  display: block;
  margin-top: 0.5em;
  font-size: 1em;
  font-weight: 500;
  text-align: center;
}

/*------------------------------------------
CVエリア
------------------------------------------*/
.ly_cvBtn {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .ly_cvBtn {
    width: 100%;
    margin-top: 1em;
  }
}

@media screen and (min-width: 768px) {
  .ly_cvBtn {
    margin-top: 2em;
    width: 80%;
  }
}

.bl_cvBox {
  display: block;
  background: #fff;
  border-radius: 12px;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 767px) {
  .bl_cvBox {
    width: 90%;
    padding: 1.5em;
  }
}

@media screen and (min-width: 768px) {
  .bl_cvBox {
    width: 100%;
    max-width: 800px;
    padding: 2.5em;
  }
}

.el_cvBtn {
  /*a*/
  display: block;
  font-weight: bold;
  font-weight: 900;
  -webkit-transition: .3s all;
  transition: .3s all;
  position: relative;
  z-index: 2;
}

.el_cvBtn:hover {
  opacity: 0.7;
  -webkit-transition: .3s all;
  transition: .3s all;
}

.bl_cvBox_subTitle {
  margin: 0 auto;
  font-weight: 700;
  color: #0057E7;
  position: relative;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .bl_cvBox_subTitle {
    width: 90%;
    font-size: 1.4em;
  }
}

@media screen and (min-width: 768px) {
  .bl_cvBox_subTitle {
    width: 60%;
    font-size: 1.8em;
  }
}

.bl_cvBox_subTitle::before {
  display: block;
  content: "";
  width: 1em;
  height: 2px;
  background: #0057E7;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(70deg);
  transform: translateY(-50%) rotate(70deg);
}

@media screen and (max-width: 767px) {
  .bl_cvBox_subTitle::before {
    left: -1em;
  }
}

@media screen and (min-width: 768px) {
  .bl_cvBox_subTitle::before {
    left: -1em;
  }
}

.bl_cvBox_subTitle::after {
  display: block;
  content: "";
  width: 1em;
  height: 2px;
  background: #0057E7;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-70deg);
  transform: translateY(-50%) rotate(-70deg);
}

@media screen and (max-width: 767px) {
  .bl_cvBox_subTitle::after {
    right: -1em;
  }
}

@media screen and (min-width: 768px) {
  .bl_cvBox_subTitle::after {
    right: -1em;
  }
}

.bl_cvBox_title {
  font-weight: 700;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .bl_cvBox_title {
    font-size: 2em;
  }
}

@media screen and (min-width: 768px) {
  .bl_cvBox_title {
    font-size: 2.5em;
  }
}

.bl_cvBoxImg {
  position: absolute;
  bottom: 0;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .bl_cvBoxImg {
    width: 60%;
    right: -32px;
    bottom: 34px;
  }
}

@media screen and (min-width: 768px) {
  .bl_cvBoxImg {
    width: 320px;
    right: -80px;
  }
}

/*------------------------------------------
ヤングおとく回線
------------------------------------------*/
.bl_otherLinkList {
  margin-top: 2em;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .bl_otherLinkList {
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .bl_otherLinkList {
    width: 80%;
  }
}

.bl_otherLinkListItem {
  -webkit-transition: .3s all;
  transition: .3s all;
}

.bl_otherLinkListItem:nth-child(n+2) {
  margin-top: 1.5em;
}

.bl_otherLinkListItem:hover {
  opacity: 0.8;
  -webkit-transition: .3s all;
  transition: .3s all;
}

/*------------------------------------------
footer
------------------------------------------*/
.ly_footer {
  display: block;
  background: #EFEFEF;
}

.bl_footerList {
  width: 100%;
  padding: 1.5em;
  max-width: 960px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.bl_footerListItem {
  width: 100%;
  -ms-flex: 0 1 auto;
  -webkit-box-flex: 0;
          flex: 0 1 auto;
  text-align: center;
  border-right: solid 1px #BCBCBC;
  padding-right: 2em;
  margin-right: 2em;
  font-size: 0.875em;
}

.bl_footerListItem > a {
  color: #333333;
}

.bl_footerListItem:last-child {
  border-right-style: none;
  padding-right: 0;
  margin-right: 0;
}

.ly_footerCopy {
  background: #333333;
  text-align: center;
  padding: 1em;
}

.el_footerCopy {
  color: #C6C6C6;
  font-size: 0.875em;
}

/*------------------------------------------
FV下のお問合せボタン
------------------------------------------*/
.ly_cvArea {
  display: block;
  padding: 1em 1.5em;
}

.ly_cvArea.ly_cvArea__bgYellow {
  background: #FFE564;
}

.ly_yellowgara {
  background: url("../img/fv-back@2x.jpg");
  background-repeat: repeat-y;
  background-position: top left;
  background-size: 100%;
  padding: 1em 0;
}

.ly_bluegara {
  background: url("../img/bg-back-blue@2x.jpg");
  background-repeat: repeat-y;
  background-position: top left;
  background-size: 100%;
  padding: 1em 0;
}

/*--------------------------
注意書き部分(CB)
---------------------------*/
.ly_cont_notice_fv {
  width: 95%;
  display: block;
  margin: 0 auto;
}

.ly_cont_notice_wrapper {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .ly_cont_notice_wrapper {
    padding: 0.5em 0;
  }
}

@media screen and (min-width: 768px) {
  .ly_cont_notice_wrapper {
    padding: 1.5em 1em;
  }
}

.ly_cont_notice {
  width: 100%;
  display: block;
  margin: 1em auto;
}

.ly_cont_notice.ly_cont_notice__small {
  margin: 0 auto;
}

.ly_cont_notice.ly_cont_notice__small .el_toggle_contents {
  display: none;
}

@media screen and (max-width: 767px) {
  .ly_cont_notice.ly_cont_notice__small {
    width: 88%;
  }
}

@media screen and (max-width: 767px) {
  .ly_cont_notice.ly_cont_notice__small {
    width: 90%;
  }
}

@media screen and (max-width: 767px) {
  .ly_cont_notice.ly_cont_notice__plan {
    width: 90%;
  }
}

@media screen and (min-width: 768px) {
  .ly_cont_notice.ly_cont_notice__plan {
    width: 60%;
    max-width: 920px;
  }
}

/*--------------------------------------------------
見出し
---------------------------------------------------*/
.el_heading {
  text-align: center;
  font-size: 32px;
  font-size: clamp(32px, 1vw, 40px);
  font-weight: 900;
}

.el_heading.el_heading__fv {
  background: #62BDC3;
  color: #fff;
  font-size: clamp(18px, 1vw, 21px);
  border-radius: 12px 12px 0 0;
  padding: 0.3em;
}

.el_label.el_label__caution {
  background: #E00429;
  padding: 0.1em 0.5em;
  font-weight: 700;
  text-align: center;
  color: #fff;
  border-radius: 4px;
  margin-left: 0.2em;
  font-size: clamp(10px, 1vw, 12px);
}

/*--------------------------------------------------
文字関係
---------------------------------------------------*/
.el_lead {
  text-align: center;
  display: block;
  margin: 1em auto;
  font-size: clamp(16px, 1vw, 18px);
}

/*--------------------------------------------------
横並び
---------------------------------------------------*/
@media screen and (min-width: 768px) {
  .ly_flex {
    width: 100%;
    max-width: 900px;
    margin: 2em auto;
  }
}

@media screen and (max-width: 767px) {
  .ly_flex {
    width: 96%;
    margin: 2em auto;
  }
}

.bl_flexList {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 768px) {
  .bl_flexList {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

@media screen and (max-width: 767px) {
  .bl_flexList {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.bl_flexListItem {
  width: 100%;
  -ms-flex: 0 1 auto;
  -webkit-box-flex: 0;
          flex: 0 1 auto;
}

@media screen and (min-width: 768px) {
  .bl_flexListItem:nth-child(n+2) {
    margin-left: 1em;
  }
}

@media screen and (max-width: 767px) {
  .bl_flexListItem:nth-child(n+2) {
    margin-top: 1em;
  }
}

/*--------------------------------------------------
FV
---------------------------------------------------*/
.ly_fv {
  position: relative;
  width: 100%;
  background: url("../img/bg-fv.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (min-width: 768px) {
  .ly_fv {
    min-height: 900px;
  }
}

@media screen and (min-width: 768px) {
  .bl_fv {
    width: 53%;
    position: absolute;
    top: 50%;
    left: 40px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

@media screen and (max-width: 767px) {
  .bl_fv {
    display: block;
    width: 96%;
    padding-top: 1em;
    text-align: center;
    margin: 0 auto;
  }
}

/*--------------------------------------------------
特長
---------------------------------------------------*/
@media screen and (min-width: 768px) {
  .bl_effectImg {
    width: 100%;
    max-width: 900px;
    margin: 2em auto;
  }
}

@media screen and (max-width: 767px) {
  .bl_effectImg {
    width: 96%;
    margin: 2em auto;
  }
}

/*--------------------------------------------------
注釈
---------------------------------------------------*/
.ly_caution {
  margin-top: 1em;
}

@media screen and (min-width: 768px) {
  .ly_caution {
    width: 100%;
    max-width: 900px;
    margin: 2em auto;
  }
}

@media screen and (max-width: 767px) {
  .ly_caution {
    width: 96%;
    margin: 2em auto;
  }
}

.bl_caution_ttl {
  font-size: clamp(14px, 1vw, 14px);
  border-top: solid 1px #333;
  border-bottom: solid 1px #333;
  padding: 0.5em 0;
  position: relative;
}

.bl_caution_ttl::after {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 8px 0 8px;
  border-color: #000333 transparent transparent transparent;
  position: absolute;
  top: 50%;
  right: 1em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.bl_caution_cont {
  margin-top: 1em;
}

.bl_cautionListItem {
  font-size: clamp(10px, 1vw, 12px);
}

/*--------------------------------------------------
お問合せフォーム本体
---------------------------------------------------*/
.ly_form {
  display: block;
}

@media screen and (min-width: 768px) {
  .ly_form {
    width: 100%;
    max-width: 800px;
    margin: 2em auto;
  }
}

@media screen and (max-width: 767px) {
  .ly_form {
    width: 100%;
    margin: 2em auto;
  }
}

.ly_form input[type="text"] {
  font-size: clamp(18px, 1vw, 21px);
  padding: 0.5em;
  width: 100%;
}

.ly_form input[type="tel"] {
  font-size: clamp(18px, 1vw, 21px);
  padding: 0.5em;
  width: 100%;
}

.ly_form input[type="email"] {
  font-size: clamp(18px, 1vw, 21px);
  padding: 0.5em;
  width: 100%;
}

.ly_form select {
  font-size: clamp(18px, 1vw, 21px);
  padding: 0.5em;
  width: 100%;
  max-width: 200px;
}

.ly_form input[type="checkbox"] {
  width: 24px;
  height: 24px;
  vertical-align: middle;
}

.ly_form input[type="radio"] {
  width: 24px;
  height: 24px;
  vertical-align: middle;
}

.ly_form .el_labeltxt {
  vertical-align: middle;
}

.ly_form textarea {
  width: 100%;
  padding: 0.5em;
  font-size: clamp(18px, 1vw, 21px);
}

.bl_formList {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: solid 1px #BFBFBF;
  padding: 1em;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .bl_formList {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

@media screen and (max-width: 767px) {
  .bl_formList {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.bl_formList:last-child {
  border-bottom: solid 1px #BFBFBF;
}

.el_formList_ttl {
  -ms-flex: 0 1 auto;
  -webkit-box-flex: 0;
          flex: 0 1 auto;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .el_formList_ttl {
    width: 40%;
  }
}

@media screen and (max-width: 767px) {
  .el_formList_ttl {
    width: 100%;
    font-size: clamp(21px, 1vw, 24px);
  }
}

.bl_formList_cont {
  width: 100%;
  -ms-flex: 0 1 auto;
  -webkit-box-flex: 0;
          flex: 0 1 auto;
}

@media screen and (max-width: 767px) {
  .bl_formList_cont {
    margin-top: 0.8em;
  }
}

.bl_formList_cont.bl_formList_cont__flex {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media screen and (min-width: 768px) {
  .bl_formList_cont.bl_formList_cont__flex {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

@media screen and (max-width: 767px) {
  .bl_formList_cont.bl_formList_cont__flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media screen and (min-width: 768px) {
  .bl_formList_cont.bl_formList_cont__flex div:nth-child(n+2) {
    margin-left: 0.5em;
  }
}

.bl_formList_cont.bl_formList_cont__flex-column {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.bl_formList_contListItem {
  width: 100%;
  -ms-flex: 0 1 auto;
  -webkit-box-flex: 0;
          flex: 0 1 auto;
}

.bl_product_img {
  display: block;
  margin-top: 1em;
}

/*送信ボタン*/
.ly_submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /*確認画面用*/
}

@media screen and (min-width: 768px) {
  .ly_submit {
    width: 100%;
    max-width: 440px;
    margin: 2em auto;
  }
}

@media screen and (max-width: 767px) {
  .ly_submit {
    width: 96%;
    margin: 2em auto;
  }
}

.ly_submit.ly_submit__confirm {
  max-width: 600px;
}

.bl_submit {
  width: 100%;
  -ms-flex: 0 1 auto;
  -webkit-box-flex: 0;
          flex: 0 1 auto;
}

.bl_submit.bl_submit__back {
  margin-right: 1em;
}

.el_submit {
  display: block;
  width: 100%;
  padding: 1em 1.5em;
  border-radius: 5px;
  background: #12a73b;
  text-align: center;
  color: #fff;
  font-weight: 900;
  font-size: clamp(24px, 1vw, 32px);
  border-style: none;
  cursor: pointer;
  pointer-events: auto;
}

.el_submit.el_submit__back {
  background: #88d39d;
}

.el_submit.js-disabled {
  background: #aaa;
  pointer-events: none;
}

/*--------------------------------------------------
プレースホルダー
---------------------------------------------------*/
input[type="text"]::-webkit-input-placeholder, input[type="tel"]::-webkit-input-placeholder, input[type="email"]::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #ccc;
}
input[type="text"]:-ms-input-placeholder, input[type="tel"]:-ms-input-placeholder, input[type="email"]:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #ccc;
}
input[type="text"]::-ms-input-placeholder, input[type="tel"]::-ms-input-placeholder, input[type="email"]::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #ccc;
}
input[type="text"]::placeholder, input[type="tel"]::placeholder, input[type="email"]::placeholder, textarea::placeholder {
  color: #ccc;
}

/*--------------------------------------------------
同意チェックボックス
---------------------------------------------------*/
@media screen and (min-width: 768px) {
  .bl_agree {
    width: 100%;
    max-width: 800px;
    margin: 2em auto;
  }
}

@media screen and (max-width: 767px) {
  .bl_agree {
    width: 96%;
    margin: 2em auto;
  }
}

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

/*--------------------------------------------------
footer
---------------------------------------------------*/
.bl_footer {
  background: #E8E8E8;
  padding: 2em;
  text-align: center;
}

.bl_footer small {
  font-size: clamp(12px, 1vw, 12px);
}

/*--------------------------------------------------
FVにお問合せフォーム
---------------------------------------------------*/
.ly_fv_order {
  -webkit-box-shadow: 0px 0px 12px -4px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 12px -4px rgba(0, 0, 0, 0.3);
  border-radius: 12px;
}

@media screen and (min-width: 768px) {
  .ly_fv_order {
    width: 40%;
    position: absolute;
    top: 50%;
    right: 40px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 3;
  }
}

@media screen and (max-width: 767px) {
  .ly_fv_order {
    display: block;
    width: 96%;
    margin: 2em auto;
  }
}

.ly_fv_order .el_lead {
  display: none;
}

.ly_fv_order .ly_form {
  margin: 0 auto;
  background: #fff;
  padding: 0.5em 1em;
}

@media screen and (min-width: 768px) {
  .ly_fv_order .ly_form {
    border-radius: 12px;
  }
}

.ly_fv_order .ly_form input[type="checkbox"] {
  width: 14px;
}

.ly_fv_order .ly_form input[type="radio"] {
  width: 14px;
}

@media screen and (min-width: 768px) {
  .ly_fv_order .ly_form input[type="text"] {
    font-size: clamp(12px, 1vw, 14px);
    padding: 0.2em;
  }
}

@media screen and (max-width: 767px) {
  .ly_fv_order .ly_form input[type="text"] {
    font-size: 1em;
    padding: 0.5em;
  }
}

@media screen and (min-width: 768px) {
  .ly_fv_order .ly_form input[type="tel"] {
    font-size: clamp(12px, 1vw, 14px);
    padding: 0.2em;
    height: 50px;
  }
}

@media screen and (max-width: 767px) {
  .ly_fv_order .ly_form input[type="tel"] {
    font-size: 1em;
    padding: 0.5em;
  }
}

@media screen and (min-width: 768px) {
  .ly_fv_order .ly_form input[type="email"] {
    font-size: clamp(12px, 1vw, 14px);
    padding: 0.2em;
    height: 50px;
  }
}

@media screen and (max-width: 767px) {
  .ly_fv_order .ly_form input[type="email"] {
    font-size: 1em;
    padding: 0.5em;
  }
}

@media screen and (min-width: 768px) {
  .ly_fv_order .ly_form .el_checkbox_labeltxt {
    font-size: clamp(12px, 1vw, 14px);
  }
}

@media screen and (max-width: 767px) {
  .ly_fv_order .ly_form .el_checkbox_labeltxt {
    font-size: 1em;
  }
}

@media screen and (min-width: 768px) {
  .ly_fv_order .ly_form .el_labeltxt {
    font-size: clamp(12px, 1vw, 14px);
  }
}

@media screen and (max-width: 767px) {
  .ly_fv_order .ly_form .el_labeltxt {
    font-size: 1em;
  }
}

@media screen and (min-width: 768px) {
  .ly_fv_order .ly_form select {
    font-size: clamp(12px, 1vw, 14px);
    padding: 0.2em;
  }
}

@media screen and (max-width: 767px) {
  .ly_fv_order .ly_form select {
    font-size: 1em;
    padding: 0.5em;
  }
}

@media screen and (min-width: 768px) {
  .ly_fv_order .ly_form textarea {
    font-size: clamp(12px, 1vw, 14px);
    padding: 0.2em;
    height: 50px;
  }
}

@media screen and (max-width: 767px) {
  .ly_fv_order .ly_form textarea {
    font-size: 1em;
    padding: 0.5em;
  }
}

.ly_fv_order .ly_form .el_agree_text {
  font-size: clamp(12px, 1vw, 14px);
}

@media screen and (min-width: 768px) {
  .ly_fv_order .bl_formList {
    padding: 0.2em;
  }
}

@media screen and (max-width: 767px) {
  .ly_fv_order .bl_formList {
    padding: 0.8em 0;
  }
}

.ly_fv_order .bl_formList.bl_formList__borderNone {
  border-top-style: none;
}

@media screen and (min-width: 768px) {
  .ly_fv_order .el_formList_ttl {
    width: 36%;
    font-size: clamp(12px, 1vw, 12px);
  }
}

@media screen and (max-width: 767px) {
  .ly_fv_order .el_formList_ttl {
    font-size: 1.125em;
  }
}

.ly_fv_order .bl_product_img {
  display: none;
}

.ly_fv_order .bl_formList_cont.bl_formList_cont__flex {
  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;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .ly_fv_order .bl_formList_cont.bl_formList_cont__flex {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

@media screen and (max-width: 767px) {
  .ly_fv_order .bl_formList_cont.bl_formList_cont__flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.ly_fv_order .bl_formList_cont .el_formList_cont_flexItem {
  width: 100%;
  -ms-flex: 0 1 auto;
  -webkit-box-flex: 0;
          flex: 0 1 auto;
}

.ly_fv_order .bl_agree {
  margin: 1em auto 0.5em;
}

.ly_fv_order .ly_submit {
  margin: 1em auto;
}

.ly_fv_order .el_submit {
  padding: 1em 0.5em;
  font-size: clamp(14px, 1vw, 16px);
  border-style: none;
}

.ly_fv_order .el_label.el_label__caution {
  padding: 0.1em 0.2em;
  font-size: 10px;
}

@media screen and (min-width: 768px) {
  .ly_fv_order .hp_txt_small {
    font-size: 10px;
  }
}

@media screen and (max-width: 767px) {
  .ly_fv_order .hp_txt_small {
    font-size: 0.7em;
  }
}

/*--------------------------------------------------
完了画面
---------------------------------------------------*/
@media screen and (min-width: 768px) {
  .ly_thanksLead {
    width: 100%;
    max-width: 800px;
    margin: 2em auto;
  }
}

@media screen and (max-width: 767px) {
  .ly_thanksLead {
    width: 96%;
    margin: 2em auto;
  }
}

.bl_thanksLead {
  text-align: center;
  line-height: 1.9;
}

.bl_cautionLeadBox {
  border: solid 1px #E00429;
  border-radius: 8px;
  padding: 1.5em;
  text-align: center;
  line-height: 1.9;
}

@media screen and (min-width: 768px) {
  .ly_btnTop {
    width: 100%;
    max-width: 400px;
    margin: 2em auto;
  }
}

@media screen and (max-width: 767px) {
  .ly_btnTop {
    width: 96%;
    margin: 2em auto;
  }
}

/*@import 'sidecont';*/
/*# sourceMappingURL=style.css.map */