@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: #fff;
  color: #4D4D4D;
}
@media (min-width:769px) and (max-width: 1279px) {
  body {
    margin: 0;
    padding: 0;
  }
}

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

ul,
ol,
li {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}

/*===========================
共通クラス
===========================*/
body {
  letter-spacing: 0.04em;
}

.inner {
  width: 860px;
  max-width: 100%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .inner {
    width: 98%;
  }
}

.subinner {
  width: 610px;
  max-width: 100%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .subinner {
    width: 94%;
  }
}

.section-title {
  font-size: 26px;
  font-weight: 600;
  width: 610px;
  padding: 8px 0;
  background-color: #E2B148;
  color: #fff;
  border-radius: 6px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 60px;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .section-title {
    width: 86%;
    font-size: 20px;
    margin-bottom: 50px;
  }
}

.section-subtitle {
  font-size: 24px;
  position: relative;
  padding: 0 65px;
  text-align: center;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .section-subtitle {
    font-size: 18px;
    padding: 0 20px;
  }
}
.section-subtitle:before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: #008776;
}
.section-subtitle span {
  position: relative;
  padding: 0 1em;
  background: #fff;
}
@media (max-width: 768px) {
  .pc-none {
    display: none;
  }
}

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

.end-message {
  display: none;
}

.false-message {
  display: none;
}

input[type=submit] {
  -webkit-appearance: none;
  border-radius: 0;
}

/*===========================
header
===========================*/
header {
  height: 106px;
  background-color: #fff;
  z-index: 100;
  position: fixed;
  top: 0;
  width: 100%;
}
@media (max-width: 768px) {
  header {
    height: 60px;
  }
}

.header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 1100px;
  max-width: 100%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .header_inner {
    width: 98%;
  }
}
@media (min-width:769px) and (max-width: 1279px) {
  .header_inner {
    width: 94%;
  }
}

.header_logo {
  width: 240px;
  padding-top: 26px;
  margin-right: 60px;
}
@media (max-width: 768px) {
  .header_logo {
    width: 120px;
    padding: 18px 0;
    margin: 0 0 0 16px;
  }
}
.header_logo img {
  display: block;
}

.header_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
  padding-top: 24px;
}
.header_nav li {
  width: 96px;
  height: 30px;
  border-radius: 4px;
  background-color: #008776;
  text-align: center;
  padding-top: 2px;
}
.header_nav li:hover {
  opacity: 0.7;
}
.header_nav li:not(:first-child) {
  margin-left: 6px;
}
.header_nav li a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}
@media (max-width: 768px) {
  .header_nav li {
    display: none;
  }
}
@media (min-width:769px) and (max-width: 1279px) {
  .header_nav li {
    display: none;
  }
}

.number-font {
  font-family: "Lato", sans-serif !important;
  font-size: 36px;
}
@media (max-width: 768px) {
  .number-font {
    font-size: 28px;
  }
}

/*============
nav
=============*/
nav {
  display: block;
  position: fixed;
  top: 0;
  left: -300px;
  bottom: 0;
  width: 300px;
  background: #ffffff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 3;
  opacity: 0;
}

.open nav {
  left: 0;
  opacity: 1;
}

nav .inner {
  padding: 25px;
}

nav .inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav .inner ul li {
  position: relative;
  margin: 0;
  border-bottom: 1px solid #333;
}

nav .inner ul li a {
  display: block;
  color: #333;
  font-size: 14px;
  padding: 1em;
  text-decoration: none;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

nav .inner ul li a:hover {
  background: #e4e4e4;
}

@media screen and (max-width: 767px) {
  nav {
    left: -220px;
    width: 220px;
  }
}
/*============
nav
=============*/
nav {
  display: block;
  position: fixed;
  top: 0;
  left: -300px;
  bottom: 0;
  width: 300px;
  background: #E2B148;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 3;
  opacity: 0;
}

.open nav {
  left: 0;
  opacity: 1;
}

nav .inner {
  padding: 25px;
}

nav .inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav .inner ul li {
  position: relative;
  margin: 0;
  border-bottom: 1px solid #fff;
}

nav .inner ul li a {
  display: block;
  color: #fff;
  font-size: 14px;
  padding: 1em;
  text-decoration: none;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

nav .inner ul li a:hover {
  background: #e4e4e4;
}

@media screen and (max-width: 767px) {
  nav {
    left: -220px;
    width: 220px;
  }
}
/*============
.toggle_btn
=============*/
.toggle_btn {
  display: none;
}
@media (max-width: 768px) {
  .toggle_btn {
    display: block;
    position: fixed;
    top: 15px;
    right: 20px;
    width: 30px;
    height: 30px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 3;
  }
}
@media (min-width:769px) and (max-width: 1279px) {
  .toggle_btn {
    display: block;
    position: fixed;
    top: 30px;
    right: 30px;
    width: 30px;
    height: 30px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 3;
  }
}

.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #333;
  border-radius: 4px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.toggle_btn span:nth-child(1) {
  top: 4px;
}

.toggle_btn span:nth-child(2) {
  top: 14px;
}

.toggle_btn span:nth-child(3) {
  bottom: 4px;
}

.open .toggle_btn span {
  background-color: #333;
}

.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
  transform: translateY(10px) rotate(-315deg);
}

.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}

.open .toggle_btn span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(315deg);
  transform: translateY(-10px) rotate(315deg);
}

/*============
#mask
=============*/
#mask {
  display: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0.8;
  z-index: 2;
  cursor: pointer;
}

/*===========================
main-visual
===========================*/
.main-visual {
  background-image: url(../images/main.png);
  background-size: 1280px;
  background-repeat: no-repeat;
  height: 700px;
  width: 100%;
  margin: 68px 0 0 0;
  position: relative;
}
@media (max-width: 768px) {
  .main-visual {
    background-size: 430px;
    margin: 78px 0 0 0;
    height: 250px;
  }
}
@media (min-width:769px) and (max-width: 1279px) {
  .main-visual {
    background-size: 54em;
    margin: 90px 0 0 0;
    height: 500px;
  }
}

.main-visual_content {
  padding-top: 100px;
  text-align: center;
  position: absolute;
  top: 70px;
  left: 500px;
}
@media (max-width: 768px) {
  .main-visual_content {
    top: -54px;
    left: 152px;
  }
}
@media (min-width:769px) and (max-width: 1279px) {
  .main-visual_content {
    top: 30px;
    left: 360px;
  }
}

.main-visual_logo {
  width: 826px;
  display: inline-block;
  margin: 30px 0;
}
@media (max-width: 768px) {
  .main-visual_logo {
    width: 200px;
    margin: 14px 0 7px 0;
  }
}
@media (min-width:769px) and (max-width: 1279px) {
  .main-visual_logo {
    width: 600px;
    margin: 10px 0;
  }
}

.main-visual_lead {
  font-size: 42px;
  font-weight: 700;
}
.main-visual_lead img {
  width: 50px;
}
@media (max-width: 768px) {
  .main-visual_lead {
    font-size: 11px;
    line-height: 1.2em;
  }
  .main-visual_lead img {
    width: 14px;
  }
}
@media (min-width:769px) and (max-width: 1279px) {
  .main-visual_lead {
    font-size: 26px;
    line-height: 1.2em;
  }
}

.main-visual_sublead {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .main-visual_sublead {
    font-size: 11px;
    line-height: 1.2em;
    margin-bottom: 18px;
  }
}
@media (min-width:769px) and (max-width: 1279px) {
  .main-visual_sublead {
    font-size: 24px;
    line-height: 1.2em;
    margin-bottom: 24px;
  }
}

.main-visual_btn {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 12px 60px;
  border-radius: 8px;
  background-color: #008776;
  display: inline-block;
  border: solid #fff 2px;
  -webkit-box-shadow: 7px 7px #dddddd;
          box-shadow: 7px 7px #dddddd;
}
.main-visual_btn img {
  width: 12px;
}
@media (max-width: 768px) {
  .main-visual_btn {
    font-size: 10px;
    padding: 4px 12px;
    border-radius: 4px;
    -webkit-box-shadow: 4px 4px #dddddd;
            box-shadow: 4px 4px #dddddd;
  }
  .main-visual_btn img {
    width: 5px;
  }
}
@media (min-width:769px) and (max-width: 1279px) {
  .main-visual_btn {
    font-size: 20px;
    padding: 6px 16px;
  }
}

/*===========================
about
===========================*/
.about {
  text-align: center;
  background-color: #E2B148;
  color: #fff;
}
.about h2 {
  position: relative;
}
.about h2::after {
  content: "";
  display: block;
  width: 916px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 210px;
  left: 272px;
}
@media (max-width: 768px) {
  .about h2::after {
    width: 300px;
    top: 120px;
    left: 40px;
  }
}
@media (min-width:769px) and (max-width: 1279px) {
  .about h2::after {
    width: 800px;
    top: 140px;
    left: 110px;
  }
}

.about-title {
  padding-top: 120px;
  font-size: 38px;
}
@media (max-width: 768px) {
  .about-title {
    font-size: 16px;
    padding: 80px 0 30px 0;
  }
}
@media (min-width:769px) and (max-width: 1279px) {
  .about-title {
    font-size: 30px;
    padding: 80px 0 0 0;
  }
}

.about-lead {
  line-height: 70px;
  font-size: 24px;
  letter-spacing: 0.1em;
  padding-bottom: 120px;
  margin-top: 70px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .about-lead {
    font-size: 11px;
    line-height: 30px;
    padding-bottom: 80px;
    width: 94%;
    margin: 0 auto;
  }
}
@media (min-width:769px) and (max-width: 1279px) {
  .about-lead {
    font-size: 24px;
    line-height: 60px;
    padding-bottom: 80px;
    width: 94%;
    margin: 70px auto;
  }
}
.about-lead span {
  color: #4D4D4D;
  font-size: 27px;
  margin-right: 10px;
  font-weight: 700;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(66%, transparent), color-stop(10%, white));
  background: linear-gradient(transparent 66%, white 10%);
}
@media (max-width: 768px) {
  .about-lead span {
    font-size: 14px;
    margin-right: 6px;
  }
}
@media (min-width:769px) and (max-width: 1279px) {
  .about-lead span {
    font-size: 26px;
    margin-right: 6px;
  }
}

/*===========================
staff
===========================*/
.staff {
  margin-top: 160px;
  text-align: center;
}
@media (max-width: 768px) {
  .staff {
    margin-top: 90px;
  }
}

.mainstaff {
  margin: 40px 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: left;
}
@media (max-width: 768px) {
  .mainstaff {
    display: block;
  }
}

.mainstaff-left img {
  display: none;
}
@media (max-width: 768px) {
  .mainstaff-left img {
    display: block;
    width: 200px;
    margin: 20px auto;
    margin-bottom: 24px;
  }
}

.mainstaff-subtitle {
  color: #008776;
}

.staff-name {
  font-size: 38px;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .staff-name {
    font-size: 22px;
    margin-bottom: 14px;
    text-align: center;
  }
}

.mainstaff-lead {
  font-size: 20px;
  font-weight: 600;
  line-height: 38px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .mainstaff-lead {
    font-size: 14px;
    line-height: 26px;
    width: 97%;
    margin: 0 auto;
    margin-bottom: 20px;
    text-align: left;
  }
}

.mainstaff-right img {
  width: 216px;
  height: 270px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .mainstaff-right img {
    /* width: 160px; */
    display: none;
  }
}

.mainstaff-contents {
  text-align: center;
  font-weight: 600;
}
.mainstaff-contents p {
  text-align: left;
}
@media (max-width: 768px) {
  .mainstaff-contents p {
    font-size: 13px;
  }
}

.prof1 {
  font-size: 20px;
  margin: 30px 0 30px 60px;
}
@media (max-width: 768px) {
  .prof1 {
    margin: 30px 0 30px 0;
  }
}

.prof2 {
  margin: 30px 0 30px 100px;
  font-size: 20px;
}
@media (max-width: 768px) {
  .prof2 {
    text-align: center;
    margin: 30px 0 0 40px;
  }
}

.substaff-items {
  margin: 60px 0 100px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 768px) {
  .substaff-items {
    display: block;
  }
}

.substaff-item_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .substaff-item_wrapper {
    margin-bottom: 30px;
  }
}

.substaff_item img {
  width: 190px;
  height: 190px;
}
@media (max-width: 768px) {
  .substaff_item img {
    width: 160px;
    height: 160px;
  }
}

.balloon3-left {
  position: relative;
  display: inline-block;
  margin: 1.5em 0 1.5em 15px;
  padding: 50px 5px;
  width: 180px;
  height: 180px;
  line-height: 20px;
  text-align: center;
  color: #FFF;
  font-size: 14px;
  font-weight: bold;
  background: #008776;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 7px 7px #dddddd;
          box-shadow: 7px 7px #dddddd;
}
@media (max-width: 768px) {
  .balloon3-left {
    font-size: 12px;
    width: 160px;
    height: 160px;
    padding: 40px 5px;
  }
}

.balloon3-left:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-right: 30px solid #008776;
  z-index: 0;
}

/*===========================
lesson
===========================*/
.lesson-title {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin: 40px 0 0 0;
}
@media (max-width: 768px) {
  .lesson-title {
    font-size: 16px;
  }
}

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

.lesson-movie_item {
  text-align: center;
  width: 50%;
}
.lesson-movie_item:nth-child(n+3) {
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .lesson-movie_item {
    width: 100%;
  }
}

.video {
  width: 400px;
  line-height: 100%;
  vertical-align: bottom top;
}
@media (max-width: 768px) {
  .video {
    width: 340px;
    margin: 0;
  }
}

.price-subtitle {
  font-size: 24px;
  font-weight: 600;
  color: #E2B148;
  position: relative;
  padding: 0 65px;
  text-align: center;
}
@media (max-width: 768px) {
  .price-subtitle {
    padding: 0 6px;
    font-size: 18px;
  }
}
.price-subtitle:before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: #E2B148;
}
.price-subtitle span {
  position: relative;
  padding: 0 1em;
  background: #fff;
}
@media (max-width: 768px) {
  .price-subtitle span {
    padding: 0 0.2em;
  }
}

/*===========================
swiper
===========================*/
.swiper {
  margin-top: 30px;
  width: 800px;
}
@media (max-width: 768px) {
  .swiper {
    width: 94%;
  }
}

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

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

/*===========================
price
===========================*/
.price {
  text-align: center;
  letter-spacing: 0.1em;
}

.price-item {
  margin-bottom: 60px;
  line-height: 1.6;
}
.price-item p {
  font-size: 24px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .price-item p {
    font-size: 18px;
  }
}
.price-item p .small-font {
  font-size: 16px;
}
@media (max-width: 768px) {
  .price-item p .small-font {
    font-size: 14px;
  }
}
.price-item:nth-child(n+3) {
  margin-bottom: 100px;
}

.price-subtitle {
  margin-bottom: 50px;
}

.price-sub {
  line-height: 0.9;
}

/*===========================
schedule
===========================*/
.schedule {
  text-align: center;
  font-weight: 600;
}

@media (min-width:769px) and (max-width: 1279px) {
  .schedule-main {
    font-size: 28px;
  }
}

.schedule-dayoff {
  font-size: 20px;
  width: 10em;
  margin: 20px auto;
}
@media (max-width: 768px) {
  .schedule-dayoff {
    font-size: 16px;
    width: 10em;
  }
}

.schedule-item {
  position: relative;
}
.schedule-item ul {
  text-align: center;
  font-size: 24px;
  line-height: 28px;
  margin: 0 auto;
  display: inline-block;
}
.schedule-item ul li {
  text-align: left;
  margin-bottom: 4px;
  font-family: "Lato", sans-serif !important;
}
.schedule-item ul li img {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-bottom: 4px;
  margin-right: 10px;
}
.schedule-item ul li span {
  font-size: 16px;
}
@media (max-width: 768px) {
  .schedule-item ul li span {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .schedule-item ul {
    font-size: 18px;
  }
  .schedule-item ul span {
    font-size: 14px;
  }
}

/*===========================
rentalClass
===========================*/
.rental-class_wrapper {
  margin-top: 40px;
}

@media (max-width: 768px) {
  .rentalclass-title {
    margin-bottom: -50px;
  }
}

.box {
  border: 2px solid #008776;
  border-radius: 5px;
  position: relative;
  margin-top: 6em;
  padding: 1.2em 0.5em 0.5em;
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .box {
    margin-top: 10em;
    margin-bottom: -50px;
  }
}
.box h3 {
  position: absolute;
  right: 0;
  left: 50px;
  top: -1.2em;
  margin-left: 1em;
}
@media (max-width: 768px) {
  .box h3 {
    left: 5px;
    top: -0.96em;
  }
  .box h3:nth-child(n+2) {
    left: -6px;
  }
}
.box span {
  padding: 0 0.5em;
  background: #FFF;
  color: #008776;
  font-size: 28px;
}
@media (max-width: 768px) {
  .box span {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .box1 h3 {
    margin-left: 1.4em;
  }
}

@media (max-width: 768px) {
  .box3 h3 {
    margin-left: 0.9em;
  }
}

.class-number_wrapper {
  position: relative;
}

.class-number {
  font-family: "Scheherazade New", serif;
  font-weight: 600;
  font-size: 84px;
  color: #E2B148;
  letter-spacing: 4px;
  position: absolute;
  top: -70px;
  left: -20px;
  background-color: #fff;
  line-height: 100px;
}
@media (max-width: 768px) {
  .class-number {
    font-size: 50px;
    top: -130px;
    left: 146px;
  }
}

.box-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 60px 30px 30px 30px;
}
.box-inner img {
  width: 300px;
}
@media (max-width: 768px) {
  .box-inner img {
    width: 98%;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .box-inner {
    display: block;
    padding: 10px;
  }
}

.box-left p {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.8em;
  color: #77787B;
}
@media (max-width: 768px) {
  .box-left p {
    font-size: 14px;
    line-height: 1.8em;
    letter-spacing: 0;
  }
}
.box-left ul li {
  font-size: 22px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .box-left ul li {
    font-size: 16px;
  }
}

.date {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  background-color: #008776;
  color: #fff;
  border-radius: 6px;
  width: 400px;
  height: 56px;
  margin-bottom: 30px;
  line-height: 56px;
}
@media (max-width: 768px) {
  .date {
    width: 80%;
    margin: 0 auto;
    height: 40px;
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 38px;
  }
}

.box-right p {
  font-size: 12px;
  font-weight: 600;
  margin: 0;
}

.class-btn {
  margin: auto;
  font-size: 20px;
  text-align: center;
  font-weight: 600;
  background-color: #E2B148;
  color: #fff;
  border-radius: 6px;
  width: 310px;
  height: 46px;
  line-height: 42px;
  border: solid #fff 2px;
  -webkit-box-shadow: 4px 4px #dddddd;
          box-shadow: 4px 4px #dddddd;
}
.class-btn:hover {
  opacity: 0.7;
}
.class-btn a img {
  width: 10px;
  height: 14px;
  margin-right: 6px;
}
@media (max-width: 768px) {
  .class-btn {
    width: 80%;
    height: 50px;
  }
}

.btn02 {
  margin-top: 110px;
}
@media (max-width: 768px) {
  .btn02 {
    margin-top: 18px;
  }
}

.btn03 {
  margin-top: 220px;
}
@media (max-width: 768px) {
  .btn03 {
    margin-top: 18px;
  }
}

.class-tel {
  font-size: 26px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #008776;
  line-height: 29px;
  vertical-align: middle;
  font-family: "Mukta Malar", sans-serif;
}
.class-tel img {
  width: 26px;
  height: 26px;
  vertical-align: bottom;
  margin-bottom: 4px;
  margin-right: 8px;
}
@media (max-width: 768px) {
  .class-tel img {
    width: 20px;
    height: 20px;
  }
}

/*===========================
access
===========================*/
.access {
  margin-top: 140px;
}
@media (max-width: 768px) {
  .access {
    text-align: center;
  }
}

.access-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 140px;
}
@media (max-width: 768px) {
  .access-wrapper {
    display: block;
    margin-bottom: 100px;
  }
}

@media (max-width: 768px) {
  .access-left {
    text-align: center;
  }
}
.access-left iframe {
  width: 560px;
  height: 380px;
}
@media (max-width: 768px) {
  .access-left iframe {
    width: 97%;
    height: 240px;
  }
}

.access-right {
  letter-spacing: 1.4px;
  text-align: left;
  margin-top: -60px;
}
@media (max-width: 768px) {
  .access-right {
    margin-left: 0px;
  }
}

.access-items {
  margin-top: 100px;
  margin-left: 30px;
}

.access-item {
  margin-top: 10px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .access-item p {
    margin: 16px 0;
    font-size: 14px;
  }
}

.access-set {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 26px;
}
.access-set img {
  width: 26px;
  height: 26px;
  margin-right: 8px;
  vertical-align: bottom;
}
@media (max-width: 768px) {
  .access-set img {
    width: 20px;
    height: 20px;
  }
}

.access-item_title {
  font-family: "Libre Baskerville", serif;
  color: #008776;
  font-weight: 600;
  font-size: 20px;
}
@media (max-width: 768px) {
  .access-item_title {
    font-size: 16px;
  }
}

/*===========================
contact
===========================*/
.contact-form {
  text-align: left;
}

textarea {
  resize: none;
  width: 100%;
  height: 200px;
  margin-bottom: 15px;
  border: solid 1.6px #d8d8d8;
}

.contact-form_label {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-form_input {
  text-align: center;
}
.contact-form_input input {
  width: 100%;
  height: 40px;
  margin-bottom: 15px;
  border: solid 1.6px #d8d8d8;
}

.contact-form_button {
  text-align: center;
  margin: 30px 0 60px;
}
.contact-form_button input {
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  background-color: #E2B148;
  color: #fff;
  border-style: none;
  border-radius: 4px;
  padding: 10px 30px;
  border: solid #fff 2px;
  -webkit-box-shadow: 4px 4px #dddddd;
          box-shadow: 4px 4px #dddddd;
}
.contact-form_button input:hover {
  opacity: 0.7;
}

.box:nth-child(n+3) {
  margin-bottom: 0px;
}

/*===========================
footer
===========================*/
footer {
  background-color: #008776;
  height: 150px;
  text-align: center;
}
@media (max-width: 768px) {
  footer {
    height: 80px;
  }
}
footer p {
  color: #fff;
  font-weight: 600;
  padding-top: 4em;
}
@media (max-width: 768px) {
  footer p {
    font-size: 10px;
    padding-top: 3em;
  }
}