@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400;500;600;700&display=swap");
/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
body {
  color: #555;
  font-family: "YakuHanJP", 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: 400;
  position: relative;
  letter-spacing: 0.1rem;
  background: url(../img/body.jpg);
}

#nav-toggle,
#sp-nav {
  display: none;
}

a {
  color: #1e2837;
  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: 600;
}

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

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

#wrapper {
  overflow: hidden;
}

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

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

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

.animation {
  opacity: 0;
}

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

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

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

.loader::after {
  -webkit-animation: loader 0.5s linear infinite;
          animation: loader 0.5s linear infinite;
  border: 1px solid #425979;
  border-radius: 50%;
  border-right: 1px solid rgba(66, 89, 121, 0.2);
  border-top: 1px solid rgba(66, 89, 121, 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%;
  position: relative;
  z-index: 200;
  background: url(../img/header-pattern.png) repeat-x center top/auto 70px;
  height: 70px;
}

#l-header .inner {
  max-width: 1500px;
  margin: 0 auto;
  min-width: 900px;
  position: relative;
}

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

.logoarea {
  width: 220px;
  position: absolute;
  left: 0;
  top: -10px;
}

@media all and (max-width: 1024px) {
  .logoarea {
    width: 180px;
  }
}

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

.logo-upper {
  display: block;
  margin-top: -80px;
}

#logo {
  position: relative;
  z-index: 10;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.header-right_txt {
  line-height: 1.2;
  font-size: 1.3rem;
  font-weight: 600;
  color: #5c4332;
}

.header-right_contact {
  position: relative;
  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;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

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

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

.sns-list.type1 {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

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

.sns-list li a {
  text-align: center;
  line-height: 1.4;
}

.sns-list li a i {
  line-height: 40px;
  color: #fff;
  width: 40px;
  height: 40px;
  display: block;
  font-size: 2rem;
  background: #425979;
  border-radius: 50%;
  margin: 0 auto;
}

.sns-list li a span {
  display: block;
  font-size: 11px;
  font-family: "Caveat", cursive;
  font-weight: 400;
  letter-spacing: 0;
  color: #5c4332;
  margin-top: 4px;
}

.header-right_tel a,
.header-right_mail a,
.header-right_reserve a {
  display: block;
  padding: 5px 10px;
  line-height: 1.4;
  text-align: center;
  font-size: 1.4rem;
  color: #fff;
  font-weight: 600;
}

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

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

.header-right_tel {
  text-align: center;
  margin-right: 15px;
}

.header-right_tel span {
  display: block;
  font-size: 12px;
  margin-top: -10px;
}

.header-right_tel a {
  width: 100%;
  color: #425979;
  font-size: 1.8rem;
  padding: 5px 10px;
}

.header-right_tel a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: bold;
  margin-right: 5px;
  font-size: 1.6rem;
}

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

.header-right_mail a {
  background: #eee;
  color: #111;
  border-radius: 20px;
}

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

.header-right_mail a:hover {
  background: #ff9d1d;
}

#header_nav {
  position: relative;
  margin-bottom: 25px;
}

#header_nav ul {
  margin: 0 auto;
}

#header_nav ul li {
  position: relative;
}

#header_nav ul li:not(:last-of-type) {
  margin-bottom: 18px;
}

#header_nav ul li a {
  display: block;
  position: relative;
  line-height: 1.3;
  font-size: 1.4rem;
  color: #111;
  -webkit-transform-origin: left top;
          transform-origin: left top;
  font-weight: 700;
  padding: 15px 10px 15px 15px;
  -webkit-transition: color 0.2s ease-in, -webkit-transform 0.1s ease;
  transition: color 0.2s ease-in, -webkit-transform 0.1s ease;
  transition: color 0.2s ease-in, transform 0.1s ease;
  transition: color 0.2s ease-in, transform 0.1s ease, -webkit-transform 0.1s ease;
}

#header_nav ul li a:before {
  position: absolute;
  content: "";
  width: 180px;
  height: 73px;
  top: 0;
  left: 0;
  background: url(../img/bg-nav.png) no-repeat center/contain;
  z-index: -1;
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  -webkit-transform: rotate(-2deg);
          transform: rotate(-2deg);
}

#header_nav ul li a span {
  display: block;
  font-size: 1.2rem;
  -webkit-transition: color 0.2s ease-in;
  transition: color 0.2s ease-in;
  font-family: "Caveat", cursive;
  font-weight: 400;
}

#header_nav ul li a:hover, #header_nav ul li a.active {
  -webkit-transform: translate(4px, 5px);
          transform: translate(4px, 5px);
  color: #425979;
}

#header_nav ul li a:hover span, #header_nav ul li a.active span {
  color: #5c4332;
}

#header_nav ul li.nav-reserve a {
  background: #333;
}

#header_nav ul li.nav-reserve a span {
  color: #fefefe;
}

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

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

#header_nav .dropdown .dropdown-li a {
  display: block;
  width: 160px;
  text-align: center;
  font-size: 1.5rem;
  padding: 10px 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: #e4818a;
}

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

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

#page-top a {
  display: block;
  background: #65c698;
  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: 45px;
  }
}

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

.sen {
  display: block;
  height: 9px;
  background: url(../img/sen.png);
  max-width: 100%;
  margin: 30px auto 5px;
}

#main-box {
  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: 1500px;
  margin: 0 auto 0;
  position: relative;
  z-index: 1;
}

#main-box .main-view {
  width: 60%;
  position: relative;
}

#main-box .main-left {
  width: 20%;
  position: relative;
}

#main-box .main-right {
  width: 190px;
  position: relative;
}

@media all and (max-width: 800px) {
  #main-box .main-right {
    display: none;
  }
  #main-box .main-left {
    width: 180px;
  }
  #main-box .main-left.sub-left {
    width: 200px;
  }
  #main-box .main-view {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-left: 30px;
  }
}

@media all and (max-width: 639px) {
  #main-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #main-box .main-view {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    width: 95%;
    margin: 0 auto 50px;
  }
  #main-box .main-left {
    width: 90%;
    margin: 0 auto;
    padding-top: 0;
  }
}

@media all and (max-width: 639px) and (max-width: 639px) {
  #main-box .main-left {
    margin-top: -70px;
    padding-top: 0;
  }
}

.main-left {
  padding-top: 350px;
  padding-left: 20px;
  position: relative;
}

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

.main-left.sub-left {
  padding-top: 300px;
}

@media all and (max-width: 1024px) {
  .main-left.sub-left {
    padding-top: 250px;
  }
}

.main-view {
  position: relative;
}

.deco-top-anml {
  display: block;
  position: relative;
  z-index: 2;
  text-align: center;
  margin: 0 auto -15px;
}

@media all and (max-width: 639px) {
  .deco-top-anml {
    width: 100px;
  }
}

.main-left-box {
  background: url(../img/stripe.png) repeat;
  background-size: 10px;
  padding: 7px;
}

.main-left-box .inner {
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  padding-top: 15px;
  font-weight: 600;
}

.main-left-box .inner .address {
  position: relative;
  font-size: 1.3rem;
  padding-left: 50px;
  margin-bottom: 8px;
  padding-bottom: 15px;
  border-bottom: 2px dashed #8ad4b1;
}

.main-left-box .inner .address:before {
  position: absolute;
  content: "";
  width: 35px;
  height: 60px;
  top: -15px;
  left: 0;
  background: url(../img/address.png) no-repeat center/contain;
}

.main-slide {
  padding: 10px;
  position: relative;
  width: 100%;
  margin: 0 auto;
}

@media all and (max-width: 1024px) {
  .main-slide {
    width: auto;
  }
}

.main-slide .slick-slide {
  height: 70vh;
}

@media all and (max-width: 1024px) {
  .main-slide .slick-slide {
    height: 40vh;
  }
}

#catch {
  z-index: 150;
  position: absolute;
  right: 0;
  opacity: 0;
  width: 350px;
  bottom: 15%;
  text-align: center;
}

#catch.on {
  opacity: 1;
  -webkit-transition: 2s;
  transition: 2s;
}

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

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

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

.contact_lead {
  font-size: 1.3em;
  color: #5c4332;
  text-align: center;
}

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

.contact_bnr {
  margin: 0 auto 20px;
  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;
}

.contact_bnr > li {
  width: 48%;
}

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

.contact_bnr > li .contact_address {
  position: relative;
  font-weight: 600;
  padding-left: 40px;
  font-size: 1.7rem;
}

.contact_bnr > li .contact_address:before {
  position: absolute;
  content: "";
  width: 35px;
  height: 60px;
  top: 0;
  left: 0;
  background: url(../img/address.png) no-repeat center/contain;
}

@media all and (max-width: 639px) {
  .contact_bnr > li .contact_address {
    font-size: 1.3rem;
    text-align: left;
  }
}

.contact_bnr > li .bnr_tel {
  white-space: nowrap;
  color: #5c4332;
  line-height: 1.3;
  font-size: 4.2rem;
  font-family: "Caveat", cursive;
  font-weight: 400;
}

.contact_bnr > li .bnr_tel:before {
  font-family: "Font Awesome 5 Free";
  content: "\f095";
  font-weight: bold;
  font-size: 2.8rem;
  color: #8ad4b1;
}

.contact_bnr > li .bnr_tel:hover {
  text-shadow: 3px 3px 2px rgba(255, 255, 255, 0.9);
}

@media all and (max-width: 639px) {
  .contact_bnr > li .bnr_tel {
    font-size: 3rem;
    width: 100%;
  }
  .contact_bnr > li .bnr_tel:before {
    font-size: 2rem;
  }
}

.contact_bnr > li .bnr_mobile {
  background: #425979;
  border: 1px solid #304158;
}

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

.contact_bnr > li .bnr_mobile:hover {
  background: #e4818a;
}

.contact_bnr > li .bnr_reserve {
  background: #ffe53b;
  color: #222;
}

.contact_bnr > li .bnr_reserve:before {
  font-family: "Font Awesome 5 Free";
  content: "\f073";
  font-weight: bold;
}

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

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

.contact_bnr > li .bnr_mail {
  background: #e4818a;
  color: #fefefe;
  border-radius: 30px;
  font-size: 1.7rem;
}

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

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

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

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

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

@media all and (max-width: 320px) {
  .contact_bnr > li a,
  .contact_bnr > li span {
    width: 250px;
  }
}

/* footer
----------------------------------*/
#l-footer {
  font-size: 1.3rem;
  position: relative;
  background: url(../img/bg-renga.png) repeat-x center bottom/contain;
  background-size: 150px;
  margin-top: 80px;
}

#l-footer:after {
  position: absolute;
  content: "";
  right: 3%;
  bottom: 0;
  background: url(../img/footer-deco02.png) no-repeat right bottom/contain;
  width: 200px;
  height: 140px;
  z-index: 2;
}

@media all and (max-width: 1024px) {
  #l-footer:after {
    height: 120px;
  }
}

#l-footer::before {
  position: absolute;
  content: "";
  left: 0;
  top: -140px;
  background: url(../img/footer-deco01.png) no-repeat right bottom/contain;
  width: 200px;
  height: 145px;
  z-index: 2;
}

@media all and (max-width: 639px) {
  #l-footer::before {
    top: -120px;
  }
}

#l-footer .inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  /*
		&:before {
			position: absolute;
			content: "";
			width: 200px;
			height: 145px;
			top: -160px;
			left: -20px;
			background: url(../img/footer-deco01.png) no-repeat left bottom/contain;
			z-index: 1;
			@include for-size(phone-only) {
				width: 120px;
				height: 87px;
				top: -110px;
			}
		}*/
  z-index: 3;
}

#l-footer .inner.type2 {
  background: #425979;
}

#l-footer .footer-box {
  padding: 40px 10px 50px;
}

@media all and (max-width: 639px) {
  #l-footer {
    font-size: 12px;
  }
}

/* footer_navi
----------------------------------*/
.footer_navi {
  margin: 30px auto 20px;
}

.footer_navi ul {
  margin: 0 auto;
  max-width: 700px;
  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-right: 0.9px solid #aaa;
}

.footer_navi li:last-child {
  border-right: 0;
}

.footer_navi li a {
  color: #333;
  font-size: 1.3rem;
  position: relative;
}

.footer_navi li a span {
  display: none;
}

.footer_navi li a:hover {
  color: #6ebeb3;
}

.footer_navi li .dropdown {
  display: none;
}

.column2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.column2 .child {
  width: 180px;
}

.column2 .child2 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 40px;
}

@media all and (max-width: 639px) {
  .column2 .child,
  .column2 .child2 {
    width: 100%;
    border: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    margin: 0;
  }
  .column2 .child:first-child,
  .column2 .child2:first-child {
    margin-bottom: 20px;
  }
}

.flogo {
  width: 180px;
  margin-bottom: 25px;
  min-height: 0;
}

.flogo a {
  display: block;
}

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

.copyright {
  font-size: 1.2rem;
}

@media all and (max-width: 800px) {
  .copyright {
    padding-bottom: 65px;
  }
}

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

/*----------------------------------
 --top-contents--
----------------------------------*/
/* --top-intro--
----------------------------------*/
.triangle {
  display: block;
  position: relative;
  opacity: 0.6;
}

.triangle .triangle-left {
  width: 400px;
  height: 434px;
  top: -150px;
  left: 0;
  position: absolute;
  background: url(../img/triangle-green.png) no-repeat left top/contain;
  z-index: -1;
  opacity: 0.7;
}

@media all and (max-width: 639px) {
  .triangle .triangle-left {
    width: 40%;
    top: -80px;
  }
}

.triangle .triangle-right {
  width: 400px;
  height: 312px;
  top: -150px;
  right: 0;
  position: absolute;
  background: url(../img/triangle-blue.png) no-repeat right top/contain;
  z-index: -1;
  opacity: 0.7;
}

@media all and (max-width: 639px) {
  .triangle .triangle-right {
    width: 40%;
    top: -80px;
  }
}

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

.top-greet.ai-c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top-greet .top-greet-img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: 60px;
}

.top-greet .top-greet-img img {
  width: 100%;
}

.top-greet .top-greet-box {
  width: 400px;
  padding: 10px;
}

@media all and (max-width: 800px) {
  .top-greet {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 90%;
    margin: 0 auto;
  }
  .top-greet .top-greet-img {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    margin: 0 auto 30px;
    width: 100%;
  }
  .top-greet .top-greet-box {
    margin: 0 auto;
    width: 280px;
  }
}

@media all and (max-width: 639px) {
  .top-greet .top-greet-box {
    width: 60%;
  }
}

.top-greet-txt {
  font-weight: 600;
  line-height: 2;
  font-size: 1.8rem;
  text-align: center;
  margin-top: 30px;
  letter-spacing: 0.2em;
}

.top-greet-txt .eng {
  font-family: "Caveat", cursive;
  font-weight: 400;
  font-size: 2.2rem;
  letter-spacing: 0;
  color: #425979;
  margin-bottom: 20px;
}

@media all and (max-width: 639px) {
  .top-greet-txt {
    font-size: 1.2rem;
    letter-spacing: 0.2em;
  }
}

.top-about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  width: 85%;
  margin: 0 auto;
  align-items: center;
}

.top-about .top-about-title {
  width: 140px;
  margin-right: 30px;
}

.top-about .top-about-title.type1 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-right: 0;
  margin-left: 30px;
}

@media all and (max-width: 639px) {
  .top-about .top-about-title.type1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.top-about .top-about-box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 30px 25px;
  background: #fff;
  border-radius: 20px;
  height: auto;
}

@media all and (max-width: 800px) {
  .top-about .top-about-box .list2 > .child,
  .top-about .top-about-box .list2 > li {
    width: 100%;
  }
}

.top-about .top-about-box.type1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

@media all and (max-width: 639px) {
  .top-about .top-about-box.type1 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

@media all and (max-width: 639px) {
  .top-about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .top-about .top-about-title {
    width: 80px;
    margin: 0 auto;
  }
  .top-about .top-about-title.type1 {
    margin: 0 auto;
  }
  .top-about .top-about-box {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    padding: 25px 20px;
    width: 100%;
  }
}

.footer-dl {
  font-size: 1.4rem;
  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;
}

.footer-dl dt,
.footer-dl dd {
  margin-bottom: 5px;
}

.footer-dl dt {
  width: 8.5em;
  font-weight: 600;
  color: #425979;
  padding-bottom: 5px;
  border-bottom: 2px solid #425979;
}

.footer-dl dd {
  width: calc(100% - 9.5em);
}

@media all and (max-width: 639px) {
  .footer-dl {
    font-size: 12px;
    text-align: left;
  }
}

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

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

.news-title {
  text-align: center;
  font-weight: 600;
  border-right: 3px solid #f0f0f0;
  padding: 5px 20px;
  color: #111;
}

.news-title span {
  font-size: 2.5rem;
  display: block;
  font-family: "Caveat", cursive;
  font-weight: 400;
  margin-bottom: -5px;
  color: #425979;
}

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

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

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

.top-blog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 20px;
}

.top-blog li {
  width: 32%;
  margin: 0 1.5% 10px;
  position: relative;
}

.top-blog li > a {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.top-blog li > a:hover ~ .top-blog_img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

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

.top-blog .top-blog_img {
  margin-bottom: 10px;
  overflow: hidden;
  height: 180px;
}

.top-blog .top-blog_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;
  transition: -webkit-transform 0.2s ease-in;
  transition: transform 0.2s ease-in;
  transition: transform 0.2s ease-in, -webkit-transform 0.2s ease-in;
}

.top-blog .top-blog_content {
  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;
}

.top-blog .top-blog_time {
  background: #425979;
  padding: 8px 5px;
  color: #fff;
  width: 25%;
  text-align: center;
  line-height: 1.2;
}

.top-blog .top-blog_time span {
  display: block;
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
}

.top-blog .top-blog_time span.day {
  font-size: 2.5rem;
  font-weight: bold;
}

.top-blog .top-blog_detail {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 10px;
}

.top-blog .top-blog_ttl {
  font-size: 1.7rem;
  font-weight: bold;
}

@media all and (max-width: 800px) {
  .top-blog li {
    width: 49%;
    margin-right: 2%;
  }
  .top-blog li:nth-child(3n) {
    margin-right: 2%;
  }
  .top-blog li:nth-child(2n) {
    margin-right: 0;
  }
}

@media all and (max-width: 639px) {
  .top-blog li {
    width: 85%;
    margin: 0 auto 20px;
  }
  .top-blog li:nth-child(2n), .top-blog li:nth-child(3n) {
    margin-right: auto;
  }
  .top-blog .top-blog_time span {
    font-size: 1.1rem;
  }
  .top-blog .top-blog_time span.day {
    font-size: 1.8rem;
  }
  .top-blog .top-blog_ttl {
    font-size: 1.3rem;
  }
}

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

.img-gray {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: -webkit-filter 0.2s ease-in;
  transition: -webkit-filter 0.2s ease-in;
  transition: filter 0.2s ease-in;
  transition: filter 0.2s ease-in, -webkit-filter 0.2s ease-in;
}

.img-gray:hover {
  -webkit-filter: grayscale(0);
  -moz-filter: grayscale(0);
  -ms-filter: grayscale(0);
  -o-filter: grayscale(0);
  filter: grayscale(0);
}

.staff-name {
  border-bottom: 1px solid #555;
  color: #232323;
  padding: 5px 5px 5px 10px;
  margin-bottom: 10px;
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: 0.3rem;
  line-height: 1.5;
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
}

.staff-name span {
  font-size: 1.4rem;
  color: #63b6af;
  font-family: "Caveat", cursive;
  font-weight: 400;
  font-weight: 600;
}

.staff-name span.upper {
  font-family: "Caveat", cursive;
  font-size: 2.5rem;
  display: block;
  color: #425979;
  font-weight: 400;
  letter-spacing: initial;
}

@media all and (max-width: 639px) {
  .staff-name {
    font-size: 1.8rem;
  }
  .staff-name span {
    letter-spacing: 0.1rem;
    font-size: 1.2rem;
  }
  .staff-name span.upper {
    font-size: 2rem;
  }
}

.article {
  position: relative;
  padding: 100px 0;
}

.article .article-img {
  width: 70%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
}

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

.article .article-txt {
  background: #fefefe;
  padding: 30px 20px;
  width: 50%;
  position: relative;
  font-weight: 600;
  margin-left: auto;
  z-index: 2;
}

@media all and (max-width: 639px) {
  .article {
    padding: 0;
  }
  .article .article-img {
    position: static;
    width: 100%;
    height: auto;
  }
  .article .article-txt {
    width: 100%;
  }
}

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

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

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

.lsingle {
  float: left;
}

.rsingle {
  float: right;
}

.mbox {
  background: #fcfcfc;
  padding: 40px 30px;
  max-width: 1200px;
  border: 2px solid rgba(66, 89, 121, 0.4);
  -webkit-box-shadow: 8px 8px rgba(66, 89, 121, 0.1);
          box-shadow: 8px 8px rgba(66, 89, 121, 0.1);
  border-radius: 15px;
  margin-left: auto;
  margin-right: auto;
  margin-right: auto;
}

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

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

.mbox.deco {
  position: relative;
  z-index: 2;
}

.mbox.deco::after, .mbox.deco::before {
  position: absolute;
  content: "";
  opacity: .2;
}

.mbox.deco::before {
  top: 0;
  left: 0;
  width: 250px;
  height: 250px;
  background: url(../img/deco01.png) no-repeat center/contain;
}

.mbox.deco::after {
  bottom: 0;
  right: 0;
  width: 250px;
  height: 250px;
  background: url(../img/deco02.png) no-repeat center/contain;
}

.mbox2 {
  background: #fff;
  margin-right: auto;
  margin-left: auto;
  padding: 30px;
  border-radius: 15px;
  -webkit-box-shadow: 0 0 15px rgba(66, 89, 121, 0.1);
          box-shadow: 0 0 15px rgba(66, 89, 121, 0.1);
}

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

.small-box {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}

.bg-white {
  background: #fff;
}

.bg-white.type1 {
  background: transparent;
  position: relative;
}

.bg-white.type1:after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: calc(100% - 80px);
  height: calc(100% - 80px);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #fefefe;
  z-index: 1;
}

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

.bg-white.type1 .inner {
  position: relative;
  z-index: 3;
}

.bg-grid {
  background: rgba(255, 255, 255, 0.9);
  /* border-top: 1px solid #555;
  border-bottom: 1px solid #555;*/
  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-fixed {
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  height: 480px;
}

@media all and (max-width: 800px) {
  .bg-fixed {
    background-attachment: scroll;
    height: 270px;
  }
}

.bg-fixed.fixed01 {
  background-image: url(../img/fixed01.jpg);
  background-position: center;
}

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

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

#side {
  float: right;
  position: -webkit-sticky;
  position: sticky;
  right: 0;
  top: 0;
  width: 20%;
  background: #8ad4b1;
  padding: 25px 10px;
  border-radius: 10px;
  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.6rem;
  position: relative;
  text-align: center;
  letter-spacing: 0.2rem;
}

.mtitle span {
  display: block;
  font-size: 4rem;
  margin-bottom: -5px;
  color: #304158;
  line-height: 1.5;
  font-family: "Caveat", cursive;
  font-weight: 400;
  letter-spacing: 0.1rem;
}

.mtitle:after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: -10px;
  height: 1px;
  width: 60px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: -webkit-gradient(linear, left top, right top, from(#425979), to(#8ad4b1));
  background-image: linear-gradient(to right, #425979, #8ad4b1);
}

.mtitle.white {
  color: #fff;
}

.mtitle.white:after {
  background-image: -webkit-gradient(linear, left top, right top, from(#ddd), to(#fefefe));
  background-image: linear-gradient(to right, #ddd, #fefefe);
}

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

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

.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.6rem;
    line-height: 1.4;
    margin-bottom: 0px;
  }
}

.mtitle2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #425979;
  position: relative;
  line-height: 1.3;
  font-weight: 600;
  padding-bottom: 5px;
}

.mtitle2:after {
  position: absolute;
  left: 5px;
  bottom: -15px;
  content: "●●●";
  letter-spacing: 0.8em;
  font-size: 10px;
  color: #86c6c1;
}

.mtitle2 .en {
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
  color: #54719a;
  font-family: "Caveat", cursive;
  font-weight: normal;
  display: block;
}

.mtitle2 .small {
  font-size: 0.9em;
  color: #8ad4b1;
  padding-left: 10px;
}

@media all and (max-width: 639px) {
  .mtitle2 {
    font-size: 1.5rem;
    padding-bottom: 5px;
  }
  .mtitle2 .en {
    font-size: 1.3rem;
    display: block;
  }
}

.mtitle2.white {
  color: #fefefe;
}

.mtitle2.white span {
  color: #708bb1;
}

.mtitle3 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #6ebeb3;
  margin-bottom: 15px;
}

.mtitle3 span {
  display: block;
  color: #5c4332;
  font-size: 1.4rem;
  margin-top: 4px;
}

@media all and (max-width: 800px) {
  .mtitle3 {
    font-size: 1.4rem;
  }
  .mtitle3 span {
    font-size: 13px;
  }
}

.mtitle-bll {
  font-size: 1.6rem;
  font-weight: bold;
  border-bottom: 2px solid #f0efec;
  position: relative;
  padding-bottom: 5px;
  margin-bottom: 10px;
  line-height: 1.5;
  color: #5c4332;
}

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

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

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

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

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

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

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

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

.mtitle5 {
  margin: -74px -30px 40px;
  text-align: center;
  position: relative;
}

.mtitle5:before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  width: 100%;
  height: 3px;
  z-index: 1;
  background: #269892;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.mtitle5 span {
  display: inline-block;
  padding: 8px 15px;
  background: #269892;
  font-size: 3.5rem;
  color: #fff;
  position: relative;
  z-index: 2;
}

@media all and (max-width: 639px) {
  .mtitle5 {
    margin: -42px -15px 30px;
  }
  .mtitle5 span {
    font-size: 1.7rem;
    line-height: 1.4;
  }
}

.mtitle6 {
  position: relative;
  z-index: 10;
}

.mtitle6 .eng {
  position: absolute;
  font-family: "Caveat", cursive;
  font-weight: 400;
  color: #425979;
  font-size: 5rem;
  left: 5%;
  top: -40px;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
  font-weight: 500;
}

@media all and (max-width: 800px) {
  .mtitle6 .eng {
    font-size: 3rem;
  }
}

@media all and (max-width: 639px) {
  .mtitle6 .eng {
    left: -5%;
  }
}

.mtitle_sub {
  padding-left: 0.5em;
  font-weight: 700;
  line-height: 1.3;
  position: relative;
  border-left: 6px solid #8ad4b1;
  margin: 8px 0 10px;
  font-size: 1.6rem;
}

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

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

.mtitle_box {
  background-image: -webkit-gradient(linear, right top, left top, from(#425979), to(#8ad4b1));
  background-image: linear-gradient(to left, #425979, #8ad4b1);
  color: #fff;
  font-size: 1.7rem;
  position: relative;
  padding: 10px;
  margin-bottom: 20px;
  font-weight: bold;
}

.mtitle_box span {
  font-family: "Caveat", cursive;
  font-weight: 400;
  font-size: 2rem;
  padding-right: 10px;
  color: #555;
}

.mtitle_box:before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f30a";
  font-weight: bold;
  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;
  }
  .mtitle_box span {
    font-size: 1.6rem;
  }
}

.mtitle_box2 {
  background: #63b6af;
  font-size: 2.2rem;
  color: #fff;
  position: relative;
  font-weight: bold;
  letter-spacing: 0.1rem;
  padding: 15px 10px 15px 20px;
  margin-bottom: 25px;
}

.mtitle_box2 span {
  position: absolute;
  font-size: 5rem;
  opacity: 0.5;
  left: 0;
  top: -75px;
  color: #555;
  letter-spacing: 0.2rem;
}

.mtitle_box2 .small-cap {
  font-weight: normal;
  font-size: 14px;
}

@media all and (max-width: 639px) {
  .mtitle_box2 {
    font-size: 15px;
    line-height: 1.5;
    padding: 10px 10px 10px 15px;
    padding-right: 40px;
  }
  .mtitle_box2 span {
    font-size: 3rem;
    top: -40px;
    opacity: 0.3;
  }
}

.mtext1 {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.5;
}

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

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

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

.mtitle_category {
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: normal;
  color: #fff;
  font-family: "Caveat", cursive;
  font-weight: 400;
}

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

/* btn
----------------------------------*/
.btn01 a {
  background: #425979;
  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: #54719a;
  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: #425979;
  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 i {
  width: 34px;
}

@media all and (max-width: 639px) {
  .btn02 {
    width: 280px;
  }
  .btn02 a {
    font-size: 1.2rem;
  }
}

.btn-img01 {
  margin: 15px auto;
  text-align: center;
}

/* news
----------------------------------*/
.news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.4rem;
}

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

.news dt {
  width: 9em;
  padding: 5px;
  text-align: center;
  color: #fff;
  font-weight: 600;
  background: #63b6af;
}

.news dd {
  padding: 5px;
  background: #fcfaf0;
  width: calc(100% - 10em);
  margin-left: 10px;
  line-height: 1.6;
}

.news dd a {
  color: #333;
}

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

.news-bl dt {
  float: left;
  width: 8em;
  padding: 5px 5px;
  line-height: 1.3;
  letter-spacing: 0;
  text-align: center;
  font-size: 0.9em;
  background: rgba(240, 239, 236, 0.8);
  border-radius: 20px;
}

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

.news-bl dd a {
  color: #304158;
  font-weight: 700;
}

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

/* page-title
----------------------------------*/
.page-title {
  position: relative;
  z-index: 1;
}

.page-title:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 80%;
  z-index: -1;
  background: url(../img/page-title.jpg) no-repeat center top/cover;
}

@media all and (max-width: 800px) {
  .page-title:before {
    height: 60%;
  }
}

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

.page-title::after {
  position: absolute;
  content: "";
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 80%;
  opacity: .5;
  background: #425979;
}

@media all and (max-width: 800px) {
  .page-title::after {
    height: 60%;
  }
}

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

.page-title .inner {
  margin: 10px auto 0;
  padding: 400px 0 0px;
  max-width: 1200px;
}

.page-title .page-lead {
  margin: 0 auto;
  position: relative;
}

.page-title .page-lead .mtitle {
  margin-bottom: 0;
  color: #5c4332;
  font-weight: 600;
}

.page-title .page-lead .mtitle:after {
  display: none;
}

.page-title .page-lead .mtitle span {
  font-size: 4rem;
  line-height: 1.4;
  color: #425979;
}

@media all and (max-width: 800px) {
  .page-title {
    background-attachment: scroll;
  }
  .page-title .inner {
    width: 99%;
    height: auto;
    padding: 130px 0 0;
    margin-bottom: 20px;
  }
  .page-title .page-lead {
    width: 90%;
    padding: 0;
  }
}

@media all and (max-width: 639px) {
  .page-title .inner {
    padding-top: 20px;
  }
  .page-title .page-lead .mtitle {
    font-size: 1.3rem;
  }
  .page-title .page-lead .mtitle span {
    font-size: 2.8rem;
    letter-spacing: 0;
    margin-bottom: -5px;
  }
}

.bg-01 {
  background: url(../img/bg-01.jpg) no-repeat center bottom/cover;
}

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

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

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

.bg-maru1 {
  background: #425979;
  max-width: calc(100% - 50px);
  margin-left: auto;
  margin-right: auto;
  margin: 50px auto;
  border-radius: 20px;
}

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

@media all and (max-width: 639px) {
  .bg-maru1 {
    border-radius: 10px;
  }
}

.bg-maru2 {
  position: relative;
  margin: 50px auto;
}

.bg-maru2:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 0;
  width: calc(100% - 60px);
  height: 100%;
  z-index: -1;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #f0efec;
  opacity: 0.7;
}

@media all and (max-width: 639px) {
  .bg-maru2:before {
    width: 100%;
  }
}

.top-menu {
  position: relative;
}

.top-menu:before {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 0;
  background: url(../img/bg-01.jpg);
  width: calc(100% - 80px);
  height: 60%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

@media all and (max-width: 800px) {
  .top-menu:before {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
}

.bg-base {
  position: relative;
  margin: 50px auto;
}

.bg-base:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  z-index: -1;
  opacity: 0.2;
  background: #425979;
  width: calc(100% - 80px);
  height: calc(100% - 40px);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

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

.bg-gray {
  position: relative;
  background: rgba(240, 239, 236, 0.7);
}

.bg-gray.bg-half {
  position: relative;
  margin-bottom: 40px;
  background: transparent;
}

.bg-gray.bg-half:after {
  position: absolute;
  content: "";
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: calc(100% - 60px);
  height: 60%;
  bottom: 0;
  background: #edf1ef;
  opacity: 0.7;
  z-index: -2;
}

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

.bg-beige {
  background: rgba(252, 250, 240, 0.8);
}

.bg-beige2 {
  background: rgba(252, 250, 240, 0.8);
  max-width: calc(100% - 50px);
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
  margin-bottom: 50px;
}

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

@media all and (max-width: 639px) {
  .bg-beige2 {
    border-radius: 10px;
  }
}

/* tbl
----------------------------------*/
.tbl {
  width: 100%;
}

.tbl th,
.tbl td {
  padding: 15px;
  vertical-align: middle;
  border: 1px solid rgba(51, 51, 51, 0.5);
}

.tbl th {
  background: rgba(66, 89, 121, 0.5);
  color: #fefefe;
}

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

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

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

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

@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-border {
  width: 100%;
}

.tbl-border th,
.tbl-border td {
  padding: 15px;
  vertical-align: middle;
  border-bottom: 2px solid #eee;
}

.tbl-border th {
  width: 20%;
  text-align: left;
  color: #425979;
  border-bottom-color: #54719a;
}

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

.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: #333;
  color: #8ad4b1;
  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: #333;
  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;
}

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

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

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

.tbl0 th.red {
  color: #e4818a;
}

.tbl0 th.blue {
  color: #63b6af;
}

.tbl0 td {
  font-weight: 500;
  color: #273548;
}

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

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

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin-bottom: 10px;
}

.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/* list
----------------------------------*/
.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: #425979;
  color: #fff;
  border-radius: 100px;
  line-height: 30px;
  text-align: center;
  font-weight: bold;
  display: inline-block;
  margin-right: 10px;
}

.list_check li {
  padding-bottom: 8px;
  font-weight: bold;
}

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

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

.list_check li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: bold;
  margin-right: 8px;
  color: #ebde9b;
}

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

.list_check2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 10px;
  background: #fefefe;
}

.list_check2 li {
  width: 48%;
  padding: 5px;
  margin-bottom: 5px;
  margin-right: 4%;
}

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

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

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

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

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

.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: #425979;
  position: absolute;
  width: 2em;
  height: 2em;
  text-align: center;
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, 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;
  }
}

.list-type1 li {
  display: inline-block;
  padding: 2px 8px;
  margin-right: 10px;
  font-weight: 600;
  letter-spacing: 0.2rem;
  margin-bottom: 10px;
}

.list-type1 li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: bold;
  margin-right: 5px;
  color: #425979;
}

/* blog
----------------------------------*/
.blog-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto;
}

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

.blog-wrap > li {
  width: 31%;
  margin: 0 1% 3%;
  background: #fefefe;
  position: relative;
  padding: 15px;
  border-radius: 20px;
  border: 2px solid #8ad4b1;
}

@media all and (max-width: 800px) {
  .blog-wrap > li {
    width: 48%;
    margin: 0 1% 3%;
  }
}

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

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

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

.blog-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

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

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

.blog-date {
  color: #425979;
  display: block;
  font-size: 13px;
}

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

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

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

.blog-detail {
  padding: 10px;
}

@media all and (max-width: 639px) {
  .blog-detail {
    padding: 10px;
  }
}

.blog-title {
  font-weight: bold;
  margin-bottom: 10px;
  color: #5c4332;
  line-height: 1.5;
}

.blog-txt {
  font-size: 14px;
  line-height: 1.5;
  color: #555;
}

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

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

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

.pages .page_next a,
.pages .page_prev a {
  color: #1e2837;
  padding: 3px 5px;
  background: #fff;
}

@media all and (max-width: 639px) {
  .pages .page_next a,
  .pages .page_prev a {
    display: block;
  }
}

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

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

.round-box {
  border-radius: 20px;
  overflow: hidden;
}

.sentence p + p {
  margin-top: 20px;
}

.color1 {
  color: #425979;
}

.color2 {
  color: #ff9d1d;
}

.color3 {
  color: #5c4332;
}

.num {
  text-align: center;
}

.num a {
  color: #63b6af;
  font-weight: bold;
  font-size: 3.5rem;
}

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

.num a:hover {
  color: #8ad4b1;
}

@media all and (max-width: 639px) {
  .num a {
    font-size: 2.4rem;
  }
}

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

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

.telbnr {
  max-width: 700px;
  margin: 30px auto 30px;
  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;
}

.telbnr li {
  width: 48%;
  border: 3px solid #425979;
  padding: 10px 10px;
  text-align: center;
  border-radius: 30px;
}

.telbnr li a {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  color: #ff9d1d;
}

.telbnr li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: bold;
  margin-right: 5px;
}

.telbnr li a:hover {
  color: #63b6af;
}

.telbnr li:last-of-type {
  margin-left: 4%;
}

@media all and (max-width: 639px) {
  .telbnr {
    max-width: 90%;
  }
  .telbnr li {
    width: 100%;
    margin: 0 auto 30px;
  }
  .telbnr li:last-of-type {
    margin-left: auto;
  }
  .telbnr li a {
    font-size: 2rem;
  }
}

.telbnr-ttl {
  font-weight: 700;
  font-size: 1.8rem;
  color: #5c4332;
  margin-top: -30px;
}

.telbnr-ttl span {
  background: #f9f9f9;
  padding: 0 20px;
}

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

/* breadcrumb
----------------------------------*/
.breadcrumb {
  max-width: 1200px;
  margin: 20px auto 30px;
  font-size: 12px;
  font-weight: 400;
  position: relative;
  z-index: 5;
}

.breadcrumb li {
  display: inline;
  color: #5c4332;
}

.breadcrumb li a {
  color: #425979;
}

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

/* form
----------------------------------*/

.order_form .form-pattern-1 {
  background: transparent;
}
.order_form .form-contents form dl .form_top dt:not(.pattern-exclusion) {
  width: 10em;
  padding: 5px 0px;
  line-height: 1.3;
  color: #fff;
  text-align: center;
  margin: 2px 0 0;
}
.order_form .form-contents form dl .form_top dd:not(.pattern-exclusion) {
 padding-left: 11em;
 padding-top: 5px;
 padding-bottom: 10px;
 line-height: 1.6;
 border-bottom: dotted 1px #aaa;
 margin: 5px 0;
}
.order_form .form-contents .form_bottom dt:not(.pattern-exclusion) {
  width: 280px;
  padding-right: 0;
  text-align: left;
}
.order_form .form-contents .form_bottom dd:not(.pattern-exclusion) {
  padding-left: 280px;
}
.order_form .form-contents dt:not(.pattern-exclusion) {
  width: 40%;
  padding-right: 40px;
  text-align: right;
}
.order_form .form-contents dd:not(.pattern-exclusion) {
  padding-left: 40%;
}
.order_form .form-contents dd:not(.pattern-exclusion):last-child {
  border-bottom: none;
}
.order_form .form-contents .form_bottom dd:not(.pattern-exclusion) .textarea {
  width: 100%;
}

.order_form .form-contents dd:not(.pattern-exclusion) .textarea {
  width: 50%;
}
.form {
  margin: 0 auto;
  width: 90%;
}

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

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

.form dl dt span.nini {
  background-color: #ddd;
  color: #333;
}

.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: 0;
  padding: 15px;
  background: #f3f3f3;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
  font-family: "Zen Maru Gothic", sans-serif;
}

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

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

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

.order_form .form-contents form dl {
  margin-bottom: 0;
}

.form button,
.order_form .form-pattern-1 .submit-btn {
  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: #425979;
  border: 1px solid #425979;
  border-radius: 25px;
  color: #fff;
}

.form button:hover,
.order_form .form-pattern-1 .submit-btn:hover {
  background: #fff;
  color: #425979;
}

.order_form .form-pattern-1 .submit-btn::before {
  transition: all .2s ease-in-out 0s;
}

.order_form .form-pattern-1 .submit-btn:hover::before {
  background: #425979;
}

.form button:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: bold;
  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: #425979;
}

.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: #425979;
  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 #425979;
  border-bottom: 3px solid #425979;
  -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;
}

.form input[type="text"],
.form textarea {
  font-size: 16px;
}

@media all and (max-width: 639px) {
  .form input[type="text"],
  .form textarea {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    margin-left: -5px;
  }
}

.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(252, 250, 240, 0.5);
  background: url(../img/bg01.jpg);
  padding: 15px;
}

.thanks {
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
  background: #fefefe;
  border: 4px double #304158;
}

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

.policy {
  padding: 20px;
  background: #f0f0f0;
  margin-top: 40px;
}

.mtitle_small {
  position: relative;
  font-size: 1.7rem;
  color: #425979;
  margin-bottom: 20px;
}

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

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

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

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

/* gallery(photobox)
----------------------------------*/
.gallery_ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 30px;
}

.gallery_ul li {
  margin: 0 2% 2.5% 0;
  width: 32%;
}

.gallery_ul li:nth-child(3n) {
  margin: 0 0 2.5% 0;
}

.gallery_ul li .photobox-wrap {
  width: 100%;
  height: 350px;
  text-align: center;
  overflow: hidden;
  background: rgba(138, 212, 177, 0.1);
  margin-bottom: 8px;
}

.gallery_ul li .photobox-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain;";
  /*IE対策*/
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}

@media all and (max-width: 639px) {
  .gallery_ul li .photobox-wrap {
    height: 280px;
  }
}

/* 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 li {
  width: 32%;
  margin-right: calc(1.5% + (1.5% / 4));
  margin-bottom: 30px;
}

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

.gallery li a {
  background: rgba(0, 0, 0, 0.3);
  display: block;
  text-align: center;
  padding: 0px;
  height: 270px;
  overflow: hidden;
  border-radius: 10px;
}

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

@media all and (max-width: 1024px) {
  .gallery li {
    width: 24%;
    margin-right: calc(1% + (1% / 3));
  }
  .gallery li:nth-child(3n) {
    margin-right: calc(1% + (1% / 3));
  }
  .gallery li a {
    height: 200px;
  }
}

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

@media all and (max-width: 639px) {
  .gallery li {
    width: 48%;
    margin: 0 4% 30px 0;
  }
  .gallery li:nth-child(3n) {
    margin: 0 4% 30px 0;
  }
  .gallery li:nth-child(2n) {
    margin-right: 0;
  }
  .gallery li a {
    height: 165px;
  }
  .gallery li p {
    font-size: 1.1rem;
  }
}

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

.list2.ai-c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.list2 > li,
.list2 .child {
  width: 48%;
  margin: 0 4% 30px 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 > li.order,
.list2 .child.order {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

@media all and (max-width: 639px) {
  .list2 > li.order,
  .list2 .child.order {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}

.list2.type1 .child {
  overflow: hidden;
  background: #f0f0f0;
  border-radius: 20px;
}

.list2.type1 .child .inner {
  padding: 15px;
}

.title-bg {
  background: #65c698;
  color: #fefefe;
  text-align: center;
  padding: 8px 5px;
  font-weight: 600;
  font-size: 1.7rem;
}

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

.list3 > li {
  width: 31%;
  margin: 0 3% 15px 0;
}

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

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

.list4 li {
  width: 23%;
  margin: 0 2.5% 20px 0;
}

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

@media all and (max-width: 800px) {
  .list4 {
    max-width: 600px;
  }
  .list4 li {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 20px;
    text-align: center;
  }
  .list4 li img {
    width: 100%;
  }
  .list4 li:nth-child(2n) {
    margin-right: 0;
  }
}

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

.note {
  padding: 15px;
  margin-top: 10px;
  font-size: 12px;
  background: rgba(252, 250, 240, 0.6);
}

.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 {
  background: #ff9d1d;
  font-size: 3rem;
  color: #fff;
  width: 80px;
  text-align: center;
  margin-right: 20px;
  height: 80px;
  padding-top: 10px;
  border-radius: 100%;
  font-family: "Caveat", cursive;
  font-weight: 400;
}

.flow-dl dt span {
  font-size: 1.5rem;
  display: block;
  margin-bottom: -16px;
}

@media all and (max-width: 639px) {
  .flow-dl dt {
    width: 60px;
    height: 60px;
    font-size: 2.2rem;
    padding-top: 6px;
  }
  .flow-dl dt span {
    font-size: 1.3rem;
  }
}

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

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

@media all and (max-width: 639px) {
  .flow-dl dd {
    width: calc(100% - 95px);
  }
}

.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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.blog-month ul li {
  background: #fefefe;
  width: 48%;
  padding: 3px 0;
  margin-bottom: 5px;
  font-size: 12px;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 5px;
  /*
			&:nth-child(even) {
				margin-left: 1%;
			}*/
}

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

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

.menu-list {
  margin-bottom: 30px;
}

.menu-list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 4px;
}

.menu-list > li p {
  display: inline-block;
  line-height: 1.5;
}

.menu-list > li:before {
  background: radial-gradient(#aaa 20%, transparent 0) center center/8px 8px;
  content: "";
  display: inline-block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 4px;
  margin: 0 1.2em;
}

@media all and (max-width: 639px) {
  .menu-list > li:before {
    margin: 0 5px;
  }
}

.menu-list > li .left {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  max-width: 60%;
}

.menu-list > li .left .small {
  color: #8ad4b1;
  padding-left: 5px;
  display: block;
}

.menu-list > li .left .small:before {
  content: "[";
}

.menu-list > li .left .small:after {
  content: "]";
}

@media all and (max-width: 639px) {
  .menu-list > li .left {
    max-width: 65%;
  }
}

.menu-list > li .right {
  max-width: 35%;
  text-align: right;
}

.price {
  font-weight: bold;
  color: #6ebeb3;
  padding: 8px;
}

.price2 {
  text-align: center;
  margin: 8px 0;
}

.price2 span {
  font-weight: 600;
  color: #8ad4b1;
  font-size: 1.1em;
}

.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:not(:last-of-type) {
  margin-bottom: 20px;
}

.faq-dl dt,
.faq-dl dd {
  padding: 15px 15px 15px 60px;
  position: relative;
  width: 98%;
}

.faq-dl dt:before,
.faq-dl dd:before {
  position: absolute;
  font-size: 3rem;
  font-weight: 700;
  left: 15px;
  top: 0;
}

@media all and (max-width: 639px) {
  .faq-dl dt,
  .faq-dl dd {
    padding: 10px 10px 10px 50px;
  }
  .faq-dl dt:before,
  .faq-dl dd:before {
    font-size: 2rem;
  }
}

.faq-dl dt {
  background: #8ad4b1;
  margin-bottom: 10px;
  line-height: 1.5;
  font-weight: 600;
  color: #fefefe;
}

.faq-dl dt:before {
  content: "Q.";
  color: #6ebeb3;
}

.faq-dl dd {
  margin-left: auto;
  border-radius: 5px 0 5px 0;
}

.faq-dl dd:before {
  content: "A.";
  color: #ff9d1d;
}

.faq-dl dd:not(:last-child) {
  margin-bottom: 50px;
}

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

.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(138, 212, 177, 0.3);
  padding: 10px;
  border-radius: 10px;
}

.iframe {
  -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}

.frames {
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding: 6px;
}

.frames:before, .frames:after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 85px;
  height: 50px;
  background: #fff;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}

.frames:before {
  -webkit-box-shadow: 0 10px 8px -12px rgba(92, 67, 50, 0.6);
          box-shadow: 0 10px 8px -12px rgba(92, 67, 50, 0.6);
  top: -24px;
  bottom: auto;
  right: auto;
  left: -26px;
}

.frames:after {
  -webkit-box-shadow: 0 -10px 10px -10px rgba(92, 67, 50, 0.4);
          box-shadow: 0 -10px 10px -10px rgba(92, 67, 50, 0.4);
  top: auto;
  bottom: -22px;
  right: -25px;
  left: auto;
}

.feature-list li {
  padding: 4px 4px 4px 8px;
  font-weight: 600;
  margin-bottom: 8px;
  background: #f0f0f0;
}

.feature-list li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: bold;
  margin-right: 5px;
  color: #425979;
}

/* vertical contents
----------------------------------*/
.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";
  font-size: 1.8rem;
  font-weight: 600;
  color: #555;
}

.mtitle-vertical span {
  display: block;
  font-size: 4rem;
  font-family: "Caveat", cursive;
  font-weight: 400;
  color: #425979;
}

@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.5rem;
  }
}

.vertical-box {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media all and (max-width: 639px) {
  .vertical-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.vertical-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 10%;
}

@media all and (max-width: 639px) {
  .vertical-content {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    margin: 15px 0 0;
  }
}

.link-txt {
  font-weight: 600;
  border-bottom: 1px dashed #5c4332;
  color: #5c4332;
}

.lead01 {
  text-align: center;
  line-height: 1.4;
  font-weight: 600;
  font-size: 1.1em;
  margin-bottom: 15px;
}

.lead01 span {
  font-family: "Caveat", cursive;
  font-weight: normal;
  color: #425979;
  font-size: 3rem;
  display: block;
}

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

.title01 {
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-size: 2.2rem;
  color: #5c4332;
  padding-left: 20px;
  margin-bottom: 20px;
  position: relative;
}

.title01:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 3px;
  top: 50%;
  left: 0;
  background: #8ad4b1;
  margin-top: -1.5px;
}

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

.box1 {
  background: url(../img/body_bg.png);
  padding: 25px;
}

.box1 + .box1 {
  margin-top: 30px;
}

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

.item-txt {
  line-height: 2;
  color: #5c4332;
  margin-bottom: 40px;
}

@media all and (max-width: 639px) {
  .item-txt {
    padding: 0 15px;
    text-align: left;
  }
}

.link-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-top: -15px;
}

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

.link-list li {
  width: 15%;
  margin-top: 15px;
  border: 1px solid #f0f0f0;
  background: #fff;
  padding: 4px 0;
}

.link-list li img {
  width: 100%;
}

@media all and (max-width: 639px) {
  .link-list li {
    width: 31%;
  }
}

.photo-before,
.photo-after {
  position: relative;
}

.photo-before > a,
.photo-after > a {
  display: block;
  position: relative;
  overflow: hidden;
  border: 3px solid #fefefe;
  -webkit-box-shadow: 0 0 4px rgba(92, 67, 50, 0.1);
          box-shadow: 0 0 4px rgba(92, 67, 50, 0.1);
}

.photo-before > a img,
.photo-after > a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

body.ie .photo-before, body.ie
.photo-after {
  text-align: center;
}

body.ie .photo-before > a img, body.ie
.photo-after > a img {
  position: absolute;
  width: auto;
  height: auto;
  margin: 0 auto;
  top: 50%;
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.photo-before {
  margin-bottom: 60px;
}

.photo-before > a {
  width: 90%;
  height: 220px;
}

.photo-before:after {
  position: absolute;
  left: 30px;
  bottom: -60px;
  font-family: "Font Awesome 5 Free";
  content: "\f078";
  font-weight: bold;
  color: #aaa;
  z-index: 2;
  font-size: 3rem;
}

@media all and (max-width: 639px) {
  .photo-before {
    margin-bottom: 40px;
  }
  .photo-before > a {
    width: 90%;
    height: 180px;
  }
  .photo-before:after {
    font-size: 2rem;
    bottom: -40px;
  }
}

.photo-after {
  margin-bottom: 25px;
}

.photo-after > a {
  width: 90%;
  height: 300px;
  margin: 0 auto;
}

@media all and (max-width: 639px) {
  .photo-after > a {
    width: 100%;
    height: 220px;
  }
}

.works-title {
  position: absolute;
  left: -10px;
  bottom: 20px;
  color: #fefefe;
  padding: 4px 15px;
  -webkit-box-shadow: 0 0 8px rgba(92, 67, 50, 0.2);
          box-shadow: 0 0 8px rgba(92, 67, 50, 0.2);
  text-transform: capitalize;
  z-index: 2;
  font-family: "Caveat", cursive;
  font-weight: 400;
}

.works-title.title-before {
  background: rgba(99, 182, 175, 0.8);
}

.works-title.title-after {
  background: rgba(255, 157, 29, 0.8);
}

.box-line {
  background-image: -webkit-gradient(linear, left top, right top, from(#5c4332), color-stop(30%, #5c4332), color-stop(30%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0))), -webkit-gradient(linear, left top, right top, from(#5c4332), color-stop(30%, #5c4332), color-stop(30%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0))), -webkit-gradient(linear, left top, left bottom, from(#5c4332), color-stop(30%, #5c4332), color-stop(30%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0))), -webkit-gradient(linear, left top, left bottom, from(#5c4332), color-stop(30%, #5c4332), color-stop(30%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, #5c4332, #5c4332 30%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 100%), linear-gradient(to right, #5c4332, #5c4332 30%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 100%), linear-gradient(to bottom, #5c4332, #5c4332 30%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 100%), linear-gradient(to bottom, #5c4332, #5c4332 30%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 100%);
  background-size: 8px 1px, 8px 1px, 1px 8px, 1px 8px;
  background-position: left top, left bottom, left top, right top;
  background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
  padding: 25px;
  max-width: 800px;
  margin: 0 auto 40px;
  position: relative;
}

.box-line:before {
  position: absolute;
  content: "";
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  top: 50%;
  left: 50%;
  background: #63b6af;
  z-index: -1;
  opacity: 0.1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media all and (max-width: 639px) {
  .box-line {
    max-width: 95%;
    padding: 15px;
  }
}

.diary-head {
  max-width: 800px;
  margin: 0 auto 20px;
  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;
  padding: 0 10px;
}

.diary-head .diary-img {
  width: 240px;
  margin-right: 25px;
}

.diary-head .diary-txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 2;
  color: #5c4332;
}

@media all and (max-width: 639px) {
  .diary-head {
    -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;
  }
  .diary-head .diary-img {
    width: 160px;
    margin: 0 auto 10px;
  }
  .diary-head .diary-txt {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    padding: 0 10px;
    font-size: 1rem;
  }
}

.jigyou {
  max-width: 500px;
  margin: 25px auto 0;
}

/* slide_list
----------------------------------*/
.slide_list {
  position: relative;
  display: none;
}

.slide_list li {
  margin-right: 1%;
  width: 250px;
}

.slide_list li img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

.slide_list li table, .slide_list li p {
  display: none;
}

@media all and (max-width: 639px) {
  .slide_list li img {
    height: 180px;
  }
}

.bnr-img img:hover {
  opacity: .5;
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.img-jh {
  width: 300px;
  overflow: hidden;
}

.img-jh img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

.img-jh.contain img {
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain;";
}

.img-jh.long img {
  height: 800px;
  -o-object-position: 80% 50%;
     object-position: 80% 50%;
}

.img-jh.noml img {
  height: 450px;
}

.img-jh.noml2 img {
  height: 530px;
  -o-object-position: 90% 50%;
     object-position: 90% 50%;
}

.img-jh.min img {
  height: 320px;
}

.img-jh.min2 img {
  height: 200px;
}

.img-jh.w-min {
  width: 100%;
}

.img-jh.w-min img {
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

@media all and (max-width: 800px) {
  .img-jh {
    width: 100%;
    padding-bottom: 10px;
  }
  .img-jh img {
    height: 250px;
    -o-object-position: 50% 60%;
       object-position: 50% 60%;
  }
  .img-jh.long img, .img-jh.noml img, .img-jh.min img, .img-jh.min2 img, .img-jh.w-min img, .img-jh.noml2 img {
    height: 200px;
    -o-object-position: 50% 60%;
       object-position: 50% 60%;
  }
}

.letter_img figure {
  margin-right: 32px;
}

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

.letter_img_r figure {
  margin-left: 32px;
}

.letter_img,
.letter_img_r {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 16px;
  margin-bottom: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.letter_img figure,
.letter_img_r figure {
  /* 画像の説明文 */
}

.letter_img figure img,
.letter_img_r figure img {
  width: 500px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

.letter_img figure figcaption,
.letter_img_r figure figcaption {
  text-align: left;
  font-size: 1.3rem;
  margin-top: 15px;
}

.letter_img .info,
.letter_img_r .info {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  height: 100%;
  position: relative;
  max-width: 350px;
}

.letter_img .info .bottom,
.letter_img_r .info .bottom {
  position: absolute;
  bottom: -160px;
  left: 0;
  right: 0;
}

@media all and (max-width: 800px) {
  .letter_img,
  .letter_img_r {
    display: block;
  }
  .letter_img figure,
  .letter_img_r figure {
    margin: 0 auto;
    text-align: center;
  }
  .letter_img figure img,
  .letter_img_r figure img {
    width: auto;
  }
  .letter_img .info,
  .letter_img_r .info {
    -webkit-box-flex: 2;
        -ms-flex-positive: 2;
            flex-grow: 2;
    height: 100%;
    position: static;
    padding: 16px;
  }
  .letter_img .info .bottom,
  .letter_img_r .info .bottom {
    position: static;
    bottom: auto;
    left: 0;
    right: 0;
  }
}

.frame {
  padding: 32px;
  background-color: #fff;
}

.frame h2,
.frame p {
  text-align: justify;
  text-justify: inter-ideograph;
}

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

.dl_list {
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
  font-weight: 500;
}

.dl_list dt {
  float: left;
  width: 10em;
  background: #425979;
  padding: 5px 0px;
  line-height: 1.3;
  color: #fff;
  text-align: center;
  margin: 2px 0 0;
}

.dl_list dd {
  padding-left: 11em;
  padding-top: 5px;
  padding-bottom: 10px;
  line-height: 1.6;
  border-bottom: dotted 1px #aaa;
  margin: 5px 0;
}

.dl_list dd:last-child {
  border-bottom: 0px;
}

@media all and (max-width: 800px) {
  .dl_list dt {
    float: none;
    width: 100%;
    margin: 2px 0 0;
  }
  .dl_list dd {
    padding-left: 0;
    padding-top: 5px;
    padding-bottom: 5px;
    margin: 5px 0;
  }
}

.dl_list.small dt {
  width: 5em;
}

.dl_list.small dd {
  padding-left: 5.5em;
}

.total_bx {
  text-align: center;
  background-color: #fff;
  padding: 16px 0;
  margin-bottom: 50px;
  margin-top: 50px;
}

input#total {
  border: 0px solid #f5f5f5;
  font-size: 2rem;
  width: 8em;
  color: #425979;
  background: #f5f5f5;
  text-align: right;
  padding: 10px;
  margin: 5px;
  font-family: "Zen Maru Gothic", sans-serif;
}

.mtitle_line {
  font-size: 2rem;
  padding-bottom: 15px;
  background: url(../img/stripe.png) repeat-x left bottom/5px auto;
  margin-bottom: 20px;
  letter-spacing: 0.2rem;
  color: #425979;
  font-weight: 600;
}

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

.tcen {
  text-align: center;
}

@media all and (max-width: 639px) {
  .tcen {
    text-align: left;
  }
}


 .list2 > .item01{
      width: 100%;
    max-width: 600px;
    margin: 0 auto !important;
 }


.swiper {
  position: relative;
  padding-bottom: 30px; /* ← ドット分の余白を下に追加 */
}

.swiper-pagination {
   position: static; /* ← これがポイント！絶対配置をやめる */
  margin-top: 10px; /* ← 画像とドットの間に余白をつけたい場合 */
  text-align: center;
}
 .swiper-pagination-bullet {
  background: #666;     /* ドットの色 */
  opacity: 1;
  width: 10px;
  height: 10px;
  margin: 0 4px;
}

.swiper-horizontal>.swiper-pagination-bullets, 
.swiper-pagination-bullets.swiper-pagination-horizontal, 
.swiper-pagination-custom, .swiper-pagination-fraction{
  bottom: var(--swiper-pagination-bottom, 0px) !important;
}
.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: #ffffffb8 !important;
}