@charset "utf-8";
/* .wp-block .hoge {
    width: 100%
} */

/* 追加css */

.pc_none {
  display: none;
}

.sp_none {
  display: block;
}

@media only screen and (max-width: 767px) {
  .pc_none {
    display: block;
  }

  .sp_none {
    display: none;
  }
}

.l-header__logo a .logo,
.l-footer__logo a .logo {
  max-width: 180px;
}

.p-index_about__content .textarea .logo {
  max-width: 300px;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .l-header__logo a {
    display: flex;
    flex-direction: row;
  }

  .l-header__logo a .logo {
    margin-right: 10px;
  }

  .l-header__logo a .logo {
    max-width: 80px;
  }

  .l-footer__logo a .logo {
    max-width: 120px;
  }

  .p-index_about__content .textarea .logo {
    max-width: 200px;
  }

  .l-footer__logo a img {
    max-width: 100%;
  }
}


/*** SNSボタン ***/
.sns_wrap ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .5em;
}

.sns_wrap ul li a {
  width: 170px;
  background: #ffffff;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  border-radius: 5px;
  padding: 0 15px 0 1em;
  position: relative;
  transition: all .3s;
}

.sns_wrap ul li .img {
  display: flex;
  content: "";
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
}

.sns_wrap ul li .img:after {
  background-image: url(/img/common/ico/ico_inst.png);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
  content: "";
  width: 20px;
  height: 20px;
}

.sns_wrap ul li a:hover {
  opacity: .8;
  transition: all .3s;
}

.mv_online {
  background: #01a0eb;
  color: #fff;
  width: 230px;
  text-align: center;
  margin: auto;
  margin-top: 15px;
  margin-bottom: 20px;
  padding: 10px;
  font-size: 1.3em;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .mv_online {
    font-size: 1.1em;
  }
}

/***  キャッチコピー ***/
section.copy_message {
  text-align: center;
  padding: 120px 0;
  width: 900px;
  margin: auto;
}

section.copy_message .ttl {
  font-size: 3rem;
  font-weight: bold;
  color: #01a0eb;
  margin-bottom: 40px;
}

section.copy_message ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: auto;
}

section.copy_message ul li {
  width: 32%;
  background: #01a0eb;
  color: #fff;
  padding: 15px;
  font-size: 2.2rem;
  text-align: center;
  line-height: 1.5;
}

section.copy_message ul li span {
  font-size: 2.4rem;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  section.copy_message {
    width: 90%;
    padding: 60px 0;
  }

  section.copy_message .ttl {
    font-size: 2.6rem;
    line-height: 1.5;
  }

  section.copy_message ul li {
    font-size: 1.4rem;
    padding: 15px 10px;
  }

  section.copy_message ul li span {
    font-size: 1.8rem;
  }
}

.p-index_message2:before {
  left: 0;
}

.p-index_message__textarea .ttl .en {
  line-height: 1.3;
}

.p-index_message2 .p-index_message__textarea {
  margin-left: 0;
  margin-right: calc(-8.16327vw - 69.38776px);
  padding: calc(11.02041vw + 58.67347px) 0 calc(4.08163vw + 34.69388px) calc(2.44898vw + 20.81633px);
  padding-left: 0;
  padding-right: 60px;
}

@media only screen and (max-width: 1599px) {
  .p-index_message2 .p-index_message__textarea {
    padding-right: 0;
  }
}

@media only screen and (max-width: 767px) {
  .p-index_message2 {
    padding-bottom: 60px;
  }

  .p-index_message2 .p-index_message__textarea {
    padding-top: 0;
  }
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.p-index_youtube {
  /* margin-bottom: 130px; */
  margin-bottom: 60px;
}

.p-index_youtube.js-anim_elm {
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.p-index_youtube.js-anim_elm.is-act {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

@media only screen and (max-width: 1599px) {
  .p-index_youtube {
    margin-bottom: calc(4.08163vw + 64.69388px);
  }
}

@media only screen and (max-width: 767px) {
  .p-index_message {
    /* youtube追加時 */
    padding: calc(7.34694vw + 62.44898px) 0 0;
  }

  .p-index_youtube {
    background: white;
    padding-bottom: calc(7.34694vw + 62.44898px);
    margin-top: calc(-7.34694vw - 62.44898px);
  }
}

.form_online {
  text-align: center;
  color: #01a0eb;
  font-size: 1.1em;
  font-weight: bold;
  border: 1px solid #01a0eb;
  padding: 5px 10px;
  margin: auto;
  margin-top: -30px;
  margin-bottom: 20px;
  width: 200px;
}

/* お知らせ追加 */
.p-index_flow__note.js-anim_elm.is-act {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.p-index_flow__note.js-anim_elm {
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.p-index_flow__note {
  margin-top: 60px;
  background-color: white;
  padding: 40px;
  text-align: center;
}

.p-index_flow__note .catch {
  /* color: #01a0eb; */
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.p-index_flow__note ol {
  display: flex;
  list-style-type: decimal;
  flex-wrap: wrap;
}

.p-index_flow__note ol li {
  margin: 0 20px;
  flex-grow: 1;
  text-align: left;
}

@media only screen and (max-width: 767px) {
  .p-index_flow__note {
    margin-top: 30px;
    background-color: white;
    padding: 30px;
  }
}