@charset "UTF-8";
/* -----------------------------------
リセットCSS
基本的には触らないでください
----------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
input[type=submit] {
  -webkit-appearance: none;
  border-radius: 0;
}

html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

*,
*::after,
*::before {
  box-sizing: border-box;
}

img {
  border: none;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

ol,
ul {
  list-style: none;
  padding: 0;
}
ol.list,
ul.list {
  list-style: decimal;
}

h1,
h2,
h3,
h4,
h5,
img,
p {
  margin: 0;
  padding: 0;
}

hr {
  border: none;
  border-top: 1px dashed #707070;
  height: 1px;
  background: transparent;
  margin: 1em auto;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
p {
  line-height: 1.6em;
}

/* -----------------------------------
ベース設定
----------------------------------- */
* {
  box-sizing: border-box;
}
*:active {
  outline: none;
}

body {
  background-color: #ffffff;
  color: #222222;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  padding: 0;
  margin: 0;
}

img {
  vertical-align: middle;
}

section {
  padding: 30px 0;
}
section .container {
  padding-left: 22px;
  padding-right: 22px;
}
@media (min-width: 768px) {
  section {
    padding: 60px 0;
  }
}
section.bg_beige {
  background: #fcf9f4;
  padding-top: 60px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  section.bg_beige {
    padding-bottom: 0;
  }
}
section.bg_red {
  background: #d92b44;
  position: relative;
}
section.bg_red:before, section.bg_red:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 17.3vw;
  background-repeat: no-repeat;
  background-size: contain;
}
section.bg_red:before {
  background-image: url(../img/cta_before.png);
  bottom: 99.5%;
}
section.bg_red:after {
  background-image: url(../img/cta_after.png);
  top: 99.5%;
}
@media (min-width: 768px) {
  section.bg_red:before, section.bg_red:after {
    display: none;
  }
}

/* つけるとスマホでしか表示されなくなるクラス */
.only-phone {
  display: inline-block;
}
@media (min-width: 481px) {
  .only-phone {
    display: none;
  }
}

/* つけるとタブレットでしか表示されなくなるクラス */
.only-pad {
  display: inline-block;
}
@media (min-width: 768px) {
  .only-pad {
    display: none;
  }
}

/* つけるとPCでしか表示されなくなるクラス */
.only-pc {
  display: none;
}
@media (min-width: 768px) {
  .only-pc {
    display: inline-block;
  }
}

/* つけるとPCでしか表示されなくなるクラス */
.only-pc-display {
  display: none;
}
@media (min-width: 768px) {
  .only-pc-display {
    display: block;
  }
}

/* つけるとPCで見たときだけ表示されなくなるクラス */
.except-pc {
  display: inline-block;
}
@media (min-width: 768px) {
  .except-pc {
    display: none;
  }
}

.red {
  color: #d92b44;
}

/* -----------------------------------
Flexbox設定
----------------------------------- */
.container {
  width: 100%;
  padding-right: 10px;
  padding-left: 10px;
  margin-right: auto;
  margin-left: auto;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.wrap {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.flex-reverse {
  flex-direction: row-reverse;
}

.flex-center {
  justify-content: center;
}

.flex-around {
  justify-content: space-around;
}

.flex-between {
  justify-content: space-between;
}

.center {
  text-align: center;
}

@media (min-width: 768px) {
  .left_center {
    text-align: center;
  }
}

.right {
  text-align: right;
}

.mt10 {
  margin-top: 10px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

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

.mb30 {
  margin-bottom: 30px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.mt110 {
  margin-top: 110px !important;
}

.mb110 {
  margin-bottom: 110px !important;
}

.mt120 {
  margin-top: 120px !important;
}

.mb120 {
  margin-bottom: 120px !important;
}

.mt130 {
  margin-top: 130px !important;
}

.mb130 {
  margin-bottom: 130px !important;
}

.mt140 {
  margin-top: 140px !important;
}

.mb140 {
  margin-bottom: 140px !important;
}

.mt150 {
  margin-top: 150px !important;
}

.mb150 {
  margin-bottom: 150px !important;
}

.mt0 {
  margin-top: 0 !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.max-100 {
  max-width: 100px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 0;
}

.max-150 {
  max-width: 150px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 0;
}

.max-200 {
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 0;
}

.max-250 {
  max-width: 250px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 0;
}

.max-300 {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 0;
}

.max-350 {
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 0;
}

.max-400 {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 0;
}

.max-450 {
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 0;
}

.max-500 {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 0;
}

.max-550 {
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 0;
}

.max-600 {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 0;
}

.max-650 {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 0;
}

.max-700 {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 0;
}

.max-750 {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 0;
}

.max-800 {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 0;
}

.max-850 {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 0;
}

.max-900 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 0;
}

.max-950 {
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 0;
}

.max-1000 {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 0;
}

.col-1 {
  width: calc((100% * 1) / 12);
  padding: 0 15px;
}

.col-lg1,
.col-md1,
.col-sm1,
.col-xl1 {
  width: 100%;
  margin-bottom: 40px;
}

.col-2 {
  width: calc((100% * 2) / 12);
  padding: 0 15px;
}

.col-lg2,
.col-md2,
.col-sm2,
.col-xl2 {
  width: 100%;
  margin-bottom: 40px;
}

.col-3 {
  width: calc((100% * 3) / 12);
  padding: 0 15px;
}

.col-lg3,
.col-md3,
.col-sm3,
.col-xl3 {
  width: 100%;
  margin-bottom: 40px;
}

.col-4 {
  width: calc((100% * 4) / 12);
  padding: 0 15px;
}

.col-lg4,
.col-md4,
.col-sm4,
.col-xl4 {
  width: 100%;
  margin-bottom: 40px;
}

.col-5 {
  width: calc((100% * 5) / 12);
  padding: 0 15px;
}

.col-lg5,
.col-md5,
.col-sm5,
.col-xl5 {
  width: 100%;
  margin-bottom: 40px;
}

.col-6 {
  width: calc((100% * 6) / 12);
  padding: 0 15px;
}

.col-lg6,
.col-md6,
.col-sm6,
.col-xl6 {
  width: 100%;
  margin-bottom: 40px;
}

.col-7 {
  width: calc((100% * 7) / 12);
  padding: 0 15px;
}

.col-lg7,
.col-md7,
.col-sm7,
.col-xl7 {
  width: 100%;
  margin-bottom: 40px;
}

.col-8 {
  width: calc((100% * 8) / 12);
  padding: 0 15px;
}

.col-lg8,
.col-md8,
.col-sm8,
.col-xl8 {
  width: 100%;
  margin-bottom: 40px;
}

.col-9 {
  width: calc((100% * 9) / 12);
  padding: 0 15px;
}

.col-lg9,
.col-md9,
.col-sm9,
.col-xl9 {
  width: 100%;
  margin-bottom: 40px;
}

.col-10 {
  width: calc((100% * 10) / 12);
  padding: 0 15px;
}

.col-lg10,
.col-md10,
.col-sm10,
.col-xl10 {
  width: 100%;
  margin-bottom: 40px;
}

.col-11 {
  width: calc((100% * 11) / 12);
  padding: 0 15px;
}

.col-lg11,
.col-md11,
.col-sm11,
.col-xl11 {
  width: 100%;
  margin-bottom: 40px;
}

.col-12 {
  width: calc((100% * 12) / 12);
  padding: 0 15px;
}

.col-lg12,
.col-md12,
.col-sm12,
.col-xl12 {
  width: 100%;
  margin-bottom: 40px;
}

@media (min-width: 481px) {
  .sm {
    flex-direction: row;
  }

  .col-sm1 {
    width: calc((100% * 1) / 12);
    padding: 0 15px;
  }

  .col-sm2 {
    width: calc((100% * 2) / 12);
    padding: 0 15px;
  }

  .col-sm3 {
    width: calc((100% * 3) / 12);
    padding: 0 15px;
  }

  .col-sm4 {
    width: calc((100% * 4) / 12);
    padding: 0 15px;
  }

  .col-sm5 {
    width: calc((100% * 5) / 12);
    padding: 0 15px;
  }

  .col-sm6 {
    width: calc((100% * 6) / 12);
    padding: 0 15px;
  }

  .col-sm7 {
    width: calc((100% * 7) / 12);
    padding: 0 15px;
  }

  .col-sm8 {
    width: calc((100% * 8) / 12);
    padding: 0 15px;
  }

  .col-sm9 {
    width: calc((100% * 9) / 12);
    padding: 0 15px;
  }

  .col-sm10 {
    width: calc((100% * 10) / 12);
    padding: 0 15px;
  }

  .col-sm11 {
    width: calc((100% * 11) / 12);
    padding: 0 15px;
  }

  .col-sm12 {
    width: calc((100% * 12) / 12);
    padding: 0 15px;
  }
}
@media (min-width: 768px) {
  .md {
    flex-direction: row;
  }

  .col-md1 {
    width: calc((100% * 1) / 12);
    padding: 0 15px;
  }

  .col-md2 {
    width: calc((100% * 2) / 12);
    padding: 0 15px;
  }

  .col-md3 {
    width: calc((100% * 3) / 12);
    padding: 0 15px;
  }

  .col-md4 {
    width: calc((100% * 4) / 12);
    padding: 0 15px;
  }

  .col-md5 {
    width: calc((100% * 5) / 12);
    padding: 0 15px;
  }

  .col-md6 {
    width: calc((100% * 6) / 12);
    padding: 0 15px;
  }

  .col-md7 {
    width: calc((100% * 7) / 12);
    padding: 0 15px;
  }

  .col-md8 {
    width: calc((100% * 8) / 12);
    padding: 0 15px;
  }

  .col-md9 {
    width: calc((100% * 9) / 12);
    padding: 0 15px;
  }

  .col-md10 {
    width: calc((100% * 10) / 12);
    padding: 0 15px;
  }

  .col-md11 {
    width: calc((100% * 11) / 12);
    padding: 0 15px;
  }

  .col-md12 {
    width: calc((100% * 12) / 12);
    padding: 0 15px;
  }

  .container {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (min-width: 768px) {
  .container {
    width: 720px;
  }
}
@media (min-width: 1030px) {
  .container {
    width: 960px;
  }

  .col-lg1 {
    width: calc((100% * 1) / 12);
    padding: 0 15px;
  }

  .col-lg2 {
    width: calc((100% * 2) / 12);
    padding: 0 15px;
  }

  .col-lg3 {
    width: calc((100% * 3) / 12);
    padding: 0 15px;
  }

  .col-lg4 {
    width: calc((100% * 4) / 12);
    padding: 0 15px;
  }

  .col-lg5 {
    width: calc((100% * 5) / 12);
    padding: 0 15px;
  }

  .col-lg6 {
    width: calc((100% * 6) / 12);
    padding: 0 15px;
  }

  .col-lg7 {
    width: calc((100% * 7) / 12);
    padding: 0 15px;
  }

  .col-lg8 {
    width: calc((100% * 8) / 12);
    padding: 0 15px;
  }

  .col-lg9 {
    width: calc((100% * 9) / 12);
    padding: 0 15px;
  }

  .col-lg10 {
    width: calc((100% * 10) / 12);
    padding: 0 15px;
  }

  .col-lg11 {
    width: calc((100% * 11) / 12);
    padding: 0 15px;
  }

  .col-lg12 {
    width: calc((100% * 12) / 12);
    padding: 0 15px;
  }
}
@media (min-width: 1240px) {
  .container {
    width: 1100px;
  }

  .col-xl1 {
    width: calc((100% * 1) / 12);
    padding: 0 15px;
  }

  .col-xl2 {
    width: calc((100% * 2) / 12);
    padding: 0 15px;
  }

  .col-xl3 {
    width: calc((100% * 3) / 12);
    padding: 0 15px;
  }

  .col-xl4 {
    width: calc((100% * 4) / 12);
    padding: 0 15px;
  }

  .col-xl5 {
    width: calc((100% * 5) / 12);
    padding: 0 15px;
  }

  .col-xl6 {
    width: calc((100% * 6) / 12);
    padding: 0 15px;
  }

  .col-xl7 {
    width: calc((100% * 7) / 12);
    padding: 0 15px;
  }

  .col-xl8 {
    width: calc((100% * 8) / 12);
    padding: 0 15px;
  }

  .col-xl9 {
    width: calc((100% * 9) / 12);
    padding: 0 15px;
  }

  .col-xl10 {
    width: calc((100% * 10) / 12);
    padding: 0 15px;
  }

  .col-xl11 {
    width: calc((100% * 11) / 12);
    padding: 0 15px;
  }

  .col-xl12 {
    width: calc((100% * 12) / 12);
    padding: 0 15px;
  }
}
/* -----------------------------------
見出し、テキストなど
----------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
  line-height: 1.8em;
}

p {
  margin: 0 auto 1em;
  line-height: 2em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 2.6em auto 1.2em;
}

span.large {
  font-size: 160%;
}

span.large_2 {
  font-size: 110%;
  font-weight: bold;
}

.bold {
  font-weight: bold;
}

@media (min-width: 768px) {
  .left-md {
    margin-right: auto;
    margin-left: 20px;
  }
}

h2 {
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  margin-top: 0;
  position: relative;
}

h3 {
  font-size: 7.3vw;
  font-weight: 800;
  margin: 30px 0;
}

h4 {
  margin-top: 2.4em;
  margin-bottom: 0.5em;
  font-size: 18px;
}
h4:before {
  content: "";
  display: inline-block;
  background: #d92b44;
  height: 15px;
  width: 15px;
  border-radius: 15px;
  vertical-align: middle;
  margin-right: 10px;
}

@media (min-width: 768px) {
  p.left-center {
    text-align: center;
  }
}

p.center-left {
  text-align: center;
}
@media (min-width: 768px) {
  p.center-left {
    text-align: left;
  }
}

/* -----------------------------------
リンク関係
----------------------------------- */
a {
  color: #d92b44;
  transition: 0.3s;
}
a img {
  transition: 0.3s;
}
a:hover {
  color: #ff8093;
}
a:hover img {
  opacity: 0.6;
}
a:visited {
  color: #d92b44;
}
a:active, a:focus {
  outline: none;
  color: #ff8093;
}
a.link_img img {
  transition: 0.3s;
}
a.link_img:hover img {
  opacity: 0.6;
}

a.btn {
  display: block;
  background: #ffffff;
  color: #d92b44;
  height: 50px;
  line-height: 50px;
  font-size: 15px;
  font-weight: bold;
  width: 80%;
  margin: 4em auto;
  padding: 0 30px;
  text-align: center;
  position: relative;
  border: none;
  position: relative;
  border: 1px solid #d92b44;
}
a.btn:after {
  display: block;
  content: "";
  width: 40px;
  height: 1px;
  background: #d92b44;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: -20px;
}
@media (min-width: 768px) {
  a.btn {
    height: 60px;
    line-height: 60px;
    min-width: 300px;
    width: -moz-fit-content;
    width: fit-content;
    margin: 40px auto;
  }
  a.btn.btn_center_left {
    margin-left: 0;
  }
}
a.btn:hover {
  color: #ffffff;
  background-color: #d92b44;
}
a.btn.btn_white {
  border-color: #ffffff;
  background-color: #d92b44;
  color: #ffffff;
}
a.btn.btn_white:after {
  background: #ffffff;
}
a.btn.btn_white:hover {
  background-color: #ffffff;
  color: #d92b44;
}

dl {
  display: flex;
  flex-wrap: wrap;
}
dl dt {
  font-weight: bold;
  margin: 0 0 5px;
  width: 100%;
}
dl dd {
  margin: 0 0 20px;
  width: 100%;
  padding-left: 20px;
}
@media (min-width: 768px) {
  dl dt {
    width: 80px;
    margin: 0 0 20px;
  }
  dl dd {
    width: calc(100% - 80px);
    margin: 0 0 20px;
  }
}

/* -----------------------------------
ヘッダー
----------------------------------- */
/* -----------------------------------
グローバルナビゲーション
----------------------------------- */
nav {
  color: #222222;
  text-align: left;
}
nav > ul > li > a {
  font-weight: 600;
  cursor: pointer;
}
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 5px auto;
  /*2階層目以降は横並びにしない*/
}
nav ul li {
  position: relative;
}
nav ul li a {
  display: block;
  text-decoration: none;
  padding: 5px 6px;
  margin: 10px 5px;
  transition: all 0.3s;
  font-size: 15px;
  line-height: 1;
  border-bottom: 1.5px solid transparent;
}
@media (min-width: 1030px) {
  nav ul li a {
    margin: 0px 12px;
    display: flex;
    flex-direction: column;
  }
  nav ul li a span.jp {
    display: block;
    margin: 10px auto;
    font-weight: 500;
  }
}
nav ul li a.current {
  border-bottom: 1px solid;
}
nav ul li li a {
  padding: 8px 10px 8px 45px;
  position: relative;
}
nav ul li li a:before {
  content: "";
  width: 8px;
  height: 8px;
  display: block;
  position: absolute;
  border-right: 2.5px solid #d92b44;
  border-top: 2.5px solid #d92b44;
  transform: rotate(45deg);
  margin: auto;
  top: 0;
  bottom: 0;
  left: 20px;
}
nav ul ul {
  display: block;
}

/* -----------------------------------
メイン
----------------------------------- */
main {
  position: relative;
}

/* -----------------------------------
フッター
----------------------------------- */
a#totop {
  position: sticky;
  display: block;
  height: 50px;
  width: 50px;
  background: #d92b44;
  border-radius: 50%;
  bottom: 56px;
  right: 6px;
  z-index: 40;
  margin: 0 6px 0 auto;
  opacity: 0;
  pointer-events: none;
}
a#totop.show {
  opacity: 1;
  pointer-events: all;
}
a#totop::after {
  content: "";
  width: 8px;
  height: 8px;
  display: block;
  position: absolute;
  border-right: 2px solid white;
  border-top: 2px solid white;
  transform: rotate(-45deg);
  margin: auto;
  right: 0;
  left: 0;
  top: 23px;
  transition: 0.3s;
}
a#totop:hover::after {
  top: 20px;
}
a#totop img {
  width: 80px;
}
@media (min-width: 1030px) {
  a#totop {
    bottom: 15px;
    margin: 0 20px 0 auto;
  }
}

footer {
  padding-bottom: 70px;
  padding-top: 60px;
}
@media (min-width: 768px) {
  footer {
    padding-bottom: 0;
  }
}
footer img.logo {
  width: 220px;
}
footer p {
  font-size: 0.9rem;
}
footer p.copyright {
  font-size: 13px;
  text-align: center;
}

.cta_btns {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.cta_btns a.cta_btn_item {
  display: block;
  background: #ffffff;
  color: #d92b44;
  padding: 15px 3px;
  border-radius: 5px;
  text-align: center;
  font-weight: 800;
  width: 32%;
  box-shadow: 0 4px #ae2236;
}
.cta_btns a.cta_btn_item:hover {
  color: #ff8093;
}

.cta_tel_inner {
  display: block;
  background: #ffffff;
  border-radius: 7px;
  padding: 1px;
}
.cta_tel_inner a {
  display: block;
  margin: 20px auto;
  text-align: center;
}
.cta_tel_inner a img {
  min-width: 280px;
  width: 80%;
  max-width: 450px;
}

@media (min-width: 768px) {
  .cta_wrap {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .cta_wrap .cta_tel,
.cta_wrap .cta_btns {
    width: 48%;
  }
  .cta_wrap .cta_btns {
    flex-direction: column;
    margin-bottom: 0;
  }
  .cta_wrap .cta_btns .cta_btn_item {
    width: 100%;
    margin-bottom: 13px;
    padding: 6px 3px;
  }
}
@media (min-width: 1030px) {
  .cta_wrap .cta_btns .cta_btn_item {
    font-size: 130%;
    padding: 7px;
  }
}
@media (min-width: 1240px) {
  .cta_wrap .cta_btns .cta_btn_item {
    padding: 9.5px 3px;
  }
}

#flowbtn {
  position: fixed;
  background: #d92b44;
  bottom: 0;
  width: 100%;
  right: 0;
  padding: 8px;
  z-index: 30;
}
#flowbtn .cta_btns {
  margin-bottom: 0;
}
@media (min-width: 1030px) {
  #flowbtn {
    background: transparent;
    bottom: auto;
    width: 50px;
    padding: 0;
    top: 70px;
  }
  #flowbtn .cta_btns {
    flex-direction: column;
  }
  #flowbtn .cta_btns .cta_btn_item {
    background: #38b5e9;
    padding: 0;
    width: 100%;
    font-size: 95%;
    height: 160px;
    margin-bottom: 1px;
    color: #ffffff;
    box-shadow: none;
    writing-mode: vertical-rl;
    line-height: 50px;
    border-radius: 0;
  }
  #flowbtn .cta_btns .cta_btn_item:hover {
    background: #8fddff;
  }
  #flowbtn .cta_btns .cta_btn_item:first-of-type {
    border-top-left-radius: 5px;
  }
  #flowbtn .cta_btns .cta_btn_item:last-of-type {
    border-bottom-left-radius: 5px;
  }
}

#mv {
  position: relative;
}
#mv .mv_img {
  width: 100%;
  height: auto;
  z-index: 1;
}
#mv .mv_img.mv_pc {
  display: none;
}
@media (min-width: 768px) {
  #mv .mv_img.mv_pc {
    display: block;
  }
  #mv .mv_img.mv_sp {
    display: none;
  }
}
#mv .mv_text {
  position: absolute;
  z-index: 2;
  bottom: 16.8%;
  left: 5%;
}
#mv .mv_text p {
  font-weight: 700;
  font-size: 9.5vw;
  line-height: 1.8em;
}
#mv .mv_text p span {
  border-bottom: 0.8vw solid #d92b44;
}
@media (min-width: 768px) {
  #mv .mv_text {
    left: 51%;
    top: 24%;
  }
  #mv .mv_text p {
    font-size: 4.4vw;
  }
  #mv .mv_text p span {
    border-bottom: 0.3vw solid #d92b44;
  }
}

#section01 {
  background-image: url(../img/img01.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

img.headline {
  display: block;
  width: 200px;
  margin: 14vw auto 30px;
}
@media (min-width: 768px) {
  img.headline {
    width: 300px;
    margin: 30px auto 40px;
  }
}

.point {
  border-top: 1px solid #d92b44;
  position: relative;
  margin-bottom: 40px;
}
.point:before {
  content: "";
  display: block;
  width: 50px;
  height: 20px;
  background: #fcf9f4;
  position: absolute;
  top: -10px;
  z-index: 2;
}
@media (min-width: 768px) {
  .point {
    padding-bottom: 20px;
  }
}
@media (min-width: 768px) {
  .point h3 {
    font-size: 25px;
    margin-top: 40px;
    margin-bottom: 20px;
  }
}
@media (min-width: 1030px) {
  .point h3 {
    font-size: 30px;
  }
}
.point img.point_headline {
  width: 134px;
  position: absolute;
  top: -26px;
  left: 0;
  z-index: 3;
}
@media (min-width: 768px) {
  .point img.point_headline {
    width: 110px;
    top: -23px;
  }
}
.point img.point_illust {
  max-width: 100vw;
  position: relative;
  z-index: -1;
}
.point img.point_illust.point_illust_pc {
  display: none;
}
@media (min-width: 768px) {
  .point img.point_illust.point_illust_pc {
    display: block;
    position: absolute;
    height: 67%;
    right: -213px;
    bottom: 20px;
  }
}
@media (min-width: 1030px) {
  .point img.point_illust.point_illust_pc {
    height: 91%;
    right: -300px;
  }
}
@media (min-width: 1240px) {
  .point img.point_illust.point_illust_pc {
    right: -157px;
  }
}
@media (min-width: 768px) {
  .point img.point_illust.point_illust_sp {
    display: none;
  }
}
.point p.text {
  margin: 20px 15px;
}
@media (min-width: 768px) {
  .point p.text {
    width: 52%;
    margin: 0;
  }
}
@media (min-width: 1030px) {
  .point p.text {
    width: 48%;
  }
}
.point.point01, .point.point03 {
  border-right: 1px solid #d92b44;
}
@media (min-width: 768px) {
  .point.point03 img.point_illust_pc {
    height: 56%;
    right: -201px;
  }
}
@media (min-width: 1030px) {
  .point.point03 img.point_illust_pc {
    height: 85%;
    right: -245px;
  }
}
@media (min-width: 1240px) {
  .point.point03 img.point_illust_pc {
    right: -110px;
  }
}
.point.point02 {
  border-left: 1px solid #d92b44;
}
@media (min-width: 1030px) {
  .point.point02 {
    padding-bottom: 65px;
  }
}
.point.point02 img.point_illust_sp {
  left: -44px;
}
.point.point02 img.point_headline {
  left: auto;
  right: 0;
}
.point.point02:before {
  right: 0;
}
@media (min-width: 768px) {
  .point.point02 h3,
.point.point02 p.text {
    left: 48%;
    width: 52%;
    position: relative;
  }
}
@media (min-width: 1030px) {
  .point.point02 h3,
.point.point02 p.text {
    left: 52%;
    width: 48%;
  }
}
@media (min-width: 768px) {
  .point.point02 img.point_illust_pc {
    display: block;
    position: absolute;
    height: 67%;
    left: -260px;
    bottom: 20px;
  }
}
@media (min-width: 1030px) {
  .point.point02 img.point_illust_pc {
    height: 91%;
    left: -300px;
  }
}
@media (min-width: 1240px) {
  .point.point02 img.point_illust_pc {
    left: -157px;
  }
}

#section02 img.img02 {
  width: 90%;
  max-width: 420px;
}

img.headline02 {
  display: block;
  width: 250px;
  margin: 30px auto;
}
@media (min-width: 768px) {
  img.headline02 {
    width: 350px;
    margin: 30px auto 40px;
  }
}

div#youtube {
  margin: 40px auto;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 16/9;
}
div#youtube iframe {
  width: 100%;
  height: 100%;
}

#section03 {
  background-image: url(../img/img03.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

img.headline03 {
  display: block;
  width: 160px;
  margin: 30px auto;
}
@media (min-width: 768px) {
  img.headline03 {
    width: 200px;
    margin: 0 auto 40px;
  }
}

section#section04 {
  background: #d92b44;
  position: relative;
  z-index: 1;
}
section#section04:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 17.3vw;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/red_back.png);
  top: 99.5%;
}

img.headline04 {
  display: block;
  width: 160px;
  margin: 30px auto;
}
@media (min-width: 768px) {
  img.headline04 {
    width: 200px;
    margin: 0 auto 40px;
  }
}
@media (min-width: 1030px) {
  img.headline04 {
    width: 240px;
    margin: 0 auto 60px;
  }
}

.accordion {
  margin: 30px auto;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
}
.accordion::details-content {
  opacity: 0;
  block-size: 0;
  transition: 0.3s;
  transition-property: display, opacity, block-size, padding;
  transition-behavior: allow-discrete;
  line-height: 1.6em;
}
.accordion .accordion_contents {
  margin: 0 20px;
}
@media (min-width: 1030px) {
  .accordion .accordion_contents {
    margin: 0 40px;
  }
}
.accordion .accordion_contents .accordion_contents_container .title {
  position: relative;
  border-bottom: 2px solid #dddddd;
}
.accordion .accordion_contents .accordion_contents_container .title p {
  color: #d92b44;
  font-weight: 800;
  font-size: 4vw;
  line-height: 1.7em;
  position: relative;
  z-index: 1;
}
.accordion .accordion_contents .accordion_contents_container .title img.img {
  position: absolute;
  width: 18vw;
  bottom: 0;
  right: 3vw;
  z-index: 0;
}
@media (min-width: 481px) {
  .accordion .accordion_contents .accordion_contents_container .title p {
    font-size: 20px;
  }
  .accordion .accordion_contents .accordion_contents_container .title img.img {
    width: 90px;
  }
}
@media (min-width: 768px) {
  .accordion .accordion_contents .accordion_contents_container .title p {
    font-size: 26px;
  }
  .accordion .accordion_contents .accordion_contents_container .title img.img {
    width: 110px;
  }
}
@media (min-width: 1030px) {
  .accordion .accordion_contents .accordion_contents_container .title p {
    font-size: 32px;
  }
  .accordion .accordion_contents .accordion_contents_container .title img.img {
    width: 130px;
  }
}
.accordion .accordion_contents .accordion_contents_container .item {
  padding: 12px 0;
  display: flex;
  border-bottom: 2px solid #ddd;
}
.accordion .accordion_contents .accordion_contents_container .item .item_number {
  padding-right: 12px;
  border-right: 2px solid #d92b44;
  margin-right: 12px;
  display: flex;
}
.accordion .accordion_contents .accordion_contents_container .item .item_number img {
  width: 42px;
  display: block;
  margin: auto 0;
}
.accordion .accordion_contents .accordion_contents_container .item .text {
  flex: 1;
  display: flex;
}
.accordion .accordion_contents .accordion_contents_container .item .text p {
  margin: auto 0;
  font-size: 110%;
  font-weight: 800;
  line-height: 1.8em;
}
@media (min-width: 768px) {
  .accordion .accordion_contents .accordion_contents_container .item {
    padding: 18px 12px;
  }
  .accordion .accordion_contents .accordion_contents_container .item .item_number {
    padding-right: 16px;
    margin-right: 16px;
  }
  .accordion .accordion_contents .accordion_contents_container .item .item_number img {
    width: 40px;
  }
  .accordion .accordion_contents .accordion_contents_container .item .text p {
    font-size: 120%;
  }
}
@media (min-width: 1030px) {
  .accordion .accordion_contents .accordion_contents_container .item {
    padding: 22px 16px;
  }
  .accordion .accordion_contents .accordion_contents_container .item .item_number {
    padding-right: 20px;
    margin-right: 20px;
  }
  .accordion .accordion_contents .accordion_contents_container .item .item_number img {
    width: 40px;
  }
  .accordion .accordion_contents .accordion_contents_container .item .text p {
    font-size: 130%;
  }
}
.accordion .accordion_contents .accordion_contents_container img.course_img {
  width: 49%;
  max-width: 250px;
}
@media (min-width: 1030px) {
  .accordion .accordion_contents .accordion_contents_container img.course_img {
    max-width: 300px;
  }
}
.accordion[open]::details-content {
  opacity: 1;
  block-size: auto;
  block-size: calc-size(auto, size);
}
.accordion[open] .accordion_content {
  padding: 1.4em;
}
.accordion[open] .accordion_title:after {
  content: "-";
}

summary.accordion_title {
  position: relative;
  border: none;
  display: block;
  list-style: none;
  width: 100%;
  cursor: pointer;
  padding: 0.6em 1.6em 0.6em 1em;
  line-height: 1.6em;
  font-size: 20px;
  font-weight: 700;
}
@media (min-width: 1030px) {
  summary.accordion_title {
    padding: 0.8em 1.8em 0.8em 1.2em;
    font-size: 24px;
  }
}
summary.accordion_title::-webkit-details-marker {
  display: none;
}
summary.accordion_title:after {
  content: "+";
  position: absolute;
  top: calc(50% - 0.55em);
  right: 20px;
  line-height: 1;
  padding: 0;
  pointer-events: none;
  font-size: 40px;
  font-weight: 400;
}

#section05 {
  padding: 20vw 0;
}
#section05 img.img_pc {
  display: none;
}
@media (min-width: 768px) {
  #section05 {
    padding: 15vw 0 60px;
  }
  #section05 img.img_sp {
    display: none;
  }
  #section05 img.img_pc {
    display: block;
  }
}

#sectionimg {
  background-image: url(../img/img04_sp.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 70vw;
  max-height: 380px;
}
@media (min-width: 768px) {
  #sectionimg {
    background-image: url(../img/img04.jpg);
  }
}

.swiper-container {
  position: relative;
}

.swiper-button-prev,
.swiper-button-next {
  width: auto;
  height: auto;
  top: auto;
  bottom: 121px;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  content: "";
  width: 40px;
  height: 40px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.swiper-button-prev {
  left: auto;
  right: 72px;
}

.swiper-button-prev:after {
  background-image: url(../img/swiper_left.png);
}

.swiper-button-next:after {
  background-image: url(../img/swiper_right.png);
}

.swiper-pagination-bullet {
  width: calc(20% - 6px);
  height: 4px;
  margin: 0 6px 0 0 !important;
  border-radius: 0;
  background: white;
  opacity: 1;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #d92b44;
}

.swiper-slide .item {
  background: white;
  border-radius: 10px;
  padding: 20px;
  margin: 0 4px 4px;
  box-shadow: 2px 2px 3px #ae2237a2;
}
.swiper-slide .item .inner .profile {
  display: flex;
}
.swiper-slide .item .inner .profile .img {
  width: 85px;
}
.swiper-slide .item .inner .profile .img img {
  width: 75px;
}
.swiper-slide .item .inner .profile .text {
  flex: 1;
}
.swiper-slide .item .inner .profile .text p {
  font-weight: 700;
  margin: auto;
}
.swiper-slide .item p.comment {
  margin: 20px 0 0;
  line-height: 1.8em;
}
@media (min-width: 1030px) {
  .swiper-slide .item {
    padding: 40px;
  }
  .swiper-slide .item .inner .profile .img {
    width: 110px;
  }
  .swiper-slide .item .inner .profile .img img {
    width: 90px;
  }
  .swiper-slide .item .inner .profile .text p {
    font-size: 112%;
    margin: 10px 0;
  }
}

.swiper-wrapper {
  margin-bottom: 70px;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  width: calc(100% - 130px);
  top: auto;
  bottom: 136px;
}

@media (min-width: 1030px) {
  .swiper-container img.headline03 {
    position: absolute;
    left: 5%;
    top: 15%;
    width: 250px;
  }
  .swiper-container .swiper {
    width: 60%;
    margin: 0 0 0 auto;
  }
  .swiper-container .swiper-wrapper {
    margin-bottom: 0;
  }
  .swiper-container .swiper-horizontal > .swiper-pagination-bullets,
.swiper-container .swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-container .swiper-pagination-custom,
.swiper-container .swiper-pagination-fraction {
    width: 36%;
    left: 1%;
    bottom: 0;
  }
  .swiper-container .swiper-button-prev,
.swiper-container .swiper-button-next {
    bottom: 44px;
  }
  .swiper-container .swiper-button-prev:after,
.swiper-container .swiper-button-next:after {
    width: 45px;
    height: 45px;
  }
  .swiper-container .swiper-button-prev {
    right: calc(63% + 72px);
  }
  .swiper-container .swiper-button-next {
    right: 63%;
  }
  .swiper-container a.btn {
    position: absolute;
    left: 2%;
    top: calc(20% + 75px);
  }
}