@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;500;700&display=swap");
.u {
  height: 100px;
}

@media screen and (max-width: 767px) {
  .u {
    height: 60px;
  }
}

/* ================
全体
1header
2top
3card
4news
5price
6access
7contact
8footer
================= */
/* =======================================================
# 全体
======================================================= */
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}

body {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 16px;
  color: #333;
  line-height: 1.6875;
}

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

a {
  text-decoration: none;
  color: #333;
  -webkit-transition: opacity .4s;
  transition: opacity .4s;
}

a:hover {
  opacity: 0.4;
}

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

@media screen and (max-width: 767px) {
  .clear::after {
    content: none;
  }
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

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

.section-title1 {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.section-title1::after {
  content: '';
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 60px;
  height: 2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #FFFF99;
}

.section-title2 {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 66px;
  position: relative;
}

.section-title2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 60px;
  height: 2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #FFFF99;
}

/* =======================================================
# header
======================================================= */
.header {
  background: #2BA08B;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767px) {
  .header-inner {
    height: 60px;
  }
}

.header-logo {
  height: 22px;
  width: 200px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  white-space: nowrap;
}

.header-nav {
  margin-left: auto;
}

.header-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 768px) {
  .header-nav-item + .header-nav-item {
    margin-left: 50px;
  }
}

.header-nav-item-link {
  display: block;
  color: #fff;
  height: 70px;
  line-height: 70px;
  letter-spacing: 1.6px;
}

@media screen and (min-width: 768px) {
  .header-nav-item-link:hover {
    -webkit-transition: color .4s;
    transition: color .4s;
    color: #e8ff1d;
  }
}

/* =======================================================
# drawer
======================================================= */
.drawer--right .drawer-hamburger {
  right: 3px;
}

.drawer-hamburger-icon {
  background-color: #fff;
}

.drawer-opne .drawer-hamburger-icon {
  background-color: transparent;
  margin-left: auto;
}

.drawer-hamburger-icon::after {
  background-color: #fff;
}

.drawer-hamburger-icon::before {
  background-color: #fff;
}

.drawer-nav {
  top: 60px;
  background-color: #fff;
  padding: 24px 0;
}

.drawer-menu-item {
  text-align: center;
  display: block;
  color: #2BA08B;
  padding: 20px;
}

.drawer-header-nav-item {
  text-align: right;
}

/* =======================================================
# footer
======================================================= */
.footer {
  background: #2BA08B;
  padding: 42px 40px 42px;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 36px 0 14px;
  }
}

.footer-copyright {
  color: #fff;
  font-size: 12px;
  text-align: center;
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .footer-copyright {
    margin-top: 5px;
    margin-bottom: 5px;
  }
}

/* =======================================================
# main
======================================================= */
.main {
  padding-top: 70px;
}

@media screen and (max-width: 767px) {
  .main {
    padding-top: 60px;
  }
}

.section {
  margin-bottom: 160px;
  padding: 120px 0;
}

@media screen and (max-width: 767px) {
  .section {
    margin-bottom: 0;
  }
}

/* =======================================================
# util-title
======================================================= */
.util-title {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .util-title {
    font-size: 30px;
  }
}

.util-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: #2BA08B;
  margin: 16px auto 0;
}

.util-link {
  font-size: 14px;
  letter-spacing: 1em;
  color: #3EA1D1;
  border: 1px solid #3EA1D1;
  background: #fff;
  display: inline-block;
  padding: 10px 46px 10px 62px;
  margin: 0 auto;
  -webkit-transition: background-color .4s, color .4s;
  transition: background-color .4s, color .4s;
}

.util-link.-active {
  background: #3EA1D1;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .util-link:not(.-submit):hover {
    background: #3EA1D1;
    color: #fff;
  }
}

/* =======================================================
# top
======================================================= */
.top {
  position: relative;
}

.top-title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 5;
  width: 100%;
}

.top-mainetitle {
  font-family: 'Shippori Mincho B1', serif;
  color: #fff;
  font-size: 4.768rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .top-mainetitle {
    font-size: 1.953rem;
  }
}

.top-subtitle {
  font-family: 'Shippori Mincho B1', serif;
  color: #fff;
  text-align: center;
  font-size: 1.953rem;
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .top-subtitle {
    font-size: 1rem;
  }
}

.swiper-container {
  width: 100%;
  height: 100vh;
}

.overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 3;
  background: -webkit-gradient(linear, right top, left top, from(#a6b528), to(#00d2ff)) repeat scroll 0 0 rgba(0, 0, 0, 0);
  background: linear-gradient(to left, #a6b528 0%, #00d2ff 100%) repeat scroll 0 0 rgba(0, 0, 0, 0);
  opacity: 0.5;
}

.swiper-button-next:after, .swiper-button-prev:after {
  display: none;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  display: none;
}

.top-img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* =======================================================
# about
======================================================= */
.about-inner {
  -webkit-box-shadow: 0px 5px 12px #3E3E3E33;
          box-shadow: 0px 5px 12px #3E3E3E33;
  margin: 20px;
  padding: 100px 60px;
}

@media screen and (min-width: 768px) {
  .about-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (max-width: 767px) {
  .about-inner {
    padding: 36px 15px;
  }
}

.about-title {
  font-family: 'Patua One', cursive;
  padding-top: 30px;
  padding-bottom: 10px;
}

@media screen and (min-width: 768px) {
  .about-message {
    width: 50%;
    margin-left: 100px;
  }
}

@media screen and (max-width: 767px) {
  .about-message {
    margin-top: 80px;
  }
}

.about-message-text {
  margin-bottom: 10px;
}

/* =======================================================
# company
======================================================= */
.company {
  background: #EDF4F2;
}

.company-inner {
  margin-top: 64px;
  padding: 100px 0;
}

@media screen and (max-width: 767px) {
  .company-inner {
    margin-top: 0;
  }
}

@media screen and (min-width: 1200px) {
  .company-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.company-picture {
  -webkit-box-shadow: 0px 5px 12px #3E3E3E33;
          box-shadow: 0px 5px 12px #3E3E3E33;
}

@media screen and (min-width: 768px) {
  .company-picture {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}

.company-message {
  width: 200px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .company-message {
    margin-top: 40px;
  }
}

@media screen and (min-width: 1200px) {
  .company-message {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
    margin-left: 16%;
  }
}

@media screen and (max-width: 1199px) {
  .company-message-items {
    margin-top: 80px;
  }
}

.company-message-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
  width: 100%;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .company-message-item {
    font-size: 24px;
  }
}

.company-message-icon {
  width: 10%;
  text-align: center;
  margin-right: 10px;
}

.company-message-text {
  width: 90%;
  white-space: nowrap;
}

/* =======================================================
# location
======================================================= */
.location-inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.location-map {
  width: 100%;
  padding-top: 57.77778%;
  position: relative;
}

.location-map > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media screen and (min-width: 768px) {
  .location-map {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 70%;
            flex: 0 0 70%;
  }
}

@media screen and (max-width: 767px) {
  .location-message {
    margin-top: 34px;
  }
}

@media screen and (min-width: 768px) {
  .location-message {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
  }
}

.location-message-title {
  font-size: 28px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .location-message-title {
    font-size: 20px;
  }
}

.location-text {
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .location-text {
    font-size: 14px;
    line-height: 1.7143;
  }
}

/* =======================================================
# member
======================================================= */
.member {
  margin-bottom: 160px;
  height: 500px;
  opacity: 0.5;
  background: -webkit-gradient(linear, right top, left top, from(#a6b528), to(#00d2ff)) repeat scroll 0 0 rgba(0, 0, 0, 0);
  background: linear-gradient(to left, #a6b528 0%, #00d2ff 100%) repeat scroll 0 0 rgba(0, 0, 0, 0);
}

.member-title {
  padding-top: 120px;
  opacity: 1;
}

.member-text {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

.member-link {
  text-align: center;
  position: relative;
}

.member-link-button {
  color: #fff;
  border: solid 2px #fff;
  padding: 20px 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
}

/* =======================================================
# スムーススクロール
======================================================= */
.totop a {
  width: 60px;
  height: 60px;
  background-color: #2BA08B;
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
}

.totop a:hover {
  opacity: 0.6;
}

.totop {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.totop.is-show {
  opacity: 1;
  visibility: visible;
}

.fa-angle-up {
  color: #fff;
  font-size: 40px;
  padding-left: 16px;
  padding-top: 8px;
}
