@charset "UTF-8";
/* CSS Document */
/*-------------------------------------------------------------------------------------
PC用レイアウト（768px以上スクリーン）
----------------------------------------------------------------------------------------*/
/*--------------------------------------------------
共通設定(PC)
-----------------------------------------------------*/
/*body全体の初期スタイル調整*/
body {
  font-size: 62.5%; /*emの計算をしやすくするための定番設定*/
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: #333333;
  box-sizing: border-box;
}
/*リンク文字の設定*/
a {
  text-decoration: underline;
}
a:link, a:visited {
  color: #39f;
}
a:hover, a:active {
  color: #f60;
}
/*.footer a{
	color:#fff!important;
}*/
/*ブラウザのCSSをリセット*/
p {
  margin: 0 !important;
  padding: 0 !important;
}
/*セクションエリアの共通設定*/
section {
  clear: both;
  overflow: auto;
}
/*--------------------------------------------------
見出しタグ設定（PC）
-----------------------------------------------------*/
h2 {
  margin: 0.5em 0em;
  font-size: 2em;
  font-weight: bold;
  text-align: center;
}
h3 {
  margin: 0.5em 0em;
  padding: 0.3em 0.6em;
  font-size: 1.6em;
  font-weight: bold;
  border-left: 8px solid #10559A;
  border-bottom: 1px dotted #10559A;
}
h4 {
  margin: 0.5em 0em;
  padding: 0.3em 0.6em;
  font-size: 1.4em;
  border: 1px solid #ccc;
  font-weight: bold;
}
h5 {
  margin: 0.5em 0em;
  padding: 0.1em;
  font-size: 1.2em;
  font-weight: bold;
  border-bottom: 1px dotted #ccc;
}
/*--------------------------------------------------
全体レイアウト／背景設定（PC）
-----------------------------------------------------*/
/*全体エリア（全体背景を設定するにはここ）*/
.main {
  background-image: url("../images/bg_.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  background-attachment: fixed;
  height: auto;
}
/*記事(ボディ)エリア*/
.article {
  font-size: 1.6em; /*=16px*/
}
/*記事(ボディ)エリアの行間*/
.article p {
  line-height: 1.6;
}
.article {
  width: 100%;
}
/*カラム全体の幅を変更する*/
.top_image_in, .section_inr {
  width: 950px;
  margin: 0 auto; /*真ん中に要素を置きたいときに使う*/
}
/*--------------------------------------------------
上部固定ヘッダー設定
-----------------------------------------------------*/
/*上部固定ヘッダー全体*/
.header {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 5000;
  background-color: rgba(255, 255, 255, 0.9);
  overflow: hidden;
}
/*ヘッダー内部をカラム幅にする*/
.header_inr {
  width: 100%;
  max-width: 1500px;
  margin: 1rem auto;
  overflow: hidden;
  align-items: center;
}
/*ヘッダーのロゴ*/
.header_logo {
  width: 15%;
  float: left;
  margin: 0em;
}
/*ヘッダーの問い合わせボタン*/
.header_mail {
  width: 25%;
  float: right;
  margin: 0.8em 0em 0em;
}
/*ヘッダーの電話ボタン*/
.header_tel {
  width: 30%;
  float: right;
  margin: 0.8em 0em 0em;
}
/*ヘッダー内の画像が常に幅100%になるように*/
.header_logo img, .header_mail img, .header_tel img {
  width: 100%;
}
a {
  text-decoration: none;
  color: #333333 !important;
}
nav {
  margin: 0 0 0 auto;
}
ul {
  list-style: none;
  margin: 0;
  display: flex;
}
li {
  margin: 0 0 0 15px;
  font-size: 14px;
}
.sp-nav {
  display: none;
}
@media screen and (max-width: 950px) {
  a {
    text-decoration: none;
    /*color: #fff !important;*/
  }
  .pc-nav {
    display: none;
  }
  .sp-nav {
    z-index: 1;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: block;
    width: 100%;
    background: rgba(0, 0, 0, .8);
    opacity: 0;
    transform: translateY(-100%);
    transition: all .2s ease-in-out;
  }
  #hamburger {
    position: relative;
    display: block;
    width: 30px;
    height: 20px;
    margin: 0 0 0 auto;
  }
  #hamburger span {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333;
    transform: translateY(-50%);
  }
  #hamburger::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #333;
  }
  #hamburger::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70%;
    height: 2px;
    background-color: #333;
  }
  /*スマホメニュー*/
  .sp-nav ul {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  .sp-nav li {
    margin: 0;
    padding: 0;
  }
  .sp-nav li span {
    font-size: 15px;
    color: #fff;
  }
  .sp-nav li a, .sp-nav li span {
    display: block;
    padding: 20px 0;
    color: #ffff00;
  }
  /*-閉じるアイコンー*/
  .sp-nav .close {
    position: relative;
    padding-left: 20px;
  }
  .sp-nav .close::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 16px;
    height: 1px;
    background: #ffff00;
    transform: rotate(45deg);
  }
  .sp-nav .close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 16px;
    height: 1px;
    background: #ffff00;
    transform: rotate(-45deg);
  }
  .toggle {
    transform: translateY(0);
    opacity: 1;
  }
  .main-visual {
    padding: 0 4%;
  }
  h2 {
    line-height: 1.6;
    text-align: center;
  }
}
/*--------------------------------------------------
ファーストビュー設定
-----------------------------------------------------*/
.top_image {
  background-image: url("../images/top_image_back.png");
  background-repeat: no-repeat;
  background-position: top center;
  height: auto;
}
.top_image_in img {
  width: 100%;
}
/*--------------------------------------------------
sectionの設定
-----------------------------------------------------*/
/*.section_01 {
  background: #fff;
  padding: 0 3em 1.5em;
  background-image: url("../images/blue-bg3.jpg");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  height: auto;
  overflow: hidden;
  text-align: left;
  margin-top: 3%;
}*/
.section_01 {
  background-color: #FFF;
  overflow: hidden;
  text-align: left
}
.section_02 {
  overflow: hidden;
  text-align: left
}
.section_03 {
  background-color: #e5e5e5;
  overflow: hidden;
  text-align: center;
  padding-bottom: 5%;
}
.section_04 {
  background-color: #fef8f4;
  overflow: hidden;
  text-align: left;
  padding-top: 3%;
}
.section_05 {
  background-color: #f3a066;
  overflow: hidden;
  text-align: center;
}
.section_06 {
  background-color: #FFF;
  overflow: hidden;
  text-align: center;
  padding-top: 3%;
  padding-bottom: 5%;
}
.section_07 {
  background: #fff;
  padding: 0 3em 1.5em;
  background-image: url("../images/image1.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  height: auto;
  overflow: hidden;
  text-align: left;
}
.section_08 {
  background-color: #1b4982;
  padding: 1.5em 3em;
  overflow: hidden;
  text-align: center;
  color: #fff;
}
.section_09 {
  background-color: #fff;
  padding: 1.5em 3em;
  overflow: hidden;
  text-align: center
}
.section_10 {
  background-color: #f5f7f9;
  padding: 1.5em 3em;
  overflow: hidden;
  text-align: center
}
.section_11 {
  background-color: #f5f7f9;
  padding: 1.5em 3em;
  overflow: hidden;
  text-align: center
}
.section_12 {
  background: #fff;
  padding: 0 3em 1.5em;
  background-image: url("../images/blue-bg3.jpg");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  height: auto;
  overflow: hidden;
  text-align: center;
}
/*--------------------------------------------------
チェックリスト設定
-----------------------------------------------------*/
ul.checklist {
  border: 1px solid #ccc;
  list-style: none;
  padding: 1em;
}
ul.checklist li {
  background-image: url("../images/icon-check03-red.png");
  background-repeat: no-repeat;
  background-size: 3.5%;
  padding-left: 1.8em;
  margin-bottom: 0.8em;
}
ul.checklist li:last-child {
  margin-bottom: 0em;
}
/*--------------------------------------------------
テーブル設定
-----------------------------------------------------*/
table {
  width: 100%;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  margin: 1em 0em;
}
th, td {
  padding: 0.5em;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
th {
  background-color: #f0f0f0;
  font-weight: bold;
  text-align: center;
}
td {
  background-color: #fff;
  text-align: left;
}
/*スマホでは行が列になるテーブルタグ*/
.table_style_01 {
  text-align: left;
  vertical-align: middle;
}
/*--------------------------------------------------
フォーム設定
-----------------------------------------------------*/
.mailform {
  background-color: #fff;
  margin-bottom: 1em;
  padding: 1em 0em 1.5em;
  box-shadow: 0px 0px 1px #000;
}
.input {
  padding: 0 2em;
}
.input_style {
  background-color: #FFFBF0;
  width: 100%;
  height: 60px;
  margin-bottom: 0.5em;
  text-align: center;
  font-size: 1.4em;
}
input[type="image"] {
  width: 100%;
}
.caution {
  text-align: center;
  font-size: 0.8em;
  color: #F00;
}
/*--------------------------------------------------
よくある質問
-----------------------------------------------------*/
.box_qa {
  background-color: #efefef;
  padding: 1em;
}
.box_qa_q {
  background-color: #fff;
  padding: 1em 2em 1em 3em;
  border-bottom: 1px solid #ccc;
  font-size: 1.2em;
  font-weight: bold;
  color: #D10003;
}
.box_qa_a {
  background-color: #fff;
  padding: 1em 2em 1em 3em;
}
.box_qa_q p, .box_qa_a p {
  text-indent: -2em;
}
/*--------------------------------------------------
CTAエリア
-----------------------------------------------------*/
.area_cta {
  background-color: #105FA3;
  padding: 1em 3em;
}
.area_cta_inr {
  background-color: #fff;
  padding: 1em 2em;
  overflow: auto;
}
.area_cta_inr_left {
  float: left;
  width: 48%;
}
.area_cta_inr_right {
  float: right;
  width: 48%;
}
/*--------------------------------------------------
フッター部分
-----------------------------------------------------*/
.footer {
  background-color: #ef9d51;
  padding: 2em 0em;
  text-align: center;
  font-size: 1.4em;
  color: #333333;
  line-height: 200%;
}
.footer a {
  color: #333333;
}
/*--------------------------------------------------
追加CSS
-----------------------------------------------------*/
.t-block {
  display: inline-block;
}
.cta_box {
  background-color: #fff;
  box-sizing: border-box;
  padding: 3% 2%;
}
.plan-title {
  color: #333333;
  font-weight: 500;
  font-size: clamp(18px, 2.2vw, 25px);
}
.btn_box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}
#btn_animation .btn {
  margin: 5% 0;
  display: block;
  animation: btn_animation 2s infinite;
}
@keyframes btn_animation {
  0% {
    transform: translate(4px, 0px);
  }
  5% {
    transform: translate(-4px, 0px);
  }
  10% {
    transform: translate(4px, 0px);
  }
  15% {
    transform: translate(-4px, 0px);
  }
  20% {
    transform: translate(4px, 0px);
  }
  25% {
    transform: translate(-4px, 0px);
  }
  30% {
    transform: translate(0px, 0px);
  }
}
.movie-box {
  width: 48%;
  box-sizing: border-box;
  margin-bottom: 5%;
}
.movie-title {
  margin-top: 3%;
  font-weight: 500;
  font-size: clamp(18px, 2.2vw, 22px);
  height: 80px;
}
.fukidashi-02-04 {
  position: relative;
  width: fit-content;
  font-weight: 500;
  font-size: clamp(18px, 2.2vw, 22px);
}
.fukidashi-02-04 > .text {
  position: relative;
  padding: 12px 16px;
  border-radius: 4px;
  background-color: #fff3d1;
}
.fukidashi-02-04 > .text::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 15px;
  height: 15px;
  transform: rotate(135deg);
  box-sizing: border-box;
  background-color: #fff3d1;
}
.fukidashi-02-04 > .ornament {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
.fukidashi-02-04 > .ornament::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10px;
  width: 36px;
  height: 16px;
  transform: rotate(-45deg);
  box-sizing: border-box;
  background-color: #f76e1f;
  mix-blend-mode: multiply; /* 乗算 */
}
.fukidashi-02-04 > .ornament::after {
  content: "";
  position: absolute;
  top: calc(100% - 15px);
  right: -10px;
  width: 36px;
  height: 16px;
  transform: rotate(-45deg);
  box-sizing: border-box;
  background-color: #64d1ff;
  mix-blend-mode: multiply; /* 乗算 */
}
.pro-title {
  font-weight: 500;
  font-size: clamp(18px, 2.2vw, 29px);
  color: #eb6100;
  padding: 0 0;
  font-feature-settings: "palt"1;
}
.pro-name1 {
  font-weight: 500;
  font-size: clamp(18px, 2.2vw, 20px);
  color: #333333;
  padding: 1.5rem 0;
  font-feature-settings: "palt"1;
}
.pro-name2 {
  font-weight: 500;
  font-size: clamp(18px, 2.2vw, 28px);
  color: #333333;
  padding: 0;
  font-feature-settings: "palt"1;
}
.pro_bg {
  background-color: #e8e5d5;
  padding-bottom: 5%;
}
.pro-textbox {
  background-color: #fff;
  padding: 3%;
  margin: 1% 3%;
  font-weight: 500;
}
.flex-box {
  padding: 10px;
  display: flex;
  /*align-items: center;*/
  flex-flow: wrap;
  justify-content: center;
  box-sizing: border-box;
}
.flex-box2 {
  padding: 10px;
  display: flex;
  align-items: center;
  flex-flow: wrap;
  justify-content: center;
  gap: 20px;
  box-sizing: border-box;
}
.flex-box3 {
  padding: 10px;
  display: flex;
  align-items: center;
  flex-flow: wrap;
  justify-content: center;
  gap: 20px;
  box-sizing: border-box;
}
.flex-box4 {
  padding: 10px;
  display: flex;
  align-items: center;
 /* flex-flow: wrap;*/
  gap: 20px;
  box-sizing: border-box;
  justify-content: space-between;
}
.flex-item1 {
  padding: 10px;
  color: #fff;
  margin: 10px;
  border-radius: 5px;
  width: 25%;
}
.flex-item2 {
  padding: 10px;
  color: #fff;
  margin: 10px;
  border-radius: 5px;
  width: 65%;
}
.flex-item3 {
  padding: 10px;
  color: #fff;
  margin: 10px;
  border-radius: 5px;
  width: 45%;
}
.flex-item4 {
  padding: 10px;
  color: #fff;
  margin: 10px;
  border-radius: 5px;
  width: 45%;
}
.flex-item5 {
  padding: 10px;
  color: #fff;
  margin: 10px;
  border-radius: 5px;
  width: 30%;
}
.flex-item6 {
  padding: 10px;
  color: #333333;
  margin: 10px;
  border-radius: 5px;
  width: 60%;
  line-height: 1.75;
}
.cta-box {
  border-style: solid;
  border-width: 5px;
  border-color: #eb6100;
  border-radius: 25px;
  background-color: rgb(255, 255, 255);
  width: 100%;
  padding: 5% 1%;
}
.r-title {
  font-weight: 500;
  font-size: clamp(18px, 2.2vw, 29px);
  color: #eb6100;
  padding: 0 5%;
  font-feature-settings: "palt"1;
}
.r-box {
  background-color: #f5f7f9;
  box-shadow: 0 2.5rem 2rem -2rem hsl(200 50% 20% / 40%);
  padding: 5%;
  position: relative;
}
.r-box::before {
  content: url("../images/r-1.png");
  top: -8%;
  position: absolute;
}
.r-box2 {
  background-color: #f5f7f9;
  box-shadow: 0 2.5rem 2rem -2rem hsl(200 50% 20% / 40%);
  padding: 5%;
  position: relative;
  margin-top: 5%;
}
.r-box2::before {
  content: url("../images/r-2.png");
  top: -8%;
  position: absolute;
}
.r-box2 {
  background-color: #f5f7f9;
  box-shadow: 0 2.5rem 2rem -2rem hsl(200 50% 20% / 40%);
  padding: 5%;
  position: relative;
}
.r-box2::before {
  content: url("../images/r-2.png");
  top: -8%;
  position: absolute;
}
.r-box3 {
  background-color: #f5f7f9;
  box-shadow: 0 2.5rem 2rem -2rem hsl(200 50% 20% / 40%);
  padding: 5%;
  position: relative;
  margin-top: 5%;
}
.r-box3::before {
  content: url("../images/r-3.png");
  top: -8%;
  position: absolute;
}
.r-box4 {
  background-color: #f5f7f9;
  box-shadow: 0 2.5rem 2rem -2rem hsl(200 50% 20% / 40%);
  padding: 5%;
  position: relative;
  margin-top: 5%;
}
.r-box4::before {
  content: url("../images/r-4.png");
  top: -8%;
  position: absolute;
}
.r-box5 {
  background-color: #f5f7f9;
  box-shadow: 0 2.5rem 2rem -2rem hsl(200 50% 20% / 40%);
  padding: 5%;
  position: relative;
  margin-top: 5%;
}
.r-box5::before {
  content: url("../images/r-5.png");
  top: -8%;
  position: absolute;
}
.r-box6 {
  background-color: #f5f7f9;
  box-shadow: 0 2.5rem 2rem -2rem hsl(200 50% 20% / 40%);
  padding: 5%;
  position: relative;
  margin-top: 5%;
}
.r-box6::before {
  content: url("../images/r-6.png");
  top: -8%;
  position: absolute;
}
.r-box7 {
  background-color: #f5f7f9;
  box-shadow: 0 2.5rem 2rem -2rem hsl(200 50% 20% / 40%);
  padding: 5%;
  position: relative;
  margin-top: 5%;
  margin-bottom: 5%;
}
.r-box7::before {
  content: url("../images/r-7.png");
  top: -8%;
  position: absolute;
}
.pro-textbox2 {
  background-color: #e8e5d5;
  color: #333333;
  padding: 3%;
  margin: 1% 3%;
  font-size: clamp(18px, 2.2vw, 18px);
}
.pro-textbox2 img {
  max-width: 50%;
  height: auto;
  float: right;
  margin: 0 2%;
  vertical-align: bottom;
}
.pro-textbox2::after {
  content: "";
  display: block;
  clear: both;
}
.pro-textbox3 {
  background-color: #e8e5d5;
  color: #333333;
  padding: 3%;
  margin: 1% 3%;
  font-size: clamp(18px, 2.2vw, 18px);
}
.pro-textbox3 img {
  max-width: 50%;
  height: auto;
  float: left;
  margin: 0 2%;
  vertical-align: bottom;
}
.pro-textbox3::after {
  content: "";
  display: block;
  clear: both;
}
.sub {
  background-color: #8bc62e;
  font-weight: 500;
  font-size: clamp(18px, 2.2vw, 29px);
  text-align: center;
  color: #fff;
  padding: 1.5rem 0;
  font-feature-settings: "palt"1;
}
.sub2 {
  background-color: #8bc62e;
  font-weight: 500;
  font-size: clamp(18px, 2.2vw, 25px);
  text-align: center;
  color: #fff;
  padding: 0.5rem 0;
  font-feature-settings: "palt"1;
}
.koe-bg {
  background-color: #e8e5d5;
  text-align: center;
}
.video-wrap {
  max-width: 100%; /* ここに動画の横幅を指定 */
  margin: 0 auto;
  max-width: 850px;
}
.koe-inner-bg {
  background-color: #fff;
  text-align: left;
  margin: 0 2%;
  padding: 5% 3%;
}
.center-title {
  display: block;
  margin: 0 auto;
  border: 2px solid #eb6100;
  width: 100%;
  font-size: 1.3em;
  font-weight: 500;
  color: #333333;
  padding: .5em;
}
.center-title2 {
  display: block;
  margin: 0 auto;
  border: 2px solid #333333;
  width: 100%;
  font-size: 1.3em;
  font-weight: 500;
  color: #333333;
  padding: .5em 3%;
}
.center-title3 {
  display: block;
  margin: 0 auto;
  border: 2px solid #333333;
  width: 75%;
  font-size: clamp(18px, 2.8vw, 35px);
  font-weight: 600;
  color: #333333;
  padding: .5em 3%;
}
.price {
  color: #eb6100;
  font-weight: 500;
  font-size: clamp(18px, 24vw, 190px);
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 1.2;
}
.price2 {
  color: #eb6100;
  font-weight: 600;
  font-size: clamp(18px, 5vw, 60px);
  font-family: 'Noto Sans JP', sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.map-box {
  display: block;
  margin: 0 auto;
  border: 2px solid #333333;
  width: 100%;
  font-size: 1.3em;
  font-weight: 500;
  color: #333333;
  padding: .5em 3%;
}
.map-box iframe {
  width: 100%;
}
.title-q {
  color: #eb6100;
  font-weight: 600;
  font-size: 1.5em;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  margin: 0 1.5%;
}
.section_02 .koe-inner-bg p {
  font-size: clamp(16px, 2.2vw, 18px);
  line-height: 200%;
}
/* 動画を囲うdiv */
.video {
  position: relative;
  width: 100%; /* 横幅は100%で固定 */
  height: 0; /* 高さは0にしておく(padding-topで高さを指定するため) */
  padding-top: 56.25%; /* 高さを指定(16:9) */
}
/* YouTube埋め込み用のiframe */
.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.w75 {
  margin: 0 auto;
  display: block;
  width: 75%;
}
.w85 {
  margin: 0 auto;
  display: block;
  width: 85%;
}
.w100 {
  margin: 0 auto;
  display: block;
  width: 100%;
}
summary {
  /* display: list-item;以外を指定してデフォルトの三角形アイコンを消します */
  display: block;
}
summary::-webkit-details-marker {
  /* Safariで表示されるデフォルトの三角形アイコンを消します */
  display: none;
}
.summary_inner {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border: 1px solid #000;
  font-size: clamp(16px, 2.2vw, 18px);
  color: #002255;
}
.icon {
  display: block;
  position: relative;
  width: 24px;
  margin-left: 6px;
  flex-shrink: 0;
  transform-origin: center 43%;
  transition: transform 0.4s;
}
/* is-openedクラスが付与されたときのスタイル */
details.is-opened .icon {
  transform: rotate(180deg);
}
/* アイコンのバーのスタイル */
.icon::before, .icon::after {
  content: "";
  position: absolute;
  display: block;
  width: 15px;
  height: 3px;
  background-color: #000;
}
.icon::before {
  left: 0;
  transform: rotate(45deg);
}
.icon::after {
  right: 0;
  transform: rotate(-45deg);
}
/* --------アコーディオンの中身のスタイル-------- */
.content {
  overflow: hidden;
  background-color: #fff;
  /* details直下のタグにpaddingを設定すると挙動がおかしくなるので、ここには指定しない */
}
.content_inner {
  padding: 24px 48px;
  display: flex;
  flex-direction: column;
  font-size: clamp(16px, 2.2vw, 18px);
}
/* --------レイアウト用のスタイル-------- */
.wrapper {
  width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.wrapper details {
  margin-bottom: 16px;
}
.wrapper details:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .wrapper {
    width: 100%;
  }
}
.body_sub1 {
  background-image: url("../images/cta-top_bg.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: auto;
  height: 244px;
  margin-bottom: 2%;
}
.body_sub2 {
  background-image: url("../images/flow-top.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: auto;
  height: 115px;
  margin-bottom: 5%;
}
.body_sub3 {
  background-image: url("../images/sub1.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: auto;
  height: 172px;
  margin-bottom: 3%;
}
.body_sub4 {
  background-image: url("../images/sub2.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: auto;
  height: 143px;
}
.body_sub5 {
  background-image: url("../images/support-top.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: auto;
  height: 163px;
  margin-bottom: 3%;
}
.body_sub6 {
  background-image: url("../images/q&a-top.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: auto;
  height: 116px;
  margin-bottom: 3%;
}
.section_01 p {
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 200%;
  color: #fff;
  text-align: center;
}
.section_02 p {
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 200%;
}
.section_03 p {
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 200%;
}
/*.section_04 p {
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 200%;
}*/
.section_05 .section_inr p {
  font-size: 1.3em;
  margin: 1.5em 0 !important;
}
.section_06 .section_inr2 p {
  font-size: clamp(18px, 2.2vw, 24px);
}
.bg-sub3 p {
  font-size: 1.1em;
  margin: 1.0em 0 !important;
}
.section_07 p {
  font-size: clamp(18px, 2.2vw, 24px);
}
.section_07 .section_inr {
  margin-top: 27em !important;
}
.section_08 p {
  font-size: 1.3em;
  margin: 1.5em 0 !important;
}
.section_09 p {
  font-size: 1.3em;
  margin: 1.5em 0 !important;
}
.section_10 p {
  font-size: 1.3em;
  margin: 1.5em 0 !important;
}
.section_10 .section_inr {
  background: url(../images/grey.png) #fff repeat;
  text-align: left;
  padding: 1.5em 5.5em;
  border-left: 18px solid #c09020;
}
.section_10 .section_inr p {
  font-size: 1.1em;
}
.section_12 p {
  text-align: center;
}
.section_inr2 {
  ;
  width: 950px;
  margin: 0 auto;
}
img.step {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}
img.cta-text {
  display: block;
  margin: 0 auto;
  margin-bottom: 2.0em;
  max-width: 476px;
}
img.cta-btn {
  display: block;
  margin: 0 auto;
  margin-bottom: 2.0em;
  max-width: 720px;
}
img.sec02-text1 {
  display: block;
  margin: 0 auto;
  margin-bottom: 2.0em;
  max-width: 850px;
}
img.sec02-sub1 {
  display: block;
  margin: 0 auto;
  margin-bottom: 5px;
  max-width: 800px;
}
img.sec02-sub3 {
  display: block;
  margin: 0 auto;
  max-width: 900px;
}
img.sec03-text1 {
  display: block;
  margin: 2.0em auto;
  max-width: 850px;
}
img.sec03-text2 {
  display: block;
  margin: 2.0em auto;
  max-width: 413px;
}
img.sec04-text1 {
  display: block;
  margin: 2.0em auto;
  max-width: 600px;
}
img.sec05-text1 {
  display: block;
  margin: 1.0em auto;
  max-width: 850px;
}
img.sec05-text2 {
  display: block;
  margin: 1.0em auto;
  max-width: 480px;
}
img.sec06-text1 {
  display: block;
  margin: 2.0em auto;
  max-width: 850px;
}
img.sec07-text1 {
  display: block;
  margin: 2.0em auto;
  max-width: 400px;
}
img.profile {
  display: block;
  margin: 1.0em auto;
  max-width: 1014px;
}
img.mokuji {
  display: block;
  margin: 1.0em auto;
  max-width: 400px;
}
img.present {
  display: block;
  margin: 1.0em auto 2.4em;
  max-width: 800px;
}
img.triangle {
  display: block;
  margin: 0 auto;
  max-width: 80px;
}
img.line {
  margin: 3% 0;
}
img.instagram {
    display: block;
  margin: 1% auto;
  max-width: 2.5%;
}
.bg-sub1 {
  background-color: #405b60;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
.bg-sub2 {
  background-color: #364c49;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
.bg-sub3 {
  background-color: #fff;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
.bg-sub4 {
  background-color: #fff;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  padding: 1.4em 0;
  color: #333333;
}
.bg-sub5 {
  background-color: #1d1d1e;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
.bg-sub7 {
  background-color: #555233;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
.marker {
  background: linear-gradient(transparent 50%, rgba(255, 220, 123) 50%);
  display: inline;
  /* 背景の繰り返しを停止 */
  background-repeat: no-repeat;
  /* マーカーの横方向を0にして縮める */
  background-size: 0% 100%;
  /* マーカーが引かれる速度を指定 */
  transition: background-size 1.5s;
}
/* マーカーが引かれる際に付与するクラス */
.marker.on {
  /* 横方向を100%にして、マーカーを引く */
  background-size: 100% 100%;
}
.banner {
  display: none; /* 最初は非表示にする */
  position: fixed; /* 表示位置を固定 */
  bottom: 0;
  right: 0;
  box-sizing: border-box;
  padding: 1%;
}
.banner img {
  width: 290px;
}
.step1 {
  display: block;
  margin: 0 auto;
  max-width: 850px;
  background: #fff;
  padding: 0 3em 1.5em;
  background-image: url("../images/bg2.png");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;
  height: auto;
  overflow: hidden;
  text-align: center;
}
.step1 .step_inr {
  border: 1px solid #333333;
  font-size: 1.5em;
  margin-top: 1.5em;
}
.step2 {
  display: block;
  margin: 0 auto;
  max-width: 850px;
  background: #fff;
  padding: 0 3em 1.5em;
  background-image: url("../images/bg1.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  height: auto;
  overflow: hidden;
  text-align: center;
}
.step2 .step_inr {
  border: 1px solid #333333;
  font-size: 1.5em;
  margin-top: 1.5em;
}
/* 点滅 */
.blink {
  animation: blinking 1s ease-in-out infinite alternate;
}
@keyframes blinking {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* ボタンアニメーション */
.animate73 {
  -webkit-animation-timing-function: ease-in;
  -moz-animation-timing-function: ease-in;
  -o-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
  -moz-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
a.a-btn {
  position: relative;
  display: inline-block;
  margin: auto;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
a.a-btn img {
  display: block;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}
img.a-main {
  width: 80%;
  position: relative;
  z-index: 54;
}
a.shover:hover * {
  animation-name: none !important;
}
@-moz-keyframes animate73 {
  0% {
    -moz-transform: scale(0.92);
  }
  40% {
    -moz-transform: scale(0.97);
  }
  60% {
    -moz-transform: scale(0.96);
  }
  80% {
    -moz-transform: scale(1);
  }
  100% {
    -moz-transform: scale(0.92);
  }
}
@-o-keyframes animate73 {
  0% {
    -o-transform: scale(0.92);
  }
  40% {
    -o-transform: scale(0.97);
  }
  60% {
    -o-transform: scale(0.96);
  }
  80% {
    -o-transform: scale(1);
  }
  100% {
    -o-transform: scale(0.92);
  }
}
@-webkit-keyframes animate73 {
  0% {
    -webkit-transform: scale(0.92);
  }
  40% {
    -webkit-transform: scale(0.97);
  }
  60% {
    -webkit-transform: scale(0.96);
  }
  80% {
    -webkit-transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.92);
  }
}
@keyframes animate73 {
  0% {
    transform: scale(0.92);
  }
  40% {
    transform: scale(0.97);
  }
  60% {
    transform: scale(0.96);
  }
  80% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.92);
  }
}
.animate73 {
  -webkit-animation-name: animate73;
  -moz-animation-name: animate73;
  -o-animation-name: animate73;
  animation-name: animate73;
}
.a-btn73 {
  padding-left: 0% !important;
}
.a-btn73 {
  max-width: 100% !important;
}
.animate73 {
  animation-duration: 1.3s !important;
  -webkit-animation-duration: 1.3s;
  -ms-animation-duration: 1.3s;
  -moz-animation-duration: 1.3s !important;
}
@media only screen and (max-width : 950px) {
	img.instagram {
    display: block;
  margin: 1% auto;
  max-width: 5%;
}
	
	.top_image {
    background-image: none;

}
	.h_item1{
		width:20%;
	}
	.h_item2{
		width:30%;
	}
	.h_item3{
		width:30%;
	}
	.h_item4{
		width:30%;
	}
	
  .header_inr {
    max-width: 100%;
    margin: 1rem 1%;
    overflow: hidden;
    padding: 0 3%;
  }
  .content_inner {
    padding: 2% 4%;
    display: flex;
    flex-direction: column;
    font-size: clamp(15px, 2.2vw, 18px);
    line-height: 170%;
  }

  .w75 {
    margin: 0 auto;
    display: block;
    width: 100%;
  }
  .w85 {
    margin: 0 auto;
    display: block;
    width: 100%;
  }
  .w100 {
    margin: 0 auto;
    display: block;
    width: 100%;
  }
  .section_inr2 {
    margin: 1.5em 0 !important;
    padding: 3%;
    width: 100%;
  }
  .body_sub1 {
    background-image: none;
    height: auto;
  }
  .body_sub2 {
    background-image: none;
    height: auto;
  }
  .body_sub3 {
    background-image: none;
    height: auto;
  }
  .body_sub4 {
    background-image: none;
    height: auto;
  }
  .body_sub5 {
    background-image: none;
    height: auto;
  }
  .body_sub6 {
    background-image: none;
    height: auto;
  }
  .section_01 {
    width: 100%;
    background-size: cover;
    padding: 3% 0.5%;
  }
  .section_01 .section_inr {
    margin-top: 0.1em !important;
  }
  .section_02 {
    width: 100%;
    padding: 3% 0.5%;
  }
  .section_03 {
    width: 100%;
    padding: 0.5%;
  }
  .section_04 {
    width: 100%;
    padding: 0.5%;
  }
  .section_05 {
    width: 100%;
    padding: 3% 0.5%;
  }
  .section_06 {
    width: 100%;
  }
  .section_07 {
    width: 100%;
    padding: 3% 0.5%;
    background-image: url("../images/image1-sp.jpg");
    background-size: contain;
  }
  .section_07 .section_inr {
    margin-top: 35em !important;
  }
  .section_08 {
    width: 100%;
    padding: 0.5%;
  }
  .section_09 {
    width: 100%;
    padding: 0.5%;
  }
  .section_10 {
    width: 100%;
    padding: 0.5%;
  }
  .section_10 .section_inr {
    background: url(../images/grey.png) #fff repeat;
    text-align: left;
    padding: 1.5em 1.5em;
    border-left: 10px solid #c09020;
  }
  .section_11 {
    width: 100%;
    padding: 0.5%;
  }
  .section_12 {
    width: 100%;
    padding: 0.5%;
  }
  img.cta-text {
    width: 80%;
  }
  img.cta-btn {
    width: 95%;
  }
  img.sec02-text1 {
    width: 85%;
  }
  img.sec02-sub1 {
    width: 100%;
  }
  img.sec02-sub3 {
    width: 58%;
  }
  img.sec03-text1 {
    width: 95%;
  }
  img.sec03-text2 {
    width: 60%;
  }
  img.sec04-text1 {
    width: 95%;
  }
  img.sec05-text1 {
    width: 95%;
  }
  img.sec05-text2 {
    width: 77%;
  }
  img.sec06-text1 {
    width: 95%;
  }
  img.sec07-text1 {
    width: 50%;
  }
  img.profile {
    width: 95%;
  }
  img.mokuji {
    width: 95%;
  }
  img.present {
    width: 95%;
  }
  img.triangle {
    width: 10%;
  }
  .top_image_in, .section_inr {
    width: 100%;
    margin: 0 auto;
  }
  .step1 {
    display: block;
    margin: 0 auto;
    width: 100%;
    background: #fff;
    padding: 0 3em 1.5em;
    background-image: url("../images/bg2.png");
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
    height: auto;
    overflow: hidden;
    text-align: center;
  }
  .step1 .step_inr {
    border: 1px solid #333333;
    font-size: 1.5em;
    margin-top: 1.5em;
  }
  .step2 {
    display: block;
    margin: 0 auto;
    width: 100%;
    background: #fff;
    padding: 0 3em 1.5em;
    background-image: url("../images/bg1.png");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
    height: auto;
    overflow: hidden;
    text-align: center;
  }
  .step2 .step_inr {
    border: 1px solid #333333;
    font-size: 1.5em;
    margin-top: 1.5em;
  }
  .r-btn {
    display: flex;
    width: 100%;
    text-align: right;
    padding-right: 5%;
  }
  .r-btn img {
    width: 27%;
    padding-right: 5px;
  }
}