@charset "UTF-8";
/*===============================================================

  2015/7/17

===============================================================*/
/* 初期化
----------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
  outline: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

input, textarea {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1, h2, h3, h4, h5, h6, p, li, th, td, dt, dd {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
}

caption, th, td {
  text-align: left;
  vertical-align: top;
}

img {
  vertical-align: top;
  border: 0;
}

ul, li {
  list-style: none;
}

option {
  padding-right: 1em;
}

address, caption {
  font-style: normal;
  font-weight: normal;
}

a {
  outline: none;
  text-decoration: underline;
  word-break: break-all;
}

a:focus {
  outline: none;
}

ul a, li a {
  zoom: 1;
}

/* HTML5
----------------------------------------------------------------*/
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* iOS3.1のhtml5対応 */
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

/* body
----------------------------------------------------------------*/
body {
  width: 100%;
  color: #333;
  font-size: 14px;
  text-align: left;
  line-height: 25px;
  -webkit-text-size-adjust: none;
  font-family: "Noto Sans JP", sans-serif;
}

a {
  color: #36C;
  -webkit-transition: background-color 0.1s linear, color 0.1s linear, border-color 0.1s linear, border-width 0.1s linear, opacity 0.1s linear;
  -ms-transition: background-color 0.1s linear, color 0.1s linear, border-color 0.1s linear, border-width 0.1s linear, opacity 0.1s linear;
  -moz-transition: background-color 0.1s linear, color 0.1s linear, border-color 0.1s linear, border-width 0.1s linear, opacity 0.1s linear;
  -o-transition: background-color 0.1s linear, color 0.1s linear, border-color 0.1s linear, border-width 0.1s linear, opacity 0.1s linear;
}

a:hover {
  color: #39F;
}

img {
  width: 100%;
  height: 100%;
}

.cb {
  clear: both;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/* スムーススクロール
----------------------------------------------------------------*/
html {
  scroll-behavior: smooth;
}

/* ---------------------------------------------------------------
                        mixin
----------------------------------------------------------------*/
/* --------------------------------------------------------------

                        コンテンツスタート

----------------------------------------------------------------*/
.sp {
  display: none;
}

.pc {
  display: block;
}

/*----------------------------------------------------------------
----------------------------------------------------------------*
                              スクロール
----------------------------------------------------------------*
----------------------------------------------------------------*/
.scroll__top.show {
  opacity: 1; /* 表示状態では完全に不透明 */
  transform: translateY(0); /* 元の位置に戻る */
}

.scroll__top {
  display: block; /* デフォルトでblockだが、後で非表示にするため */
  opacity: 0; /* 初期状態では透明 */
  transform: translateY(20px); /* 初期状態で少し下に */
  transition: opacity 0.5s ease, transform 0.5s ease; /* アニメーション設定 */
  width: 60px;
  height: auto;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 2;
  border-radius: 15px;
  background-color: #fff;
  padding: 20px 10px;
}
.scroll__top a {
  text-decoration: none;
}
.scroll__top a .scroll__top--img {
  width: 40px;
  margin: 0 auto;
}
.scroll__top a .scroll__top--img img {
  width: 100%;
  height: auto;
}
.scroll__top a p {
  font-size: 13px;
  color: #2aac8d;
  text-align: center;
  font-weight: bold;
  line-height: 13px;
  margin-top: 10px;
}

#news, #introduction, #overview, #form {
  padding-top: 100px; /* 調整したい高さ（固定ヘッダーの高さ） */
  margin-top: -100px;
}

/* --------------------------------------------------------------

                        浮かび上がる

----------------------------------------------------------------*/
.floating-element {
  opacity: 0;
  transform: translateY(100px); /* 要素を下に隠す */
  transition: transform 1.5s ease-out, opacity 1.5s ease-out;
  position: relative;
  width: 100%;
}

.visible {
  opacity: 1;
  transform: translateY(0); /* 元の位置に移動 */
}

/* --------------------------------------------------------------

                        モーダル

----------------------------------------------------------------*/
.no-scroll {
  overflow: hidden;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}
.modal .modal-content {
  background-color: #fff;
  background-image: url("../img/bg__01.png");
  background-size: 40%;
  background-attachment: fixed;
  margin: 0 auto;
  padding: 60px;
  width: 800px;
  border-radius: 15px;
  margin-top: 100px;
  margin-bottom: 100px;
}
.modal .modal-content p {
  font-size: 24px;
  line-height: 30px;
}
.modal .close {
  border-top: 1px solid #4bd5b4;
  padding-top: 30px;
  margin-top: 30px;
}
.modal .close p {
  background-color: #4bd5b4;
  color: #fff;
  font-size: 14px;
  text-align: center;
}
.modal .close p:hover {
  color: #4bd5b4;
  background-color: #fff;
  cursor: pointer;
}

/*----------------------------------------------------------------
----------------------------------------------------------------*
                              ヘッダー
----------------------------------------------------------------*
----------------------------------------------------------------*/
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  margin: 15px 0;
  margin-top: 0;
}
header .header__inner {
  width: 80%;
  max-width: 1800px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
header .header__inner .header_logo {
  width: 120px;
  height: auto;
  margin-top: 10px;
  margin-right: 60px;
}
header .header__inner .header_logo img {
  width: 100%;
  height: auto;
}
header .header__inner .header_nav {
  width: 860px;
}
header .header__inner .header_nav ul {
  display: flex;
  justify-content: space-between;
}
header .header__inner .header_nav ul li a {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  line-height: 59px;
}
header .header__inner .header_nav ul li a:hover {
  color: #4bd5b4;
}

.header.show {
  background-color: #4bd5b4;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        メインビジュアル
----------------------------------------------------------------*
----------------------------------------------------------------*/
.mainvisual {
  width: 100%;
  height: auto;
  background-color: #4bd5b4;
}
.mainvisual .mainvisual__inner {
  width: 100%;
  max-width: 1800px;
  height: auto;
  margin: 0 auto;
  position: relative;
  height: 100vh;
}
.mainvisual .mainvisual__inner img {
  width: 100%;
  height: auto;
}
.mainvisual .mainvisual__inner .mainvisual__title {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  animation: fadeIn 1s ease-in-out forwards;
  animation-delay: 0.5s; /* 1秒後にアニメーションを開始 */
}
.mainvisual .mainvisual__inner .mainvisual__title span {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        コンテンツ
----------------------------------------------------------------*
----------------------------------------------------------------*/
.section__wrap {
  width: 80%;
  max-width: 1800px;
  margin: 0 auto;
}

.section__title h2 {
  font-size: 36px;
  line-height: 60px;
  color: #2aac8d;
  text-align: center;
  display: block;
  border-top: 1px solid #2aac8d;
  border-bottom: 1px solid #2aac8d;
  width: 300px;
  margin: 0 auto;
}
.section__title p {
  font-size: 16px;
  line-height: 30px;
  color: #2aac8d;
  text-align: center;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        ニュース
----------------------------------------------------------------*
----------------------------------------------------------------*/
.news__wrap {
  width: 100%;
  background-color: #F6F672;
  padding-top: 60px;
  padding-bottom: 60px;
}
.news__wrap .news .section__title h2 {
  color: #2aac8d;
  border-top: 1px solid #2aac8d;
  border-bottom: 1px solid #2aac8d;
}
.news__wrap .news .section__title p {
  color: #2aac8d;
}
.news__wrap .news .notice {
  width: 800px;
  margin: 0 auto;
  margin-top: 30px;
}
.news__wrap .news .notice a {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  line-height: 60px;
  text-align: center;
  background-color: #abffe9;
  display: block;
  position: relative;
}
.news__wrap .news .notice a:hover {
  background-color: #fff;
  color: #2aac8d;
}
.news__wrap .news .notice a:hover::before {
  background-color: #2aac8d;
}
.news__wrap .news .notice a:hover::after {
  background-color: #2aac8d;
}
.news__wrap .news .notice a::before {
  content: "";
  position: absolute;
  top: 40px;
  right: 30px;
  width: 30px;
  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: 60px;
  height: 1px;
  right: -23px;
  margin-top: 40px;
  border-radius: 9999px;
  background-color: #fff;
}
.news__wrap .news .notice a::after:hover {
  background-color: #2aac8d;
}
.news__wrap .news .news__feed {
  background-color: #fff;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 30px;
}
.news__wrap .news .news__feed h3 {
  font-size: 24px;
  line-height: 100px;
  color: #2aac8d;
  text-align: center;
}
.news__wrap .news .news__feed ul {
  padding: 30px;
  padding-top: 0;
  width: auto;
  margin: 0 auto;
  height: 300px;
  overflow: scroll;
}
.news__wrap .news .news__feed ul li {
  width: auto;
  padding: 30px 0 30px 0;
  border-top: 1px solid #2aac8d;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.news__wrap .news .news__feed ul li:last-child {
  border-bottom: 1px solid #2aac8d;
}
.news__wrap .news .news__feed ul li a {
  text-decoration: none;
  width: 100%;
}
.news__wrap .news .news__feed ul li a dl {
  display: flex;
}
.news__wrap .news .news__feed ul li a dl dt {
  font-size: 14px;
  color: #fff;
  background-color: #2aac8d;
  padding: 15px;
  margin-right: 15px;
  align-self: center;
  width: 85px;
}
.news__wrap .news .news__feed ul li a dl dd {
  font-size: 16px;
  color: #2aac8d;
  text-decoration: none;
  align-self: center;
  width: 600px;
}
.news__wrap .news .news__feed ul li a dl:hover dt {
  background-color: #4bd5b4;
}
.news__wrap .news .news__feed ul li a dl:hover dd {
  color: #4bd5b4;
}
.news__wrap .news h4 {
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
  color: #fff;
  text-align: center;
  display: block;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  width: auto;
  margin: 0 auto;
  background-color: #4bd5b4;
  padding: 15px;
}
.news__wrap .news .modal1__img {
  width: 400px;
  height: auto;
  margin: 0 auto;
  margin-top: 30px;
}
.news__wrap .news .modal1__img img {
  width: 100%;
  height: auto;
}
.news__wrap .news .modal1__title {
  margin-top: 30px;
}
.news__wrap .news .modal1__title p {
  width: auto;
  color: #4bd5b4;
  font-size: 14px;
  font-weight: bold;
  padding: 15px;
  text-align: center;
  border-top: solid 1px #4bd5b4;
  border-bottom: solid 1px #4bd5b4;
}
.news__wrap .news .modal1__text {
  margin-top: 30px;
}
.news__wrap .news .modal1__text p {
  font-size: 14px;
  color: #4bd5b4;
  line-height: 30px;
}
.news__wrap .news .modal1__button {
  width: 800px;
  margin: 0 auto;
  margin-top: 30px;
}
.news__wrap .news .modal1__button a {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  line-height: 60px;
  text-align: center;
  background-color: #abffe9;
  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 {
  content: "";
  position: absolute;
  top: 40px;
  right: 30px;
  width: 30px;
  height: 1px;
  border-radius: 9999px;
  background-color: #fff;
  transform: rotate(45deg);
  transform-origin: calc(100% - 0.5px) 50%;
}
.news__wrap .news .modal1__button a::after {
  content: "";
  position: relative;
  display: inline-block;
  width: 60px;
  height: 1px;
  right: -172px;
  margin-top: 40px;
  border-radius: 9999px;
  background-color: #fff;
}
.news__wrap .news .modal1__button a::after:hover {
  background-color: #4bd5b4;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        イントロダクション
----------------------------------------------------------------*
----------------------------------------------------------------*/
.introduction__wrap {
  width: 100%;
  background-color: #abffe9;
  background-image: url("../img/bg__02.png");
  background-repeat: repeat;
  background-size: 50%;
  background-attachment: fixed;
  padding-top: 60px;
  padding-bottom: 60px;
}
.introduction__wrap h3 {
  font-size: 36px;
  color: #fff;
  text-align: center;
  width: calc(var(--vw, 1vw) * 100);
  margin: 0 calc(50% - 50vw);
  padding-right: 7px;
  margin-top: 30px;
  padding: 30px 0;
  background-color: #4bd5b4;
  line-height: 60px;
  font-weight: bold;
}
.introduction__wrap p span {
  text-align: center;
  color: #2aac8d;
  font-size: 1.2rem;
  font-weight: 500;
  padding-top: 20px;
  display: block;
}
.introduction__wrap .introduction__date {
  margin-top: 30px;
  background-color: #fff;
  padding: 30px;
}
.introduction__wrap .introduction__date dl {
  display: flex;
  margin-top: 30px;
}
.introduction__wrap .introduction__date dl:first-child {
  margin-top: 0;
}
.introduction__wrap .introduction__date dl dt {
  font-size: 24px;
  color: #2aac8d;
  font-weight: bold;
  margin-bottom: 5px;
  width: 20%;
}
.introduction__wrap .introduction__date dl dd {
  width: 80%;
  font-size: 16px;
  color: #2aac8d;
  padding-left: 16px;
  text-align: left;
  line-height: 30px;
}
.introduction__wrap .introduction__date dl dd a.map {
  color: #fff;
  font-weight: bold;
  background-color: #2aac8d;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  text-align: center;
  margin-left: 10px;
  margin-top: 10px;
  display: inline-block;
}
.introduction__wrap .introduction__date dl dd a.map:hover {
  background-color: #4bd5b4;
  color: #fff;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        ストーリー
----------------------------------------------------------------*
----------------------------------------------------------------*/
.story__wrap {
  width: 100%;
  background-color: #fff;
  padding-top: 60px;
  padding-bottom: 60px;
  margin-top: 60px;
}
.story__wrap .story {
  margin-top: 60px;
  width: 80%;
  max-width: 1800px;
  margin: 0 auto;
}
.story__wrap .story .section__title p {
  margin-top: 0;
}
.story__wrap .story p {
  margin-top: 30px;
  font-size: 16px;
  color: #2aac8d;
  line-height: 30px;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        概要
----------------------------------------------------------------*
----------------------------------------------------------------*/
.overview__wrap {
  padding-top: 60px;
  background-color: #F6F672;
}
.overview__wrap .overview {
  padding-bottom: 60px;
}
.overview__wrap .overview .section__title h2 {
  color: #2aac8d;
  border-top: 1px solid #2aac8d;
  border-bottom: 1px solid #2aac8d;
}
.overview__wrap .overview .section__title p {
  color: #2aac8d;
}
.overview__wrap .overview table {
  margin-top: 60px;
  border: 1px solid #4bd5b4;
  margin-bottom: 60px;
  width: 100%;
  background-color: #fff;
}
.overview__wrap .overview table tr {
  border-bottom: 1px solid #4bd5b4;
}
.overview__wrap .overview table tr:last-child th, .overview__wrap .overview table tr:last-child td {
  border-bottom: none;
}
.overview__wrap .overview table th {
  color: #fff;
  background-color: #4bd5b4;
  width: 30%;
  padding: 30px;
  font-weight: bold;
  border-bottom: 1px solid #fff;
  font-size: 24px;
}
.overview__wrap .overview table td {
  border-bottom: 1px solid #4bd5b4;
  padding: 30px;
  color: #2aac8d;
}
.overview__wrap .overview table td a.map {
  color: #fff;
  font-weight: bold;
  background-color: #2aac8d;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  text-align: center;
  margin-left: 10px;
  margin-top: 10px;
  display: inline-block;
}
.overview__wrap .overview table td a.map:hover {
  background-color: #4bd5b4;
  color: #fff;
}
.overview__wrap .overview table td a {
  color: #2aac8d;
}
.overview__wrap .overview table td dl {
  margin-bottom: 30px;
}
.overview__wrap .overview table td dl dt {
  font-size: 24px;
  color: #2aac8d;
  font-weight: bold;
  margin-bottom: 5px;
}
.overview__wrap .overview table td dl dd {
  font-size: 16px;
  color: #2aac8d;
  padding-left: 16px;
  line-height: 30px;
}
.overview__wrap .overview table td dl dd::first-letter {
  margin-left: -1em;
}
.overview__wrap .overview table td dl dd p {
  margin-left: -1em;
}
.overview__wrap .overview table td dl dd p::first-letter {
  margin-left: 0em;
}
.overview__wrap .overview .overview__text--supplement {
  padding: 30px;
  border: 1px solid #4bd5b4;
  background-color: #fff;
}
.overview__wrap .overview .overview__text--supplement table {
  width: 100%;
  border: none;
  border-top: 1px solid #4bd5b4;
}
.overview__wrap .overview .overview__text--supplement table tr {
  border-bottom: 1px solid #4bd5b4;
}
.overview__wrap .overview .overview__text--supplement table tr:last-child th, .overview__wrap .overview .overview__text--supplement table tr:last-child td {
  border-bottom: none;
}
.overview__wrap .overview .overview__text--supplement table th {
  color: #2aac8d;
  background-color: #fff;
  width: 30%;
  padding: 30px;
  font-weight: bold;
  font-size: 18px;
  border-bottom: none;
}
.overview__wrap .overview .overview__text--supplement table td {
  padding: 30px;
  color: #2aac8d;
  font-size: 16px;
  border-bottom: none;
}
.overview__wrap .overview .overview__text--supplement table td a {
  color: #2aac8d;
}
.overview__wrap .overview .overview__text--supplement table td a:hover {
  color: #4bd5b4;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        応募フォーム
----------------------------------------------------------------*
----------------------------------------------------------------*/
.form {
  margin-top: 60px;
  padding-bottom: 60px;
}
.form .form__link {
  width: 80%;
  max-width: 1800px;
  margin: 0 auto;
  margin-top: 60px;
}
.form .form__link a {
  display: block;
  width: auto;
  line-height: 100px;
  text-align: center;
  background-color: #4bd5b4;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  margin: 0 auto;
}
.form .form__link a:hover {
  background-color: #2aac8d;
  color: #fff;
}

.privacy__wrap {
  background-color: #fff;
  padding-bottom: 60px;
}
.privacy__wrap .privacy h3 {
  font-size: 24px;
  color: #2aac8d;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 30px;
}
.privacy__wrap .privacy dl {
  border: 1px solid #4bd5b4;
  padding: 30px;
  background-color: #fff;
}
.privacy__wrap .privacy dl dt {
  font-size: 16px;
  color: #2aac8d;
  font-weight: bold;
  margin-bottom: 15px;
}
.privacy__wrap .privacy dl dd {
  font-size: 14px;
  color: #2aac8d;
  line-height: 30px;
  padding-left: 16px;
  margin-bottom: 30px;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        フッター
----------------------------------------------------------------*
----------------------------------------------------------------*/
.footer {
  background-color: #4bd5b4;
  padding-bottom: 100px;
}
.footer .footer__logo {
  width: 300px;
  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;
  font-size: 2rem;
  padding-top: 15px;
}
.footer p {
  color: #fff;
  text-align: center;
  padding: 15px;
  font-weight: normal;
  font-size: 14px;
}
.footer h5 {
  font-weight: 700;
  font-size: 1.5rem;
}
.footer h4 {
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  color: #fff;
  padding-top: 15px;
}/*# sourceMappingURL=common.css.map */