@charset "UTF-8";
/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
body {
  color: #323232;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.7rem;
  line-height: 1.8;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  position: relative;
  letter-spacing: 0.1rem;
}

body:before {
  background: url(../img/body.jpg) no-repeat bottom right;
  background-size: cover;
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 100vh;
}

a {
  color: #11538c;
  text-decoration: none;
  cursor: pointer;
}

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

.bold {
  font-weight: bold;
}

h2,
h3 {
  line-height: 1.4;
  font-weight: 400;
}

.mincho {
  font-family: "YakuHanMP", Lato, "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
}

#wrapper {
  overflow: hidden;
}

/* animation
----------------------------------*/
@-webkit-keyframes view-zoomin {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes view-zoomin {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes view-slideup {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 35px);
            transform: translate(0, 35px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes view-slideup {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 35px);
            transform: translate(0, 35px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

.animation {
  opacity: 0;
}

.slideup.on {
  opacity: 1;
  -webkit-animation: view-slideup 0.65s cubic-bezier(0.2, 1, 0.2, 1);
          animation: view-slideup 0.65s cubic-bezier(0.2, 1, 0.2, 1);
}

.zoomin.on {
  opacity: 1;
  -webkit-animation: view-zoomin 0.65s cubic-bezier(0.2, 1, 0.2, 1);
          animation: view-zoomin 0.65s cubic-bezier(0.2, 1, 0.2, 1);
}

.loader {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fdfdfd;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
}

.loader::after {
  -webkit-animation: loader 0.5s linear infinite;
          animation: loader 0.5s linear infinite;
  border: 1px solid #1f89e4;
  border-radius: 50%;
  border-right: 1px solid rgba(31, 137, 228, 0.2);
  border-top: 1px solid rgba(31, 137, 228, 0.2);
  content: "";
  height: 70px;
  width: 70px;
}

.loader.off {
  display: none;
}

@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes loader {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/* header
----------------------------------*/
@-webkit-keyframes hd-scrolled {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes hd-scrolled {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

#l-header {
  width: 100%;
  padding-bottom: 5px;
  position: absolute;
  z-index: 200;
  display: none;
}

#l-header .inner {
  max-width: 97%;
  margin: 0 auto;
  min-width: 1024px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -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;
}

@media screen and (max-width: 1300px) {
  #l-header .inner {
    max-width: 99%;
  }
}

@media all and (max-width: 800px) {
  #l-header .inner {
    min-width: initial;
  }
}

#l-header.scrolled {
  position: fixed;
  display: block;
  left: 0;
  top: 0;
  /*z-index: 200;*/
  -webkit-animation: hd-scrolled 0.65s cubic-bezier(0.2, 1, 0.2, 1);
          animation: hd-scrolled 0.65s cubic-bezier(0.2, 1, 0.2, 1);
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

@media all and (max-width: 639px) {
  #l-header.scrolled {
    background: none;
  }
}

#l-header.scrolled #header_nav ul li a {
  color: #2c211e;
}

#l-header.scrolled #header_nav ul li a span {
  color: #1f89e4;
}

#l-header.scrolled #header_nav ul li a:hover span, #l-header.scrolled #header_nav ul li a.active span {
  color: #2cb8e0;
}

#l-header.scrolled #header_nav .dropdown .dropdown-li {
  padding: 3px 5px;
  margin: 3px 0;
}

#l-header.scrolled #header_nav .dropdown .dropdown-li a {
  padding: 5px 0;
}

#l-header.scrolled #logo {
  width: 200px;
}

@media all and (max-width: 1200px) {
  #l-header.scrolled #logo {
    max-width: 180px;
  }
}

#logo {
  width: 240px;
  position: absolute;
  top: 10px;
}

#logo img {
  border-radius: 0 0 20px 20px;
}

@media all and (max-width: 1200px) {
  #logo {
    max-width: 200px;
  }
}

.header-wrap {
  position: absolute;
  z-index: 500;
  left: 0;
  top: 0;
  padding: 20px 20px 30px;
  background: #1f89e4;
}

.header-right_upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 5px;
  margin-left: auto;
}

.header-right_upper span {
  font-size: 90%;
}

.head-right_contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
}

@media all and (max-width: 800px) {
  .head-right_contact {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 10px;
  }
}

@media all and (max-width: 639px) {
  .head-right_contact {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.header-right_time {
  font-size: 1.5rem;
  font-weight: 600;
  margin-right: 15px;
  text-align: right;
}

.header-sns {
  margin-left: 10px;
}

.header-sns a {
  margin: 0 5px;
  display: block;
  text-align: center;
  /*color: #333;*/
  color: #fff;
  font-size: 2.2rem;
}

.header-sns a:hover {
  /*color: #777;*/
  color: #92cbf2;
}

.head-right_tel a, .head-right_mobile a,
.head-right_mail a {
  display: block;
  padding: 2px 15px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  border-radius: 40px;
  background: #2cb8e0;
  color: #fff;
  font-weight: 600;
  line-height: 0.8;
}

.head-right_tel a:before, .head-right_mobile a:before,
.head-right_mail a:before {
  margin-right: 5px;
}

.head-right_tel a:hover, .head-right_mobile a:hover,
.head-right_mail a:hover {
  background: #92cbf2;
}

.head-right_tel a {
  background: transparent;
  position: relative;
  /*color: $base_color;*/
  color: #fff;
  font-size: 2.2rem;
  padding: 0 !important;
}

.head-right_tel a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 700;
  font-size: 80%;
}

.head-right_tel a:hover {
  background: transparent;
  color: #92cbf2;
}

.head-right_tel span {
  font-size: 12px;
  font-weight: bold;
}

.head-right_mobile {
  margin-left: 10px;
}

.head-right_mobile a {
  background: #92cbf2;
  position: relative;
}

.head-right_mobile a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f3cd";
  font-weight: 700;
}

.head-right_mobile a:hover {
  background: #c0e1f7;
}

.head-right_mobile span {
  font-size: 1.2rem;
}

.head-right_mail {
  margin-left: 10px;
}

.head-right_mail a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 700;
}

.header-right {
  margin-left: auto;
  margin-right: 20px;
}

@media all and (max-width: 800px) {
  .header-right {
    display: none;
  }
}

@media all and (max-width: 800px) {
  .reserve {
    display: none;
  }
}

.header-right_contact {
  position: relative;
  margin-right: 10px;
}

.header-right_recruit {
  margin-left: 10px;
  width: 150px;
}

@media all and (max-width: 800px) {
  .header-right_recruit {
    display: none;
  }
}

.header-right_tel a,
.header-right_mail a,
.header-right_access a,
.header-right_instagram a,
.header-right_reservation a {
  display: block;
  padding: 6px 0;
  line-height: 1.4;
  text-align: center;
  color: #fff;
  width: 180px;
  font-weight: 600;
  background: #efb43e;
}

.header-right_tel a span,
.header-right_mail a span,
.header-right_access a span,
.header-right_reservation a span {
  padding-right: 5px;
}

.header-right_tel a:hover,
.header-right_mail a:hover,
.header-right_access a:hover,
.header-right_reservation a:hover {
  -webkit-transition: background-color 0.2s ease-in;
  transition: background-color 0.2s ease-in;
}

.header-right_tel span {
  margin-right: 5px;
}

.header-right_tel a {
  display: inline-block;
  background: transparent;
  font-size: 2rem;
  border: 0;
  color: #2cb8e0;
}

.header-right_tel a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f098";
  font-weight: 700;
  margin-right: 5px;
}

.header-right_tel a:hover {
  color: #4da1e9;
}

.header-right_mail {
  margin-left: 5px;
}

.header-right_mail a {
  width: 280px;
  background: rgba(146, 203, 242, 0.5);
  border-radius: 5px;
}

.header-right_mail a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 700;
  margin-right: 5px;
}

.header-right_mail a:hover {
  background: #1f89e4;
  color: #fff;
}

.header-right_reservation a {
  width: 200px;
  color: #fff;
  background: #1f89e4;
}

.header-right_reservation a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f073";
  font-weight: 700;
  margin-right: 5px;
}

.header-right_reservation a:hover {
  background: rgba(31, 137, 228, 0.8);
}

.header-right_access {
  margin-left: 5px;
}

.header-right_access a {
  width: 150px;
  background: #1f89e4;
}

.header-right_access a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f3c5";
  font-weight: 700;
  margin-right: 5px;
}

.header-right_access a:hover {
  background: rgba(146, 203, 242, 0.8);
  color: #fff;
}

#header_nav {
  position: relative;
  z-index: 20;
  width: 580px;
}

#header_nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto;
}

#header_nav ul li {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  text-align: center;
}

#header_nav ul li a {
  display: block;
  position: relative;
  line-height: 1.4;
  font-size: 1.5rem;
  color: #fff;
  /*color: $brown;*/
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.15rem;
  padding: 15px 0;
}

#header_nav ul li a:after {
  position: absolute;
  left: 50%;
  width: 5px;
  height: 5px;
  background: #92cbf2;
  border-radius: 5px;
  content: "";
  bottom: 4px;
  margin-left: -4px;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
}

#header_nav ul li a span {
  display: block;
  color: #92cbf2;
  /*color: $base_color;*/
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
}

#header_nav ul li a:hover span, #header_nav ul li a.active span {
  color: #2cb8e0;
}

#header_nav ul li a:hover:after, #header_nav ul li a.active:after {
  opacity: 1;
}

#header_nav ul li.hd-none {
  display: none;
}

#header_nav .dropdown {
  display: none;
  position: absolute;
  left: 0;
  top: 67px;
  z-index: 310;
  background: #1f89e4;
}

#header_nav .dropdown .dropdown-li {
  padding: 3px 5px;
  margin: 3px 0;
}

#header_nav .dropdown .dropdown-li a {
  letter-spacing: 0.8px;
  display: block;
  width: 170px;
  text-align: center;
  font-size: 1.3rem;
  padding: 5px 0;
  border-right: 0;
  color: #2c211e;
  border-radius: 30px;
  background: #fff;
}

#header_nav .dropdown .dropdown-li a:after {
  display: none;
}

#header_nav .dropdown .dropdown-li a:hover {
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  background: #c0e1f7;
}

#page {
  padding: 0;
  position: relative;
  z-index: 2;
  left: 0;
  -webkit-transition: all 400ms cubic-bezier(1, 0, 0, 1);
  transition: all 400ms cubic-bezier(1, 0, 0, 1);
  /* easeInOutExpo */
  -webkit-transition-timing-function: cubic-bezier(1, 0, 0, 1);
  transition-timing-function: cubic-bezier(1, 0, 0, 1);
  /* easeInOutExpo */
}

#drawernav {
  background: #fff;
  overflow: auto;
  position: fixed;
  top: 0;
  left: -240px;
  width: 240px;
  height: 100%;
  color: #1f89e4;
  z-index: 9999899998;
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) -3px 0 2px 0;
          box-shadow: rgba(0, 0, 0, 0.2) -3px 0 2px 0;
  -webkit-transition: all 400ms cubic-bezier(1, 0, 0, 1);
  transition: all 400ms cubic-bezier(1, 0, 0, 1);
  /* easeInOutExpo */
  -webkit-transition-timing-function: cubic-bezier(1, 0, 0, 1);
  transition-timing-function: cubic-bezier(1, 0, 0, 1);
  /* easeInOutExpo */
}

#drawernav .drawernav_ttl {
  text-align: center;
  font-size: 1.6rem;
  height: 50px;
  background: #1f89e4;
  color: #fff;
  line-height: 50px;
  letter-spacing: 0.2rem;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
}

#drawernav ul.phone_navi {
  list-style: none;
  padding: 0;
}

#drawernav ul.phone_navi:first-child {
  margin-top: 60px;
}

#drawernav ul.phone_navi li {
  position: relative;
  border-bottom: 1px solid #1f89e4;
}

#drawernav ul.phone_navi li a {
  color: #166eba;
  font-size: 1.3rem;
  display: block;
  padding: 8px;
  text-decoration: none;
  line-height: 1.3;
  font-weight: 600;
}

#drawernav ul.phone_navi li a span {
  font-weight: 400;
  font-size: 1.1rem;
  display: block;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #92cbf2;
}

#drawernav ul.phone_navi li a:hover {
  color: #1f89e4;
}

#drawernav ul.phone_navi li ul {
  display: none;
}

#drawernav ul.phone_navi li ul li:first-child {
  border-top: 1px solid #11538c;
}

#drawernav ul.phone_navi li ul li:last-child {
  border-bottom: 0px;
}

#drawernav ul.phone_navi li ul li a {
  font-size: 1.1rem;
  color: #1f89e4;
  display: block;
  padding: 8px 20px;
  text-decoration: none;
  border-top: none;
  border-bottom: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #197cd0;
}

#drawernav ul.phone_navi li ul li a:before {
  content: "・";
  margin-right: 3px;
}

#drawernav ul.phone_navi li ul img {
  display: block;
  width: 90%;
  padding: 5px 0;
  margin: 0 auto;
}

#drawernav .open_btn {
  position: absolute;
  font-weight: 900;
  font-size: 1.8rem;
  top: 0;
  right: 0;
  width: 45px;
  height: 45px;
  text-align: center;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#drawernav img {
  display: block;
  width: 90%;
  padding: 5px 0;
  margin: 0 auto;
}

.fixed-content {
  right: inherit;
  width: 100%;
  -webkit-transition: all 400ms cubic-bezier(1, 0, 0, 1);
  transition: all 400ms cubic-bezier(1, 0, 0, 1);
  /* easeInOutExpo */
  -webkit-transition-timing-function: cubic-bezier(1, 0, 0, 1);
  transition-timing-function: cubic-bezier(1, 0, 0, 1);
  /* easeInOutExpo */
}

#overlay {
  z-index: -1;
  opacity: 0;
  background: #000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  -webkit-transition: all 400ms cubic-bezier(1, 0, 0, 1);
  transition: all 400ms cubic-bezier(1, 0, 0, 1);
  /* easeInOutExpo */
  -webkit-transition-timing-function: cubic-bezier(1, 0, 0, 1);
  transition-timing-function: cubic-bezier(1, 0, 0, 1);
  /* easeInOutExpo */
}

.humberger {
  font-size: 2.2rem;
  cursor: pointer;
  color: #1f89e4;
  text-align: center;
  line-height: 1.3;
  position: absolute;
}

.humberger span {
  font-size: 1.1rem;
  display: block;
}

header .humberger {
  position: absolute;
  top: 0px;
  left: 0px;
  background: #1f89e4;
  color: #fff;
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.drawer-opened .humberger {
  position: absolute;
  top: 0px;
  right: 0px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.drawer-opened .close {
  padding: 10px 16px !important;
}

.drawer-opened #page {
  left: -240px;
  -webkit-box-shadow: 1px 0 2px #000;
          box-shadow: 1px 0 2px #000;
}

.drawer-opened .fixed-content {
  left: -240px;
}

.drawer-opened #drawernav {
  left: 0;
}

.drawer-opened .humberger .icon-menu {
  opacity: 0;
}

.drawer-opened .humberger .icon-menu {
  opacity: 0;
}

.drawer-opened #overlay {
  opacity: 0.5;
  right: -240px;
  position: fixed;
  z-index: 9999999;
  width: 100%;
  height: 100%;
}

/* page-top
----------------------------------*/
#page-top {
  position: fixed;
  bottom: 25px;
  right: 10px;
  z-index: 9999;
}

#page-top a {
  display: block;
  background: #92cbf2;
  background-image: linear-gradient(-45deg, #92cbf2 50%, #64b5ed 50%);
  background-image: -ms-linear-gradient(-45deg, #92cbf2 50%, #64b5ed 50%);
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 2px;
          box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 2px;
  color: #fff;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  font-size: 1.8rem;
  text-align: center;
}

#page-top a:hover {
  opacity: 0.6;
}

@media all and (max-width: 639px) {
  #page-top {
    bottom: 72px;
  }
}

/* swiper
----------------------------------*/
@-webkit-keyframes zoom-in {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.12);
            transform: scale(1.12);
  }
}
@keyframes zoom-in {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.12);
            transform: scale(1.12);
  }
}

.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
  -webkit-animation: zoom-in 10s linear 0s 1 normal both;
          animation: zoom-in 10s linear 0s 1 normal both;
}

.swiper-slide {
  overflow: hidden;
}

.slide-img {
  overflow: hidden;
  height: 100vh;
  width: 100%;
  margin: 0px auto 0;
}

.slide-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media all and (max-width: 1200px) {
  .slide-img {
    height: 65vh;
  }
}

@media all and (max-width: 800px) {
  .slide-img {
    height: 60vh;
  }
}

@media all and (max-width: 639px) {
  .slide-img {
    height: 55vh;
  }
}

#slideshow {
  position: relative;
  overflow: hidden;
}

#catch {
  width: 500px;
  z-index: 10;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: 50%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}

@media all and (max-width: 800px) {
  #catch {
    width: 50%;
  }
}

@media all and (max-width: 639px) {
  #catch {
    width: 65%;
  }
}

/* bg_contact
----------------------------------*/
.contact_lead {
  font-size: 1.3em;
  color: #2c211e;
  text-align: center;
}

@media all and (max-width: 639px) {
  .contact_lead {
    font-size: 1em;
  }
}

.contact_wrap {
  max-width: 1200px;
  margin: 0 auto;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact_wrap .contact_left,
.contact_wrap .contact_right {
  width: 49%;
  padding: 20px;
}

.contact_wrap .contact_right .calendar-box {
  display: block;
}

.contact_wrap .contact_right div.calendar {
  width: 100%;
}

.contact_wrap .contact_left {
  margin-right: 2%;
  border-right: 1px solid white;
}

@media all and (max-width: 800px) {
  .contact_wrap {
    margin-top: 30px;
    width: 94%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact_wrap .contact_left,
  .contact_wrap .contact_right {
    width: 100%;
    padding: 0;
    font-size: 0.9em;
    letter-spacing: 0;
  }
  .contact_wrap .contact_left {
    margin-right: auto;
    border-right: 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #fff;
    margin-bottom: 10px;
  }
}

.contact_bnr {
  margin: 5px;
}

.contact_bnr > li .bnr_tel {
  background: transparent;
  white-space: nowrap;
  color: #fff;
  font-size: 4rem;
  width: auto;
}

.contact_bnr > li .bnr_tel:before {
  font-family: "Font Awesome 5 Free";
  content: "\f095";
  font-weight: 700;
}

.contact_bnr > li .bnr_tel:hover {
  color: #efb43e;
}

@media all and (max-width: 639px) {
  .contact_bnr > li .bnr_tel {
    font-size: 2.7rem;
  }
}

.contact_bnr > li .bnr_mobile {
  background: #1f89e4;
  border: 1px solid #166eba;
}

.contact_bnr > li .bnr_mobile:before {
  font-family: "Font Awesome 5 Free";
  content: "\f3cd";
  font-weight: 700;
}

.contact_bnr > li .bnr_mobile:hover {
  color: #0074ea;
}

.contact_bnr > li .bnr_fax {
  background: #f6f2e8;
  border: 1px solid #aaa;
  color: #333;
}

.contact_bnr > li .bnr_fax:before {
  font-family: "Font Awesome 5 Free";
  content: "\f1ac";
  font-weight: 700;
}

.contact_bnr > li .bnr_mail {
  background: #222;
  color: #fefefe;
}

.contact_bnr > li .bnr_mail:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 700;
}

.contact_bnr > li .bnr_mail:hover {
  background: #e7862b;
}

.contact_bnr > li a,
.contact_bnr > li span {
  display: block;
  padding: 5px 15px;
  margin: 0 auto;
  color: #ffffff;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  width: 300px;
}

.contact_bnr > li a:before,
.contact_bnr > li span:before {
  margin-right: 5px;
}

@media all and (max-width: 639px) {
  .contact_bnr > li a,
  .contact_bnr > li span {
    width: 300px;
    font-size: 1.5rem;
  }
}

@media all and (max-width: 800px) {
  .contact_bnr > li {
    margin: 0 auto 10px;
  }
}

/* footer
----------------------------------*/
#l-footer {
  position: relative;
  margin-top: 40px;
}

#l-footer:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background: #1f89e4;
  width: 100%;
  height: 55%;
}

#l-footer .inner {
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 30px;
}

@media all and (max-width: 1200px) {
  #l-footer .inner {
    max-width: 900px;
  }
}

#l-footer .yoyaku-txt {
  text-align: center;
  margin-bottom: -10px;
}

#l-footer .yoyaku-txt span {
  background: #e7862b;
  color: #fefefe;
  padding: 4px 8px;
}

#l-footer .contact-ttl {
  text-align: center;
  margin-bottom: 10px;
}

#l-footer .contact-ttl span {
  background: #222;
  padding: 4px 15px;
  border-radius: 20px;
}

#l-footer .footer-box {
  border-radius: 15px 15px 0 0;
  margin: 0 auto 0;
  padding: 25px 15px;
  background: #f1d6a6;
  position: relative;
  z-index: 5;
  overflow: hidden;
}

@media all and (max-width: 639px) {
  #l-footer {
    font-size: 1.2rem;
  }
  #l-footer .footer-box {
    padding: 30px 15px;
  }
}

.footer-txt-wrap {
  position: relative;
  z-index: 4;
  margin: 20px auto;
  font-weight: bold;
}

.footer-map {
  height: 250px;
  margin-bottom: 20px;
  -webkit-box-shadow: 0 0 15px rgba(44, 33, 30, 0.1);
          box-shadow: 0 0 15px rgba(44, 33, 30, 0.1);
  width: 100%;
}

@media all and (max-width: 639px) {
  .footer-map {
    height: 180px;
  }
}

.sns-list {
  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;
  margin-bottom: 10px;
}

.sns-list li:not(:last-child) {
  margin-right: 5px;
}

.sns-list li a {
  color: #fff;
  display: block;
  font-size: 1.5rem;
  text-align: center;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  line-height: 40px;
}

.sns-list li a.fb {
  background-color: #1877f2;
}

.flogo {
  width: 325px;
  text-align: center;
  margin: 20px auto 40px;
}

@media all and (max-width: 800px) {
  .flogo {
    max-width: 300px;
    width: 95%;
  }
}

@media all and (max-width: 639px) {
  .flogo {
    margin: 0 auto 10px;
  }
}

/* footer_navi
----------------------------------*/
.footer_navi {
  padding: 0;
  margin: 30px auto 0;
  max-width: 800px;
  font-size: 90%;
}

.footer_navi ul {
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer_navi li {
  z-index: 2;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  text-align: center;
  margin: 0 0 4px;
  border-left: 1px solid #2cb8e0;
}

.footer_navi li:last-child {
  border-right: 1px solid #2cb8e0;
}

.footer_navi li a {
  color: #fff;
  font-size: 1.5rem;
  position: relative;
  font-weight: bold;
}

.footer_navi li a span {
  display: none;
}

.footer_navi li a:hover {
  color: #1f89e4;
}

.footer_navi li .dropdown {
  display: none;
}

.column2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.column2.type1 {
  -webkit-box-align: initial;
      -ms-flex-align: initial;
          align-items: initial;
}

.column2 .child {
  width: 48%;
}

.column2 .child1 {
  width: 35%;
}

.column2 .child2 {
  width: 62%;
}

@media all and (max-width: 800px) {
  .column2 .child,
  .column2 .child1,
  .column2 .child2 {
    width: 100%;
    border: 0;
  }
}

.address {
  text-align: center;
  font-size: 13px;
}

.copyright {
  padding: 40px 0;
  background: #1f89e4;
  color: #000;
  font-size: 1.2rem;
  font-weight: normal;
  z-index: 0;
  position: relative;
}

.copyright:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100px;
  bottom: -5px;
  left: 0;
  background: url(../img/deco.png) repeat-x center bottom/350px auto;
  z-index: -1;
}

@media all and (max-width: 639px) {
  .copyright {
    font-size: 12px;
    padding-bottom: 80px;
    padding-top: 10px;
  }
  .copyright:before {
    display: none;
  }
}

/*----------------------------------
 --top-contents--
----------------------------------*/
/* --top-intro--
----------------------------------*/
.top-col2-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1000px;
  margin: 40px auto;
}

.top-col2-wrap .top-col2-left {
  width: 15%;
}

.top-col2-wrap .top-col2-right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 70px;
}

@media all and (max-width: 800px) {
  .top-col2-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .top-col2-wrap .top-col2-left {
    width: 100%;
  }
  .top-col2-wrap .top-col2-right {
    width: 100%;
    margin: 30px 0 0;
  }
}

.top-intro {
  position: relative;
  margin-top: 30px;
}

.top-intro:before {
  left: 0;
  top: 0;
  background: url(../img/bg-intro.jpg) no-repeat left bottom/cover;
  opacity: 0.9;
  position: absolute;
  content: "";
  width: 70%;
  height: 60%;
  z-index: 1;
}

@media all and (max-width: 639px) {
  .top-intro:before {
    width: 100%;
    height: 26%;
    background-position: 40% 100%;
  }
}

.top-lead {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  position: absolute;
  left: -15%;
  top: -8%;
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 0.2rem;
  color: #fff;
  line-height: 1.5;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.8);
}

.top-lead span {
  text-shadow: 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.5rem;
  display: block;
  color: #2cb8e0;
}

@media all and (max-width: 800px) {
  .top-lead {
    font-size: 2.4rem;
    left: -20%;
    white-space: nowrap;
  }
}

@media all and (max-width: 639px) {
  .top-lead {
    -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
            writing-mode: inherit;
    font-size: 1.8rem;
    left: 0;
    top: -120px;
  }
}

.top-box {
  max-width: 75%;
  background: #fefefe;
  padding: 40px;
  position: relative;
  z-index: 5;
  font-size: 1.1em;
  margin: 110px 0 20px auto;
  position: relative;
}

@media all and (max-width: 800px) {
  .top-box {
    max-width: 70%;
    padding: 15px;
    font-size: 1.1rem;
  }
}

@media all and (max-width: 639px) {
  .top-box {
    max-width: 95%;
    margin: 140px auto 0;
  }
}

.top-intro_txt {
  /*font-family: $font__ja;*/
  padding-left: 30px;
  line-height: 1.8;
}

.top-intro_txt p:not(:last-child) {
  margin-bottom: 15px;
}

@media all and (max-width: 639px) {
  .top-intro_txt {
    padding: 0;
  }
}

.top-sec2 {
  position: relative;
}

.top-sec2:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% - 60px);
  height: 70%;
  background-image: -webkit-gradient(linear, left top, right top, from(#eee), to(#f0f0f0));
  background-image: linear-gradient(to right, #eee 0%, #f0f0f0 100%);
  opacity: 0.7;
  z-index: -1;
}

@media all and (max-width: 639px) {
  .top-sec2:before {
    height: 100%;
    width: calc(100% - 40px);
  }
}

.top-sec3 {
  background: url(../img/bg-02.jpg) no-repeat center/cover;
}

.top-info1 {
  background: #fefefe;
  padding: 25px;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.top-info2 {
  background: rgba(255, 255, 255, 0.5);
  padding: 25px;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  font-size: 98%;
  font-weight: normal;
}

@media all and (max-width: 639px) {
  .top-info2 {
    background: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 0 25px;
  }
}

/* --news--
----------------------------------*/
.news-box {
  padding: 15px;
  position: relative;
  z-index: 10;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media all and (max-width: 639px) {
  .news-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 auto 25px;
    width: 90%;
    padding: 10px;
  }
}

.news-title {
  text-align: center;
  font-weight: bold;
  padding: 5px 20px;
  color: #0074ea;
}

.news-title span {
  font-size: 4rem;
  display: block;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
}

@media all and (max-width: 639px) {
  .news-title {
    padding: 5px 10px;
    width: 100%;
    font-size: 1.2rem;
  }
  .news-title span {
    font-size: 2rem;
    margin-bottom: 0;
  }
}

.news-right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 10px;
}

@media all and (max-width: 639px) {
  .news-right {
    width: 100%;
    margin: 10px 0 0;
  }
}

/*sec2*/
.greet_sec2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}

.greet_sec2 .sec2-img-box {
  width: calc((100% - 400px) / 3);
  -webkit-column-gap: 30px;
          column-gap: 30px;
  row-gap: 30px;
}

.greet_sec2 .sec2-img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

.greet_sec2 .sec2-img-box.img-1 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1,1fr);
      grid-template-columns: repeat(1, 1fr);
}

.greet_sec2 .sec2-img-box.img-2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1,1fr);
      grid-template-columns: repeat(1, 1fr);
  -ms-grid-rows: (1,1fr);
      grid-template-rows: repeat(1, 1fr);
}

.greet_sec2 .sec2-img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  border-radius: 20px;
}

.greet_sec2 .sp-sec2 {
  display: none;
}

.greet_sec2 .sec2-txt-box {
  width: 700px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  letter-spacing: 0.15em;
  position: relative;
  line-height: 2;
}

@media all and (max-width: 1200px) {
  .greet_sec2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (max-width: 1300px) {
  .greet_sec2 .sec2-img-box {
    width: calc((100% - 400px) / 3);
    -webkit-column-gap: 30px;
            column-gap: 30px;
    row-gap: 30px;
  }
}

@media all and (max-width: 1200px) {
  .greet_sec2 .sec2-img-box {
    width: 80%;
  }
}

@media all and (max-width: 639px) {
  .greet_sec2 .sec2-img-box {
    width: 100%;
  }
}

@media all and (max-width: 1200px) {
  .greet_sec2 .sec2-img-box.img-1 {
    display: none;
  }
}

@media all and (max-width: 639px) {
  .greet_sec2 .sp-sec2 {
    display: block;
    position: relative;
    height: 50px;
    margin-bottom: -40px;
    width: 100%;
    content: "";
    position: absolute;
    width: 47%;
    height: 100%;
    right: 0;
    top: 0;
    transition: -webkit-transform 1s ease-in;
    -webkit-transition: -webkit-transform 1s ease-in;
    transition: transform 1s ease-in;
    transition: transform 1s ease-in, -webkit-transform 1s ease-in;
  }
  .greet_sec2 .sp-sec2.trigger1 {
    content: "";
    position: absolute;
    width: 47%;
    height: 100%;
    left: 0;
    top: 0;
    transition: -webkit-transform 1s ease-in;
    -webkit-transition: -webkit-transform 1s ease-in;
    transition: transform 1s ease-in;
    transition: transform 1s ease-in, -webkit-transform 1s ease-in;
  }
  .greet_sec2 .sp-sec2.trigger1.is-on {
    -webkit-transform: translateX(-700px);
            transform: translateX(-700px);
  }
  .greet_sec2 .sp-sec2.is-on {
    -webkit-transform: translateX(700px);
    transform: translateX(700px);
  }
}

@media all and (max-width: 1200px) {
  .greet_sec2 .sec2-txt-box {
    margin: 30px auto;
  }
}

@media all and (max-width: 639px) {
  .greet_sec2 .sec2-txt-box {
    width: 90%;
    line-height: 2;
  }
  .greet_sec2 .sec2-txt-box .top-animation2 {
    opacity: 0;
  }
  .greet_sec2 .sec2-txt-box .top-animation2.is-on {
    opacity: 1;
    -webkit-animation: fadeInUp 0.4s ease-in-out;
            animation: fadeInUp 0.4s ease-in-out;
    z-index: 2;
  }
}

.grid3 {
  margin-left: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 15px 10px;
}

.grid3 li {
  overflow: hidden;
}

.grid3 li.type1 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1 / 1 / 3 / 2;
}

.grid3 li.type2 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 1 / 2 / 2 / 3;
}

.grid3 li.type3 {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 2 / 2 / 3 / 3;
}

.grid3 li img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

/*----------------------------------
 --others--
----------------------------------*/
.greet-txt {
  letter-spacing: 0;
  line-height: 2;
  padding: 15px;
  font-weight: normal;
}

/* --staff.php--
----------------------------------*/
.title-mini {
  color: #92cbf2;
  font-size: 1.15em;
  letter-spacing: 0.2rem;
}

.comment-txt {
  font-weight: normal;
  font-size: 0.9em;
}

.staff-name {
  font-family: "YakuHanMP", Lato, "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #2c211e;
  border-bottom: 0.9px solid #ccc;
  margin-bottom: 20px;
}

.staff-name .upper {
  font-size: 1.5rem;
  color: #444;
}

.staff-name .sub {
  color: #1f89e4;
  padding-left: 15px;
  font-size: 1.7rem;
  font-weight: 400;
}

@media all and (max-width: 639px) {
  .staff-name {
    font-size: 2.2rem;
    line-height: 1.4;
  }
  .staff-name .upper {
    font-size: 1.2rem;
  }
  .staff-name .sub {
    font-size: 1.5rem;
    display: block;
    padding-left: 0;
  }
}

.prod-name {
  font-family: "YakuHanMP", Lato, "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #2c211e;
  border-bottom: 0.9px solid #ccc;
  margin-bottom: 20px;
  line-height: 1.4;
}

.prod-name .upper {
  font-size: 1.5rem;
  color: #444;
}

.prod-name .sub {
  color: #1f89e4;
  font-size: 1.7rem;
  font-weight: 400;
  display: block;
}

.prod-name mns {
  font-size: 1.6rem;
}

@media all and (max-width: 639px) {
  .prod-name {
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.6;
  }
  .prod-name mns {
    font-size: 1.4rem;
  }
  .prod-name .upper {
    font-size: 1.2rem;
    display: block;
  }
  .prod-name .sub {
    font-size: 1.5rem;
    display: block;
    padding-left: 0;
  }
}

.price {
  font-weight: bold;
  color: #e7862b;
  font-size: 1.8rem;
  padding-right: 5px;
}

@media all and (max-width: 639px) {
  .price {
    font-size: 1.4rem;
  }
}

.price.price2 {
  font-size: 2.5rem;
}

@media all and (max-width: 639px) {
  .price.price2 {
    font-size: 1.9rem;
  }
}

.course-title {
  text-align: center;
  font-size: 3rem;
  color: #061d31;
  font-weight: 600;
  margin-bottom: 50px;
  position: relative;
  margin: -60px auto 50px;
}

.course-title span {
  display: block;
  line-height: 1.4;
  font-size: 1.8rem;
  color: #11538c;
}

.course-title:before {
  position: absolute;
  content: "";
  top: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -15px;
  z-index: 1;
  background: #1f89e4;
  width: 80px;
  height: 2px;
}

@media all and (max-width: 639px) {
  .course-title {
    font-size: 2.2rem;
    margin-top: 0;
  }
}

/* --treatment.php--
----------------------------------*/
.treat-head-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.treat-head-list > li {
  width: calc(100% / 6);
  padding: 0 5px;
  line-height: 1.5;
}

.treat-head-list > li figure {
  width: 80%;
  margin: 0 auto 5px;
}

@media all and (max-width: 800px) {
  .treat-head-list {
    max-width: 600px;
    margin: 0 auto;
  }
  .treat-head-list > li {
    width: calc(100% / 3);
    margin-bottom: 15px;
  }
}

@media all and (max-width: 639px) {
  .treat-head-list > li {
    font-size: 13px;
  }
}

.text-link {
  background: #e7862b;
  color: #fefefe;
  padding: 4px 8px;
}

.text-link:before {
  font-family: "Font Awesome 5 Free";
  content: "\f078";
  font-weight: 700;
  margin-right: 5px;
}

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

.treat-list2 > li {
  background: #f0f0f0;
  padding: 8px;
  width: calc((100% / 3) - 10px);
  margin: 0 15px 20px 0;
}

.treat-list2 > li:nth-child(3n) {
  margin-right: 0;
}

@media all and (max-width: 800px) {
  .treat-list2 > li {
    width: 48%;
    margin-right: 4%;
  }
  .treat-list2 > li:nth-child(3n) {
    margin-right: 4%;
  }
  .treat-list2 > li:nth-child(2n) {
    margin-right: 0;
  }
}

@media all and (max-width: 639px) {
  .treat-list2 > li {
    width: 100%;
    margin: 0 auto 15px;
  }
  .treat-list2 > li:nth-child(2n), .treat-list2 > li:nth-child(3n) {
    margin-right: auto;
  }
}

/* contents
----------------------------------*/
.single {
  max-width: 1200px;
  margin: 0 auto;
  padding: 90px 0;
  position: relative;
}

@media all and (max-width: 1200px) {
  .single {
    width: 94%;
  }
}

.single02 {
  margin: 0 auto;
  padding: 80px 0;
}

.single03 {
  max-width: 1500px;
  width: 95%;
  margin: 0 auto;
  padding: 80px 0;
  position: relative;
}

.single04 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 0;
  position: relative;
}

@media all and (max-width: 1200px) {
  .single04 {
    width: 94%;
  }
}

.margin-top {
  margin-top: -80px;
}

@media all and (max-width: 639px) {
  .margin-top {
    margin-top: -30px;
  }
}

.lsingle,
.rsingle {
  width: 48.44%;
}

.lsingle {
  float: left;
}

.rsingle {
  float: right;
}

.mbox {
  background: #fefefe;
  padding: 40px 30px;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  margin-right: auto;
}

.mbox.transparent {
  background: none;
}

.mbox.opa6 {
  background: rgba(254, 254, 254, 0.8);
}

.mbox.box-y {
  background: rgba(254, 254, 254, 0.9);
  -webkit-box-shadow: 0 0 8px rgba(31, 137, 228, 0.3);
          box-shadow: 0 0 8px rgba(31, 137, 228, 0.3);
}

@media all and (max-width: 639px) {
  .mbox {
    padding: 20px 15px;
  }
}

.mbox2 {
  background: #fcf5f6;
  margin-right: auto;
  margin-left: auto;
  max-width: 1500px;
  padding: 30px;
}

.mbox2.box_beige {
  background: rgba(252, 252, 252, 0.8);
  border: 2px solid #f6f2e8;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.mbox2.box_blue {
  background: rgba(252, 252, 252, 0.8);
  border: 2px solid #e7f7fc;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media all and (max-width: 639px) {
  .mbox2 {
    padding: 15px;
  }
}

.container-box {
  max-width: 850px;
  margin-right: auto;
  margin-left: auto;
}

.bg-grid {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(95%, transparent), color-stop(50%, rgba(204, 204, 204, 0.2)), to(rgba(204, 204, 204, 0.2))), -webkit-gradient(linear, left bottom, left top, color-stop(95%, transparent), color-stop(50%, rgba(204, 204, 204, 0.2)), to(rgba(204, 204, 204, 0.2)));
  background-image: linear-gradient(90deg, transparent 95%, rgba(204, 204, 204, 0.2) 50%, rgba(204, 204, 204, 0.2)), linear-gradient(0deg, transparent 95%, rgba(204, 204, 204, 0.2) 50%, rgba(204, 204, 204, 0.2));
  background-size: 20px 20px;
  background-repeat: repeat;
}

.bg-map {
  background: url(../img/map.png) no-repeat right bottom;
}

@media all and (max-width: 639px) {
  .bg-map {
    background-size: auto 200px;
    background-position: right top;
  }
}

#main {
  float: left;
  width: 76%;
}

@media all and (max-width: 800px) {
  #main {
    float: none;
    width: 100%;
  }
}

#main2 {
  float: left;
  width: 76%;
}

@media all and (max-width: 800px) {
  #main2 {
    float: none;
    width: 100%;
  }
}

@media all and (max-width: 639px) {
  #main2 .mbox {
    background: #fefefe;
    padding: 5px;
  }
}

#side {
  float: right;
  position: -webkit-sticky;
  position: sticky;
  right: 0;
  top: 0;
  width: 21%;
  padding-right: 10px;
}

@media all and (max-width: 800px) {
  #side {
    float: none;
    width: 100%;
    position: static;
    margin-top: 40px;
  }
}

/* 2column */
#col2-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

#col2-wrap #col2-main {
  width: 78%;
}

@media all and (max-width: 800px) {
  #col2-wrap #col2-main {
    width: 100%;
    margin: 0 auto;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

#col2-wrap #col2-side {
  width: 20%;
  padding: 60px 0 0;
}

@media all and (max-width: 800px) {
  #col2-wrap #col2-side {
    width: 95%;
    margin: 0 auto 20px;
    padding-top: 30px;
  }
}

/* mtitle
----------------------------------*/
.mtitle {
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 48px;
  font-size: 1.8rem;
  position: relative;
  text-align: center;
  font-family: "YakuHanMP", Lato, "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  z-index: 10;
}

.mtitle span.eng {
  display: block;
  font-size: 2.8rem;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: -5px;
  color: #1f89e4;
  line-height: 1.8;
  letter-spacing: 0.2rem;
}

.mtitle span.ja {
  display: block;
  font-size: 2.5rem;
  font-family: "Mochiy Pop P One", sans-serif;
  font-weight: 400;
}

.mtitle:after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: -10px;
  height: 20px;
  width: 140px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../img/mtitle2.png) no-repeat 50%/cover;
  z-index: -1;
}

.mtitle.white {
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

.mtitle.white span {
  color: #fff;
}

.mtitle.white:after {
  background: none;
}

.mtitle.center {
  text-align: center;
}

.mtitle.center:after {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.mtitle.mtitle_left {
  text-align: left;
}

.mtitle.mtitle_left:after {
  left: 0;
  -webkit-transform: inherit;
          transform: inherit;
}

@media all and (max-width: 639px) {
  .mtitle {
    font-size: 1.5rem;
    text-align: center;
  }
  .mtitle span {
    font-size: 2.2rem;
    line-height: 1.6;
    margin-bottom: 0px;
  }
}

.mtitle2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  padding: 5px;
  color: #222;
  border-bottom: 2px solid;
  -o-border-image: linear-gradient(to right, rgba(31, 137, 228, 0.6) 0%, #92cbf2 100%);
     border-image: -webkit-gradient(linear, left top, right top, from(rgba(31, 137, 228, 0.6)), to(#92cbf2));
     border-image: linear-gradient(to right, rgba(31, 137, 228, 0.6) 0%, #92cbf2 100%);
  border-image-slice: 1;
  line-height: 1.3;
  font-weight: 600;
}

.mtitle2 span {
  font-size: 2.6rem;
  margin-right: 15px;
  color: #1f89e4;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.mtitle2 b {
  font-size: 2.6rem;
  margin-right: 15px;
  color: #1f89e4;
  font-family: "YakuHanMP", Lato, "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
}

@media all and (max-width: 639px) {
  .mtitle2 {
    font-size: 1.4rem;
  }
  .mtitle2 span, .mtitle2 b {
    font-size: 1.8rem;
    display: block;
  }
}

.mtitle3 {
  font-size: 1.8rem;
  font-weight: bold !important;
  color: #4a3833;
  display: block;
  border-bottom: 1px solid #2cb8e0;
  padding-bottom: 5px;
  margin-bottom: 20px;
}

.mtitle3:before {
  font-family: "Font Awesome 5 Free";
  content: "\f138";
  font-weight: 700;
  margin-right: 5px;
  color: rgba(146, 203, 242, 0.7);
}

.mtitle3 b {
  color: #2c211e;
  font-size: 90%;
  font-weight: normal;
  margin-left: 5px;
}

.mtitle3 span {
  font-size: 90%;
  color: #2c211e;
  font-weight: normal;
  display: block;
}

@media all and (max-width: 639px) {
  .mtitle3 {
    padding: 4px;
    font-size: 1.5rem;
  }
  .mtitle3 span {
    border-bottom: 0;
    font-size: 1.4rem;
  }
}

.mtitle_balloon {
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.mtitle_balloon .eng {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 600;
  font-size: 3rem;
}

.mtitle_balloon span {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  line-height: 1.5;
  overflow: hidden;
}

.mtitle_balloon span:before, .mtitle_balloon span:after {
  content: "";
  display: block;
  border-bottom: 3px solid #140f0d;
  position: absolute;
  width: 50%;
  bottom: 6px;
}

.mtitle_balloon span:before {
  left: -5px;
}

.mtitle_balloon span:after {
  right: -5px;
}

.mtitle_balloon span i {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 3px solid #140f0d;
  border-right: 3px solid #140f0d;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  position: absolute;
  left: 50%;
  margin-left: -5px;
  bottom: 2px;
}

.mtitle_balloon.center {
  text-align: center;
}

.mtitle_balloon.blue span:before, .mtitle_balloon.blue span:after {
  border-bottom-color: #1f89e4;
}

.mtitle_balloon.blue span i {
  border-color: #1f89e4;
}

.mtitle_balloon.white span:before, .mtitle_balloon.white span:after {
  border-bottom-color: #fefefe;
}

.mtitle_balloon.white span i {
  border-color: #fefefe;
}

@media all and (max-width: 639px) {
  .mtitle_balloon {
    font-size: 1.7rem;
  }
  .mtitle_balloon span.eng {
    font-size: 2.4rem;
  }
}

.mtitle-bll {
  font-size: 1.8rem;
  font-weight: bold;
  border-radius: 5px 5px 0 0;
  border-bottom: 3px solid #e9e9e9;
  position: relative;
  padding: 5px;
  padding-left: 20px;
  margin-bottom: 10px;
  line-height: 1.5;
  color: #11538c;
}

.mtitle-bll:before {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #1f89e4;
}

.mtitle-bll:after {
  position: absolute;
  content: "";
  display: block;
  bottom: -3px;
  width: 100px;
  height: 3px;
  left: 0;
  background: #1f89e4;
}

@media all and (max-width: 639px) {
  .mtitle-bll {
    font-size: 1.4rem;
  }
}

.mtitle4 {
  font-weight: normal;
  text-align: center;
  font-size: 2.6rem;
  line-height: 1.5;
  letter-spacing: 0.1rem;
  font-weight: bold;
}

.mtitle4 span {
  position: relative;
  display: inline-block;
  min-width: 10%;
}

.mtitle4 span:before, .mtitle4 span:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1px;
  height: 2rem;
  background-color: #1f89e4;
}

.mtitle4 span:before {
  left: -11px;
  -webkit-transform: rotate(-20deg);
  transform: rotate(-20deg);
}

.mtitle4 span:after {
  right: -11px;
  -webkit-transform: rotate(20deg);
  transform: rotate(20deg);
}

@media all and (max-width: 639px) {
  .mtitle4 {
    font-size: 1.8rem;
  }
}

.mtitle-vertical {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  line-height: 1.4;
  font-size: 1.8rem;
  font-weight: 600;
  max-height: 25em;
}

.mtitle-vertical span {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 3rem;
  display: block;
  color: #92cbf2;
}

@media all and (max-width: 639px) {
  .mtitle-vertical {
    -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
            writing-mode: inherit;
    font-size: 1.3rem;
  }
  .mtitle-vertical span {
    font-size: 2rem;
  }
}

.mtitle_sub {
  padding-left: 0.5em;
  font-weight: 700;
  line-height: 1.3;
  position: relative;
  border-left: 6px solid #2cb8e0;
  margin: 15px 0;
  font-size: 1.7rem;
  color: #2c211e;
  padding: 5px 0 5px 0.5em;
}

.mtitle_sub:before {
  position: absolute;
  left: -6px;
  bottom: 0;
  content: "";
  width: 6px;
  height: 50%;
  background-color: #92cbf2;
}

@media all and (max-width: 639px) {
  .mtitle_sub {
    font-size: 1.4rem;
  }
}

.mtitle_box {
  background: #2cb8e0;
  color: #2c211e;
  font-size: 2.5rem;
  position: relative;
  padding: 10px;
  margin-bottom: 15px;
  font-weight: bold;
  font-family: "Mochiy Pop P One", sans-serif;
}

.mtitle_box.small-p {
  padding: 5px 10px;
  line-height: 1.4;
  font-size: 1.8rem;
  margin-bottom: 8px;
}

@media all and (max-width: 639px) {
  .mtitle_box.small-p {
    font-size: 1.3rem;
  }
}

.mtitle_box span {
  font-weight: normal;
  font-size: 15px;
  padding-left: 10px;
}

.mtitle_box:before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f30a";
  font-weight: 700;
  display: block;
  right: -1px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fff;
}

@media all and (max-width: 639px) {
  .mtitle_box {
    font-size: 1.4rem;
  }
}

.mtext1 {
  font-size: 1.8rem;
  font-weight: bold;
}

@media all and (max-width: 639px) {
  .mtext1 {
    font-size: 1.4rem;
    line-height: 1.4;
  }
}

.mtext2 {
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  line-height: 1.4;
}

.mtext2 span {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  color: #166eba;
}

@media all and (max-width: 639px) {
  .mtext2 {
    font-size: 1.6rem;
  }
  .mtext2 span {
    font-size: 1.4rem;
  }
}

.mtitle_category {
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: normal;
}

.mtitle_category:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0ca";
  font-weight: 700;
  margin-right: 5px;
  color: #1f89e4;
}

/* btn
----------------------------------*/
.btns.mauto a {
  margin: 10px auto;
}

.btns a {
  background: #f4f4f4;
  text-align: center;
  max-width: 240px;
  width: 90%;
  color: #1f89e4;
  border: 1px solid #1f89e4;
  display: block;
  padding: 4px 5px;
  font-weight: bold;
  font-size: 90%;
  border-radius: 5px;
}

.btns a:hover {
  background: #1f89e4;
  color: #fff;
}

@media all and (max-width: 639px) {
  .btns a {
    margin: auto;
  }
}

.btn01 a {
  background: #2cb8e0;
  color: #fff;
  text-align: center;
  max-width: 300px;
  width: 95%;
  margin: 20px auto;
  display: block;
  padding: 8px 5px;
  font-weight: bold;
  border-radius: 35px;
}

.btn01 a:hover {
  background: #1f89e4;
}

@media all and (max-width: 639px) {
  .btn01 a {
    width: 90%;
  }
}

.btn01.type1 a {
  margin: 20px 0;
}

.btn02 {
  max-width: 300px;
  width: 95%;
  margin: 20px auto 20px;
}

.btn02 a {
  display: block;
  position: relative;
  padding: 15px 0;
  background-color: #1f89e4;
  line-height: 24px;
  letter-spacing: 0.1rem;
  text-align: center;
  color: #ffffff;
}

.btn02 a i {
  display: block;
  position: absolute;
  top: 50%;
  right: -10px;
  width: 50px;
  height: 1px;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn02 a:hover {
  background-color: #3695e7;
}

.btn02 a:hover i {
  width: 34px;
}

@media all and (max-width: 639px) {
  .btn02 {
    width: 98%;
  }
}

.btn03.col1 a {
  background: #92cbf2;
  color: #fff;
}

.btn03.col1 a:hover {
  background: #1f89e4;
  color: #fefefe;
}

.btn03 a {
  background: #1f89e4;
  text-align: center;
  margin: 20px auto;
  color: #fefefe;
  display: table;
  padding: 8px 15px;
  font-weight: bold;
  border-radius: 5px;
}

.btn03 a:hover {
  background: #92cbf2;
  color: #fff;
}

@media all and (max-width: 639px) {
  .btn03 a {
    width: 95%;
    margin: 0 auto;
  }
}

.btn-blog a {
  display: block;
  max-width: 600px;
  padding: 10px;
  text-align: center;
  font-weight: 600;
  background-image: -webkit-gradient(linear, left top, right top, from(#efb43e), to(#e7862b));
  background-image: linear-gradient(to right, #efb43e, #e7862b);
  font-size: 1.1em;
  line-height: 1.4;
  border-radius: 25px;
  margin: 15px auto;
}

.btn-blog a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f35a";
  font-weight: 700;
  margin-right: 5px;
}

/* news
----------------------------------*/
.news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.news dt {
  width: 7.5em;
  padding: 3px 5px;
  background: #92cbf2;
  text-align: center;
  font-weight: bold;
  color: #333;
}

.news dd {
  padding: 5px;
  background: #fff;
  width: calc(100% - 8.5em);
  margin-left: 10px;
}

.news dd a {
  color: #0074ea;
}

.news dt:not(:last-child),
.news dd:not(:last-child) {
  margin-bottom: 5px;
}

.treat-dl {
  padding: 8px;
  background: #f0f0f0;
  font-size: 0.9em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 10px;
}

.treat-dl dt {
  width: 5em;
  padding: 3px;
  color: #1f89e4;
}

.treat-dl dd {
  width: calc(100% - 6em);
}

.news-bl dt {
  float: left;
  width: 8.5em;
  padding: 3px 5px;
  line-height: 1.3;
  border: 1px solid #2c211e;
  border-radius: 15px;
  color: #2c211e;
  font-weight: 400;
  text-align: center;
  background: #fff;
}

.news-bl dd {
  padding: 0 0 10px 9.5em;
  line-height: 1.6;
  border-bottom: 1px dotted #dddddd;
  margin: 0 0 10px;
}

.news-bl dd a {
  color: #2c211e;
  text-decoration: underline;
}

.news-bl dd:last-child {
  margin: 0;
  border-bottom: none;
}

@media all and (max-width: 639px) {
  .news-bl dt {
    float: none;
  }
  .news-bl dd {
    padding: 5px 0 10px;
  }
}

.news-bl2 dt {
  float: left;
  width: 8.5em;
  line-height: 1.3;
  color: #2c211e;
  font-weight: 400;
  text-align: center;
}

.news-bl2 dt:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0da";
  font-weight: 700;
  margin-right: 10px;
  color: #0074ea;
}

.news-bl2 dd {
  padding: 0 0 10px 9em;
  line-height: 1.6;
  border-bottom: 1px dotted #dddddd;
  margin: 0 0 10px;
}

.news-bl2 dd a {
  color: #2c211e;
  background-image: -webkit-gradient(linear, left top, right top, from(#1f89e4), to(#92cbf2));
  background-image: linear-gradient(to right, #1f89e4, #92cbf2);
  padding-bottom: 0.25em;
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  -webkit-transition: background-size 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: background-size 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.news-bl2 dd a:hover {
  background-position: 0 100%;
  background-size: 100% 1px;
}

.news-bl2 dd:last-child {
  margin: 0;
  border-bottom: none;
}

@media all and (max-width: 639px) {
  .news-bl2 dt {
    float: none;
  }
  .news-bl2 dd {
    padding: 5px 0 10px;
  }
}

.top-blog-wrap .news-bl dd:first-of-type a {
  color: #166eba;
}

.top-blog-wrap .news-bl dd:first-of-type a:before {
  color: #e7862b;
  content: "New";
  margin-right: 4px;
}

/* page-title
----------------------------------*/
.page-title {
  position: relative;
  z-index: 1;
  background: url(../img/007.jpg) no-repeat 50%/cover;
  /*@include wide_width;*/
  /*margin-top: 10px;*/
}

.page-title.type1 {
  background: url(../img/image/reccomend.jpg) no-repeat 50% 16%/cover;
}

.page-title.type2 {
  background: url(../img/image/mise.jpg) no-repeat 50% 48%/cover;
}

.page-title.type3 {
  background: url(../img/image/sakura.jpg) no-repeat 50% 48%/cover;
}

.page-title:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #2c2e4254;
}

.page-title .inner {
  height: 400px;
  /*height: 300px;*/
  max-width: 1200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
}

.page-title .page-lead {
  margin: 0 auto;
  color: #1f89e4;
  border-radius: 20px 0 20px 0;
  padding: 100px 0 0px;
  /*padding: 20px 0;*/
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  color: #fefefe;
}

.page-title .page-lead span {
  display: block;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 4rem;
  letter-spacing: 0.5rem;
}

@media all and (max-width: 800px) {
  .page-title {
    background-attachment: scroll;
  }
  .page-title .inner {
    width: 100%;
    height: 200px;
  }
  .page-title .page-lead {
    width: 70%;
    border-radius: 10px 10px 0 0;
  }
}

@media all and (max-width: 639px) {
  .page-title .inner {
    height: 220px;
    /*height: 180px;*/
  }
  .page-title .page-lead {
    padding: 8px 0;
    font-size: 1.4rem;
    width: 80%;
  }
  .page-title .page-lead span {
    font-size: 2rem;
  }
}

.bg-01 {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(146, 203, 242, 0.5)), color-stop(50%, rgba(146, 203, 242, 0.4)), color-stop(50.1%, #eacd9a), to(#eacd9a));
  background-image: linear-gradient(to right, rgba(146, 203, 242, 0.5) 0%, rgba(146, 203, 242, 0.4) 50%, #eacd9a 50.1%, #eacd9a 100%);
}

@media all and (max-width: 639px) {
  .bg-01 {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(31, 137, 228, 0.4)), color-stop(55%, rgba(31, 137, 228, 0.4)), color-stop(55.1%, #eacd9a), to(#eacd9a));
    background-image: linear-gradient(to bottom, rgba(31, 137, 228, 0.4) 0%, rgba(31, 137, 228, 0.4) 55%, #eacd9a 55.1%, #eacd9a 100%);
  }
}

.bg-02 {
  background: url(../img/grid2.png);
}

.bg-03 {
  position: relative;
  margin-bottom: 40px;
}

.bg-03:after {
  position: absolute;
  content: "";
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: calc(100% - 60px);
  height: 60%;
  bottom: 0;
  background: rgba(146, 203, 242, 0.2);
  z-index: -2;
}

@media all and (max-width: 639px) {
  .bg-03:after {
    height: 80%;
    width: calc(100% - 30px);
  }
}

.bg-gradient {
  background-image: -webkit-gradient(linear, left top, right top, from(#f0ead9), to(#fcfcfc));
  background-image: linear-gradient(to right, #f0ead9 0%, #fcfcfc 100%);
}

.bg-contents {
  position: relative;
}

.bg-contents:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 300px;
  z-index: -1;
  background: #1f89e4;
  opacity: 0.8;
}

@media all and (max-width: 800px) {
  .bg-contents:before {
    height: 78%;
    bottom: 2%;
  }
}

.bg-maru1 {
  background: rgba(246, 242, 232, 0.4);
  max-width: calc(100% - 50px);
  margin-left: auto;
  margin-right: auto;
  margin: 40px auto;
}

@media all and (max-width: 800px) {
  .bg-maru1 {
    max-width: calc(100% - 20px);
  }
}

.bg-maru2 {
  background: #92cbf2;
  max-width: calc(100% - 50px);
  margin-left: auto;
  margin-right: auto;
  margin: 40px auto;
}

@media all and (max-width: 800px) {
  .bg-maru2 {
    max-width: calc(100% - 20px);
  }
}

.bg-base {
  position: relative;
  margin: 40px auto;
  max-width: calc(100% - 50px);
  margin-left: auto;
  margin-right: auto;
  background: #1f89e4;
  border-radius: 20px;
}

@media all and (max-width: 800px) {
  .bg-base {
    max-width: calc(100% - 20px);
  }
}

.bg-base:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 54px;
  bottom: -7px;
  left: 0;
  background: url(../img/deco.png) repeat-x 50%/contain;
}

.bg-blue {
  background: #0074ea;
}

.bg-gray {
  position: relative;
  background: #e9e9e9;
  max-width: calc(100% - 50px);
  margin-left: auto;
  margin-right: auto;
  margin: 40px auto;
}

@media all and (max-width: 800px) {
  .bg-gray {
    max-width: calc(100% - 20px);
  }
}

/* tbl
----------------------------------*/
.timetable {
  width: 100%;
  margin: 0 auto;
}

.timetable th,
.timetable td {
  text-align: center;
  font-size: 1.3rem;
  font-weight: bold;
  vertical-align: middle;
  padding: 5px;
  border: 0.9px solid #1f89e4;
}

@media all and (max-width: 639px) {
  .timetable th,
  .timetable td {
    font-size: 1.1rem;
    padding: 3px;
  }
}

.timetable td {
  color: #2c211e;
  background: #fff;
}

.timetable td .circle {
  color: #92cbf2;
  font-size: 2rem;
  font-weight: 600;
}

@media all and (max-width: 639px) {
  .timetable td .circle {
    font-size: 1.3rem;
  }
}

.timetable td .yasumi {
  color: #92cbf2;
  font-size: 1.5rem;
  font-weight: 600;
}

@media all and (max-width: 639px) {
  .timetable td .yasumi {
    font-size: 1.1rem;
  }
}

.timetable td .time-txt {
  font-size: 12px;
  line-height: 1.3;
}

.timetable .tr-01 td {
  background: rgba(0, 116, 234, 0.6);
  text-align: center;
}

.timetable th {
  background: #c0e1f7;
}

.tbl {
  width: 100%;
}

.tbl th,
.tbl td {
  padding: 15px;
  vertical-align: middle;
  border: 1px solid #1f89e4;
}

.tbl th {
  background: rgba(31, 137, 228, 0.1);
}

.tbl th span {
  font-size: 1.4rem;
}

.tbl th.th-1 {
  width: 25%;
}

.tbl th.cell02 {
  width: 20%;
}

.tbl th.cell03 {
  width: 22.5%;
}

.tbl td {
  background: #fefefe;
}

@media all and (max-width: 639px) {
  .tbl {
    font-size: 1.1rem;
  }
  .tbl th,
  .tbl td {
    padding: 10px;
  }
}

.tbl .cell01 {
  width: 45%;
}

.tbl .cell02 {
  width: 25%;
}

.tbl_new {
  width: 100%;
}

@media all and (max-width: 1200px) {
  .tbl_new {
    width: 95%;
  }
}

@media all and (max-width: 639px) {
  .tbl_new th {
    width: 36%;
  }
}

.tbl_new tr th,
.tbl_new tr td {
  vertical-align: middle;
  padding: 15px 10px;
}

.tbl_new tr th {
  font-weight: 700;
  width: 27%;
  color: #0074ea;
}

.tbl_new tr:nth-child(odd) th,
.tbl_new tr:nth-child(odd) td {
  background: #e9e9e9;
}

.tbl-border {
  width: 100%;
}

.tbl-border tr:first-child th,
.tbl-border tr:first-child td {
  border-top: 0.9px solid #aaa;
}

.tbl-border th,
.tbl-border td {
  padding: 15px;
  vertical-align: middle;
  border-bottom: 0.9px solid #aaa;
  line-height: 1.6;
}

@media all and (max-width: 639px) {
  .tbl-border th,
  .tbl-border td {
    padding: 10px 5px;
  }
}

.tbl-border th {
  color: #2c211e;
}

@media all and (max-width: 639px) {
  .tbl-border th {
    width: 30%;
  }
}

.tbl-plain {
  width: 100%;
}

.tbl-plain th,
.tbl-plain td {
  padding: 10px 15px;
  border-top: 1px solid #555;
  border-bottom: 1px solid #555;
}

.tbl-plain th {
  color: #1f89e4;
  width: 30%;
}

@media all and (max-width: 639px) {
  .tbl-plain th {
    width: 35%;
  }
}

.company {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 5px;
}

.company th,
.company td {
  padding: 15px 10px;
  vertical-align: middle;
}

.company th {
  width: 15%;
  position: relative;
  background: #2cb8e0;
  color: #fefefe;
  font-weight: bold;
}

.company th::after {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: #f9f9f9;
  border-width: 10px;
  border-left-color: #2cb8e0;
  margin-top: -10px;
}

.company td {
  background: #f9f9f9;
  padding-left: 20px;
}

.tbl0 {
  width: 100%;
}

.tbl0 th,
.tbl0 td {
  padding: 3px 5px;
  border: 0;
  border-bottom: 1px dashed #ddd;
}

.tbl0 th {
  padding-left: 0;
  background: none;
  text-align: left;
  width: 35%;
  color: #111;
}

.tbl0 th:after, .tbl0 th:before {
  display: none;
}

@media all and (max-width: 639px) {
  .tbl0 th {
    width: 60%;
  }
}

/* ggmap
----------------------------------*/
.ggmap {
  position: relative;
  padding-bottom: 30.25%;
  height: 0;
  overflow: hidden;
}

@media all and (max-width: 639px) {
  .ggmap.ggmap2 {
    padding-bottom: 90%;
  }
}

@media all and (max-width: 639px) {
  .ggmap {
    padding-bottom: 46.25%;
  }
}

.ggmap iframe,
.ggmap object,
.ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* list
----------------------------------*/
.list_common.disc li:before {
  content: "・";
  margin-right: 5px;
  color: #2cb8e0;
}

.list_common li {
  padding-bottom: 5px;
  padding-left: 1rem;
  margin-bottom: 8px;
  border-bottom: 1px dotted #cccccc;
}

.list_common li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.list_common li .check_num {
  width: 30px;
  height: 30px;
  background: #1f89e4;
  color: #fff;
  border-radius: 100px;
  line-height: 30px;
  text-align: center;
  font-weight: bold;
  display: inline-block;
  margin-right: 10px;
}

.list_check {
  padding: 10px;
  background: #f4f4f4;
}

.list_check.bg-w {
  background: #fff;
}

.list_check.bg-none {
  background: none;
}

.list_check.iconr li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: 700;
  margin-right: 10px;
  color: #800e1d;
}

.list_check li {
  padding-bottom: 5px;
}

.list_check li span {
  font-weight: normal;
  font-size: 0.9em;
  display: block;
  padding: 10px;
  background: rgba(246, 242, 232, 0.2);
  margin-top: 10px;
}

.list_check li:not(:last-child) {
  margin-bottom: 10px;
  border-bottom: 1px dashed #ccc;
}

.list_check li:last-child {
  padding-bottom: 0;
}

.list_check li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: 700;
  margin-right: 10px;
  color: #3695e7;
}

@media all and (max-width: 639px) {
  .list_check li {
    width: 98%;
    margin: 0 auto 10px;
  }
}

.list_check2 li {
  display: inline-block;
  margin-bottom: 5px;
  margin-right: 1%;
  padding: 3px 10px;
  background: #fff;
  border-radius: 5px;
}

.list_check2 li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f138";
  font-weight: 700;
  margin-right: 6px;
  color: #2cb8e0;
}

@media all and (max-width: 639px) {
  .list_check2 li {
    width: 100%;
    margin: 0 auto 5px;
  }
}

.list_check3.bd_none li:not(:last-child) {
  border-bottom: 0px dashed #ccc;
}

.list_check3 li {
  padding-bottom: 5px;
  font-weight: bold;
}

.list_check3 li:not(:last-child) {
  margin-bottom: 10px;
  border-bottom: 1px dashed #ccc;
}

.list_check3 li:last-child {
  padding-bottom: 0;
}

.list_check3 li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f14a";
  font-weight: 700;
  margin-right: 10px;
  color: #2cb8e0;
}

.ol-list {
  counter-reset: number;
  /* 名前を付けたカウンターをリセット */
  list-style: none;
  /* olが数字を付けることをキャンセル */
  background: rgba(146, 203, 242, 0.5);
  padding: 20px;
}

.ol-list > li {
  line-height: 2;
  border-bottom: 1px dashed #eee;
  margin-bottom: 10px;
  padding: 5px 0 8px;
  padding-left: 50px;
  font-weight: bold;
  position: relative;
  line-height: 1.6;
  font-weight: bold;
  font-size: 1.8rem;
}

.ol-list > li .small {
  font-weight: normal;
  display: block;
  padding: 10px;
  line-height: 1.6;
  font-size: initial;
}

.ol-list > li:before {
  counter-increment: number;
  content: counter(number);
  background: #222;
  position: absolute;
  width: 2em;
  height: 2em;
  text-align: center;
  font-size: 2rem;
  line-height: 2em;
  color: #fefefe;
  left: 0;
  top: 0px;
  border-radius: 100%;
}

@media all and (max-width: 639px) {
  .ol-list > li {
    font-size: 1.3rem;
  }
  .ol-list > li span {
    font-size: 0.9em;
  }
  .ol-list > li:before {
    font-size: 1.8rem;
  }
}

.ol-list2 {
  counter-reset: number;
  /* 名前を付けたカウンターをリセット */
  list-style: none;
  /* olが数字を付けることをキャンセル */
  background: rgba(146, 203, 242, 0.1);
  padding: 10px;
}

.ol-list2 > li {
  line-height: 1.4;
  border-bottom: 1px dashed #eee;
  margin-bottom: 10px;
  padding: 5px 0 8px;
  padding-left: 35px;
  font-weight: bold;
  position: relative;
  line-height: 1.4;
  font-weight: bold;
}

.ol-list2 > li:last-child {
  border-bottom: 0px dashed #eee;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.ol-list2 > li:before {
  counter-increment: number;
  content: counter(number);
  background: #222;
  position: absolute;
  width: 1.6em;
  height: 1.6em;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.6em;
  color: #fefefe;
  left: 0;
  top: 0px;
  border-radius: 100%;
}

@media all and (max-width: 639px) {
  .ol-list2 > li {
    padding-left: 25px;
  }
  .ol-list2 > li:before {
    font-size: 1.3rem;
    line-height: 1.3em;
    width: 1.3em;
    height: 1.3em;
  }
}

.list_profile li {
  font-size: 0.9em;
  padding: 5px;
  border-bottom: 0.9px solid #d9c99f;
}

.list_profile li:before {
  content: "＋";
  margin-right: 5px;
  color: #1f89e4;
}

/* blog
----------------------------------*/
.blog-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 1200px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 50px auto 0;
}

@media all and (max-width: 639px) {
  .blog-wrap {
    margin: 50px auto 20px;
  }
}

.blog-wrap * {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.blog-wrap > li {
  width: 30%;
  margin: 0 1% 20px;
  position: relative;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: 15px 10px;
}

@media all and (max-width: 1100px) {
  .blog-wrap > li {
    width: 48%;
  }
}

.blog-wrap > li > a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}

.blog-wrap > li:hover {
  background: white;
}

.blog-wrap > li:hover .blog-img img {
  opacity: 1;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

@media all and (max-width: 639px) {
  .blog-wrap > li {
    width: 100%;
    margin: 0 auto 0px;
    padding-bottom: 0;
  }
}

.blog-img {
  width: 100%;
  height: 240px;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media all and (max-width: 639px) {
  .blog-img {
    height: 160px;
  }
}

.blog-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-family: "object-fit: cover;";
  /*IE対策*/
}

.blog-img:hover img {
  opacity: 1 !important;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.blog-detail {
  padding-top: 10px;
  width: 100%;
}

.blog-detail-upper {
  position: relative;
  z-index: 2;
  margin: -31px 0 0;
  color: #fff;
  font-size: 12px;
}

.blog-category {
  display: inline-block;
  padding: 5px;
  line-height: 1.3;
  text-align: center;
  background: #111;
}

.blog-date {
  background: #1f89e4;
  width: 100px;
  padding: 5px;
  line-height: 1.3;
  text-align: center;
  display: inline-block;
  color: #fff;
  font-size: 12px;
}

.blog-date2 {
  color: #aeb6b4;
  font-size: 0.9em;
  margin-bottom: 5px;
  margin-right: 5px;
}

.blog-date2:before {
  font-family: "Font Awesome 5 Free";
  content: "\f017";
  font-weight: 900;
  margin-right: 5px;
}

.blog-title {
  font-weight: 700;
  line-height: 1.3;
  margin: 10px 0;
}

.blog-txt {
  line-height: 1.5;
  color: #333;
  padding: 10px;
  font-size: 1.4rem;
}

@media all and (max-width: 639px) {
  .blog-txt {
    font-size: 12px;
  }
}

.blog-cat {
  font-size: 1.2rem;
}

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

.pages .page_next,
.pages .page_prev {
  display: inline-block;
  margin: 0 20px;
}

.pages .page_next a,
.pages .page_prev a {
  color: #d6dad9;
  padding: 4px 5px;
  background: #111;
  font-size: 12px;
}

.category_nav {
  border: 1px solid #dddddd;
}

.category_nav li a {
  display: block;
  padding: 15px;
  border-bottom: 1px dotted #dddddd;
  background-color: #ffffff;
}

.category_nav li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0a9";
  font-weight: 900;
  margin-right: 5px;
}

.category_nav li a:hover {
  background: #f3f6f6;
}

.category_nav li:last-child a {
  border-bottom: none;
}

/* etc
----------------------------------*/
.cut {
  overflow: hidden;
  zoom: 1;
}

.w300 {
  width: 300px;
}

.spbr {
  display: none;
}

.br_tablet {
  display: none;
}

@media all and (max-width: 800px) {
  .br_tablet {
    display: block;
  }
}

.color1 {
  color: #4da1e9;
}

.color2 {
  color: #ae1327;
}

.color3 {
  color: #2c211e;
}

.color4 {
  color: #92cbf2;
}

.num a {
  color: #2c211e;
  font-weight: bold;
  font-size: 2.3rem;
  text-align: center;
}

.num a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f095";
  font-weight: 700;
  margin-right: 5px;
}

.num a:hover {
  color: #92cbf2;
}

.telbox {
  max-width: 700px;
  margin: 0 auto 20px;
  padding: 20px;
  background: #eee;
  text-align: center;
}

.telbox .inner {
  background: #fff;
  padding: 10px;
}

/* breadcrumb
----------------------------------*/
.breadcrumb {
  max-width: 1200px;
  margin: 20px auto 20px;
  font-size: 1.2rem;
  font-weight: 400;
}

.breadcrumb li {
  display: inline;
  color: #333;
}

.breadcrumb li a {
  color: #1f89e4;
}

.breadcrumb li a span {
  color: #2cb8e0;
}

.breadcrumb li + li:before {
  margin: 0 10px;
  content: ">";
}

/*point-list*/
.point-list > li {
  width: 90%;
  margin-bottom: 40px;
  position: relative;
}

.point-list > li:nth-child(2) {
  margin-left: 5%;
}

.point-list > li:nth-child(2) .point-inner {
  background: rgba(31, 137, 228, 0.8);
}

.point-list > li:nth-child(3) {
  margin-left: auto;
}

.point-list > li:nth-child(3) .point-inner {
  background: #7A6E62;
}

.point-list > li .point-inner {
  width: 100%;
  height: 100%;
  background: #e7862b;
  position: relative;
}

.point-list > li figure {
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  height: 100%;
  width: 50%;
}

.point-list > li figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
  opacity: 0.4;
}

.point-list > li figure.type1 img {
  -o-object-position: center 2%;
     object-position: center 2%;
}

.point-list > li .point-num {
  display: block;
  position: absolute;
  font-family: "Cinzel", serif;
  font-weight: 500;
  font-size: 7rem;
  line-height: 1;
  color: #fff;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 3;
}

.point-list > li .point-num:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 55px;
  bottom: 0;
  right: -10px;
  background: #fff;
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
}

.point-list > li .point-txt {
  position: relative;
  padding: 80px 30px 80px 55%;
  color: #fff;
}

.point-list > li .point-title {
  font-weight: 600;
  color: #fff;
  font-size: 2rem;
}

.point-list > li .point-title span {
  font-weight: 600;
  font-size: 1.7rem;
}

@media all and (max-width: 639px) {
  .point-list > li:nth-child(2) {
    margin-left: auto;
  }
}

@media all and (max-width: 639px) {
  .point-list > li:nth-child(3) {
    margin-left: auto;
  }
}

@media all and (max-width: 896px) {
  .point-list > li {
    margin-bottom: 40px;
  }
}

@media all and (max-width: 639px) {
  .point-list > li {
    width: 95%;
    margin: 0 auto 25px;
  }
}

@media all and (max-width: 896px) {
  .point-list > li figure {
    width: 100%;
    height: 100%;
  }
}

@media all and (max-width: 639px) {
  .point-list > li .point-num:before {
    height: 35px;
  }
}

@media all and (max-width: 896px) {
  .point-list > li .point-num {
    left: 50%;
    top: 20px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@media all and (max-width: 639px) {
  .point-list > li .point-num {
    font-size: 4rem;
    top: 30px;
  }
}

@media all and (max-width: 896px) {
  .point-list > li .point-txt {
    padding: 100px 20px 20px;
  }
}

@media all and (max-width: 639px) {
  .point-list > li .point-txt {
    padding: 80px 15px 25px;
  }
}

@media all and (max-width: 639px) {
  .point-list > li .point-title {
    font-size: 1.4rem;
  }
}

@media all and (max-width: 639px) {
  .point-list {
    padding: 0 10px;
  }
}

/* form
----------------------------------*/
.form {
  margin: 0 auto;
  width: 90%;
}

.form dl dt {
  float: left;
  width: 280px;
  padding-top: 20px;
  font-weight: bold;
}

.form dl dt span {
  color: #fff;
  background: #ae1327;
  padding: 1px 5px;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 10px;
  position: relative;
  top: -2px;
}

.form dl dt span.nini {
  color: #fff;
  background: #777;
  padding: 1px 5px;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 10px;
  position: relative;
  top: -2px;
}

.form dl dd {
  padding-left: 280px;
  padding-bottom: 20px;
  padding-top: 23px;
  line-height: 1.5;
  border-bottom: 1px dotted #cccccc;
}

.form dl dd:last-child {
  border-bottom: none;
}

.form .textarea,
.form textarea {
  border: 1px solid #ddd;
  padding: 5px;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
}

.form .textarea {
  height: 30px;
}

.form .textarea02 {
  width: 48.5%;
  margin-right: 3%;
}

.form .textarea02:last-child {
  margin-right: 0;
}

.form .textarea03 {
  width: 20%;
  margin-right: 1%;
}

.form button {
  cursor: pointer;
  display: block;
  color: #111;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  font-family: "-apple-system", BlinkMacSystemFont, "Helvetica Neue", Roboto, "Droid Sans", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Meiryo, sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 8px 5px;
  margin: 0 auto;
  width: 250px;
  background: #1f89e4;
  border: 1px solid #1f89e4;
  border-radius: 25px;
  color: #fff;
}

.form button:hover {
  background: #fff;
  color: #1f89e4;
}

.form button:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 700;
  margin-right: 10px;
}

.form .select-wrap {
  position: relative;
  overflow: hidden;
  display: inline-block;
  min-width: 192px;
  min-width: 12em;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  color: #333;
}

.form .select-wrap select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  z-index: 2;
  display: block;
  width: 200%;
  width: -webkit-calc(100% + 5em);
  margin: 0;
  padding: 11px 35px 11px 11px;
  padding: 0.6875rem 2.1875rem 0.6875rem 0.6875rem;
  background: transparent;
  border: 0;
  outline: none;
  line-height: 1.5;
}

.form .entypo-down-open-mini:before {
  font-family: "FontAwesome";
  content: "\f0ab";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 12px;
  right: 0.75rem;
  margin-top: -8px;
  margin-top: -0.5rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  color: #1f89e4;
}

.form label.radio_text {
  cursor: pointer;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
  padding-left: 20px;
  display: inline-block;
}

.form label.radio_text:before {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 1px solid #ccc;
  border-radius: 50%;
  left: 0px;
  top: 2px;
  content: "";
  z-index: 3;
}

.form label.radio_text:after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 100%;
  left: 2px;
  top: 4px;
  background-color: #1f89e4;
  z-index: 1;
}

.form label.radio_text input[type="radio"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 2;
  width: 20px;
  height: 20px;
  left: -23px;
  top: 0px;
  margin: 0px;
  -webkit-box-shadow: 20px -1px #fff;
          box-shadow: 20px -1px #fff;
}

.form label.radio_text input[type="radio"]:checked {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form label.radio_text input[type="radio"]:focus {
  opacity: 0.2;
  -webkit-box-shadow: 20px -1px #eeebda;
          box-shadow: 20px -1px #eeebda;
}

.form label.checkbox_text {
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  margin: 0 20px 5px 0;
  overflow: hidden;
  display: inline-block;
}

.form label.checkbox_text:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0px;
  top: 0;
  border: 1px solid #ccc;
  z-index: 3;
  padding: 1px;
}

.form label.checkbox_text:after {
  content: "";
  position: absolute;
  top: 40%;
  left: 5px;
  display: block;
  margin-top: -9px;
  width: 8px;
  height: 12px;
  border-right: 3px solid #1f89e4;
  border-bottom: 3px solid #1f89e4;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: 1;
}

.form label.checkbox_text input[type="checkbox"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  left: -40px;
  width: 20px;
  height: 20px;
  display: block;
  -webkit-box-shadow: 41px 0px #fff;
          box-shadow: 41px 0px #fff;
  z-index: 2;
  margin: 0px;
  padding: 0px;
}

.form label.checkbox_text input[type="checkbox"]:checked {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form label.checkbox_text input[type="checkbox"]:checked:focus {
  -webkit-box-shadow: 40px 0px #666;
          box-shadow: 40px 0px #666;
  opacity: 0.1;
}

.form label.checkbox_text input[type="checkbox"]:focus {
  -webkit-box-shadow: 41px 0px #eee;
          box-shadow: 41px 0px #eee;
}

.fm-txt {
  font-size: 1.4rem;
  background: rgba(255, 255, 255, 0.5);
  padding: 5px;
}

.select-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.select-content .select-txt {
  padding: 0 5px;
}

@media all and (max-width: 639px) {
  .select-content {
    display: block;
    /*.select-wrap, .select-txt{
 display: inline-block;
}*/
  }
}

.form-txt {
  font-size: 0.9em;
  margin-bottom: 5px;
}

.memo {
  border: 2px solid rgba(246, 242, 232, 0.5);
  background: url(../img/bg01.jpg);
  padding: 15px;
}

.thanks {
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
  background: #f6f2e8;
}

@media all and (max-width: 639px) {
  .thanks {
    max-width: 90%;
    padding: 30px 20px;
  }
}

.shadow {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.mtitle_small {
  position: relative;
  font-size: 1.8rem;
  color: #1f89e4;
  margin-bottom: 20px;
  font-weight: bold;
}

.mtitle_small:before {
  content: "";
  width: 30px;
  height: 1px;
  background-color: #4da1e9;
  position: absolute;
  left: 0;
  bottom: -15px;
}

@media all and (max-width: 639px) {
  .mtitle_small {
    font-size: 1.5rem;
  }
}

.mtitle_small2 {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
  font-weight: bold;
  color: #1f89e4;
}

.mtitle_small2:not(:first-of-type) {
  margin-top: 20px;
}

.mtitle_small2:before {
  content: "";
  background-color: #92cbf2;
  width: 10px;
  height: 4px;
  position: absolute;
  top: 0.6em;
  left: 0;
}

.mtitle_small2.type1 {
  color: #2c211e;
}

.mtitle_small2.type1:before {
  background-color: #b0c263;
}

/* gallery(lightbox)
----------------------------------*/
.gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.gallery.p_none li p {
  display: none;
}

.gallery.col2 li {
  width: calc((100% - 10px) / 2);
  margin: 0 10px 25px 0;
}

.gallery.col2 li:nth-child(2n) {
  margin-right: 0;
}

.gallery.col2 li a img {
  height: 280px;
}

.gallery.col3 li {
  width: calc((100% - 20px) / 3);
  margin: 0 10px 25px 0;
}

.gallery.col3 li:nth-child(3n) {
  margin-right: 0;
}

.gallery.col3 li img {
  height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}

.gallery.col4 li {
  width: calc((100% - 30px) / 4);
  margin: 0 10px 25px 0;
}

.gallery.col4 li:nth-of-type(4n) {
  margin-right: 0;
}

.gallery.col4 li a img {
  height: 200px;
}

.gallery li a {
  /*display: block;*/
  text-align: center;
  padding: 0px;
}

.gallery li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  /*IE対策*/
}

.gallery li p {
  line-height: 1.4;
  margin-top: 5px;
}

@media all and (max-width: 800px) {
  .gallery.col2 li {
    width: 100%;
    margin: 0 0% 20px 0;
  }
  .gallery.col2 li:last-child {
    margin: 0 0% 0 0;
  }
  .gallery.col2 li a img {
    height: 140px;
  }
  .gallery.col3 li {
    width: 48%;
    margin: 0 4% 20px 0;
  }
  .gallery.col3 li:nth-child(2n) {
    margin-right: 0;
  }
}

@media all and (max-width: 800px) and (max-width: 639px) {
  .gallery.col3 li:nth-child(2n) {
    margin-right: auto;
  }
}

@media all and (max-width: 800px) {
  .gallery.col3 li:nth-child(3n) {
    margin-right: auto !important;
  }
}

@media all and (max-width: 800px) and (max-width: 639px) {
  .gallery.col3 li {
    width: 90%;
    margin: 0 auto 20px;
  }
}

@media all and (max-width: 800px) {
  .gallery.col3 li:nth-child(3n) {
    margin: 0 4% 20px 0;
  }
}

@media all and (max-width: 800px) and (max-width: 639px) {
  .gallery.col3 li:nth-child(3n) {
    margin: 0 auto 20px;
  }
}

@media all and (max-width: 800px) {
  .gallery.col3 li a {
    height: 250px;
  }
}

@media all and (max-width: 800px) and (max-width: 639px) {
  .gallery.col3 li a {
    height: 200px;
  }
}

@media all and (max-width: 800px) {
  .gallery.col4 li {
    width: 49%;
    margin: 0 2% 2% 0;
  }
  .gallery.col4 li:nth-child(2n) {
    margin-right: 0;
  }
  .gallery.col4 li a img {
    height: 100px;
  }
}

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

.list2.mb0 {
  margin-bottom: -20px;
}

.list2 > li,
.list2 .child {
  width: 48%;
  margin: 0 4% 20px 0;
}

.list2 > li:nth-child(2n),
.list2 .child:nth-child(2n) {
  margin-right: 0;
}

@media all and (max-width: 639px) {
  .list2 > li:nth-child(2n),
  .list2 .child:nth-child(2n) {
    margin-right: auto;
  }
}

@media all and (max-width: 639px) {
  .list2 > li,
  .list2 .child {
    width: 100%;
    margin: 0 auto 20px;
  }
}

.list2.border li {
  padding: 15px;
  background-color: #E9E8E8;
}

.list2.type1 li:nth-child(2) {
  -webkit-transform: translateY(80px);
          transform: translateY(80px);
}

@media all and (max-width: 639px) {
  .list2.type1 li:nth-child(2) {
    -webkit-transform: translateY(0) !important;
            transform: translateY(0) !important;
  }
}

.info-dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 400;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.info-dl dt {
  width: 80px;
  background: rgba(31, 137, 228, 0.5);
  text-align: center;
  border-radius: 15px;
}

.info-dl dd {
  width: calc(100% - 100px);
  line-height: 1.6;
}

.info-dl dt:not(last-of-type),
.info-dl dd:not(last-of-type) {
  margin-bottom: 5px;
}

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

.list3 li {
  width: 31%;
  margin: 0 calc(2.33% + (2.33% / 2)) 15px 0;
}

.list3 li:nth-child(3n) {
  margin-right: 0;
}

@media all and (max-width: 639px) {
  .list3 {
    width: 90%;
    margin: 0 auto;
  }
  .list3 li {
    width: 100%;
    margin: 0 auto 15px;
  }
  .list3 li:nth-child(3n) {
    margin-right: auto;
  }
}

.list3.treat li {
  padding: 0;
  margin-bottom: 5px;
}

@media all and (max-width: 800px) {
  .list3.treat li {
    margin-bottom: 25px;
    width: 48%;
    margin: 0 0 20px;
  }
  .list3.treat li:nth-child(3n) {
    margin-right: 0;
  }
  .list3.treat li:nth-child(2n) {
    margin-left: 4%;
  }
}

@media all and (max-width: 639px) {
  .list3.treat li {
    width: 90%;
    margin: 0 auto 20px;
  }
  .list3.treat li:nth-child(2n), .list3.treat li:nth-child(3n) {
    margin: 0 auto 20px;
  }
}

.list3.treat li .treat-img {
  position: relative;
}

.list3.treat li .treat-img img {
  z-index: 1;
  opacity: 1;
  -webkit-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
  border-radius: 10px 10px 0 0;
}

.list3.treat li .treat-img:before {
  border-radius: 10px 10px 0 0;
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: linear-gradient(-45deg, rgba(31, 137, 228, 0.8) 0%, rgba(62, 239, 212, 0.8) 100%);
}

.list3.treat li a {
  display: block;
}

.list3.treat li a:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.list3.treat li a:hover .treat-img img {
  opacity: 0.5;
}

.treat-box {
  position: relative;
  z-index: 2;
  background: rgba(254, 254, 254, 0.95);
  -webkit-box-shadow: 2px 2px 10px rgba(44, 33, 30, 0.1);
          box-shadow: 2px 2px 10px rgba(44, 33, 30, 0.1);
  width: 80%;
  margin: -70px auto 0;
  padding: 10px 0;
}

.top-feature {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 50px auto 40px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.top-feature li {
  width: 32%;
  position: relative;
  padding: 40px 0;
}

.top-feature li:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #e7862b;
  z-index: -2;
}

.top-feature li:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/bentou.jpg) no-repeat center/cover;
  z-index: -1;
  opacity: 0.15;
}

.top-feature li.img2:after {
  background: url(../img/tamago.jpg) no-repeat center/cover;
}

.top-feature li.img3:after {
  background: url(../img/pan.jpg) no-repeat center/cover;
}

.top-feature li img {
  width: 90%;
  margin: 0 auto;
}

.top-feature li:not(:last-child) {
  margin-right: 15px;
}

.top-feature li .point-num {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  color: #fff;
  font-size: 2rem;
  letter-spacing: 5px;
}

@media all and (max-width: 800px) {
  .top-feature li {
    width: 45%;
    margin-bottom: 30px;
  }
}

@media all and (max-width: 639px) {
  .top-feature {
    width: 95%;
  }
  .top-feature li {
    width: 100%;
    text-align: center;
    margin-right: 0 !important;
    margin-bottom: 30px;
  }
}

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

.list4 li {
  width: 24.25%;
  margin-right: 1%;
  margin-bottom: 1%;
}

.list4 li:nth-child(4n) {
  margin-right: 0;
}

.list4.sml4 {
  margin-bottom: -4%;
}

.list4.sml4 li {
  width: 22%;
  margin-right: 4%;
  margin-bottom: 4%;
}

.list4.sml4 li:nth-child(4n) {
  margin-right: 0;
}

@media all and (max-width: 639px) {
  .list4 {
    margin-bottom: -4% !important;
  }
  .list4.sml4 li, .list4 li {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 4%;
  }
  .list4.sml4 li:nth-child(2n), .list4 li:nth-child(2n) {
    margin-right: 0;
  }
}

.note {
  padding: 15px;
  background: #fefefe;
  -webkit-box-shadow: 3px 3px 20px -10px rgba(44, 33, 30, 0.1);
          box-shadow: 3px 3px 20px -10px rgba(44, 33, 30, 0.1);
}

.note.transparent {
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.note.wk {
  padding: 15px;
  background: #fefefe;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid rgba(31, 137, 228, 0.3);
  -webkit-box-shadow: border-box;
          box-shadow: border-box;
}

.note2 {
  padding: 15px;
  background: #f5f2e7;
}

.note2.opa3 {
  background: rgba(182, 229, 245, 0.3);
}

.note2.gra {
  background: #f4f4f4;
}

.flow-dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 10px 0;
}

.flow-dl dt {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
  background: #1f89e4;
  font-size: 3rem;
  color: #fff;
  width: 80px;
  text-align: center;
  margin-right: 20px;
  height: 80px;
  padding-top: 8px;
  border-radius: 100%;
}

.flow-dl dt span {
  font-size: 1.5rem;
  display: block;
  margin-bottom: -10px;
  letter-spacing: 0;
}

.flow-dl dd {
  width: calc(100% - 110px);
  margin-top: 10px;
}

.flow-dl dd:not(:last-child) {
  padding-bottom: 15px;
  border-bottom: 0.9px solid #92cbf2;
}

.flow-dl dt:not(:last-of-type),
.flow-dl dd:not(:last-of-type) {
  margin-bottom: 30px;
}

@media all and (max-width: 800px) {
  .flow-dl dt {
    padding: 3px 0;
    border-radius: 5px;
    font-size: 1.8rem;
    width: 100%;
    margin: 0;
    height: auto;
    line-height: auto;
  }
  .flow-dl dt:not(:last-of-type) {
    margin-bottom: 10px;
  }
  .flow-dl dt span {
    letter-spacing: 0.1em;
    font-size: 1.3rem;
    display: inline;
    margin: 0 5px 0 0;
  }
  .flow-dl dd {
    width: 100%;
    margin-top: 5px;
  }
  .flow-dl dd:not(:last-child) {
    padding-bottom: 15px;
  }
  .flow-dl dd:not(:last-of-type) {
    margin-bottom: 30px;
  }
}

.txt1 {
  padding-left: 10px;
}

.blog-month {
  margin-bottom: 10px;
}

.blog-month ul {
  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;
}

.blog-month ul li {
  width: 90%;
  padding: 3px;
  text-align: center;
  font-size: 1.4rem;
  background: #fefefe;
  margin: 0 0 5px;
}

.blog-month ul li a {
  color: #2c211e;
}

@media all and (max-width: 800px) {
  .blog-month ul li {
    width: 48%;
    font-size: 1.1rem;
  }
  .blog-month ul li:nth-child(even) {
    margin-left: 1%;
  }
}

#a01,
#a02,
#a03,
#a04,
#a05,
#a06,
#entry {
  display: block;
  padding-top: 100px;
  margin-top: -100px;
}

.list-center {
  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;
}

.list-center li {
  max-width: 250px;
}

.list-center li:not(:last-child) {
  margin: 0 5px 5px;
}

@media all and (max-width: 639px) {
  .list-center li {
    width: 220px;
  }
  .list-center li:not(:last-child) {
    margin: 0 0 5px;
  }
}

.faq-dl .faq-inner {
  padding: 10px;
  margin-bottom: 20px;
}

.faq-dl .faq-inner:not(:last-of-type) {
  margin-bottom: 35px;
  padding-bottom: 20px;
  background: url(../img/bg-border.png) repeat-x left bottom;
}

.faq-dl dt,
.faq-dl dd {
  position: relative;
  padding: 10px 10px 10px 55px;
}

.faq-dl dt:before,
.faq-dl dd:before {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  left: 0;
  top: 0;
}

.faq-dl dt {
  color: #0074ea;
  font-size: 1.05em;
}

.faq-dl dt:before {
  content: "Q";
  color: #1f89e4;
  font-size: 2rem;
  background: rgba(31, 137, 228, 0.2);
}

.faq-dl dd {
  background: #f6f2e8;
}

.faq-dl dd:before {
  content: "A";
  color: #ae1327;
  font-size: 2rem;
  background: rgba(239, 180, 62, 0.5);
}

.faq-dl dd:not(:last-of-type) {
  margin-bottom: 20px;
}

.fukidashi {
  margin: 0.5em auto 1em;
  padding: 5px;
  text-align: center;
  max-width: 50%;
  border-radius: 10px;
  font-size: 2.2rem;
  background: #fefefe;
  border-radius: 5px;
  position: relative;
}

.fukidashi a {
  color: #a71017;
}

.fukidashi a:hover {
  color: #ae1327;
}

.fukidashi:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #fefefe;
  z-index: 2;
}

.info-txt {
  width: 95%;
  margin: 10px auto 0;
  background: rgba(146, 203, 242, 0.3);
  padding: 10px;
  border-radius: 10px;
}

.title-big {
  font-weight: 600;
  color: #2c211e;
  font-size: 1.8rem;
  line-height: 1.4;
  margin-bottom: 20px;
}

.title-big span {
  display: block;
  font-size: 4rem;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: 400;
  color: #1f89e4;
}

@media all and (max-width: 800px) {
  .title-big {
    text-align: center;
  }
}

@media all and (max-width: 639px) {
  .title-big {
    font-size: 1.6rem;
  }
  .title-big span {
    font-size: 2.8rem;
  }
}

.top-sec1 {
  margin-bottom: -80px;
}

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

.bnr-list li {
  height: 55px;
}

.bnr-list li img {
  border: 1px solid #ccc;
  width: auto;
  height: 100%;
  background: #fff;
}

.bnr-list li:first-child {
  margin-right: 20px;
}

@media all and (max-width: 639px) {
  .bnr-list li:first-child {
    margin-right: 10px;
  }
}

@media all and (max-width: 800px) {
  .bnr-list li {
    height: 45px;
  }
}

@media all and (max-width: 639px) {
  .bnr-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
  .bnr-list li {
    height: 42px;
  }
  .bnr-list li img {
    max-width: initial;
  }
}

@media all and (max-width: 639px) and (max-width: 320px) {
  .bnr-list li {
    height: 37px;
  }
}

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

.box-column2 .box-container {
  width: 48.5%;
  position: relative;
}

.box-column2 .box-container.single-column {
  margin: 0 auto;
}

@media all and (max-width: 800px) {
  .box-column2 .box-container {
    width: 100%;
  }
  .box-column2 .box-container.order {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.mtitle5 {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  position: absolute;
  left: 2%;
  top: 0;
  font-size: 2.2rem;
  color: #1f89e4;
  font-weight: 600;
  letter-spacing: 0.3rem;
  border-top: 2px solid #aaa;
  padding-top: 20px;
}

.mtitle5 span {
  font-family: "Anton", sans-serif;
  font-size: 3rem;
  display: block;
  color: #aaa;
  font-weight: 400;
  letter-spacing: 0.1rem;
}

@media all and (max-width: 639px) {
  .mtitle5 {
    font-size: 1.6rem;
    left: 0;
  }
  .mtitle5 span {
    font-size: 1.7rem;
    color: rgba(44, 33, 30, 0.5);
  }
}

.mtext-top {
  font-size: 2.4rem;
  letter-spacing: 0.2rem;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.7;
  color: var(--base-color);
}

.mtext-top.type1 {
  margin: 0 auto -20px;
  z-index: 3;
}

.mtext-top.type2 {
  text-align: left;
  z-index: 3;
}

.mtext-top.white {
  color: #fff;
}

.mtext-top.white span:before {
  background: url(../img/point2.png) no-repeat center/contain;
}

.mtext-top span {
  position: relative;
  display: inline-block;
  padding-top: 26px;
  padding-left: 5px;
  padding-right: 5px;
  font-size: 3rem;
  line-height: 1.2;
  font-family: "Mochiy Pop P One", sans-serif;
}

.mtext-top span:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  color: #fdfdfd;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 80px;
  height: 24px;
  background: url(../img/point.png) no-repeat center/contain;
}

@media all and (max-width: 639px) {
  .mtext-top {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  .mtext-top.type1 {
    margin: 0 auto -15px;
  }
  .mtext-top span {
    padding-top: 20px;
    font-size: 2rem;
  }
  .mtext-top span:before {
    width: 60px;
    height: 18px;
  }
}

.vertical-box {
  position: relative;
}

.vertical-box + .vertical-box {
  margin-top: 50px;
}

.vertical-content {
  margin-left: 20%;
}

@media all and (max-width: 639px) {
  .vertical-content {
    margin-left: 23%;
  }
}

.listA {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 15px;
  background: rgba(255, 255, 255, 0.8);
}

.listA li {
  padding: 4px;
  margin-bottom: 5px;
  border-bottom: 1px dashed #ccc;
  width: 100%;
  margin: 0 4% 5px 0;
  font-weight: 600;
  color: #11538c;
  font-size: 1.05em;
  line-height: 1.5;
}

.listA li:before {
  content: "●";
  color: #92cbf2;
  letter-spacing: 0.3rem;
  margin-right: 5px;
  font-size: 14px;
}

.listA li .inner {
  font-size: 0.9em;
  padding: 8px;
  background: #fefefe;
  margin-top: 4px;
  border-radius: 4px;
  font-weight: 400;
  color: #2c211e;
}

.listA li:nth-child(2n) {
  margin-right: 0;
}

@media all and (max-width: 639px) {
  .listA li:nth-child(2n) {
    margin-right: auto;
  }
}

@media all and (max-width: 639px) {
  .listA {
    background: transparent;
  }
  .listA li {
    margin: 0 auto 5px;
    width: 100%;
  }
}

/* --calendar--
----------------------------------*/
.calendar_head {
  color: #fefefe;
  background: #222;
  padding: 4px;
}

.calendar-info {
  text-align: center;
  font-weight: 600;
  color: #fefefe;
}

.calendar-info span {
  color: #efb43e;
  font-size: 1.1em;
}

.calendar-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 0.9em;
}

.calendar-box div.calendar {
  width: 48%;
}

@media all and (max-width: 639px) {
  .calendar-box div.calendar {
    width: 100%;
    margin-bottom: 10px;
  }
}

.calendar-box table {
  width: 100%;
}

.calendar-box table th,
.calendar-box table td {
  width: 14.28%;
  border: 0.9px solid #666;
  font-weight: normal;
  padding: 5px;
  height: 45px;
  font-size: 1.3rem;
  color: #2c211e;
}

@media all and (max-width: 639px) {
  .calendar-box table th,
  .calendar-box table td {
    height: 40px;
    font-size: 1.2rem;
  }
}

.calendar-box table th {
  background: #f6f2e8;
  vertical-align: middle;
  font-weight: 600;
}

.calendar-box table td {
  background: #fefefe;
}

.calendar-box th.sun,
.calendar-box td.sun {
  color: #ae1327;
}

.calendar-box th.sat,
.calendar-box td.sat {
  color: #0074ea;
}

.calendar-box .off {
  background: #efb43e;
}

.calendar-box .item-td {
  background: #eadc8b;
}

.calendar-box .item-td .days {
  color: #2c211e;
}

.calendar-box .item-td .item {
  display: none;
}

.top-gallery a {
  width: 100%;
  height: 180px;
  overflow: hidden;
  display: block;
}

.top-gallery a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

.list-title {
  text-align: center;
  color: #2c211e;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 1.7rem;
  position: relative;
}

.list-title span {
  font-size: 1.3rem;
  display: block;
  color: #1f89e4;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.list-title:before {
  position: absolute;
  content: "";
  width: 30px;
  height: 2px;
  background: #92cbf2;
  left: 50%;
  bottom: -7px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media all and (max-width: 639px) {
  .list-title {
    font-size: 1.4rem;
  }
  .list-title span {
    font-size: 1.2rem;
  }
}

.arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: center;
  margin-bottom: 5px;
}

.arrow a {
  display: block;
  background: #fefefe;
  color: #1f89e4;
  padding: 5px 8px;
  cursor: pointer;
}

.arrow a:first-of-type {
  margin-right: 5px;
}

.arrow a.arrow-before:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0d9";
  font-weight: 700;
  margin-right: 5px;
}

.arrow a.arrow-after:after {
  font-family: "Font Awesome 5 Free";
  content: "\f0da";
  font-weight: 700;
  margin-left: 5px;
}

.top-treat-box {
  position: relative;
  z-index: 5;
  width: 80%;
  margin: -60px auto 10px;
  background: #fefefe;
}

.feature-dl .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: rgba(254, 254, 254, 0.7);
  padding: 30px 20px;
  -webkit-box-shadow: 0 0 8px rgba(146, 203, 242, 0.3);
          box-shadow: 0 0 8px rgba(146, 203, 242, 0.3);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.feature-dl .inner dt {
  font-family: "YakuHanMP", Lato, "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-size: 2.8rem;
  line-height: 50px;
  letter-spacing: 0.2rem;
  color: #fefefe;
  position: relative;
  z-index: 1;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.feature-dl .inner dt:before {
  position: absolute;
  content: "";
  left: -30px;
  top: 0;
  width: 160%;
  min-width: 80px;
  height: 50px;
  background: #1f89e4;
  z-index: -1;
  opacity: 0.9;
}

.feature-dl .inner dt span {
  color: #c0e1f7;
}

.feature-dl .inner dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 6%;
}

.feature-dl .inner:not(:first-child) {
  margin-top: 40px;
}

@media all and (max-width: 639px) {
  .feature-dl .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .feature-dl .inner dt {
    font-size: 1.3rem;
    /*margin-bottom: 25px;*/
    display: none;
    margin-bottom: 0;
  }
  .feature-dl .inner dt span {
    font-size: 3rem;
  }
  .feature-dl .inner dt:before {
    /*height: 40px;*/
    display: none;
  }
  .feature-dl .inner dd {
    width: 100%;
    margin: 0;
  }
}

.feature-dl .feature-title {
  font-family: "YakuHanMP", Lato, "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-size: 2.2rem;
  color: #1f89e4;
  line-height: 1.5;
  padding-bottom: 5px;
  border-bottom: 1px solid #92cbf2;
  margin-bottom: 20px;
}

.feature-dl .feature-title .upper {
  color: #7ab9ef;
  display: block;
  font-size: 1.5rem;
}

.feature-dl .feature-title .upper.en {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
}

@media all and (max-width: 639px) {
  .feature-dl .feature-title {
    font-size: 1.8rem;
  }
  .feature-dl .feature-title .upper {
    font-size: 1.3rem;
  }
}

.top-covid {
  text-align: center;
  padding: 10px;
  margin-top: 40px;
}

@media all and (max-width: 639px) {
  .top-covid {
    margin-top: 20px;
  }
}

#video {
  width: 100%;
  padding-bottom: 56.25%;
  height: 0px;
  position: relative;
}

#video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bg-fix {
  background-attachment: fixed !important;
}

@media all and (max-width: 639px) {
  .bg-fix {
    background-attachment: scroll !important;
  }
}

.mini {
  font-size: 90%;
}

en {
  font-family: "Anton", sans-serif;
}

.big {
  font-size: 110%;
}

/*フォトギャラリー*/
.photo {
  width: 100%;
  margin: 10px auto 20px;
}

.photo ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: -1.25%;
}

.photo li {
  width: 32.5%;
  margin-right: 1.25%;
  margin-bottom: 1.25%;
}

@media screen and (min-width: 769px) {
  .photo li:nth-child(3n) {
    margin-right: 0;
  }
}

.photo li a {
  background: rgba(247, 247, 247, 0);
  display: block;
  text-align: center;
  vertical-align: middle;
}

.photo li a img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 220px;
  width: 100%;
}

.photo li a:hover {
  color: #888;
}

.photo li a:hover img {
  opacity: 0.7;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.photo li p {
  text-align: center;
  color: #1f89e4 !important;
  font-weight: normal;
  font-size: 14px !important;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.photo.p_none li p {
  display: none;
}

@media screen and (max-width: 768px) {
  .photo {
    margin: 5px auto 10px;
  }
  .photo li {
    width: 100%;
    margin-bottom: 1%;
    margin-right: 0;
  }
  .photo li:last-child {
    margin-bottom: 0%;
  }
  .photo li a img {
    height: 150px;
  }
  .photo.sp_falf li {
    width: 49%;
    margin-right: 2%;
    margin-bottom: 2%;
  }
  .photo.sp_falf li:nth-child(2n) {
    margin-right: 0;
  }
  .photo.sp_falf li a img {
    height: 140px;
  }
}

.tcenter_pc {
  text-align: center;
}

@media all and (max-width: 639px) {
  .tcenter_pc {
    text-align: left;
  }
}

.reason {
  width: 100%;
  display: -webkit-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 90px auto -30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media all and (max-width: 639px) {
  .reason {
    display: block;
    margin: 40px auto 0;
  }
}

.reason li {
  width: 32%;
  margin-right: 2%;
  position: relative;
  margin-bottom: 60px;
}

@media all and (max-width: 639px) {
  .reason li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 45px;
  }
}

.reason li:nth-child(3n) {
  margin-right: 0;
}

.reason li:nth-child(odd) {
  margin-top: -50px;
}

@media all and (max-width: 639px) {
  .reason li:nth-child(odd) {
    margin-top: 0;
  }
}

.reason li img {
  width: 90%;
  margin-left: auto;
  display: block;
  border-radius: 10px;
}

@media all and (max-width: 639px) {
  .reason li img {
    width: 80%;
  }
}

.reason li .nub {
  display: inline;
  font-family: "Anton", sans-serif;
  font-style: italic;
  font-size: 28px;
  margin-top: -10px;
  line-height: 1em;
  color: #2cb8e0;
  opacity: .6;
}

.reason li .nub span {
  font-family: "Anton", sans-serif;
  font-size: 50px;
}

.reason li .item_teext {
  display: inline;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.5em;
  margin-top: 14px;
  color: #2c211e;
}

.reason li .item_main {
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #555;
  line-height: 1.7em;
  margin-top: 11px;
}

@media all and (max-width: 639px) {
  .reason li .nub {
    line-height: 0.5em;
    font-size: 22px;
  }
  .reason li .nub span {
    font-size: 36px;
  }
  .reason li .item_teext {
    font-size: 1.5rem;
  }
  .reason li .item_main {
    line-height: 1.5em;
  }
}

.w250 {
  max-width: 250px;
}

@media all and (max-width: 639px) {
  .w250 {
    width: 80%;
  }
}

.innerB {
  display: table;
  width: 100%;
  table-layout: fixed;
}

@media all and (max-width: 639px) {
  .innerB {
    display: block;
  }
}

.innerB .left, .innerB .right {
  width: 48%;
  float: left;
}

@media all and (max-width: 639px) {
  .innerB .left, .innerB .right {
    width: 100%;
    float: none;
  }
}

.innerB .right {
  margin-left: 4%;
}

@media all and (max-width: 639px) {
  .innerB .right {
    margin-left: 0;
    margin-top: 15px;
  }
}

.innerB .left_s {
  width: 30%;
  float: left;
}

@media all and (max-width: 639px) {
  .innerB .left_s {
    width: 100%;
    float: none;
  }
}

.innerB .right_l {
  width: 66%;
  float: left;
  margin-left: 4%;
}

@media all and (max-width: 639px) {
  .innerB .right_l {
    margin-left: 0;
    margin-top: 15px;
    width: 100%;
    float: none;
  }
}

.small-box {
  max-width: 950px;
  margin-right: auto;
  margin-left: auto;
}

.sp-wk {
  padding: 0 4px;
  margin: 0 2px;
  border: 0.8px solid #2c211e;
  border-radius: 5px;
  font-size: 92%;
}

a.anchor {
  display: block;
  padding-top: 220px;
  margin-top: -220px;
}

@media all and (max-width: 639px) {
  a.anchor {
    padding-top: 50px;
    margin-top: -50px;
  }
}

.point-title {
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 2.2rem;
  color: #1f89e4;
  line-height: 1.5;
  padding-bottom: 5px;
  border-bottom: 1px solid #fff;
  margin-bottom: 20px;
}

.point-title.type1 {
  color: #fff;
}

.point-title .upper {
  color: #7ab9ef;
  margin-right: 10px;
  font-size: 1.5rem;
}

.point-title .upper.en {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
}

@media all and (max-width: 639px) {
  .point-title {
    font-size: 1.8rem;
  }
  .point-title .upper {
    margin-right: 0px;
    display: block;
    font-size: 1.3rem;
  }
}

.eng {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.fb-wrap {
  text-align: center;
  min-height: 350px;
  margin: 0 auto;
}

.sectionarrow_box {
  position: relative;
  height: 70px;
}

.sectionarrow {
  display: block;
  width: 44px;
  height: 70px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

@media all and (max-width: 639px) {
  .sectionarrow {
    height: 44px;
  }
}

.sectionarrow:after {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 60px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #fff;
  -webkit-animation: topArrow 2.5s ease infinite;
          animation: topArrow 2.5s ease infinite;
}

@media all and (max-width: 639px) {
  .sectionarrow:after {
    height: 44px;
    /*   animation: none;*/
  }
}

.sectionarrow.blue:after {
  background-color: #1f89e4;
}

@keyframes topArrow {
  0% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    max-height: 0;
  }
  30% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  70% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    max-height: 99999px;
  }
}

@-webkit-keyframes topArrow {
  0% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  30% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  70% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  }
}

.img-wk {
  border: 1px solid #ccc;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.img-hv {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.img-hv:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
  -webkit-box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.2);
}

.sentence p + p {
  margin-top: 20px;
}

.bg-sec1 {
  position: relative;
}

@media all and (max-width: 800px) {
  .bg-sec1 {
    margin-top: 30px;
  }
}

.bg-sec1:before {
  position: absolute;
  content: "";
  width: 55%;
  height: 80%;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/about1.png) no-repeat center/contain;
  z-index: -1;
  opacity: 0.8;
}

@media all and (max-width: 800px) {
  .bg-sec1:before {
    width: 80%;
  }
}

.bg-sec2 {
  position: relative;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(231, 134, 43, 0.3)), to(rgba(231, 134, 43, 0.1)));
  background-image: linear-gradient(to bottom, rgba(231, 134, 43, 0.3), rgba(231, 134, 43, 0.1));
}

.bg-sec2:before {
  position: absolute;
  content: "";
  width: 70%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/bg-sec2.jpg) no-repeat center/cover;
  z-index: 1;
  opacity: 0.6;
}

@media all and (max-width: 639px) {
  .bg-sec2:before {
    height: 40%;
  }
}

/*slick*/
.autoplay li a img {
  margin: 10px;
  width: 95%;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  height: 250px;
}

.slide-arrow {
  background-color: #333;
  bottom: 0;
  height: 0;
  margin: auto;
  position: absolute;
  top: 0;
  width: 0;
  cursor: pointer;
}

.prev-arrow {
  border-bottom: 10px solid  #fff;
  border-left: 0;
  border-right: 10px solid #333;
  border-top: 10px solid  #fff;
  left: -25px;
}

.next-arrow {
  border-bottom: 10px solid  #fff;
  border-left: 10px solid #333;
  border-right: 0;
  border-top: 10px solid  #fff;
  right: -25px;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
}

/* Tiny Carousel */
.slider1 {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-bottom: 0px;
  background-repeat: repeat;
}

.slider1 .viewport {
  width: 100%;
  margin: 0 auto;
  height: 200px;
  position: relative;
}

.slider1 .buttons {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: block;
  position: absolute;
  top: 22%;
  left: 0;
  width: 10px;
  height: -50px;
  color: #aaa;
  text-decoration: none;
  margin: 0 5px;
  z-index: 5;
  cursor: pointer;
  font-size: 60px;
}

.slider1 .next {
  right: 10px;
  left: auto;
  top: 22%;
}

.slider1 .buttons:hover {
  opacity: 0.6;
}

.slider1 .disable {
  visibility: hidden;
}

.slider1 .overview {
  list-style: none;
  position: absolute;
  padding: 0;
  margin: 0;
  width: 180px;
  left: 0;
  top: -5px;
}

.slider1 .overview li {
  width: 250px;
  /*height: 240px;*/
  float: left;
  text-align: center;
  vertical-align: middle;
  display: table;
  z-index: 99999;
  overflow: hidden;
  font-weight: bold;
  margin: 5px;
}

.slider1 img {
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  border: 1px solid #f4f4f4;
  background: #fff;
  width: 250px;
  height: 170px;
  padding: 7px;
  vertical-align: middle;
  text-align: center;
  -o-object-fit: cover;
     object-fit: cover;
}

.slider1 li p {
  margin-top: 10px;
  height: -60px;
  text-align: center;
  color: #555 !important;
  font-weight: normal;
  font-size: 13px !important;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 90%;
  color: #2c211e;
  font-weight: bold;
  line-height: 1.4;
}

.total_bx {
  text-align: center;
  background-color: rgba(146, 203, 242, 0.1);
  padding: 16px 0;
  margin-bottom: 16px;
}

input#total {
  border: 0px solid #fff;
  font-size: 2.3rem;
  width: 8em;
  color: #1f89e4;
  background: #fff;
  text-align: right;
}

/* calendar
----------------------------------*/
.calendarArea {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.calendarArea div.calendar {
  width: 465px;
  display: inline-block;
  margin-right: 10px;
}

.calendarArea div.calendar:nth-child(2n) {
  margin: 0 0 30px 0;
}

@media all and (max-width: 800px) {
  .calendarArea div.calendar {
    width: 90%;
  }
  .calendarArea div.calendar table {
    width: 98%;
  }
}

@media all and (max-width: 639px) {
  .calendarArea {
    margin-top: 30px;
    text-align: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .calendarArea div.calendar {
    width: 100%;
  }
  .calendarArea div.calendar:nth-child(2) {
    margin-top: 20px !important;
  }
}

.calendar_p {
  text-align: right;
}

@media all and (max-width: 639px) {
  .calendar_p {
    text-align: center;
  }
}

.calendar table {
  width: 100%;
  background-color: #fff;
  font-size: 12px;
}

.calendar table th {
  vertical-align: middle;
  padding: 5px;
  font-weight: bold;
  line-height: 1.5;
  border: #ddd 1px solid;
  color: #555;
  background: #f2f2f2;
}

.calendar table td {
  text-align: center;
  padding: 5px;
  /*vertical-align: middle;*/
  border: #ddd 1px solid;
  width: 50px;
  height: 55px;
}

.calendar table td b {
  color: red;
}

.calendar table td.off {
  background: #F4F3F2;
  color: #555;
}

.calendar table td.holiday, .calendar table td.sun {
  color: #CE2727;
  /*background: #FCF3F3;*/
  background: #fcf6f3;
}

.calendar table td.sun {
  position: relative;
}

.calendar table td.sun:before {
  content: "定休日";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

@media all and (max-width: 320px) {
  .calendar table td.sun:before {
    font-size: 10px;
  }
}

.calendar table td.sat {
  color: #54AFC8;
  background: #F5FBFE;
  position: relative;
}

.calendar table td.sat:before {
  content: "定休日";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

@media all and (max-width: 320px) {
  .calendar table td.sat:before {
    font-size: 10px;
  }
}

.calendar table td.kara {
  position: relative;
}

.calendar table td.kara:before {
  content: "";
}

.hori {
  color: #fd3a3d;
  font-size: 16px;
}

.hori2 {
  color: #fc6393;
  font-size: 16px;
}

.hori3 {
  color: #ffab1a;
  font-size: 16px;
}

.calendar .item {
  color: #FF0000;
  text-align: center;
}

.calendar .off {
  background: #ee7577;
  color: #fff;
}

.calendar .sun {
  color: #FF0000;
}

.calendar .sat {
  color: #1640A3;
}

.calendar .calendar_head {
  margin-bottom: 10px;
}

.calendar-container {
  position: relative;
  width: 430px;
}

.calendar-container header {
  border-radius: 1em 1em 0 0;
  background: #e66b6b;
  color: #fff;
  padding: 2em 1em;
}

.day {
  font-size: 8em;
  font-weight: 900;
  line-height: 1em;
}

.month {
  font-size: 4em;
  line-height: 1em;
  text-transform: lowercase;
}

.calendar thead {
  color: #e66b6b;
  font-weight: 700;
  text-transform: uppercase;
}

.calendar td {
  padding: .5em 1em;
  text-align: center;
}

.current-day {
  color: #e66b6b;
}

.prev-month,
.next-month {
  color: #cacaca;
}

.ring-left,
.ring-right {
  position: absolute;
  top: 200px;
}

.rcscontactType03 {
  width: 96%;
  margin: 20px auto;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.rcscontactType03 ._rcsType03Half {
  width: 50%;
}

.rcscontactType03 ._rcsBg01 {
  margin: 0;
}

.rcscontactType03 ._rcsInnerBox {
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.rcscontactType03 ._rcsType03Ttl {
  font-family: 'M PLUS 1p', sans-serif;
  overflow: hidden;
  text-align: center;
  margin-bottom: 20px;
  font-size: 3.4rem;
  font-weight: normal;
}

.rcscontactType03 ._rcsType03Ttl span {
  position: relative;
  display: inline-block;
  margin: 0 2.4em;
  padding: 0 1em;
}

.rcscontactType03 ._rcsType03Ttl span::before, .rcscontactType03 ._rcsType03Ttl span::after {
  position: absolute;
  top: 50%;
  content: '';
  width: 400%;
  height: 1px;
  background-color: #e8e8e8;
}

.rcscontactType03 ._rcsType03Ttl span::before {
  right: 100%;
}

.rcscontactType03 ._rcsType03Ttl span::after {
  left: 100%;
}

.rcscontactType03 ._rcsType03Ttl .supplement {
  display: block;
  font-size: 2.2rem;
  color: #ee7800;
  line-height: 1.2;
  font-weight: 400;
}

.rcscontactType03 ._rcsType03Ttl .supplement::before {
  height: 0px;
}

.rcscontactType03 ._rcsType03Ttl .mtitle .supplement::after {
  height: 0px;
}

.rcscontactType03 ._rcsType03Ttl02 {
  margin-bottom: 20px;
  font-size: 2.1rem;
  text-align: center;
}

.rcscontactType03 ._rcsType03Tel {
  font-family: Lato, "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  text-align: center;
  font-size: 3.6rem;
}

.rcscontactType03 ._rcsType03Tel:before {
  font-family: 'FontAwesome';
  content: "\f095";
  margin-right: 5px;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
  display: inline-block;
  font-size: 33px;
  color: #ee7800;
}

.rcscontactType03 ._rcsType03Tel a {
  color: #ee7800;
}

.rcscontactType03 ._rcsType03telText {
  font-weight: 700;
  font-size: 16px;
  text-align: center;
}

.rcscontactType03 ._rcsType03btn {
  position: relative;
  display: block;
  text-decoration: none;
  color: #555555;
  text-align: center;
  border: 1px solid #555555;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  margin: 0 auto;
  text-align: center;
  width: 300px;
  max-width: 100%;
}

.rcscontactType03 ._rcsType03btn:before {
  position: absolute;
  right: 0;
  bottom: 0;
  content: " ";
  display: inline-block;
  width: 0;
  height: 0;
  border-color: transparent #555555 #555555 transparent;
  border-style: solid;
  border-width: 5px;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}

.rcscontactType03 ._rcsType03btn:hover {
  color: #ee7800;
  border: 1px solid #ee7800;
}

.rcscontactType03 ._rcsType03btn:hover:before {
  border-color: transparent #ee7800 #ee7800 transparent;
}

.yearly {
  width: 100%;
  margin: 10px auto 0;
  padding: 20px 0 0;
}

.yearly ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.yearly .gallery {
  position: relative;
  top: -37px;
  background: #f9ddbc;
  width: 95%;
  border-radius: 10px;
  text-align: center;
  vertical-align: middle;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: -25px;
}

.yearly .gallery img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
}

.yearly li {
  width: 32%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 25px;
  padding: 5px 5px;
  background-color: #eee;
  border-radius: 10px;
}

.yearly li h4 {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 100px;
  z-index: 9999;
  top: -20px;
  left: -10px;
  position: relative;
  font-weight: bold;
  text-align: center;
  font-size: 20px;
  background: #EB6101;
  color: #fff;
  margin-bottom: -10px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 1px 1px 0px 0px;
          box-shadow: rgba(0, 0, 0, 0.2) 1px 1px 0px 0px;
}

.yearly li p {
  text-align: left;
  font-size: 13px;
}

.yearly li p:before {
  font-family: 'FontAwesome';
  content: "\f0a9";
  margin-right: 3px;
  color: #94CB89;
}

iframe {
  max-width: 100%;
}

.insta{
  margin: 0 auto;
  max-width: 500px;
  width: 100%;
}

.header-right_instagram {
  margin-left: 5px;
}

.header-right_instagram a {
  width: 150px;
  background: #e5256c;
}

.header-right_instagram a:before {
  font-family: "Font Awesome 5 Brands";
  content: "\f16d";
  font-weight: 700;
  margin-right: 5px;
}

.header-right_instagram a:hover {
  background: #eb94b4;
  color: #fff;
}