@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, 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-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  border: 0;
  margin: 0;
  padding: 0;
  background: none transparent;
  vertical-align: middle;
  font-size: inherit;
  color: inherit;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

/*-----------------------------
カラー
-----------------------------*/
/*-----------------------------
フォント
-----------------------------*/
.bold {
  font-weight: bold;
}

.marker {
  background: #ffff00;
}

::-moz-selection {
  background: #87bec7;
  color: #fff;
}

::selection {
  background: #87bec7;
  color: #fff;
}

/* Windows 用 Medium 指定の游ゴシック */
@font-face {
  font-family: "Yu Gothic M";
  src: local("Yu Gothic Medium");
}

/* font-weight: bold の時は通常どおり Bold 書体を使わせる */
@font-face {
  font-family: "Yu Gothic M";
  src: local("Yu Gothic Bold");
  font-weight: bold;
}

html {
  font-size: 62.5%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", HelveticaNeue, "Segoe UI", "游ゴシック体", YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", HiraKakuProN-W3, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  color: #212121;
}

/*-----------------------------
デバイス対応
-----------------------------*/
.pad_off {
  display: block;
}

@media (max-width: 1080px) {
  .pad_off {
    display: none;
  }
}

.tab_off {
  display: block;
}

@media (max-width: 768px) {
  .tab_off {
    display: none;
  }
}

.sp_off {
  display: block;
}

@media (max-width: 640px) {
  .sp_off {
    display: none;
  }
}

.pad_on {
  display: block;
}

@media (min-width: 1080px) {
  .pad_on {
    display: none;
  }
}

.tab_on {
  display: block;
}

@media (min-width: 768px) {
  .tab_on {
    display: none;
  }
}

.sp_on {
  display: block;
}

@media (min-width: 640px) {
  .sp_on {
    display: none;
  }
}

/*-----------------------------
全体構造
-----------------------------*/
html {
  height: 100%;
}

body {
  height: 100%;
  background: #fff;
  letter-spacing: 0.05em;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

p {
  font-size: 1.6rem;
  letter-spacing: 0em;
  line-height: 1.6;
  text-align: justify;
}

@media (max-width: 640px) {
  p {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}

a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
  cursor: pointer;
  display: block;
  line-height: 1.6;
}

li {
  line-height: 1.8;
}

@media (max-width: 640px) {
  li {
    line-height: 1.6;
  }
}

/*-----------------------------
画像サイズ
-----------------------------*/
img {
  width: 100%;
  height: auto;
}

/*-----------------------------
レイアウト
-----------------------------*/
.article_end {
  padding-bottom: 40px;
}

article, aside {
  padding: 80px 0;
}

@media (max-width: 768px) {
  article, aside {
    padding: 40px 0;
  }
}

.container1080 {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 1150px) {
  .container1080 {
    max-width: 92%;
    margin: 0 auto;
  }
}

.container700 {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 960px) {
  .container700 {
    max-width: 92%;
    margin: 0 auto;
  }
}

.header_height {
  margin-top: -70px;
  padding-top: 70px;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 768px) {
  .flex {
    display: block;
  }
}

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

@media (max-width: 768px) {
  .flex_between {
    display: block;
  }
}

.flex_around {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

@media (max-width: 768px) {
  .flex_around {
    display: block;
  }
}

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

@media (max-width: 768px) {
  .flex_end {
    display: block;
  }
}

.reserve {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-flow: row-reverse;
          flex-flow: row-reverse;
}

/*-----------------------------
パーツ
-----------------------------*/
/*背景*/
.bg {
  background: rgba(135, 190, 199, 0.1);
  margin-left: 2%;
  margin-right: 2%;
}

/*タイトル*/
.h2_title {
  font-size: 2.4rem;
  font-weight: bold;
  color: #87bec7;
  text-align: center;
  margin-bottom: 2em;
  line-height: 1.6;
  letter-spacing: 0.1em;
}

@media (max-width: 640px) {
  .h2_title {
    margin-bottom: 1em;
  }
}

.h2_title span {
  color: #999;
  display: block;
  font-size: 1.4rem;
  margin-top: 0.5em;
  font-weight: normal;
  letter-spacing: 0.05em;
}

@media (max-width: 640px) {
  .h2_title span {
    margin-top: 0.2em;
  }
}

/*ボタン*/
.btn a {
  position: relative;
  display: inline-block;
  font-size: 1.6rem;
  padding: .5em 4em;
  border: 2px solid #212121;
  color: #212121;
  text-align: center;
  text-decoration: none;
  outline: none;
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media (max-width: 768px) {
  .btn a {
    padding: .5em 2em;
  }
}

.btn a::before,
.btn a::after,
.btn a span::before,
.btn a span::after {
  position: absolute;
  z-index: 2;
  content: '';
  width: 0;
  height: 0;
  border: 2px solid transparent;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.btn a::before {
  top: -2px;
  left: -2px;
  border-left-color: #87bec7;
  visibility: hidden;
}

.btn a::after {
  bottom: -2px;
  right: -2px;
  border-right-color: #87bec7;
  visibility: hidden;
}

.btn a span::before {
  bottom: -2px;
  left: -2px;
  border-bottom-color: #87bec7;
  visibility: hidden;
}

.btn a span::after {
  top: -2px;
  right: -2px;
  border-top-color: #87bec7;
  visibility: hidden;
}

.btn a:hover {
  color: #87bec7;
}

.btn a:hover::before,
.btn a:hover::after {
  height: 100%;
  visibility: visible;
}

.btn a:hover span::before,
.btn a:hover span::after {
  width: 100%;
  visibility: visible;
}

/*hero*/
.hero {
  width: 100%;
  margin-top: 80px;
  background: #87bec7;
}

@media (max-width: 1250px) {
  .hero {
    margin-top: 60px;
  }
}

.hero .page_title {
  text-align: center;
  padding: 2rem 0;
}

.hero .page_title img {
  max-width: 400px;
}

.hero .page_title span {
  display: block;
  font-size: 1.4rem;
  color: #fff;
}

/*パンくず*/
/* ===============================================
要素フェードインの動き
=============================================== */
.move_before {
  opacity: 0;
  transform: translate(0, 60px);
  -webkit-transform: translate(0, 60px);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.move_after {
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}

/* フェードインアニメーション */
.fadeIn_anime {
  animation: fadeIn 3s ease 10s 1 normal;
  -webkit-animation: fadeIn 3s ease 10s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*--------------------------------------------
ヘッダー
--------------------------------------------*/
.header {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 10px 20px;
  height: 80px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

@media (max-width: 1250px) {
  .header {
    display: none;
  }
}

.header .header_left img {
  max-width: 220px;
}

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

.header .header_right .header_nav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  font-size: 1.6rem;
}

.header .header_right .header_nav > ul > li {
  text-align: center;
  position: relative;
}

.header .header_right .header_nav > ul > li a {
  padding: 10px 12px;
  color: #212121;
  letter-spacing: 0.1rem;
  display: block;
  text-align: center;
  font-size: 1.6rem;
}

.header .header_right .header_nav > ul > li a:hover {
  color: #87bec7;
}

.header .header_right .header_nav > ul > li a.current {
  color: #212121;
}

.header .header_right .header_nav2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header .header_right .header_nav2 a {
  padding: 10px 20px;
  color: #fff;
  background: #87bec7;
}

.header .header_right .header_nav2 a:hover {
  opacity: 0.6;
}

.header .header_right .header_nav2 a.current {
  color: #212121;
}

.header_sp {
  display: none;
}

@media (max-width: 1250px) {
  .header_sp {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 999999999999999;
    background: rgba(255, 255, 255, 0.9);
  }
}

.header_sp .header_logo {
  width: 100%;
  max-width: 240px;
  padding: 1.2rem;
  position: relative;
}

@media (max-width: 640px) {
  .header_sp .header_logo {
    max-width: 160px;
    padding: 1.8rem 0 0 1.5rem;
  }
}

@media (max-width: 320px) {
  .header_sp .header_logo {
    max-width: 140px;
  }
}

.header_sp .sp_contact_mark {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 2.8rem;
}

.header_sp .header_nav2 {
  position: fixed;
  top: 7px;
  right: 60px;
}

@media (max-width: 640px) {
  .header_sp .header_nav2 {
    top: 11px;
  }
}

.header_sp .header_nav2 a {
  padding: 10px 20px;
  color: #fff;
  background: #87bec7;
}

.header_sp .header_nav2 a:hover {
  opacity: 0.6;
}

.header_sp .header_nav2 a.current {
  color: #212121;
}

@media (max-width: 640px) {
  .header_sp .header_nav2 a {
    font-size: 1.4rem;
    padding: 8px 10px;
  }
}

.hidden {
  background: rgba(255, 255, 255, 0.3);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.header .header_right .header_nav > ul > li:hover ul {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------
ローダー
--------------------------------------------*/
#loader {
  opacity: 1;
  position: fixed;
  z-index: 100000;
  width: 100%;
  height: 100%;
  background: #fff;
  top: 0;
  left: 0;
}

.spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin: auto;
  width: 50px;
  height: 40px;
  text-align: center;
  font-size: 1rem;
}

.spinner > div {
  background-color: #87bec7;
  height: 100%;
  width: 6px;
  display: inline-block;
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner .rect3 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.spinner .rect4 {
  -webkit-animation-delay: -.9s;
  animation-delay: -.9s;
}

.spinner .rect5 {
  -webkit-animation-delay: -.8s;
  animation-delay: -.8s;
}

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% {
    -webkit-transform: scaleY(0.4);
  }
  20% {
    -webkit-transform: scaleY(1);
  }
}

@keyframes sk-stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
  }
}

/*========================================================
↓spmenu
============================================*/
/* menu button - label tag */
.menu-btn, .close-btn {
  position: fixed;
  top: 0;
  right: 0;
  display: block;
  width: 60px;
  height: 60px;
  font-size: 10px;
  text-align: center;
  cursor: pointer;
  z-index: 999999999999;
}

.close-btn {
  display: none;
}

.bar {
  position: absolute;
  top: 15px;
  left: 15px;
  display: block;
  width: 30px;
  height: 3px;
  background: #87bec7;
  -webkit-transition: all .5s;
  transition: all .5s;
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

.bar.middle {
  top: 27px;
  opacity: 1;
}

.bar.bottom {
  top: 39px;
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
}

.close-btn .bar {
  background: #87bec7;
}

.close-btn .bar.top {
  width: 38px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.close-btn .bar.middle {
  opacity: 0;
}

.close-btn .bar.bottom {
  width: 38px;
  top: 40px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.drawer-menu {
  position: absolute;
  top: 80px;
  right: 0;
  width: 60%;
  height: 100vh;
  background: rgba(155, 177, 212, 0);
  display: none;
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
  -webkit-transition-delay: .3s;
          transition-delay: .3s;
  background: rgba(135, 190, 199, 0.95);
  visibility: visible;
  opacity: 1;
  z-index: -1;
}

@media (max-width: 1250px) {
  .drawer-menu {
    top: 60px;
  }
}

.drawer-menu > ul {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: 340px;
}

.nav {
  width: 100%;
}

.drawer-menu li a {
  position: relative;
  width: 60%;
  margin-left: 40%;
  text-decoration: none;
  color: #e7f2f4;
  display: block;
  font-size: 16px;
  letter-spacing: 0.2rem;
  padding: 1rem;
  border-bottom: 1px dotted #fff;
}

.drawer-menu li a:hover {
  background: #fff;
  color: #87bec7;
}

.footer {
  background: #87bec7;
  padding: 40px 0 0 0;
  color: #fff;
  font-size: 1.4rem;
}

.footer .flex_between {
  padding-bottom: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer .flex_between .footer_left {
  max-width: 40%;
}

@media (max-width: 768px) {
  .footer .flex_between .footer_left {
    max-width: 100%;
    text-align: center;
  }
}

.footer .flex_between .footer_left img {
  max-width: 220px;
  margin-bottom: 1rem;
}

.footer .flex_between .footer_left p {
  line-height: 1.4;
  font-size: 1.4rem;
}

@media (max-width: 768px) {
  .footer .flex_between .footer_left p {
    text-align: center;
    margin-bottom: 2rem;
  }
}

.footer .flex_between .footer_right {
  width: 60%;
  border-left: 1px solid #fff;
  padding-left: 4rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 768px) {
  .footer .flex_between .footer_right {
    width: 100%;
    border-left: none;
    padding-left: 0;
  }
}

.footer .flex_between .footer_right p {
  font-weight: bold;
  font-size: 1.6rem;
  letter-spacing: 0.1rem;
  padding-bottom: 0.3em;
  border-bottom: 1px solid #fff;
  margin-bottom: 0.5em;
}

@media (max-width: 768px) {
  .footer .flex_between .footer_right p {
    text-align: center;
  }
}

.footer .flex_between .footer_right ul.flex_between {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer .flex_between .footer_right ul.flex_between li {
  width: 33%;
}

@media (max-width: 768px) {
  .footer .flex_between .footer_right ul.flex_between li {
    width: 100%;
    text-align: center;
  }
}

.footer .flex_between .footer_right ul.flex_between li a {
  color: #fff;
}

.footer .flex_between .footer_right ul.flex_between li a:hover {
  opacity: 0.6;
}

.footer small {
  text-align: center;
  margin-top: 2rem;
  padding: 1.3rem 0;
  font-size: 1rem;
  display: block;
  background: #fff;
  color: #87bec7;
}

.footer .sns {
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .footer .sns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer .sns .line {
  max-width: 160px;
}

.footer .sns .insta {
  max-width: 50px;
  margin-left: 2rem;
}

/*トップへ戻るボタン*/
#pageTop {
  position: fixed;
  bottom: 90px;
  right: 10px;
  font-size: 12px;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
}

@media (max-width: 640px) {
  #pageTop ul {
    display: none;
  }
}

#pageTop ul li {
  padding-left: 2px;
  margin-bottom: 0.5rem;
}

#pageTop ul li a {
  width: 32px;
}

#pageTop ul li a:hover {
  opacity: 0.6;
}

#pageTop a.gototop {
  color: #fff;
  display: block;
  padding: 5px;
  background: #212121;
  border-radius: 3px;
}

#pageTop a.gototop:hover {
  opacity: 0.6;
}

#pageTop .insta_btn {
  width: 40px;
}

#pageTop .line_btn {
  width: 40px;
}

/*-----------------------------
ローディング
-----------------------------*/
.shutter {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #87bec7;
  z-index: 9999;
  -webkit-animation: byeShutter 2s forwards;
          animation: byeShutter 2s forwards;
}

@-webkit-keyframes byeShutter {
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
    z-index: -1;
  }
}

@keyframes byeShutter {
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
    z-index: -1;
  }
}

.shutter:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  background-color: #fff;
  width: 0;
  height: 1px;
  -webkit-animation: shutterOpen 2s forwards;
          animation: shutterOpen 2s forwards;
}

@-webkit-keyframes shutterOpen {
  0% {
    width: 0;
    height: 2px;
  }
  50% {
    width: 100%;
    height: 2px;
  }
  90% {
    width: 100%;
    height: 100%;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}

@keyframes shutterOpen {
  0% {
    width: 0;
    height: 2px;
  }
  50% {
    width: 100%;
    height: 2px;
  }
  90% {
    width: 100%;
    height: 100%;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}

.main_top {
  -webkit-animation: contentScale 2s forwards;
          animation: contentScale 2s forwards;
}

@-webkit-keyframes contentScale {
  70% {
    -webkit-transform: perspective(800px) scale(1);
            transform: perspective(800px) scale(1);
  }
  100% {
    -webkit-transform: perspective(800px) scale(1);
            transform: perspective(800px) scale(1);
  }
}

@keyframes contentScale {
  70% {
    -webkit-transform: perspective(800px) scale(1);
            transform: perspective(800px) scale(1);
  }
  100% {
    -webkit-transform: perspective(800px) scale(1);
            transform: perspective(800px) scale(1);
  }
}

/*-----------------------------
ファーストビュー
-----------------------------*/
.firstview {
  margin-top: 80px;
  padding-left: 18%;
  width: 100%;
  position: relative;
  z-index: 1;
}

@media (max-width: 1250px) {
  .firstview {
    margin-top: 60px;
  }
}

@media (max-width: 960px) {
  .firstview {
    padding-left: 0;
  }
}

.firstview .top_hero {
  width: 100%;
  height: auto;
}

.firstview .firstview_text {
  position: absolute;
  top: 45%;
  left: 4%;
  width: 33%;
  z-index: 2;
}

@media (max-width: 1080px) {
  .firstview .firstview_text {
    top: 30%;
  }
}

@media (max-width: 960px) {
  .firstview .firstview_text {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 80%;
    background: rgba(231, 242, 244, 0.9);
    padding: 2rem;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .firstview .firstview_text {
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    width: 90%;
    top: 80%;
  }
}

.firstview .firstview_text img {
  width: 100%;
  margin-bottom: 2rem;
}

@media (max-width: 960px) {
  .firstview .firstview_text img {
    max-width: 80%;
  }
}

.slick_container {
  overflow: hidden;
}

/*-----------------------------
お知らせ
-----------------------------*/
@media (max-width: 640px) {
  .top_news {
    margin-top: 120px;
  }
}

.top_news .flex_between {
  margin-bottom: 4rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 768px) {
  .top_news .flex_between {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.top_news .flex_between li {
  width: 23%;
}

@media (max-width: 768px) {
  .top_news .flex_between li {
    width: 48%;
  }
}

.top_news .flex_between li a:hover {
  opacity: 0.6;
}

.top_news .flex_between li p.news_time {
  font-size: 1.4rem;
  line-height: 1.4;
  color: #666;
}

@media (max-width: 768px) {
  .top_news .flex_between li {
    margin-right: 0;
    margin-bottom: 2rem;
  }
}

.top_news .flex_between li:last-child {
  margin-right: 0;
}

.top_news .btn {
  text-align: center;
}

/*-----------------------------
トップメニュー
-----------------------------*/
.top_menu ul.flex_between {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.top_menu li {
  width: 30%;
}

@media (max-width: 768px) {
  .top_menu li {
    width: 100%;
    margin-bottom: 2rem;
  }
}

.top_menu li h3 {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 2rem;
}

.top_menu li h3 img {
  margin: 0 auto;
  height: 16px;
  width: auto;
  margin-bottom: 1rem;
  display: block;
}

.top_menu li a {
  position: relative;
  height: 324px;
}

@media (max-width: 1150px) {
  .top_menu li a {
    height: auto;
  }
}

.top_menu li a p {
  position: absolute;
  width: 80%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #87bec7;
  padding: 1em 0.5em;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.4;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.top_menu li a p span {
  display: block;
  font-size: 1.4rem;
  font-weight: normal;
}

.top_menu li a:before {
  content: "";
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.top_menu li a:hover:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(135, 190, 199, 0.7);
}

.top_menu li a:hover p {
  background: #fff;
  color: #87bec7;
}

/*-----------------------------
ご挨拶
-----------------------------*/
.top_greeting .flex_between {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.top_greeting .flex_between .top_greeting_left {
  width: 48%;
}

@media (max-width: 768px) {
  .top_greeting .flex_between .top_greeting_left {
    width: 100%;
    z-index: -1;
  }
}

.top_greeting .flex_between .top_greeting_right {
  width: 48%;
  padding-top: 40px;
}

@media (max-width: 768px) {
  .top_greeting .flex_between .top_greeting_right {
    width: 100%;
    padding-top: 2rem;
  }
}

.top_greeting .flex_between .top_greeting_right p {
  margin-left: -80px;
  padding: 0.5em 1em;
  background: #e7f2f3;
  margin-bottom: 1em;
  font-size: 1.8rem;
}

.top_greeting .flex_between .top_greeting_right .btn {
  text-align: center;
  margin-top: 4rem;
}

@media (max-width: 768px) {
  .top_greeting .flex_between .top_greeting_right .btn {
    margin-top: 2rem;
  }
}

.top_greeting .flex_between .top_greeting_right p.pad_on {
  margin: 0 auto;
  z-index: 9;
}

/*-----------------------------
申込み
-----------------------------*/
.top_contact {
  background: rgba(135, 190, 199, 0.1);
}

.top_contact p {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 4rem;
}

.top_contact .top_contact_form {
  margin-bottom: 3rem;
}

.top_contact .top_contact_form dt {
  float: left;
  clear: left;
  width: 32%;
  padding: 0.5em 0;
}

@media (max-width: 768px) {
  .top_contact .top_contact_form dt {
    width: 100%;
    float: none;
    clear: none;
    font-size: 1.4rem;
  }
}

.top_contact .top_contact_form dt > span {
  color: red;
  margin-left: 5px;
}

.top_contact .top_contact_form dd {
  padding-left: 32%;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  font-size: 1.4rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .top_contact .top_contact_form dd {
    padding-left: 0;
  }
}

.top_contact .top_contact_form dd input[type=text], .top_contact .top_contact_form dd input[type=email], .top_contact .top_contact_form dd textarea, .top_contact .top_contact_form dd input[type=date], .top_contact .top_contact_form dd input[type=tel] {
  width: 100%;
  padding: 0.5em;
  background-color: #fff;
  border: none;
  border: 1px solid #87bec7;
  font-size: 1.4rem;
}

.top_contact .top_contact_form dd select {
  outline: none;
  text-indent: 0.01px;
  text-overflow: '';
  background: none transparent;
  vertical-align: middle;
  font-size: inherit;
  color: inherit;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  width: 100%;
  padding: 0 0.5em;
}

.top_contact .top_contact_form dd select option {
  background-color: #fff;
}

.top_contact .top_contact_form dd .select-wrap {
  position: relative;
  background: #fff;
}

.top_contact .top_contact_form dd .select-wrap:before {
  content: "";
  z-index: 1;
  position: absolute;
  right: 10px;
  top: 8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 5px 0 5px;
  border-color: #212121 transparent transparent transparent;
}

.top_contact .top_contact_form .btn-container {
  margin-top: 2rem;
}

.top_contact .top_contact_form input[type=submit] {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  color: #fff;
  display: block;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  max-width: 280px;
  padding: 0.5em 1em;
  background: #87bec7;
  margin-top: 4rem;
}

.top_contact .top_contact_form input[type=submit]:hover {
  color: #212121;
  background: #fff;
}

/*-----------------------------
アクセス
-----------------------------*/
.top_access .flex_between {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.top_access .flex_between .top_access_left {
  width: 30%;
}

@media (max-width: 768px) {
  .top_access .flex_between .top_access_left {
    width: 100%;
  }
  .top_access .flex_between .top_access_left p {
    text-align: center;
  }
}

.top_access .flex_between .top_access_left .btn {
  margin-top: 2rem;
  text-align: center;
}

.top_access .flex_between .top_access_left .btn a {
  padding-left: 3em;
  padding-right: 3em;
}

@media (max-width: 768px) {
  .top_access .flex_between .top_access_left .btn a {
    padding-left: 2em;
    padding-right: 2em;
    margin-bottom: 2rem;
  }
}

.top_access .flex_between .top_access_right {
  width: 68%;
}

@media (max-width: 768px) {
  .top_access .flex_between .top_access_right {
    width: 100%;
  }
}
