@charset "UTF-8";
/* Scss Document */
/* A Modern CSS Reset */
*, *::before, *::after {
  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 {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important; } }
img {
  max-width: 100%;
  height: auto;
  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){
	}*/
/*--------------------------------------------------
全体設定
notosansは使わず游ゴシックなどで。
---------------------------------------------------*/
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box; }

body {
  font-size: 16px;
  font-family: "Hiragino Kaku Gothic ProN","Yu Gothic",Meiryo,sans-serif;
  font-weight: 500;
  color: #333333;
  overflow-x: hidden;
  background: #F6FAFD; }

.ly_body {
  background: #efefef; }
  .ly_body.ly_body__entry {
    background: #fff; }

.ly_container {
  width: 100%;
  /*	max-width: 960px;*/
  margin-left: auto;
  margin-right: auto;
  background: #fff; }

/*--------------------------------------------------
ヘルパークラス
---------------------------------------------------*/
@media screen and (max-width: 767px) {
  .hp_sp_br {
    display: block; } }
@media screen and (min-width: 768px) {
  .hp_sp_br {
    display: none; } }

@media screen and (max-width: 767px) {
  .hp_pc_br {
    display: none; } }
@media screen and (min-width: 768px) {
  .hp_pc_br {
    display: block; } }

.hp_ta-c {
  text-align: center !important; }

.hp_ta-r {
  text-align: right !important; }

.hp_txt_small {
  font-size: 0.8em; }

.hp_txt_large {
  font-size: 1.5em; }

.hp_img_tac {
  display: block;
  margin: 0 auto; }

.hp_mt20 {
  margin-top: 20px; }

.hp_txt_caution {
  color: #E00429; }

.hp_txt_exBold {
  font-weight: 900; }

.hp_txt_underLine {
  background: linear-gradient(transparent 75%, #FFE564 75%); }

.hp_txt_slant {
  position: relative;
  /*複数行*/ }
  .hp_txt_slant::before {
    display: block;
    content: "";
    width: 1em;
    height: 2px;
    border-radius: 12px;
    background: #000000;
    position: absolute;
    top: 50%;
    left: -1.2em;
    -webkit-transform: translateY(-50%) rotate(70deg);
    transform: translateY(-50%) rotate(70deg); }
  .hp_txt_slant::after {
    display: block;
    content: "";
    width: 1em;
    height: 2px;
    border-radius: 12px;
    background: #000000;
    position: absolute;
    top: 50%;
    right: -1.2em;
    -webkit-transform: translateY(-50%) rotate(-70deg);
    transform: translateY(-50%) rotate(-70deg); }
  .hp_txt_slant.hp_txt_slant__w::before {
    background: #fff; }
  .hp_txt_slant.hp_txt_slant__w::after {
    background: #fff; }
  .hp_txt_slant.hp_txt_slant__multi {
    position: relative;
    font-weight: bold; }
    .hp_txt_slant.hp_txt_slant__multi::before {
      display: block;
      content: "";
      width: 2em;
      height: 2px;
      border-radius: 12px;
      background: #000000;
      position: absolute;
      top: 50%;
      left: -4.2em;
      -webkit-transform: translateY(-50%) rotate(70deg);
      transform: translateY(-50%) rotate(70deg); }
    .hp_txt_slant.hp_txt_slant__multi::after {
      display: block;
      content: "";
      width: 2em;
      height: 2px;
      border-radius: 12px;
      background: #000000;
      position: absolute;
      top: 50%;
      right: -3.2em;
      -webkit-transform: translateY(-50%) rotate(-70deg);
      transform: translateY(-50%) rotate(-70deg); }

.hp_pos_rel {
  position: relative; }

/*文字上に出すドット*/
.hp_txt_dot {
  position: relative; }
  .hp_txt_dot::before {
    display: block;
    content: "";
    width: 0.3em;
    height: 0.3em;
    background: #F1785A;
    border-radius: 50%;
    position: absolute;
    top: -0.1em;
    left: 0;
    right: 0;
    margin: auto; }

/*文字の下アンダーライン*/
.hp_underline_y {
  border-bottom: solid 2px #F6CE25; }

/*--------------------------------------------------
全体余白
---------------------------------------------------*/
.ly_section {
  display: block; }
  @media screen and (min-width: 768px) {
    .ly_section {
      width: 96%;
      max-width: 960px;
      margin: 4em auto;
      padding: 0em 0 3em 0; } }
  @media screen and (max-width: 767px) {
    .ly_section {
      /*width: 96%;*/
      width: 100%;
      margin: 2em auto;
      padding: 0em 0 3em 0;
      background: #F6FAFD; } }

/*背景色付き*/
.hp_section_bg {
  display: block;
  width: 100%;
  background: #F9F9F9; }

/*--------------------------------------------------
header
---------------------------------------------------*/
.ly_header {
  position: relative;
  z-index: 2;
  box-shadow: 0px 5px 12px -4px rgba(0, 0, 0, 0.1); }
  @media screen and (min-width: 768px) {
    .ly_header {
      width: 100%;
      margin: 0 auto; } }
  @media screen and (max-width: 767px) {
    .ly_header {
      width: 100%;
      padding: 0.2em 1em; } }

.bl_header {
  margin: 0 auto; }
  @media screen and (min-width: 768px) {
    .bl_header {
      width: 100%;
      padding: 0.5em 1em;
      max-width: 1200px; } }
  @media screen and (max-width: 767px) {
    .bl_header {
      width: 100%; } }

/*--------------------------------------------------
見出し
---------------------------------------------------*/
.el_heading {
  text-align: center;
  font-weight: 900;
  position: relative; }
  @media screen and (min-width: 768px) {
    .el_heading {
      font-size: 2.5em; } }
  @media screen and (max-width: 767px) {
    .el_heading {
      font-size: 1.8em; } }
  .el_heading.el_heading__lv1 {
    /*		background: rgb(33, 133, 208);*/
    /*		color: #fff;*/
    padding: 0.5em;
    /*		border-radius: 24px 24px 0 0;*/ }
    @media screen and (max-width: 767px) {
      .el_heading.el_heading__lv1 {
        line-height: 1.3; } }
  .el_heading.el_heading__lv2 {
    text-align: left;
    margin-bottom: 1em;
    border-left: solid 6px #2185d0;
    padding-left: 0.5em;
    padding-bottom: 0.5em;
    border-bottom: solid 1px #2185d0; }
    @media screen and (min-width: 768px) {
      .el_heading.el_heading__lv2 {
        font-size: 1.5em; } }
    @media screen and (max-width: 767px) {
      .el_heading.el_heading__lv2 {
        font-size: 1.313em; } }
  .el_heading.el_heading__confirm {
    /*		background: rgb(33, 133, 208);
    		color: #fff;*/
    padding: 0.5em;
    /*		border-radius: 24px 24px 0 0;*/ }
  .el_heading.el_heading__thanks {
    /*		background: rgb(33, 133, 208);
    		color: #fff;*/
    padding: 0.5em;
    /*		border-radius: 24px 24px 0 0;	*/ }

/*見出し下*/
.bl_heading_sub {
  display: block;
  width: 90%;
  line-height: 1.4;
  padding: 1em 0.5em;
  border: solid 3px #e00429;
  margin: 1em auto;
  color: #E00429;
  text-align: center;
  font-size: clamp(18px, 1vw, 21px);
  font-weight: bold; }
  @media screen and (min-width: 768px) {
    .bl_heading_sub {
      max-width: 680px; } }

.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; }
  @media screen and (min-width: 768px) {
    .el_label.el_label__caution {
      font-size: 0.8em; } }
  @media screen and (max-width: 767px) {
    .el_label.el_label__caution {
      font-size: 0.8em; } }

/*任意CSSじか書き*/
.el_label.el_label__any {
  background: #aaa;
  padding: 0.1em 0.5em;
  font-weight: 700;
  text-align: center;
  color: #fff;
  border-radius: 4px;
  margin-left: 0.2em;
	font-size: 0.8em;}

/*--------------------------------------------------
文字関係
---------------------------------------------------*/
.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: flex;
  justify-content: center;
  align-items: center; }
  @media screen and (min-width: 768px) {
    .bl_flexList {
      flex-wrap: nowrap; } }
  @media screen and (max-width: 767px) {
    .bl_flexList {
      flex-wrap: wrap; } }

.bl_flexListItem {
  width: 100%;
  -ms-flex: 0 1 auto;
  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; }
  @media screen and (min-width: 768px) {
    .ly_fv {
      width: 100%;
      height: 200px;
      background: url("../img/fv.jpg");
      background-attachment: fixed;
      background-position: top center;
      background-repeat: no-repeat;
      background-size: contain; } }
  @media screen and (max-width: 767px) {
    .ly_fv {
      margin-top: 160px; }
      .ly_fv::after {
        display: block;
        content: "";
        width: 100%;
        height: 30vh;
        background: url("../img/fv-sp.jpg");
        background-size: cover;
        background-position: top center;
        background-repeat: no-repeat;
        position: fixed;
        top: 0;
        left: 0;
        z-index: -1; } }
  .ly_fv::before {
    display: block;
    content: "";
    width: 100%;
    height: 20px;
    background: #F6FAFD;
    border-radius: 24px 24px 0 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1; }

/*通常版*/
/*.ly_fv {
	position: relative;
	img {
		width: 100%;
	}
	&::before {
		display: block;
		content: "";
		width: 100%;
		height: 20px;
		background: #F6FAFD;
		border-radius: 12px 12px 0 0;
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		margin: auto;
		z-index: 1;
	}
}*/
@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_formLead {
  width: 100%;
  max-width: 640px;
  margin: 2em auto;
  text-align: center; }

/*--------------------------------------------------
お問合せフォーム本体
---------------------------------------------------*/
.ly_form {
  display: block;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0px 0px 7px -2px rgba(0, 0, 0, 0.3);
  margin: 3em auto 0; }
  @media screen and (min-width: 768px) {
    .ly_form {
      width: 100%;
      max-width: 680px;
      padding: 2em 1.5em; } }
  @media screen and (max-width: 767px) {
    .ly_form {
      width: 92%;
      padding: 1em; } }

.ly_form_section {
  /*margin-top: 5em;*/ }
  .ly_form_section.ly_form_section__first {
    margin-top: 2em; }

.ly_form input[type="text"] {
  padding: 0.5em;
  width: 100%; }
  @media screen and (min-width: 768px) {
    .ly_form input[type="text"] {
      font-size: 1em; } }
  @media screen and (max-width: 767px) {
    .ly_form input[type="text"] {
      font-size: 1.125em; } }
.ly_form input[type="tel"] {
  padding: 0.5em;
  width: 100%; }
  @media screen and (min-width: 768px) {
    .ly_form input[type="tel"] {
      font-size: 1em; } }
  @media screen and (max-width: 767px) {
    .ly_form input[type="tel"] {
      font-size: 1.125em; } }
.ly_form input[type="email"] {
  padding: 0.5em;
  width: 100%; }
  @media screen and (min-width: 768px) {
    .ly_form input[type="email"] {
      font-size: 1em; } }
  @media screen and (max-width: 767px) {
    .ly_form input[type="email"] {
      font-size: 1.125em; } }
.ly_form select {
  padding: 0.5em;
  width: 100%; }
  @media screen and (min-width: 768px) {
    .ly_form select {
      font-size: 1em; } }
  @media screen and (max-width: 767px) {
    .ly_form select {
      font-size: 1.125em; } }
.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 input[type="submit"] {
  -webkit-appearance: none;
  appearance: none; }
.ly_form .el_labeltxt {
  vertical-align: middle; }
.ly_form textarea {
  width: 100%;
  padding: 0.5em; }
  @media screen and (min-width: 768px) {
    .ly_form textarea {
      font-size: 1em; } }
  @media screen and (max-width: 767px) {
    .ly_form textarea {
      font-size: 1.125em; } }

.bl_formListWrapper {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  /*border-top: solid 1px #BFBFBF;*/
  flex-wrap: wrap;
  position: relative; }
  @media screen and (min-width: 768px) {
    .bl_formListWrapper {
      padding: 1em 0; } }
  @media screen and (max-width: 767px) {
    .bl_formListWrapper {
      padding: 0.5em 0 1em; } }
 /*送信するボタンの前にボーダーをいれる
  .bl_formListWrapper:last-child {
    border-bottom: solid 1px #BFBFBF; }*/
  .bl_formListWrapper.bl_formListWrapper__after::after {
    display: block;
    content: "";
    width: 50%;
    padding: 1em 0;
    margin: 0 auto; }
  @media screen and (min-width: 768px) {
    .bl_formListWrapper .bl_formList {
      width: 100%; } }
  @media screen and (max-width: 767px) {
    .bl_formListWrapper .bl_formList {
      width: 100%; } }
  .bl_formListWrapper .bl_formList.bl_formList__single {
    width: 100%; }

.bl_formList {
  width: 100%;
  /*display: flex;*/
  display: block;
  justify-content: center;
  align-items: center;
  /*	border-top: solid 1px #BFBFBF;*/
  margin: 0 auto;
  /*	&:last-child {
  		border-bottom: solid 1px #BFBFBF;
  	}*/ }
  @media screen and (min-width: 768px) {
    .bl_formList {
      flex-wrap: nowrap;
      padding: 1em 0.5em; } }
  @media screen and (max-width: 767px) {
    .bl_formList {
      flex-wrap: wrap;
      padding: 1em 0.5em 0.5em; } }
  .bl_formList.bl_formList__confirm {
    border-bottom: dotted 2px #ddd; }

.el_formList_ttl {
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  font-weight: 700; }
  @media screen and (min-width: 768px) {
    .el_formList_ttl {
      width: 50%;
      font-size: 0.875em; } }
  @media screen and (max-width: 767px) {
    .el_formList_ttl {
      width: 100%;
      font-size: 0.875em; } }

.el_formList_sideTxt {
  padding-left: 1em; }

.bl_formList_cont {
  width: 100%;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  margin-top: 0.5em; }
  @media screen and (max-width: 767px) {
    .bl_formList_cont {
      margin-top: 0.8em; } }
  .bl_formList_cont.bl_formList_cont__flex {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /*radioボタン*/
    /*人数設定*/ }
    @media screen and (min-width: 768px) {
      .bl_formList_cont.bl_formList_cont__flex {
        flex-wrap: nowrap; } }
    @media screen and (max-width: 767px) {
      .bl_formList_cont.bl_formList_cont__flex {
        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; } }
    @media screen and (max-width: 767px) {
      .bl_formList_cont.bl_formList_cont__flex div:nth-child(n+2) {
        margin-top: 1em; } }
    @media screen and (min-width: 768px) {
      .bl_formList_cont.bl_formList_cont__flex .el_formList_sideTxt {
        width: 20%; } }
    @media screen and (max-width: 767px) {
      .bl_formList_cont.bl_formList_cont__flex .el_formList_sideTxt {
        width: 30%; } }

@media screen and (min-width: 768px) {
  #employeenum {
    width: 100%; } }
@media screen and (max-width: 767px) {
  #employeenum {
    width: 60%; } }

.bl_formList_contListItem {
  width: 100%;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto; }
  .bl_formList_contListItem:nth-child(n+2) {
    margin-top: 1em; }

.bl_product_img {
  display: block;
  margin-top: 1em; }

/*送信ボタン*/
.ly_submit {
  display: flex;
  flex-wrap: nowrap;
  justify-content: 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;
    flex-wrap: wrap;
    flex-direction: column-reverse; }

.bl_submit {
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  position: relative; }
  @media screen and (min-width: 768px) {
    .bl_submit {
      width: 70%; } }
  @media screen and (max-width: 767px) {
    .bl_submit {
      width: 100%; } }
  .bl_submit::after {
    display: block;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 12px;
    border-color: transparent transparent transparent #ffffff;
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%); }
  .bl_submit.bl_submit__back {
    /*margin-right: 1em;*/
    margin-top: 2em;
    max-width: 300px; }
    .bl_submit.bl_submit__back::after {
      display: block;
      content: "";
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 8px 12px 8px 0;
      border-color: transparent #8c8c8c transparent transparent;
      position: absolute;
      top: 50%;
      left: 20px;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%); }

.el_submit {
  display: block;
  width: 100%;
  padding: 1em 1.5em;
  border-radius: 8px;
  background: #2185d0;
  text-align: center;
  color: #fff;
  font-weight: 900;
  border-style: none;
  cursor: pointer;
  pointer-events: auto;
  transition: .3s opacity; }
  @media screen and (min-width: 768px) {
    .el_submit {
      font-size: 1.5em; } }
  @media screen and (max-width: 767px) {
    .el_submit {
      font-size: 1.5em; } }
  .el_submit.el_submit__back {
    background: transparent;
    border: solid 2px currentColor;
    padding: 0.5em;
    color: #8c8c8c; }
    @media screen and (min-width: 768px) {
      .el_submit.el_submit__back {
        font-size: 1em; } }
    @media screen and (max-width: 767px) {
      .el_submit.el_submit__back {
        font-size: 1em; } }
  .el_submit.js-disabled {
    background: #aaa;
    pointer-events: none; }
  .el_submit:hover {
    opacity: 0.8;
    transition: .3s opacity; }

/*--------------------------------------------------
同意チェックボックス
---------------------------------------------------*/
@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: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center; }

/*--------------------------------------------------
footer
---------------------------------------------------*/
.bl_footer {
  background: #F6FAFD;
  padding: 2em;
  text-align: center; }
  .bl_footer small {
    font-size: clamp(12px, 1vw, 12px); }

/*--------------------------------------------------
完了画面
---------------------------------------------------*/
@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;
  text-align: center; }
  @media screen and (min-width: 768px) {
    .bl_cautionLeadBox {
      padding: 1.5em;
      line-height: 1.9; } }
  @media screen and (max-width: 767px) {
    .bl_cautionLeadBox {
      padding: 1em;
      line-height: 1.8; } }

@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 */
