@charset "UTF-8";
/*このように @media screen and (width: 767px) { } を書かなくても、
PC用のcssを書きながらスマホ用の表示を書き足すことができます！ */
/*========= ページトップのためのCSS ===============*/
/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  -webkit-transform: translateY(150px);
          transform: translateY(150px);
}
@media screen and (max-width: 767px) {
  #page-top {
    right: 15px;
    bottom: 28px;
    font-size: 9px;
  }
}

/*　上に上がる動き　*/
#page-top.UpMove {
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}

@-webkit-keyframes UpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(150px);
            transform: translateY(150px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes UpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(150px);
            transform: translateY(150px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*　下に下がる動き　*/
#page-top.DownMove {
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
}

@-webkit-keyframes DownAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(150px);
            transform: translateY(150px);
  }
}

@keyframes DownAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(150px);
            transform: translateY(150px);
  }
}
/*画像の切り替えと動き*/
#page-top a {
  /*aタグの形状*/
  display: block;
  width: 70px;
  height: 70px;
  color: #333;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
  /*背景画像の指定*/
  background: url("../img/ship1.png") no-repeat center;
  background-size: contain;
  font-weight: lighter;
}
@media screen and (max-width: 767px) {
  #page-top a {
    width: 40px;
    height: 40px;
    font-size: 8px;
  }
}

#page-top.floatAnime a {
  width: 80px;
  height: 80px;
  /*背景画像の指定*/
  background: url("../img/ship2.png") no-repeat center;
  background-size: contain;
  /*アニメーションの指定*/
  -webkit-animation: floatAnime 2s linear infinite;
          animation: floatAnime 2s linear infinite;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  #page-top.floatAnime a {
    width: 40px;
    height: 40px;
    font-size: 6px;
  }
}

@-webkit-keyframes floatAnime {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 0;
  }
  25% {
    -webkit-transform: translateX(-6px);
            transform: translateX(-6px);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(6px);
            transform: translateX(6px);
    opacity: 1;
  }
}

@keyframes floatAnime {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 0;
  }
  25% {
    -webkit-transform: translateX(-6px);
            transform: translateX(-6px);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(6px);
            transform: translateX(6px);
    opacity: 1;
  }
}
/*Page Topと書かれたテキストの位置*/
#page-top span {
  position: absolute;
  bottom: -20px;
  right: 3px;
  color: #666;
}
@media screen and (max-width: 767px) {
  #page-top span {
    font-size: 8px;
    bottom: -24px;
    right: 1px;
  }
  #page-top span a {
    font-size: 6px;
  }
}

/*検証のためのCSS*/
section {
  padding: 500px 0;
}

.text-test {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  background-image: none;
  border: 1px solid #707070;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  padding: 0.4em 0.8em;
  width: 100%;
  height: 38px;
}

.text-test:focus {
  border: 1px solid #707070;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.textarea-text {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  background-image: none;
  border: 1px solid #707070;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  height: 240px;
  padding: 0.4em 0.8em;
  width: 100%;
}

.textarea-text:focus {
  border: 1px solid #707070;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.select-test {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: transparent url(../../img/select-arrow@2x.png) no-repeat center right 8px/16px 16px;
  border: 1px solid #707070;
  border-radius: 0;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  font-size: 1em;
  padding-left: 12px;
  width: 100%;
  height: 38px;
  margin-bottom: 30px;
}

.select-test::-ms-expand {
  display: none;
}

.select-test:focus {
  border: 1px solid rgba(0, 0, 0, 0.32);
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

/* デフォルトのチェックボックスを非表示 */
.form-radio {
  display: none;
  /* オリジナルボタンを設置するため、paddingでテキストの左側にスペースを確保 */
  /* afterは枠の中のチェックマークとして利用するため、デザインを適用する
  デフォルトのチェックマークはopacity:0で透明にしておく*/
  /* 非表示にしたデフォルトのラジオボタンにチェックが入ると、オリジナルボタンのチェックも透明を解除して表示する */
}
.form-radio + span {
  cursor: pointer;
  display: inline-block;
  padding: 0 0 0 40px;
  position: relative;
  /* 擬似要素beforeとafterを共通でセット */
  /* beforeをラジオボタンの枠として利用するため、デザインを適用する */
}
@media screen and (max-width: 767px) {
  .form-radio + span {
    padding: 0 0 0 20px;
  }
}
.form-radio + span::before, .form-radio + span::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form-radio + span::before {
  background: #fff;
  border: 1px solid #707070;
  display: block;
  left: 0;
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 767px) {
  .form-radio + span::before {
    width: 10px;
    height: 10px;
    display: inline-block;
  }
}
.form-radio::after {
  border: 1px solid transparent;
  left: 0;
  width: 20px;
  height: 20px;
  background: transparent url(../../img/checkbox@2x.png) no-repeat center center/contain;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .form-radio::after {
    width: 10px;
    height: 10px;
    display: inline-block;
  }
}
.form-radio:checked + span::after {
  opacity: 1;
}

.contact-form-radio {
  margin-top: 32px;
}
.contact-form-radio [type=radio] {
  display: none;
}
.contact-form-radio span {
  display: inline-block;
  padding-left: 24px;
  position: relative;
  margin-right: 30px;
}
@media screen and (max-width: 767px) {
  .contact-form-radio span {
    margin-right: 10px;
    font-size: 12px;
    padding-left: 16px;
  }
}
.contact-form-radio span::before {
  content: " ";
  width: 20px;
  height: 20px;
  border: 1px solid #707070;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #fff;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .contact-form-radio span::before {
    width: 10px;
    height: 10px;
  }
}
.contact-form-radio span::after {
  content: "";
  width: 11px;
  height: 11px;
  position: absolute;
  left: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  display: none;
}
@media screen and (max-width: 767px) {
  .contact-form-radio span::after {
    width: 5.5px;
    height: 5.5px;
    left: 2.5px;
  }
}
.contact-form-radio [type=radio]:checked + span::after {
  display: block;
}

*,
*::before *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

footer {
  color: #E4E4E4;
  background: #505050;
  padding: 30px 0 10px 0;
}

.footer_wrapper {
  max-width: 1000px;
  margin: auto;
  width: 90%;
}
.footer_contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}

.footer_left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: calc(50% - 50px);
}
@media screen and (max-width: 767px) {
  .footer_left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 50%;
  }
}

.footer_title {
  width: 200px;
  font-weight: bold;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .footer_title {
    font-size: 12px;
    display: block;
  }
}

.footer_left_content {
  width: 300px;
}
@media screen and (max-width: 767px) {
  .footer_left_content {
    width: 100%;
  }
}
.footer_left_content p {
  font-size: 14px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .footer_left_content p {
    font-size: 6px;
    margin-bottom: 10px;
  }
}

.contact_content h3 {
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .contact_content h3 {
    font-size: 6px;
    margin-bottom: 10px;
  }
}
.contact_content p {
  font-size: 12px;
  font-weight: lighter;
}
@media screen and (max-width: 767px) {
  .contact_content p {
    font-size: 6px;
  }
}

.contact_content_img {
  width: 25%;
}
.contact_content_img img {
  width: 60px;
  height: 60px;
}

.contact_content_title {
  width: 75%;
}

.footer_right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: auto;
  display: block;
  max-width: calc(50% - 15px);
}
@media screen and (max-width: 767px) {
  .footer_right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-left: 10px;
  }
}

.footer_title_right {
  width: 150px;
}
@media screen and (max-width: 767px) {
  .footer_title_right {
    width: 100%;
  }
}
.footer_title_right h3 {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .footer_title_right h3 {
    font-size: 12px;
    margin-bottom: 10px;
  }
}

.footer_left_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .footer_left_menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
  }
}

.footer_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 60px;
  font-size: 12px;
}
.footer_menu a {
  color: #E4E4E4;
}
.footer_menu a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .footer_menu {
    font-size: 6px;
    margin-bottom: 20px;
  }
}
.footer_menu li:not(:first-child) {
  margin-left: 20px;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .footer_menu li:not(:first-child) {
    font-size: 6px;
    margin-left: 10px;
  }
}

.footer_main_organizer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .footer_main_organizer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 10px;
    width: 100%;
  }
}
.footer_main_organizer h4 {
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .footer_main_organizer h4 {
    font-size: 6px;
    margin-bottom: 20px;
  }
}

.footer_Collaborator {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .footer_Collaborator {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.footer_Collaborator h4 {
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .footer_Collaborator h4 {
    font-size: 8px;
  }
}

.footer_collaborator_item h4:not(:last-child) {
  margin-bottom: 10px;
}

.copyright {
  text-align: center;
  font-size: 12px;
  font-weight: lighter;
}
@media screen and (max-width: 767px) {
  .copyright {
    font-size: 8px;
  }
}

.footer05 a {
  color: #808080;
  text-decoration: none;
}

.footer05 li a:hover {
  text-decoration: underline;
}

.footer05 .wrap h3 {
  margin: 0 0 10px 0;
  padding: 0;
  border-bottom: 1px #c4c4c4 solid;
}

.footer05 .wrap p {
  margin: 0;
  padding: 0 0 20px 0;
}

.footer05 .wrap .box {
  width: 22%;
}

.footer05 .wrap .box ul {
  margin: 0;
  padding: 0 0 20px 0;
  list-style: none;
}

.footer05 .wrap .copyright {
  width: 100%;
  padding: 20px 0 0 0;
}

header {
  background-color: #3EA1D1;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  background: #3EA1D1;
  height: 60px;
  opacity: 0.9;
}
@media screen and (max-width: 767px) {
  header {
    padding: 20px 0;
    height: 60px;
  }
}

.header__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}
.header__nav li a {
  color: #FFFFFF;
  font-size: 12px;
  line-height: 60px;
  font-weight: normal;
}
.header__nav li a:hover {
  opacity: 0.7;
}
.header__nav li:not(:first-child) {
  margin-left: 16px;
}

.drawer-icon {
  display: none;
  position: fixed;
  top: 22px;
  right: 16px;
  z-index: 303;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}
@media screen and (max-width: 767px) {
  .drawer-icon {
    display: block;
  }
}
.drawer-icon.is-active .drawer-icon-bar1 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 8px;
}
.drawer-icon.is-active .drawer-icon-bar2 {
  display: none;
}
.drawer-icon.is-active .drawer-icon-bar3 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 8px;
}

.drawer-icon-bars {
  width: 40px;
  height: 30px;
  display: block;
  position: relative;
}

.drawer-icon-bar1,
.drawer-icon-bar2,
.drawer-icon-bar3 {
  position: absolute;
  width: 30px;
  height: 2px;
  background: #FFFFFF;
  top: 0;
  left: 0;
}

.drawer-icon-bar2 {
  top: 8px;
}

.drawer-icon-bar3 {
  top: 16px;
}

.drawer-content {
  background-color: #333333;
  opacity: 0.9;
  width: 270px;
  height: 100%;
  top: 60px;
  right: 0;
  position: fixed;
  z-index: 299;
  -webkit-transform: translateX(105%);
          transform: translateX(105%);
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}
.drawer-content.is-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer-content-item a {
  font-size: 18px;
  display: block;
  height: 56px;
  color: #FFFFFF;
  padding: 0px;
  position: relative;
  font-weight: bold;
  text-align: right;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .drawer-content-item a {
    padding: 46px 0px;
    width: 200px;
  }
}

.top__header {
  height: 100vh;
  width: auto;
  padding: 40px 0;
  background: url(../../img/top-header.JPEG) center center/cover no-repeat;
  background-size: cover;
  -webkit-animation: zoom-in 15s infinite;
          animation: zoom-in 15s infinite; /* 無限に続く10秒のズームインアニメーション */
  position: relative;
}

@-webkit-keyframes zoom-in {
  0% {
    background-size: 100% 100%;
    background-position: center center; /* アニメーションの開始地点を画像の中心の底辺に設定 */
  }
  100% {
    background-size: 110% 110%;
    background-position: center center; /* アニメーションの終了地点を画像の中心の上辺に設定 */
  }
}

@keyframes zoom-in {
  0% {
    background-size: 100% 100%;
    background-position: center center; /* アニメーションの開始地点を画像の中心の底辺に設定 */
  }
  100% {
    background-size: 110% 110%;
    background-position: center center; /* アニメーションの終了地点を画像の中心の上辺に設定 */
  }
}
.top__header__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .top__header__items {
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.top__header__item {
  font-size: 16px;
}
.top__header__item:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .top__header__item {
    font-size: 12px;
    text-align: center;
  }
}
.top__header__item:not(:last-child) {
  margin-right: 22px;
}
.top__header__item a {
  color: #fff;
}

.header__top__title1 {
  width: 150px;
  height: 270px;
  top: 25%;
  right: 10%;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .header__top__title1 {
    width: 100px;
    height: 180px;
    right: 15%;
  }
}

.header__top__title_2 {
  font-size: 24px;
  color: #fff;
  font-weight: bold;
  position: absolute;
  line-height: 1.7;
  left: 10%;
  bottom: 10%;
}

/*=== 9-1-4 矢印が動いてスクロールを促す  ====*/
/*スクロールダウン全体の場所*/
.scrolldown4 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  bottom: 1%;
  right: 50%;
  /*矢印の動き1秒かけて永遠にループ*/
  -webkit-animation: arrowmove 2s ease-in-out infinite;
          animation: arrowmove 2s ease-in-out infinite;
}

/*下からの距離が変化して全体が下→上→下に動く*/
@-webkit-keyframes arrowmove {
  0% {
    bottom: 1%;
  }
  50% {
    bottom: 3%;
  }
  100% {
    bottom: 1%;
  }
}
@keyframes arrowmove {
  0% {
    bottom: 1%;
  }
  50% {
    bottom: 3%;
  }
  100% {
    bottom: 1%;
  }
}
/*Scrollテキストの描写*/
.scrolldown4 span {
  /*描画位置*/
  position: absolute;
  left: -20px;
  bottom: 10px;
  /*テキストの形状*/
  color: #eee;
  font-size: 12px;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

/* 矢印の描写 */
.scrolldown4:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  right: -7px;
  /*矢印の形状*/
  width: 3px;
  height: 20px;
  background: #eee;
  -webkit-transform: skewX(-31deg);
          transform: skewX(-31deg);
}

.scrolldown4:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  right: 0;
  /*矢印の形状*/
  width: 2px;
  height: 50px;
  background: #eee;
}

.question {
  padding: 80px 0px;
}

.page_title {
  text-align: center;
}

.qa__item {
  max-width: 600px;
  margin-bottom: 10px;
  border: none;
  border-radius: 5px;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.02), 0 2px 3px -2px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.02), 0 2px 3px -2px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  margin-right: auto;
  margin-left: auto;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .qa__item {
    font-size: 12px;
  }
}
.qa__item:not(:first-child) {
  margin-top: 30px;
}

.qa__item summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 1em 2em 1em 3em;
  color: #333333;
  font-weight: 600;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .qa__item summary {
    font-size: 12px;
  }
}

.qa__item summary::before,
.qa__item p::before {
  position: absolute;
  left: 1em;
  font-weight: 600;
  font-size: 1.3em;
}
@media screen and (max-width: 767px) {
  .qa__item summary::before,
  .qa__item p::before {
    font-size: 12px;
  }
}

.qa__item summary::before {
  color: #75bbff;
  content: "Q";
  -webkit-transform: translateX(-2px);
          transform: translateX(-2px);
}

.qa__item summary::after {
  -webkit-transform: translateY(-25%) rotate(45deg);
          transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 3px solid rgba(51, 51, 51, 0.7019607843);
  border-right: 3px solid rgba(51, 51, 51, 0.7019607843);
  content: "";
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.qa__item[open] summary::after {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}

.qa__item p {
  position: relative;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
  opacity: 0;
  margin: 0;
  padding: 0.3em 3em 1.5em;
  color: #333;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s;
}

.qa__item[open] p {
  opacity: 1;
}

.qa__item p::before {
  color: #ff8d8d;
  line-height: 1.2;
  content: "A";
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.contact {
  padding: 80px 0px;
}

.contact__subtitle {
  margin-top: 64px;
  margin-bottom: 64px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
}

.contact__subtitle_inline {
  color: #E7728E;
}

.contact__inner {
  max-width: 600px;
  margin: auto;
  width: 90%;
}

input[type=text],
input[type=email],
textarea {
  width: 100%;
  font-style: 16px;
  border: none;
  -webkit-box-shadow: 5px 6px 15px rgba(96, 96, 96, 0.1607843137);
          box-shadow: 5px 6px 15px rgba(96, 96, 96, 0.1607843137);
  padding: 2px 5px;
}

input[type=text],
input[type=email] {
  height: 40px;
}

textarea {
  min-height: 122px;
  resize: vertical;
}

.contact__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .contact__item {
    display: block;
  }
}

.contact__title {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
  height: 40px;
  padding: 12px;
  background-color: rgba(62, 161, 209, 0.7019607843);
  color: #FFFFFF;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact__title {
    width: 130px;
    font-size: 12px;
    padding: 12px;
    line-height: 12px;
  }
}
.contact__title::after {
  content: "";
  display: block;
  position: absolute;
  right: -8px;
  top: 0;
  border-style: solid;
  border-width: 20px 0 20px 8px;
  border-color: transparent transparent transparent rgba(62, 161, 209, 0.7019607843);
}
@media screen and (max-width: 767px) {
  .contact__title::after {
    display: none;
  }
}

.contact__text__inline {
  color: #E7728E;
  font-size: 12px;
  vertical-align: super;
}

.contact__input {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 320px;
          flex: 0 0 320px;
  margin-left: 18px;
  line-height: 40px;
}
@media screen and (max-width: 767px) {
  .contact__input {
    margin-left: 0;
  }
}

.contact__radio__wrap {
  border: solid 1px #fff;
  -webkit-box-shadow: 5px 5px 15px rgba(96, 96, 96, 0.1607843137);
          box-shadow: 5px 5px 15px rgba(96, 96, 96, 0.1607843137);
  border-radius: 1px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.contact__radio {
  position: relative;
}

.contact__radio__input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.contact__radio__input:checked + .contact__radio__part {
  background-color: #3EA1D1;
  color: #fff;
  border-radius: 1px;
}

.contact__radio__part {
  display: block;
  background: #fff;
  color: #3EA1D1;
  height: 38px;
  width: 80px;
  text-align: center;
}

.contact__footer__text {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .contact__privacy__link {
    font-size: 12px;
  }
}
.contact__privacy__link span {
  color: #3EA1D1;
  text-decoration: underline;
  font-weight: bold;
}

.contact__privacy {
  position: relative;
  height: 22px;
  width: 22px;
  display: inline-block;
  vertical-align: middle;
}

.contact__privacy__input {
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0;
}
.contact__privacy__input:checked + .contact__privacy__part {
  width: 10px;
  border-top: 0;
  border-left: 0;
  background-color: transparent;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: -5px;
  left: 5px;
}
@media screen and (max-width: 767px) {
  .contact__privacy__input:checked + .contact__privacy__part {
    width: 8px;
    top: 3px;
    left: 8px;
  }
}

.contact__privacy__part {
  display: inline-block;
  background: #FFFFFF;
  border: 1px solid #3EA1D1;
  width: 22px;
  height: 22px;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .contact__privacy__part {
    width: 12px;
    height: 12px;
    top: 5px;
    left: 8px;
  }
}

/*--------------------------------------
  モーダル表示上から_002
--------------------------------------*/
.modal_wrap input {
  display: none;
}

.modal_overlay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  -webkit-transition: opacity 0.5s, -webkit-transform 0s 0.5s;
  transition: opacity 0.5s, -webkit-transform 0s 0.5s;
  transition: opacity 0.5s, transform 0s 0.5s;
  transition: opacity 0.5s, transform 0s 0.5s, -webkit-transform 0s 0.5s;
  -webkit-transform: scale(0);
          transform: scale(0);
}

.modal_trigger {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.modal_content {
  -ms-flex-item-align: center;
      align-self: center;
  width: 60%;
  padding: 30px 80px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  line-height: 1.4em;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  overflow-y: auto;
  max-height: 90%;
}
@media screen and (max-width: 767px) {
  .modal_content {
    width: 90%;
    padding: 20px 40px;
  }
}
.modal_content h4 {
  margin-top: 8px;
  text-align: left;
  font-size: 12px;
}

.modal_title {
  font-size: 16px;
  padding-bottom: 20px;
  position: relative;
  margin-bottom: 30px;
  font-weight: bold;
}
.modal_title::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background: #3EA1D1;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.close_button {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 24px;
  cursor: pointer;
}

.modal_wrap input:checked ~ .modal_overlay {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.modal_wrap input:checked ~ .modal_overlay .modal_content {
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

.open_button {
  color: #4f96f6;
  background-color: #eeeeee;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: block;
  margin-top: 40px;
  margin-bottom: 1px;
  padding: 12px 2px;
  max-width: 300px;
  text-decoration: none;
}

.open-button:active {
  /*ボタンを押したとき*/
  -webkit-transform: translateY(2px);
  transform: translateY(2px); /*下に動く*/
}

/*アイコンを表示*/
.open-button:after {
  font-family: "Font Awesome 5 Free";
  content: "\f2d0";
  padding-left: 8px;
}

/*ラベルホバー時*/
.open-button:hover {
  color: #FFFFFF;
  background-color: #4f96f6;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

/* h2 プライマリカラー*/
.modal_title2:before {
  border-bottom: 4px solid #6bb6ff;
  width: 100%;
}

/* h2 セカンダリカラー*/
.modal_title2:after {
  border-bottom: 4px solid #c8e4ff;
  width: 100%;
}

/* 送信ボタン -----------------
--------------------------------------------
*/
.submit-btn {
  /* buttonタグのリセットCSS */
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 5px;
  color: #fff;
  padding: 8px 40px;
  background-color: #3EA1D1;
  cursor: pointer; /* ポインターカーソルを表示 */
  margin-top: 60px;
}
.submit-btn:hover {
  opacity: 0.7;
}

.submit-btn[disabled] {
  background-color: #ccc;
  cursor: not-allowed; /* クリック不可のカーソルを表示 */
}

.top__concept {
  padding: 80px 0px 0px 0px;
}
@media screen and (max-width: 767px) {
  .top__concept {
    padding: 80px 0px 80px 0px;
  }
}

.concept__comment {
  text-align: center;
}
.concept__comment h3 {
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .concept__comment h3 {
    font-size: 12px;
  }
  .concept__comment h3:last-child {
    margin-bottom: 10px;
  }
}

.wave {
  position: relative;
  height: 200px; /*何も表示されない場合は各波の親要素に高さを持たせましょう。*/
  background: #fff; /*背景を塗りつぶして重ねた波を表現したい場合は、波を描画する親要素に波と同じ背景色を設定しましょう。*/
}
@media screen and (max-width: 767px) {
  .wave {
    display: none;
  }
}

canvas {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  canvas {
    display: none;
  }
}

.top__feature {
  background-color: #3EA1D1;
  padding: 120px;
}
@media screen and (max-width: 767px) {
  .top__feature {
    padding: 60px;
  }
}

.concept__warapper {
  max-width: 900px;
  width: 90%;
  margin: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.island__feature1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .island__feature1 {
    display: block;
  }
}

.feature1__item__left {
  width: 50%;
  color: #fff;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .feature1__item__left {
    width: 100%;
    text-align: center;
  }
}
.feature1__item__left img {
  width: 180px;
  height: 180px;
}
.feature1__item__left h3 {
  font-size: 20px;
  margin-bottom: 60px;
}
.feature1__item__left p {
  font-size: 12px;
  font-weight: lighter;
}

.feature1__item__right {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .feature1__item__right {
    width: 100%;
    margin-bottom: 60px;
  }
}

.feature1__text {
  margin-bottom: 60px;
  color: #fff;
  font-size: 16px;
}

.island__feature2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .island__feature2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.feature2__item__left {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .feature2__item__left {
    width: 100%;
    margin-bottom: 60px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.feature2__item__right {
  width: 35%;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .feature2__item__right {
    width: 100%;
    text-align: center;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.feature2__item__right img {
  width: 180px;
  height: 180px;
}
.feature2__item__right h3 {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 20px;
}
.feature2__item__right p {
  font-size: 12px;
  font-weight: lighter;
}
@media screen and (max-width: 767px) {
  .feature2__item__right p {
    margin-bottom: 60px;
  }
}

.feature2__text {
  color: #fff;
  font-size: 16px;
}

.rotate {
  -webkit-animation-name: anim_s;
          animation-name: anim_s;
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
}

@-webkit-keyframes anim_s {
  50% {
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
  100% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
}

@keyframes anim_s {
  50% {
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
  100% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
}
.animation {
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
  width: 128px;
}

.top__plans {
  background-color: #fff;
  padding-top: 100px;
  padding-bottom: 0;
}

.plans__items1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .plans__items1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.plans__items1 .plans__left__item {
  padding: 30px;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .plans__items1 .plans__left__item {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
    padding: 0;
  }
}
.plans__items1 .plans__left__item img {
  height: 80px;
  width: 180px;
}
@media screen and (max-width: 767px) {
  .plans__items1 .plans__left__item img {
    margin-top: 20px;
    height: 40px;
    width: 90px;
  }
}
.plans__items1 .plans__left__item h3 {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 14px;
  margin-top: 14px;
}
@media screen and (max-width: 767px) {
  .plans__items1 .plans__left__item h3 {
    font-size: 20px;
  }
}
.plans__items1 .plans__left__item p {
  font-weight: lighter;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .plans__items1 .plans__left__item p {
    font-size: 12px;
  }
}
.plans__items1 .plans__right__item {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .plans__items1 .plans__right__item {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }
}

.plans__gallery {
  margin-top: 40px;
  margin-bottom: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .plans__gallery {
    display: none;
  }
}

.gallery__img {
  width: 30%;
}
.gallery__img img {
  height: 220px;
}

.more__button {
  margin: 40px 0 100px 0;
}
@media screen and (max-width: 767px) {
  .more__button {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .more__button a span {
    font-size: 12px;
  }
}

.btn {
  padding: 5px 20px;
}

.more__button__contact {
  margin: 70px 0 0 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .more__button__contact {
    padding: 10px;
    margin: 40px 0 0 0;
  }
}
.more__button__contact.plans {
  text-align: left;
  margin: 40px 0 0 0;
}
@media screen and (max-width: 767px) {
  .more__button__contact.plans {
    padding-left: 0px;
  }
}
@media screen and (max-width: 767px) {
  .more__button__contact.plans a {
    padding: 5px 10px;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .more__button__contact.plans a span {
    font-size: 10px;
  }
}
@media screen and (max-width: 767px) {
  .more__button__contact a span {
    font-size: 12px;
  }
}

.plans__items2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .plans__items2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.plans__items2 .plans__left__item {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .plans__items2 .plans__left__item {
    width: 100%;
  }
}
.plans__items2 .plans__right__item {
  padding: 30px 0 0 60px;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .plans__items2 .plans__right__item {
    width: 100%;
    padding: 0px;
  }
}
.plans__items2 .plans__right__item img {
  height: 80px;
  width: 180px;
}
@media screen and (max-width: 767px) {
  .plans__items2 .plans__right__item img {
    margin-top: 20px;
    height: 40px;
    width: 90px;
  }
}
.plans__items2 .plans__right__item h3 {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 14px;
  margin-top: 14px;
}
@media screen and (max-width: 767px) {
  .plans__items2 .plans__right__item h3 {
    font-size: 20px;
  }
}
.plans__items2 .plans__right__item p {
  font-weight: lighter;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .plans__items2 .plans__right__item p {
    font-size: 12px;
  }
}

.plans__comment {
  text-align: center;
  font-size: 16px;
  margin-bottom: 100px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .plans__comment {
    font-size: 12px;
    margin-bottom: 50px;
  }
}

/*==================================================
スライダーのためのcss
===================================*/
.slider img {
  width: 100%; /*スライダー内の画像を横幅100%に*/
  height: auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/
.slider .slick-slide {
  margin: 0 10px; /*スライド左右の余白調整*/
}

.access {
  background-color: #fff;
  padding: 100px 0;
}

.access__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .access__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.access__items__left {
  padding: 100px 0;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .access__items__left {
    width: 100%;
    padding: 30px 0 0 0;
  }
}
.access__items__left p {
  font-size: 16px;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .access__items__left p {
    font-size: 12px;
  }
}

.access__items__right {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .access__items__right {
    width: 100%;
    margin-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  .access__image {
    width: 100%;
  }
}

.plans01 {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .plans01 {
    padding: 80px 0 0 0;
  }
}

.plans__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.plans__items__left {
  width: 45%;
}

.plan1__top__img {
  margin-bottom: 10px;
}

.plan1__left__contents {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .plan1__left__contents {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.plan1__second__img {
  width: 100%;
  margin-bottom: 10px;
}

.plans__items__right {
  width: 50%;
}

.plans__right__contents {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .plans__right__contents {
    margin-bottom: 20px;
  }
}
.plans__right__contents p {
  line-height: 1.6;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .plans__right__contents p {
    display: none;
  }
}

.plans__title {
  font-size: 32px;
  font-weight: bold;
  padding: 50px;
}
@media screen and (max-width: 767px) {
  .plans__title {
    font-size: 20px;
    padding: 30px 0px 30px 0;
  }
}

.plans__subtitle {
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 24px;
  position: relative;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .plans__subtitle {
    font-size: 12px;
    padding-bottom: 12px;
    margin-bottom: 16px;
    margin-top: 20px;
  }
}
.plans__subtitle::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background: #3EA1D1;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .plans__subtitle::after {
    height: 1.5px;
    width: 30px;
  }
}

.plans__price {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .plans__price {
    margin-bottom: 20px;
  }
}
.plans__price p {
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .plans__price p {
    font-size: 10px;
  }
}

.plans__price__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}
.plans__price__item p {
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .plans__price__item p {
    font-size: 10px;
  }
}

.plans__price__left {
  width: 30%;
}

.plans__price__title {
  height: 24px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .plans__price__title {
    font-size: 10px;
    margin-bottom: 10px;
    font-weight: bold;
  }
}

.plans__price__right {
  width: 60%;
}

.price__attention {
  font-size: 12px;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .price__attention {
    font-size: 8px;
  }
}

.plans01__schedule {
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .plans01__schedule {
    font-size: 16px;
    padding: 30px 0px 30px 0px;
  }
  .plans01__schedule img {
    width: 100%;
  }
}

.schedule__title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  padding: 60px;
}
@media screen and (max-width: 767px) {
  .schedule__title {
    font-size: 16px;
    padding: 0px;
    margin-bottom: 20px;
  }
}

.plans02 {
  padding: 100px 0 0 0;
}
@media screen and (max-width: 767px) {
  .plans02 {
    padding: 50px 0 0 0;
  }
}

.page__title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  padding-bottom: 24px;
  position: relative;
  margin-bottom: 60px;
}
.page__title.subtitle {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .page__title.subtitle {
    margin-top: 30px;
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .page__title {
    font-size: 30px;
  }
}
.page__title::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background: #3EA1D1;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

/*== ボタン共通設定 */
.btn {
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
  overflow: hidden;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  border: 1px solid #3EA1D1; /* ボーダーの色と太さ */
  padding: 10px 30px;
  text-align: center;
  outline: none;
  /*アニメーションの指定*/
  -webkit-transition: ease 0.2s;
  transition: ease 0.2s;
}

/*ボタン内spanの形状*/
.btn span {
  position: relative;
  z-index: 3; /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color: #3EA1D1;
  font-size: 14px;
}

.btn:hover span {
  color: #fff;
}

/*== 背景が流れる（上から下） */
.bgtop:before {
  content: "";
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #3EA1D1; /*背景色*/
  width: 100%;
  height: 0;
  /*アニメーション*/
  -webkit-transition: 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
}

/*hoverした際の形状*/
.bgtop:hover:before {
  height: 100%;
  background-color: #3EA1D1;
}

body {
  line-height: 1.67;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
}

body:lang(en) {
  font-family: "Yu Mincho", serif;
}

body:lang(ja) {
  font-family: "Yu Mincho", serif;
}

.container {
  max-width: 1200px;
  width: 90%;
  margin: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.reserve_btn{ 
  padding: 20px;
  margin-left: auto;

}

.jaran_reserve{

  
}

.contact{
  padding-bottom: 200px;
}


element.style {
}
.contact__inner {
    max-width: 400px;
    margin: auto;
    width: 90%;
}