@charset "UTF-8";
/*
Theme Name: SBD Theme 2025
Theme URl: http://gyousei-it.com/
Description: Basic Theme for WordPress.
Author: seeboo design
*/
/*_/_/_/_/_/_/_/_/_/_/_/ _/_/_/_/_/_/ 共通項目 _/_/_/_/_/_/_/_/_/_/_/ _/_/_/_/_/_/  */
/*旧カラー
$main-color:#006633;
$sub-color:#d8eae9;
$light-color:#3b9694;
$emphasis-color:#ff9900;
*/
html {
  font-size: 62.5%;
}

body {
  text-align: center;
  margin: 0px;
  padding: 0px;
  -webkit-text-size-adjust: none;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #2F2F2F;
}
body a {
  text-decoration: none;
  color: #000;
}
@media screen and (max-width: 540px) {
  body {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

#wrapper {
  overflow: hidden;
}

br.pc {
  display: block;
}
@media screen and (max-width: 540px) {
  br.pc {
    display: none;
  }
}
br.tb {
  display: none;
}
@media screen and (max-width: 1024px) {
  br.tb {
    display: block;
  }
}
br.mb {
  display: none;
}
@media screen and (max-width: 540px) {
  br.mb {
    display: block;
  }
}

/*フワチラ防止*/
.load-hidden {
  visibility: hidden;
}

.scroll-up01 {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: all 1s;
  transition: all 1s;
}
.scroll-up01.is-show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.scroll-up02 {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: all 1s;
  transition: all 1s;
}
.scroll-up02.is-show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

/* _| _| _| _| _| _| _| _| _| _| _| _| ページTOP _| _| _| _| _| _| _| _| _| _| _| _| */
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 77%;
  z-index: 2000;
}
@media screen and (max-width: 540px) {
  #page-top {
    bottom: 10px;
    right: 5px;
  }
}
#page-top a {
  background: #FF0066;
  text-decoration: none;
  color: #fff;
  width: 60px;
  height: 60px;
  text-align: center;
  display: block;
  border-radius: 50%;
  position: relative;
}
#page-top a span {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
}
#page-top a:hover {
  text-decoration: none;
  color: #333 !important;
  background-color: #878787;
}

/* ---------------------------------- **
		Modal Window
** ---------------------------------- */
#layer_board_area {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 3vw;
  overflow-y: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /*スクロールバーを非表示*/
  -ms-overflow-style: none;
  /*スクロールバーを非表示*/
  scrollbar-width: none;
  /*スクロールバーを非表示*/
  z-index: 2;
}
@media screen and (max-width: 540px) {
  #layer_board_area {
    padding: 0 1vw;
  }
}
#layer_board_area::-webkit-scrollbar {
  display: none;
  /*スクロールバーを非表示*/
}

.layer_board_bg {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  cursor: pointer;
  background: #000;
  z-index: 0;
}

/* --modalWindow ポップアップ部分-- */
.layer_board {
  display: none;
  position: relative;
  width: 80%;
  max-width: 800px;
  margin: 3em auto;
  padding: 4em;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  z-index: 10;
}
@media screen and (max-width: 540px) {
  .layer_board {
    width: 96%;
    margin: 0.5em auto;
    padding: 0.5em 0.5em 1em;
  }
  .layer_board .mdl_btn_close.circle_btn {
    width: 21px;
    height: 21px;
    background-size: 14px;
  }
}
.layer_board.shortLayer {
  margin: 0;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.layer_board .mdl_btn_close.circle_btn {
  position: absolute;
  top: 10px;
  right: 15px;
  width: 30px;
  height: 30px;
  background-color: #FF9700;
  border-radius: 50%;
  border: 1px solid #ccc;
  -webkit-transition: 0.15s;
  transition: 0.15s;
  font-size: 20px;
  font-size: 2rem;
}
.layer_board .mdl_btn_close.circle_btn i {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #FFF !important;
  font-size: 20px;
  font-size: 2rem;
  position: absolute;
}
.layer_board .mdl_btn_close.circle_btn:hover {
  background-color: #FFD699;
  border: 1px solid #FFD699;
}
.layer_board .mdl_btn_close.circle_btn:hover i {
  color: #000 !important;
}

/* --modalWindow バツ(閉じる)ボタン-- */
/* --↑必須なのはここまで↑-- */
/* --modalWindow タイトル部分-- */
.layer_borad_title {
  font-size: 200%;
  font-weight: 200;
  color: #ED344E;
}

/* --modalWindow コンテンツ部分-- */
.layer_borad_content {
  margin: 1em auto 1.5em;
  display: inline-block;
  width: 100%;
}
@media screen and (max-width: 540px) {
  .layer_borad_content {
    margin: 0.25em auto 1em;
  }
}
.layer_borad_content p {
  text-align: left;
}
@media screen and (max-width: 540px) {
  .layer_borad_content p {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.layer_borad_content i {
  color: #FFC600;
}
@media screen and (max-width: 540px) {
  .layer_borad_content i {
    display: none;
  }
}
.layer_borad_content h2 {
  color: #FF0000;
}
@media screen and (max-width: 820px) {
  .layer_borad_content h2 {
    font-size: 21px;
    font-size: 2.1rem;
    margin: 20px 0 !important;
  }
}
@media screen and (max-width: 540px) {
  .layer_borad_content h2 {
    font-size: 18px;
    font-size: 1.8rem;
    margin: 20px 0 !important;
  }
}
@media screen and (max-width: 360px) {
  .layer_borad_content h2 {
    font-size: 16px;
    font-size: 1.6rem;
    margin: 10px 0 !important;
  }
}

/* --modalWindow 四角ボタン-- */
.layer_board .square_btn {
  display: block;
  position: relative;
  width: 160px;
  margin: 0 auto;
  padding: 10px;
  border: 2px solid #111;
  border-radius: 2px;
  font-size: 1.2em;
  font-weight: 300;
  color: #111;
  text-align: center;
  letter-spacing: 1px;
  text-decoration: none;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
.layer_board .square_btn:hover {
  background: #111;
  color: #fff;
}

/* --コンテンツ部分の装飾-- */
.layer_borad_title {
  font-size: 40px;
  font-size: 4rem;
  font-weight: 200;
  color: #ED344E;
}
@media screen and (max-width: 540px) {
  .layer_borad_title {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.layer_board .square_btn {
  display: block;
  position: relative;
  width: 160px;
  margin: 0 auto;
  padding: 10px;
  border: 2px solid #111;
  border-radius: 2px;
  font-size: 21px;
  font-size: 2.1rem;
  font-weight: 300;
  color: #111;
  text-align: center;
  letter-spacing: 1px;
  text-decoration: none;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
@media screen and (max-width: 540px) {
  .layer_board .square_btn {
    font-size: 18px;
    font-size: 1.8rem;
    padding: 5px;
  }
}

.layer_board .square_btn:hover {
  background: #111;
  color: #fff;
}

/* _| _| _| _| _| _| _| _| _| _| _| _| 基本共通レイアウト設定 _| _| _| _| _| _| _| _| _| _| _| _|  */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  display: inline-block;
  text-align: left !important;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .container {
    padding: 0px 10px;
  }
}

/* _| _| _| _| _| _| _| _| _| _| _| _| ヘッダー _| _| _| _| _| _| _| _| _| _| _| _|  */
header {
  width: 100%;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 300;
  height: 64px;
  position: absolute;
  top: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0;
}
@media screen and (max-width: 540px) {
  header {
    height: 60px;
  }
}
header #logo {
  background-image: url("images/logo.svg");
  background-repeat: no-repeat;
  background-size: 450px 64px;
  background-position: center center;
  display: inline-block;
  width: 100%;
  height: 64px;
  margin: 0;
  padding: 0;
}
header #logo a {
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  width: 280px;
  height: 85px;
  display: inline-block;
  padding: 0;
}
@media screen and (max-width: 540px) {
  header #logo a {
    width: 100%;
    height: 60px;
  }
}
@media screen and (max-width: 820px) {
  header #logo {
    background-size: 350px auto;
  }
}
@media screen and (max-width: 540px) {
  header #logo {
    background-size: 300px auto;
  }
}

/*/_/_/_/_/_/_/_/_/_/_/_/_/ ナビゲーション_/_/_/_/_/_/_/_/_/_/_/_/ */
nav {
  padding: 0px 0px 20px;
  margin: 0;
  right: 0;
  width: 100%;
  height: auto;
}
nav ul#menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  height: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
nav ul#menu li {
  position: relative;
  margin: 0;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 800;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  width: auto;
  color: #000 !important;
  height: auto;
}
nav ul#menu li a {
  margin: 0;
  color: #000 !important;
  text-decoration: none;
  padding: 0;
}
nav ul#menu li span:hover {
  position: absolute;
  width: auto;
  border-bottom: 2px solid #3e3a39;
  padding-bottom: 5px;
}
nav ul#menu li:hover ul {
  top: 100%;
  visibility: visible;
  opacity: 1;
}
nav ul#menu li i {
  color: #FF9700;
  margin-right: 5px;
}
@media screen and (max-width: 1024px) {
  nav {
    display: none;
  }
}

#menu li ul {
  opacity: 0;
  top: 0%;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #FFF;
  background-repeat: repeat;
  -webkit-box-shadow: 2px 2px 5px #666;
          box-shadow: 2px 2px 5px #666;
}
#menu li ul li:before {
  content: "";
  font-family: "";
}

/*_/_/_/_/_/ドロップダウンメニュー_/_/_/_/_/*/
.dd {
  *zoom: 1;
  list-style-type: none;
  margin: 0px auto;
  padding: 0;
}
.dd:before, .dd:after {
  content: "";
  display: table;
}
.dd:after {
  clear: both;
}
.dd li {
  width: auto;
  position: relative;
  margin: 0;
  padding: 0;
  text-align: center;
}
.dd li a {
  margin: 0;
  padding: 5px 0px;
  color: #fff;
  line-height: 1;
  text-decoration: none;
  height: auto;
  display: inline-block;
}
.dd li ul {
  list-style: none;
  background-repeat: repeat;
  position: absolute;
  left: 50%;
  top: -5%;
  -webkit-transform: translate(-50%, 5%);
          transform: translate(-50%, 5%);
  z-index: 9999;
  padding: 0px;
  margin: 0px;
  border: 3px solid #FF9700;
}
.dd li ul li a {
  width: auto;
  min-width: 200px;
  margin: 0px;
  display: inline-block;
  text-align: center;
  line-height: 1em;
  padding: 10px !important;
  border-bottom: 1px solid #FF9700;
  font-weight: 800;
}
.dd li ul li a:hover {
  background-color: #fef9f1;
  color: #FF0066 !important;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

/*_/_/_/_/_/モーダルメニュー_/_/_/_/_/*/
#modal-checkbox {
  display: none;
}

#modal-open {
  display: none;
}
@media screen and (max-width: 1024px) {
  #modal-open {
    display: block;
    cursor: pointer;
    position: absolute;
    padding: 2.5px 5px;
    font-size: 28px;
    font-size: 2.8rem;
    border-radius: 5px;
    color: #FF9700;
    background-color: #fef9f1;
    border-radius: 5px;
    width: 35px;
    height: 35px;
    top: -2.5px;
    right: 10px;
    float: right;
    margin: 20px 0;
    z-index: 20;
  }
}
@media screen and (max-width: 1024px) and (max-width: 540px) {
  #modal-open {
    padding: 0px 5px 10px;
    left: 87.5% !important;
    margin: 10px 0;
  }
}
@media screen and (max-width: 540px) {
  #modal-open {
    margin: 10px 0;
    right: 0px;
  }
}
#modal-open .humberger {
  display: none;
}
@media screen and (max-width: 1024px) {
  #modal-open .humberger {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

#modal-content {
  display: none;
}
@media screen and (max-width: 1024px) {
  #modal-content {
    position: fixed;
    top: 5%;
    left: 0%;
    z-index: 40;
    -webkit-transition: all 0.1s ease-in-out 0s;
    transition: all 0.1s ease-in-out 0s;
    visibility: hidden;
    opacity: 0;
    padding: 1em 0;
    overflow-y: auto;
    max-height: 90%;
    width: 100%;
    display: block;
  }
}
#modal-checkbox:checked ~ #modal-content {
  display: none;
}
@media screen and (max-width: 1024px) {
  #modal-checkbox:checked ~ #modal-content {
    visibility: visible;
    opacity: 1;
    left: 0%;
    display: block;
  }
}

#modal-close {
  display: none;
}
@media screen and (max-width: 1024px) {
  #modal-close {
    display: none;
    position: fixed;
    z-index: 39;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f0ffd4;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    color: #FF9700;
    padding: 30px 25px;
    text-align: left;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
#modal-checkbox:checked ~ #modal-close {
  display: none;
}
@media screen and (max-width: 1024px) {
  #modal-checkbox:checked ~ #modal-close {
    display: block;
    opacity: 0.95;
    visibility: visible;
  }
}

ul#modal-menu {
  list-style: none;
}
@media screen and (max-width: 1024px) {
  ul#modal-menu {
    list-style: none;
    margin: 20px 0 0 25px;
    padding: 0 0 10px 0;
    width: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  ul#modal-menu li {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.4em;
    text-align: left;
    padding: 0;
    font-weight: 500 !important;
    margin: 0 0 30px;
  }
  ul#modal-menu li.contact_data {
    font-weight: 900 !important;
    color: #FF0066;
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1.8em;
  }
  ul#modal-menu li.contact_data i {
    color: #324B97;
    font-size: 24px;
    font-size: 2.4rem;
  }
  ul#modal-menu li a {
    color: #FF9700;
  }
  ul#modal-menu li ul {
    list-style: none;
    margin: 0 10px;
    padding: 10px;
  }
}

.parent {
  padding-top: 0px;
  padding-bottom: 0px;
  text-indent: 10;
  display: block;
  position: relative;
  width: 200px;
  color: #FF9700;
}
.parent::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 0px;
  border-top: solid 2px #3071b7;
  border-right: solid 2px #3071b7;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -6px;
  font-weight: bold;
}

ul#modal-menu .open::before {
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
  margin-top: -3px;
}
ul.sub_menu {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 300px;
}
ul.sub_menu li {
  margin: 20px 0 !important;
  padding: 0 !important;
  display: block;
}
ul.sub_menu li a {
  display: block;
  position: relative;
  margin: 0 !important;
  padding: 0 !important;
}
ul.sub_menu li:before {
  content: "";
  font-family: "";
}
ul li:hover ul.sub_menu {
  top: 100%;
  visibility: visible;
  opacity: 1;
}

#contact {
  width: 100%;
  padding: 0px;
  height: 300px;
  margin: -5px 0 0 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 820px) {
  #contact {
    height: 200px;
  }
}
@media screen and (max-width: 540px) {
  #contact {
    display: none;
  }
}
#contact a {
  color: #FFF !important;
}
#contact .tel_area, #contact .mail_area, #contact .form_area {
  color: #FFF !important;
  font-size: 21px !important;
  font-size: 2.1rem !important;
  font-weight: 800;
  display: inline-block;
  position: relative;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 820px) {
  #contact .tel_area, #contact .mail_area, #contact .form_area {
    font-size: 16px !important;
    font-size: 1.6rem !important;
  }
}
#contact .tel_area span, #contact .mail_area span, #contact .form_area span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}
#contact .tel_area {
  background-color: #FF9700;
  width: 33%;
}
#contact .mail_area {
  background-color: #000;
  width: 33%;
}
#contact .form_area {
  width: 34%;
  background-color: #FFD699;
}
#contact i.fontawesome {
  font-size: 70px !important;
  font-size: 7rem !important;
  margin-bottom: 10px;
}
@media screen and (max-width: 820px) {
  #contact i.fontawesome {
    font-size: 50px !important;
    font-size: 5rem !important;
  }
}

#mobile_contact {
  display: none;
}
@media screen and (max-width: 540px) {
  #mobile_contact {
    width: 100%;
    padding: 0px;
    position: fixed;
    bottom: 0%;
    height: auto;
    z-index: 1000;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: auto;
    font-size: 13px !important;
    font-size: 1.3rem !important;
    line-height: 2.5em;
  }
  #mobile_contact .mail {
    width: 33%;
    color: #FFF;
    background-color: #FF9700;
    padding: 0;
    padding: 0;
    text-align: center;
  }
  #mobile_contact .mail a {
    color: #FFF !important;
  }
  #mobile_contact .mail i {
    font-size: 35px !important;
    font-size: 3.5rem !important;
  }
  #mobile_contact .phone {
    width: 34%;
    color: #000;
    background-color: #FFD699;
    padding: 0;
    text-align: center;
  }
  #mobile_contact .phone a {
    color: #FFF !important;
  }
  #mobile_contact .phone i {
    font-size: 40px !important;
    font-size: 4rem !important;
  }
  #mobile_contact .top {
    width: 33%;
    color: #FFF;
    background-color: #000000;
    padding: 0;
    text-align: center;
  }
  #mobile_contact .top a {
    color: #FFF !important;
  }
  #mobile_contact .top i {
    font-size: 40px !important;
    font-size: 4rem !important;
  }
}

footer {
  width: 100%;
  max-width: 1200px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  padding: 20px 0 5px 0;
  box-sizing: border-box;
  margin: 0 auto 0px;
  font-size: 14px !important;
  font-size: 1.4rem !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  /*border-top:10px solid $main-color ;*/
}
@media screen and (max-width: 540px) {
  footer {
    margin: 0px;
    padding: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
footer .name {
  width: 50%;
  padding: 10px 20px;
  text-align: center;
  margin-bottom: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  footer .name {
    text-align: left;
  }
}
@media screen and (max-width: 540px) {
  footer .name {
    padding: 0px 20px;
    width: 98%;
    margin: 20px auto 10px;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
}
footer .name h4 {
  background-image: url(images/logo.svg);
  background-size: 280px auto;
  background-repeat: no-repeat;
  background-position: center center;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  height: 40px;
  margin: 0 0 10px;
}
@media screen and (max-width: 540px) {
  footer .name h4 {
    width: 100%;
    margin: 0px 0px 10px;
  }
}
footer .name .tel {
  font-size: 51px;
  font-size: 5.1rem;
  font-weight: 900;
  font-family: "Noto Sans JP", sans-serif;
  color: #FF0066;
  line-height: 0.8em;
  display: inline-block;
}
@media screen and (max-width: 820px) {
  footer .name .tel {
    font-size: 38px;
    font-size: 3.8rem;
  }
}
@media screen and (max-width: 540px) {
  footer .name .tel {
    width: 98%;
    text-align: center;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
}
footer .name .tel img {
  width: 32px;
  height: auto;
}
footer .free_area {
  width: 50%;
  padding: 10px 20px 10px 0;
  margin-bottom: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 16px;
  font-size: 1.6rem;
  text-align: left;
}
@media screen and (max-width: 820px) {
  footer .free_area {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 540px) {
  footer .free_area {
    width: 98%;
    text-align: center;
    margin: 0px auto 10px;
    padding: 0px;
  }
}
footer .free_area h4 {
  font-size: 28px;
  font-size: 2.8rem;
  color: #FF0066;
  margin: 0 0 20px;
}
@media screen and (max-width: 820px) {
  footer .free_area h4 {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
footer .free_area img {
  width: 300px;
  height: auto;
  border: 1px solid #707070;
  padding: 5px;
}

address {
  font-family: Lucida Sans Unicode, Lucida Grande, " sans-serif";
  font-size: 14px;
  font-size: 1.4rem;
  padding: 10px 0px 20px;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 540px) {
  address {
    padding: 10px 0px 70px;
  }
}

/* _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/ 共通項目 _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/ */
ul.kome {
  list-style: none;
  text-align: left;
  margin: 0px;
  padding: 0 0 0 15px;
}
ul.kome li {
  margin-bottom: 10px;
  font-size: 14px;
  font-size: 1.4rem;
}
ul.kome li:before {
  content: "※";
  margin-left: -1em;
}

/* _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/ TOPページ _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/ */
#top_img {
  background-image: url("pic/TOP.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  width: 100%;
  height: 100vh;
}
@media screen and (max-width: 1024px) {
  #top_img {
    background-image: url("pic/TOP_sub.jpg");
    background-position: center center;
  }
}
@media screen and (max-width: 540px) {
  #top_img {
    padding: 0 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    /*background-position: 25% top;*/
  }
}
#top_img .topH1 {
  position: absolute;
  top: 45%;
  left: 98%;
  text-align: left;
  -webkit-transform: translate(-98%, -45%);
          transform: translate(-98%, -45%);
  width: 50%;
  display: inline-block;
}
@media screen and (max-width: 1024px) {
  #top_img .topH1 {
    width: 60%;
    top: 20%;
    left: 50%;
    text-align: center !important;
    -webkit-transform: translate(-50%, -20%);
            transform: translate(-50%, -20%);
    padding: 10px;
    border-radius: 10px;
  }
}
@media screen and (max-width: 540px) {
  #top_img .topH1 {
    width: 80%;
  }
}
#top_img .topH1 .headig {
  font-family: "Noto Serif JP", serif;
  color: #995C00;
  font-size: 36px;
  font-size: 3.6rem;
  font-weight: 800;
}
@media screen and (max-width: 820px) {
  #top_img .topH1 .headig {
    font-size: 26px;
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 540px) {
  #top_img .topH1 .headig {
    width: 100%;
    font-size: 21px;
    font-size: 2.1rem;
  }
}
#top_img .topH1 h1.catch {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 400;
  margin: 30px 0 0 !important;
  color: #2F2F2F !important;
  text-align: left;
}
@media screen and (max-width: 1200px) {
  #top_img .topH1 h1.catch {
    margin-top: 20px !important;
  }
}
@media screen and (max-width: 1024px) {
  #top_img .topH1 h1.catch {
    text-align: center !important;
  }
}
@media screen and (max-width: 820px) {
  #top_img .topH1 h1.catch {
    text-align: center !important;
    font-size: 21px;
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 540px) {
  #top_img .topH1 h1.catch {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

h2.underbar {
  position: relative;
  display: inline-block;
  font-size: 42px;
  font-size: 4.2rem;
  font-weight: 700;
  margin: 0;
}
@media screen and (max-width: 820px) {
  h2.underbar {
    font-size: 31px !important;
    font-size: 3.1rem !important;
  }
}
@media screen and (max-width: 540px) {
  h2.underbar {
    font-size: 24px !important;
    font-size: 2.4rem !important;
  }
}
h2.underbar:before {
  content: "";
  position: absolute;
  bottom: -20px;
  display: inline-block;
  width: 65%;
  height: 2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #FF9700;
  border-radius: 2px;
}

h2.top {
  width: 320px;
  height: auto;
  border: 1px solid #FF9700;
  padding: 0 0 10px !important;
  text-align: center;
  color: #FF9700;
  font-size: 40px;
  font-size: 4rem;
  font-weight: 800 !important;
  line-height: 1.2em;
  margin: 60px 0;
  display: inline-block;
  position: relative;
}
h2.top span {
  font-size: 21px;
  font-size: 2.1rem;
  background-color: #FF9700;
  padding: 5px 0;
  color: #FFF;
  width: 100%;
  margin: 0 !important;
  display: inline-block;
  line-height: 1.4em !important;
  position: absolute;
  top: 0;
  left: 0;
}

h3.top {
  width: 100%;
  text-align: center;
  color: #000;
  font-size: 28px !important;
  font-size: 2.8rem !important;
  font-weight: 900 !important;
  margin: 100px 0 50px;
  display: inline-block;
  line-height: 1.6em;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #ffcfa7));
  background: -webkit-linear-gradient(transparent 70%, #ffcfa7 70%);
  background: linear-gradient(transparent 70%, #ffcfa7 70%);
}
@media screen and (max-width: 1200px) {
  h3.top {
    margin: 50px 0 30px;
    font-size: 24px !important;
    font-size: 2.4rem !important;
  }
}
h3.top i {
  font-size: 70px !important;
  font-size: 7rem !important;
  color: #FF9700;
}
@media screen and (max-width: 820px) {
  h3.top i {
    font-size: 54px !important;
    font-size: 5.4rem !important;
  }
}

h3.NM {
  width: 100%;
  text-align: center;
  color: #000;
  font-size: 28px !important;
  font-size: 2.8rem !important;
  font-weight: 900 !important;
  margin: 0px 0 50px;
  display: inline-block;
  line-height: 1.6em;
}
@media screen and (max-width: 1200px) {
  h3.NM {
    margin: 50px 0 30px;
    font-size: 24px !important;
    font-size: 2.4rem !important;
  }
}
h3.NM i {
  font-size: 70px !important;
  font-size: 7rem !important;
  color: #FF9700;
}
@media screen and (max-width: 820px) {
  h3.NM i {
    font-size: 54px !important;
    font-size: 5.4rem !important;
  }
}

.feed {
  margin: 0 auto;
  padding: 0;
  max-width: 1200px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .feed {
    padding: 0 20px;
  }
}
.feed ul {
  list-style: none;
  text-align: left;
  margin: 0;
  padding: 0;
}
.feed ul li {
  border-bottom: dotted 1px #000;
  padding: 10px;
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.feed br {
  display: none;
}
@media screen and (max-width: 540px) {
  .feed br {
    display: block;
  }
}

.map {
  width: 100%;
  margin: 70px 0 0;
  line-height: 0;
}
.map iframe {
  width: 100%;
  height: 400px;
}
@media screen and (max-width: 540px) {
  .map {
    margin: 70px 0 20px;
  }
}

/*パララックス*/
.parallax-mirror {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: top;
  -webkit-align-items: top;
      -ms-flex-align: top;
          align-items: top; /* 縦中央寄せ */
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center; /* 横中央寄せ */
}

.parallax-container {
  width: 100%;
  min-height: 600px; /* 最小サイズを指定 */
  background: transparent;
  margin: 0;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .parallax-container {
    min-height: 400px;
  }
}
@media screen and (max-width: 540px) {
  .parallax-container {
    min-height: 600px;
  }
}
.parallax-container .layer {
  max-width: 1200px;
  width: 100%;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  font-size: 18px;
  font-size: 1.8rem;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.parallax-container .layer .box {
  border: 10px solid #FF9700;
  background-color: #fef9f1;
  padding: 30px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 48%;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .parallax-container .layer .box {
    width: 49%;
  }
}
@media screen and (max-width: 540px) {
  .parallax-container .layer .box {
    width: 98%;
    margin-bottom: 20px;
  }
}
.parallax-container .layer .box h3 {
  font-size: 30px;
  font-size: 3rem;
  color: #FF0066;
  font-weight: 700;
  margin: 0;
}
@media screen and (max-width: 820px) {
  .parallax-container .layer .box h3 {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 540px) {
  .parallax-container .layer .box h3 {
    font-size: 21px;
    font-size: 2.1rem;
  }
}
.parallax-container .layer .box ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.parallax-container .layer .box ul li {
  margin: 0 0 10px;
  font-size: 20px;
  font-size: 2rem;
  text-align: left;
}
@media screen and (max-width: 820px) {
  .parallax-container .layer .box ul li {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.parallax-container .layer .box ul li:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f192";
  color: #995C00;
  margin-right: 5px;
}

.problem_section {
  width: 100%;
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 0 auto;
  height: 640px;
}
@media screen and (max-width: 820px) {
  .problem_section {
    height: 480px;
  }
}
@media screen and (max-width: 540px) {
  .problem_section {
    height: 550px;
  }
}
.problem_section div {
  position: relative;
  width: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 820px) {
  .problem_section div {
    padding: 0 10px;
  }
}
@media screen and (max-width: 540px) {
  .problem_section div {
    width: 100%;
  }
}
.problem_section div.question {
  background-image: url(pic/q.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.problem_section div.answer {
  background-image: url(pic/a.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.problem_section div .text_contaiber {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 31px;
  font-size: 3.1rem;
  font-weight: 700;
  width: 100%;
  text-shadow: #FFF 2px 0px 5px, #FFF -2px 0px 5px, #FFF 0px -2px 5px, #FFF -2px 0px 5px, #FFF 2px 2px 5px, #FFF -2px 2px 5px, #FFF 2px -2px 5px, #FFF -2px -2px 5px, #FFF 1px 2px 5px, #FFF -1px 2px 5px, #FFF 1px -2px 5px, #FFF -1px -2px 5px, #FFF 2px 1px 5px, #FFF -2px 1px 5px, #FFF 2px -1px 5px, #FFF -2px -1px 5px, #FFF 1px 1px 5px, #FFF -1px 1px 5px, #FFF 1px -1px 5px, #FFF -1px -1px 5px;
}
@media screen and (max-width: 1024px) {
  .problem_section div .text_contaiber {
    font-size: 26px;
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 820px) {
  .problem_section div .text_contaiber {
    font-size: 21px;
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 540px) {
  .problem_section div .text_contaiber {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.problem_section div .text_contaiber ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  text-align: left;
  width: 100%;
  max-width: 500px;
}
@media screen and (max-width: 1024px) {
  .problem_section div .text_contaiber ul {
    width: 90%;
  }
}
@media screen and (max-width: 1024px) {
  .problem_section div .text_contaiber ul {
    width: 95%;
  }
}
.problem_section div .text_contaiber ul li {
  font-size: 24px;
  font-size: 2.4rem;
  margin: 0 0 10px;
}
@media screen and (max-width: 1024px) {
  .problem_section div .text_contaiber ul li {
    font-size: 21px;
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 820px) {
  .problem_section div .text_contaiber ul li {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 540px) {
  .problem_section div .text_contaiber ul li {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.problem_section div .text_contaiber ul li:before {
  font-size: 28px;
  font-size: 2.8rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f14a";
  color: #0066FF;
  margin-right: 10px;
}
@media screen and (max-width: 1024px) {
  .problem_section div .text_contaiber ul li:before {
    font-size: 25px;
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 820px) {
  .problem_section div .text_contaiber ul li:before {
    font-size: 21px;
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 540px) {
  .problem_section div .text_contaiber ul li:before {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.beige_wall {
  background-color: #fef9f1;
  width: 100%;
  text-align: center;
  position: relative;
  margin: 0;
  padding: 60px 0 !important;
  display: inline-block;
}

h3.needs_title {
  font-size: 26px;
  font-size: 2.6rem;
  letter-spacing: 0.1em;
  color: #707070;
  margin: 0;
}
@media screen and (max-width: 820px) {
  h3.needs_title {
    font-size: 24px;
    font-size: 2.4rem;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 540px) {
  h3.needs_title {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
h3.needs_title .big_pink {
  color: #FF0066;
  font-size: 42px;
  font-size: 4.2rem;
  margin: 0 10px;
}
@media screen and (max-width: 820px) {
  h3.needs_title .big_pink {
    font-size: 36px;
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 540px) {
  h3.needs_title .big_pink {
    font-size: 26px;
    font-size: 2.6rem;
  }
}

.needs {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .needs {
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
  }
}
.needs .text_area {
  width: 40%;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 10px;
  font-size: 21px;
  font-size: 2.1rem;
}
@media screen and (max-width: 1024px) {
  .needs .text_area {
    width: 48%;
    font-size: 18px;
    font-size: 1.8rem;
    padding: 0;
  }
}
@media screen and (max-width: 540px) {
  .needs .text_area {
    width: 98%;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
}
.needs .text_area img {
  width: auto;
  height: 270px;
}
.needs .pict_area {
  width: 60%;
  padding: 0;
}
@media screen and (max-width: 1024px) {
  .needs .pict_area {
    width: 48%;
  }
}
@media screen and (max-width: 540px) {
  .needs .pict_area {
    width: 98%;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 20px;
  }
}
.needs .pict_area img {
  width: 100%;
  height: auto;
}

.feature3 {
  width: 100%;
  max-width: 1200px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .feature3 {
    width: 98%;
  }
}
.feature3 .box3 {
  width: 31%;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .feature3 .box3 {
    width: 32%;
  }
}
@media screen and (max-width: 540px) {
  .feature3 .box3 {
    width: 96%;
    margin: 0 auto 10px;
  }
}
.feature3 .box3 h3 {
  font-size: 21px;
  font-size: 2.1rem;
  background-color: #FF9700;
  text-align: center;
  padding: 5px;
  border-radius: 10px;
  margin-bottom: 30px;
  color: #FFF;
  width: auto;
}
.feature3 .box3 img {
  width: 100%;
  height: auto;
}
.feature3 .box3 .board {
  width: 75%;
  max-width: 325px;
  background-image: url(images/bageback.png);
  background-repeat: repeat;
  padding: 20px;
  border: solid 3px #FF9700;
  text-align: center;
  position: absolute;
  top: 90%;
  left: 50%;
  -webkit-transform: translate(-50%, -90%);
          transform: translate(-50%, -90%);
  font-size: 21px;
  font-size: 2.1rem;
  font-weight: 700;
}
@media screen and (max-width: 820px) {
  .feature3 .box3 .board {
    font-size: 16px;
    font-size: 1.6rem;
    padding: 10px;
  }
}
@media screen and (max-width: 540px) {
  .feature3 .box3 .board {
    font-size: 21x;
    font-size: 2.1rem;
  }
}
.feature3 .box3 .board .big_pink {
  color: #FF0066;
  font-weight: 900;
}

.fee {
  width: 100%;
  max-width: 850px;
  padding: 0 20px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 540px) {
  .fee {
    padding: 0 10px;
  }
}

h3.table_title {
  font-size: 21px;
  font-size: 2.1rem;
  background-color: #FF9700;
  text-align: center;
  padding: 10px 40px;
  border-radius: 5px;
  margin-bottom: 30px;
  color: #FFF;
  width: auto;
  display: inline-block;
}
h3.table_title span {
  font-size: 31px;
  font-size: 3.1rem;
}

h4.table_sub_title {
  font-size: 18px;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 30px;
  color: #FF9700;
  width: auto;
}

table.fee_list {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
  padding: 0;
  table-layout: fixed;
}
table.fee_list th {
  text-align: center;
  padding: 10px;
  font-size: 1.6rem;
  font-size: 16px;
  font-weight: normal;
  border: 1px solid #888;
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
  background-color: #FFD699;
}
@media screen and (max-width: 540px) {
  table.fee_list th {
    padding: 5px;
    font-size: 1.4rem;
    font-size: 14x;
  }
}
table.fee_list td {
  padding: 20px 10px 20px 20px;
  border: 1px solid #888;
  text-align: center;
  font-size: 1.6rem;
  font-size: 16px;
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
  background-color: #FFF;
  width: auto;
}
@media screen and (max-width: 540px) {
  table.fee_list td {
    padding: 5px;
    font-size: 1.4rem;
    font-size: 14x;
  }
}

section.contact {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  padding: 0;
}

h4.big_number {
  font-size: 70px;
  font-size: 7rem;
  color: #0066FF;
  margin: 0;
  text-align: center;
  font-family: Helvetica, sans-serif;
}
@media screen and (max-width: 820px) {
  h4.big_number {
    font-size: 60px;
    font-size: 6rem;
  }
}
@media screen and (max-width: 540px) {
  h4.big_number {
    font-size: 40px;
    font-size: 4rem;
  }
}

/*=============================== お問い合わせ ===============================*/
table.inq {
  width: 100%;
  margin: 40px 0;
  border-collapse: collapse;
  padding: 0;
}
@media screen and (max-width: 540px) {
  table.inq {
    margin: 20px 0;
    list-style: none;
    border-width: 0;
    border-spacing: 0;
  }
}
@media screen and (max-width: 540px) {
  table.inq tr {
    display: block;
  }
}
table.inq th {
  width: 20%;
  text-align: center;
  padding: 10px;
  /*position: relative;*/
  font-size: 1.6rem;
  font-size: 16px;
  font-weight: normal;
  border-bottom: 3px solid #FFD699;
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
}
@media screen and (max-width: 540px) {
  table.inq th {
    text-align: left;
    display: list-item;
    width: 100% !important;
    font-size: 16px !important;
    font-size: 1.6rem !important;
    font-weight: 900;
  }
}
table.inq td {
  padding: 10px 10px 10px 20px;
  border-bottom: 1px solid #888;
  text-align: left;
  font-size: 1.6rem;
  font-size: 16px;
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
}
@media screen and (max-width: 540px) {
  table.inq td {
    display: list-item;
    text-align: center;
    width: 100% !important;
    font-size: 14px !important;
    font-size: 1.4rem !important;
    padding: 0;
  }
}
table.inq td input {
  margin: 5px;
  padding: 10px;
}
@media screen and (max-width: 540px) {
  table.inq td input {
    margin: 0 !important;
  }
}
table.inq td input.long {
  width: 70% !important;
}
@media screen and (max-width: 540px) {
  table.inq td input.long {
    width: 100%;
  }
}
table.inq td input.mid {
  width: 50% !important;
}
@media screen and (max-width: 540px) {
  table.inq td input.mid {
    width: 100%;
  }
}
table.inq td input.short {
  width: 20% !important;
}
@media screen and (max-width: 540px) {
  table.inq td input.short {
    width: 100%;
  }
}
@media screen and (max-width: 540px) {
  table.inq td input.wpcf7-text {
    width: 90% !important;
  }
}
table.inq td select {
  font-size: 18rem;
  font-size: 18px;
  padding: 5px;
}
table.inq td textarea {
  font-size: 16rem;
  font-size: 16px;
  padding: 5px;
  margin: 5px;
  width: 70%;
  height: 50%;
}
@media screen and (max-width: 540px) {
  table.inq td textarea {
    width: 94%;
    margin: 5px auto;
  }
}
table.inq td .wpcf7-list-item {
  display: inline;
  margin-right: 10px; /* 調整したい間隔 */
}

span.submit input {
  font-size: 16rem;
  font-size: 16px;
  color: #FFFFFF;
  background-color: #000000;
}
span.require {
  color: #FF0000;
  font-size: 14rem;
  font-size: 14px;
  margin-left: 10px;
}
span.wpcf7-list-item {
  display: block;
}

.wpcf7 .wpcf7-spinner {
  display: block;
}

.error {
  color: #FF0000;
  display: inline-block;
  width: 100%;
}

.send-over {
  margin: 0 0 150px;
  text-align: center !important;
}
.send-over h3 {
  font-size: 31px;
  font-size: 3.1rem;
  font-weight: 900;
  color: #FF9700;
}
.send-over img {
  margin: 40px auto 80px !important;
}

.mw_wp_form_confirm .confirm-hidden {
  display: none;
}

.mw_wp_form_complete .confirm-hidden {
  display: none;
}

ul.agree {
  list-style: none;
  margin: 60px 0;
  padding: 0;
  width: 100% !important;
}
ul.agree li {
  border-bottom: 1px dotted #555555;
  padding: 10px;
  margin: 0 0 20px;
  background-color: antiquewhite;
  display: inline-block;
  width: 100%;
  min-width: 0;
  white-space: normal !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
ul.agree li .mwform-checkbox-field {
  display: block !important;
  white-space: inherit;
  float: none;
}
@media screen and (max-width: 540px) {
  ul.agree li {
    float: none;
  }
}

.htm-promotion {
  width: 485px;
  height: 280px;
  padding: 60px;
  margin: 0;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  background-image: url("images/html5.svg");
  background-repeat: no-repeat;
  text-align: left;
  position: relative;
}
@media screen and (max-width: 540px) {
  .htm-promotion {
    width: 100%;
    height: auto;
    background-image: url("images/html5-mb.svg");
    background-repeat: no-repeat;
    background-position: right top;
    background-color: #f0ffd4;
    padding: 20px 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.htm-promotion ul {
  margin: 20px 0;
  padding: 0 20px;
  display: inline-block;
  width: 96%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.htm-promotion ul li {
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 5px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900 !important;
  padding: 0;
}
@media screen and (max-width: 540px) {
  .htm-promotion ul li {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.htm-promotion .button {
  font-size: 18px;
  font-size: 1.8rem;
  text-align: center;
  margin: 20px auto;
  position: absolute;
  bottom: 25%;
  left: 50%;
  -webkit-transform: translate(-50%, -25%);
          transform: translate(-50%, -25%);
  padding: 0;
}
@media screen and (max-width: 540px) {
  .htm-promotion .button {
    font-size: 16px;
    font-size: 1.6rem;
    position: static;
    bottom: 0;
    left: 0;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    margin: 10px auto 0;
  }
}
.htm-promotion .button a {
  width: 100%;
  max-width: 300px;
  display: inline-block;
  padding: 5px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 10px;
  color: #FFF !important;
  background-color: #FF9700;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.htm-promotion .button a:hover {
  background-color: #FFD699;
  -webkit-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
  color: #FF9700 !important;
}

/*_| _| _| _| _| _| _| _| _| _| _| _| フロー関係_| _| _| _| _| _| _| _| _| _| _| _| */
.flow_outframe {
  margin-bottom: 30px;
  width: 100%;
  max-width: 1200px;
  background-color: #FFD699;
  padding: 40px 0;
  text-align: center;
  border-radius: 10px;
}
.flow_outframe section.step_frame {
  width: 80%;
  background-color: #FFF;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  padding: 10px 10px 0;
  border-radius: 10px;
}
@media screen and (max-width: 820px) {
  .flow_outframe section.step_frame {
    width: 90%;
  }
}
@media screen and (max-width: 540px) {
  .flow_outframe section.step_frame {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    padding: 5px 5px 0;
  }
}
.flow_outframe section.step_frame .left_side {
  width: 35%;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
}
@media screen and (max-width: 540px) {
  .flow_outframe section.step_frame .left_side {
    width: 100%;
    padding: 5px;
  }
}
.flow_outframe section.step_frame .left_side h2 {
  font-size: 24px;
  font-size: 2.4rem;
  background-color: #FF9700;
  padding: 5px 20px;
  color: #FFF;
  border-radius: 10px;
  margin: 0 0 10px;
}
@media screen and (max-width: 1024px) {
  .flow_outframe section.step_frame .left_side h2 {
    font-size: 21px;
    font-size: 2.1rem;
    padding: 5px;
  }
}
@media screen and (max-width: 820px) {
  .flow_outframe section.step_frame .left_side h2 {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.flow_outframe section.step_frame .left_side img {
  width: 65%;
  height: auto;
}
@media screen and (max-width: 540px) {
  .flow_outframe section.step_frame .left_side img {
    width: 85%;
    height: auto;
  }
}
.flow_outframe section.step_frame .right_side {
  width: 65%;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
}
@media screen and (max-width: 540px) {
  .flow_outframe section.step_frame .right_side {
    width: 100%;
    padding: 10px 5px;
  }
}
.flow_outframe section.step_frame .right_side h3 {
  font-size: 21px;
  font-size: 2.1rem;
  color: #FF0066;
  margin: 0 0 10px;
}
@media screen and (max-width: 540px) {
  .flow_outframe section.step_frame .right_side h3 {
    font-size: 1.8px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 540px) {
  .flow_outframe section.step_frame .right_side ul {
    margin: 0;
    padding: 0 20px;
  }
}
.flow_outframe section.step_frame .right_side ul li {
  font-size: 1.6px;
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.flow_outframe section.step_frame .right_side ul li:last-child {
  margin-bottom: 0px;
}
@media screen and (max-width: 540px) {
  .flow_outframe section.step_frame .right_side ul li {
    font-size: 1.4px;
    font-size: 1.4rem;
  }
}
.flow_outframe .flow-title {
  clear: both;
  float: left;
  width: 20%;
  min-height: 80px;
  margin-bottom: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 540px) {
  .flow_outframe .flow-title {
    width: 100%;
    min-height: inherit;
  }
}
.flow_outframe .flow-title h3 {
  margin: 0;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: lighter;
  padding: 10px 0;
  background-color: #FFD699;
  color: #fff;
  text-align: center;
  border-top-color: #74bbe2;
  overflow: visible;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .flow_outframe .flow-title h3 {
    font-size: 20px;
    font-size: 2rem;
  }
}
.flow_outframe .flow-title h3:after {
  content: "";
  border: solid transparent;
  position: absolute;
  border-color: 1px solid #FFD699;
  border-top-color: #FFD699;
  border-width: 20px;
  margin-top: -20px;
  left: 50%;
  bottom: -35%;
  -webkit-transform: translate(-50%, 35%);
          transform: translate(-50%, 35%);
  height: 0;
  width: 0;
  pointer-events: none;
  font-weight: lighter;
}
.flow_outframe .flow-title .h3dammy {
  margin: 0;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: lighter;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #FFD699;
  color: #fff;
  text-align: center;
  border-top-color: #74bbe2;
  overflow: visible;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .flow_outframe .flow-title .h3dammy {
    font-size: 20px;
    font-size: 2rem;
  }
}
.flow_outframe .flow-sentence {
  font-size: 100%;
  line-height: 160%;
  width: 78%;
  margin-left: 0;
  margin-bottom: 50px;
  border-bottom: 1px dotted #000000;
}
@media screen and (max-width: 1024px) {
  .flow_outframe .flow-sentence {
    width: 100%;
  }
}

.arrow {
  font-size: 60px;
  font-size: 6rem;
  color: #FF9700;
  margin: 20px auto;
  text-align: center;
}
@media screen and (max-width: 540px) {
  .arrow {
    font-size: 40px;
    font-size: 4rem;
    margin: 10px auto;
  }
}

/* _| _| _| _| _| _| _| _| _| _| _| _| テキスト設定 _| _| _| _| _| _| _| _| _| _| _| _|  */
.micro_text {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.3em;
}

.small_text {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.5em;
}

.mid_text {
  font-size: 16px;
  font-size: 1.6rem;
}

.half_large_text {
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 820px) {
  .half_large_text {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 540px) {
  .half_large_text {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.large_text {
  font-size: 24px;
  font-size: 2.4rem;
}
@media screen and (max-width: 820px) {
  .large_text {
    font-size: 21px;
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 540px) {
  .large_text {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.largest_text {
  font-size: 27px;
  font-size: 2.7rem;
}
@media screen and (max-width: 820px) {
  .largest_text {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 540px) {
  .largest_text {
    font-size: 20px;
    font-size: 2rem;
  }
}

.big_text {
  font-size: 34px;
  font-size: 3.4rem;
}
@media screen and (max-width: 820px) {
  .big_text {
    font-size: 30px;
    font-size: 3rem;
  }
}
@media screen and (max-width: 540px) {
  .big_text {
    font-size: 26px;
    font-size: 2.6rem;
  }
}

.biggest_text {
  font-size: 42px;
  font-size: 4.2rem;
}
@media screen and (max-width: 820px) {
  .biggest_text {
    font-size: 36px;
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 540px) {
  .biggest_text {
    font-size: 30px;
    font-size: 3rem;
  }
}

.bold {
  font-weight: 600 !important;
}

.boldest {
  font-weight: 800 !important;
}

.blue {
  color: #00b9ef;
}

.white {
  color: #FFF;
}

.water {
  color: #008cd6;
}

.purple_blue {
  color: #3b5998;
}

.pink {
  color: #eb6ea5;
}

.brown {
  color: #966731;
}

.red {
  color: #FF0004 !important;
}

.orange {
  color: #FF0066;
}

.purple {
  color: #a64a97;
}

.mint {
  color: #36a2ae;
}

.green {
  color: #1B4B20;
}

.noto_bold {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
}

/* _| _| _| _| _| _| _| _| _| _| _| _| レイアウト設定 _| _| _| _| _| _| _| _| _| _| _| _|  */
.align_left {
  text-align: left !important;
}

.align_center {
  text-align: center !important;
}

.snapwidget-widget {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: inline-block;
}

.center_layout {
  width: 100%;
  text-align: center !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.center_left_layout {
  width: 100%;
  text-align: center !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 540px) {
  .center_left_layout {
    text-align: justify !important;
  }
}

.left_layout {
  width: 100%;
  text-align: left !important;
}

.right_layout {
  width: 100%;
  text-align: right !important;
}

.tw {
  background-color: #249AE8 !important;
  color: #FFF;
}

.fb {
  background-color: #324B97 !important;
  color: #FFF;
}

.insta {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(1, #ad20ff), color-stop(0, #ff2b29));
  background: -webkit-linear-gradient(#ff2b29, #ad20ff);
  background: -webkit-gradient(linear, left top, left bottom, from(#ff2b29), to(#ad20ff));
  background: linear-gradient(#ff2b29, #ad20ff);
  color: #FFF;
}

.blog {
  background-color: #FF9631 !important;
  color: #FFF;
}

.margin_def130 {
  margin-bottom: 130px !important;
}
@media screen and (max-width: 820px) {
  .margin_def130 {
    margin-bottom: 100px !important;
  }
}
@media screen and (max-width: 540px) {
  .margin_def130 {
    margin-bottom: 80px !important;
  }
}

.margin_def80 {
  margin-bottom: 80px !important;
}
@media screen and (max-width: 820px) {
  .margin_def80 {
    margin-bottom: 60px !important;
  }
}
@media screen and (max-width: 540px) {
  .margin_def80 {
    margin-bottom: 40px !important;
  }
}

.margin_def40 {
  margin-bottom: 40px !important;
}
@media screen and (max-width: 540px) {
  .margin_def40 {
    margin-bottom: 20px !important;
  }
}

.margin_def20 {
  margin-bottom: 20px !important;
}
@media screen and (max-width: 540px) {
  .margin_def20 {
    margin-bottom: 10px !important;
  }
}

.part_layout {
  width: 100%;
  max-width: 1200px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.part_layout .ratio50 {
  width: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 5px !important;
}
@media screen and (max-width: 540px) {
  .part_layout .ratio50 {
    width: 100%;
  }
}
.part_layout .ratio50_set {
  width: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 2.5px !important;
}
@media screen and (max-width: 540px) {
  .part_layout .ratio50_set {
    width: 100%;
  }
}
.part_layout .ratio40 {
  width: 40%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 5px;
}
@media screen and (max-width: 540px) {
  .part_layout .ratio40 {
    width: 100%;
  }
}
.part_layout .ratio60 {
  width: 60%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 5px;
}
@media screen and (max-width: 540px) {
  .part_layout .ratio60 {
    width: 100%;
  }
}
.part_layout .ratio70 {
  width: 70%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 5px;
}
@media screen and (max-width: 540px) {
  .part_layout .ratio70 {
    width: 100%;
  }
}
.part_layout .ratio33 {
  width: 33%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 5px;
}
.part_layout .ratio30 {
  width: 30%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 5px;
}
@media screen and (max-width: 540px) {
  .part_layout .ratio30 {
    width: 100%;
  }
}
.part_layout .ratio80 {
  width: 80%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 5px;
}
@media screen and (max-width: 540px) {
  .part_layout .ratio80 {
    width: 100%;
  }
}
.part_layout .ratio24 {
  width: 24%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 5px;
}
@media screen and (max-width: 540px) {
  .part_layout .ratio24 {
    width: 100%;
  }
}
.part_layout .ratio20 {
  width: 20%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0px 5px;
}
@media screen and (max-width: 540px) {
  .part_layout .ratio20 {
    width: 100%;
  }
}
.part_layout h4 {
  font-size: 18px;
  font-size: 1.8rem;
  margin: 0px auto;
  text-align: center !important;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  color: #FF9700;
}

.mid_layout {
  position: relative;
}
@media screen and (max-width: 540px) {
  .mid_layout {
    position: static;
  }
}
.mid_layout .ML_container {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 540px) {
  .mid_layout .ML_container {
    position: static;
    top: 0%;
    left: 0%;
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
  }
}/*# sourceMappingURL=style.css.map */