@charset "UTF-8";
/* ===============================================
# mixins
=============================================== */
/* ===============================================
# color
=============================================== */
/* ===============================================
# common
=============================================== */
body {
  font-size: 16px;
  line-height: 1.6;
  color: #000;
  font-family: "M PLUS 1", "Noto Sans JP", sans-serif;
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

img {
  width: 100%;
}

a {
  text-decoration: none;
  color: #000;
  display: block;
  line-height: 1;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media (max-width: 767px) {
  .container {
    width: 86%;
  }
}

.clear::after {
  content: "";
  clear: both;
  display: block;
}
@media (max-width: 767px) {
  .clear::after {
    content: none;
  }
}

.sp-none {
  display: block;
}
@media (max-width: 767px) {
  .sp-none {
    display: none;
  }
}

.pc-none {
  display: none;
}
@media (max-width: 767px) {
  .pc-none {
    display: block;
  }
}

.br-tab {
  display: block;
}
@media (min-width: 1440px) {
  .br-tab {
    display: none;
  }
}

/* ===============================================
 button
=============================================== */
.btn {
  background: #39B9EB;
  border-radius: 50px;
  text-align: center;
  font-weight: bold;
  display: inline-block;
  text-decoration: none;
  color: #fff;
  outline: none;
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
  -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
}
.btn:hover {
  background: #fff;
  color: #39B9EB;
  border: 3px solid #39B9EB;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-dl {
  padding: 1em;
  font-size: 24px;
}
@media (min-width: 1440px) {
  .btn-dl {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .btn-dl {
    font-size: 20px;
  }
}

.btn-dl-min {
  font-size: 24px;
}
@media (min-width: 1000px) and (max-width: 1439px) {
  .btn-dl-min {
    font-size: 20px;
    margin-top: 15px;
  }
}
@media (min-width: 768px) and (max-width: 999px) {
  .btn-dl-min {
    font-size: 16px;
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .btn-dl-min {
    width: 60%;
  }
}

.attention {
  font-size: 10px;
  margin: 5px 0;
}
@media (min-width: 1440px) {
  .attention {
    margin-top: 0;
    font-size: 12px;
  }
}

.btn-point {
  position: relative;
  text-align: center;
  display: block;
  text-decoration: none;
  color: #fff;
  outline: none;
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
  border-radius: 0 0 10px 10px;
  font-size: 20px;
  line-height: 20px;
}
.btn-point::after {
  position: absolute;
  content: url(../img/arrow-white.png);
  right: 20%;
  top: 54%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.btn-point:hover::after {
  content: url(../img/arrow-white.png);
}

/* ===============================================
# header
=============================================== */
header {
  background-color: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100px;
  z-index: 1000;
}
@media (max-width: 767px) {
  header {
    height: 60px;
  }
}

.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.logo {
  width: 105px;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 768px) and (max-width: 999px) {
  .logo {
    width: 80px;
  }
}
@media (max-width: 767px) {
  .logo {
    width: 80px;
    padding-top: 10px;
  }
}

.header-nav {
  margin-left: auto;
  margin-right: 0;
}

.header-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
@media (max-width: 767px) {
  .header-nav ul {
    display: block;
  }
}

.header-nav-item a {
  margin: 1rem 0 0;
  padding: 1rem;
  font-weight: bold;
  line-height: 1.2;
}
.header-nav-item a:hover {
  color: #39B9EB;
}
@media (min-width: 1000px) and (max-width: 1439px) {
  .header-nav-item a {
    font-size: 14px;
    margin: 0;
  }
}
@media (min-width: 768px) and (max-width: 999px) {
  .header-nav-item a {
    font-size: 10px;
    margin: 0;
  }
}
@media (max-width: 767px) {
  .header-nav-item a {
    font-size: 16px;
  }
}
.header-nav-item + .header-nav-item {
  margin-left: 20px;
}
@media (min-width: 1440px) {
  .header-nav-item + .header-nav-item {
    margin-left: 40px;
  }
}
@media (max-width: 767px) {
  .header-nav-item + .header-nav-item {
    margin-left: 0;
  }
}

.hamburger {
  display: none;
}
@media (max-width: 767px) {
  .hamburger {
    /*ハンバーガーボタン*/
    display: block;
    position: fixed;
    z-index: 3;
    right: 13px;
    top: 12px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .hamburger span {
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 6px;
    background: #555;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }

  .hamburger span:nth-child(1) {
    top: 10px;
  }

  .hamburger span:nth-child(2) {
    top: 20px;
  }

  .hamburger span:nth-child(3) {
    top: 30px;
  }

  /* nav open時 */
  .hamburger.active {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    width: 0px;
  }

  .hamburger.active span:nth-child(1),
.hamburger.active span:nth-child(3) {
    background: #fff;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
  }

  .hamburger.active span:nth-child(1) {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }

  .hamburger.active span:nth-child(3) {
    -webkit-transform: translateY(-16px) rotate(90deg);
    transform: translateY(-16px) rotate(90deg);
  }

  nav.globalMenuSp {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
    text-align: center;
    width: 100%;
    opacity: 0;
    -webkit-transition: opacity 0.6s ease, visibility 0.6s ease;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    visibility: hidden;
  }

  nav.globalMenuSp ul {
    margin: 0 auto;
    padding: 0;
    width: 100%;
  }

  nav.globalMenuSp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    -webkit-transition: 0.4s all;
    transition: 0.4s all;
  }

  nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
  }

  nav.globalMenuSp ul li:hover {
    background: #ddd;
  }

  nav.globalMenuSp ul li a {
    display: inline-block;
    color: #fff;
    padding: 1rem;
    text-decoration: none;
    margin: 1rem auto;
  }

  nav.globalMenuSp.active {
    opacity: 100;
    visibility: visible;
  }
}
/* ===============================================
 section共有クラス
=============================================== */
.section-style {
  padding: 120px 0;
}
@media (max-width: 767px) {
  .section-style {
    padding: 80px 0;
  }
}

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

.section-title {
  text-align: center;
  padding: 0 100px 5px;
  margin-bottom: 60px;
  display: inline-block;
  text-align: center;
  color: #fff;
  font-family: "Mochiy Pop P One", serif;
  font-size: 48px;
  background: url(../img/section-title-senro.png) no-repeat center bottom/contain;
  letter-spacing: 4px;
  text-shadow: 2px 2px 2px #000, -2px 2px 2px #000, 2px -2px 2px #000, -2px -2px 2px #000, 2px 0px 2px #000, 0px 2px 2px #000, -2px 0px 2px #000, 0px -2px 2px #000;
  position: relative;
}
.section-title::after {
  position: absolute;
  bottom: 0;
  right: 0%;
  display: inline-block;
  content: url(../img/train-icon-black.png);
}
@media (min-width: 768px) and (max-width: 999px) {
  .section-title {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .section-title {
    font-size: 24px;
    margin-bottom: 20px;
    padding: 0 0 5px;
  }
  .section-title::after {
    content: none;
  }
}
.section-title img {
  width: 60px;
}
@media (max-width: 767px) {
  .section-title img {
    width: 20px;
  }
}

.about-title {
  line-height: 1.4;
  padding-bottom: 20px;
  margin-bottom: 80px;
}
.about-title::after {
  position: absolute;
  bottom: 5%;
  right: 1%;
  display: inline-block;
  content: url(../img/train-icon-black.png);
}
@media (max-width: 767px) {
  .about-title {
    padding-bottom: 10px;
  }
  .about-title::after {
    content: none;
  }
}

/* ===============================================
# top
=============================================== */
#top {
  background: #FDF101 url(../img/fv-pc-bg.png) no-repeat center center/contain;
  width: 100%;
  height: 650px;
  padding-top: 20px;
  margin-top: 100px;
}
@media (min-width: 1000px) and (max-width: 1439px) {
  #top {
    padding-top: 5%;
  }
}
@media (min-width: 768px) and (max-width: 999px) {
  #top {
    padding-top: 5%;
    margin-top: 80px;
  }
}
@media (max-width: 767px) {
  #top {
    background: #FDF101 url(../img/fv-sp-bg.png) no-repeat center center/contain;
    height: 500px;
    margin-top: 60px;
  }
}

.fv {
  height: auto;
  text-align: center;
}
.fv .fv-momo {
  z-index: 10;
  width: 500px;
}
@media (min-width: 1440px) {
  .fv .fv-momo {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .fv .fv-momo {
    width: 300px;
    margin-top: 10%;
  }
}

.fv-copyright {
  margin-top: 25px;
}
@media (max-width: 767px) {
  .fv-copyright {
    margin-top: 20px;
    font-size: 12px;
  }
}

.to-top {
  z-index: 900;
  width: 7%;
  position: fixed;
  right: 3%;
  bottom: 6%;
  opacity: 0;
  visibility: hidden;
}
@media (min-width: 768px) and (max-width: 999px) {
  .to-top {
    width: 10%;
  }
}
@media (max-width: 767px) {
  .to-top {
    width: 20%;
    bottom: 10%;
  }
}

.active {
  opacity: 1;
  visibility: visible;
}

/* ===============================================
# about & point
=============================================== */
#about {
  background: #fff url(../img/bg-about.png) no-repeat center center/cover;
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  #about {
    background: none;
  }
}

@media (max-width: 767px) {
  .about-wrapper {
    background: #fff url(../img/bg-sp-basic.png) no-repeat center center;
  }
}

.about-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 767px) {
  .about-cards {
    display: block;
  }
}

.about-card {
  width: 320px;
  height: 260px;
  background: #fff;
  position: relative;
  border-radius: 15px;
}
.about-card + .about-card {
  margin-left: 40px;
}
@media (min-width: 1000px) and (max-width: 1439px) {
  .about-card {
    height: 240px;
  }
}
@media (min-width: 768px) and (max-width: 999px) {
  .about-card {
    height: 220px;
  }
}
@media (max-width: 767px) {
  .about-card {
    width: 280px;
    height: 240px;
    margin: 0 auto;
  }
  .about-card + .about-card {
    margin: 70px auto 0;
  }
}
.about-card .about-desc {
  padding: 20px;
}
.about-card .about-desc img {
  width: 40%;
  margin-bottom: 3%;
}
.about-card .about-desc p {
  text-align: left;
  font-weight: bold;
  font-size: 20px;
}
@media (min-width: 1440px) {
  .about-card .about-desc p {
    font-size: 24px;
  }
}
.about-card .about-button {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px;
  color: #fff;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 999px) {
  .about-card .about-button {
    height: 40px;
  }
}
.about-card .about-button a {
  line-height: 60px;
}
@media (min-width: 768px) and (max-width: 999px) {
  .about-card .about-button a {
    line-height: 40px;
    font-size: 16px;
  }
}
.about-card .about-button:hover {
  opacity: 0.7;
}
.about-card .about-chara {
  width: 25%;
  position: absolute;
  top: -10%;
  right: 0;
  z-index: 10;
}
@media (min-width: 768px) and (max-width: 999px) {
  .about-card .about-chara {
    width: 30%;
  }
}
.about-card .about-chara-inu {
  width: 23%;
}
@media (min-width: 768px) and (max-width: 999px) {
  .about-card .about-chara-inu {
    width: 28%;
  }
}
.about-card .about-chara-kiji {
  width: 28%;
  top: -5%;
  right: -5%;
}
@media (min-width: 768px) and (max-width: 999px) {
  .about-card .about-chara-kiji {
    width: 33%;
  }
}

.point1 {
  border: solid 4px #39B9EB;
}
.point1 .about-button {
  background: #39B9EB;
}

.point2 {
  border: solid 4px #F88204;
}
.point2 .about-button {
  background: #F88204;
}

.point3 {
  border: solid 4px #2DAC5D;
}
.point3 .about-button {
  background: #2DAC5D;
}

@media (max-width: 767px) {
  .point {
    padding: 40px 0;
    background: #FFFBA5 url(../img/bg-sp-point.png) no-repeat center center;
  }
}

.point-wrapper {
  display: block;
  margin: 0 auto;
}
@media (min-width: 1440px) {
  .point-wrapper {
    display: grid;
    max-width: 1800px;
    gap: 3vw;
    grid-template-rows: repeat(15, 3vw);
    grid-template-columns: repeat(10, 5vw);
  }
}
@media (max-width: 767px) {
  .point-wrapper {
    width: 280px;
  }
}

.point-card {
  width: 700px;
  height: auto;
  background-color: #fff;
  position: relative;
  -webkit-box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.2);
  margin: 100px auto 0;
  border-radius: 15px;
}
@media (min-width: 1000px) and (max-width: 1439px) {
  .point-card {
    margin-top: 80px;
  }
}
@media (min-width: 768px) and (max-width: 999px) {
  .point-card {
    width: 600px;
    margin-top: 150px;
  }
}
@media (max-width: 767px) {
  .point-card {
    width: 100%;
    margin: 40px auto 180px;
  }
}
.point-card .point-desc {
  padding: 30px;
}
.point-card .point-desc img {
  width: 18%;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .point-card .point-desc img {
    width: 40%;
  }
}
.point-card .point-desc .point-title {
  margin-bottom: 1.5rem;
  font-size: 32px;
  font-weight: bold;
}
@media (min-width: 768px) and (max-width: 999px) {
  .point-card .point-desc .point-title {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .point-card .point-desc .point-title {
    font-size: 20px;
  }
}
.point-card .point-desc .point-text {
  font-family: "Noto Sans JP", serif;
}
.point-card .point-chara {
  width: 11%;
  position: absolute;
  top: -10%;
  right: 5%;
  z-index: 10;
}
@media (min-width: 768px) and (max-width: 999px) {
  .point-card .point-chara {
    width: 10%;
    top: -10%;
  }
}
@media (max-width: 767px) {
  .point-card .point-chara {
    width: 25%;
    top: -8%;
    right: -1%;
  }
}
.point-card .point-chara-inu {
  width: 10%;
}
@media (max-width: 767px) {
  .point-card .point-chara-inu {
    width: 23%;
  }
}
.point-card .point-chara-kiji {
  width: 13%;
}
@media (max-width: 767px) {
  .point-card .point-chara-kiji {
    width: 28%;
    top: -4%;
    right: -4%;
  }
}

#point1, #point2, #point3 {
  padding-top: 170px;
  margin-top: -170px;
}
@media (min-width: 768px) and (max-width: 999px) {
  #point1, #point2, #point3 {
    padding-top: 120px;
    margin-top: -120px;
  }
}
@media (max-width: 767px) {
  #point1, #point2, #point3 {
    padding-top: 60px;
    margin-top: -60px;
  }
}

#point1 {
  grid-row: 1;
  grid-column: 2;
}

#point2 {
  grid-row: 6;
  grid-column: 4;
}

#point3 {
  grid-row: 11;
  grid-column: 6;
}

.point-img1 {
  position: absolute;
  width: 50%;
  top: 0;
  right: -55%;
}
@media (min-width: 1000px) and (max-width: 1439px) {
  .point-img1 {
    width: 30%;
    top: -25%;
    right: 20%;
  }
}
@media (min-width: 768px) and (max-width: 999px) {
  .point-img1 {
    width: 35%;
    top: -30%;
    right: 20%;
  }
}
@media (max-width: 767px) {
  .point-img1 {
    width: 70%;
    top: 95%;
    right: -3%;
  }
}

.point-img2 {
  position: absolute;
  width: 50%;
  top: 0;
  left: -55%;
}
@media (min-width: 1000px) and (max-width: 1439px) {
  .point-img2 {
    width: 30%;
    top: -25%;
    left: 30%;
  }
}
@media (min-width: 768px) and (max-width: 999px) {
  .point-img2 {
    width: 35%;
    top: -30%;
    left: 45%;
  }
}
@media (max-width: 767px) {
  .point-img2 {
    width: 70%;
    top: 95%;
    left: 35%;
  }
}

.point-img3 {
  position: absolute;
  width: 50%;
  top: 0;
  left: -55%;
}
@media (min-width: 1000px) and (max-width: 1439px) {
  .point-img3 {
    width: 30%;
    top: -25%;
    left: 30%;
  }
}
@media (min-width: 768px) and (max-width: 999px) {
  .point-img3 {
    width: 35%;
    top: -30%;
    left: 45%;
  }
}
@media (max-width: 767px) {
  .point-img3 {
    width: 70%;
    top: 95%;
    left: 35%;
  }
}

/* ===============================================
# voice
=============================================== */
#voice {
  background: #fff url(../img/bg-voice.png) no-repeat center bottom/cover;
}
@media (max-width: 767px) {
  #voice {
    background: #fff url(../img/bg-sp-basic.png) no-repeat center center;
  }
}

.voice-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.voice-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 45%;
  height: 25%;
  border: #000 solid 4px;
  background-color: #fff;
  -webkit-box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
}
.voice-card:nth-child(even) {
  margin-left: 40px;
}
@media (min-width: 768px) and (max-width: 999px) {
  .voice-card:nth-child(even) {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .voice-card:nth-child(even) {
    margin-left: 0;
  }
}
.voice-card:nth-child(n+3) {
  margin-top: 40px;
}
@media (min-width: 768px) and (max-width: 999px) {
  .voice-card {
    width: 70%;
  }
  .voice-card:nth-child(n+2) {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .voice-card {
    width: 280px;
    display: block;
  }
  .voice-card:nth-child(n+2) {
    margin-top: 40px;
  }
}
.voice-card .voice-img {
  width: 50%;
  border-radius: 10px 0 0 10px;
}
@media (max-width: 767px) {
  .voice-card .voice-img {
    width: 100%;
    border-radius: 10px 10px 0 0;
  }
}

.voice-desc {
  width: 50%;
  padding: 1rem;
}
@media (min-width: 1000px) and (max-width: 1439px) {
  .voice-desc {
    padding: 0.7rem;
  }
}
@media (min-width: 768px) and (max-width: 999px) {
  .voice-desc {
    padding: 0.7rem;
  }
}
@media (max-width: 767px) {
  .voice-desc {
    width: 100%;
    position: relative;
  }
}
.voice-desc .voice-text {
  font-family: "Noto Sans JP", serif;
  font-size: 14px;
}
@media (min-width: 1440px) {
  .voice-desc .voice-text {
    margin-bottom: 10px;
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .voice-desc .voice-text {
    font-size: 12px;
  }
}
.voice-desc .grade {
  background: #FDF101;
  border-radius: 50px;
  text-align: center;
  margin: 20px 0 0 auto;
  color: #000;
  width: 70px;
  padding: 5px 0;
  font-size: 18px;
}
@media (min-width: 1000px) and (max-width: 1439px) {
  .voice-desc .grade {
    margin: 0 0 0 auto;
    font-size: 14px;
  }
}
@media (min-width: 768px) and (max-width: 999px) {
  .voice-desc .grade {
    margin: 0 0 0 auto;
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .voice-desc .grade {
    position: absolute;
    top: -67px;
    right: 5px;
    font-size: 14px;
  }
}

/* ===============================================
# message
=============================================== */
#message {
  background: url(../img/bg-message.png) no-repeat center center/cover;
}
@media (max-width: 767px) {
  #message {
    background: url(../img/bg-sp-message.png) no-repeat center center/cover;
  }
}

.message-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 768px) and (max-width: 999px) {
  .message-wrapper {
    display: block;
  }
}
@media (max-width: 767px) {
  .message-wrapper {
    display: block;
  }
}

.message-card {
  padding: 40px;
  margin: 0 auto;
  border: #000 solid 4px;
  background: #fff;
  -webkit-box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
}
@media (min-width: 768px) and (max-width: 999px) {
  .message-card {
    width: 85%;
  }
}
@media (max-width: 767px) {
  .message-card {
    padding: 30px;
    width: 95%;
  }
}
.message-card + .message-card {
  margin-left: 40px;
}
@media (min-width: 768px) and (max-width: 999px) {
  .message-card + .message-card {
    margin: 40px auto 0;
  }
}
@media (max-width: 767px) {
  .message-card + .message-card {
    margin: 40px auto 0;
  }
}
.message-card .lead {
  font-family: "M PLUS 1", sans-serif;
  font-weight: bold;
  text-align: center;
  padding-bottom: 20px;
  line-height: 1.4;
  font-size: 20px;
}
@media (min-width: 1440px) {
  .message-card .lead {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .message-card .lead {
    font-size: 16px;
  }
}
.message-card p {
  line-height: 2;
  font-family: "Noto Sans JP", serif;
}

.message-name {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 768px) and (max-width: 999px) {
  .message-name {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .message-name {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-top: 0;
  }
}

@media (min-width: 768px) and (max-width: 999px) {
  .kanken {
    margin-top: 20px;
  }
}

.shoto {
  width: 160px;
}
@media (min-width: 768px) and (max-width: 999px) {
  .shoto {
    width: 140px;
  }
}
@media (max-width: 767px) {
  .shoto {
    width: 100px;
  }
}

.coleyo {
  width: 170px;
  margin-left: 40px;
}
@media (min-width: 768px) and (max-width: 999px) {
  .coleyo {
    width: 150px;
  }
}
@media (max-width: 767px) {
  .coleyo {
    width: 110px;
  }
}

/* ===============================================
# qa
=============================================== */
#qa {
  background: url(../img/bg-qa.png) no-repeat center center/cover;
}
@media (max-width: 767px) {
  #qa {
    background: #fff url(../img/bg-sp-basic.png) no-repeat center center;
  }
}

.qa-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.qa-card {
  width: 400px;
  padding: 30px;
  border: #000 solid 4px;
  background-color: #fff;
  position: relative;
  -webkit-box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
}
@media (min-width: 768px) and (max-width: 999px) {
  .qa-card {
    width: 600px;
  }
  .qa-card:nth-child(n+2) {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .qa-card:nth-child(n+2) {
    margin-top: 40px;
  }
}
.qa-card:nth-child(even) {
  margin-left: 40px;
}
@media (min-width: 768px) and (max-width: 999px) {
  .qa-card:nth-child(even) {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .qa-card:nth-child(even) {
    margin-left: 0;
  }
}
.qa-card:nth-child(n+3) {
  margin-top: 40px;
}
.qa-card .qa-title {
  position: relative;
  font-size: 20px;
  font-family: "M PLUS 1", sans-serif;
  font-weight: bold;
  padding: 0 0 24px 40px;
}
@media (max-width: 767px) {
  .qa-card .qa-title {
    font-size: 16px;
  }
}
.qa-card .qa-title::before {
  position: absolute;
  top: -4px;
  left: -8px;
  display: inline-block;
  content: "Q";
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FDF101;
  text-align: center;
  line-height: 40px;
  margin-right: 10px;
  font-size: 20px;
  font-weight: bold;
}
.qa-card .qa-desc {
  position: relative;
  padding-left: 40px;
  font-family: "Noto Sans JP", serif;
}
.qa-card .qa-desc::before {
  position: absolute;
  top: -4px;
  left: -8px;
  display: inline-block;
  content: "A";
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: solid 2px #000;
  color: #000;
  text-align: center;
  line-height: 36px;
  margin-right: 20px;
  font-size: 20px;
  font-weight: bold;
}
.qa-card .qa-text > a {
  text-decoration: underline;
  color: #39B9EB;
  display: inline-block;
}
.qa-card .qa-img {
  width: 35%;
  z-index: 10;
}
@media (min-width: 768px) and (max-width: 999px) {
  .qa-card .qa-img {
    width: 18%;
  }
}
@media (max-width: 767px) {
  .qa-card .qa-img {
    width: 30%;
  }
}
.qa-card .momo {
  position: absolute;
  top: -35%;
  left: -20%;
  width: 30%;
}
@media (min-width: 768px) and (max-width: 999px) {
  .qa-card .momo {
    left: -10%;
    width: 14%;
  }
}
@media (max-width: 767px) {
  .qa-card .momo {
    width: 25%;
    left: 0;
    top: -70%;
  }
}
.qa-card .yasha {
  position: absolute;
  top: 10%;
  right: -20%;
}
@media (min-width: 1000px) and (max-width: 1439px) {
  .qa-card .yasha {
    top: 0;
  }
}
@media (min-width: 768px) and (max-width: 999px) {
  .qa-card .yasha {
    right: -10%;
  }
}
@media (max-width: 767px) {
  .qa-card .yasha {
    top: -28%;
    right: 0;
  }
}
.qa-card .kintaro {
  position: absolute;
  bottom: -10%;
  left: -30%;
}
@media (min-width: 1000px) and (max-width: 1439px) {
  .qa-card .kintaro {
    bottom: 0;
    left: -24%;
  }
}
@media (min-width: 768px) and (max-width: 999px) {
  .qa-card .kintaro {
    left: -13%;
  }
}
@media (max-width: 767px) {
  .qa-card .kintaro {
    display: none;
  }
}
.qa-card .urashima {
  position: absolute;
  bottom: -40%;
  right: -15%;
}
@media (min-width: 768px) and (max-width: 999px) {
  .qa-card .urashima {
    right: 0;
  }
}
@media (max-width: 767px) {
  .qa-card .urashima {
    bottom: -50%;
    right: -10%;
  }
}
.qa-card .binbo {
  position: absolute;
  top: 80%;
  left: -40%;
  width: 60%;
}
@media (min-width: 768px) and (max-width: 999px) {
  .qa-card .binbo {
    width: 30%;
    top: 90%;
    left: 60%;
  }
}
@media (max-width: 767px) {
  .qa-card .binbo {
    width: 48%;
    top: 72%;
    left: 58%;
  }
}

/* ===============================================
# contact
=============================================== */
#contact {
  background-color: #FDF101;
}

.contact-wrapper {
  padding: 100px 0;
}
@media (min-width: 768px) and (max-width: 999px) {
  .contact-wrapper {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .contact-wrapper {
    padding: 40px 0;
  }
}

.contact-card {
  position: relative;
  max-width: 700px;
  height: 275px;
  background-color: #fff;
  margin: 0 auto;
  padding: 25px 25px 0;
  -webkit-box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
}
@media (min-width: 768px) and (max-width: 999px) {
  .contact-card {
    width: 500px;
    height: 250px;
    padding: 15px 0 0;
  }
}
@media (max-width: 767px) {
  .contact-card {
    height: 200px;
    padding: 5px 0;
  }
}

.contact-text {
  text-align: center;
}
.contact-text .contact-title {
  font-size: 36px;
  font-weight: bold;
  color: #39B9EB;
  margin: 20px 0 10px;
}
@media (min-width: 768px) and (max-width: 999px) {
  .contact-text .contact-title {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .contact-text .contact-title {
    font-size: 18px;
  }
}
.contact-text .attention {
  font-size: 14px;
  margin-top: 20px;
}
@media (min-width: 768px) and (max-width: 999px) {
  .contact-text .attention {
    font-size: 10px;
  }
}
@media (max-width: 767px) {
  .contact-text .attention {
    font-size: 10px;
  }
}

.dl-momo {
  width: 150px;
  margin-top: auto;
  position: absolute;
  bottom: 0;
  right: 3%;
}
@media (min-width: 768px) and (max-width: 999px) {
  .dl-momo {
    width: 100px;
    right: 1%;
  }
}
@media (max-width: 767px) {
  .dl-momo {
    display: none;
  }
}

/* ===============================================
# footer
=============================================== */
footer {
  margin-top: 80px;
}
@media (max-width: 767px) {
  footer {
    margin-top: 40px;
  }
}

.footer-logo-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 20px;
}

.footer-nav {
  margin-bottom: 40px;
}
.footer-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
}
@media (max-width: 767px) {
  .footer-nav ul {
    display: block;
    text-align: center;
  }
}

.footer-list a:hover {
  color: #39B9EB;
}
.footer-list + .footer-list {
  margin-left: 40px;
}
@media (max-width: 767px) {
  .footer-list + .footer-list {
    margin: 10px 0 0;
  }
}

.copyright {
  height: auto;
  background-color: #F0F3F5;
}
.copyright p {
  text-align: right;
  font-size: 12px;
  padding: 0.2rem 1rem;
}
@media (max-width: 767px) {
  .copyright p {
    text-align: center;
  }
}