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

a {
  color: #081048;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

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

.bold {
  font-weight: bold;
}

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

.mincho {
  font-family: "Noto Sans JP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-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 #1324a3;
  border-radius: 50%;
  border-right: 1px solid rgba(19, 36, 163, 0.2);
  border-top: 1px solid rgba(19, 36, 163, 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: 10px 0;
  background-color: #fff;
}

#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;
  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);
}

#logo {
  margin-bottom: 20px;
  padding: 5px;
  width: 400px;
}

@media screen and (max-width: 1350px) {
  #logo {
    width: 340px;
  }
}

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

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

.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 {
  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_bnr {
  margin-left: 10px;
  width: 220px;
}

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

.header-right_tel a,
.header-right_mail a,
.header-right_access a,
.header-right_reservation a {
  display: block;
  padding: 2px 10px;
  line-height: 1.4;
  text-align: center;
  color: #493121;
  /*width: 180px;*/
  font-weight: 600;
  background: #f6fb00;
}

.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 {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  display: inline-block;
  background: #e98a0f;
  border-radius: 5px;
  font-size: 3rem;
  border: 0;
  color: #fff;
}

.header-right_tel a:before {
  /*@include awesome($phone2);*/
  margin-right: 2px;
  content: "TEL.";
}

.header-right_tel a:hover {
  color: #1324a3;
}

.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: #e98a0f;
}

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

.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(19, 36, 163, 0.8);
}

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

.header-right_access a {
  width: 150px;
  background: rgba(182, 152, 74, 0.5);
}

.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(19, 36, 163, 0.8);
  color: #fff;
}

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

#header_nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /*overflow: hidden;*/
  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:not(:last-child) a {
  border-right: 1px solid rgba(255, 255, 255, 0.7);
}

#header_nav ul li a {
  margin: 10px auto;
  display: block;
  position: relative;
  line-height: 1.5;
  font-size: 1.4rem;
  color: #1324a3;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.3rem;
  padding: 5px 0;
}

#header_nav ul li a:after {
  position: absolute;
  left: 50%;
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 5px;
  content: "";
  bottom: -2px;
  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: #333;
  font-size: 1.1rem;
  letter-spacing: 0.1rem;
  font-family: "Roboto", sans-serif;
  font-style: normal;
}

#header_nav ul li a:hover, #header_nav ul li a.active {
  color: #909cf2;
}

#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: 65px;
  z-index: 310;
  background: #1324a3;
}

#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: #555;
  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;
  color: #1324a3;
  background: #e2d6b7;
}

#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: #1324a3;
  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: #1324a3;
  color: #fff;
  line-height: 50px;
  letter-spacing: 0.2rem;
  font-family: "Roboto", sans-serif;
  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 #1324a3;
}

#drawernav ul.phone_navi li a {
  color: #1324a3;
  font-size: 1.2rem;
  display: block;
  padding: 10px 8px;
  text-decoration: none;
  line-height: 1.2;
}

#drawernav ul.phone_navi li a span {
  font-size: 1.2rem;
  display: block;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  color: #1a1a1a;
}

#drawernav ul.phone_navi li a:hover {
  color: #1324a3;
}

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

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

#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: #1324a3;
  display: block;
  padding: 8px 20px;
  text-decoration: none;
  border-top: none;
  border-bottom: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #101f8c;
}

#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: #1324a3;
  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: #1324a3;
  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: 10px;
  right: 10px;
  z-index: 9999;
}

#page-top a {
  display: block;
  background: #1a1a1a;
  -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: 86px;
  }
}

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

.swiper-slide {
  overflow: hidden;
}

.slide-img {
  overflow: hidden;
  height: 70vh;
  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: 40vh;
  }
  .slide-img img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}

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

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

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

#catch {
  z-index: 5;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  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;
}

#catch img {
  width: 600px;
}

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

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

/* bg_contact
----------------------------------*/
.contact_lead {
  font-size: 1.3em;
  color: #493121;
  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 {
  text-align: center;
}

.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: #f6fb00;
}

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

.contact_bnr > li .bnr_mobile {
  background: #1324a3;
  border: 1px solid #0e1a75;
}

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

.contact_bnr > li .bnr_mobile:hover {
  color: #6bbed8;
}

.contact_bnr > li .bnr_fax {
  background: #f0ebdd;
  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: #e98a0f;
}

.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: 60px;
}

#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: #e98a0f;
  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: url(../img/bg-footer.jpg) no-repeat center 10%/cover;
  position: relative;
  z-index: 5;
  overflow: hidden;
}

#l-footer .footer-box:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: #000;
  width: 100%;
  height: 100%;
  opacity: 0.2;
}

@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;
  color: #fefefe;
}

.footer-map {
  height: 250px;
  margin-bottom: 20px;
  -webkit-box-shadow: 0 0 15px rgba(73, 49, 33, 0.1);
          box-shadow: 0 0 15px rgba(73, 49, 33, 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: 350px;
  text-align: center;
  margin: 20px auto 10px;
}

@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: 10px 0;
  margin: 0 auto;
  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 {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  text-align: center;
  margin: 0 0 4px;
  border-left: 1px dashed #493121;
}

.footer_navi li:last-child {
  border-right: 1px dashed #493121;
}

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

.footer_navi li a span {
  display: none;
}

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

.footer_navi li .dropdown {
  display: none;
}

.footer_navi2 {
  padding: 0px 0 10px;
  margin: 0 auto;
  max-width: 800px;
  font-size: 90%;
}

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

.footer_navi2 li {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  text-align: center;
  margin: 0 0 4px;
  border-left: 1px dashed #b6984a;
}

.footer_navi2 li:last-child {
  border-right: 1px dashed #b6984a;
}

.footer_navi2 li a {
  color: #1629ba;
  font-size: 1.5rem;
  position: relative;
  font-weight: bold;
}

.footer_navi2 li a span {
  display: none;
}

.footer_navi2 li a:hover {
  color: #1e35e5;
}

.footer_navi2 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 .child1 {
  width: 35%;
}

.column2 .child2 {
  width: 62%;
}

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

.address {
  text-align: center;
}

.copyright {
  padding: 15px 0;
  background: #1324a3;
  color: #fff;
  font-size: 1.2rem;
}

@media all and (max-width: 639px) {
  .copyright {
    font-size: 12px;
    padding-bottom: 66px;
  }
}

/*----------------------------------
 --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: 4rem;
  font-family: "Noto Sans JP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  letter-spacing: 0.2rem;
  color: #1324a3;
  line-height: 1.5;
  text-shadow: 0 0 8px rgba(73, 49, 33, 0.2);
}

.top-lead span {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-size: 2.5rem;
  display: block;
  color: lemonchiffon;
}

@media all and (max-width: 800px) {
  .top-lead {
    font-size: 2.7rem;
    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: 2rem;
    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;
  font-weight: 700;
}

@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: "Noto Sans JP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  margin-bottom: 20px;
  padding-left: 30px;
}

.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%;
  }
}

.top-sec3 {
  background: url(../img/bgp2.jpg) no-repeat center/cover;
  z-index: -1;
}

.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 8px rgba(182, 152, 74, 0.1);
          box-shadow: 0 0 8px rgba(182, 152, 74, 0.1);
  font-size: 98%;
  font-weight: normal;
}

/* --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: #1a1a1a;
}

.news-title span {
  font-size: 3.5rem;
  display: block;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  color: #1324a3;
}

@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;
  }
}

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

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

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

.staff-name {
  font-family: "Noto Sans JP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #493121;
  border-bottom: 0.9px solid #ccc;
  margin-bottom: 20px;
}

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

.staff-name .sub {
  color: #1324a3;
  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: "Noto Sans JP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #493121;
  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: #1324a3;
  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: #e98a0f;
  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: black;
  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: #081048;
}

.course-title:before {
  position: absolute;
  content: "";
  top: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -15px;
  z-index: 1;
  background: #1324a3;
  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: #e98a0f;
  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;
  margin: 0 auto;
  padding: 80px 0;
  position: relative;
}

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

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

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

@media all and (max-width: 639px) {
  .margin-bottom {
    margin-bottom: -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);
}

@media all and (max-width: 639px) {
  .mbox {
    padding: 3px;
    background: transparent;
  }
}

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

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

.mboxr {
  border: 2px solid rgba(182, 152, 74, 0.3);
  border-radius: 10px;
  padding: 20px;
}

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

.mbox3 {
  background: #fefefe;
  padding: 40px 30px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 2px;
}

@media all and (max-width: 639px) {
  .mbox3 {
    padding: 12px;
    border-radius: 0;
  }
}

.mbox_blog {
  background: #fff;
  padding: 10px 10px;
  margin-left: auto;
  margin-right: auto;
  height: auto;
}

@media all and (max-width: 639px) {
  .mbox_blog {
    padding: 12px;
    border-radius: 0;
  }
}

.mtitle_blog {
  background-color: #006;
  color: #fff;
  padding: 4px 4px 4px 10px;
  line-height: 1.8em;
  font-size: 18px;
  font-weight: bold;
}

.blog_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 350px;
  margin-bottom: 20px;
}

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

.blog_area .child50 {
  width: 49%;
  background-color: #fff;
  margin-right: 2%;
}

.blog_area .child50:last-child {
  margin-right: 0;
}

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

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

.blog_list li {
  width: 28%;
  margin-right: 0.8%;
  /*margin-bottom: 1%;*/
}

.blog_list li:last-child {
  width: 13.5%;
  margin-right: 0;
}

.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%;
}

#main2 a {
  text-decoration: underline;
}

@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.7rem;
  position: relative;
  text-align: center;
  font-family: "Noto Sans JP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #1a1a1a;
}

.mtitle span {
  display: block;
  font-size: 4.5rem;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  margin-bottom: -5px;
  color: #1324a3;
  line-height: 1.5;
  letter-spacing: 0.2rem;
}

.mtitle:after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: -10px;
  height: 3px;
  width: 60px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  /*background-image: linear-gradient(to right, lighten($base_color, 10%), $sub_color);*/
}

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

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

.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.3rem;
    text-align: center;
  }
  .mtitle span {
    font-size: 2.5rem;
    line-height: 1.1;
    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(19, 36, 163, 0.6) 0%, #1a1a1a 100%);
     border-image: -webkit-gradient(linear, left top, right top, from(rgba(19, 36, 163, 0.6)), to(#1a1a1a));
     border-image: linear-gradient(to right, rgba(19, 36, 163, 0.6) 0%, #1a1a1a 100%);
  border-image-slice: 1;
  line-height: 1.3;
  font-weight: 600;
}

.mtitle2 span {
  font-size: 3rem;
  margin-right: 15px;
  color: #1324a3;
  font-family: "Roboto", sans-serif;
  font-style: normal;
}

.mtitle2 b {
  font-size: 3rem;
  margin-right: 15px;
  color: #1324a3;
  font-family: "Noto Sans JP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

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

.mtitle3 {
  font-size: 1.8rem;
  font-weight: bold !important;
  color: #806b34;
  display: block;
  border-bottom: 1px solid #806b34;
  margin-bottom: 20px;
}

.mtitle3:before {
  content: "+";
  margin-right: 5px;
  color: rgba(182, 152, 74, 0.5);
}

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

.mtitle3 span {
  font-size: 1.7rem;
  color: #493121;
  display: block;
}

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

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

.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: #1324a3;
}

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

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

.mtitle4 {
  text-align: center;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.1rem;
  color: #1324a3;
}

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

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

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

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

.mtitle4.white span:before, .mtitle4.white span:after {
  background-color: #f6fb00;
}

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

@media all and (max-width: 320px) {
  .mtitle4 span:before {
    left: -3px;
  }
  .mtitle4 span:after {
    right: -3px;
  }
}

.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: "Roboto", sans-serif;
  font-style: normal;
  font-size: 4rem;
  display: block;
  color: #b6984a;
}

@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: 2.2rem;
  }
}

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

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

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

.mtitle_box {
  background: #ccb781;
  color: #fff;
  font-size: 2rem;
  position: relative;
  padding: 10px;
  margin-bottom: 10px;
  font-weight: bold;
}

.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.5rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  line-height: 1.4;
}

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

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

.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: #1324a3;
}

/* btn
----------------------------------*/
.btn01 a {
  background: #1324a3;
  text-align: center;
  width: 300px;
  margin: 20px auto;
  color: #fefefe;
  display: block;
  padding: 8px 5px;
  font-weight: bold;
  border-radius: 35px;
}

.btn01 a:hover {
  background: #1a1a1a;
  color: #fff;
}

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

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

.btn02 {
  width: 350px;
  margin: 20px auto 20px;
}

.btn02 a {
  display: block;
  position: relative;
  padding: 15px 0;
  background-color: #1324a3;
  line-height: 24px;
  letter-spacing: 0.1rem;
  font-size: 1.6rem;
  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: #1629ba;
}

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

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

.btn03.wk a {
  border: 2px solid #fff;
}

.btn03.col1 a {
  background: #1324a3;
  color: #fff;
}

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

.btn03 a {
  background: #e98a0f;
  text-align: center;
  min-width: 180px;
  margin: 20px auto;
  color: #fefefe;
  display: block;
  padding: 8px 5px;
  font-weight: bold;
  border-radius: 35px;
}

.btn03 a:hover {
  background: #1324a3;
  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(#f6fb00), to(#e98a0f));
  background-image: linear-gradient(to right, #f6fb00, #e98a0f);
  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: #b6984a;
  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: #6bbed8;
}

.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: #1324a3;
}

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

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

.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: #1a1a1a;
  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;
  }
}

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

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

/* page-title
----------------------------------*/
.page-title {
  position: relative;
  z-index: 1;
  background: url(../img/1.jpg) no-repeat 50%/cover;
  max-width: calc(100% - 50px);
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
}

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

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

.page-title:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: rgba(0, 0, 0, 0.1);
}

.page-title .inner {
  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: #1324a3;
  border-radius: 20px 0 20px 0;
  padding: 20px 0;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  color: #fefefe;
}

.page-title .page-lead span {
  display: block;
  font-family: "Roboto", sans-serif;
  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: 180px;
  }
  .page-title .page-lead {
    padding: 8px 0;
    font-size: 1.4rem;
    width: 80%;
  }
  .page-title .page-lead span {
    font-size: 2.5rem;
  }
}

.bg-01 {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(182, 152, 74, 0.5)), color-stop(50%, rgba(182, 152, 74, 0.4)), color-stop(50.1%, #eacd9a), to(#eacd9a));
  background-image: linear-gradient(to right, rgba(182, 152, 74, 0.5) 0%, rgba(182, 152, 74, 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(19, 36, 163, 0.4)), color-stop(55%, rgba(19, 36, 163, 0.4)), color-stop(55.1%, #eacd9a), to(#eacd9a));
    background-image: linear-gradient(to bottom, rgba(19, 36, 163, 0.4) 0%, rgba(19, 36, 163, 0.4) 55%, #eacd9a 55.1%, #eacd9a 100%);
  }
}

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

.bg-gradient {
  background-image: -webkit-gradient(linear, left top, right top, from(#eae3cf), to(#fcfcfc));
  background-image: linear-gradient(to right, #eae3cf 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: #1324a3;
  opacity: 0.8;
}

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

.bg-maru1 {
  background: rgba(19, 36, 163, 0.1);
  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: #f0f0f0;
  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: #1324a3;
  border-radius: 20px;
}

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

.bg-base2 {
  background: url(../img/bg2.jpg) no-repeat center/cover;
  padding: 40px;
}

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

.bg-base3 {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0.5))), url(../img/bg3.jpg) no-repeat center 10%/cover;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url(../img/bg3.jpg) no-repeat center 10%/cover;
}

.bg-base4 {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0.5))), url(../img/bg4.jpg) no-repeat center 10%/cover;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url(../img/bg4.jpg) no-repeat center 10%/cover;
}

.bg-blue {
  background: #6bbed8;
}

.bg-gray {
  position: relative;
  background: #ebebeb;
}

/* 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-bottom: 1px solid #fff;
  border-right: 0px;
  border-left: 0px;
}

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

.timetable td {
  color: #fff;
  /*background: #fff;*/
}

.timetable td .circle {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
}

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

.timetable td .yasumi {
  color: #b6984a;
  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(107, 190, 216, 0.6);
  text-align: center;
}

.timetable th {
  /*background: lighten($sub_color, 10%);*/
}

.timetable tr.bgw {
  background: #fff;
}

.timetable tr.bgw th, .timetable tr.bgw td {
  color: #1324a3 !important;
}

.tbl {
  width: 100%;
}

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

.tbl th {
  background: #f0ebdd;
  text-align: left;
}

.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%;
  background: #fff;
}

@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;
}

@media all and (max-width: 639px) {
  .tbl_new tr th,
  .tbl_new tr td {
    border: 1px solid #333;
  }
}

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

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

.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: #493121;
}

@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: #1324a3;
  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 {
  text-align: left;
  width: 25%;
  position: relative;
  background: #e98a0f;
  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: #e98a0f;
  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 {
    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 {
  font-family: "Font Awesome 5 Free";
  content: "\f138";
  font-weight: 700;
  margin-right: 5px;
  color: #1a1a1a;
}

.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: #1324a3;
  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.iconr {
  background: #fff;
}

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

.list_check li {
  padding-bottom: 5px;
  font-weight: bold;
  font-size: 1.1em;
}

.list_check li span {
  font-weight: normal;
  font-size: 0.9em;
  display: block;
  padding: 10px;
  background: rgba(240, 235, 221, 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: #1629ba;
}

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

.list_check2 li {
  display: inline-block;
  margin-bottom: 5px;
  margin-right: 4%;
  padding: 3px;
  background: #fefefe;
}

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

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

.ol-list {
  counter-reset: number;
  /* 名前を付けたカウンターをリセット */
  list-style: none;
  /* olが数字を付けることをキャンセル */
  border: 2px solid rgba(19, 36, 163, 0.5);
  border-radius: 10px;
  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: #1324a3;
  position: absolute;
  width: 2em;
  height: 2em;
  text-align: center;
  font-family: "Noto Sans JP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  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が数字を付けることをキャンセル */
  padding: 10px;
}

.ol-list2 > li {
  color: #1324a3;
  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: #1324a3;
  position: absolute;
  width: 1.6em;
  height: 1.6em;
  text-align: center;
  font-family: "Noto Sans JP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  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;
  }
  .ol-list2 > li span {
    font-size: 0.9em;
  }
}

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

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

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

/* blog
----------------------------------*/
.blog-wrap {
  margin: 0 auto;
}

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

.blog-wrap > li {
  margin-bottom: 10px;
}

.blog-wrap > li a {
  display: block;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.blog-wrap > li a:hover .blog-title {
  color: #182ed1;
}

.blog-wrap > li .blog-img {
  width: 30%;
  height: 90px;
}

.blog-wrap > li .blog-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

.blog-wrap > li .blog-detail {
  padding: 15px;
  line-height: 1.4;
  width: 68%;
}

.blog-wrap > li .blog-date {
  color: #1324a3;
  font-size: 1.4rem;
}

.blog-wrap > li .blog-date:before {
  font-family: "Font Awesome 5 Free";
  content: "\f017";
  font-weight: 700;
  margin-right: 5px;
  color: #1324a3;
}

.blog-wrap > li .blog-title {
  color: #1324a3;
  font-size: 1.6rem;
}

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

@media all and (max-width: 639px) {
  .blog-wrap > li {
    width: 90%;
    margin: 0 auto 20px;
    background: #fefefe;
  }
  .blog-wrap > li .blog-date {
    font-size: 1.2rem;
  }
  .blog-wrap > li .blog-title {
    font-size: 1.4rem;
  }
  .blog-wrap > li:nth-child(2n), .blog-wrap > li:nth-child(4n) {
    margin-right: auto;
  }
}

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

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

.pages {
  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-top: 45px;
}

.pages .page_next,
.pages .page_prev {
  width: 48%;
  position: relative;
}

.pages .page_next a,
.pages .page_prev a {
  color: #081048;
  padding: 10px;
  background: #fff;
  font-size: 13px;
  line-height: 1.6;
  display: block;
  text-align: center;
}

.pages .page_next:before,
.pages .page_prev:before {
  position: absolute;
  left: 50%;
  top: -15px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.pages .page_next {
  margin-right: 3%;
}

.pages .page_next:before {
  content: "Next";
}

.pages .page_next:after {
  position: absolute;
  content: "";
  right: -2%;
  top: 0;
  width: 1px;
  height: 100%;
  z-index: 1;
  background: #ccc;
}

.pages .page_prev:before {
  content: "Previous";
}

.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: "FontAwesome";
  content: "\f0a9";
  margin-right: 5px;
}

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

.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: #1324a3;
}

.color2 {
  color: #c1272d;
}

.color3 {
  color: #493121;
}

.color4 {
  color: #b6984a;
}

.num a {
  color: #493121;
  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: #b6984a;
}

.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: #1324a3;
}

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

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

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

.form dl dt span {
  display: inline-block;
  color: #fff;
  background: #1324a3;
  padding: 1px 5px;
  margin-left: 5px;
  font-size: 11px;
  border-radius: 10px;
  position: relative;
}

.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: 16px;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
}

.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: #1324a3;
  border: 1px solid #1324a3;
  border-radius: 25px;
  color: #fff;
}

.form button:hover {
  background: #fff;
  color: #1324a3;
}

.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: #1324a3;
}

.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: 3px;
  top: 5px;
  background-color: #1324a3;
  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 #1324a3;
  border-bottom: 3px solid #1324a3;
  -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(240, 235, 221, 0.5);
  background: url(../img/bg01.jpg);
  padding: 15px;
}

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

@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: #1324a3;
  margin-bottom: 20px;
  font-weight: bold;
}

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

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

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

.mtitle_small2:before {
  content: "";
  background-color: rgba(19, 36, 163, 0.5);
  width: 10px;
  height: 4px;
  position: absolute;
  top: 0.6em;
  left: 0;
}

/* 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.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 a img {
  height: 280px;
}

.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: 160px;
}

.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;
  font-weight: normal;
}

@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, .gallery.col4 li {
    width: 48%;
    margin: 0 4% 20px 0;
  }
  .gallery.col3 li:nth-child(2n), .gallery.col4 li:nth-child(2n) {
    margin-right: 0;
  }
}

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

@media all and (max-width: 800px) and (max-width: 639px) {
  .gallery.col3 li, .gallery.col4 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 a {
    height: 150px;
  }
}

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

.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 {
  border: 2px solid rgba(182, 152, 74, 0.5);
  padding: 10px;
  background: #fefefe;
}

.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(19, 36, 163, 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: 25px;
}

@media all and (max-width: 800px) {
  .list3.treat li {
    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;
}

.list3.treat li .treat-img:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: linear-gradient(-45deg, rgba(88, 55, 11, 0.8) 0%, rgba(236, 236, 148, 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: #fefefe;
  width: 80%;
  margin: -55px 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: 210px;
  position: relative;
  padding: 40px 0;
}

.top-feature li:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left top, right bottom, from(#6bbed8), to(rgba(73, 49, 33, 0.6)));
  background-image: linear-gradient(to right bottom, #6bbed8, rgba(73, 49, 33, 0.6));
  z-index: -2;
}

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

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

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

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

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

@media all and (max-width: 639px) {
  .top-feature li:not(:last-child) {
    margin-right: calc(2.33% + (2.33% / 2));
  }
}

@media all and (max-width: 639px) {
  .top-feature {
    width: 95%;
  }
  .top-feature li {
    width: 31%;
    margin: 0 calc(2.33% + (2.33% / 2)) 15px 0;
  }
  .top-feature li:nth-child(3n) {
    margin-right: 0;
  }
}

.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;
  }
}

.list5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: -1.25% !important;
}

.list5.w1000 {
  max-width: 850px;
  margin: 0 auto;
}

.list5 li {
  width: 19%;
  margin-right: 1.25%;
  margin-bottom: 1.25%;
}

@media screen and (min-width: 769px) {
  .list5 li:nth-child(5n) {
    margin-right: 0;
  }
}

@media all and (max-width: 639px) {
  .list5 li {
    /*width: 32.5%;*/
    width: 50%;
    margin-right: 0;
    margin-bottom: 3%;
    /*   &:nth-child(3n){
    margin-right: 0;
   }*/
  }
  .list5 a img {
    display: block;
    margin: 0 auto;
  }
}

.note {
  padding: 15px;
  margin-top: 10px;
  background: #fefefe;
  -webkit-box-shadow: 5px 5px 20px rgba(73, 49, 33, 0.1);
          box-shadow: 5px 5px 20px rgba(73, 49, 33, 0.1);
}

.note2 {
  padding: 10px;
  background: #f9f8e6;
  margin-top: 10px;
}

.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: "Roboto", sans-serif;
  background: #1324a3;
  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.8rem;
  display: block;
  margin-bottom: -16px;
  letter-spacing: -0.2px;
}

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

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

.flow-dl dt:not(:last-of-type),
.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: #493121;
}

@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: #0e1a75;
  font-size: 1.05em;
}

.faq-dl dt:before {
  content: "Q";
  color: #fff;
  font-size: 2rem;
  background: #1324a3;
}

.faq-dl dd {
  background: rgba(182, 152, 74, 0.1);
}

.faq-dl dd:before {
  content: "A";
  color: #c1272d;
  font-size: 2rem;
  background: rgba(246, 251, 0, 0.8);
}

.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: #c1272d;
}

.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(182, 152, 74, 0.3);
  padding: 10px;
  border-radius: 10px;
}

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

.title-big span {
  display: block;
  font-size: 5rem;
  font-family: "Roboto", sans-serif;
  font-style: 400;
  color: #1324a3;
}

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

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

.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: #1324a3;
  font-weight: 600;
  letter-spacing: 0.3rem;
  border-top: 2px solid #aaa;
  padding-top: 20px;
}

.mtitle5 span {
  font-family: "Roboto", 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(73, 49, 33, 0.5);
  }
}

.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(235, 235, 235, 0.5);
}

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

.listA li:before {
  content: "●●";
  color: #b6984a;
  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: #493121;
}

.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: #0e1a75;
  padding: 4px;
}

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

.calendar-info span {
  color: #f6fb00;
  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: #493121;
}

@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: #f0ebdd;
  vertical-align: middle;
  font-weight: 600;
}

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

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

.calendar-box th.sat,
.calendar-box td.sat {
  color: #6bbed8;
}

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

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

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

.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: #1324a3;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 1.7rem;
  position: relative;
  font-family: "Noto Sans JP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.list-title span {
  font-size: 1.4rem;
}

.list-title:before {
  position: absolute;
  content: "";
  width: 30px;
  height: 2px;
  background: #b6984a;
  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: #1324a3;
  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.6);
  padding: 20px;
  -webkit-box-shadow: 0 0 8px rgba(182, 152, 74, 0.1);
          box-shadow: 0 0 8px rgba(182, 152, 74, 0.1);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.feature-dl .inner dt {
  font-family: "Noto Sans JP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 2.8rem;
  line-height: 50px;
  letter-spacing: 0.2rem;
  color: #fefefe;
  position: relative;
  z-index: 1;
  font-family: "Roboto", sans-serif;
  font-style: italic;
}

.feature-dl .inner dt:before {
  position: absolute;
  content: "";
  left: -30px;
  top: 0;
  width: 160%;
  height: 50px;
  background: #1324a3;
  z-index: -1;
  opacity: 0.9;
}

.feature-dl .inner dt span {
  color: #c5ad6e;
}

.feature-dl .inner dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 8%;
}

.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;
  }
  .feature-dl .inner dt span {
    font-size: 3rem;
  }
  .feature-dl .inner dt:before {
    height: 40px;
  }
  .feature-dl .inner dd {
    width: 100%;
    margin: 0;
  }
}

.feature-dl .feature-title {
  font-family: "Noto Sans JP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 2.2rem;
  color: #1324a3;
  line-height: 1.5;
  padding-bottom: 5px;
  border-bottom: 1px solid #b6984a;
  margin-bottom: 20px;
}

.feature-dl .feature-title .upper {
  color: #354ae7;
  display: block;
  font-size: 1.7rem;
}

@media all and (max-width: 639px) {
  .feature-dl .feature-title {
    font-size: 1.8rem;
  }
  .feature-dl .feature-title .upper {
    font-size: 1.4rem;
  }
}

.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 {
  z-index: -1;
  background-attachment: fixed !important;
}

@media all and (max-width: 639px) {
  .bg-fix {
    background-attachment: scroll !important;
  }
}

.mini {
  font-size: 90%;
}

en {
  font-family: "Roboto", sans-serif;
  font-style: normal;
}

.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: #1324a3 !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;
  }
}

.top_news {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

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

.top_news .inner {
  position: relative;
  display: block;
}

.top_news .left {
  width: 160px;
  position: absolute;
  left: 0;
  height: 100%;
  background: #c5ad6e;
}

@media all and (max-width: 639px) {
  .top_news .left {
    position: inherit;
  }
}

.top_news .left .read {
  text-align: center;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-size: 2rem;
  line-height: 50px;
}

.top_news .right {
  padding: 10px 10px 10px 180px;
}

.top_news .right ul {
  width: 100%;
  overflow-y: scroll;
  height: 30px;
}

.top_news .right ul li {
  padding: 5px 20px 5px 0;
}

.top_news .right ul li p {
  font-size: 1.4rem;
}

.top_news .right ul li p span {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  color: #b6984a;
  margin-right: 5px;
}

.top_news2 {
  display: none;
  width: 100%;
  margin: 0 auto 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

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

.top_news2 .inner {
  position: relative;
  display: block;
}

.top_news2 .left {
  width: 100%;
  background: #c5ad6e;
}

.top_news2 .left .read {
  text-align: center;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-size: 1.6rem;
  padding: 5px 0;
}

.top_news2 .right {
  padding: 10px;
}

.top_news2 .right ul {
  width: 100%;
  overflow-y: scroll;
  height: 80px;
}

.top_news2 .right ul li {
  padding: 5px;
}

.top_news2 .right ul li p {
  font-size: 1.2rem;
}

.top_news2 .right ul li p span {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  color: #fff;
  background: #b6984a;
  padding: 1px 8px;
  border-radius: 5px;
  display: table-cell;
}

.top-intro2 {
  position: relative;
  padding: 40px 0;
}

@media all and (max-width: 639px) {
  .top-intro2 {
    margin: 0 auto 4em;
  }
}

.top-intro2:before {
  right: 0;
  top: 0%;
  background: url(../img/bg-intro2.jpg) no-repeat bottom right/cover;
  position: absolute;
  content: "";
  width: 50%;
  height: 100%;
  /*z-index: 1;*/
}

@media all and (max-width: 1200px) {
  .top-intro2:before {
    right: 5%;
  }
}

@media all and (max-width: 800px) {
  .top-intro2:before {
    width: 70%;
    right: 0;
  }
}

@media all and (max-width: 639px) {
  .top-intro2:before {
    background-size: cover;
    height: 35%;
    width: 100%;
  }
}

.top-intro2.concept {
  margin: 6em auto 6em;
}

.top-intro2.concept:before {
  left: 5%;
  right: auto;
  background: url(../img/bg-concept.png) no-repeat center right/cover;
  width: 60%;
}

@media all and (max-width: 639px) {
  .top-intro2.concept:before {
    left: 0;
  }
}

.top-intro2.concept .top-box {
  margin: 30px 20px 30px auto;
  background: rgba(255, 255, 255, 0.9);
}

@media all and (max-width: 639px) {
  .top-intro2.concept .top-box {
    margin: 180px 0px 30px;
  }
}

.top-intro_title2 {
  -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;
  text-align: left;
  font-size: 6rem;
  line-height: 1.3;
  left: 2%;
  top: 50px;
  font-weight: normal;
  white-space: nowrap;
  z-index: 3;
}

@media all and (max-width: 639px) {
  .top-intro_title2 {
    -webkit-writing-mode: initial;
        -ms-writing-mode: initial;
            writing-mode: initial;
    font-size: 3rem;
    top: 20px;
    left: 0;
  }
  .top-intro_title2:before {
    left: 0;
    top: 50%;
    width: 100px;
    height: 70px;
    margin: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.top-box2 {
  max-width: 680px;
  background: #fff;
  padding: 30px;
  position: relative;
  z-index: 5;
  margin: 10px auto 10px 0;
  position: relative;
  font-size: 1.4rem;
  text-align: center;
}

@media all and (max-width: 800px) {
  .top-box2 {
    max-width: 80%;
    padding: 20px;
  }
}

@media all and (max-width: 639px) {
  .top-box2 {
    max-width: 100%;
    font-size: 1.1rem;
    margin-top: 160px;
    margin-bottom: 0;
  }
}

.top-intro_txt2 {
  margin-top: -115px;
}

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

.boxttl {
  position: relative;
  top: -200px;
  margin-bottom: -200px;
  background: #fff;
  padding: 10px;
  width: 200px;
  display: inline-block;
}

.boxttl p {
  line-height: 1.5;
  letter-spacing: 2px;
  font-size: 2.5rem;
  text-align: center;
}

.boxttl p span {
  display: block;
}

.boxttl p span.subttl {
  letter-spacing: 1px;
  font-size: 1.4rem;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  color: #b6984a;
}

.boxttl p span.subttl:before {
  content: "- ";
}

.boxttl p span.subttl:after {
  content: " -";
}

@media all and (max-width: 639px) {
  .boxttl {
    top: -80px;
    margin-bottom: -100px;
    width: 120px;
    padding: 5px;
    left: -25%;
  }
  .boxttl p {
    font-size: 1.6rem;
  }
  .boxttl p span img {
    width: 20px;
  }
  .boxttl p span.subttl {
    font-size: 1rem;
    font-family: "Roboto", sans-serif;
    font-style: normal;
  }
}

.marker-g {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, #e1d6c0));
  background: linear-gradient(transparent 70%, #e1d6c0 0%);
  z-index: 0;
}

.features {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 90px auto 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.features.w31 li {
  width: 31%;
}

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

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

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

.features li {
  width: 17.6%;
  margin-right: 3%;
  position: relative;
  margin-bottom: 60px;
}

@media all and (max-width: 639px) {
  .features li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 45px;
  }
}

.features li:nth-child(5n) {
  margin-right: 0;
}

.features li:nth-child(even) {
  margin-top: -50px;
}

@media all and (max-width: 639px) {
  .features li:nth-child(even) {
    margin-top: 0;
  }
}

.features li img {
  width: 90%;
  margin-left: auto;
  display: block;
  border-radius: 10px;
}

@media all and (max-width: 639px) {
  .features li img {
    width: 80%;
  }
}

.features li .nub {
  font-size: 2.8rem;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  margin-top: -10px;
  line-height: 1em;
  color: #c5ad6e;
  opacity: .8;
  text-shadow: 1px 1px 1px rgba(73, 49, 33, 0.5);
}

.features li .nub span {
  font-size: 5.8rem;
}

.features li .item_teext {
  font-family: "Noto Sans JP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5em;
  margin-top: 14px;
  color: #1324a3;
}

.features li .item_main {
  font-size: 1.4rem;
  color: #555;
  line-height: 1.7em;
  margin-top: 11px;
}

.point-ul {
  margin-top: 50px;
}

.point-ul li {
  width: 80%;
  margin-bottom: 50px;
}

.point-ul li:last-child {
  margin-bottom: 0px;
}

.point-ul li:nth-child(even) {
  margin-left: auto;
}

@media all and (max-width: 639px) {
  .point-ul li {
    width: 100%;
  }
}

.point-ul li img {
  display: block;
  width: 100%;
  border-radius: 10px;
}

.point-ul li .right_l {
  position: relative;
  padding-top: 30px;
}

.point-ul li .sub {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-size: 5rem;
  letter-spacing: .1em;
  line-height: 1em;
  color: #1324a3;
  opacity: .2;
  position: absolute;
  left: 0;
  top: 0;
}

@media all and (max-width: 639px) {
  .point-ul li .sub {
    font-size: 4rem;
  }
}

.point-ul li .item_read {
  font-size: 2rem;
  letter-spacing: .1em;
  color: #0e1a75;
  font-weight: bold;
  line-height: 1.6em;
  margin-bottom: 10px;
  text-indent: 1em;
}

.point-ul li .item_read span {
  font-size: 1.5rem;
  margin-left: 10px;
}

@media all and (max-width: 639px) {
  .point-ul li .item_read {
    text-indent: 0.5em;
    margin-top: -5px;
  }
  .point-ul li .item_read span {
    font-size: 1.4rem;
    margin-left: 0px;
    display: block;
  }
}

.point-ul li .item_main {
  letter-spacing: .1em;
}

.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: 24%;
  float: left;
}

@media all and (max-width: 639px) {
  .innerB .left_s {
    width: 100%;
    float: none;
  }
}

.innerB .right_l {
  width: 74%;
  float: left;
  margin-left: 2%;
}

@media all and (max-width: 639px) {
  .innerB .right_l {
    margin-left: 0;
    margin-top: 15px;
    width: 100%;
    float: none;
  }
}

/* Tiny Carousel */
.slider1 {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-bottom: 0px;
  background-repeat: repeat;
}

.slider1 .viewport {
  width: 100%;
  margin: 0 auto;
  height: 220px;
  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;
  float: left;
  text-align: center;
  vertical-align: middle;
  display: table;
  z-index: 99999;
  overflow: hidden;
  font-weight: bold;
  margin: 5px;
}

.slider1 img {
  width: 250px;
  height: 170px;
  border-radius: 10px;
  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: #493121;
  font-weight: bold;
  line-height: 1.4;
  display: none;
}

.anchor {
  display: block;
  padding-top: 135px;
  margin-top: -135px;
}

@media screen and (max-width: 768px) {
  .anchor {
    padding-top: 98px;
    margin-top: -98px;
  }
}

.sec3-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;
}

.sec3-wrap .child {
  width: 31%;
  position: relative;
}

.sec3-wrap .child a {
  position: relative;
  display: block;
  width: 100%;
}

.sec3-wrap .child a:hover .sec3-img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.sec3-wrap .child:nth-child(2n) {
  -webkit-transform: translateY(60px);
          transform: translateY(60px);
}

@media all and (max-width: 639px) {
  .sec3-wrap .child {
    width: 100%;
    padding: 0;
  }
  .sec3-wrap .child:nth-child(2n) {
    -webkit-transform: none;
            transform: none;
  }
}

.sec3-img {
  width: 95%;
  height: 380px;
  overflow: hidden;
  margin-left: auto;
}

.sec3-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}

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

.sec3-box {
  letter-spacing: 0.15em;
  max-width: 1200px;
}

@media all and (max-width: 1200px) {
  .sec3-box {
    max-width: 95%;
    margin-left: 0;
  }
}

.sec3-title {
  background: rgba(0, 0, 0, 0.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 2;
  margin-top: -80px;
  margin-bottom: 35px;
  width: 90%;
  height: 100px;
  line-height: 1.4;
}

.sec3-title.type2 {
  background: rgba(182, 152, 74, 0.8);
}

.sec3-title .num {
  width: 100px;
  font-weight: 400;
  font-size: 6rem;
  top: 50%;
  line-height: 1;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  height: 100%;
  text-align: center;
  padding: 20px 10px;
  color: #f6fb00;
}

.sec3-title .txt {
  margin-left: 100px;
  border-left: 0.9px solid #ccc;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  padding: 20px 20px;
}

.sec3-title .eng {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-size: 2rem;
  display: block;
}

@media all and (max-width: 639px) {
  .sec3-title .num {
    font-size: 3rem;
    width: 60px;
  }
  .sec3-title .txt {
    font-size: 1.3rem;
    margin-left: 60px;
  }
  .sec3-title .eng {
    font-size: 1.1rem;
  }
}

.sec3-txt {
  line-height: 2.2;
  font-size: 1.6rem;
  padding: 0 50px;
  margin-bottom: 20px;
}

@media all and (max-width: 639px) {
  .sec3-txt {
    font-size: 1.2rem;
    padding: 0 20px;
    line-height: 2;
  }
}

@-webkit-keyframes animation-bar {
  0% {
    left: 0;
    right: auto;
    width: 0;
  }
  50% {
    left: 0;
    right: auto;
    width: 100%;
  }
  51% {
    left: auto;
    right: 0;
    width: 100%;
  }
  100% {
    left: auto;
    right: 0;
    width: 101%;
  }
}

@keyframes animation-bar {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 101%;
    width: 0;
  }
}

@-webkit-keyframes animation-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes animation-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.animation-content.move .animation-bar:before {
  -webkit-animation: animation-bar 0.8s ease 0s 1 normal forwards;
          animation: animation-bar 0.8s ease 0s 1 normal forwards;
}

.animation-content.move .animation-txt {
  -webkit-animation: animation-txt 0s ease 0.4s 1 normal forwards;
          animation: animation-txt 0s ease 0.4s 1 normal forwards;
}

.animation-content .animation-box {
  display: block;
  text-align: center;
}

.animation-content .animation-bar {
  position: relative;
  width: 100%;
  display: inline-block;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.animation-content .animation-bar:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: #1324a3;
}

.animation-content .animation-txt {
  opacity: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.rec_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.rec_link li {
  width: 24%;
  margin: 10px;
}

@media all and (max-width: 800px) {
  .rec_link li {
    width: 48%;
  }
}

.rec_link li a {
  display: block;
  padding: 1rem 2rem;
  border: 1px solid #1324a3;
  text-align: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.rec_link li a:hover {
  background-color: #1324a3;
  color: #fff;
}

.rec_link {
  margin: 80px 0;
}

@media all and (max-width: 800px) {
  .rec_link {
    margin: 40px 0;
  }
}
