@charset "utf-8";
/*リセットCSS（sanitize.css）の読み込み
---------------------------------------------------------------------------*/
@import url("sanitize.css");
/*Font Awesomeの読み込み
/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Kosugi+Maru&family=Mochiy+Pop+One&display=swap");

/*テンプレート専用cssファイルの読み込み
---------------------------------------------------------------------------*/
/*全体の設定
---------------------------------------------------------------------------*/
html,
body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  /*基準となるフォントサイズ。下の方にある「画面幅980px以上」で基準を大きなサイズに再設定しています。*/
  scroll-behavior: smooth;
  scroll-padding-top: 20px;
}

html.db {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  height: 100%;
}

body {
  font-family: "Kosugi Maru", "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro",
    "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
  /*フォント種類*/
  -webkit-text-size-adjust: none;
  letter-spacing: 0.05em;
  background: #fff;
  color: #333;
  /*全体の文字色*/
  line-height: 1.8em;
  /*行間*/
  overflow-x: hidden;
}

body.db {
  overflow: hidden;
}

/*リセット*/
figure {
  margin: 0;
}

dd {
  margin: 0;
}

nav {
  margin: 0;
  padding: 0;
}

/*table全般の設定*/
table {
  border-collapse: collapse;
}

/*画像全般の設定*/
img {
  border: none;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/*videoタグ*/
video {
  max-width: 100%;
}

/*iframeタグ*/
iframe {
  width: 100%;
}

/*ul,olタグ*/
ul,
ol {
  margin: 0px;
  padding: 0px;
}

/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
  color: #fff;
  /*文字色*/
  transition: 0.3s;
}

/*sectionタグと、詳細ページの共通設定
---------------------------------------------------------------------------*/
section:first-of-type {
  padding: 80px 0 40px;
  /*ボックス内の余白*/
}

section {
  margin: 0 auto;
  padding: 190px 0 40px;
  /*ボックス内の余白*/
}

@media screen and (max-width: 1050px) {
  section:first-of-type {
    padding: 25px 0 30px;
    /*ボックス内の余白*/
  }

  section {
    margin: 0 auto;
    padding: 65px 0 30px;
    /*ボックス内の余白*/
  }
}

/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  text-align: center;
  background: #fff;
}

#splash svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*header（ロゴなどが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
  width: 85%;
  position: fixed;
  top: 15px;
  left: 60px;
  z-index: 5;
  display: grid;
  grid-auto-flow: column;
  place-items: center;
  justify-content: space-between;
  align-items: start;
  pointer-events: none;
}

.icon_nav {
  display: grid;
  grid-auto-flow: column;
  place-items: center;
  list-style: none;
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  position: fixed;
  top: 10px;
  right: 150px;
  -webkit-transform: translateY(-200px);
  -ms-transform: translateY(-200px);
  transform: translateY(-200px);
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
  box-shadow: 0px 0px 15px -5px #777777;
}

.icon_nav.db {
  opacity: 0;
  transition: 0.2s;
}

.icon_nav.scroll_icon {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}


.icon_nav li:hover {
  transform: translateY(5px);
  transition: 0.3s;
}

.icon_nav li:nth-of-type(1):hover~.p_text1 {
  opacity: 1;
  transition: 0.3s;
}

.icon_nav li:nth-of-type(2):hover~.p_text2 {
  opacity: 1;
  transition: 0.3s;
}

.icon_nav li:nth-of-type(3):hover~.p_text3 {
  opacity: 1;
  transition: 0.5s;
}

.icon_nav li {
  width: 50px;
  padding-left: 15px;
}

.icon_nav p {
  position: absolute;
  top: -5px;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 14px;
  text-align: center;
  display: inline-block;
  opacity: 0;
}

.icon_nav p::before,
.icon_nav p::after {
  position: absolute;
  top: 9px;
  height: 10px;
  content: "";
}

.icon_nav p::before {
  border-left: solid 2px;
  left: 24px;
  transform: rotate(-30deg);
}

.icon_nav p::after {
  border-right: solid 2px;
  right: 24px;
  transform: rotate(30deg);
}

/*ヘッダーのリンクテキストの文字色*/
header a {
  color: #333;
  background: linear-gradient(#fff, #fff) 0 100%/0 2px no-repeat;
  transition: background 0.4s;
  pointer-events: fill;
}

header a:hover {
  color: #b90018;
  transition: all 0.3s;
  background-size: 100% 2px;
}

/*ロゴ画像*/
header .logo img {
  display: block;
}

header .logo {
  width: 110px;
  height: auto;
}

@media (max-width: 1050px) {
  header {
    width: 100%;
    top: 10px;
    left: 10px;
  }

  header .logo {
    width: 80px;
    height: auto;
  }

  .icon_nav {
    display: none;
  }
}


/*トップページのメイン画像
---------------------------------------------------------------------------*/
/*全体を囲むブロック*/
#main_area {
  width: 100%;
  background: url("../images/bg1.webp") repeat-x center bottom;
  background-size: cover;
  height: auto;
  padding-top: 200px;
  position: relative;
}

.main_box {
  width: 100%;
  max-width: 1920px;
  margin: auto;
  position: relative;
  padding-top: calc(580 / 1920 * 100%);
}

.main_box ul {
  position: absolute;
  top: 0;
  left: 50px;
  list-style: none;
  text-align: left;
  z-index: 2;
  width: 60vw;
}

.main_box ul li:first-child {
  width: 90%;
}

.wave-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.line {
  display: flex;
  flex-direction: row;
  gap: 7px;
  align-items: center;
}

.line img:nth-of-type(1) {
  width: 9%;
}

.line img:nth-of-type(2) {
  width: 7%;
}

.line img:nth-of-type(3) {
  width: 8.5%;
  margin-top: 4%;
}

.line img:nth-of-type(4) {
  width: 10%;
}

.line img:nth-of-type(5) {
  width: 11%;
}

.line img:nth-of-type(6) {
  width: 9%;
}

.line img:nth-of-type(7) {
  width: 17.5%;
}

.line img:nth-of-type(8) {
  width: 12%;
}

.line img:nth-of-type(9) {
  width: 9.5%;
}

.line:nth-of-type(2) img:nth-of-type(1) {
  width: 14%;
  margin-right: 2%;
}

.line:nth-of-type(2) img:nth-of-type(2) {
  width: 6%;
  margin-top: 4%;
  margin-right: 2%;
}

.line:nth-of-type(2) img:nth-of-type(3) {
  width: 14%;
  margin-top: 0;
  margin-right: 2%;
}

.line:nth-of-type(2) img:nth-of-type(4) {
  width: 14%;
}

.line:nth-of-type(2) img:nth-of-type(5) {
  width: 8%;
  margin-top: 4%;
}

.line:nth-of-type(2) img:nth-of-type(6) {
  width: 8%;
  margin-top: 5%;
}

.line:nth-of-type(2) img:nth-of-type(7) {
  width: 8%;
  margin-top: 5%;
}

.line:nth-of-type(2) img:nth-of-type(8) {
  width: 8%;
  margin-top: 5%;
}

.letter {
  display: inline-block;
  opacity: 0;
  transform: scale(0.6) translateY(30px);
  animation: popIn 0.4s ease-out forwards;
}

/* それぞれ少しずつ遅延させて波にする */
.letter1 {
  animation-delay: 0s;
}

.letter2 {
  animation-delay: 0.05s;
}

.letter3 {
  animation-delay: 0.1s;
}

.letter4 {
  animation-delay: 0.15s;
}

.letter5 {
  animation-delay: 0.2s;
}

.letter6 {
  animation-delay: 0.25s;
}

.letter7 {
  animation-delay: 0.3s;
}

.letter8 {
  animation-delay: 0.35s;
}

.letter9 {
  animation-delay: 0.4s;
}

.letter10 {
  animation-delay: 0.45s;
}

.letter11 {
  animation-delay: 0.5s;
}

.letter12 {
  animation-delay: 0.55s;
}

.letter13 {
  animation-delay: 0.6s;
}

.letter14 {
  animation-delay: 0.65s;
}

.letter15 {
  animation-delay: 0.7s;
}

.letter16 {
  animation-delay: 0.75s;
}

.letter17 {
  animation-delay: 0.8s;
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.6) translateY(30px);
  }

  60% {
    opacity: 1;
    transform: scale(1.15) translateY(-5px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}


.main_img {
  position: absolute;
  top: -80px;
  right: -10px;
  z-index: 1;
  width: 40%;
}

.main_img img {
  position: absolute;
  width: 100%;
  height: auto;
  animation: fluidrotate 15s ease 0s infinite;
  box-shadow: 15px 15px 0px 0 rgb(60, 194, 235);
  display: block;
  transition: opacity 1s ease-in-out;
  opacity: 0;
  /* 初期状態は非表示 */
}

.main_img img.active {
  opacity: 1;
  z-index: 2;
  /* 表示中の画像を前面に */
}

.main_img img.previous {
  opacity: 1;
  /* 直前の画像はそのまま表示 */
  z-index: 1;
  /* 一つ下のレイヤーに配置 */
}

@keyframes fluidrotate {

  0%,
  100% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }

  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }

  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }

  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }

  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }

  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }

  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
}

/*スクロールダウン全体の場所*/
.scrolldown3 {
  /*描画位置※位置は適宜調整してください*/
  /*マウスの動き1.6秒かけて動く永遠にループ*/
  animation: mousemove 1.6s ease-in-out infinite;
  z-index: 1;
  position: relative;
  width: 0px;
  margin: 0 auto 0;
}

/*下からの距離が変化して上から下に動く*/
@keyframes mousemove {
  0% {
    bottom: 10px;
  }

  50% {
    bottom: 5px;
  }

  100% {
    bottom: 10px;
  }
}

/*Scrollテキストの描写*/
.scrolldown3 span {
  /*描画位置*/
  position: absolute;
  left: -15px;
  bottom: 45px;
  /*テキストの形状*/
  color: #eee;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

/*マウスの中の線描写 */
.scrolldown3 span::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 10px;
  left: 17px;
  /*線の形状*/
  width: 1px;
  height: 15px;
  background: #eee;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: mousepathmove 1.4s linear infinite;
  opacity: 0;
}

/*上からの距離・不透明度・高さが変化して上から下に流れる*/
@keyframes mousepathmove {
  0% {
    height: 0;
    top: 10px;
    opacity: 0;
  }

  50% {
    height: 15px;
    opacity: 1;
  }

  100% {
    height: 0;
    top: 30px;
    opacity: 0;
  }
}

/*マウスの描写 */
.scrolldown3:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: -10px;
  /*マウスの形状*/
  width: 25px;
  height: 37px;
  border-radius: 10px;
  border: 1px solid #eee;
}

/*マウスの中の丸の描写*/
.scrolldown3:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 26px;
  left: 0;
  /*丸の形状*/
  width: 5px;
  height: 5px;
  border-radius: 50%;
  border: 1px solid #eee;
}

#main_area .img1 {
  position: absolute;
  top: 40px;
  right: 255px;
  animation-delay: 5.5s;
}

#main_area .img2 {
  position: absolute;
  bottom: 30px;
  right: 110px;
  animation-delay: 6s;
}

@media (max-width: 768px) {
  #main_area {
    padding-top: 10%;
  }

  .main_box {
    padding-top: calc(300 / 768 * 100%);
  }

  .main_box ul {
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
    margin: auto;
    width: 70vw;
  }

  .main_box ul li:first-child {
    width: 100%;
  }

  .main_img {
    display: none;
  }

  .main_img img {
    animation: fluidrotate 15s ease 0s infinite;
    box-shadow: 10px 10px 0px 0 rgb(60, 194, 235);
    display: block;
  }
}

@media (max-width: 500px) {
  #main_area {
    padding-top: 2%;
  }

  .main_box {
    padding-top: calc(240 / 375 * 100%);
  }

  .main_box ul {
    top: 45%;
    width: 82vw;
    left: -4%;
  }

  .main_img {
    top: 0;
    width: 70%;
  }
}


/*menubarブロック初期設定
---------------------------------------------------------------------------*/
#menubar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

#menubar li {
  margin-bottom: 20px;
}

#menubar li a {
  color: #fff;
}

#menubar img {
  display: none;
}

#menubar dl {
  margin: 30px auto 0;
}

#menubar dd a {
  width: 300px;
  margin: 15px auto 0;
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  display: block;
  text-align: center;
  position: relative;
  box-shadow: 5px 5px 0px 0 #0477ac;
}

#menubar dd a:hover {
  opacity: 0.8;
}

#menubar dd a::after {
  content: "";
  position: absolute;
  background-image: url(../images/icon_1.webp);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 35px;
  height: 46px;
  top: 8px;
  left: 20px;
}

#menubar dd:nth-of-type(2) a::after {
  background-image: url(../images/icon_3.webp);
  width: 35px;
  height: 46px;
  top: 14px;
  left: 20px;
}

#menubar dd:nth-of-type(3) a::after {
  background-image: url(../images/icon_2.webp);
  width: 35px;
  height: 46px;
  top: 14px;
  left: 20px;
}


/*---------------------------------------------------------------------------
ここから下は画面幅980px以下の追加指定
---------------------------------------------------------------------------*/
@media screen and (max-width: 1050px) {

  /*btnの設定
---------------------------------------------------------------------------*/
  #menubar li {
    font-size: 18px;
    margin-bottom: 10px;
  }

  #menubar img {
    display: block;
    margin: 60px auto 0;
  }
}

/*メニューを非表示にしておく*/
#menubar {
  display: none;
}

/*開閉用のスタイル*/
#menubar.db {
  display: block;
}

#menubar.dn {
  display: block;
}

/*メニュー１個あたりの設定*/
#menubar a {
  text-decoration: none;
  text-align: left;
  letter-spacing: 0.1em;
  /*文字間隔を少しだけ広くする指定*/
}

/*小さな端末用の設定（開閉ブロック）
---------------------------------------------------------------------------*/
/*メニューブロック設定*/
.s #menubar.db {
  position: fixed;
  overflow: auto;
  z-index: 3;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  padding: 100px 20px 0px;
  /*上下、左右へのブロック内の余白*/
  text-align: center;
  /*内容をセンタリング*/
  color: #333;
  /*文字色*/
  opacity: 1;
  transition: all 1.6s;
  font-size: 20px;
}

.s #menubar.dn {
  opacity: 0;
  display: none;
  padding: 70px 20px;
  /*上下、左右へのブロック内の余白*/
  color: #fff;
  /*文字色*/
}

/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*開閉用のスタイル*/
.menu_bg {
  background: url("../images/menu.webp");
  position: fixed;
  right: 0px;
  top: 0px;
  z-index: 9;
  background-size: contain;
  width: 120px;
  height: 100px;
  display: grid;
  place-content: center;
  padding: 0 0 20px 40px;
  -webkit-transform: translate(120px, 0);
  -ms-transform: translate(120px, 0);
  transform: translate(120px, 0);
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

@media (max-width: 1050px) {
  .menu_bg {
    width: 100px;
    height: 83px;
    padding: 0 0 20px 34px;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}


.menu_bg:hover {
  animation-name: pulse;
  animation-duration: 0.6s;
  animation-iteration-count: 3;
}


.menu_bg.scroll_icon {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}


#menubar_hdr.ham::after {
  background: url(../images/ss.webp) no-repeat 0 0;
  background-size: 100%;
  transform: translateX(0);
  height: 60px;
  width: 80px;
}

#menubar_hdr::after {
  content: "";
  display: block;
  left: -21px;
  position: absolute;
  top: 15px;
  transform: translateX(20px);
  transition: transform 0.2s linear;
  z-index: -1;
}

#menubar_hdr.db {
  display: flex;
}

#menubar_hdr.dn {
  display: none;
}

/*３本バーを囲むブロック*/
#menubar_hdr {
  cursor: pointer;
  padding: 10px;
  width: 60px;
  height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  background: #fff;
  border-radius: 50%;
}

/*バー１本あたりの設定*/
#menubar_hdr span {
  display: block;
  transition: 0.3s;
  /*アニメーションにかける時間。0.3秒。*/
  border-top: 5px solid #1f8ecf;
  /*線の幅、線種、色*/
}

/*×印が出ている状態の設定。※１本目および２本目のバーの共通設定。*/
#menubar_hdr.ham span:nth-of-type(1),
#menubar_hdr.ham span:nth-of-type(2),
#menubar_hdr.ham span:nth-of-type(3) {
  transform-origin: center center;
  /*変形の起点。センターに。*/
  width: 30px;
  /*バーの幅*/
}

/*×印が出ている状態の設定。※１本目のバー。*/
#menubar_hdr.ham span:nth-of-type(1) {
  transform: rotate(45deg) translate(10.8px, 4px);
  /*回転45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※2本目のバー。*/
#menubar_hdr.ham span:nth-of-type(2) {
  transform: rotate(-45deg) translate(9.8px, -3px);
  /*回転-45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※3本目のバー。*/
#menubar_hdr.ham span:nth-of-type(3) {
  display: none;
  /*回転-45°と、X軸Y軸への移動距離の指定*/
}


/*mainブロック設定
---------------------------------------------------------------------------*/
/*mainブロック*/
main {
  text-align: center;
}

/*mainブロック内のh2タグ*/
main h2 {
  margin: 0 auto 50px;
  /*上、左右、下へのタグの外にとるスペース*/
  line-height: 1.5;
  /*行間を少し狭く*/
  font-size: 50px;
  /*文字サイズ。3倍。*/
  text-align: center;
  /*文字をセンタリング*/
  letter-spacing: 0.1em;
  /*文字間隔を少しだけ広くとる設定*/
  font-weight: 400;
  /*文字の太さ*/
  text-underline-offset: 8px;
  font-family: "Mochiy Pop One", "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro",
    "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
  /*フォント種類*/
  position: relative;
  display: table;
}


main h2::after {
  position: absolute;
  content: "";
  width: 90px;
  height: 45px;
  top: 10px;
  left: -120px;
  display: block;
  background-size: contain;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(227deg) brightness(101%) contrast(101%);
  -webkit-animation: moveYX 1.5s steps(1, end) 0s infinite;
  animation: moveYX 1.5s steps(1, end) 0s infinite;
}

main h2::before {
  position: absolute;
  content: "";
  width: 46px;
  height: 45px;
  top: 10px;
  right: -60px;
  display: block;
  background-size: contain;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(227deg) brightness(101%) contrast(101%);
  -webkit-animation: moveXY 1.5s steps(1, end) 0s infinite;
  animation: moveXY 1.5s steps(1, end) 0s infinite;
}


main figure {
  text-align: center;
}

/*mainブロック内のh3タグ*/
main h3 {
  margin: 0;
  /*上、左右、下へのタグの外にとるスペース*/
}

/*mainブロックのpタグ*/
main p {
  margin: 0;
  /*上、左右、下へ空けるスペース*/
}

.custom-shape-divider-bottom-1724758457 {
  position: absolute;
  bottom: -96px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
  z-index: 4;
}

.custom-shape-divider-bottom-1724758457 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 96px;
}

.blog .custom-shape-divider-bottom-1724758457 .shape-fill {
  fill: #01a6cd;
}

.lesson .custom-shape-divider-bottom-1724758457 .shape-fill {
  fill: #bff7f6;
}

.flow .custom-shape-divider-bottom-1724758457 .shape-fill {
  fill: #01a6cd;
}

.fee .custom-shape-divider-bottom-1724758457 .shape-fill {
  fill: #fff;
}

.counsel .custom-shape-divider-bottom-1724758457 .shape-fill {
  fill: #bff7f6;
}

.faq .custom-shape-divider-bottom-1724758457 .shape-fill {
  fill: #bff7f6;
}

@media (max-width: 1050px) {
  main h2 {
    margin: 0 auto 30px;
    font-size: 26px;
  }

  .custom-shape-divider-bottom-1724758457 {
    bottom: -35px;
  }

  .custom-shape-divider-bottom-1724758457 svg {
    height: 35px;
  }
}


/*ブログ（blog）
---------------------------------------------------------------------------*/
.blog {
  width: 100%;
  margin: auto;
  text-align: left;
  background: #01a6cd;
  position: relative;
}

.blog h2 {
  color: #fff;
}

.blog h2::after {
  background-image: url(../images/info_icon1.webp);
}

.blog h2::before {
  background-image: url(../images/info_icon2.webp);
}

.blog ul {
  width: 1000px;
  padding: 30px;
  background: #fff;
  margin: 0 auto 70px;
  list-style: none;
  border-radius: 40px;
  box-shadow: 5px 5px 0px 0 rgb(29, 130, 146);
}

.blog li {
  margin: 0 0 20px 0;
  border-bottom: 1px dotted #f0f0f0;
}

.blog li:last-child {
  border-bottom: none;
  padding: 0;
  margin-bottom: 0px;
}

.blog dl {
  display: grid;
  grid-template-columns: 1fr 9fr;
  place-items: center;
  width: 100%;
  justify-items: start;
  align-content: center;
}

.blog dt {
  padding-right: 20px;
}

.blog dd {}

.blog dt span {
  display: block;
  padding: 10px;
  color: #fff;
  background: #00d4f7;
  width: 100px;
  height: 50px;
  font-size: 14px;
  text-align: center;
  border-radius: 20px;
}

.blog ul a {
  text-decoration: none;
  color: #333;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.blog ul a:hover {
  transform: translateY(6px);
}

.blog_btn {
  display: grid;
  place-content: center;
  color: #fff;
  width: 500px;
  height: 100px;
  margin: auto;
  font-size: 30px;
  border-radius: 20px;
  background: #1f8ecf;
  position: relative;
  text-decoration: none;
  box-shadow: 5px 5px 0px 0 #0477ac;
}

.blog_btn::before {
  content: "";
  position: absolute;
  background: url("../images/arrow.webp");
  width: 59px;
  height: 48px;
  background-size: contain;
  top: 30px;
  right: 30px;
}

.blog_btn:hover {
  translate: 5px 10px;
}

.blog_btn:hover::before {
  transform: translateX(10px);
  transition: 0.3s;
}

@media (max-width: 1050px) {
  .blog ul {
    width: 90%;
    padding: 15px;
    margin: 0 auto 40px;
    border-radius: 20px;
  }

  .blog dl {
    display: grid;
    grid-template-columns: 1fr;
  }

  .blog dt {
    padding-right: 0px;
    width: 100%;
  }

  .blog dt span {
    padding: 3px;
    width: 100%;
    font-size: 12px;
    display: block;
    height: 30px;
    margin-bottom: 5px;
  }

  .blog_btn {
    width: 90%;
    height: 60px;
    margin: auto;
    font-size: 20px;
    border-radius: 20px;
  }

  .blog_btn::before {
    width: 33px;
    height: 27px;
    top: 18px;
    right: 18px;
  }
}

@media (max-width: 1050px) {
  main h2::after {
    width: 70px;
    height: 35px;
    top: 0px;
    left: -85px;
  }

  main h2::before {
    width: 36px;
    height: 35px;
    top: 0px;
    right: -42px;
  }
}

/*lesson（blog）
---------------------------------------------------------------------------*/
.lesson {
  width: 100%;
  margin: auto;
  text-align: left;
  background: #bff7f6;
  position: relative;
}

.lesson h2 {
  color: #208dcf;
}

.lesson h2::after {
  width: 60px;
  height: 45px;
  top: 10px;
  left: -84px;
  background-image: url(../images/lesson_icon01.webp);
  filter: brightness(0) saturate(100%) invert(44%) sepia(60%) saturate(621%) hue-rotate(161deg) brightness(97%) contrast(101%);
}

.lesson h2::before {
  width: 49px;
  height: 45px;
  top: 20px;
  right: -60px;
  background-image: url(../images/lesson_icon02.webp);
  filter: brightness(0) saturate(100%) invert(44%) sepia(60%) saturate(621%) hue-rotate(161deg) brightness(97%) contrast(101%);
}


.lesson ul {
  width: 1000px;
  display: grid;
  grid-template-columns: repeat(1fr);
  grid-template-rows: subgrid;
  /* 追加 */
  gap: 20px;
  margin: auto;
  list-style: none;
}

.lesson li {
  border-radius: 10px;
  background: #fff;
}

.lesson dl {}

.lesson dt {
  font-weight: bold;
  color: #fff;
  background: #df4956;
  text-align: center;
  padding: 10px 10px 25px 10px;
  border-radius: 10px;
  font-size: 20px;
  cursor: pointer;
  position: relative;
}

.lesson dt::before {
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-bottom: 0;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-top: 7px solid #fff;
  top: auto;
  bottom: 11px;
  margin: auto;
  right: 0;
  left: 0;
  content: "";
}

.lesson dt:hover::before {
  translate: 0px 5px;
  transition: 0.3s;
}

.lesson dt:hover {
  opacity: 0.8;
  transition: 0.3s;
}

.lesson li:nth-of-type(2) dt {
  background: #e688bb;
}

.lesson li:nth-of-type(3) dt {
  background: #ff931e;
}

.lesson li:nth-of-type(4) dt {
  background: #e9c743;
}

.lesson li:nth-of-type(5) dt {
  background: #4fb462;
}

.lesson li:nth-of-type(6) dt {
  background: #3f98cb;
}

.lesson dd {
  padding: 10px;
  display: none;
}


@media (max-width: 1050px) {
  .lesson ul {
    width: 90%;
    /* 追加 */
    gap: 10px;
  }

  .lesson li {
    border-radius: 10px;
    background: #fff;
  }

  .lesson dt {
    font-size: 16px;
  }
}

@media (max-width: 1050px) {
  .lesson h2::after {
    width: 46px;
    height: 35px;
    top: 0px;
    left: -51px;
  }

  .lesson h2::before {
    width: 36px;
    height: 35px;
    top: 0px;
    right: -35px;
  }
}

/*流れ（flow）
---------------------------------------------------------------------------*/
.flow {
  width: 100%;
  margin: auto;
  text-align: left;
  background: #01a6cd;
  position: relative;
}

.flow h2 {
  color: #fff;
}

.flow h2::after {
  width: 40px;
  height: 45px;
  top: 10px;
  left: -64px;
  background-image: url(../images/flow_icon01.webp);
}

.flow h2::before {
  width: 51px;
  height: 45px;
  top: 20px;
  right: -60px;
  background-image: url(../images/flow_icon02.webp);
}


.flow h3 {
  position: relative;
  margin: 0 auto 50px;
  padding: 1.5rem 2rem;
  border-radius: 10px;
  background: #1e8ece;
  width: auto;
  color: #fff;
  font-size: 24px;
  display: inline-block;
}

.flow h3:before,
.flow h3:after {
  position: absolute;
  content: "";
  border-radius: 50%;
  background: #1e8ece;
}

.flow h3:before {
  bottom: -15px;
  left: 30px;
  width: 30px;
  height: 30px;
}

.flow h3:after {
  bottom: -30px;
  left: 50px;
  width: 15px;
  height: 15px;
}

.flow article {
  width: 1000px;
  margin: auto;
}

.flow dl {
  background: #fff;
  margin-bottom: 40px;
  padding: 30px;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr;
  box-shadow: 5px 5px 0px 0 rgb(29, 130, 146);
}

.flow dl div {
  padding-right: 20px;
}

.flow dt {
  margin-bottom: 30px;
  font-size: 22px;
  position: relative;
  padding: 0px 0px 25px 0;
  font-weight: bold;
}

.flow dt em {
  font-style: normal;
}

.flow dt:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  content: "";
  background-image: -webkit-repeating-linear-gradient(135deg,
      #000,
      #000 1px,
      transparent 2px,
      transparent 5px);
  background-image: repeating-linear-gradient(-45deg,
      #000,
      #000 1px,
      transparent 2px,
      transparent 5px);
  background-size: 7px 7px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flow dt span {
  background: #1e8ece;
  color: #fff;
  padding: 10px;
  margin-right: 20px;
  display: inline-block;
  border-radius: 20px;
}

.flow figure img {
  clip-path: inset(0px 0px 0px 0px round 10px);
}

.flow li {
  text-indent: -2px;
  padding-left: 0px;
  list-style: disc;
  margin-left: 22px;
}

.flow dd li {
  margin-bottom: 10px;
  line-height: 1.5em;
}

.flow dd strong {
  font-size: 20px;
}

.flow dl:nth-of-type(2),
.flow dl:nth-of-type(3) {
  margin-bottom: 80px;
}

.flow dl:last-child {
  margin-bottom: 0px;
}

.flow dl:last-child li {
  margin-bottom: 0px;
}

@media (max-width:1050px) {
  .flow h3 {
    margin: 0 auto 50px;
    padding: 1rem 1.5rem;
    font-size: 16px;
  }

  .flow article {
    width: 90%;
  }

  .flow dl {
    background: #fff;
    margin-bottom: 20px;
    padding: 20px;
    grid-template-columns: 1fr;
  }

  .flow dl div {
    padding-right: 0px;
  }

  .flow dt {
    margin-bottom: 20px;
    font-size: 18px;
    padding: 0px 0px 20px 0;
    display: grid;
    grid-template-columns: 2fr 7fr;
    align-items: center;
  }

  .flow dl:nth-of-type(3) dt {
    display: block;
  }

  .flow dt span {
    background: #1e8ece;
    color: #fff;
    padding: 10px;
    margin-right: 15px;
    display: inline-block;
    border-radius: 20px;
  }

  .flow figure {
    display: none;
  }

  .flow dd strong {
    font-size: 14px;
  }

  .flow dl:nth-of-type(2),
  .flow dl:nth-of-type(3) {
    margin-bottom: 40px;
  }

  .flow dl:last-child {
    margin-bottom: 0px;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1050px) {
  .flow h2::after {
    width: 31px;
    height: 35px;
    top: 0px;
    left: -51px;
  }

  .flow h2::before {
    width: 40px;
    height: 35px;
    top: 0px;
    right: -43px;
  }
}


/*tabの設定
---------------------------------------------------------------------------*/
.tab {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.tab li {
  list-style: none;
  display: table;
  width: 50%;
  font-size: 28px;
  font-weight: bold;
}

.tab li:last-child {
  padding-left: 20px;
}

.tab li span {
  font-size: 14px;
}

.tab li a {
  display: table-cell;
  position: relative;
  background: #eee;
  border-radius: 30px;
  text-align: center;
  width: 100%;
  color: #333;
  text-decoration: none;
  z-index: 1;
  height: 70px;
  vertical-align: middle;
}

.tab li:last-child a {
  border-radius: 30px;
}

/*liにactiveクラスがついた時の形状*/
.tab li.active a {
  background: #1e8ece;
  color: #fff;
  position: relative;
}

/*エリアの表示非表示と形状*/
.area {
  display: none;
  /*はじめは非表示*/
  opacity: 0;
  /*透過0*/
  background: #fff;
  padding: 60px 20px 30px;
  border-radius: 0 0 30px 30px;
}

/*areaにis-activeというクラスがついた時の形状*/
.area.is-active {
  display: block;
  /*表示*/
  animation-name: displayAnime;
  /*ふわっと表示させるためのアニメーション*/
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


@media (max-width:1050px) {
  .tab li {
    font-size: 15px;
    letter-spacing: -0.2px;
  }

  .tab li:last-child {
    padding-left: 10px;
  }

  .tab li span {
    font-size: 14px;
  }

  .tab li a {
    display: table-cell;
    position: relative;
    background: #eee;
    border-radius: 30px;
    text-align: center;
    width: 100%;
    color: #333;
    text-decoration: none;
    z-index: 1;
    height: 60px;
    vertical-align: middle;
  }

  /*エリアの表示非表示と形状*/
  .area {
    background: #fff;
    padding: 30px 10px 15px;
  }
}


/*料金（fee）
---------------------------------------------------------------------------*/
.fee {
  width: 100%;
  background: #fff;
  position: relative;
}

.fee h2 {
  color: #208dcf;
}

.fee h2::after {
  width: 62px;
  height: 45px;
  top: 10px;
  left: -90px;
  background-image: url(../images/fee_icon01.webp);
  filter: brightness(0) saturate(100%) invert(44%) sepia(60%) saturate(621%) hue-rotate(161deg) brightness(97%) contrast(101%);
}

.fee h2::before {
  width: 45px;
  height: 45px;
  top: 20px;
  right: -52px;
  background-image: url(../images/fee_icon02.webp);
  filter: brightness(0) saturate(100%) invert(44%) sepia(60%) saturate(621%) hue-rotate(161deg) brightness(97%) contrast(101%);
}

.fee em {
  margin-top: 20px;
  display: block;
}

.fee article {
  width: 1000px;
  margin: auto;
}

.fee h3 {
  border-bottom: 2px dashed #edc244;
  padding: 0 0 20px 0;
  margin-bottom: 30px;
  font-size: 22px;
}

.fee h3:nth-of-type(2),
.fee h3:nth-of-type(3) {
  margin: 50px auto 30px;
}


.fee .area ul {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: subgrid;
  /* 追加 */
  gap: 30px 20px;
  margin: auto;
  list-style: none;
}

.fee .area .fee_coupon ul {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: subgrid;
  /* 追加 */
  gap: 10px 20px;
  margin: auto;
  list-style: none;
}

.fee .area li {
  box-shadow: 0px 0px 16px -5px #acaaaa;
  border-radius: 20px;
  background: #fff;
  padding-bottom: 10px;
}

.fee .area li p {
  text-align: right;
}

.fee .area dt {
  font-weight: bold;
  color: #fff;
  background: #df4956;
  text-align: center;
  padding: 10px;
  border-radius: 20px 20px 0px 0px;
  font-size: 20px;
  margin-bottom: 5px;
  line-height: 2em;
}

.fee .area dt img {
  border-radius: 20px;
  margin-bottom: 15px;
}

.fee .area li:nth-of-type(2) dt {
  background: #e688bb;
}

.fee #fee2 li:nth-of-type(1) dt {
  background: #ff931e;
}

.fee #fee2 li:nth-of-type(2) dt {
  background: #4fb462;
}

.fee .area dd {
  padding: 35px 25px 15px;
  font-size: 16px;
  letter-spacing: 0.05px;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
}

.fee .area dd:nth-of-type(2) {
  padding: 20px 25px 15px;
  font-size: 16px;
  letter-spacing: 0.05px;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
}

.fee .area dd span {
  font-size: 30px;
  display: inline-block;
  margin-right: 15px;
}

.fee .area dd strong {
  font-size: 55px;
  display: inline-block;
  margin-right: 5px;
  text-shadow: 2px 2px 0px rgba(17, 0, 2, 0.432);
}

.fee .area dd:nth-of-type(2) span {
  font-size: 20px;
  display: inline-block;
  margin-right: 15px;
}

.fee .area dd:nth-of-type(2) strong {
  font-size: 50px;
  display: inline-block;
  margin-right: 5px;
  text-shadow: 2px 2px 0px rgba(17, 0, 2, 0.432);
}

.fee .area dd:nth-of-type(2) li:nth-of-type(2) strong {
  font-size: 42px;
}


.fee .area dd li {
  box-shadow: none;
  border-radius: 0px;
  background: none;
  padding-bottom: 0px;
}

.fee_coupon {
  width: 80%;
  position: relative;
  display: inline-block;
  line-height: 1.2;
  padding: 2rem 3rem;
  border-radius: 0;
  background: #1f8ecf;
  color: #fff;
}

.fee_coupon:before,
.fee_coupon:after {
  position: absolute;
  top: calc(50% - 15px);
  width: 30px;
  height: 30px;
  content: "";
  border-radius: 50%;
  background: #fff;
}

.fee_coupon:before {
  left: -15px;
}

.fee_coupon:after {
  right: -15px;
}


/*---------------------------------------------------------------------------
ここから下は画面幅1050px以下の追加指定
---------------------------------------------------------------------------*/
@media (max-width: 1050px) {

  .fee em {
    margin-top: 20px;
    display: block;
  }

  .fee article {
    width: 90%;
    margin: auto;
  }

  .fee h3 {
    padding: 0 0 10px 0;
    margin-bottom: 20px;
    font-size: 18px;
  }

  .fee h3:nth-of-type(2),
  .fee h3:nth-of-type(3) {
    margin: 25px auto 20px;
  }

  .fee .area ul {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: subgrid;
    gap: 20px 10px;
    margin: auto;
    list-style: none;
    width: 100%;
  }

  .fee .area dt {
    font-weight: bold;
    color: #fff;
    background: #df4956;
    text-align: center;
    padding: 10px;
    border-radius: 20px 20px 0 0;
    font-size: 14px;
    margin-bottom: 5px;
  }

  .fee .area dt img {
    border-radius: 20px;
    margin-bottom: 10px;
  }

  .fee .area dd {
    padding: 15px 15px 5px;
    font-size: 16px;
  }

  .fee .area li p {
    font-size: 12px;
    line-height: 1.4;
  }

  .fee .area dd span {
    font-size: 18px;
    display: inline-block;
    margin-right: 3px;
  }

  .fee .area dd strong {
    font-size: 36px;
    display: inline-block;
    margin-right: 5px;
  }

  .scroll-hint-icon {
    height: 95px !important;
  }

  .fee .area dd:nth-of-type(2) {
    padding: 20px 15px 10px;
    font-size: 16px;
    letter-spacing: 0.05px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
  }

  .fee .area dd:nth-of-type(2) span {
    font-size: 18px;
    display: inline-block;
    margin-right: 15px;
  }

  .fee .area dd:nth-of-type(2) strong {
    font-size: 36px;
    display: inline-block;
    margin-right: 5px;
    text-shadow: 2px 2px 0px rgba(17, 0, 2, 0.432);
  }

  .fee .area dd:nth-of-type(2) li:nth-of-type(2) strong {
    font-size: 30px;
  }


  .fee .area dd li {
    box-shadow: none;
    border-radius: 0px;
    background: none;
    padding-bottom: 0px;
  }

  .fee_coupon {
    width: 100%;
    line-height: 1.2;
    padding: 1rem 1rem;
  }


}

@media (max-width: 1050px) {
  .fee h2::after {
    width: 48px;
    height: 35px;
    top: 0px;
    left: -71px;
  }

  .fee h2::before {
    width: 35px;
    height: 35px;
    top: 0px;
    right: -43px;
  }
}


/*料金部分
---------------------------------------------------------------------------*/
.fee table {
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;
  width: 900px;
  table-layout: fixed;
  font-size: 20px;
}

.fee table strong {
  font-size: 26px;
  font-family: Arial, Helvetica, sans-serif;
}

.fee table tr {
  background-color: #f2f2f2;
  padding: 0.35em;
  border-bottom: 2px solid #fff;
}

.fee table th,
.fee table td {
  padding: 1em 10px 1em 1em;
  border-right: 2px solid #fff;
  font-weight: bold;
}

.fee table thead tr {
  background-color: #1f8ecf;
  color: #fff;
}

.fee table tbody th {
  background: #dafaf8;
  color: #333;
  text-align: left;
}

.fee .txt {
  text-align: left;
}

.fee .price strong {
  color: #b90018;
  font-weight: bold;
}

.fee .non {
  background: #fff;
}

.fee .info {
  margin: 0px auto 30px;
  font-size: 20px;
}

.fee .info a {
  color: #1f8ecf;
}

/*---------------------------------------------------------------------------
ここから下は画面幅1150px以下の追加指定
---------------------------------------------------------------------------*/
@media screen and (max-width: 1050px) {
  .fee table {
    width: 100%;
    font-size: 14px;
  }

  .fee table strong {
    font-size: 16px;
  }

  .fee table tr {
    background-color: #f2f2f2;
    padding: 0.35em;
    border-bottom: 2px solid #fff;
  }

  .fee table th,
  .fee table td {
    padding: 5px;
    border-right: 2px solid #fff;
    font-weight: bold;
  }

  .fee .info {
    margin: 0px auto 30px;
    font-size: 16px;
    letter-spacing: -0.2px;
  }

  .fee table td:first-of-type {
    width: 40%;
  }

  .fee table tbody th {
    letter-spacing: -0.2px;
  }
}

/*ごあいさつ
---------------------------------------------------------------------------*/
.counsel {
  width: 100%;
  margin: auto;
  text-align: left;
  background: #bff7f6;
  position: relative;
}

.counsel article {
  width: 1000px;
  margin: auto;
}

.counsel h2 {
  color: #208dcf;
}

.counsel h2::after {
  width: 68px;
  height: 45px;
  top: 8px;
  left: -85px;
  background-image: url(../images/counsel_icon01.webp);
  filter: brightness(0) saturate(100%) invert(44%) sepia(60%) saturate(621%) hue-rotate(161deg) brightness(97%) contrast(101%);
}

.counsel h2::before {
  width: 43px;
  height: 45px;
  top: 20px;
  right: -51px;
  background-image: url(../images/counsel_icon02.webp);
  filter: brightness(0) saturate(100%) invert(44%) sepia(60%) saturate(621%) hue-rotate(161deg) brightness(97%) contrast(101%);
}

.counsel h4:nth-of-type(2),
.counsel h4:nth-of-type(3) {
  margin-top: 20px;
}

.counsel .info {
  display: grid;
  grid-template-columns: 70% 30%;
  place-items: center;
  font-size: 18px;
  border-radius: 20px;
  background: #fff;
  padding: 30px 30px 0px 30px;
  box-shadow: 5px 5px 0px 0 #0477ac;
}

.counsel p {
  margin-bottom: 20px;
  line-height: 2em;
}

.counsel .info span {
  font-weight: bold;
  background: linear-gradient(90deg, #FA8BFF 0%, #25b8e0 52%, #1cca68 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 24px;
}

.counsel .info figure {
  width: 90%;
  padding-top: 20px;
}

.counsel_area {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: subgrid;
  gap: 40px;
  margin-top: 40px;
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 5px 5px 0px 0 #0477ac;
}

.counsel img {
  margin: auto;
}

.counsel li span {
  font-size: 12px;
}

.counsel li {
  text-indent: -2px;
  padding-left: 0px;
  list-style: disc;
  margin-left: 22px;
}

.counsel dl:nth-of-type(4) dd {
  display: grid;
  grid-template-columns: 1fr 9fr;
  place-items: center;
  width: 100%;
  justify-items: start;
  align-items: start;
  align-content: center;
  padding-bottom: 20px;
  position: relative;
}

.counsel dl:nth-of-type(4) dd strong {
  background: #1e8ece;
  color: #fff;
  padding: 10px;
  margin-right: 0px;
  display: inline-block;
  border-radius: 20px;
}

.counsel dl:nth-of-type(4) dd strong::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 35px;
  width: 2px;
  /* 線の太さ */
  height: 100%;
  /* イベントの高さに応じて調整 */
  background-color: #4a75c7;
  /* 線の色 */
  transform: translateX(-50%);
  z-index: -1;
}

.counsel dl:nth-of-type(4) dd:last-of-type strong::before {
  display: none;
}


.counsel h3 {
  font-size: 24px;
  font-weight: normal;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 20px;
}

.counsel .info_con {
  margin: 10px 0 0 10px;
  color: #B90018;
}

.counsel .info_con a {
  color: #0477ac;
}

.counsel h3:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  content: "";
  background-image: -webkit-repeating-linear-gradient(135deg,
      #000,
      #000 1px,
      transparent 2px,
      transparent 5px);
  background-image: repeating-linear-gradient(-45deg,
      #000,
      #000 1px,
      transparent 2px,
      transparent 5px);
  background-size: 7px 7px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@media (max-width: 1050px) {
  .counsel article {
    width: 90%;
    margin: auto;
  }

  .counsel .info {
    grid-template-columns: 100%;
    font-size: 14px;
    padding: 15px 15px 0px 15px;
  }

  .counsel p {
    line-height: 1.5em;
  }

  .counsel .info span {
    font-size: 20px;
  }

  .counsel .info figure {
    display: none;
  }

  .counsel_area {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin-top: 20px;
    border-radius: 20px;
    padding: 15px;
  }

  .counsel li span {
    font-size: 12px;
  }

  .counsel h3 {
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
  }

  .counsel h4:nth-of-type(2),
  .counsel h4:nth-of-type(3) {
    margin-top: 10px;
  }

  .counsel h2::after {
    width: 53px;
    height: 35px;
    top: 0px;
    left: -67px;
  }

  .counsel h2::before {
    width: 34px;
    height: 35px;
    top: 0px;
    right: -43px;
  }
}

@media (max-width: 860px) {
  .counsel dl:nth-of-type(4) dd {
    grid-template-columns: 2fr 8fr;
  }
}

@media (max-width: 460px) {

  .counsel dl:nth-of-type(4) dd strong {
    padding: 5px;
    border-radius: 10px;
    font-size: 14px;
  }
}

/*よくあるご質問部分
---------------------------------------------------------------------------*/
.faq {
  background-image: linear-gradient(180deg, rgba(1, 166, 205, 1), rgba(0, 4, 41, 1));
}

.faq h2 {
  color: #fff;
}

.faq h2::after {
  width: 24px;
  height: 45px;
  top: 8px;
  left: -44px;
  background-image: url(../images/qa_icon01.webp);
}

.faq h2::before {
  width: 17px;
  height: 45px;
  top: 20px;
  right: -31px;
  background-image: url(../images/qa_icon02.webp);
}

.faq article {
  max-width: 1000px;
  text-align: left;
  margin: auto;
}

.accordion-header {
  padding: 25px 45px 25px 20px;
  margin: 0;
  transition: background .3s ease;
  cursor: pointer;
  position: relative;
  color: #fff;
  text-align: left;
  border-top: 2px solid #fff;
  font-weight: bold;
}

.accordion-header:hover {
  transition: 1s;
  background: #1e8ece;
}

.accordion-header::before,
.accordion-header::after {
  position: absolute;
  content: '';
  top: 1px;
  right: 20px;
  bottom: 0;
  width: 12px;
  height: 2px;
  margin: auto;
  background: #fff;
}

.accordion-header::after {
  transform: rotate(-90deg);
  transition: transform 0.3s;
}

.accordion-header.active::after {
  transform: rotate(0deg);
}

.accordion-header.active {
  color: #fff;
}

.accordion-content {
  display: none;
  color: #fff;
  padding: 20px 20px 30px;
  text-align: left;
  position: relative;
}

.accordion-content span::before {
  position: absolute;
  content: "A";
  width: 45px;
  height: 45px;
  top: 0px;
  left: 0;
  color: #000;
  font-size: 28px;
  background: #fff;
  display: grid;
  place-content: center;
}

.accordion-content span {
  padding: 7px 0 20px 65px;
  position: relative;
  display: block;
}

.accordion-content a {
  font-weight: bold;
  padding: 0 5px 0
}

.accordion-header span {
  padding: 6px 0 0px 65px;
  position: relative;
  display: block;
}

.accordion-header span::before {
  position: absolute;
  content: "Q";
  width: 45px;
  height: 45px;
  top: -2px;
  left: 0;
  color: #fff;
  font-size: 28px;
  background: #1e8ece;
  display: grid;
  place-content: center;
}

/*---------------------------------------------------------------------------
ここから下は画面幅1150px以下の追加指定
---------------------------------------------------------------------------*/
@media screen and (max-width: 1280px) {
  .accordion-content span::before {
    width: 35px;
    height: 35px;
    font-size: 20px;
  }

  .accordion-content span {
    padding: 0px 0px 0px 45px;
  }

  .accordion-header span {
    padding: 0px 0px 0px 45px;
  }

  .accordion-header span::before {
    width: 35px;
    height: 35px;
    font-size: 20px;
  }
}

@media (max-width: 1050px) {
  .faq h2::after {
    width: 18px;
    height: 35px;
    top: 0px;
    left: -34px;
  }

  .faq h2::before {
    width: 14px;
    height: 35px;
    top: 0px;
    right: -26px;
  }
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
  text-align: center;
  /*内容をセンタリング*/
  padding: 150px 0 20px;
  /*ボックス内の余白*/
  background: url(../images/f_bg.webp);
  background-repeat: repeat-x;
  background-size: cover;
  color: #fff;
}

footer div {
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 1000px;
  margin: 0 auto 50px;
}

footer figure {
  width: 100px;
  margin: 0 auto 30px;
}

footer nav {
  width: 100%;
  text-align: center;
}

footer li {
  list-style: none;
  display: inline-block;
  margin-right: 20px;
}

/*リンクテキスト*/
footer a {
  text-decoration: none;
  color: #fff;
  background: linear-gradient(#fff, #fff) 0 100%/0 2px no-repeat;
  transition: background 0.4s;
}

footer a:hover {
  background-size: 100% 2px;
}

/*背景色パターン
---------------------------------------------------------------------------*/
.bg1 {
  width: 100%;
  background: #f2f2f2;
  border-radius: 200px 0 200px 0;
  /*円形にする*/
}

/*---------------------------------------------------------------------------
ここから下は画面幅1150px以下の追加指定
---------------------------------------------------------------------------*/
@media screen and (max-width: 1050px) {

  /*btnの設定
---------------------------------------------------------------------------*/
  .bg1 {
    border-radius: 40px 0 40px 0;
    /*円形にする*/
  }
}

/*その他
---------------------------------------------------------------------------*/
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.color-theme,
.color-theme a {
  color: #ed7d0f !important;
}

.color-check,
.color-check a {
  color: #f00 !important;
}

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

.ws {
  width: 95%;
  display: block;
}

.wl {
  width: 95%;
  display: block;
}

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

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

.mb15 {
  margin-bottom: 15px !important;
}

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

.look {
  display: inline-block;
  padding: 0px 10px;
  background: #eee;
  border: 1px solid #ccc;
  border-radius: 3px;
  margin: 2px 0;
  word-break: break-all;
}

.small {
  font-size: 0.6em;
  letter-spacing: normal !important;
}

.large {
  font-size: 1.8em !important;
}

.block {
  display: block !important;
}

.sh {
  display: block;
}

.pc {
  display: none;
}

.fee_pc {
  display: none !important;
}

.hidden {
  position: absolute;
  top: -9999px;
  left: -9999px;
}

/*---------------------------------------------------------------------------
ここから下は画面幅980px以下の追加指定
---------------------------------------------------------------------------*/
@media screen and (max-width: 1050px) {

  footer {
    padding: 40px 0;
    /*ボックス内の余白*/
  }

  footer div {
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto 40px;
  }

  footer figure {
    width: 100px;
    margin: 0 auto 30px;
  }

  footer nav {
    width: 100%;
    text-align: center;
  }

  footer li {
    list-style: none;
    display: block;
    margin: 0 0 10px;
  }

  footer span {
    font-size: 12px;
  }

  /*リンクテキスト*/
  footer a {
    text-decoration: none;
    color: #fff;
    background: linear-gradient(#fff, #fff) 0 100%/0 2px no-repeat;
    transition: background 0.4s;
  }

  footer a:hover {
    background-size: 100% 2px;
  }
}

/*---------------------------------------------------------------------------
ここから下は画面幅980px以上の追加指定
---------------------------------------------------------------------------*/
@media screen and (min-width: 1050px) {

  /*全体の設定
---------------------------------------------------------------------------*/
  html,
  body {
    font-size: 16px;
    /*基準となるフォントサイズの上書き*/
  }

  /*トップページのメイン画像
---------------------------------------------------------------------------*/
  /*テキストブロック*/
  #mainimg #text {
    width: 50%;
    /*幅*/
  }

  /*menubarブロック設定
---------------------------------------------------------------------------*/
  /*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
  /*その他
---------------------------------------------------------------------------*/
  .ws {
    width: 48%;
    display: inline;
  }

  .sh {
    display: none;
  }

  .pc {
    display: inline-block;
  }

  .fee_pc {
    display: block !important;
  }
}

/*読み込み
---------------------------------------------------------------------------*/
.circle-bg {
  position: fixed;
  z-index: 5;
  /*丸の形*/
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #1f8ecf;
  /*丸のスタート位置と形状*/
  transform: scale(0);
  /*scaleをはじめは0に*/
  right: -50px;
  top: -50px;
  transition: all 0.6s;
  /*0.6秒かけてアニメーション*/
}

.circle-bg.db {
  transform: scale(50);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
}

/***************************************************
 * Generated by SVG Artista on 5/31/2024, 3:15:48 PM
 * MIT license (https://opensource.org/licenses/MIT)
 * W. https://svgartista.net
 **************************************************/
.svg-elem-1 {
  -webkit-animation: animate-svg-fill-1 0.7s ease-in 0.8s both;
  animation: animate-svg-fill-1 0.7s ease-in 0.8s both;
}

@-webkit-keyframes animate-svg-fill-2 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(196, 46, 72);
  }
}

@keyframes animate-svg-fill-2 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(196, 46, 72);
  }
}

.svg-elem-2 {
  -webkit-animation: animate-svg-fill-2 0.7s ease-in 0.9s both;
  animation: animate-svg-fill-2 0.7s ease-in 0.9s both;
}

@-webkit-keyframes animate-svg-fill-3 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(196, 46, 72);
  }
}

@keyframes animate-svg-fill-3 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(196, 46, 72);
  }
}

.svg-elem-3 {
  -webkit-animation: animate-svg-fill-3 0.7s ease-in 1s both;
  animation: animate-svg-fill-3 0.7s ease-in 1s both;
}

@-webkit-keyframes animate-svg-fill-4 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(255, 255, 255);
  }
}

@keyframes animate-svg-fill-4 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(255, 255, 255);
  }
}

.svg-elem-4 {
  -webkit-animation: animate-svg-fill-4 0.7s ease-in 1.1s both;
  animation: animate-svg-fill-4 0.7s ease-in 1.1s both;
}

@-webkit-keyframes animate-svg-fill-5 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(185, 0, 24);
  }
}

@keyframes animate-svg-fill-5 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(185, 0, 24);
  }
}

.svg-elem-5 {
  -webkit-animation: animate-svg-fill-5 0.7s ease-in 1.2000000000000002s both;
  animation: animate-svg-fill-5 0.7s ease-in 1.2000000000000002s both;
}

@-webkit-keyframes animate-svg-fill-6 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(196, 46, 72);
  }
}

@keyframes animate-svg-fill-6 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(196, 46, 72);
  }
}

.svg-elem-6 {
  -webkit-animation: animate-svg-fill-6 0.7s ease-in 1.3s both;
  animation: animate-svg-fill-6 0.7s ease-in 1.3s both;
}

@-webkit-keyframes animate-svg-fill-7 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(196, 46, 72);
  }
}

@keyframes animate-svg-fill-7 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(196, 46, 72);
  }
}

.svg-elem-7 {
  -webkit-animation: animate-svg-fill-7 0.7s ease-in 1.4000000000000001s both;
  animation: animate-svg-fill-7 0.7s ease-in 1.4000000000000001s both;
}

@-webkit-keyframes animate-svg-fill-8 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(26, 18, 16);
  }
}

@keyframes animate-svg-fill-8 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(26, 18, 16);
  }
}

.svg-elem-8 {
  -webkit-animation: animate-svg-fill-8 0.7s ease-in 1.5s both;
  animation: animate-svg-fill-8 0.7s ease-in 1.5s both;
}

@-webkit-keyframes animate-svg-fill-9 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(26, 18, 16);
  }
}

@keyframes animate-svg-fill-9 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(26, 18, 16);
  }
}

.svg-elem-9 {
  -webkit-animation: animate-svg-fill-9 0.7s ease-in 1.6s both;
  animation: animate-svg-fill-9 0.7s ease-in 1.6s both;
}

@-webkit-keyframes animate-svg-fill-10 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(26, 18, 16);
  }
}

@keyframes animate-svg-fill-10 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(26, 18, 16);
  }
}

.svg-elem-10 {
  -webkit-animation: animate-svg-fill-10 0.7s ease-in 1.7000000000000002s both;
  animation: animate-svg-fill-10 0.7s ease-in 1.7000000000000002s both;
}

@-webkit-keyframes animate-svg-fill-11 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(26, 18, 16);
  }
}

@keyframes animate-svg-fill-11 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(26, 18, 16);
  }
}

.svg-elem-11 {
  -webkit-animation: animate-svg-fill-11 0.7s ease-in 1.8s both;
  animation: animate-svg-fill-11 0.7s ease-in 1.8s both;
}

@-webkit-keyframes animate-svg-fill-12 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(26, 18, 16);
  }
}

@keyframes animate-svg-fill-12 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(26, 18, 16);
  }
}

.svg-elem-12 {
  -webkit-animation: animate-svg-fill-12 0.7s ease-in 1.9000000000000001s both;
  animation: animate-svg-fill-12 0.7s ease-in 1.9000000000000001s both;
}

@-webkit-keyframes animate-svg-fill-13 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(26, 18, 16);
  }
}

@keyframes animate-svg-fill-13 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(26, 18, 16);
  }
}

.svg-elem-13 {
  -webkit-animation: animate-svg-fill-13 0.7s ease-in 2s both;
  animation: animate-svg-fill-13 0.7s ease-in 2s both;
}

@-webkit-keyframes animate-svg-fill-14 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(26, 18, 16);
  }
}

@keyframes animate-svg-fill-14 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(26, 18, 16);
  }
}

.svg-elem-14 {
  -webkit-animation: animate-svg-fill-14 0.7s ease-in 2.1s both;
  animation: animate-svg-fill-14 0.7s ease-in 2.1s both;
}

@-webkit-keyframes animate-svg-fill-15 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(26, 18, 16);
  }
}

@keyframes animate-svg-fill-15 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(26, 18, 16);
  }
}

.svg-elem-15 {
  -webkit-animation: animate-svg-fill-15 0.7s ease-in 2.2s both;
  animation: animate-svg-fill-15 0.7s ease-in 2.2s both;
}

@-webkit-keyframes animate-svg-fill-16 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(26, 18, 16);
  }
}

@keyframes animate-svg-fill-16 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(26, 18, 16);
  }
}

.svg-elem-16 {
  -webkit-animation: animate-svg-fill-16 0.7s ease-in 2.3s both;
  animation: animate-svg-fill-16 0.7s ease-in 2.3s both;
}

@-webkit-keyframes animate-svg-fill-17 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(26, 18, 16);
  }
}

@keyframes animate-svg-fill-17 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(26, 18, 16);
  }
}

.svg-elem-17 {
  -webkit-animation: animate-svg-fill-17 0.7s ease-in 2.4000000000000004s both;
  animation: animate-svg-fill-17 0.7s ease-in 2.4000000000000004s both;
}

@-webkit-keyframes animate-svg-fill-18 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(26, 18, 16);
  }
}

@keyframes animate-svg-fill-18 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(26, 18, 16);
  }
}

.svg-elem-18 {
  -webkit-animation: animate-svg-fill-18 0.7s ease-in 2.5s both;
  animation: animate-svg-fill-18 0.7s ease-in 2.5s both;
}

@-webkit-keyframes animate-svg-fill-19 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(26, 18, 16);
  }
}

@keyframes animate-svg-fill-19 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(26, 18, 16);
  }
}

.svg-elem-19 {
  -webkit-animation: animate-svg-fill-19 0.7s ease-in 2.6s both;
  animation: animate-svg-fill-19 0.7s ease-in 2.6s both;
}

@-webkit-keyframes animate-svg-fill-20 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(26, 18, 16);
  }
}

@keyframes animate-svg-fill-20 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(26, 18, 16);
  }
}

.svg-elem-20 {
  -webkit-animation: animate-svg-fill-20 0.7s ease-in 2.7s both;
  animation: animate-svg-fill-20 0.7s ease-in 2.7s both;
}

@-webkit-keyframes animate-svg-fill-21 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(26, 18, 16);
  }
}

@keyframes animate-svg-fill-21 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(26, 18, 16);
  }
}

.svg-elem-21 {
  -webkit-animation: animate-svg-fill-21 0.7s ease-in 2.8s both;
  animation: animate-svg-fill-21 0.7s ease-in 2.8s both;
}

@-webkit-keyframes animate-svg-fill-22 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(26, 18, 16);
  }
}

@keyframes animate-svg-fill-22 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(26, 18, 16);
  }
}

.svg-elem-22 {
  -webkit-animation: animate-svg-fill-22 0.7s ease-in 2.9000000000000004s both;
  animation: animate-svg-fill-22 0.7s ease-in 2.9000000000000004s both;
}

@-webkit-keyframes animate-svg-fill-23 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(26, 18, 16);
  }
}

@keyframes animate-svg-fill-23 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(26, 18, 16);
  }
}

.svg-elem-23 {
  -webkit-animation: animate-svg-fill-23 0.7s ease-in 3s both;
  animation: animate-svg-fill-23 0.7s ease-in 3s both;
}

@-webkit-keyframes animate-svg-fill-24 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(26, 18, 16);
  }
}

@keyframes animate-svg-fill-24 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(26, 18, 16);
  }
}

.svg-elem-24 {
  -webkit-animation: animate-svg-fill-24 0.7s ease-in 3.1000000000000005s both;
  animation: animate-svg-fill-24 0.7s ease-in 3.1000000000000005s both;
}

@-webkit-keyframes animate-svg-fill-25 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(26, 18, 16);
  }
}

@keyframes animate-svg-fill-25 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(26, 18, 16);
  }
}

.svg-elem-25 {
  -webkit-animation: animate-svg-fill-25 0.7s ease-in 3.2s both;
  animation: animate-svg-fill-25 0.7s ease-in 3.2s both;
}

@-webkit-keyframes animate-svg-fill-26 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(26, 18, 16);
  }
}

@keyframes animate-svg-fill-26 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(26, 18, 16);
  }
}

.svg-elem-26 {
  -webkit-animation: animate-svg-fill-26 0.7s ease-in 3.3s both;
  animation: animate-svg-fill-26 0.7s ease-in 3.3s both;
}

@-webkit-keyframes animate-svg-fill-27 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(26, 18, 16);
  }
}

@keyframes animate-svg-fill-27 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(26, 18, 16);
  }
}

.svg-elem-27 {
  -webkit-animation: animate-svg-fill-27 0.7s ease-in 3.4000000000000004s both;
  animation: animate-svg-fill-27 0.7s ease-in 3.4000000000000004s both;
}

@-webkit-keyframes animate-svg-fill-28 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(26, 18, 16);
  }
}

@keyframes animate-svg-fill-28 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(26, 18, 16);
  }
}

.svg-elem-28 {
  -webkit-animation: animate-svg-fill-28 0.7s ease-in 3.5s both;
  animation: animate-svg-fill-28 0.7s ease-in 3.5s both;
}

@-webkit-keyframes animate-svg-fill-29 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(28, 19, 17);
  }
}

@keyframes animate-svg-fill-29 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(28, 19, 17);
  }
}

.svg-elem-29 {
  -webkit-animation: animate-svg-fill-29 0.7s ease-in 3.6000000000000005s both;
  animation: animate-svg-fill-29 0.7s ease-in 3.6000000000000005s both;
}

@-webkit-keyframes animate-svg-fill-30 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(28, 19, 17);
  }
}

@keyframes animate-svg-fill-30 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(28, 19, 17);
  }
}

.svg-elem-30 {
  -webkit-animation: animate-svg-fill-30 0.7s ease-in 3.7s both;
  animation: animate-svg-fill-30 0.7s ease-in 3.7s both;
}

@-webkit-keyframes animate-svg-fill-31 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(28, 19, 17);
  }
}

@keyframes animate-svg-fill-31 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(28, 19, 17);
  }
}

.svg-elem-31 {
  -webkit-animation: animate-svg-fill-31 0.7s ease-in 3.8s both;
  animation: animate-svg-fill-31 0.7s ease-in 3.8s both;
}

@-webkit-keyframes animate-svg-fill-32 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(28, 19, 17);
  }
}

@keyframes animate-svg-fill-32 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(28, 19, 17);
  }
}

.svg-elem-32 {
  -webkit-animation: animate-svg-fill-32 0.7s ease-in 3.9000000000000004s both;
  animation: animate-svg-fill-32 0.7s ease-in 3.9000000000000004s both;
}


/*モーダル
---------------------------------------------------------------------------*/
/* モーダルを開くボタン */
.modal__trigger {
  cursor: pointer;
  color: #01a6cd;
  text-decoration: underline;
  display: table;
  margin: auto;
}

.modal__trigger:hover {
  color: #151e2f;
}

/* モーダル本体 */
.modal__wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
}

.modal__layer {
  height: 100%;
  background: rgba(50, 50, 50, .85);
  cursor: pointer;
}

.modal__container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(calc(100% - 10%), 1000px);
  background: #fff;
  border: 4px solid #1f8ecf;
}

.modal__inner {
  position: relative;
  overflow-y: scroll;
  height: 100%;
  padding: 20px 20px 20px;
}

/* モーダルを閉じるボタン */
.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: #555555;
  cursor: pointer;
  transition: opacity .6s;
}

.modal__close:hover {
  opacity: .6;
}

.modal__close:before,
.modal__close:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1px;
  background: #fff;
  content: '';
}

/* モーダルを閉じるボタン */
.modal__close2 {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  color: #ffffff;
  border-radius: 50px;
  width: 240px;
  height: 60px;
  transition: 0.3s;
  background-color: #555555;
  font-weight: bold;
  font-size: 20px;
  margin: 40px auto 0;
  cursor: pointer;
}

.modal__close2:hover {
  transition: .3s;
  opacity: 0.8;
}

.modal__close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal__close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* モーダル内のコンテンツ */
.modal__content {}

.modal__content ul {
  width: 80%;
  text-align: left;
  margin: auto;
}

.modal__content li {
  text-indent: -2px;
  padding-left: 0px;
  list-style: disc;
  margin-left: 22px;
  margin-bottom: 5px;
}

.modal__text {
  margin-top: 30px;
  line-height: 2.875;
}

@media screen and (max-width:1050px) {
  .modal__close2 {
    width: 200px;
    height: 45px;
    font-size: 16px;
    margin: 15px auto 0;
  }

  .modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 44px;
    height: 44px;
    background: #555555;
    cursor: pointer;
    transition: opacity .6s;
  }

  .modal__content ul {
    width: 100%;
  }
}


/*privacy
---------------------------------------------------------------------------*/
.privacy {
  width: 800px;
  margin: auto;
  text-align: left;
}

.privacy h2 {
  background: #1f8ecf;
  color: #fff;
  position: relative;
  z-index: 1;
  margin: 0 auto 50px;
  font-size: 26px;
  width: 800px;
  padding: 20px 0;
  text-align: center;
}

.privacy p {
  margin: 0 auto 70px;
}

.privacy dl {
  margin: 0 auto 50px;
}

.privacy dl:last-of-type {
  margin: 0;
}

.privacy dt {
  border-bottom: 1px solid #8b8b8b;
  padding: 0px 20px 15px;
  font-size: 22px;
  font-weight: bold;
}

.privacy dd {
  padding: 20px;
}

@media screen and (max-width:1050px) {
  .privacy {
    width: 100%;
    margin: auto;
  }

  .privacy h2 {
    margin: 0 auto 30px;
    font-size: 14px;
    width: 160px;
    padding: 10px 0px;
  }

  .privacy p {
    margin: 0 auto 40px;
  }

  .privacy dl {
    margin: 0 auto 20px;
  }

  .privacy dl:last-of-type {
    margin: 0;
  }

  .privacy dt {
    border-bottom: 1px solid #8b8b8b;
    padding: 0px 0px 10px;
    font-size: 16px;
    font-weight: bold;
  }

  .privacy dd {
    padding: 10px;
  }
}

.fadeInUpTrigger {
  opacity: 0;
}


/*初回ポップアップ
---------------------------------------------------------------------------*/
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.5s ease-out;
}

.popup-content {
  width: 90%;
  max-width: 400px;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  text-align: center;
  animation: slideIn 0.5s ease-out;
}

.popup-content h2 {
  margin-top: 0;
  font-size: 1.5rem;
}

.popup-content button {
  margin-top: 1.5rem;
  padding: 0.8rem 2rem;
  background: #333;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.popup-content button:hover {
  background: #777;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateY(20px);
  }

  to {
    transform: translateY(0);
  }
}

/*波
---------------------------------------------------------------------------*/
.wave {
  position: relative;
  height: 150px;
  /*何も表示されない場合は各波の親要素に高さを持たせましょう。*/
  /*背景を塗りつぶして重ねた波を表現したい場合は、波を描画する親要素に波と同じ背景色を設定しましょう。*/
}

canvas {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}


/*雲
---------------------------------------------------------------------------*/
#cloud {
  width: 100%;
  height: 300px;
  background: url(../images/clouds.webp);
  animation: cloudmove 20s linear infinite;
  -webkit-animation: cloudmove 20s linear infinite;
  -moz-animation: cloudmove 20s linear infinite;
  position: absolute;
  top: 0;
  left: 0;
}

@keyframes cloudmove {
  0% {
    background-position: 0 0;
  }

  25% {
    background-position: 200px 5px;
  }

  50% {
    background-position: 400px 0;
  }

  75% {
    background-position: 600px 5px;
  }

  100% {
    background-position: 800px 0;
  }
}

@-webkit-keyframes cloudmove {
  0% {
    background-position: 0 0;
  }

  25% {
    background-position: 200px 5px;
  }

  50% {
    background-position: 400px 0;
  }

  75% {
    background-position: 600px 5px;
  }

  100% {
    background-position: 800px 0;
  }
}

@-moz-keyframes cloudmove {
  0% {
    background-position: 0 0;
  }

  25% {
    background-position: 200px 5px;
  }

  50% {
    background-position: 400px 0;
  }

  75% {
    background-position: 600px 5px;
  }

  100% {
    background-position: 800px 0;
  }
}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {
  display: block;
}

/*ボタンの設定*/
.pagetop a {
  display: block;
  text-decoration: none;
  text-align: center;
  z-index: 4;
  position: fixed;
  /*スクロールに追従しない(固定で表示)為の設定*/
  right: 20px;
  /*右からの配置場所指定*/
  bottom: 50px;
  /*下からの配置場所指定*/
  color: #fff;
  /*文字色*/
  font-size: 1.2em;
  /*文字サイズ*/
  background: url(../images/ss_top.webp);
  width: 80px;
  line-height: 80px;
  background-size: 80px;
}

.pagetop a:hover {
  background: url(../images/ss_top_hover.webp);
  width: 80px;
  line-height: 80px;
  background-size: 80px;
}

.pagetop.db {
  display: none;
}

@media (max-width: 500px) {
  .pagetop a {
    right: 10px;
    bottom: 20px;
    width: 60px;
    line-height: 60px;
    background-size: 60px;
  }

  .pagetop a:hover {
    background: url(../images/ss_top_hover.webp);
    width: 80px;
    line-height: 80px;
    background-size: 80px;
  }
}



/*タイトルアイコン動き
---------------------------------------------------------------------------*/
@keyframes moveXY {
  0% {
    -webkit-transform: translate(10px, -10px);
    transform: translate(10px, -10px);
  }

  50% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  100% {
    -webkit-transform: translate(10px, -10px);
    transform: translate(10px, -10px);
  }
}

@-webkit-keyframes moveXY {
  0% {
    -webkit-transform: translate(10px, -10px);
    transform: translate(10px, -10px);
  }

  50% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  100% {
    -webkit-transform: translate(10px, -10px);
    transform: translate(10px, -10px);
  }
}

@-moz-keyframes moveXY {
  0% {
    -webkit-transform: translate(10px, -10px);
    transform: translate(10px, -10px);
  }

  50% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  100% {
    -webkit-transform: translate(10px, -10px);
    transform: translate(10px, -10px);
  }
}


@keyframes moveYX {
  0% {
    -webkit-transform: translate(10px, 10px);
    transform: translate(10px, 10px);
  }

  50% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  100% {
    -webkit-transform: translate(10px, 10px);
    transform: translate(10px, 10px);
  }
}

@-webkit-keyframes moveYX {
  0% {
    -webkit-transform: translate(10px, 10px);
    transform: translate(10px, 10px);
  }

  50% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  100% {
    -webkit-transform: translate(10px, 10px);
    transform: translate(10px, 10px);
  }
}

@-moz-keyframes moveYX {
  0% {
    -webkit-transform: translate(10px, 10px);
    transform: translate(10px, 10px);
  }

  50% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  100% {
    -webkit-transform: translate(10px, 10px);
    transform: translate(10px, 10px);
  }
}


/*魚1
---------------------------------------------------------------------------*/


.pond {
  width: 100vw;
  height: 200px;
  position: relative;
  overflow: hidden;
  bottom: -35px;
  left: 0;
}

.pond img {
  position: absolute;
  bottom: -70px;
  left: 50%;
  transform: rotateZ(90deg);
  animation: fishAnime2 4s 2s linear infinite;
  width: 70px;
}

.pond img:nth-of-type(2) {
  position: absolute;
  bottom: -70px;
  right: 20%;
  transform: rotateZ(90deg);
  animation: fishAnime 9s 3s linear infinite;
}

.pond img:nth-of-type(3) {
  bottom: -70px;
  left: 20%;
  transform: rotateZ(90deg);
  animation: fishAnime 10s 4s linear infinite;
}

.pond img:nth-of-type(4) {
  bottom: -70px;
  right: 10%;
  left: auto;
  transform: rotateZ(90deg);
  animation: fishAnime3 3.5s 5s linear infinite;
}

@media (max-width: 500px) {
  .pond img {
    width: 50px;
  }
}

@keyframes fishAnime {
  85% {
    right: 80px;
    bottom: -100px;
    transform: rotateZ(90deg);
  }

  90% {
    bottom: 105px;
  }

  95% {
    bottom: 120px;
  }

  100% {
    right: 100px;
    bottom: -100px;
    transform: rotateZ(-90deg);
  }
}

@keyframes fishAnime2 {
  33% {
    left: 80px;
    bottom: -100px;
    transform: rotateZ(90deg);
  }

  50% {
    bottom: 105px;
  }

  75% {
    bottom: 120px;
  }

  100% {
    left: 100px;
    bottom: -100px;
    transform: rotateZ(-90deg);
  }
}

@keyframes fishAnime3 {
  33% {
    right: 80px;
    bottom: -100px;
    transform: rotateZ(90deg);
  }

  50% {
    bottom: 105px;
  }

  75% {
    bottom: 120px;
  }

  100% {
    right: 100px;
    bottom: -100px;
    transform: rotateZ(-90deg);
  }
}

/*下層ページ
---------------------------------------------------------------------------*/
.l-main {
  padding: 200px 0 0;
}

@media (max-width:1050px) {
  .l-main {
    padding: 100px 0 0;
  }
}

/*利用規約（terms）
---------------------------------------------------------------------------*/
.terms {
  width: 1000px;
  margin: auto;
  text-align: left;
  position: relative;
}

.terms span {
  width: 150px;
  margin: auto;
  height: 50px;
  display: grid;
  place-content: center;
  border-radius: 20px;
  background-color: #0477ac;
  color: #fff;
}

.terms h2 {
  color: #208dcf;
  margin-bottom: 20px;
}

.terms h2::after,
.terms h2::before {
  display: none;
}

.terms div {
  margin: 0 auto 60px
}

.terms h3 {
  position: relative;
  margin: 0 auto 50px;
  padding: 1.5rem 2rem;
  border-radius: 10px;
  background: #1e8ece;
  width: auto;
  color: #fff;
  font-size: 24px;
  display: inline-block;
}

.terms .terms_nav {
  list-style: none;
  width: 900px;
  display: grid;
  grid-template-columns: repeat(3, 4fr);
  gap: 10px;
  margin: 60px auto 80px;
  text-align: center;
  font-size: 18px;
}

.terms .terms_nav a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  display: inline;
}

.terms .terms_nav a::after {
  content: "";
  width: 20px;
  height: 16px;
  background: url(../images/arrow.webp);
  filter: brightness(0) saturate(100%);
  position: absolute;
  background-size: 20px;
  top: 0;
  left: -28px;
  transform: rotate(90deg);
}

.terms .terms_nav a:hover {
  color: #0477ac;
  text-decoration: underline;
}

.terms h3:before,
.terms h3:after {
  position: absolute;
  content: "";
  border-radius: 50%;
  background: #1e8ece;
}

.terms h3:before {
  bottom: -15px;
  left: 30px;
  width: 30px;
  height: 30px;
}

.terms h3:after {
  bottom: -30px;
  left: 50px;
  width: 15px;
  height: 15px;
}

.terms aside li {
  text-indent: -2px;
  padding-left: 0px;
  list-style: disc;
  margin-left: 22px;
}

@media (max-width:1050px) {
  .terms {
    width: 90%;
  }

  .terms div {
    margin: 0 auto 40px
  }

  .terms .terms_nav {
    list-style: none;
    width: 90%;
    gap: 0px;
    margin: 30px 0 20px 10%;
    text-align: center;
    font-size: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
  }

  .terms .terms_nav li {
    margin: 0 35px 10px 0
  }


  .terms h3 {
    position: relative;
    margin: 0px auto 40px;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    background: #1e8ece;
    width: auto;
    color: #fff;
    font-size: 18px;
    display: inline-block;
  }

  .terms aside li {
    text-indent: -2px;
    padding-left: 0px;
    list-style: disc;
    margin-left: 22px;
  }
}