@charset "UTF-8";
/* sp */
@media only screen and (max-width: 760px) {
  /* フォーム周りリセット */
  .sp-search input, .sp-search button, .sp-search textarea, .sp-search select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  .sp-search input, .sp-search button, .sp-search textarea, .sp-search select {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  /* /フォーム周りリセット */
  .sp-search input.textBox {
    width: 83%;
    height: 40px;
    padding: 4px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    background-color: #fff;
  }
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  /* ---------------------------------------------------------------
                        mixin
  ----------------------------------------------------------------*/
  /* --------------------------------------------------------------

                          モーダル

  ----------------------------------------------------------------*/
  .no-scroll {
    overflow: hidden;
  }
  .modal {
    padding: 15px;
    width: auto;
  }
  .modal .modal-content {
    padding: 30px;
    width: auto;
    margin: 0 auto;
  }
  /*----------------------------------------------------------------
  ----------------------------------------------------------------*
                                ヘッダー
  ----------------------------------------------------------------*
  ----------------------------------------------------------------*/
  /* ヘッダー
  -----------------------------------------------*/
  /*  ハンバーガーメニュー
  ---------------------------------------------- */
  .sb-open-right {
    position: fixed;
    right: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background-color: #fff;
  }
  .menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 30px;
    width: 30px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #fff;
  }
  .menu-btn span,
  .menu-btn span:before,
  .menu-btn span:after {
    content: "";
    display: block;
    height: 3px;
    width: 15px;
    border-radius: 3px;
    background-color: #2aac8d;
    position: absolute;
  }
  .menu-btn span:before {
    bottom: 6px;
  }
  .menu-btn span:after {
    top: 6px;
  }
  #menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0); /*メニューオープン時は真ん中の線を透明にする*/
  }
  #menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
    transition: all 300ms 0s ease;
  }
  #menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
    transition: all 300ms 0s ease;
  }
  #menu-btn-check {
    display: none;
  }
  .menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    background-color: #4bd5b4;
  }
  .menu-content ul {
    padding: 70px 10px 0;
  }
  .menu-content ul li {
    border-bottom: solid 1px #ffffff;
    list-style: none;
  }
  .menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color: #ffffff;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
  }
  .menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
  }
  .menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%; /*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #4bd5b4;
    transition: all 0.5s; /*アニメーション設定*/
  }
  #menu-btn-check:checked ~ .menu-content {
    left: 0; /*メニューを画面内へ*/
  }
  header .header__inner {
    width: auto;
    padding: 0 10px;
  }
  header .header__inner .header_logo {
    width: 100px;
  }
  /* --------------------------------------------------------------
  ----------------------------------------------------------------*
                          メインビジュアル
  ----------------------------------------------------------------*
  ----------------------------------------------------------------*/
  .mainvisual {
    width: 100%;
    height: auto;
  }
  .mainvisual .mainvisual__inner {
    width: auto;
    margin: 0 auto;
  }
  .mainvisual .mainvisual__inner .mainvisual__title {
    width: 80%;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 30px;
  }
  .mainvisual .mainvisual__inner .mainvisual__title span {
    font-size: 14px;
    line-height: 1.5em;
  }
  /*----------------------------------------------------------------
  ----------------------------------------------------------------*
                                コンテンツ
  ----------------------------------------------------------------*
  ----------------------------------------------------------------*/
  .section__wrap {
    width: auto;
    margin: 0 10px;
  }
  .section__title h2 {
    font-size: 24px;
    line-height: 60px;
    border-top: 1px solid #4bd5b4;
    border-bottom: 1px solid #4bd5b4;
    width: 200px;
  }
  .section__title p {
    font-size: 14px;
  }
  /* --------------------------------------------------------------
    ----------------------------------------------------------------*
                            ニュース
    ----------------------------------------------------------------*
    ----------------------------------------------------------------*/
  .news__wrap {
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .news__wrap .news .notice {
    width: auto;
    margin: 0 auto;
    margin-top: 15px;
  }
  .news__wrap .news .notice a {
    padding: 15px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    line-height: 20px;
    position: relative;
  }
  .news__wrap .news .notice a:hover {
    background-color: #fff;
    color: #4bd5b4;
  }
  .news__wrap .news .notice a:hover::before {
    background-color: #4bd5b4;
  }
  .news__wrap .news .notice a:hover::after {
    background-color: #4bd5b4;
  }
  .news__wrap .news .notice a::before {
    content: "";
    position: absolute;
    top: 50px;
    right: 19px;
    width: 15px;
    height: 1px;
    border-radius: 9999px;
    background-color: #fff;
    transform: rotate(45deg);
    transform-origin: calc(100% - 0.5px) 50%;
  }
  .news__wrap .news .notice a::after {
    content: "";
    position: relative;
    display: inline-block;
    width: 30px;
    height: 1px;
    right: -12px;
    margin-top: 0px;
    border-radius: 9999px;
    background-color: #fff;
  }
  .news__wrap .news .notice a::after:hover {
    background-color: #4bd5b4;
  }
  .news__wrap .news .news__feed {
    background-color: #fff;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 15px;
  }
  .news__wrap .news .news__feed h3 {
    font-size: 14px;
    line-height: 14px;
    padding-top: 15px;
  }
  .news__wrap .news .news__feed ul {
    padding: 15px;
    height: 200px;
  }
  .news__wrap .news .news__feed ul li {
    width: auto;
    padding: 15px 0 15px 0;
    display: block;
    align-items: center;
  }
  .news__wrap .news .news__feed ul li a dl {
    display: block;
  }
  .news__wrap .news .news__feed ul li a dl dt {
    width: auto;
    margin-right: 0;
  }
  .news__wrap .news .news__feed ul li a dl dd {
    width: auto;
    margin-top: 10px;
  }
  .news__wrap .news .news__feed ul li a dl:hover dt {
    background-color: #2aac8d;
  }
  .news__wrap .news .news__feed ul li a dl:hover dd {
    color: #2aac8d;
  }
  .news__wrap .news h4 {
    font-size: 18px;
    line-height: 24px;
    padding: 10px;
  }
  .news__wrap .news .modal1__img {
    width: auto;
    height: auto;
    margin: 0 auto;
    margin-top: 15px;
  }
  .news__wrap .news .modal1__title {
    margin-top: 15px;
  }
  .news__wrap .news .modal1__title p {
    padding: 10px;
  }
  .news__wrap .news .modal1__text {
    margin-top: 15px;
  }
  .news__wrap .news .modal1__button {
    width: auto;
    margin-top: 15px;
  }
  .news__wrap .news .modal1__button a {
    padding: 15px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    line-height: 20px;
    text-align: center;
    background-color: #2aac8d;
    display: block;
    position: relative;
  }
  .news__wrap .news .modal1__button a:hover {
    background-color: #fff;
    color: #4bd5b4;
  }
  .news__wrap .news .modal1__button a:hover::before {
    background-color: #4bd5b4;
  }
  .news__wrap .news .modal1__button a:hover::after {
    background-color: #4bd5b4;
  }
  .news__wrap .news .modal1__button a::before {
    display: none;
  }
  .news__wrap .news .modal1__button a::after {
    display: none;
  }
  /* --------------------------------------------------------------
  ----------------------------------------------------------------*
                          イントロダクション
  ----------------------------------------------------------------*
  ----------------------------------------------------------------*/
  .introduction__wrap {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .introduction__wrap .introduction__top {
    margin-top: 15px;
    padding: 15px;
  }
  .introduction__wrap .introduction__top .introduction__top--inner {
    background-color: #aea9a0;
    padding: 15px;
    padding-bottom: 0;
  }
  .introduction__wrap .introduction__top .introduction__top--inner .introduction__element {
    width: auto;
    margin: 0 auto;
    display: block;
  }
  .introduction__wrap .introduction__top .introduction__top--inner .introduction__element .introduction__text {
    width: auto;
    margin-top: 0;
  }
  .introduction__wrap .introduction__top .introduction__top--inner .introduction__element .introduction__text p {
    font-size: 14px;
    line-height: 20px;
  }
  .introduction__wrap .introduction__top .introduction__top--inner .introduction__element .introduction__img {
    width: auto;
  }
  .introduction__wrap h3 {
    font-size: 24px;
    line-height: 30px;
    text-align: left;
    padding: 10px;
    width: auto;
  }
  .introduction__wrap h3 span {
    font-size: 36px;
    font-weight: bold;
  }
  .introduction__wrap .introduction__content {
    width: auto;
    margin: 0 10px;
    display: block;
  }
  .introduction__wrap .introduction__content .introduction__content--inner {
    margin-top: 15px;
    width: auto;
  }
  .introduction__wrap .introduction__content .introduction__content--inner .introduction__content--img {
    padding: 10px;
  }
  .introduction__wrap .introduction__content .introduction__content--inner .introduction__content--text {
    background-color: #fff;
    padding: 10px;
  }
  .introduction__wrap .introduction__content .introduction__content--inner .introduction__content--text p {
    line-height: 24px;
  }
  /* --------------------------------------------------------------
  ----------------------------------------------------------------*
                          ストーリー
  ----------------------------------------------------------------*
  ----------------------------------------------------------------*/
  .story__wrap {
    width: auto;
    background-color: #fff;
    padding: 15px;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-top: 15px;
  }
  .story__wrap .story {
    margin-top: 15px;
    width: auto;
    margin: 0 auto;
  }
  .story__wrap .story .section__title p {
    margin-top: 0;
  }
  .story__wrap .story p {
    margin-top: 15px;
    font-size: 14px;
    color: #4bd5b4;
    line-height: 24px;
  }
  /* --------------------------------------------------------------
  ----------------------------------------------------------------*
                          概要
  ----------------------------------------------------------------*
  ----------------------------------------------------------------*/
  .overview__wrap {
    padding-top: 30px;
  }
  .overview__wrap .overview {
    padding-bottom: 30px;
  }
  .overview__wrap .overview table th {
    display: block;
    width: auto;
    text-align: center;
  }
  .overview__wrap .overview table td {
    display: block;
  }
  .overview__wrap .overview table td .overview__text--bald {
    font-size: 14px;
    margin-top: 15px;
    margin-bottom: 10px;
  }
  .overview__wrap .overview .overview__text--supplement table th {
    width: auto;
    border-bottom: 1px solid #4bd5b4;
  }
  /* --------------------------------------------------------------
  ----------------------------------------------------------------*
                          応募フォーム
  ----------------------------------------------------------------*
  ----------------------------------------------------------------*/
  .form__wrap {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .form__wrap .form {
    margin-top: 30px;
  }
  .form__wrap .form .form__link {
    width: auto;
    margin-top: 30px;
  }
  .form__wrap .form .form__link a {
    width: auto;
    line-height: 60px;
    font-size: 18px;
  }
  /* --------------------------------------------------------------
  ----------------------------------------------------------------*
                          フッター
  ----------------------------------------------------------------*
  ----------------------------------------------------------------*/
  .footer {
    background-color: #4bd5b4;
    padding-left: 10px;
    padding-right: 10px;
  }
  .footer .footer__logo {
    width: auto;
    margin: 0 auto;
  }
  .footer .footer__logo a img {
    width: 100%;
    height: auto;
  }
  .footer h3 {
    color: #fff;
    text-align: center;
    font-size: 24px;
    line-height: 60px;
    font-weight: bold;
  }
  .footer dl dt {
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    text-align: center;
  }
  .footer dl dd {
    font-size: 14px;
    color: #fff;
    padding-bottom: 10px;
    text-align: center;
  }
  .footer dl dd a {
    color: #fff;
    text-decoration: none;
  }
  .footer dl dd a:hover {
    color: #2aac8d;
  }
  .footer p {
    font-size: 14px;
    color: #fff;
    text-align: center;
    padding: 10px;
  }
}/*# sourceMappingURL=sp.css.map */