@charset "UTF-8";
/* CSS Document */
html {
  font-size: 100%;
}
body {
  font-family: "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
  line-height: 1.7;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 1200 800'%3E%3Cdefs%3E%3CradialGradient id='a' cx='0' cy='800' r='800' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23f8ffff'/%3E%3Cstop offset='1' stop-color='%23f8ffff' stop-opacity='0'/%3E%3C/radialGradient%3E%3CradialGradient id='b' cx='1200' cy='800' r='800' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23f0ffe6'/%3E%3Cstop offset='1' stop-color='%23f0ffe6' stop-opacity='0'/%3E%3C/radialGradient%3E%3CradialGradient id='c' cx='600' cy='0' r='600' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23dfffe8'/%3E%3Cstop offset='1' stop-color='%23dfffe8' stop-opacity='0'/%3E%3C/radialGradient%3E%3CradialGradient id='d' cx='600' cy='800' r='600' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23FFFFFF'/%3E%3Cstop offset='1' stop-color='%23FFFFFF' stop-opacity='0'/%3E%3C/radialGradient%3E%3CradialGradient id='e' cx='0' cy='0' r='800' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23F0FFFF'/%3E%3Cstop offset='1' stop-color='%23F0FFFF' stop-opacity='0'/%3E%3C/radialGradient%3E%3CradialGradient id='f' cx='1200' cy='0' r='800' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23E2FFCE'/%3E%3Cstop offset='1' stop-color='%23E2FFCE' stop-opacity='0'/%3E%3C/radialGradient%3E%3C/defs%3E%3Crect fill='url(%23a)' width='1200' height='800'/%3E%3Crect fill='url(%23b)' width='1200' height='800'/%3E%3Crect fill='url(%23c)' width='1200' height='800'/%3E%3Crect fill='url(%23d)' width='1200' height='800'/%3E%3Crect fill='url(%23e)' width='1200' height='800'/%3E%3Crect fill='url(%23f)' width='1200' height='800'/%3E%3C/svg%3E");
  background-attachment: fixed;
  background-size: cover;
  margin: auto;
}
a {
  text-decoration: none;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
}
/* HEADER
/
/
/
/
/
------------------------------*/
.logo {
  width: 300px;
  margin-top: 10px;
  margin-left: 30px;
}
.main-nav li {
  margin-left: 20px;
}
.main-nav a {
  color: #FFF;
}
.main-nav a:hover {
  color: #0bd;
}
.page-header {
  background-color: #008eb9;
  display: flex;
  justify-content: space-between;
}
/* navigation */
.open-button, .close-button {
  display: none;
}
@media(min-width:960px) {
  .main-nav {
    display: flex;
    font-size: 1.25rem;
    text-transform: uppercase; /*すべての文字を大文字に変換（英語の時のみ）*/
    margin-top: 34px;
    list-style: none;
    margin-right: 30px;
  }
}
@media(max-width:960px) {
  .logo {
    width: 160px;
    margin-top: 12px;
    margin-left: 10px;
  }
  .open-button {
    display: block;
    position: absolute;
    right: 10px;
    top: 30px;
    width: 40px;
    height: 40px;
    cursor: pointer;
  }
  /* ハンバーガーボタン */
  .open-button span, .open-button span:before {
    position: absolute;
    height: 2px;
    width: 25px;
    border-radius: 3px;
    background: #FFF;
    display: block;
    /* 表示するため */
    content: "";
  }
  .open-button span:before {
    bottom: -6px;
  }
  .close-button {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    color: #FFF;
    font-size: 20px;
    padding: 20px;
    cursor: pointer;
    z-index: 2000;
  }
  .page-header nav {
    display: none;
    z-index: 10000;
    /* windowに対して幅を指定 */
    position: fixed;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    width: 40%;
    height: 100%;
    padding-top: 67px;
  }
  .page-header nav ul .li {
    border-bottom: solid 1px rgba(255, 255, 255, 0.5);
  }
  .page-header nav ul .li:first-child {
    border-top: solid 1px rgba(255, 255, 255, 0.5);
  }
  .page-header nav ul li a {
    font-weight: 600;
    line-height: 40px;
    vertical-align: middle;
    text-decoration: none;
    color: #FFF;
  }
  .page-header nav ul li div {
    cursor: pointer;
    font-weight: 600;
    line-height: 40px;
    vertical-align: middle;
    text-decoration: none;
    color: #FFF;
  }
  .page-header nav li div span {
    font-size: 10px;
    padding-left: 5px;
    position: absolute;
  }
  .page-header nav ul li ul li a {
    color: #000;
  }
  .page-header nav ul li ul .pluslist {
    border-bottom: solid 1px rgba(0, 0, 0, 0.5);
    background-color: #FFF;
  }
  .page-header nav ul li ul .pluslist:first-child {
    border-bottom: solid 1px rgba(0, 0, 0, 0.5);
  }
}
/* SECTION1
/
/
/
/
/
------------------------------*/
.section1 {
  padding-top: 60px;
  padding-bottom: 600px;
}
.section1_container {
  display: flex;
  justify-content: space-between;
}
.section1_container1 {
  display: flex;
  align-items: center; /* 縦方向（主に上下中央）に中央揃え */
  margin-top: 120px;
  font-size: 1.6rem;
}
.section1_container2 {
  position: relative; /* 親要素を相対位置に設定 */
  text-shadow: 1px 2px 3px #FFF;
  font-size: 18px;
}
.section1_container2 img {
  position: absolute; /* 子要素を絶対位置に設定 */
  top: 210px; /* 下端に配置 */
  right: 0; /* 右端に配置 */
  z-index: -1; /* テキストよりも背面に配置 */
  width: 100%; /* 画像の幅を80%に縮小 */
  height: auto; /* 高さは自動調整 */
}
.wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 4%;
}
.back_image {
  position: absolute;
  bottom: -100px;
  left: 0;
  z-index: -10;
  opacity: 0.4;
}
@media(max-width:960px) {
  .section1 {
    padding-top: 0px;
    padding-bottom: 480px;
  }
  .section1_container {
    display: block;
    justify-content: space-between;
  }
  .section1_container1 {
    font-size: 1.2rem;
  }
  .section1_container2 {
    margin-top: 20px;
    font-size: 12px;
  }
  .section1_container2 img {
    max-width: 500px;
  }
  .back_image {
    opacity: 0.2;
  }
}
/* SECTION2
/
/
/
/
/
------------------------------*/
.section2 {
  padding-bottom: 240px;
  max-width: 1160px;
  margin: 0 auto;
}
.section2 h2 {
  font-size: 3.2rem;
  text-align: right;
  margin-bottom: 40px;
}
.section2 ul {
  list-style: none;
}
.section2 ul li {
  max-width: 354px;
  margin: 0 auto;
  background-color: #7fcdc6;
  margin-bottom: 40px;
  border-radius: 6px;
  text-align: left;
}
.section2 ul li h3 {
  text-align: center;
  padding-bottom: 4px;
  color: #FFF;
}
.list li.is-hidden {
  visibility: hidden;
  opacity: 0;
  height: 0;
  margin: 0;
  padding: 0;
}
.more {
  text-align: center;
  margin-top: 20px;
}
.more button {
  background: #FFF;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  line-height: 40px;
  width: 180px;
  border-radius: 20px;
  box-shadow: 0 1px 4px rgb(0 0 0 / 20%);
  transition: 0.3s ease-in-out;
}
.more button:hover {
  background: #FFF;
  color: #6bb6ff;
  box-shadow: 0 15px 30px -5px rgb(0 0 0 / 25%);
  transform: translateY(-4px);
}
.section2_container__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 6px 6px 0 0;
}
@media (min-width:960px) {
  .section2 ul {
    margin: 67px auto 0 auto;
    display: flex;
    flex-wrap: wrap;
  }
  .section2 ul li {
    max-width: 327px;
    margin: 0 auto 40px auto;
  }
  .section2_container__img {
    height: 220px;
  }
}
@media(max-width:960px) {
  .section2 h2 {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 40px;
  }
}
/* SECTION3
/
/
/
/
/
------------------------------*/
.section3 {
  padding-bottom: 240px;
}
.section3 h2 {
  font-size: 3.4rem;
  text-align: right;
  margin-bottom: 40px;
}
.section3_timeschedule h3 {
  margin: 90px 0 60px;
  font-size: 38px;
  text-align: center;
}
.section3_box_timeschedule {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
.section3_box_timeschedule p {
  font-size: 28px;
  padding: 30px;
  color: #FFF;
  background-color: #7fcdc6;
}
.section3_box_timeschedule div {
  margin: auto;
}
.section3_box_timeschedule img {
  width: 360px;
  height: auto;
}
.schedule img {
  position: absolute;
  width: 20%;
  left: 400px;
  top: 140px;
}
.section3_timeschedule_zaitaku1 {
  padding-top: 120px;
  font-size: 42px;
  text-align: center;
  position: relative;
}
.section3_timeschedule_zaitaku1 img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -20%);
  z-index: -1000;
  opacity: 0.2;
  width: 40%;
}
.section3_timeschedule_zaitaku2 {
  padding-top: 24px;
  font-size: 24px;
  text-align: center;
}
@media (min-width:960px) {
  .section3_box {
    display: flex;
    justify-content: space-between;
    position: relative;
    min-width: 768px;
    max-width: 960px;
    margin: auto;
  }
  .section3_box:not(:last-child) {
    margin-bottom: 60px;
  }
  .section3_box:nth-child(even) {
    flex-direction: row-reverse;
  }
  .section3_img {
    width: 50%;
    align-items: center;
    padding-right: 10px;
  }
  .section3_img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }
  .talkimage_left {
    position: absolute;
    top: 170px;
    left: -20px;
    width: 52%;
  }
  .talkimage_right {
    position: absolute;
    top: 170px;
    right: -10px;
    width: 52%;
  }
  .section3_text {
    width: 46%;
  }
  .section3_text h3 {
    font-size: 34px;
  }
  .section3_text p {
    line-height: 1.5;
    padding-top: 20px;
    font-size: 18px;
  }
}
@media(max-width:960px) {
  .section3 h2 {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 20px;
  }
  .section3_box {
    display: block;
    justify-content: space-between;
    margin: auto;
    margin-bottom: 80px;
    max-width: 600px;
  }
  .section3_img {
    width: auto;
    align-items: center;
  }
  .section3_img img {
    width: 90%;
    height: auto;
    object-fit: cover;
    padding-bottom: 40px;
    display: block;
    margin: auto;
  }
  .talkimage_left {
    display: block;
    width: 90%;
    margin: auto;
  }
  .talkimage_right {
    display: block;
    width: 90%;
    margin: auto;
  }
  .section3_text {
    width: auto;
  }
  .section3_text h3 {
    font-size: 18px;
  }
  .section3_text p {
    line-height: 1.5;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 12px;
  }
  .section3_box_timeschedule {
    display: block;
    justify-content: space-between;
    margin-bottom: 0px;
  }
  .section3_timeschedule h3 {
    font-size: 20px;
  }
  .section3_box_timeschedule p {
    font-size: 14px;
    text-align: center;
    padding: 16px;
    max-width: 360px;
    margin: auto;
    color: #FFF;
    background-color: #7fcdc6;
  }
  .section3_box_timeschedule img {
    display: block;
    margin: auto;
    padding-top: 10px;
    background-color: #e3f9ea;
  }
  .schedule img {
    display: none;
  }
  .section3_timeschedule_zaitaku1 {
    padding-top: 80px;
    font-size: 18px;
  }
  .section3_timeschedule_zaitaku1 img {
    transform: translate(-50%, -20%);
    max-width: 200px;
    min-width: 200px;
  }
  .section3_timeschedule_zaitaku2 {
    padding-top: 14px;
    font-size: 14px;
    text-align: center;
  }
}
/* SECTION4
/
/
/
/
/
------------------------------*/
.section4 {
  padding-bottom: 240px;
}
.section4 h2 {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 80px;
}
.iframe-wrp {
  position: relative;
  width: 100%;
  padding-top: 75%; /* = height ÷ width × 100 */
}
.iframe-wrp iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media(max-width:960px) {
  .section4 h2 {
    font-size: 1.6rem;
    margin-bottom: 40px;
  }
}
/* SECTION5
/
/
/
/
/
------------------------------*/
.section5 h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 80px;
}
.section5 p {
  text-align: center;
  margin-bottom: 40px;
  font-size: 18px;
}
.box_con {
  max-width: 900px;
  margin: 0 auto;
}
@media(max-width:960px) {
  .section5 h2 {
    font-size: 1.6rem;
    margin-bottom: 40px;
  }
  .section5 p {
    font-size: 12px;
  }
}
@media only screen and (max-width: 960px) {
  .box_con {
    width: 95%;
  }
}
.box_con form {
  width: 100%;
}
.box_con form table {
  width: 100%;
}
.box_con form table tr {
  position: relative;
}
.box_con form table tr:after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  height: 1px;
  border-bottom: dotted #cdcdcd 1px;
}
.box_con form table tr th {
  width: 30%;
  font-weight: normal;
  padding: 1em .5em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media only screen and (max-width: 960px) {
  .box_con form table tr th {
    text-align: center;
    width: 100%;
    display: block;
    background: #8dc065;
    padding: .8em .2em;
    color: #fff;
  }
}
.box_con form table tr th span {
  background: #cd6f55;
  padding: 0 .3em;
  color: #fff;
  margin-left: .5em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.box_con form table tr td {
  padding: 1em .5em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media only screen and (max-width: 960px) {
  .box_con form table tr td {
    padding: 1.5em .5em;
    display: block;
    width: 100%;
  }
}
.box_con form table tr .box_br {
  display: block;
}
.box_con form table tr select {
  border: 1px solid #97ae88;
}
.box_con form table tr label input {
  cursor: pointer;
  display: none;
  vertical-align: middle;
}
.box_con form table tr .radio02-input + label {
  padding-left: 23px;
  margin-right: 20px;
  position: relative;
}
.box_con form table tr .radio02-input + label:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 16px;
  border: 1px solid #999;
  border-radius: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.box_con form table tr .radio02-input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 3px;
  width: 12px;
  height: 12px;
  background: #97ae88;
  border-radius: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.box_con form table tr select, .box_con form table tr input, .box_con form table tr textarea {
  width: 100%;
  height: 3em;
  padding: .5em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: rgba(200, 200, 200, 0.5);
  border: solid 1.6px #777777;
}
.box_con form table tr textarea {
  height: 10em;
}
.btn {
  text-align: center;
}
.btn input {
  display: inline-block;
  background: #7abfd5;
  padding: .5em 4em;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  border: none;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.btn input:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
}
/* SNSボタン全体 */
.sns-button {
  margin: 3px;
  padding: 0px;
  text-align: center;
  list-style: none;
  overflow: hidden;
  padding-bottom: 30px;
}
.sns-button a {
  text-decoration: none;
}
/* 各 SNS ボタンのボックス */
.sns-button li {
  display: inline-block;
  margin: 5px;
  padding: px 0px;
  border-radius: 4px;
  box-shadow: 2.8px 2.8px #4c4550;
  width: 100px;
  height: 100px;
  line-hight: 70px;
}
/* アイコン */
.sns-button i {
  text-align: center;
  font-size: 70px;
  margin: 0px;
  padding: 15px 0px 0px 0px;
  color: #fff;
}
/* アイコンホバー */
.sns-button li:hover {
  opacity: 0.8;
}
/* ボタンの色 */
.button_twitter {
  background: #1da1f2;
}
.button_facebook {
  background: #3b5998;
}
.button_pocket {
  background: #ee4056;
}
.button_pinterest {
  background: #BD081C;
}
.button_line {
  background: #6cc755;
}
.button_instagram {
  background: #CF2E92;
}
.button_tumblr {
  background: #39475D;
}
.button_youtube {
  background: #DA1725;
}
.button_linkedin {
  background: #0e76a8;
}
.button_evernote {
  background: #2DBE60;
}
@media(max-width:960px) {
  /* SNSボタン全体 */
  .sns-button {
    padding-bottom: 50px;
  }
}
/* FOOTER
/
/
/
/
/
------------------------------*/
.page-footer {
  height: 300px;
  padding: 30px 0px;
  font-size: 1.4rem;
  position: relative;
}
.footer__copyright {
  position: absolute;
  bottom: 80px;
  left: 0;
  width: 100%;
  text-align: center;
}
@media(max-width:960px) {
  .page-footer {
    height: 350px;
    font-size: 1.2rem;
  }
  .footer__copyright {
    bottom: 40px;
  }
}
/* Animation
/
/
/
/
/
------------------------------*/
.eachTextAnime span {
  opacity: 0;
}
.eachTextAnime.appeartext span {
  animation: text_anime_on 1s ease-out forwards;
}
@keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* スクロールすると下からふわっとさせるためのコード */
.inview {
  /* 30px下げる */
  transform: translateY(30px);
  /* 要素を透明にする */
  opacity: 0;
  /* 2秒かけて、変化させる */
  transition: transform 2s, opacity 2s;
}
.inview.show {
  transform: translateY(0);
  opacity: 1;
}
.pagetop {
  cursor: pointer;
  position: fixed;
  right: 0px;
  bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  transition: .3s;
  opacity: 0;
}
@media(max-width:960px) {
  .pagetop {
    right: 20px;
    bottom: 20px;
    width: 140px;
    height: 140px;
  }
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* JavaScript
/
/
/
/
/
------------------------------*/
.balloon-character {
  width: 500px;
  height: 500px;
  background: url('../images/character_01.png') no-repeat center center / cover; /* 画像のURLを適切なものに置き換える */
  position: absolute;
  animation: balloonAnimation 4s linear infinite;
  z-index: -10;
  opacity: 0.4;
}
@keyframes balloonAnimation {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(calc(var(--balloonHeight, 50vh) * 2)) rotate(10deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}