@charset "UTF-8";
@import url(reset.css);
@import url(classes.css);
/* ===============================================
全体スタイル
=============================================== */
/* --- カラーコード --- */
html {
  font-family: YakuHanJP, "Noto Sans JP", "Hiragino Kaku Gothic Pro", "Hiragino Sans", "游ゴシック体", YuGothic, "游ゴシック", Meiryo, sans-serif;
  font-feature-settings: "palt";
  font-size: 62.5%;
  color: #333333;
  background: #f5f5f5;
}

.tac {
  text-align: center;
}

small {
  font-size: 1.3rem;
  display: block;
  line-height: 1.8em;
}

img {
  width: 100%;
}

h2 {
  padding: 0rem 5rem 1rem;
}
@media (max-width: 767px) {
  h2 {
    padding: 0rem 2rem 1rem;
  }
}

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

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

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

/* --- 矢印 --- */
.arrow {
  position: relative;
  display: inline-block;
}
.arrow:before {
  content: "";
  width: 8px;
  height: 8px;
  border: 0px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 5px;
  margin-top: -10px;
}

/* --- アニメーション --- */
.poyopoyo {
  animation: poyopoyo 1.5s ease-out infinite;
}

@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1);
  }
  50%, 70% {
    transform: scale(0.9);
  }
}
/* --- 背景共通 --- */
#benefit,
#contact {
  background-size: auto auto;
  background-color: rgb(255, 238, 140);
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 10px, rgb(255, 224, 21) 10px, rgb(255, 224, 21) 20px);
  padding: 3rem 0rem;
}
@media (max-width: 767px) {
  #benefit,
  #contact {
    padding: 2rem;
  }
}
#benefit .sectionInner,
#contact .sectionInner {
  background: #fff;
  max-width: 430px;
  margin: 0 auto;
  border-radius: 15px;
}
#benefit h2,
#contact h2 {
  margin-top: 2rem;
}

/* --- 共通ボタン --- */
.btn {
  max-width: 370px;
  margin: 0 auto;
}

/* --- 紹介アイコン共有 --- */
.ico {
  max-width: 150px;
  width: 100%;
  margin: 0 auto 2rem;
}

.req {
  color: #ff0000;
}

/* ===============================================
header
=============================================== */
header {
  position: fixed;
  z-index: 9999;
  width: 100%;
  background: #1c98d3;
}
header .headerInner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0rem 2rem;
}
@media (max-width: 767px) {
  header .headerInner {
    padding: 0 1.5rem;
  }
}
header .logo {
  max-width: 150px;
  margin: 0 auto;
  padding: 1.5rem 0rem;
}
header .header-cta a {
  color: #fff;
  font-size: 1.6rem;
  border: 1px solid;
  padding: 0.7rem 3rem 0.7rem 1.5rem;
  margin-left: 7rem;
  position: relative;
}
header .header-cta .arrow:before {
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}

/* --- ハンバーガーメニュー --- */
.hamburger {
  width: 35px;
  height: 60px;
  position: relative;
  margin-top: 1rem;
  z-index: 999;
  cursor: pointer;
}
@media (max-width: 767px) {
  .hamburger {
    height: 50px;
  }
}
.hamburger .button-text {
  font-size: 10px;
  padding-top: 1.8rem;
  font-weight: bold;
  color: #fff;
}
@media (max-width: 767px) {
  .hamburger .button-text {
    padding-top: 1.8rem;
  }
}

.hamburger span,
.hamburger span::after,
.hamburger span::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 3px;
  background-color: #fff;
  transition: all 0.3s;
}

.hamburger span::before {
  top: -10px;
}

.hamburger span::after {
  bottom: -10px;
}

.hamburger.open span {
  background-color: transparent;
}

.hamburger.open span::before {
  top: 0;
  transform: rotate(45deg);
}

.hamburger.open span::after {
  bottom: 0;
  transform: rotate(-45deg);
}

.nav {
  position: fixed;
  width: 100%;
  height: 80vh;
  top: -100%;
  right: 0%;
  background-color: rgba(28, 152, 211, 0.9490196078);
  padding: 50px 0;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .nav {
    height: 50rem;
  }
}

.nav__list {
  padding: 0rem 8rem;
}
@media (max-width: 767px) {
  .nav__list {
    padding: 2rem 0rem 0rem;
  }
}

.nav__item a {
  display: block;
  font-size: 20px;
  color: #fff;
  padding: 20px 0 20px 50px;
  border-bottom: 0.5px solid;
}
@media (max-width: 767px) {
  .nav__item a {
    padding: 1.5rem 0;
    margin: 0rem 3rem;
  }
}
.nav__item:last-child a {
  border-bottom: none;
}

.nav__item a:hover {
  color: #ffff00;
}

.nav.open {
  top: 0;
}

/* ===============================================
contents
=============================================== */
main {
  line-height: 1.5;
  max-width: 490px;
  margin: 0 auto;
  background: #fff;
  font-size: 18px;
  padding-top: 40px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 0px 26px 0px;
  padding-top: 60px;
}
main .sectionInner {
  padding: 3rem 3rem;
}
@media (max-width: 767px) {
  main .sectionInner {
    padding: 3rem 2rem;
  }
}

/* ---mv--- */
#mv .sectionInner {
  padding: 0;
  position: relative;
}
#mv .sectionInner .btn {
  position: absolute;
  width: 400px;
  left: calc(50% - 180px);
  bottom: 40px;
}
@media (max-width: 767px) {
  #mv .sectionInner .btn {
    width: 350px;
    left: calc(50% - 175px);
    bottom: 30px;
  }
}

/* ---about--- */
#about ul {
  display: flex;
  justify-content: space-evenly;
}
#about ul li {
  max-width: 210px;
  width: 100%;
}
@media (max-width: 767px) {
  #about ul li {
    max-width: 170px;
  }
}

/* ---benefit--- */
#benefit .sectionInner {
  background: none;
  padding: 0;
}
#benefit dl {
  background: #fff;
  margin: 1rem 0rem;
  border-radius: 15px;
}
#benefit dl dt {
  background: #1c98d3;
  border-radius: 15px 15px 0 0;
  padding: 1.5rem 0 1rem;
}
#benefit dl dt img {
  max-width: 240px;
}
#benefit dl dd {
  padding: 2rem 7rem 3rem;
}
#benefit ul {
  font-size: 1.5rem;
  line-height: 2em;
  padding-left: 1.5rem;
  list-style: none;
}
#benefit ul li {
  position: relative;
}
#benefit ul li::before {
  content: "※";
  position: absolute;
  left: -20px;
}
#benefit .card {
  max-width: 220px;
  width: 100%;
  margin: 2rem auto 0rem;
}

/* ---use--- */
#use .use-sub-title {
  background: #ffff00;
  color: #1c98d3;
  font-weight: 900;
  max-width: 170px;
  width: 100%;
  margin: 0 auto;
  letter-spacing: 2px;
  font-size: 2rem;
}
#use .pink-title {
  color: #d60066;
}
#use .txt {
  margin: 2rem auto;
}
#use .ico-line {
  max-width: 170px;
  width: 100%;
  margin: 0 auto;
}
#use .contents {
  border-bottom: 1.5px dashed #808080;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
}
#use .contents:last-child {
  border: none;
  margin: 0;
  padding: 0;
}
#use .tab-content {
  display: none;
  clear: both;
  padding: 2rem;
  background: #fff;
}
#use #try-tab:checked ~ .try-content {
  display: block;
}
#use #join-tab:checked ~ .join-content {
  display: block;
}
#use .tab-contents input {
  display: none;
}
#use .tab-contents input:checked + .try-item, #use .tab-contents input:checked + .join-item {
  background: #d60066;
}
#use .tab-contents .tab-item {
  background-color: #b3b3b3;
  color: #fff;
  cursor: pointer;
  display: flex;
  float: left;
  width: 50%;
  font-weight: 700;
  justify-content: center;
  padding: 2rem 0rem;
  border-radius: 15px 15px 0px 0px;
}
#use .select {
  background: #fcedf5;
  padding: 3rem;
}
#use .select-txt {
  font-size: 1.6rem;
  line-height: 1.8em;
  margin: 2rem auto;
}
#use .character {
  max-width: 180px;
  width: 100%;
  margin: 2rem auto 0rem;
}

#contact {
  font-size: 1.8rem;
}
#contact .contact-sub-title {
  font-weight: bold;
  font-size: 2rem;
  border-bottom: 1px solid;
  margin-bottom: 0.5rem;
  padding-bottom: 0.8rem;
}
#contact .req {
  font-size: 12px;
}
#contact form label {
  display: block;
  font-weight: bold;
}
#contact form .form-item {
  padding: 1.5rem 0rem 0rem;
  line-height: 1.6;
}
#contact form .form-item-text,
#contact form .form-item textarea,
#contact form .form-item select {
  display: block;
  background: #f2f2f2;
  width: 100%;
  margin-top: 0.5rem;
  cursor: pointer;
  line-height: 1.6;
  border-radius: 5px;
  padding: 1.5rem 1rem;
}
#contact form [type=submit] {
  display: block;
  margin: 3rem auto 1rem;
  font-weight: bold;
  padding: 2rem 6rem;
  border: 2px solid #ed1c24;
  background: #ed1c24;
  color: #fff;
  border-radius: 10rem;
}

/* ===============================================
footer
=============================================== */
footer {
  background: #fff;
  font-size: 1.6rem;
  font-weight: 400;
  max-width: 490px;
  margin: 0 auto;
}
footer a {
  color: #fff;
}
footer .logo {
  padding: 4rem 8rem 3rem;
}
@media (max-width: 767px) {
  footer .logo {
    padding: 4rem 5rem 2rem;
  }
}
footer .text {
  padding: 0rem 4rem 40rem;
  background: url(../img/bg_top-footer.jpg) no-repeat bottom;
  background-size: 100%;
}
@media (max-width: 767px) {
  footer .text {
    padding: 0rem 3rem 33rem;
  }
}
footer ul {
  background: #4c4c4c;
  color: #fff;
  font-size: 13px;
  display: flex;
  justify-content: center;
  padding: 1rem;
}
footer ul li {
  padding: 0rem 0.5rem;
}
footer p.copy {
  background: #333333;
  padding: 1rem 0rem;
  color: #fff;
  font-size: 1.2rem;
}/*# sourceMappingURL=shared.css.map */