@charset "UTF-8";
/* Scss Document */
html {
  height: 100%;
  width: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
  /* リンクスクロール時に高さ合わせ */
  scroll-snap-type: y proximity;
  scroll-padding-top: calc((var(--headerHeight, 50px)));
}

@media screen and (max-width: 640px) {
  html {
    font-size: 12px;
  }
}
body {
  background-color: #fff !important;
  margin: 0;
  min-height: 100%;
  font-family: "M PLUS 1p", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  top: 0;
  height: 100%;
  width: 100%;
  font-weight: 400;
  line-height: 1.5rem;
  font-feature-settings: "palt";
  color: #333;
  text-align: center;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  text-align: left;
}

figure {
  margin: 0;
}

section {
  position: relative;
  padding: 60px 0;
}

a {
  text-decoration: none;
  display: block;
  cursor: pointer;
}

a:hover {
  opacity: 0.7;
  text-decoration: none;
}

i {
  font-style: normal;
}

.bg-yellow {
  background-image: url(../img/bg_grid.jpg);
  background-repeat: repeat;
}

.bg-gray {
  background-color: #e4e4e4;
}

.bg-lightblue {
  background-color: #c8e7fa;
}

ul li {
  list-style-type: none;
}

.sp-none {
  display: inline;
}

.pc-none {
  display: none;
}

@media screen and (max-width: 640px) {
  .sp-none {
    display: none;
  }
  .pc-none {
    display: inline;
  }
}
.btn:hover {
  color: inherit;
  background-color: #ffd048;
  border-color: #0039a0;
}

/* ===============================================
#ナビゲーション
=============================================== */
.navbar-brand {
  height: 70px;
}

.navbar-brand img {
  height: 60px;
}

.hd_contact {
  justify-content: center;
}

.hd_contact button {
  background-color: #ffed3f;
  border: 4px solid #152c75;
  font-weight: bold;
  border-radius: 9999px;
  padding-left: 1.5em;
  padding-right: 1.5em;
}

/* ===============================================
#メインビジュアル
=============================================== */
/* ===============================================
#Call to Action
=============================================== */
.cta {
  text-align: center;
  padding: 3em 0;
}

.cta-btn {
  background: #e3261e;
  color: #fff;
  border: none;
  padding: 20px 100px;
  font-size: 36px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
  box-shadow: 0 0 0 6px #fde02a, 0 8px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
  position: relative;
  top: 0;
}

.cta-btn:hover {
  background: #999;
  top: 2px;
}

.cta-btn2 {
  background: #fde02a;
  color: #000;
  border: none;
  padding: 18px 50px;
  font-size: 28px;
  border-radius: 9999px;
  cursor: pointer;
  font-weight: 700;
  box-shadow: 0 0 0 6px #152c75, 0 8px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
  position: relative;
  top: 0;
}

.cta-btn2:hover {
  background: #ffd048;
  top: 2px;
}

@media screen and (max-width: 640px) {
  .cta {
    padding: 1em 0;
  }
  .cta-btn {
    font-size: 2rem;
    padding: 20px 20px;
    width: 90%;
  }
}
/* ===============================================
#見出し
=============================================== */
h2 {
  display: inline-block;
  width: 80%;
  padding: 1em;
  font-size: 2rem;
  color: #555555;
  background: #ffeb3b;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.1);
  /* transform: rotate(1deg); */
  margin-bottom: 50px;
  text-align: center;
}

h4 {
  text-align: left;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 0.4em 0.2em 0.4em 0;
  border-bottom: 5px dotted #e3261e;
  color: #e3261e;
  margin-bottom: 10px;
  margin-top: 40px;
}

/* ===============================================
#テキスト背景画像
=============================================== */
.bg-img01 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../img/bg_img01.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 1em;
  color: #fff;
}

/* ===============================================
#佐藤ママとは
=============================================== */
.whatis_button {
  position: absolute;
  bottom: 7em;
  right: 3em;
}

@media screen and (max-width: 1142px) {
  .whatis_button {
    width: 150px;
    bottom: 4em;
    right: 2em;
  }
}
@media screen and (max-width: 640px) {
  .whatis_button {
    width: 100px;
    bottom: 2em;
    right: 1em;
  }
}
/* ===============================================
#youtube
=============================================== */
.youtube {
  width: 100%;
  aspect-ratio: 16/9;
}

.youtube iframe {
  width: 100%;
  height: 100%;
}

/* ===============================================
#概要テーブル
=============================================== */
.tbl_outline {
  width: 100%;
  background-color: #fff;
}

.tbl_outline tr {
  border-top: 2px solid #152c75;
  border-bottom: 2px solid #152c75;
}

.tbl_outline th {
  text-align: center;
  padding: 20px 20px;
}

.tbl_outline td {
  padding: 20px 0;
  font-size: 1.4em;
  line-height: 1.5em;
}

@media screen and (max-width: 640px) {
  .tbl_outline {
    width: 100%;
    line-height: 1.2em;
  }
  .tbl_outline th {
    border-top: 4px solid #fde02a;
    border-bottom: none;
    padding-bottom: 0;
  }
  .tbl_outline td {
    text-align: center;
    padding: 10px;
    border-bottom: none;
    border-top: none;
  }
  .tbl_outline th,
  .tbl_outline td {
    display: block;
    width: 100%;
  }
  .tbl_special td {
    display: block;
    width: 100%;
  }
  .tbl_special td:first-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .tbl_special td:last-child {
    padding-top: 0;
  }
}
/* ===============================================
#参加者の声
=============================================== */
.voice_box {
  background-color: #fff;
  border-radius: 15px;
  text-align: center;
  padding: 14px 20px;
  margin-top: 30px;
}

.voice_box img {
  max-width: 80%;
  margin-bottom: 14px;
}

.voice_box p:first-of-type {
  font-weight: bold;
}

.voice_box p:nth-of-type(2) {
  text-align: justify;
}

/* ===============================================
#よくあるご質問
=============================================== */
#faq {
  font-size: 1.2rem;
  text-align: left;
}

.accordion-header {
  position: relative;
  padding: 16px 10% 16px 80px;
  background-color: #ffdb67;
  background-size: 34px auto;
  border-top: #fff 1px solid;
}

.accordion-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 100%;
  background: url(../img/q.png) #152c75;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30px;
  color: #fff;
  font-weight: bold;
  font-size: 2.5em;
}

.accordion-header::after {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background-image: url(../img/btn_plus.svg);
  background-size: cover;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.accordion-header:not(.collapsed)::after {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background-image: url(../img/btn_minus.svg);
  background-size: cover;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

/* ===============================================
#お問い合わせ
=============================================== */
.contact_box {
  width: 100%;
  background-color: #fff;
  border: 4px solid #152c75;
  border-radius: 10px;
  padding: 1rem;
  height: 920px;
}

#parentframe {
  height: 880px;
}

/* ===============================================
#フッター
=============================================== */
#totop {
  width: 20px;
  height: 20px;
  position: fixed;
  left: 50%;
  bottom: 10px;
  border-left: 1px solid #666;
  border-bottom: 1px solid #666;
  transform: rotate(135deg);
}

footer {
  width: 100%;
  text-align: center;
  padding: 1em;
  text-align: center;
  background-color: #152c75;
  color: #fff;
}/*# sourceMappingURL=custom.css.map */