@charset "UTF-8";

/*---------- ページ全体の指定 ----------*/

body {
  margin: 0;
  padding: 0;
  font-size: 100%;
  color: #1f2c36;
  background-color: #e6fdf2;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体",
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", sans-serif;
  position: relative;
  box-sizing: border-box;
  max-width: 100%;
  background-image: linear-gradient(
      0deg,
      transparent calc(100% - 1px),
      #dff5f6 calc(100% - 1px)
    ),
    linear-gradient(
      90deg,
      transparent calc(100% - 1px),
      #dff5f6 calc(100% - 1px)
    );
  background-size: 16px 16px;
  background-repeat: repeat;
  background-position: center center;
}

li {
  list-style: none;
}

.text_w {
  color: #fff;
}

.text_r,
b {
  color: #2b7d81;
  font-size: 1.2em;
  font-weight: bold;
}

.main_wrap {
  overflow: hidden;
}
.object-fit {
  height: 400px;
  object-fit: cover;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .object-fit {
    height: 200px;
    object-position: 0px -80px;
  }
}
/*---------- リンク/テキスト設定 ----------*/
a {
  text-decoration: none;
  color: #0000ee;
}

a:hover {
  color: #0000ee;
  text-decoration: none;
}
a {
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
a img {
  border-style: none;
}
img {
  vertical-align: bottom;
  max-width: 100%;
}
a:hover img {
  opacity: 0.6;
  filter: alpha(opacity=60);
}
a img {
  border-style: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.white {
  color: #fff;
}

.m_color {
  color: #348290 !important;
  font-weight: bold;
}

.mt1 {
  margin-top: 1em !important;
}

.big {
  font-size: 1.6em;
}
.dot-text {
  padding-top: 0.4em;
  font-size: 1.4em;
  background-position: top left -2px;
  background-repeat: repeat-x;
  background-size: 1.3em 0.3em;
  color: #107d81;
  background-image: radial-gradient(
    0.15em 0.15em at center center,
    #107d81,
    #107d81 100%,
    transparent
  );
}

h2 {
  margin: 0 !important;
  padding: 0 !important;
  text-align: center;
  max-width: 600px;
  margin: 0 auto !important;
}

h3 {
  margin: 0 !important;
  padding: 0 !important;
  text-align: center;
  margin: 0 auto !important;
}

.sub_h3 {
  padding: 0.5em 0.7em !important;
  border-left: 5px solid #139eb1;
  background-color: #fefff1;
  color: #333333 !important;
  font-size: 1em;
  width: 90%;
}

.sub_h3_02 {
  padding: 0.5em 0.7em !important;
  border-left: 5px solid #139eb1;
  background-color: #fefff1;
  color: #333333 !important;
  font-size: 1.6em;
  text-align: left;
  margin-bottom: 1em !important;
}
@media screen and (max-width: 768px) {
  .sub_h3_02 {
    font-size: 1.2em;
  }
}
/*---------- ベーステキストの指定 ----------*/

p {
  font-size: 100%;
  line-height: 180%;
}
/* ▼PCメディアクエリ */
@media screen and (min-width: 769px) {
  p {
    font-size: 16px;
    letter-spacing: 1px;
  }
} /* ▲PCメディアクエリ終了▲ */

.bgcolor_light {
  background: #e7fdf7;
}

.maker {
  background: linear-gradient(transparent 0%, #fff9dd 60%);
  font-weight: bold;
}
.rich-maker {
  color: #c50200;
  font-weight: bold;
  font-size: 1.2em;
  border-bottom: 1px solid #c50200;
}

.y_text {
  color: #d3e729;
}
.tit_img {
  max-width: 800px;
  margin: 0 auto;
}
/*---------- PC・スマホの非表示指定 ----------*/

@media screen and (max-width: 768px) {
  .sp_none {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .pc_none {
    display: none;
  }
}

/*---------- スマホのみ改行 ----------*/
.sp_br {
  display: none;
}

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

table.check {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}
table.check th {
  width: 25px;
  font-size: 100%;
  line-height: 180%;
  padding: 12px 0 5px 0;
  color: #ea5051;
  vertical-align: top;
  text-align: left;
}
table.check td {
  font-size: 120%;
  line-height: 150%;
  font-weight: bold;
  padding: 14px 0 5px 0;
  border-bottom: dotted 1px #999999;
  vertical-align: top;
}

@media screen and (min-width: 769px) {
  table.check th {
    width: 35px;
    font-size: 21px;
    padding: 8px 0 5px 0;
  }
  table.check td {
    font-size: 21px;
    padding: 10px 0 5px 0;
  }
}

/*------------------------------ ヘッド部分 ------------------------------*/

/* ▼PCメディアクエリ */
@media screen and (min-width: 769px) {
  .top_head {
    padding: 15px 0;
    font-size: 12px;
  }
  .top_title {
    font-size: 28px;
  }
} /* ▲PCメディアクエリ終了▲ */

/*------------------------------ メインビジュアル部分 ------------------------------*/

.main_visual {
  padding: 0;
  background-color: #117d81;
  background-size: cover;
  background-position: top;
  padding-bottom: 7em;
}

.main_logo {
  background: #fff;
  padding: 0;
  margin: 0 auto;
}
.main_logo img {
  width: 100%;
  padding: 0;
  margin: 0;
}
.logo-area {
  max-width: 1200px;
  margin: 0 auto;
  display: block;
}
.main_copy {
  margin: -0.5em auto 0;
  max-width: 1200px;
  text-align: center;
}

.sub_copy {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.main_copy img,
.main_3point img {
  width: 100%;
}

.cta-text-box {
  margin-top: -8em;
}

.main_3point {
  max-width: 800px;
  margin-bottom: 30px;
  margin-top: -9em;
  text-align: center;
  padding-bottom: 3em;
  margin-left: auto;
  margin-right: auto;
  z-index: 4;
  background: #fff;
  position: inherit;
  border-radius: 20px;
  padding: 20px;
  border: 3px solid #cdcdcd;
}

@media screen and (max-width: 769px) {
  .cta-text-box {
    margin-top: -1em;
    padding-bottom: 0.5em;
  }
  .main_visual {
    padding-bottom: 0em;
    padding-top: 10px;
  }
  .m_width100 {
    max-width: 100% !important;
  }
  .main_copy {
    padding: 0px 0 1em;
    margin-top: -0.5em;
  }
  .main_3point {
    max-width: 900px;
    margin-top: -1em;
    padding: 0 10px 15px;
    margin-right: 10px;
    margin-left: 10px;
  }
  .main_logo {
    background: #fff;
    padding: 0;
    margin: 0;
  }
} /* ▲PCメディアクエリ終了▲ */

/*------------------------------ 共通部分 ------------------------------*/
.wrap {
  padding: 0;
  width: 800px;
  margin: 0px auto 20px;
}

.wrap_wide {
  padding: 0;
  max-width: 1100px;
  margin: 0px auto 20px;
}

/* ▼PCメディアクエリ */
@media screen and (max-width: 769px) {
  .wrap {
    padding: 0px;
    width: 100%;
    margin: 0px auto;
  }
  .wrap_wide {
    padding: 0;
    width: 100%;
    margin: 0 auto 10px;
  }
} /* ▲PCメディアクエリ終了▲ */

/*------------------------------ ボタン ------------------------------*/

.device {
  margin: 0;
  padding: 0 30px;
  text-align: center;
}
.device a:link {
  color: #fff;
  text-decoration: none;
}
.device a:visited {
  color: #fff;
  text-decoration: none;
}
.device a:hover {
  color: #fff;
  text-decoration: none;
}

.btn a,
.btn a:visited,
.btn2 a,
.btn2 a:visited {
  color: #fff;
  text-decoration: none;
}

.btn {
  overflow: visible;
  text-transform: none;
  text-align: center;
  white-space: nowrap;
  touch-action: manipulation;
  cursor: pointer;
  user-select: none;
  color: #fff;
  background: #fe8b00;
  margin: 0 auto;
  font-size: 18px;
  line-height: 60px;
  border-radius: 60px;
  font-size: 20px;
  font-weight: bold;
  line-height: 80px;
  display: block;
  padding: 0 20px;
  border: none;
  position: relative;
  transition: 0.4s;
  animation: animation03 2s infinite;
  margin-top: 50px !important;
}
.btn::before {
  content: "LINEで簡単にご予約できます";
  display: inline-block;
  font-size: 18px;
  line-height: 1.5;
  padding: 0 20px;
  color: #fe8b00;
  background: #fff;
  border: 2px solid #fe8b00;
  border-radius: 16px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 0;
}
.btn::after {
  content: "";
  display: block;
  width: 8px;
  height: 14px;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  background: url(img/arw.svg) no-repeat left center;
  background-size: contain;
}
.btn2 {
  overflow: visible;
  text-transform: none;
  text-align: center;
  white-space: nowrap;
  touch-action: manipulation;
  cursor: pointer;
  user-select: none;
  color: #fff;
  background: #de654b;
  margin: 0 auto;
  font-size: 18px;
  line-height: 60px;
  border-radius: 60px;
  font-size: 33px;
  font-weight: bold;
  line-height: 80px;
  display: block;
  padding: 0px 20px;
  border: none;
  max-width: 700px;
  position: relative;
  transition: 0.4s;
  animation: animation03 2s infinite;
  margin-top: 50px !important;
  box-shadow: 0 5px 15px 0 rgb(135 35 33);
}
.btn2::after {
  content: "";
  display: block;
  width: 8px;
  height: 14px;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  background: url(img/arw.svg) no-repeat left center;
  background-size: contain;
}

/****** アニメーション ******/
@keyframes animation03 {
  0% {
    transform: translate(0px, 2px);
  }
  5% {
    transform: translate(0px, -2px);
  }
  10% {
    transform: translate(0px, 2px);
  }
  15% {
    transform: translate(0px, -2px);
  }
  20% {
    transform: translate(0px, 2px);
  }
  25% {
    transform: translate(0px, -2px);
  }
  30% {
    transform: translate(0px, 0px);
  }
}

.btn:hover {
  background: #e28a0f;
  opacity: 0.7;
}

@media screen and (max-width: 768px) {
  .btn {
    max-width: 85%;
    font-size: 18px !important;
  }
  .btn2 {
    max-width: 85%;
    font-size: 18px !important;
  }
}
@media screen and (min-width: 769px) {
  .btn {
    font-size: 35px;
    padding: 17px 10px;
    max-width: 800px;
  }
  .btn::before {
    font-size: 25px;
    border-radius: 38px;
  }
  .btn2 {
    font-size: 35px;
    padding: 17px 10px;
    max-width: 800px;
  }
}
/*------------------------------ フッター ------------------------------*/

#footer {
  margin: 0;
  padding: 10px 0 10px;
  font-size: 75%;
  line-height: 150%;
  text-align: center;
  color: #fff;
  background: #293f4f;
  font-family: "Roboto Condensed", sans-serif;
}

#footer a:visited {
  color: #fff;
}
#footer a:link {
  color: #fff;
}

.accordion {
  margin: 1em auto 3em;
  max-width: 60vw;
}
.toggle {
  display: none;
}
.option {
  position: relative;
  margin-bottom: 1em;
}
.title,
.content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}
.title {
  padding: 1em;
  display: block;
  color: rgb(255, 255, 255);
  font-weight: bold;
}
.tokusyo {
  max-height: 560px;
  overflow-y: scroll;
  overflow-x: hidden;
}
table.tokusyo {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 0px;
  margin-bottom: 0px;
  margin-bottom: 0px;
}
table.tokusyo th,
table.tokusyo td {
  padding: 10px;
  text-align: left;
  background-color: #fff;
  line-height: 140%;
}
table.tokusyo td {
  color: #000 !important;
}
table.tokusyo th {
  background-color: #107d81;
  text-align: left;
  color: #fff;
  width: 25%;
  font-weight: normal;
}

@media screen and (max-width: 768px) {
  .accordion {
    margin: 0em auto 7em;
    max-width: 90%;
  }
  .tokusyo {
    max-height: 380px;
    overflow-x: hidden;
  }
  table.tokusyo {
    border-top: 1px solid #999;
  }
  table.tokusyo td {
    display: block;
    text-align: left;
  }
  table.tokusyo th {
    display: block;
    border-top: none;
    border-bottom: none;
    width: 100%;
    text-align: center;
  }
}
.content {
  max-height: 0;
  overflow: hidden;
}
.content p {
  margin: 0;
  padding: 0.5em 1em 1em;
  font-size: 0.9em;
  line-height: 1.5;
}
.toggle:checked + .title + .content {
  max-height: 500px;
  transition: all 1.5s;
}
.toggle:checked + .title::before {
  transform: rotate(90deg) !important;
}

/* ▼PCメディアクエリ */
@media screen and (min-width: 769px) {
  #footer {
    margin: 0;
    font-size: 12px;
  }
} /* ▲PCメディアクエリ終了▲ */

/*---------- 文字装飾 ----------*/
.big {
  font-size: 1.2em;
}
.bold {
  font-weight: bold;
}
.ul {
  text-decoration: underline;
}
.red {
  font-weight: bold;
  color: rgb(220, 62, 30);
}
.main-color {
  color: #2b7d81;
}
.through {
  text-decoration: line-through;
}
.ym {
  font-weight: bold;
  background: linear-gradient(transparent 60%, #ffe24d 60%);
}
.caption {
  font-size: 75%;
  color: #666666;
  font-weight: normal;
  line-height: 180%;
}

.y_box {
  background-color: #feffeb;
  padding: 20px;
  margin: 10px;
}

/*---------- 文字位置 ----------*/

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

/*---------- 学習アプリを導入したお客様の事例 ----------*/

.section_jirei {
  padding: 20px 10px 0px;
}

.section_jirei h2 {
  color: #fff;
  text-align: center;
  padding: 20px;
}

.voice_boxwrap {
  display: flex;
}

.voice_box {
  background-color: #fff;
  padding: 20px;
  margin: 10px;
  border-radius: 20px;
  width: 50%;
}
.voice_wrap {
  display: flex;
  align-items: flex-end;
}
.voice_img {
  width: 50%;
}
.voice_name {
  width: 50%;
}

.voice_name ul {
  list-style: none;
  padding: 0px;
  margin: 10px;
}
.voice_name ul li {
  border-bottom: 1px solid #e0e0e0;
  padding: 3px;
}
.voice_p {
  padding: 15px 0 0;
}

@media screen and (max-width: 769px) {
  .section_jirei {
    padding: 0px 10px;
    margin-top: -1em;
  }
  .voice_boxwrap {
    display: flex;
    flex-direction: column;
  }
  .voice_img {
    width: 70%;
  }
  .voice_name {
    width: 100%;
  }
  .voice_wrap {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .voice_box {
    width: 100%;
    margin: 10px auto;
    box-sizing: border-box;
  }
  .voice_name ul {
    list-style: none;
    padding: 0px;
    margin: 10px 0 0;
  }
}

/*---------- 従来のオンラインスクールや e-learningの大きな欠点 ----------*/

.section_defect {
  background-color: #edeff1;
  padding: 20px 10px 10px;
}

.section_defect h2 {
  text-align: center;
}

.defect_wrap {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding-bottom: 5px;
}

.defect_text {
  padding: 20px 40px 0;
}
.defect_text2 {
  padding: 20px 40px;
}

.section_defect .img_area {
  width: 80%;
  margin: 0 auto;
}

@media screen and (max-width: 769px) {
  .defect_text {
    padding: 10px 10px 0;
  }
  .defect_text2 {
    padding: 10px 10px;
  }
  .section_defect .img_area {
    width: 100%;
  }
}

/*---------- 学習アプリとは？ ----------*/

.section_whyapp {
  background-color: #107d81;
  padding: 20px 10px;
}

.section_whyapp h2 {
  color: #fff;
  text-align: center;
}

.section_whyapp .img_area {
  width: 60%;
  margin: 0 auto;
}

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

/*---------- 学習アプリ導入のメリット ----------*/

.section_merit {
  padding: 20px 10px 10px;
}

.section_merit h2 {
  text-align: center;
}

.section_merit ul {
  display: block;
  margin-top: 40px;
  list-style: none;
  width: 100%;
  padding: 0;
  margin: 0;
  margin-top: 0.5em;
}

.section_merit ul li {
  background: #fff;
  width: 100%;
  padding: 0px 20px 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 10px;
  min-height: 200px;
  margin-bottom: 20px;
}

.section_merit ul li h3 {
  font-size: 22px;
  font-weight: bold;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #86c2c7;
  text-align: left;
}

.section_merit ul li .contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start;
}

.section_merit ul li .contents img {
  width: 40%;
}

.section_merit p {
  padding: 0 20px;
}

.section_merit img {
  padding-top: 15px;
}

@media screen and (max-width: 769px) {
  .section_merit {
    padding: 10px 10px 10px;
  }
  .section_merit ul li .contents p {
    width: 100%;
    margin-bottom: 0px;
    font-size: 14px;
  }
  .section_merit ul li .contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .section_merit ul li .contents p {
    width: 100%;
    margin-bottom: 0px;
    font-size: 16px;
    padding: 0;
  }
  .section_merit ul li .contents img {
    width: 100%;
  }
  .section_merit ul li {
    padding: 0 10px;
    margin-bottom: 20px;
  }
  .section_merit img {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

/*---------- 学習アプリはこんな方におススメです！ ----------*/

.section_recommendation {
  background-color: #107d81;
  padding: 20px 10px;
  overflow: hidden;
}

.section_recommendation h2 {
  color: #fff;
  text-align: center;
}

.section_recommendation ul {
  list-style: none;
  width: 800px;
  display: block;
  margin: 20px auto;
  border-radius: 10px;

  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 30px 40px;
  background: #fff;
}

.section_recommendation ul li {
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  border-bottom: 1px dotted #282828;
  display: flex;
  margin-bottom: 12px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start;
  padding-bottom: 0.3em;
  display: block;
}

.section_recommendation ul li:before {
  font-family: "Font Awesome 5 free";
  font-weight: 900;
  content: "\f14a";
  position: absolute;
  left: 0.5em;
  color: #139eb1;
  padding-left: 0.2em;
}

.osusume-box-wrap {
  display: flex;
  max-width: 1000px;
  position: relative;
}

.osusume-list-box {
}

.osusume-img-box {
  position: absolute;
  bottom: -40px;
  right: -9%;
  width: 400px;
}

@media screen and (max-width: 769px) {
  .osusume-box-wrap {
    display: flex;
    flex-direction: column;
    position: static;
  }
  .osusume-img-box {
    position: absolute;
    bottom: 0;
    right: 25%;
    width: 270px;
  }
  .section_recommendation ul {
    width: 100%;
    margin: 10px auto;
  }
  .section_recommendation {
    padding: 20px 10px 200px;
    position: relative;
  }
  .osusume-img-box {
    right: 25%;
  }
  .section_recommendation ul li:before {
    padding-left: 0.7em;
    padding-top: 0.2em;
  }
}

/*---------- 学習アプリ活用シーン ----------*/

.section_exercise {
  padding: 20px 10px 10px;
}

.section_exercise h2 {
  text-align: center;
}
.section_exercise .exercise_box_wrap {
  margin: 20px;
}
.section_exercise .exercise_box {
  padding: 0px;
  margin: 20px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-radius: 0px 10px 10px 10px;
  overflow: hidden;
}

.section_exercise .exercise_box .text_area {
  width: 70%;
}

.section_exercise .exercise_box .text_area dl dt {
  width: 80px;
  height: 80px;
  border-radius: 60px;
  color: #ffffff;
  display: inline-block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 1.6rem;
  margin-right: 20px;
  background: #007979;
  display: flex;
  font-weight: bold;
  justify-content: center;
  align-items: center;
}

.section_exercise .exercise_box .text_area dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 40px;
}

.section_exercise .exercise_box .text_area dl dd {
  width: calc(100% - 110px);
}

.exercise_box .exercise_box .text_area dl dd h3 {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #282828;
  display: inline;
}

.section_exercis .exercise_box_wrap .exercise_box .exercise_box p {
  font-size: 1.4rem;
}

.exercise_box .img_area {
  width: 30%;
}

.exercise_box p {
  padding: 0 20px;
}

@media screen and (max-width: 769px) {
  .section_exercise .exercise_box .text_area dl {
    flex-direction: column;
  }
  .section_exercise .exercise_box_wrap {
    padding: 0px;
    margin: 0px;
  }
  .section_exercise .exercise_box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 20px 0 0;
  }
  .section_exercise .exercise_box .text_area {
    width: 100%;
  }
  .section_exercise .exercise_box dl {
    margin-bottom: 20px;
  }
  .section_exercise .exercise_box dl dt {
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
    padding: 18px 11px;
    margin-right: 10px;
    font-weight: bold;
  }
  .section_exercise .exercise_box .text_area dl dd {
    width: calc(100% - 72px);
  }
  .section_exercise .exercise_box .text_area dl dd h3 {
    font-size: 1.6rem;
  }
  .exercise_box .exercise_box .img_area {
    width: 100%;
    margin: 20px auto;
  }
  .section_exercise .exercise_box .text_area dl dt {
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
    display: flex;
    margin-right: 10px;
    font-weight: bold;
  }
  .exercise_box .img_area {
    width: 100%;
    height: 200px;
    display: none;
  }
  .exercise_box p {
    padding: 0 15px;
  }
  .exercise_box h3 img {
    padding: 0 0 5px;
  }
}

/*---------- 成功するオンラインスクールに必要な「システム」と「ノウハウ」をすべて提供します！ ----------*/

.section_offer {
  background-color: #107d81;
  padding: 20px 10px;
}

.section_offer h2 {
  color: #fff;
  text-align: center;
}

@media screen and (max-width: 769px) {
  .section_offer {
    background-color: #107d81;
    padding: 0px 10px 2px;
  }
  .section_offer .wrap {
    margin: 0px auto;
  }
}

/*---------- 弊社が選ばれる３つの理由 ----------*/

.section_reason3 {
  padding: 20px 10px;
}

.section_reason3 .reason3_box {
  padding: 24px 15px 30px;
  border-radius: 8px;
  background-color: #fff;
  margin-top: 30px;
  padding: 10px 15px 10px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section_reason3 .reason3_sub {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 160px;
  height: 24px;
  margin: 0 auto 16px;
  padding-right: 15px;
  padding-left: 15px;
  border: 1px solid #0b41a0;
  border-radius: 32px;
  color: #0b41a0;
  font-weight: 700;
  text-align: center;
  font-size: 12px;
}

.section_reason3 p {
  max-width: 750px;
  line-height: 1.4;
}

.section_reason3 .img_area {
  max-width: 750px;
}

.reason3_subbox {
  margin: 10px auto;
  background: #f1f1f1;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.22);
  border-radius: 20px;
  overflow: hidden;
  max-width: 95%;
}

.reason3_subbox .box-title {
  font-size: 1.2em;
  background: #304964;
  padding: 4px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.05em;
  padding: 30px;
}

.reason3_subbox .box-text {
  padding: 15px 20px;
  margin: 0;
}

.reason1__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: wrap;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 0;
  list-style: none;
  width: 100%;
  color: #46979a;
  font-weight: bold;
}

.reason1__list li {
  padding: 20px;
  text-align: center;
  width: 24%;
  flex-direction: column;
  align-items: flex-start;
  border: 1px dotted #35aaae;
  background: #e7fdf7;
}
.reason1__list span {
  display: block;
  padding: 5px 0;
  background-size: 100% 253px;
}

.reason3__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: wrap;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 0;
  list-style: none;
  width: 100%;
}

.reason3__list li {
  padding: 20px;
  text-align: left;
  width: 40%;
  flex-direction: column;
  align-items: flex-start;
  border: 1px dotted #35aaae;
  background: #e7fdf7;
}
.reason3__list span {
  display: block;
  padding: 5px 0;
  background-size: 100% 253px;
}

@media screen and (max-width: 769px) {
  .section_reason3 .reason3_box {
    margin-top: 20px;
  }
  .reason3_subbox {
    margin: 10px auto;
    padding: 0;
    min-width: 86%;
    max-width: 95%;
  }
  .reason1__list {
    width: 100%;
    flex-direction: column;
  }
  .reason1__list li {
    width: 90%;
  }
  .reason1__list span {
    width: 150px;
  }
  .reason3__list {
    width: 100%;
    flex-direction: column;
  }
  .reason3__list li {
    width: 90%;
  }
  .reason3__list span {
    width: 100%;
    text-align: center;
  }
  .reason3_subbox .box-title {
    padding: 10px;
  }
}

/*---------- 著名人との対談も行っています。 ----------*/

.section_conversation {
  background-color: #107d81;
  padding: 20px 10px;
}

.section_conversation h2 {
  color: #fff;
  text-align: center;
}

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

/*---------- 開設までの流れ ----------*/

.section_flow {
  padding: 20px 10px;
}

.section_flow h2 {
  text-align: center;
}

.top-contact__flow_list {
  margin: 0;
  padding: 0;
}

.top-contact__flow_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  background: #fff;
  margin-bottom: 2.3em;
}

.top-contact__flow_num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 64px;
  background: #117d81;
  line-height: 1;
  font-size: 30px;
  font-weight: bold;
  color: #fff;
}

.top-contact__flow_text {
  display: block;
  width: calc(100% - 64px);
  padding: 25px 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: left;
  line-height: 1.4;
  font-size: 18px;
}

.top-contact__flow_item::after {
  content: "";
  border-top: 18px solid #117d81;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 18px solid transparent;
  position: absolute;
  left: 50%;
  bottom: -47px;
}

.top-contact__flow_item:last-child::after {
  display: none;
}

@media screen and (max-width: 769px) {
  .top-contact__flow_text {
    padding: 15px 10px;
    font-size: 16px;
  }
}

/*代理店ボタン*/

.dairi-link_box {
  display: flex;
  align-items: flex-end;
}

.airi-link_btn {
  padding: 10px;
  width: 43%;
}

@media screen and (max-width: 769px) {
  .dairi-link_box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/*---------- よくあるご質問  ----------*/

.section_qa {
  background-color: #107d81;
  padding: 20px 10px;
}

.section_qa h2 {
  color: #fff;
  text-align: center;
}

.faqs .container dl {
  background: #fff;
  padding: 10px 20px 20px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 20px;
}

.faqs .container dl dt {
  font-size: 22px;
  font-weight: bold;
  color: #117d81;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  border-bottom: dotted 1px #139eb1;
  padding-bottom: 10px;
  letter-spacing: 1px;
}

.faqs .container dl dt:before {
  content: "Q.";
  font-size: 30px;
  width: 40px;
}

.faqs .container dl dd:before {
  content: "A.";
  font-size: 30px;
  width: 38px;
  line-height: 30px;
}

.faqs .container dl dd {
  font-size: 16px;
  color: #282828;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 15px;
}

.faqs .container dl:nth-child(even) {
  background: #fefff6;
}

.faqs .container p {
  margin: 0;
}

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

/*----------  cta  ----------*/

.section_cta {
}

.section_cta h2 {
  color: #fff;
  text-align: center;
}

dd {
  margin: 0 auto;
}

.mt15 {
  margin-top: 15px !important;
}

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

/*------------------------------ フローティング ------------------------------*/

@media screen and (max-width: 769px) {
  .floating {
    z-index: 99999;
    bottom: 0;
    right: 0;
    width: 100%;
    position: fixed;
  }

  .navi_bottom {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .navi_bottom li {
    width: 50%;
  }
  .floating {
    width: 100%;
  }
}

.jisseki-list1-box {
  display: flex;
  margin-bottom: 10px;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.jisseki-list1-item:nth-child(1) {
  background-color: #139eb1;
  display: flex;
  justify-content: center;
  width: 10%;
  height: 6em;
  line-height: 1.2;
  color: #fff;
  align-items: center;
  align-content: stretch;
}

.jisseki-list1-item:nth-child(2) {
  display: flex;
  background-color: #f1f1f1;
  width: 90%;
  padding-left: 16px;
  height: 6em;
  line-height: 1.2;
  align-items: center;
  font-weight: bold;
}
.jim-icon-area {
  height: 8em !important;
}
.jim-text-area {
  height: 8em !important;
}
@media screen and (max-width: 769px) {
  .jisseki-list1-item:nth-child(1) {
    height: 8em;
    width: 17%;
  }
  .jisseki-list1-item:nth-child(2) {
    height: 8em;
  }
  .jim-icon-area {
    height: 11em !important;
  }
  .jim-text-area {
    height: 11em !important;
  }
  .section_reason3 p {
    line-height: 1.4;
  }
}
