@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500&family=Poppins:wght@100;200;300;400;500;600;700&family=Zen+Kaku+Gothic+New:wght@300;400;500;700&family=Zen+Maru+Gothic:wght@300;400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Varela+Round&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@500&display=swap");
/**
  @align-height
--------------------------------------------------------
@include align-height(); in your CSS
--------------------------------------------------------- */
/**
  @bgimg.scss bgimg 
--------------------------------------------------------
  Use @include bgimg(); in your CSS
--------------------------------------------------------- */
/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
body {
  color: #5e3816;
  background: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif, "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;
  font-weight: 600;
  position: relative;
  letter-spacing: 0.1em;
}

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

#wrapper {
  overflow: hidden;
}

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

.bold {
  font-weight: 600;
}

em {
  font-style: normal;
}

h2,
h3 {
  line-height: 1.4;
}

h2 .ja,
h3 .ja {
  font-weight: 600;
}

.title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
}

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

.border-line {
  display: block;
  border-top: 2px dashed #b5e5ff;
  margin: 35px 0;
}

/* 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: #fffbe5;
  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;
  -webkit-perspective: 100px;
          perspective: 100px;
  width: 100%;
  height: 100vh;
}

.loader::after {
  -webkit-animation: loader 2.5s linear infinite;
          animation: loader 2.5s linear infinite;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -50px;
  margin-left: -50px;
  border: 1px solid #ef9200;
  border-radius: 50%;
  border-right: 1px solid rgba(239, 146, 0, 0.2);
  border-top: 1px solid rgba(239, 146, 0, 0.2);
}

.loader.off {
  display: none;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}

@-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 {
  z-index: 200;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

#l-header.is-fixed {
  position: fixed;
  background: #fff;
}

@media all and (max-width: 896px) {
  #l-header {
    background: transparent;
  }
}

#l-header .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1200px;
  min-width: 1000px;
  margin: 0 auto;
  padding: 10px 0 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}

@media all and (max-width: 896px) {
  #l-header .inner {
    min-width: initial;
    position: fixed;
    width: 100%;
  }
}

@media all and (max-width: 639px) {
  #l-header .inner {
    padding: 5px 0 5px;
  }
}

#l-header .inner #logo {
  width: 360px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

@media all and (max-width: 1100px) {
  #l-header .inner #logo {
    width: 260px;
  }
}

#l-header .head-right {
  margin-left: auto;
  margin-right: 5px;
  /*@include for-size(tablet) {
   display: none;
  }*/
}

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

@media all and (max-width: 896px) {
  #l-header .head-right_contact {
    float: right;
  }
}

#l-header .head-right_contact > p:not(:last-of-type) {
  margin-right: 10px;
}

#l-header .head-txt {
  /*
  position: absolute;
  right: 10px;
  top: 5px; */
  font-size: 12px;
  color: #5e3816;
  letter-spacing: 0;
  text-align: right;
}

#l-header .head-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#l-header .head-list li {
  width: 190px;
  margin-left: 10px;
}

#l-header .head-list li a {
  font-size: 1.3rem;
  letter-spacing: 0;
  padding: 3px 0;
}

#l-header .head-btn a {
  padding: 4px 15px;
  display: block;
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
}

#l-header .head-btn a i {
  display: inline-block;
  margin-right: 5px;
}

#l-header .head-btn.instagram a {
  background: linear-gradient(135deg, #427eff 0%, #f13f79 40%, #FD6735 85%, #ffdb2c 100%) no-repeat !important;
  color: #fff;
}

#l-header .head-btn.instagram a:before {
  font-family: "Font Awesome 5 Brands";
  content: "\f16d";
  margin-right: 5px;
}

#l-header .head-btn.head-right_access {
  margin: 0 8px;
}

@media all and (max-width: 896px) {
  #l-header .head-btn.head-right_access {
    display: none;
  }
}

#l-header .head-btn.head-right_access a {
  background: #ef9200;
}

#l-header .head-btn.head-right_access a:hover {
  color: #eeb51c;
}

@media all and (max-width: 896px) {
  #l-header .head-btn.head-right_reserve {
    padding-top: 8px;
  }
}

@media all and (max-width: 639px) {
  #l-header .head-btn.head-right_reserve {
    padding-top: 3px;
  }
}

#l-header .head-btn.head-right_reserve a {
  background: #ef9200;
}

@media all and (max-width: 639px) {
  #l-header .head-btn.head-right_reserve a {
    font-size: 1.2rem;
  }
}

#l-header .head-btn.head-right_reserve a:hover {
  color: #eeb51c;
}

#l-header .head-right_txt {
  font-size: 13px;
  letter-spacing: 0;
  padding: 3px 8px;
  background: #eeb51c;
  color: #333;
}

#l-header .head-right_tel a,
#l-header .head-right_mail a {
  display: block;
  padding: 4px 15px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  background: #111;
  color: #fff;
  font-size: 1.4rem;
}

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

@media all and (max-width: 896px) {
  #l-header .head-right_tel {
    display: none;
  }
}

#l-header .head-right_tel a {
  background: transparent;
  padding: 0 15px;
  color: #ef9200;
  border-radius: 40px;
  width: auto;
  height: auto;
  font-weight: 600;
  font-size: 2.6rem;
  position: relative;
  font-family: "Varela Round", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1rem;
}

#l-header .head-right_tel a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  font-size: 1.6rem;
}

#l-header .head-right_tel a:hover {
  color: #eeb51c;
}

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

#l-header .head-right_mail a {
  font-family: "Varela Round", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1rem;
  color: #fefefe;
  background: #ef9200;
}

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

#l-header .head-right_mail a:hover {
  background: #eeb51c;
}

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

#l-header .btn-reserve a {
  display: block;
  width: 70px;
  height: 60px;
  padding: 8px 0;
  text-align: center;
  background: #111;
  color: #fff;
  -webkit-transition: background 0.2s cubic-bezier(0.26, 0.06, 0, 1);
  transition: background 0.2s cubic-bezier(0.26, 0.06, 0, 1);
}

#l-header .btn-reserve a i {
  font-size: 2.2rem;
}

#l-header .btn-reserve a span {
  font-weight: bold;
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0;
}

#l-header .btn-reserve a:hover {
  background: #eeb51c;
}

#header_nav {
  position: relative;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  width: 100%;
  position: relative;
  z-index: 200;
  margin: -10px auto 30px;
}

#header_nav.is-fixed {
  position: fixed;
  left: 0;
  top: 10px;
  margin: 0 auto;
}

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

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

#header_nav ul li:first-child a {
  border-radius: 50px 0 0 50px;
}

#header_nav ul li:last-child a {
  border-radius: 0 50px 50px 0;
}

#header_nav ul li.instagram {
  display: none;
}

#header_nav ul li a {
  display: block;
  letter-spacing: 0;
  position: relative;
  font-size: 1.4rem;
  background: #fff;
  color: #222;
  font-weight: 600;
  padding: 9px 0;
}

#header_nav ul li a img {
  display: block;
  width: 50px;
  margin: 0 auto 4px;
}

#header_nav ul li a span {
  display: block;
  font-size: 1.3rem;
  font-family: "Varela Round", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1rem;
  color: #ef9200;
  position: relative;
  line-height: 1;
}

#header_nav ul li a:hover, #header_nav ul li a.active {
  background: #F0F8FA;
}

#header_nav .dropdown {
  display: none;
  position: absolute;
  left: 0;
  top: 55px;
  z-index: 999;
  padding-top: 30px;
}

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

#header_nav .dropdown .dropdown-li a {
  display: block;
  width: 180px;
  padding: 8px;
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
  color: #fff;
  border-radius: 0;
  background: #ef9200;
}

#header_nav .dropdown .dropdown-li a:hover {
  color: #eeb51c;
}

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

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

#page-top a {
  display: block;
  background: #eeb51c;
  color: #fff;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  text-align: center;
}

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

@media all and (max-width: 896px) {
  #page-top {
    display: none;
  }
}

/* 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);
  }
}

/* canvas
----------------------------------*/
#canvas-container {
  position: absolute;
  z-index: 20;
  left: 0;
  bottom: -10px;
}

@media all and (max-width: 639px) {
  #canvas-container #sineCanvas {
    height: 70px;
    width: 100%;
  }
}

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

.swiper-slide {
  position: relative;
}

.swiper-slide:before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  right: 0;
  top: 0;
  background-position: 50%;
  background-size: cover;
  z-index: -1;
}

.swiper-slide.slide1:before {
  background-image: url(../img/1.jpg);
  background-position: 60% 50%;
}

.swiper-slide.slide2:before {
  background-image: url(../img/2.jpg);
  background-position: 50% 50%;
}

.swiper-slide.slide3:before {
  background-image: url(../img/3.jpg);
  background-position: 90% 50%;
}

.slide-img {
  overflow: hidden;
  width: 100%;
  height: 100vh;
}

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

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

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

#slideshow {
  position: relative;
}

.bx-viewport img {
  height: 90vh;
}

@media all and (max-width: 1100px) {
  .bx-viewport img {
    height: 60vh;
  }
}

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

#catch {
  z-index: 50;
  position: absolute;
  left: 50%;
  bottom: 50%;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  width: 700px;
  -webkit-transition: opacity 2s cubic-bezier(0.18, 0.06, 0.23, 1);
  transition: opacity 2s cubic-bezier(0.18, 0.06, 0.23, 1);
  opacity: 0;
}

#catch.on {
  opacity: 1;
}

@media all and (max-width: 1367px) {
  #catch {
    width: 500px;
  }
}

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

@media screen and (max-width: 890px) and (orientation: landscape) {
  #catch {
    width: 50%;
  }
}

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

.catch2 {
  position: absolute;
  right: 2%;
  bottom: 2%;
  -webkit-transition: opacity 2s cubic-bezier(0.18, 0.06, 0.23, 1);
  transition: opacity 2s cubic-bezier(0.18, 0.06, 0.23, 1);
  opacity: 0;
  width: 300px;
}

.catch2.on {
  opacity: 1;
}

@media all and (max-width: 1100px) {
  .catch2 {
    width: 20%;
  }
}

.kumo {
  position: absolute;
  bottom: 0px;
  left: -1230px;
  right: 0;
  width: 4000px;
  height: 99px;
  margin: auto;
  background-image: url("../img/deco01.png");
  background-position: bottom center;
  background-repeat: repeat;
  content: "";
  z-index: 9;
}

@media all and (max-width: 1100px) {
  .kumo {
    bottom: -1px;
  }
}

.kumo2 {
  position: absolute;
  bottom: -99px;
  left: -1230px;
  right: 0;
  width: 4000px;
  height: 99px;
  margin: auto;
  background-image: url("../img/deco01.png");
  background-position: bottom center;
  background-repeat: repeat;
  -webkit-transform: rotateX(200grad);
          transform: rotateX(200grad);
  content: "";
  z-index: 9;
}

@media all and (max-width: 1100px) {
  .kumo2 {
    bottom: -84px;
  }
}

.deco01 {
  position: absolute;
  bottom: 15%;
  left: 30px;
  width: 350px;
  height: 400px;
  background: url("../img/deco02.png") no-repeat bottom center/contain;
  content: "";
  z-index: 9;
  -webkit-animation: huwa 1s ease-in-out infinite alternate;
          animation: huwa 1s ease-in-out infinite alternate;
}

@media all and (max-width: 896px) {
  .deco01 {
    bottom: auto;
    top: 0;
    left: 5%;
    width: 150px;
    height: 260px;
    display: none;
  }
}

@media all and (max-width: 639px) {
  .deco01 {
    height: 200px;
    width: 100px;
  }
}

@-webkit-keyframes huwa {
  0% {
    -webkit-transform: translate(0, 0px);
            transform: translate(0, 0px);
  }
  100% {
    -webkit-transform: translate(0, -15px);
            transform: translate(0, -15px);
  }
}

@keyframes huwa {
  0% {
    -webkit-transform: translate(0, 0px);
            transform: translate(0, 0px);
  }
  100% {
    -webkit-transform: translate(0, -15px);
            transform: translate(0, -15px);
  }
}

.deco02 {
  position: absolute;
  bottom: 0%;
  right: 30px;
  width: 350px;
  height: 250px;
  background: url("../img/deco03.png") no-repeat bottom center/contain;
  content: "";
  z-index: 9;
  -webkit-animation: yurayura 2s linear infinite;
          animation: yurayura 2s linear infinite;
}

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

@media all and (max-width: 639px) {
  .deco02 {
    bottom: 0;
    right: 10px;
    width: 220px;
    height: 150px;
  }
}

@-webkit-keyframes yurayura {
  0%,
  100% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  50% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
}

@keyframes yurayura {
  0%,
  100% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  50% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
}

@-webkit-keyframes yurayura2 {
  0%,
  100% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  50% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
}

@keyframes yurayura2 {
  0%,
  100% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  50% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
}

#scrolldown {
  position: absolute;
  right: 15px;
  bottom: 60px;
  color: #fefefe;
  font-family: "Varela Round", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1rem;
  -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.4rem;
  z-index: 100;
  height: 210px;
}

#scrolldown:before, #scrolldown:after {
  position: absolute;
  content: "";
  z-index: 2;
  left: 50%;
}

#scrolldown:before {
  width: 1px;
  height: 100px;
  bottom: 0;
  background: #f0f0f0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

#scrolldown:after {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 100%;
  top: 100px;
  margin-left: -4px;
  -webkit-animation: scroll-point 2.3s ease-out infinite;
          animation: scroll-point 2.3s ease-out infinite;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@media all and (max-width: 896px) {
  #scrolldown {
    display: none;
  }
}

@-webkit-keyframes scroll-point {
  0% {
    bottom: 0;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  50% {
    top: 180px;
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    top: 210px;
    opacity: 0;
  }
}

@keyframes scroll-point {
  0% {
    bottom: 0;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  50% {
    top: 180px;
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    top: 210px;
    opacity: 0;
  }
}

/* contact_bnr
----------------------------------*/
.contact_bnr > li {
  margin-bottom: 8px;
}

.contact_bnr > li a {
  display: block;
  position: relative;
  width: 80%;
  text-align: center;
  margin: 0 auto;
}

@media all and (max-width: 639px) {
  .contact_bnr > li:first-of-type {
    margin-right: 0;
  }
}

.contact_bnr > li .bnr_tel {
  white-space: nowrap;
  position: relative;
  color: #ef9200;
  font-family: "Varela Round", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1rem;
  font-size: 3.6rem;
}

.contact_bnr > li .bnr_tel:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
  font-size: 0.7em;
}

.contact_bnr > li .bnr_tel:hover {
  color: #eeb51c;
  /*color: $orange;*/
  text-shadow: 0 0 4px rgba(94, 56, 22, 0.1);
}

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

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

.contact_bnr > li .bnr_mobile {
  background: #fefefe;
  color: #E8F7FF;
}

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

.contact_bnr > li .bnr_fax {
  background: #fdfdfd;
  color: #ef9200;
}

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

.contact_bnr > li .bnr_mail {
  background: #5e3816;
  /*background: $blue2;*/
  color: #fff;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  border-radius: 50px;
  line-height: 1.4;
  padding: 15px;
}

.contact_bnr > li .bnr_mail:before {
  font-family: "Font Awesome 5 Free";
  content: "\f073";
  font-weight: 900;
  font-size: 0.8em;
  margin-right: 15px;
}

.contact_bnr > li .bnr_mail:hover {
  background: #ef9200;
  /*background: $blue;*/
  color: #fff;
}

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

/* footer
----------------------------------*/
footer {
  position: relative;
}

footer:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background: url(../img/bg-03.jpg) no-repeat center bottom/cover;
}

#l-footer {
  font-size: 1.4rem;
  position: relative;
  width: 100%;
}

#l-footer .inner {
  padding: 60px 20px 40px;
  position: relative;
  z-index: 3;
  max-width: 1100px;
  margin: 0 auto;
}

#l-footer .footer-btn {
  position: absolute;
  right: 20px;
  top: 70px;
  z-index: 2;
}

#l-footer .footer-btn a {
  display: block;
  border: 2px solid #ceae5f;
  background: #fff;
  color: #ef9200;
  font-weight: 600;
  text-align: center;
  padding: 15px 0;
  width: 300px;
}

#l-footer .footer-btn a i {
  color: #ceae5f;
  display: inline-block;
  padding-left: 5px;
}

@media all and (max-width: 639px) {
  #l-footer .footer-btn {
    position: static;
    margin: 20px auto;
    width: 80%;
  }
  #l-footer .footer-btn a {
    width: 100%;
  }
}

#l-footer .footer-column {
  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;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

#l-footer .footer-column .footer-left {
  width: 45%;
}

#l-footer .footer-column .footer-right {
  width: 48%;
}

@media all and (max-width: 639px) {
  #l-footer .footer-column .footer-left,
  #l-footer .footer-column .footer-right {
    width: 100%;
  }
  #l-footer .footer-column .footer-left {
    margin-bottom: 25px;
  }
}

#l-footer .footer-txt {
  padding-left: 8px;
}

#l-footer .footer-txt span {
  background: #ef9200;
  padding: 5px 10px;
  font-size: 13px;
  color: #fefefe;
}

@media all and (max-width: 1100px) {
  #l-footer .footer-column {
    max-width: 80%;
  }
}

@media all and (max-width: 896px) {
  #l-footer .footer-column {
    max-width: 95%;
  }
}

@media all and (max-width: 639px) {
  #l-footer {
    font-size: 1.2rem;
  }
  #l-footer .inner {
    padding: 40px 20px;
  }
  #l-footer .inner .right-inner {
    padding: 8px;
    font-size: 12px;
  }
  #l-footer .footer-column {
    max-width: 100%;
  }
  #l-footer .footer-column .footer-right {
    width: 100%;
  }
}

.footer-reserve {
  margin-bottom: 20px;
}

.footer-reserve a {
  display: block;
  background: #ef9200;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: cernter;
  font-weight: 600;
  height: 100%;
  color: #fff;
  text-align: center;
  margin: 10px auto 0;
  padding: 15px 0 15px;
  font-size: 1.8rem;
  letter-spacing: 0.15rem;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  /*
  &:before {
   position: absolute;
   content: "";
   left: 20px;
   top: 50%;
   width: 120px;
   height: 130%;
   transform: translateY(-50%);
   background: url(../img/logomark.png) no-repeat left/contain;
  }*/
}

.footer-reserve a:hover {
  background: #eeb51c;
}

.footer-reserve01 {
  margin-bottom: 20px;
}

.footer-reserve01 a {
  display: block;
  background: #09B901;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: cernter;
  font-weight: 600;
  height: 100%;
  color: #fff;
  text-align: center;
  margin: 10px auto 0;
  padding: 15px 0 15px;
  font-size: 1.8rem;
  letter-spacing: 0.15rem;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  position: relative;
  overflow: hidden;
}

.footer-reserve01 a:hover {
  background: #eeb51c;
}

/* footer_navi
----------------------------------*/
.footer_navi {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 40px;
  margin: 0 auto;
  max-width: 1000px;
}

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

.footer_navi ul > li {
  margin-bottom: 4px;
  -ms-flex-preferred-size: 18%;
      flex-basis: 18%;
}

.footer_navi ul > li.medical-li {
  -ms-flex-preferred-size: 45%;
      flex-basis: 45%;
}

.footer_navi ul > li > a {
  color: #5e3816;
  font-size: 1.4rem;
  position: relative;
  padding-left: 20px;
  text-align: left;
  display: block;
  font-weight: 600;
}

.footer_navi ul > li > a span {
  display: none;
}

.footer_navi ul > li > a:before {
  position: absolute;
  content: "";
  width: 8px;
  height: 3px;
  top: 50%;
  left: 0;
  margin-top: -2px;
  background: #70F4CD;
}

.footer_navi ul > li > a:hover {
  color: #ef9200;
}

.footer_navi ul > li .dropdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer_navi ul > li .dropdown .dropdown-li {
  width: 33%;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}

.footer_navi ul > li .dropdown .dropdown-li a {
  font-size: 1.2rem;
  color: #A7F478;
}

.footer_navi ul > li .dropdown .dropdown-li a:before {
  display: none;
}

.flogo {
  width: 80%;
  margin: 0 auto 10px;
}

@media all and (max-width: 896px) {
  .flogo {
    text-align: center;
    margin: 0 auto 25px;
  }
}

.address {
  text-align: center;
}

@media all and (max-width: 896px) {
  .address {
    text-align: center;
  }
}

.copyright {
  padding: 20px 0;
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
  color: #fff;
  background: #ef9200;
}

@media all and (max-width: 896px) {
  .copyright {
    font-size: 12px;
    padding: 15px 0 74px;
  }
}

/*----------------------------------
 top-contents
----------------------------------*/
.top-gray-box {
  position: relative;
}

.top-gray-box:before {
  position: absolute;
  content: "";
  z-index: -2;
  width: 80%;
  height: 65%;
  top: 0%;
  left: 0;
  background: url(../img/bg-01.jpg) no-repeat center/cover;
  opacity: 0.5;
}

@media all and (max-width: 639px) {
  .top-gray-box:before {
    width: 75%;
  }
}

.title-big.type1 {
  left: auto;
  right: 20px;
}

@media all and (max-width: 896px) {
  .title-big.type1 {
    right: auto;
    left: 20px;
  }
}

.title-big .eng {
  display: block;
  font-family: "Varela Round", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1rem;
  font-size: 3rem;
  color: #ef9200;
  line-height: 1.2;
}

.title-big .ja {
  display: block;
  color: #5e3816;
  font-size: 1.6rem;
}

@media all and (max-width: 639px) {
  .title-big {
    top: -20px;
  }
  .title-big .eng {
    font-size: 2.4rem;
  }
  .title-big .ja {
    font-size: 1.3rem;
  }
}

.title-big2 {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.title-big2 .eng {
  font-size: 5rem;
  color: #5e3816;
  /*color: $base_color;*/
  font-family: "Varela Round", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1rem;
  line-height: 1.2;
  letter-spacing: 0.15em;
  display: block;
}

.title-big2 .eng:first-letter {
  color: #ef9200;
}

.title-big2 .eng.type1 {
  color: #fff;
}

.title-big2 .eng.type1::first-letter {
  color: #eeb51c;
}

.title-big2 .ja {
  font-size: 2rem;
  color: #5e3816;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.15em;
}

@media all and (max-width: 639px) {
  .title-big2 .eng {
    font-size: 4rem;
  }
  .title-big2 .ja {
    font-size: 1.5rem;
  }
}

.title-big2.white .eng {
  color: #fff;
}

.title-big2.white .ja {
  color: #fff;
}

.title-big3 {
  position: relative;
  text-align: center;
  margin-bottom: -40px;
  z-index: 3;
}

.title-big3 .ja {
  position: relative;
  z-index: 3;
  display: block;
  margin-top: -40px;
  font-size: 2.4rem;
  color: #111;
  letter-spacing: 0.15em;
}

.title-big3 .eng {
  font-size: 10rem;
  font-family: 'Homemade Apple', cursive;
  font-weight: 400;
  color: #eeb51c;
  opacity: 0.6;
}

@media all and (max-width: 639px) {
  .title-big3 {
    margin-bottom: -30px;
  }
  .title-big3 .eng {
    font-size: 6rem;
  }
  .title-big3 .ja {
    font-size: 1.6rem;
    margin-top: -15px;
  }
}

.top-box {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: -80px auto 40px;
  background: #fff;
  border-radius: 20px;
  padding: 50px 30px 30px;
}

@media all and (max-width: 896px) {
  .top-box {
    max-width: 90%;
  }
}

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

.ring {
  padding-top: 35px;
}

.ring:before {
  position: absolute;
  content: "";
  width: calc(100% - 40px);
  height: 20px;
  top: -5px;
  left: 20px;
  background: url(../img/ring.png) repeat-x left top/contain;
  opacity: 0.8;
}

.news-list li {
  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: 4px 4px 6px;
  border-bottom: 0.9px solid #ddd;
}

.news-list li:not(:last-of-type) {
  margin-bottom: 10px;
}

.news-list li .data {
  font-size: 1.2rem;
  color: #111;
  background: #eeb51c;
  letter-spacing: 0;
  padding: 4px 6px;
  /*background: #111;*/
}

@media all and (max-width: 639px) {
  .news-list li .data {
    font-size: 12px;
  }
}

.news-list li .txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 20px;
  line-height: 1.4;
  font-size: 1.4rem;
}

.news-list li .txt a {
  color: #5e3816;
  text-decoration: underline;
}

@media all and (max-width: 896px) {
  .news-list li {
    display: block;
  }
  .news-list li .data {
    display: inline-block;
    font-size: 13px;
    padding: 4px;
  }
  .news-list li .txt {
    margin: 5px 0 0;
    display: block;
    font-size: 1.2rem;
  }
}

.bg-sec2 {
  position: relative;
  padding-top: 150px;
  background: #fefefe;
}

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

@media all and (max-width: 639px) {
  .bg-sec2:before {
    height: 220px;
  }
}

.lead02 {
  letter-spacing: 0.15em;
  font-size: 2.7rem;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  color: #ef9200;
  margin-bottom: 20px;
}

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

.feature-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1200px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
}

.feature-list > li {
  width: calc((100% - 40px) / 3);
  margin-right: 20px;
  margin-bottom: 35px;
  position: relative;
}

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

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

.feature-list > li .feature-inner {
  width: 100%;
  height: 100%;
  background: #fff;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
  -webkit-box-shadow: 5px 5px rgba(239, 146, 0, 0.1);
          box-shadow: 5px 5px rgba(239, 146, 0, 0.1);
}

.feature-list > li figure {
  height: 250px;
}

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

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

.feature-list > li .feature-num {
  display: block;
  position: absolute;
  text-align: center;
  font-size: 6rem;
  font-family: 'Homemade Apple', cursive;
  font-weight: 400;
  color: #eeb51c;
  left: 20px;
  top: -25px;
  z-index: 3;
  border-radius: 50%;
  line-height: 70px;
}

@media all and (max-width: 639px) {
  .feature-list > li .feature-num {
    font-size: 5rem;
  }
}

.feature-list > li .feature-txt {
  position: relative;
  padding: 30px 20px 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

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

.feature-list > li .feature-title {
  font-size: 2rem;
  line-height: 1.6;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  color: #5e3816;
  position: relative;
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  z-index: 3;
  text-align: center;
  padding: 0 20px;
}

.feature-list > li .feature-title span {
  background: #fffbe5;
  padding: 0 3px;
}

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

.feature-list > li:hover .feature-inner {
  background: lemonchiffon;
}

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

.top-title01 {
  max-width: 550px;
  position: relative;
  margin: -40px auto -80px;
  z-index: 30;
}

@media all and (max-width: 896px) {
  .top-title01 {
    margin: -20px auto -40px;
    padding: 0 20px;
  }
}

.top-title02 {
  position: absolute;
  width: 160px;
  right: -10px;
  top: -30px;
  z-index: 3;
}

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

.sec5 {
  position: relative;
}

.sec5:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 55%;
  top: 0;
  left: 0;
  background: #70F4CD;
  opacity: 0.9;
}

@media all and (max-width: 639px) {
  .sec5:before {
    height: 70%;
  }
}

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

.sec5-box .sec5-menu {
  width: 42%;
}

.sec5-box .sec5-icon {
  width: 55%;
}

@media all and (max-width: 896px) {
  .sec5-box .sec5-menu,
  .sec5-box .sec5-icon {
    width: 100%;
  }
  .sec5-box .sec5-icon {
    margin-bottom: 35px;
  }
}

.icon-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

@media all and (max-width: 639px) {
  .icon-list {
    max-width: 90%;
    margin: 0 auto;
  }
}

.icon-list.type1 {
  margin-top: 0;
}

.icon-list li {
  width: 23%;
  margin-bottom: 30px;
  margin-right: calc(2% + (2% / 3));
}

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

.icon-list li a {
  display: block;
  text-align: center;
  font-weight: 600;
  line-height: 1.4;
  height: 100%;
  -webkit-transition: all 0.2s cubic-bezier(0.26, 0.06, 0, 1);
  transition: all 0.2s cubic-bezier(0.26, 0.06, 0, 1);
  position: relative;
  padding: 25px 0;
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.26, 0.06, 0, 1);
  transition: -webkit-transform 0.2s cubic-bezier(0.26, 0.06, 0, 1);
  transition: transform 0.2s cubic-bezier(0.26, 0.06, 0, 1);
  transition: transform 0.2s cubic-bezier(0.26, 0.06, 0, 1), -webkit-transform 0.2s cubic-bezier(0.26, 0.06, 0, 1);
}

@media all and (max-width: 639px) {
  .icon-list li a {
    padding: 18px 0;
  }
}

.icon-list li a figure {
  margin: 0 auto 10px;
  width: 70px;
}

@media all and (max-width: 639px) {
  .icon-list li a figure {
    width: 60px;
    margin-bottom: 10px;
  }
}

.icon-list li a .icon-title {
  color: #5e3816;
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.2s cubic-bezier(0.26, 0.06, 0, 1);
  transition: all 0.2s cubic-bezier(0.26, 0.06, 0, 1);
}

@media all and (max-width: 639px) {
  .icon-list li a .icon-title {
    padding: 12px 5px;
  }
}

.icon-list li a:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: -webkit-gradient(linear, left top, right bottom, from(#fff), to(#fcfcfc));
  background-image: linear-gradient(to right bottom, #fff, #fcfcfc);
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.26, 0.06, 0, 1);
  transition: -webkit-transform 0.2s cubic-bezier(0.26, 0.06, 0, 1);
  transition: transform 0.2s cubic-bezier(0.26, 0.06, 0, 1);
  transition: transform 0.2s cubic-bezier(0.26, 0.06, 0, 1), -webkit-transform 0.2s cubic-bezier(0.26, 0.06, 0, 1);
  z-index: -1;
}

.icon-list li a:hover {
  z-index: 2;
}

.icon-list li a:hover:before {
  -webkit-transform: translate(-50%, -50%) scale(1.07, 1.02);
          transform: translate(-50%, -50%) scale(1.07, 1.02);
  opacity: 1;
}

.icon-list li a:hover .icon-title {
  color: #ef9200;
}

@media all and (max-width: 639px) {
  .icon-list li {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 15px;
  }
  .icon-list li:nth-child(2n) {
    margin-right: 0;
  }
}

.sec6 {
  position: relative;
}

.sec6:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #70F4CD;
  opacity: 0.3;
}

.sec6-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;
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
}

.sec6-wrap .sec6-img {
  width: 25%;
}

.sec6-wrap .sec6-txt {
  width: 65%;
  padding: 40px;
  line-height: 2;
}

.sec6-wrap .sec6-name {
  font-size: 4rem;
}

.sec6-wrap .sec6-name .small {
  font-size: 2rem;
  padding-right: 10px;
}

.sec6-wrap .sec6-name .eng {
  font-family: "Varela Round", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1rem;
  font-size: 3rem;
  letter-spacing: 0.2em;
  padding-left: 20px;
}

@media all and (max-width: 639px) {
  .sec6-wrap .sec6-name {
    font-size: 2.2rem;
    line-height: 1.3;
  }
  .sec6-wrap .sec6-name .small {
    font-size: 1.3rem;
  }
  .sec6-wrap .sec6-name .eng {
    font-size: 1.5rem;
    display: block;
  }
}

@media all and (max-width: 1100px) {
  .sec6-wrap {
    margin-bottom: 0;
  }
  .sec6-wrap .sec6-img {
    width: 35%;
  }
  .sec6-wrap .sec6-txt {
    padding: 25px;
  }
}

@media all and (max-width: 639px) {
  .sec6-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .sec6-wrap .sec6-img {
    width: 60%;
    margin-bottom: 25px;
  }
  .sec6-wrap .sec6-txt {
    width: 100%;
    padding: 15px;
  }
}

.title01 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #E8F7FF;
}

.title01 span {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  color: #ef9200;
  font-family: "Varela Round", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1rem;
}

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

.title01.white {
  color: #fcfcfc;
}

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

.title02 {
  font-size: 1.4rem;
  font-weight: 700;
  padding-bottom: 5px;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}

.title02 span {
  background: #ef9200;
  padding: 4px 8px;
  color: #fff;
}

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

.title02.type1 span {
  background: #E8F7FF;
}

.title03 {
  background: #fff;
  /*background: #333;*/
  padding: 10px 15px;
  font-weight: 600;
  margin-top: 10px;
  font-size: 1.8rem;
  margin-bottom: 50px;
  position: relative;
}

.title03 span {
  font-family: "Varela Round", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1rem;
  color: #eeb51c;
  margin-right: 8px;
}

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

.title03:before, .title03:after {
  position: absolute;
  content: "";
  left: 0;
  height: 8px;
}

.title03:before {
  width: 25%;
  top: -8px;
  background: #ef9200;
  opacity: 0.8;
}

.title03:after {
  width: 40%;
  bottom: -8px;
  background: #eeb51c;
  /*background: $base_color;*/
  /*opacity: 0.7;*/
}

.map-big {
  width: 100%;
  height: 350px;
}

@media all and (max-width: 896px) {
  .map-big {
    height: 250px;
  }
}

/* --news--
----------------------------------*/
.news-box {
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 200px;
}

@media all and (max-width: 896px) {
  .news-box {
    margin-top: 0;
  }
}

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

.news-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 60px;
  text-align: center;
  position: relative;
}

.news-title span {
  display: block;
}

.news-title .eng {
  font-family: "Varela Round", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1rem;
  color: #ef9200;
  position: relative;
  font-size: 2.5rem;
  letter-spacing: 0.1em;
}

.news-title .ja {
  font-size: 2rem;
  position: relative;
  margin: 0 auto;
  margin-bottom: 20px;
  font-weight: 700;
}

@media all and (max-width: 639px) {
  .news-title {
    margin-bottom: 30px;
  }
  .news-title .eng {
    font-size: 2.5rem;
  }
  .news-title .ja {
    font-size: 1.5rem;
    -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
            writing-mode: inherit;
    margin-bottom: 0;
  }
}

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

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

.topic-dl .topic-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px dotted #ccc;
  position: relative;
  padding: 10px 0;
}

.topic-dl .topic-inner:before {
  width: 40px;
  border-bottom: 1px solid #eeb51c;
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
}

.topic-dl .topic-inner dt {
  width: 7em;
  font-size: 1.4rem;
  font-weight: 700;
  color: #222;
}

@media all and (max-width: 639px) {
  .topic-dl .topic-inner dt {
    font-size: 12px;
  }
}

.topic-dl .topic-inner dd {
  padding-left: 20px;
}

.topic-dl .topic-inner dd a {
  font-weight: 600;
}

.topic-dl .topic-inner dd a:hover {
  color: #ef9200;
}

@media all and (max-width: 639px) {
  .topic-dl {
    padding-bottom: 40px;
  }
}

.top-bg {
  background: url(../img/top-bg01.jpg) no-repeat center/cover;
  background-attachment: fixed;
  height: 400px;
}

@media all and (max-width: 1100px) {
  .top-bg {
    background-attachment: scroll;
  }
}

/* --top-bnr-list--
----------------------------------*/
.top-bnr-list {
  padding: 0 15px;
  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;
}

.top-bnr-list > .child {
  position: relative;
  width: 48%;
}

.top-bnr-list > .child:first-of-type {
  margin-bottom: 15px;
}

.top-bnr-list > .child a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

.top-bnr-list > .child a:hover {
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.top-bnr-list > .child a:hover .top-bnr-img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

@media all and (max-width: 1100px) {
  .top-bnr-list {
    width: 85%;
    margin: 0 auto;
  }
  .top-bnr-list > .child {
    width: 48%;
    margin-bottom: 20px;
  }
}

@media all and (max-width: 639px) {
  .top-bnr-list {
    width: 95%;
    padding: 0;
  }
  .top-bnr-list > .child {
    width: 100%;
  }
}

.top-bnr-list .top-bnr-img {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.top-bnr-list .top-bnr-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

@media all and (max-width: 639px) {
  .top-bnr-list .top-bnr-img {
    height: 200px;
  }
}

.top-bnr-list .btn-arrow {
  position: absolute;
  stroke-miterlimit: 5;
  stroke-width: 1;
  stroke: #fff;
  right: 20px;
  top: 100px;
  z-index: 4;
  width: 50px;
  height: 50px;
  text-align: center;
  padding-top: 13px;
}

.top-bnr-list .btn-arrow:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 2px solid #fefefe;
  border-radius: 100%;
  z-index: -1;
}

@media all and (max-width: 639px) {
  .top-bnr-list .btn-arrow {
    width: 35px;
    height: 35px;
    padding-top: 5px;
    top: 150px;
  }
  .top-bnr-list .btn-arrow .arrow-svg {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
}

.top-bnr-list .top-bnr-title {
  font-weight: 700;
  margin-top: -40px;
  position: relative;
  z-index: 5;
}

.top-bnr-list .top-bnr-title .eng {
  font-family: "Varela Round", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1rem;
  font-size: 3rem;
  letter-spacing: 0.1em;
  color: #ef9200;
  /*color: $base_color;*/
  padding: 10px 10px 6px;
  background: #fff;
  /*background: #fefefe;*/
}

.top-bnr-list .top-bnr-title .ja {
  font-size: 1.5rem;
  padding: 6px 10px;
  color: #fefefe;
  background: #A7F478;
  /*background: $base_color;*/
}

@media all and (max-width: 639px) {
  .top-bnr-list .top-bnr-title .eng {
    font-size: 2.2rem;
  }
  .top-bnr-list .top-bnr-title .ja {
    font-size: 1.3rem;
  }
}

.top-bnr-list .top-bnr-txt {
  color: #222;
  font-size: 1.4rem;
  padding: 10px;
}

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

.map-link {
  font-weight: 700;
  color: #ef9200;
  border-bottom: 1px solid #ef9200;
}

.map-link:before {
  font-family: "Font Awesome 5 Free";
  content: "\f3c5";
  font-weight: 900;
  margin-right: 5px;
}

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

@media all and (max-width: 1100px) {
  .single {
    padding: 80px 10px;
  }
}

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

@media all and (max-width: 1100px) {
  .single02 {
    padding: 80px 10px;
  }
}

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

@media all and (max-width: 1100px) {
  .single03 {
    padding: 80px 10px;
  }
}

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

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

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

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

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

.lsingle {
  float: left;
}

.rsingle {
  float: right;
}

.mbox {
  background: #fefefe;
  padding: 30px;
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

.mbox.transparent {
  background: transparent;
}

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

.mbox2 {
  border: 2px solid #eeb51c;
  -webkit-box-shadow: 6px 6px rgba(238, 181, 28, 0.5);
          box-shadow: 6px 6px rgba(238, 181, 28, 0.5);
  padding: 30px;
  background: #fff;
}

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

.mbox3 {
  border-radius: 50px;
  -webkit-box-shadow: 3px 3px 10px rgba(163, 99, 0, 0.5);
          box-shadow: 3px 3px 10px rgba(163, 99, 0, 0.5);
  padding: 30px;
  background: #fff;
  position: relative;
}

.mbox3::before {
  position: absolute;
  content: "";
  background: #fff;
  width: 60px;
  height: 60px;
  top: -4%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 50%;
}

.mbox3::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 60px;
  background: url("../img/po01.png") no-repeat center/contain;
  top: -4%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

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

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

.small-box.type1 {
  max-width: 600px;
}

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

.bg-grid {
  background: rgba(255, 255, 255, 0.3);
  /* 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(239, 146, 0, 0.1)), to(rgba(239, 146, 0, 0.1))), -webkit-gradient(linear, left bottom, left top, color-stop(95%, transparent), color-stop(50%, rgba(239, 146, 0, 0.1)), to(rgba(239, 146, 0, 0.1)));
  background-image: linear-gradient(90deg, transparent 95%, rgba(239, 146, 0, 0.1) 50%, rgba(239, 146, 0, 0.1)), linear-gradient(0deg, transparent 95%, rgba(239, 146, 0, 0.1) 50%, rgba(239, 146, 0, 0.1));
  background-size: 20px 20px;
  background-repeat: repeat;
  z-index: -1;
}

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

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

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

#main .mbox {
  min-height: 700px;
}

@media all and (max-width: 896px) {
  #main .mbox {
    min-height: initial;
  }
}

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

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

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

/* mtitle
----------------------------------*/
.mtitle {
  margin: 0 auto 40px;
  position: relative;
  text-align: center;
}

.mtitle .eng {
  font-size: 3.5rem;
  color: #ef9200;
  position: relative;
  z-index: 2;
  display: block;
  font-family: "Varela Round", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1rem;
}

.mtitle .ja {
  position: relative;
  z-index: 2;
  font-size: 1.8rem;
  color: #5e3816;
  letter-spacing: 0.15em;
}

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

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

.mtitle.white span:after {
  background-color: #eee;
}

.mtitle.white span.eng {
  color: #eeb51c;
}

.mtitle.white span.ja {
  border-bottom-color: #fefefe;
}

.mtitle.mtitle_left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.mtitle.mtitle_left:before {
  left: 2%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

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

@media all and (max-width: 639px) {
  .mtitle {
    text-align: center;
  }
  .mtitle .eng {
    font-size: 2.2rem;
  }
  .mtitle .ja {
    font-size: 1.4rem;
  }
}

.mtitle1 {
  line-height: 2.5;
  font-weight: bold;
  margin-bottom: 15px;
  padding-top: 60px;
  font-size: 2.5rem;
  position: relative;
  text-align: center;
  letter-spacing: 0.2rem;
}

.mtitle1 span {
  display: block;
  font-size: 1.7rem;
  margin-bottom: -5px;
  color: #ef9200;
  line-height: 1.5;
  font-family: "Varela Round", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1rem;
  letter-spacing: 0.1rem;
}

.mtitle1:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  color: #fdfdfd;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 80px;
  height: 64px;
  background: url(../img/character.png) no-repeat center/contain;
  text-shadow: 0 0 4px #eeb51c;
}

@media all and (max-width: 639px) {
  .mtitle1:before {
    width: 50px;
    height: 40px;
  }
}

.mtitle1.white {
  color: #fff;
}

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

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

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

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

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

@media all and (max-width: 639px) {
  .mtitle1 {
    font-size: 1.8rem;
    text-align: center;
    padding-top: 40px;
  }
  .mtitle1 span {
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 0px;
  }
}

.mtitle2 {
  font-size: 2.4rem;
  margin-bottom: 30px;
  line-height: 1.4;
  color: #5e3816;
  letter-spacing: 0.2em;
  position: relative;
}

.mtitle2 span {
  font-size: 1.6rem;
  letter-spacing: 0.1rem;
  font-family: "Varela Round", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1rem;
  display: block;
  color: #bc7300;
}

.mtitle2 span.ja {
  font-size: 1.8rem;
  font-weight: 700;
}

@media all and (max-width: 639px) {
  .mtitle2 {
    font-size: 1.5rem;
  }
  .mtitle2 span {
    font-size: 1.2rem;
  }
  .mtitle2 span .ja {
    font-size: 1.6rem;
  }
}

.mtitle3 {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  position: absolute;
  min-height: 100px;
  top: 0;
  left: 0;
}

.mtitle3 .ja {
  display: block;
  font-size: 2.8rem;
  color: #222;
  letter-spacing: 0.2em;
  padding-right: 5px;
  line-height: 2;
}

.mtitle3 .eng {
  display: block;
  font-family: "Varela Round", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1rem;
  font-size: 2rem;
  color: #ef9200;
}

@media all and (max-width: 639px) {
  .mtitle3 {
    -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
            writing-mode: inherit;
    position: static;
    margin-bottom: 20px;
    min-height: initial;
    min-height: auto;
  }
  .mtitle3 .ja {
    font-size: 1.6rem;
  }
  .mtitle3 .eng {
    font-size: 1.4rem;
  }
}

.mtitle_line {
  font-size: 2rem;
  padding-bottom: 20px;
  position: relative;
  font-weight: 600;
  margin-bottom: 30px;
  color: #ef9200;
  border-top: 2px solid #eeb51c;
  background: rgba(255, 250, 205, 0.4);
  padding: 8px 10px 20px;
}

.mtitle_line span {
  font-size: 1.4rem;
  color: #ef9200;
}

.mtitle_line:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  content: "";
  opacity: 0.5;
  background-image: repeating-linear-gradient(-45deg, #eeb51c, #eeb51c 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

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

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

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

.mtitle_balloon span.eng {
  font-family: "Varela Round", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1rem;
  font-size: 5rem;
}

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

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

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

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

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

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

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

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

.mtitle-bll {
  font-size: 1.7rem;
  font-weight: 700;
  border-bottom: 2px solid #eeeeee;
  position: relative;
  margin-bottom: 15px;
  line-height: 1.5;
  padding-bottom: 8px;
}

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

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

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

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

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

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

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

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

.mtitle_sub {
  padding-left: 0.5em;
  font-weight: 700;
  position: relative;
  border-left: 6px solid #eeb51c;
  margin: 0 0 15px;
  color: #99720b;
  line-height: 1.4;
  text-align: left;
}

.mtitle_sub .hissu {
  color: #fff;
  background: #ffa923;
  padding: 5px 8px;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 20px;
}

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

.mtitle_box {
  background: rgba(112, 244, 205, 0.6);
  color: #5e3816;
  font-size: 1.7rem;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  position: relative;
  padding: 15px;
  margin-bottom: 20px;
}

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

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

.mtext1 {
  font-size: 2rem;
  line-height: 1.6;
  letter-spacing: 0.15em;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
}

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

.mtext2 {
  font-family: "Zen Kaku Gothic New", sans-serif, "YakuHanJP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  line-height: 1.4;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
}

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

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

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

/* btn
----------------------------------*/
.btn-wrap {
  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;
}

.btn-wrap p:first-of-type {
  margin-right: 25px;
}

@media all and (max-width: 639px) {
  .btn-wrap p:first-of-type {
    margin: 0 auto;
  }
}

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

.btn01 {
  position: relative;
  z-index: 2;
}

.btn01 a {
  background: #fefefe;
  text-align: center;
  width: 300px;
  margin: 15px auto;
  color: #5e3816;
  display: block;
  padding: 8px 5px;
  font-weight: 700;
  border: 2px solid #ef9200;
  border-radius: 35px;
}

.btn01 a:hover {
  background: #ef9200;
  color: #fefefe;
}

.btn01.mail {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

.btn01.mail a {
  background: #eeb51c;
  margin: 15px auto 25px;
}

.btn01.mail a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 5px;
}

.btn01.left a {
  margin: 15px 0;
}

.btn01.type1 a {
  background: #fff;
  border: 0.9px solid #ef9200;
  color: #A7F478;
}

.btn01.type1 a:hover {
  background: #eeb51c;
}

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

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

.btn02 a {
  display: block;
  position: relative;
  padding: 15px 0;
  background-color: #ef9200;
  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: 260px;
  }
  .btn02 a {
    font-size: 1.2rem;
  }
}

/* news
----------------------------------*/
.news-bl {
  overflow: hidden;
}

.news-bl dt {
  float: left;
  width: 8em;
  padding: 5px;
  line-height: 1.3;
  color: #5e3816;
  text-align: center;
  background: #eeb51c;
  font-size: 1.3rem;
}

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

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

.news-bl dd a {
  color: #5e3816;
  background-image: -webkit-gradient(linear, left top, right top, from(#ef9200), to(#A7F478));
  background-image: linear-gradient(to right, #ef9200, #A7F478);
  padding-bottom: 0.25em;
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  -webkit-transition: background-size 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: background-size 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-weight: 700;
}

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

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

@media all and (max-width: 639px) {
  .news-bl dt {
    float: none;
    width: 180px;
  }
  .news-bl dd {
    padding: 8px 5px;
    text-align: left;
  }
}

/* page-title
----------------------------------*/
.page-title {
  margin: 0 auto 0;
  position: relative;
  z-index: 1;
  background: url(../img/page-title.jpg) no-repeat 50% 30%/cover;
  overflow: hidden;
}

.page-title:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#ef9200), to(#E8F7FF));
  background-image: linear-gradient(to top, #ef9200, #E8F7FF);
  opacity: 0.5;
}

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

.page-title .page-lead {
  text-align: center;
  color: #eeb51c;
  font-size: 2rem;
  color: #fff;
}

.page-title .page-lead span {
  display: block;
}

.page-title .page-lead .ja {
  font-size: 2rem;
  color: #fff;
}

.page-title .page-lead .eng {
  font-size: 6rem;
  color: #fff;
  font-family: "Varela Round", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1rem;
  letter-spacing: 0.15em;
  line-height: 1.4;
}

@media all and (max-width: 896px) {
  .page-title .inner {
    width: 100%;
    padding: 100px 0 20px;
  }
  .page-title .page-lead {
    font-size: 1.5rem;
  }
  .page-title .page-lead .ja {
    font-size: 1.5rem;
  }
  .page-title .page-lead .eng {
    font-size: 2.6rem;
  }
}

.bg-gradient {
  position: relative;
}

.bg-gradient.type1 {
  padding-top: 40px;
}

.bg-gradient.type2:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#fffbe5), color-stop(#fff), to(transparent));
  background-image: linear-gradient(to top, #fffbe5, #fff, transparent);
  z-index: -2;
  opacity: 0.3;
}

.bg-gradient:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#ef9200), color-stop(#E8F7FF), to(transparent));
  background-image: linear-gradient(to top, #ef9200, #E8F7FF, transparent);
  z-index: -2;
  opacity: 0.3;
}

.bg-01 {
  position: relative;
  margin: 40px auto;
}

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

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

.bg-01.type1:before {
  background: #fefefe;
  opacity: 1;
}

.bg-01.type2:before {
  background: url(../img/bg-02.jpg);
  opacity: 0.8;
}

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

.bg-03 {
  position: relative;
}

.bg-03:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/bg-03.jpg) no-repeat center bottom/cover;
  opacity: 0.7;
  z-index: -2;
}

.bg-pattern {
  position: relative;
}

.bg-pattern:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: url(../img/pattern01.png) no-repeat center bottom/contain;
  opacity: 0.7;
}

.bg-w {
  position: relative;
  margin-bottom: 50px;
}

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

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

.bg-base {
  background: #E8F7FF;
}

.bg-base.type1 {
  background: transparent;
  margin-bottom: 40px;
  position: relative;
}

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

@media all and (max-width: 896px) {
  .bg-base.type1:before {
    width: calc(100% - 10px);
  }
}

.bg-base.type2 {
  position: relative;
}

.bg-base.type2:before {
  position: absolute;
  content: "";
  width: calc(100% - 80px);
  height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(../img/bg-02.png) no-repeat center/contain;
  opacity: 1;
}

@media all and (max-width: 1100px) {
  .bg-base.type2:before {
    background: url(../img/bg-02-tbl.png) no-repeat center/contain;
  }
}

@media all and (max-width: 896px) {
  .bg-base.type2:before {
    width: calc(100% - 10px);
  }
}

@media all and (max-width: 639px) {
  .bg-base.type2:before {
    background: #FFFAD4;
    border-radius: 5% 7% / 3% 10%;
    height: 95%;
  }
}

.bg-svg {
  position: relative;
  background: rgba(255, 209, 202, 0.4);
}

.bg-svg:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/bg-green.svg) no-repeat center/cover;
  opacity: 0.7;
}

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

.bg-gray.bg-half {
  background: transparent;
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(50%, transparent), color-stop(50.1%, #f2f4f5), to(#f2f4f5));
  background-image: linear-gradient(to bottom, transparent 0%, transparent 50%, #f2f4f5 50.1%, #f2f4f5 100%);
}

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

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

@media all and (max-width: 896px) {
  .bg-gray2:before {
    width: calc(100% - 10px);
  }
}

.bg-gray2.type1:before {
  background-size: 80%;
}

.bg-999 {
  background: #aaa;
}

.bg-yellow {
  background: rgba(238, 181, 28, 0.2);
}

.bg-blue {
  background-color: rgba(232, 247, 255, 0.4);
}

.bg-blue.bg-half {
  background: transparent;
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(50%, transparent), color-stop(50.1%, #f2c44b), to(#f2c44b));
  background-image: linear-gradient(to bottom, transparent 0%, transparent 50%, #f2c44b 50.1%, #f2c44b 100%);
}

.bg-border {
  background: repeating-linear-gradient(45deg, transparent 0, transparent 15px, rgba(254, 254, 254, 0.3) 15px, rgba(254, 254, 254, 0.3) 30px);
  position: relative;
}

.bg-border.type1 {
  padding-bottom: 80px;
}

@media all and (max-width: 639px) {
  .bg-border.type1 {
    padding-bottom: 40px;
  }
}

.bg-border.type2 {
  background: repeating-linear-gradient(45deg, transparent 0, transparent 15px, rgba(239, 146, 0, 0.1) 15px, rgba(239, 146, 0, 0.1) 30px);
}

.bg-beige {
  position: relative;
}

.bg-beige:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #FFFAE3;
  opacity: 0.4;
}

.bg-beige.type1 {
  margin-bottom: 40px;
}

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

@media all and (max-width: 896px) {
  .bg-beige.type1:before {
    width: calc(100% - 20px);
  }
}

@media all and (max-width: 1100px) {
  .bg-beige.type1:before {
    width: calc(100% - 10px);
  }
}

.bg-beige2 {
  background: #fff9db;
}

.bg-base2 {
  background: repeating-linear-gradient(45deg, rgba(239, 146, 0, 0.1) 0, rgba(239, 146, 0, 0.1) 20px, #fefefe 20px, #fefefe 40px);
}

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

.tbl-profile th,
.tbl-profile td {
  padding: 10px;
  font-size: 1.4rem;
  vertical-align: middle;
  border-bottom: 1px solid #ddd;
}

@media all and (max-width: 639px) {
  .tbl-profile th,
  .tbl-profile td {
    font-size: 12px;
  }
}

.tbl-profile th {
  width: 30%;
  text-align: left;
  color: #ef9200;
  font-weight: 700;
}

.tbl-profile.type1 th {
  width: 25%;
}

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

.tbl {
  width: 100%;
}

.tbl.tbl-price {
  margin-bottom: 40px;
}

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

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

.tbl th.tleft,
.tbl td.tleft {
  text-align: left;
}

.tbl th {
  background: rgba(238, 181, 28, 0.2);
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
}

.tbl thead th {
  background: #eeb51c;
  color: #fff;
}

.tbl td {
  background: #fff;
}

.tbl td.td-1 {
  width: 50%;
  font-size: 1.3rem;
}

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

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

.tbl .th-2 {
  width: 45%;
}

.tbl.type1 td {
  text-align: left;
}

@media all and (max-width: 639px) {
  .tbl th {
    text-align: left;
  }
  .tbl th,
  .tbl td {
    padding: 10px;
    font-size: 12px;
  }
  .tbl th span,
  .tbl td span {
    font-size: 12px;
  }
}

.tbl_new {
  width: 100%;
}

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

.tbl_new tr th {
  font-weight: 700;
  width: 35%;
  color: #5e3816;
  text-align: left;
  padding-left: 30px;
  letter-spacing: 0;
}

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

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

.tbl-border {
  width: 100%;
}

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

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

.tbl-border th {
  width: 20%;
  color: #5e3816;
  text-align: left;
  border-color: #ef9200;
}

.tbl-border th.th-1 {
  width: 45%;
}

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

.tbl-border td {
  border-color: #e4e8ea;
}

.price-box {
  margin-top: 10px;
}

.price-box span {
  background: #ef9200;
  padding: 4px 5px;
  line-height: 1.4;
  color: #fff;
}

.price {
  font-family: 'Homemade Apple', cursive;
  font-weight: 400;
  color: #E8F7FF;
  font-size: 1.2em;
}

.price span {
  display: block;
  font-size: 1.4rem;
  color: #5e3816;
  letter-spacing: 0;
}

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

.timetable {
  padding: 20px 20px;
  width: 100%;
  border-top: 1px solid #5e3816;
  font-size: 1.4rem;
}

.timetable th,
.timetable td {
  border-bottom: 1px solid #5e3816;
  padding: 10px 5px;
  text-align: center;
  vertical-align: middle;
  line-height: 1.4;
}

.timetable th .txt,
.timetable td .txt {
  letter-spacing: 0;
  font-size: 12px;
}

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

.timetable.type1 td {
  border-right: 0.9px solid rgba(255, 255, 255, 0.2);
}

.timetable.type1 td.crowd {
  background: #5e3816;
}

.timetable.type1 td.td-last {
  border-right: 0;
}

.timetable .thead th {
  border-top: 0;
  color: #5e3816;
}

.timetable .th-1 {
  width: 35%;
  font-weight: 600;
  text-align: center;
}

@media all and (max-width: 639px) {
  .timetable {
    padding: 15px 10px;
  }
  .timetable .th-1 {
    width: 25%;
  }
}

.star {
  color: #9df4ff;
}

.circle {
  color: #ef9200;
}

.triangle {
  color: #4ac09d;
}

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

.ggmap.youtube {
  padding-bottom: 56.25%;
}

.ggmap.type-interview {
  padding-bottom: 150%;
}

/* list
----------------------------------*/
.list_common li {
  padding-bottom: 4px;
  font-size: 1.4rem;
  margin-bottom: 5px;
  border-bottom: 1px dotted rgba(239, 146, 0, 0.5);
}

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

.list_check.type1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 900px;
}

.list_check.type1 li {
  width: 48%;
  background: rgba(238, 181, 28, 0.4);
  padding: 8px 8px 8px 30px;
}

.list_check.type1 li:nth-child(2n) {
  margin-left: 4%;
}

.list_check.type1 li:before {
  color: #ef9200;
}

@media all and (max-width: 639px) {
  .list_check.type1 li {
    width: 95%;
    margin: 0 auto 5px;
  }
  .list_check.type1 li:nth-child(2n) {
    margin-left: auto;
  }
}

.list_check li {
  position: relative;
  padding: 8px 8px 8px 30px;
  font-weight: 700;
  background: #fefefe;
  margin-bottom: 5px;
}

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

.list_check li a {
  color: #ef9200;
  border-bottom: 1px dotted #ef9200;
}

.list_check li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: 900;
  position: absolute;
  left: 10px;
  top: 10px;
  color: #fff;
}

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

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

.list_check2.type1 li {
  width: 48%;
}

.list_check2.type1 li:nth-child(2n) {
  margin-left: 4%;
}

@media all and (max-width: 639px) {
  .list_check2.type1 li {
    width: 95%;
    margin: 0 auto 5px;
  }
  .list_check2.type1 li:nth-child(2n) {
    margin-left: auto;
  }
}

.list_check2 li {
  padding: 4px 8px;
  color: #5e3816;
  font-weight: 600;
}

.list_check2 li .num {
  color: #ef9200;
  margin: 0 4px;
  font-family: 'Homemade Apple', cursive;
  font-weight: 400;
}

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

.list_check2 li:not(:last-child) {
  margin-bottom: 4px;
}

.list-inline2 {
  text-align: center;
}

.list-inline2 li {
  display: inline-block;
  padding: 4px 15px;
  background: #fefefe;
  border: 1px solid #E8F7FF;
  font-weight: 700;
  border-radius: 30px;
}

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

.list-inline li {
  display: inline-block;
  padding: 3px;
}

.list-inline li:not(:last-of-type):after {
  content: "/";
  margin: 0 5px;
  color: #ef9200;
  font-weight: normal;
}

@media all and (max-width: 639px) {
  .list-inline li {
    display: block;
    padding: 0;
  }
  .list-inline li:before {
    content: "-";
    color: #ef9200;
  }
  .list-inline li:not(:last-of-type):after {
    display: none;
  }
}

.list_num li {
  position: relative;
  padding: 6px 4px 6px 50px;
  font-size: 2rem;
  margin-bottom: 5px;
  color: #5e3816;
}

.list_num li span {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 3.5rem;
  color: #E8F7FF;
}

@media all and (max-width: 639px) {
  .list_num li {
    font-size: 1.3rem;
  }
  .list_num li span {
    font-size: 2.8rem;
  }
}

.ol-list {
  counter-reset: number;
  list-style: none;
  padding: 5px;
}

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

.ol-list.type1 > li {
  width: 48%;
}

.ol-list.type1 > li:nth-child(2n) {
  margin-left: 4%;
}

.ol-list li {
  line-height: 2;
  padding-top: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
  position: relative;
  padding-left: 40px;
  padding-bottom: 10px;
}

.ol-list li .ol-lead {
  color: #895400;
  font-size: 2rem;
}

.ol-list li .inner {
  font-weight: normal;
  display: block;
  padding: 10px;
  line-height: 1.6;
  font-size: 1.4rem;
}

.ol-list li:before {
  counter-increment: number;
  content: counter(number);
  display: inline-block;
  font-family: 'Homemade Apple', cursive;
  font-weight: 400;
  left: 0;
  top: 15px;
  position: absolute;
  font-size: 3.5rem;
  color: #ef9200;
  margin-right: 10px;
  line-height: 1;
}

@media all and (max-width: 639px) {
  .ol-list li {
    font-size: 1.2rem;
  }
  .ol-list li .ol-lead {
    font-size: 1.4rem;
  }
  .ol-list li .inner {
    font-size: 0.9em;
  }
  .ol-list li:before {
    font-size: 3rem;
  }
}

.list_disc li {
  padding: 5px 0;
  font-size: 1.6rem;
}

.list_disc li:not(:last-of-type) {
  margin-bottom: 5px;
  border-bottom: 1px solid #ccc;
}

.list_disc li:before {
  content: "●";
  margin-right: 5px;
  color: #eeb51c;
  font-size: 0.7em;
}

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

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

.list-btn li {
  width: 32%;
  margin: 0 calc(1.33% + (1.33% / 2)) 10px 0;
}

.list-btn li a {
  display: block;
  background: #eeb51c;
  color: #5e3816;
  font-weight: 700;
  padding: 10px 3px;
  text-align: center;
  width: 100%;
  height: 100%;
  line-height: 1.5;
  font-size: 1.5rem;
  letter-spacing: 0;
  border-radius: 10px;
  border: 1px solid #eeb51c;
}

.list-btn li a:hover {
  background: rgba(238, 181, 28, 0.3);
}

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

@media all and (max-width: 639px) {
  .list-btn li {
    width: 48%;
    margin: 0 auto 10px;
  }
  .list-btn li a {
    font-size: 1.2rem;
  }
  .list-btn li:nth-child(2n) {
    margin-right: 0;
  }
  .list-btn li:nth-child(3n) {
    margin-right: auto;
  }
}

.list-btn.type1 {
  max-width: 1000px;
  margin: 0 auto 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.list-btn.type1 li a {
  background: #ef9200;
  border: 1px solid #bc7300;
}

.list-btn.type1 li a:hover {
  background: #c6f8a7;
}

.list-btn.type1 li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f13a";
  font-weight: 900;
  margin-right: 5px;
}

.invisa-problem li {
  position: relative;
  padding: 5px 5px;
  font-weight: 600;
  font-size: 1.7rem;
  border-bottom: 2px solid rgba(238, 181, 28, 0.5);
}

@media all and (max-width: 639px) {
  .invisa-problem li {
    font-size: 1.3rem;
  }
}

.invisa-problem li:before, .invisa-problem li:after {
  line-height: 1;
  color: #eeb51c;
}

.invisa-problem li:before {
  content: "『";
  margin-right: 8px;
}

.invisa-problem li:after {
  content: "』";
  margin-left: 8px;
}

.invisa-problem li:not(:last-of-type) {
  margin-bottom: 5px;
}

.invisa-problem.type1 li {
  border-bottom-color: rgba(239, 146, 0, 0.4);
}

.invisa-problem.type1 li:before, .invisa-problem.type1 li:after {
  color: #ef9200;
}

/* blog
----------------------------------*/
#top-blog .pages {
  display: none;
}

#main .blog-wrap > li {
  width: 32%;
}

@media all and (max-width: 1100px) {
  #main .blog-wrap > li {
    width: 49%;
    margin: 0 0.5% 20px 0.5%;
  }
}

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

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

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

.blog-wrap > li {
  width: 24%;
  margin: 0 0.5% 20px 0.5%;
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  padding: 15px 10px;
}

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

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

.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: 90%;
    margin: 0 auto 10px;
  }
}

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

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

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

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

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

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

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

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

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

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

.blog-txt {
  line-height: 1.5;
  color: #ef9200;
  padding: 10px;
}

@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-block;
  margin: 0 20px;
}

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

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

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

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

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

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

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

.img-round {
  border-radius: 15px 0 15px 0;
}

.w300 {
  width: 300px;
}

.spbr {
  display: none;
}

.color1 {
  color: #bc7300;
}

.color2 {
  color: #1261B1;
}

.color3 {
  color: #c8960f;
}

.relative {
  position: relative;
}

.bigger {
  font-size: 1.15em;
}

.num {
  font-weight: 700;
}

.num a {
  color: #ef9200;
  font-size: 2.8rem;
  text-align: center;
  margin-left: 5px;
}

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

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

.num a:hover {
  color: #ef9200;
}

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

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

.txt-link {
  font-weight: 700;
  text-decoration: underline;
}

.txt-link:after {
  font-family: "Font Awesome 5 Free";
  content: "\f101";
  font-weight: 900;
  padding-left: 5px;
}

.txt-link:hover {
  text-decoration: none;
}

.telbnr {
  max-width: 700px;
  margin: 20px 0 0;
  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 #ef9200;
  padding: 10px 10px;
  text-align: center;
  border-radius: 40px;
}

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

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

.telbnr li a:hover {
  color: #ef9200;
}

.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: #5e3816;
  margin-top: -30px;
}

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

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

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

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

.breadcrumb li a {
  color: #ef9200;
}

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

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

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

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

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

.form dl dt span.nini {
  background: #eeb51c;
  color: #5e3816;
}

.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: 20px 15px;
  width: 100%;
  background: #f5f5f5;
  border-radius: 0;
  -webkit-appearance: none;
}

.form .textarea {
  height: 30px;
}

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

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

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

.form button {
  cursor: pointer;
  display: block;
  color: #fff;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  border: 1px solid #ef9200;
  font-weight: 700;
  padding: 12px 5px;
  margin: 0 auto;
  width: 250px;
  background: #ef9200;
  border-radius: 25px;
}

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

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

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

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

.form label.radio_text:after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 100%;
  left: 2px;
  top: 4px;
  background-color: #ef9200;
  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 #ef9200;
  border-bottom: 3px solid #ef9200;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: 1;
}

@media all and (max-width: 639px) {
  .form label.checkbox_text:after {
    margin-top: -18px;
  }
}

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

.thanks {
  padding: 40px;
  border: 3px solid #ef9200;
  -webkit-box-shadow: 0 0 0 8px rgba(239, 146, 0, 0.2);
          box-shadow: 0 0 0 8px rgba(239, 146, 0, 0.2);
  max-width: 700px;
  margin: 0 auto;
}

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

.shadow {
  -webkit-box-shadow: 0 0 10px rgba(94, 56, 22, 0.05);
          box-shadow: 0 0 10px rgba(94, 56, 22, 0.05);
}

.policy {
  padding: 30px;
  background: rgba(167, 244, 120, 0.3);
}

.mtitle_small {
  font-weight: 600;
  padding: 7px 0;
  font-size: 1.6rem;
  border-top: 1px solid #ef9200;
  border-bottom: 1px solid #ef9200;
  margin-bottom: 20px;
}

.mtitle_small:before {
  content: "―";
  margin-right: 8px;
  color: #ef9200;
}

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

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

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

.mtitle_small3 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  color: #5e3816;
  padding: 4px;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.mtitle_small3.type1:before {
  color: #eeb51c;
}

.mtitle_small3:before {
  content: "─";
  margin-right: 8px;
  color: #ef9200;
  font-family: "Zen Kaku Gothic New", sans-serif, "YakuHanJP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
}

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

.mtitle_small4 {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  text-align: left;
}

.mtitle_small4.type1:before {
  background-color: #eeb51c;
}

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

.mtitle_small5 {
  padding: 10px 0;
  font-size: 1.6rem;
  border-top: 1px solid #ef9200;
  border-bottom: 1px solid #ef9200;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  margin-bottom: 25px;
}

.mtitle_small5:before {
  content: "―";
  margin-right: 8px;
  color: #ef9200;
}

@media all and (max-width: 639px) {
  .mtitle_small5 {
    margin-bottom: 20px;
    padding: 8px 0;
    font-size: 1.3rem;
  }
}

.mtitle_small6 {
  position: relative;
  background: #fff;
  border: 1px solid #ddd;
  font-size: 1.8rem;
  padding: 10px 10px 10px 30px;
  margin-bottom: 25px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
}

.mtitle_small6:before {
  position: absolute;
  top: 15%;
  left: 10px;
  width: 5px;
  height: 70%;
  content: '';
  background: rgba(239, 146, 0, 0.8);
}

.mtitle_small6.type1:before {
  background: rgba(238, 181, 28, 0.8);
}

@media all and (max-width: 639px) {
  .mtitle_small6 {
    font-size: 1.4rem;
    padding: 5px 5px 5px 20px;
    margin-bottom: 20px;
  }
  .mtitle_small6:before {
    left: 5px;
  }
}

/* slick
----------------------------------*/
.thumb-item li {
  width: 100%;
}

.thumb-item-nav li {
  overflow: hidden;
  height: 100px;
}

.thumb-item-nav li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

@media all and (max-width: 639px) {
  .thumb-item-nav li {
    height: 80px;
  }
}

/*photoギャラリー*/
.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: 24%;
  margin: 0 calc(1% + (1% / 3)) 25px 0;
}

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

.gallery li a {
  background: rgba(255, 251, 229, 0.2);
  display: block;
  text-align: center;
  padding: 0px;
  height: 200px;
}

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

.gallery li p {
  font-size: 14px;
  margin: 3px 0 10px;
}

@media all and (max-width: 896px) {
  .gallery li {
    width: 48%;
    margin: 0 1% 20px;
  }
  .gallery li:nth-child(2n) {
    margin-right: 0;
  }
  .gallery li a {
    height: 120px;
  }
  .gallery li p {
    font-size: 12px;
  }
}

.list2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1700px;
  margin-right: auto;
  margin-left: auto;
  margin-top: -50px;
}

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

.list2.interview-list .child {
  position: relative;
  padding-bottom: 80px;
}

.list2.type1 > li,
.list2.type1 .child {
  background: #fefefe;
  padding: 20px;
}

.list2 > li,
.list2 .child {
  width: 48%;
  margin-top: 50px;
  position: relative;
}

.list2 > li:nth-child(2n),
.list2 .child:nth-child(2n) {
  margin-left: 4%;
}

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

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

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

.list3.type-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.list3.type-center > li {
  width: auto;
}

.list3.type-center > li:not(:last-child) {
  margin-right: 8px;
}

.list3.type1 > li {
  background: rgba(238, 181, 28, 0.2);
  padding: 20px;
  border-radius: 15px;
}

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

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

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

.list4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -2%;
  margin-top: -30px;
}

.list4.type1 {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.list4.type1 li {
  padding: 15px;
  background: rgba(232, 247, 255, 0.2);
  border-radius: 10px;
  display: block;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.list4.type1 li a {
  display: block;
}

.list4.type1 li a:hover {
  position: relative;
  -webkit-transform: translate(0, 10px);
          transform: translate(0, 10px);
}

.list4.type1 li img {
  width: 60px;
  margin: 0 auto 10px;
}

@media all and (max-width: 639px) {
  .list4.type1 > li {
    width: 48%;
  }
  .list4.type1 > li img {
    width: 50px;
  }
}

.list4 li {
  margin-left: 2%;
  margin-top: 30px;
  width: 23%;
}

@media all and (max-width: 1100px) {
  .list4 li {
    width: 31.33%;
  }
}

@media all and (max-width: 639px) {
  .list4 {
    margin-left: auto;
  }
  .list4 li {
    width: 90%;
    margin: 25px auto 0;
  }
}

.prv dt {
  color: #ef9200;
  border-bottom: 1px solid #ccc;
  margin: 10px 0;
}

#works:before {
  content: "";
  height: 80px;
  margin-top: -80px;
  display: block;
  visibility: hidden;
}

.note {
  padding: 20px;
  margin-top: 10px;
  background: #fffcec;
  /*background: rgba($yellow, 0.3);*/
}

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

.note.type1 {
  background: #f4efe9;
}

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

.flow-dl .flow-inner {
  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;
  width: 48%;
  margin-right: 4%;
  margin-bottom: 25px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.8);
}

.flow-dl .flow-inner:nth-child(2n) {
  margin-right: 0;
}

@media all and (max-width: 639px) {
  .flow-dl .flow-inner {
    width: 100%;
    margin: 0 auto 25px;
  }
  .flow-dl .flow-inner:nth-child(2n) {
    margin-right: auto;
  }
}

.flow-dl dt {
  color: #70F4CD;
  width: 60px;
  text-align: center;
  margin-right: 20px;
  font-family: "Varela Round", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1rem;
  padding-top: 8px;
}

.flow-dl dt span {
  font-size: 3.5rem;
  display: block;
  line-height: 1;
  color: #ef9200;
  font-family: 'Homemade Apple', cursive;
  font-weight: 400;
}

.flow-dl dd {
  width: calc(100% - 80px);
}

.flow-dl dt:not(:last-child),
.flow-dl dd:not(:last-child) {
  margin-bottom: 20px;
}

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

.number {
  font-family: 'Homemade Apple', cursive;
  font-weight: 400;
  font-size: 4.5rem;
  color: #FF8036;
  line-height: 1;
  top: 0;
  left: 0;
  position: absolute;
}

@media all and (max-width: 639px) {
  .number {
    font-size: 2.8rem;
    top: 10px;
  }
}

.txt1 {
  padding-left: 60px;
}

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

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

.blog-month ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.blog-month ul li {
  width: 49%;
  padding: 5px 0;
  margin-bottom: 5px;
  text-align: center;
  letter-spacing: 0;
  background: #333;
}

.blog-month ul li:nth-child(2n) {
  margin-left: 2%;
}

.blog-month ul li a {
  color: #fff;
  font-size: 12px;
}

#a01,
#a02,
#a03,
#a04,
#a05,
#a06,
#a07,
#a08,
#contact,
.anchor {
  display: block;
  padding-top: 100px;
  margin-top: -100px;
}

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

.list-center li {
  width: 50%;
}

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

.faq.type1 dt {
  background: #f8fbf5;
}

.faq.type1 dt:before {
  background: #eeb51c;
}

.faq dt {
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  background: #ffebb3;
  color: #5e3816;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-right: 16px;
  padding-left: 36px;
  line-height: 1.6;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.faq dt:before {
  content: "Q";
  position: absolute;
  top: -6px;
  left: -6px;
  text-indent: 0px;
  line-height: 35px;
  color: #fff;
  background: #ef9200;
  width: 35px;
  height: 35px;
  text-align: center !important;
}

.faq dt:hover {
  background: #f2f4f5;
}

.faq dd {
  display: none;
  position: relative;
  margin-bottom: 24px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 16px;
  padding-left: 38px;
  line-height: 2;
  position: relative;
  background: #fff;
}

.faq dd:before {
  content: "A";
  position: absolute;
  top: 0px;
  left: 0px;
  text-indent: 0px;
  font-size: 20px;
  line-height: 35px;
  color: #D43838;
  width: 35px;
  height: 35px;
  text-align: center !important;
}

.faq dt:before,
.faq dd:before {
  font-family: "Varela Round", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1rem;
}

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

.faq-dl .faq-inner:not(:last-of-type) {
  margin-bottom: 35px;
  padding-bottom: 20px;
  border-bottom: 3px solid #FFFAE3;
}

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

.faq-dl .faq-inner dt:before,
.faq-dl .faq-inner dd:before {
  position: absolute;
  content: "";
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  left: 0;
  top: 0;
  font-family: "Varela Round", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1rem;
}

.faq-dl .faq-inner dt {
  margin-bottom: 10px;
  font-weight: 700;
  color: #5e3816;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 1.1em;
}

.faq-dl .faq-inner dt:before {
  content: "Q";
  color: #fff;
  font-size: 3rem;
  background: #70F4CD;
}

.faq-dl .faq-inner dd:before {
  content: "A";
  color: #fff;
  font-size: 3rem;
  background: #eeb51c;
}

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

.sns-list.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 15px 0;
}

.sns-list li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 15px;
  color: #D43838;
  display: block;
  background: #fefefe;
  border-radius: 100%;
  text-align: center;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  position: relative;
}

.sns-list li a:hover {
  opacity: 0.7;
}

.sns-list li a.btn-facebook {
  background: #1877f2;
}

.sns-list li a.btn-twitter {
  background: #1da1f2;
}

.sns-list li a.btn-instagram {
  overflow: hidden;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
}

.sns-list li a.btn-instagram i {
  position: relative;
  z-index: 2;
}

.sns-list li a.btn-instagram:before {
  content: "";
  position: absolute;
  /*絶対配置*/
  top: 18px;
  /*ずらす*/
  left: -10px;
  /*ずらす*/
  width: 50px;
  /*グラデーションカバーの幅*/
  height: 50px;
  /*グラデーションカバーの高さ*/
  background: radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
  /*グラデーション②*/
}

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

@media all and (max-width: 896px) {
  .sns-list li:not(:last-child) {
    margin-right: 5px;
    margin-bottom: 0;
  }
}

.name {
  width: 200px;
  margin: -20px auto 20px;
  position: relative;
  z-index: 2;
  background: #fff;
  color: #5e3816;
  font-weight: 600;
  text-align: center;
  padding: 8px 6px;
  -webkit-box-shadow: 0 0 8px rgba(94, 56, 22, 0.05);
          box-shadow: 0 0 8px rgba(94, 56, 22, 0.05);
  line-height: 1.5;
}

.name span {
  color: #ef9200;
  display: block;
  font-size: 1.4rem;
  font-family: "Varela Round", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1rem;
}

.vertical-content {
  margin-left: 100px;
}

.vertical-content.type1 {
  margin-left: 180px;
}

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

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

.box1 {
  max-width: 1000px;
  background: #fff;
  position: relative;
  padding: 30px;
  /*border-radius: 5px;*/
  margin-left: auto;
  margin-right: auto;
}

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

.box1.type1 {
  padding-top: 60px;
}

.top-list {
  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;
  margin-top: 40px;
  margin-bottom: 50px;
}

.top-list li {
  width: 24%;
  background: #fff;
  padding: 15px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
}

.top-list li:before {
  position: absolute;
  content: "";
  width: 30%;
  height: 100%;
  top: 0;
  left: -5%;
  background-image: -webkit-gradient(linear, left top, right bottom, from(#70F4CD), to(#eeb51c));
  background-image: linear-gradient(to right bottom, #70F4CD, #eeb51c);
  -webkit-transform: skew(15deg);
          transform: skew(15deg);
  opacity: 0.2;
}

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

.top-list li a {
  display: inline-block;
  padding: 6px 10px;
  font-weight: 600;
  color: #5e3816;
  border: 2px solid #5e3816;
  background: rgba(238, 181, 28, 0.3);
  -webkit-transition: background 0.2s ease-in;
  transition: background 0.2s ease-in;
}

.top-list li a:hover {
  background: rgba(112, 244, 205, 0.5);
}

.top-list li a:after {
  font-family: "Font Awesome 5 Free";
  content: "\f138";
  font-weight: 900;
  margin-left: 7px;
  color: #ef9200;
}

.top-list li a:not(:first-of-type) {
  margin-left: 8px;
  background: rgba(238, 181, 28, 0.4);
}

.top-list li a:not(:first-of-type):hover {
  background: rgba(238, 181, 28, 0.7);
}

@media all and (max-width: 896px) {
  .top-list li a:not(:first-of-type) {
    margin: 8px 0 0;
  }
}

.top-list li .txt {
  line-height: 1.4;
  letter-spacing: 0.1rem;
  position: relative;
  z-index: 3;
}

.top-list li .txt .lead01 {
  position: relative;
  font-weight: 600;
  font-size: 1.7rem;
  margin-bottom: 8px;
}

.top-list li .txt .lead01 .num {
  font-family: 'Homemade Apple', cursive;
  font-weight: 400;
  font-size: 4rem;
  color: #ef9200;
  padding-right: 10px;
}

@media all and (max-width: 896px) {
  .top-list li .txt {
    padding: 0;
  }
}

@media all and (max-width: 639px) {
  .top-list li .txt .lead01 {
    font-size: 1.4rem;
  }
  .top-list li .txt .lead01 .num {
    font-size: 3rem;
  }
}

.flow-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}

.flow-list.type1 {
  display: block;
}

.flow-list.type1 li {
  width: 100%;
}

.flow-list.type1 li .flow-title {
  margin-bottom: 10px;
}

.flow-list.type-child li .flow-num {
  color: #FF8036;
  border-right: 1px solid #FF8036;
}

@media all and (max-width: 639px) {
  .flow-list.type-child li .flow-num {
    border-bottom: 1px solid #eeb51c;
  }
}

.flow-list li {
  width: 48%;
  margin-right: 4%;
  margin-bottom: 35px;
  padding: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: #fefefe;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 15px rgba(94, 56, 22, 0.05);
          box-shadow: 0 0 15px rgba(94, 56, 22, 0.05);
}

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

@media all and (max-width: 639px) {
  .flow-list li {
    width: 90%;
    margin: 0 auto 30px;
  }
  .flow-list li:nth-child(2n) {
    margin-right: auto;
  }
}

.flow-list li .flow-num {
  color: #eeb51c;
  font-size: 3.5rem;
  border-right: 1px solid #eeb51c;
  padding-right: 15px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  line-height: 1.2;
  font-family: 'Homemade Apple', cursive;
  font-weight: 400;
}

.flow-list li .flow-num span {
  font-size: 1.3rem;
  display: block;
  text-align: center;
}

.flow-list li .txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 35px;
}

.flow-list li .flow-title {
  color: #ef9200;
  border-bottom: 1px solid #ef9200;
  padding-bottom: 4px;
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
}

@media all and (max-width: 639px) {
  .flow-list li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .flow-list li .flow-num {
    font-size: 2.2rem;
    text-align: center;
    border-right: 0;
    padding: 0 0 4px;
    border-bottom: 1px solid #eeb51c;
  }
  .flow-list li .flow-title {
    font-size: 1.3rem;
  }
  .flow-list li .txt {
    margin: 20px auto 0;
  }
}

.price-dl dt {
  background: #fff7cc;
  padding: 14px 20px;
  color: #5e3816;
  border-top: 1px solid #eeb51c;
  border-bottom: 1px solid #eeb51c;
}

.price-dl dd {
  padding: 20px;
  margin-bottom: 25px;
}

.kiritori {
  height: 1px;
  border-top: 1px solid rgba(239, 146, 0, 0.4);
  margin: 50px auto;
  width: 95%;
  display: block;
}

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

.column2.tp {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.column2.bm {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.column2 .child {
  width: 48%;
}

.column2 .child01 {
  width: 40%;
}

.column2 .child02 {
  width: 55%;
}

.column2 .child03 {
  width: 35%;
}

.column2 .child04 {
  width: 60%;
}

.column2 .child-txt {
  position: absolute;
  width: 45%;
  right: 0;
  padding: 35px 30px;
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.column2 .child-txt.type1 {
  right: auto;
  left: 0;
}

.column2 .child-img {
  width: 75%;
}

.column2 .child-img.type1 {
  margin-left: auto;
}

@media all and (max-width: 896px) {
  .column2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .column2 .child,
  .column2 .child01,
  .column2 .child02,
  .column2 .child03,
  .column2 .child04,
  .column2 .child-img {
    width: 100%;
  }
  .column2 .child.bm10,
  .column2 .child01.bm10,
  .column2 .child02.bm10,
  .column2 .child03.bm10,
  .column2 .child04.bm10,
  .column2 .child-img.bm10 {
    margin-bottom: 10px;
  }
  .column2 .child.bm20,
  .column2 .child01.bm20,
  .column2 .child02.bm20,
  .column2 .child03.bm20,
  .column2 .child04.bm20,
  .column2 .child-img.bm20 {
    margin-bottom: 20px;
  }
  .column2 .child.column2-img,
  .column2 .child01.column2-img,
  .column2 .child02.column2-img,
  .column2 .child03.column2-img,
  .column2 .child04.column2-img,
  .column2 .child-img.column2-img {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-bottom: 30px;
  }
  .column2 .child-txt {
    position: relative;
    width: 90%;
    margin: -20px auto !important;
    padding: 20px 10px !important;
  }
  .column2 .child-img {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin: auto !important;
  }
}

.slider {
  width: 100vw;
  height: 95vh;
  position: relative;
  overflow: hidden;
}

@media all and (max-width: 639px) {
  .slider#pcbr {
    min-height: 0 !important;
    position: static !important;
    opacity: 0 !important;
    display: none;
  }
}

.slider > div {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: absolute;
  left: 0;
  top: 0;
}

.slider > div img.slider-img {
  display: none;
}

.slider > div > div {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  background-repeat: no-repeat;
}

@media all and (max-width: 1100px) {
  .slider {
    height: 50vh;
  }
}

@media screen and (max-width: 890px) and (orientation: landscape) {
  .slider {
    height: 100vh;
  }
}

@media all and (max-width: 639px) {
  .slider {
    height: 60vh;
  }
}

.slider .slide-txt {
  position: absolute;
  left: 20px;
  bottom: 5%;
  width: 500px;
  z-index: 5;
}

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

.problem-list > li {
  width: 31%;
  margin-right: calc(2.33% + (2.33% / 2));
  margin-bottom: 25px;
}

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

@media all and (max-width: 639px) {
  .problem-list > li {
    width: 100%;
    margin: 0 auto 8px;
  }
  .problem-list > li:nth-child(3n) {
    margin-right: auto;
  }
}

.problem-list > li a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  padding: 15px 45px 15px 10px;
  background: #fff;
  font-weight: 600;
  font-size: 1.1em;
  -webkit-transition: background 0.2s ease-in;
  transition: background 0.2s ease-in;
}

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

.problem-list > li a:after {
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: 900;
  position: absolute;
  width: 30px;
  height: 30px;
  line-height: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 10px;
  text-align: center;
  border: 1px solid #ef9200;
  border-radius: 50%;
}

.problem-list > li a:hover {
  background: #b8e4e9;
}

/* slick
----------------------------------*/
.slider-wrap {
  position: relative;
  margin: 10px auto 80px;
}

.slide-item {
  width: 100%;
  max-width: 800px;
  position: relative;
}

.slide-item .title02 {
  position: absolute;
  left: 10px;
  bottom: 5px;
}

.slide-arrow {
  position: absolute;
  top: 50%;
  z-index: 200;
  width: 20px;
  height: 20px;
  top: 50%;
  margin-top: -10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  cursor: pointer;
}

@media all and (max-width: 639px) {
  .slide-arrow {
    width: 15px;
    height: 15px;
    margin-top: -7px;
  }
}

.slide-arrow.prev-arrow {
  left: 50%;
  margin-left: -420px;
  border-bottom: solid 2px;
  border-left: solid 2px;
  border-color: #ef9200;
}

@media all and (max-width: 1100px) {
  .slide-arrow.prev-arrow {
    left: 10px;
    margin-left: 0;
  }
}

@media all and (max-width: 639px) {
  .slide-arrow.prev-arrow {
    border-color: #eeb51c;
  }
}

.slide-arrow.next-arrow {
  right: 50%;
  margin-right: -420px;
  border-top: solid 2px;
  border-right: solid 2px;
  border-color: #ef9200;
}

@media all and (max-width: 1100px) {
  .slide-arrow.next-arrow {
    right: 10px;
    margin-right: 0;
  }
}

@media all and (max-width: 639px) {
  .slide-arrow.next-arrow {
    border-color: #eeb51c;
  }
}

.slide_list {
  position: relative;
  display: none;
}

.slide_list li img {
  width: auto;
  height: 300px;
  -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;
}

.slide_list li:hover img {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

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

.slide_list {
  position: relative;
  display: none;
}

.slide_list li img {
  width: auto;
  height: 240px;
}

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

#top-modal {
  position: absolute;
  background: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

#top-modal.close {
  display: none;
  opacity: 0;
}

#top-modal .modal-box {
  max-width: 800px;
  padding: 40px 30px;
  background: #fff;
  border-radius: 20px;
  position: relative;
  font-size: 1.4rem;
  letter-spacing: 0;
}

@media all and (max-width: 896px) {
  #top-modal .modal-box {
    max-width: 90%;
  }
}

@media all and (max-width: 639px) {
  #top-modal .modal-box {
    padding: 25px 15px;
    font-size: 13px;
  }
}

#top-modal .modal-close {
  display: block;
  position: absolute;
  right: 10px;
  top: 10px;
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 1.8rem;
  background: #ef9200;
  color: #fff;
  text-align: center;
  border-radius: 100%;
}

@media all and (max-width: 639px) {
  #top-modal .modal-close {
    top: -20px;
  }
}

.gcalendar {
  width: 100%;
  height: 350px;
}

.num-big {
  text-align: center;
  font-size: 6rem;
  line-height: 1;
  font-family: 'Homemade Apple', cursive;
  font-weight: 400;
  color: rgba(238, 181, 28, 0.7);
  position: relative;
  z-index: 3;
  margin: 0 auto -30px;
}

@media all and (max-width: 639px) {
  .num-big {
    font-size: 4rem;
    margin-bottom: -20px;
  }
}

.btn03 {
  display: inline-block;
  background: #ef9200;
  padding: 10px 20px;
  margin-top: 10px;
  color: #fff;
  border: 1px solid #ef9200;
}

.btn03:hover {
  background: #fff;
  color: #ef9200;
}

.btn04 {
  display: block;
  padding: 4px 8px;
  text-align: center;
  background: #ef9200;
  border: 0.9px solid #d68200;
  color: #fff;
}

.btn04:hover {
  background: #d68200;
}

.btn04.type1 {
  background: #eeb51c;
  border: 0.9px solid #e0a811;
}

.btn04.type1:hover {
  background: #e0a811;
}

.linkbox {
  width: 100%;
  display: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  position: absolute;
  bottom: -20px;
  z-index: 2;
}

.linkbox .list {
  width: 32%;
  background: #fff;
  padding: 5px;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.22);
          box-shadow: 0 3px 5px rgba(0, 0, 0, 0.22);
}

.linkbox .list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
}

.linkbox .list a p {
  text-align: center;
  background: linear-gradient(146deg, #ffffff, #99ccff, #ef9200);
  letter-spacing: -0.5px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  text-shadow: 1px 1px #ef9200;
  padding: 10px 0;
  font-size: 12px;
}

.risk li {
  padding-left: 1em;
  text-indent: -1em;
  border-bottom: 1px dotted;
  margin-bottom: 10px;
}

.txt-common {
  padding: 50px 10px 0;
}

.tel-big a {
  display: block;
  text-align: center;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.2;
  font-family: "Varela Round", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1rem;
  color: #5e3816;
}

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

.tel-big a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 8px;
  font-size: 0.8em;
  color: #eeb51c;
}

.tel-big a:hover {
  color: #FF8036;
}

.slide-topics {
  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: 800px;
  position: relative;
  margin: 0 auto 40px;
}

.slide-topics .child {
  position: relative;
  width: 31%;
  padding: 20px 15px;
  background-image: linear-gradient(45deg, lemonchiffon, #fff, #fff, #fff, #fff, lemonchiffon);
  -webkit-box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.6);
          box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.6);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0;
  border-radius: 10px 0 10px 0;
}

.slide-topics .child .title {
  font-weight: 600;
  font-size: 1.8rem;
  text-align: center;
  line-height: 1.4;
  position: relative;
  z-index: 2;
}

.slide-topics .child .title em {
  color: #FF8036;
  font-size: 2.4rem;
}

.slide-topics .child:before {
  position: absolute;
  content: "";
  width: 50px;
  height: 50px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 8px solid #eeb51c;
  border-radius: 50%;
  opacity: 0.5;
}

@media all and (max-width: 639px) {
  .slide-topics .child:before {
    width: 35px;
    height: 35px;
    top: -20px;
    margin-left: -15px;
  }
}

@media all and (max-width: 639px) {
  .slide-topics .child {
    padding: 18px 10px;
    font-size: 13px;
  }
  .slide-topics .child .title {
    font-size: 1.3rem;
  }
  .slide-topics .child .title em {
    font-size: 1.6rem;
  }
}

.top-interview {
  width: 300px;
  width: 250px;
}

.top-content {
  position: relative;
}

.top-content:before {
  position: absolute;
  content: "";
  width: 70%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.top-content.content1:before {
  background: url(../img/content-01.jpg) no-repeat center/cover;
}

.top-content.content2:before {
  background: url(../img/content-02.jpg) no-repeat center/cover;
}

.top-content.content3:before {
  background: url(../img/content3.jpg) no-repeat center/cover;
}

.top-content .content-block {
  padding: 80px 0;
  position: relative;
  width: 550px;
  margin-left: auto;
  margin-right: 5%;
  z-index: 2;
}

.top-content .content-block .inner {
  background: #fff;
  padding: 60px 50px;
}

@media all and (max-width: 896px) {
  .top-content .content-block {
    width: 350px;
  }
  .top-content .content-block .inner {
    padding: 40px 20px;
  }
}

.top-content.type1:before {
  left: auto;
  right: 0;
}

.top-content.type1 .content-block {
  margin-left: 0;
  margin-right: 0;
}

@media all and (max-width: 639px) {
  .top-content.type1 .content-block {
    margin-right: auto;
    margin-left: auto;
  }
}

.top-content.type2:before {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.top-content.type2 .content-block {
  margin: 0 auto;
}

.top-content.type2 .content-block .inner {
  background: rgba(255, 255, 255, 0.8);
}

@media all and (max-width: 639px) {
  .top-content:before {
    width: 100%;
    height: 240px;
    top: -150px;
  }
  .top-content .content-block {
    padding: 20px 0;
    margin: 150px auto 0;
    width: 95%;
  }
  .top-content .content-block .inner {
    padding: 20px;
  }
  .top-content.type2 .content-block {
    margin: 130px auto 0;
    width: 95%;
  }
}

.message {
  background: rgba(255, 255, 255, 0.6);
  padding: 30px;
  border-radius: 20px;
  font-size: 1.7rem;
  line-height: 2;
  border: 3px solid rgba(239, 146, 0, 0.5);
}

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

.keireki-box {
  background: #fff;
  padding: 40px;
  max-width: 600px;
  margin: 40px auto 0;
}

.top-main-wrap {
  width: 90%;
  background: rgba(255, 251, 229, 0.7);
  border-radius: 60px 0 0 60px;
  margin-left: auto;
  position: relative;
}

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

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

.top-main-box .top-main-img {
  width: 50%;
  height: 550px;
  overflow: hidden;
}

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

.top-main-box .top-main-txt {
  padding: 60px 20px;
  width: 48%;
  position: relative;
}

.top-main-box .top-main-txt .inner {
  max-width: 550px;
  margin: 0 auto;
  position: relative;
}

.top-main-box .kodawari-title {
  width: 500px;
  margin: -40px 0 30px;
}

@media all and (max-width: 639px) {
  .top-main-box .kodawari-title {
    width: 100%;
    margin-top: -60px;
  }
}

@media all and (max-width: 896px) {
  .top-main-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .top-main-box .top-main-img,
  .top-main-box .top-main-txt {
    width: 100%;
  }
  .top-main-box .top-main-img {
    border-radius: 0 60px 0 60px;
    height: auto;
  }
}

.fukidasi {
  margin: -50px auto 40px;
  text-align: center;
  position: relative;
  z-index: 2;
}

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

.fukidasi span {
  display: inline-block;
  position: relative;
  background: #eeb51c;
  padding: 15px 15px;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
}

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

.fukidasi span:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #eeb51c;
}

.fukidasi.type1 span {
  background: #FF8036;
}

.fukidasi.type1 span:before {
  border-top-color: #FF8036;
}

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

.title04 .num {
  position: relative;
  display: inline-block;
  margin: 0.5em 15px 1.5em 0;
  padding: 0 5px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  font-family: 'Homemade Apple', cursive;
  font-weight: 400;
  background: #eeb51c;
  border-radius: 50%;
}

.title04 .num:before {
  content: "";
  position: absolute;
  bottom: -8px;
  right: -12px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-left: 15px solid #eeb51c;
  z-index: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.title04 .lead {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.1em;
  line-height: 1.4;
  letter-spacing: 0.1em;
  color: #E8F7FF;
}

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

.top-concern-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: -50px;
  position: relative;
  z-index: 2;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.top-concern-list li {
  width: 24%;
  padding: 24px 15px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1.5;
  letter-spacing: 0.1rem;
  position: relative;
}

.top-concern-list li:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 0;
  width: 110%;
  height: 110%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #FFD1CA;
  z-index: -1;
  border-radius: 30% 70% 28% 72% / 59% 42% 58% 41%;
  opacity: 0.6;
}

.top-concern-list li:nth-child(2):before {
  background: #eeb51c;
}

.top-concern-list li:nth-child(3):before {
  background: #A7F478;
}

.top-concern-list li:nth-child(4):before {
  background: #E8F7FF;
}

@media all and (max-width: 639px) {
  .top-concern-list li {
    width: 48%;
    margin-bottom: 15px;
    font-size: 1.2rem;
  }
}

.list-btn2 {
  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-btn2 > li {
  width: 250px;
}

.list-btn2 > li:nth-child(2n) {
  margin-left: 20px;
}

.list-btn2 > li a {
  display: block;
  width: 100%;
  border-radius: 40px;
  font-weight: 700;
  text-align: center;
  padding: 10px 0;
  border: 3px solid #70F4CD;
  position: relative;
  -webkit-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
}

.list-btn2 > li a:hover {
  background: #70F4CD;
}

.list-btn2 > li a:before {
  position: absolute;
  content: "";
  right: -10px;
  top: 50%;
  width: 50px;
  height: 30px;
  z-index: 2;
  margin-top: -15px;
  background: url(../img/arrow.png) no-repeat right center/contain;
}

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

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

.article-box .left {
  width: 30%;
}

.article-box .right {
  width: 66%;
}

.article-box.type1 .left {
  width: 35%;
}

.article-box.type1 .right {
  width: 60%;
}

@media all and (max-width: 639px) {
  .article-box.type1 .left {
    width: 100%;
  }
  .article-box.type1 .right {
    width: 100%;
    margin-top: 20px;
  }
}

@media all and (max-width: 896px) {
  .article-box {
    padding: 0 10px;
  }
  .article-box .left {
    width: 100%;
  }
  .article-box .right {
    width: 100%;
    margin-top: 20px;
  }
}

.tel-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  color: #5e3816;
  font-size: 2rem;
}

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

.colorful span {
  color: #ef9200;
}

.colorful span:nth-child(3n-1) {
  color: #eeb51c;
}

.colorful span:nth-child(3n) {
  color: #FF8036;
}

.greet-txt {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
}

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

.aiube-box {
  max-width: 700px;
  margin: 0 auto 30px;
  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-bottom: 10px;
  border-bottom: 2px solid #ccc;
}

.aiube-box .img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 200px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.aiube-box .img img {
  width: 90px;
}

@media all and (max-width: 639px) {
  .aiube-box .img {
    width: 125px;
  }
  .aiube-box .img img {
    width: 55px;
  }
}

.aiube-box .txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 1.1em;
  margin-left: 20px;
  line-height: 1.4;
}

.point-list > li {
  padding: 10px;
  background: rgba(112, 244, 205, 0.3);
  border-radius: 20px 0 20px 0;
  -webkit-box-shadow: 4px 4px #f2f4f5;
          box-shadow: 4px 4px #f2f4f5;
}

.point-list .point-num {
  font-family: "Varela Round", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1rem;
  font-size: 1.8rem;
  text-align: center;
}

.point-list .point-num span {
  font-family: 'Homemade Apple', cursive;
  font-weight: 400;
  font-size: 3.8rem;
  line-height: 1;
  color: #ef9200;
}

/*タブ切り替え全体のスタイル*/
.tabs {
  margin-top: 50px;
  padding-bottom: 40px;
  background-color: #fff;
  width: 100%;
  margin: 0 auto;
}

/*タブのスタイル*/
.tab_item {
  width: calc(100%/2);
  height: 50px;
  border-bottom: 3px solid #ef9200;
  line-height: 50px;
  font-size: 16px;
  text-align: center;
  color: #565656;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  border-radius: 10px 10px 0 0;
}

.tab_item:hover {
  opacity: 0.75;
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  padding: 40px 40px 0;
  clear: both;
  overflow: hidden;
}

/*選択されているタブのコンテンツのみを表示*/
#news:checked ~ #news,
#blog:checked ~ #blog {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  background-color: #ef9200;
  color: #fff;
}

#blog_flexwrap {
  color: #222222;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  margin: 40px auto;
}

@media (max-width: 960px) {
  #blog_flexwrap {
    width: calc(100% - 16px);
  }
}

#blog_flexwrap #blog_side {
  width: 300px;
  margin-left: 40px;
}

#blog_flexwrap #blog_side section {
  margin-bottom: 25px;
}

#blog_flexwrap #blog_main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

#blog_flexwrap #blog_main section {
  padding: 24px;
  margin-bottom: 25px;
}

.blog_sttl01 {
  text-indent: 5px;
  border-top: 1px solid #ef9200;
  border-bottom: 1px solid #ef9200;
  color: #ef9200;
  background: #fff;
  padding: 5px 0;
  margin-bottom: 10px;
  font-weight: normal;
  text-align: center;
}

.blog_mttl {
  width: calc(100% - 20px);
  color: #ef9200;
  font-size: 2.3rem;
  letter-spacing: 0.1rem;
  overflow: hidden;
  font-weight: bold;
  margin: 0px 0 16px;
  line-height: 1.8;
}

@media (max-width: 1200px) {
  .blog_mttl {
    font-size: 1.8rem;
  }
}

.blog_time {
  padding-top: 0px;
  font-weight: normal;
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
  font-weight: 300;
  margin-bottom: 10px;
  text-align: right;
}

@media (max-width: 479px) {
  .blog_time {
    font-size: 1.2rem;
  }
}

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

.blog_box {
  min-height: 500px;
  position: relative;
}

.blog_box img {
  max-width: 100%;
  padding: 16px 0;
}

.pages {
  width: calc(100% - 20px);
  margin-top: 40px;
  font-size: 1.2rem;
}

.pages a {
  display: block;
  padding: 5px 10px;
  border: 1px solid #ef9200;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pages a:link, .pages a:visited {
  color: #ef9200;
}

.pages a:hover {
  opacity: 0.6;
}

.pages .page_next {
  float: left;
  width: calc(45% - 20px);
}

.pages .page_prev {
  float: right;
  text-align: right;
  width: calc(45% - 20px);
}

.archive * {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.archive ul {
  margin: 8px 0 0;
}

.archive li {
  background: #fffbe5;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0 0 0 1px;
          box-shadow: rgba(0, 0, 0, 0.1) 0 0 0 1px;
  background: #fff;
}

.archive li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 8px;
}

.archive li a:link, .archive li a:visited {
  color: #333;
}

.archive li a:hover {
  color: #ef9200;
}

.blog_side_list {
  position: relative;
  margin: 0 0 16px !important;
  padding: 0 !important;
  width: 100% !important;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.blog_side_list .blog_bx {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  width: 100% !important;
  border-bottom: 1px solid #ef9200;
  position: relative;
  padding: 8px;
  margin-bottom: 8px;
  background: #FEFEFE;
}

.blog_side_list .blog_bx a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.blog_side_list .blog_bx .blog_bx_flex {
  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_side_list .blog_bx .blog_bx_flex div {
  width: calc(100% - 120px);
  padding: 0;
}

.blog_side_list .blog_bx:hover {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  background: #F8F8F8;
}

.blog_side_list .blog_bx figcaption {
  width: 100px;
  height: 100px;
  display: block;
  text-align: center;
  background-position: center center;
  background-repeat: no-repeat;
  float: left;
  margin-bottom: 0px;
  -webkit-box-shadow: rgba(17, 17, 17, 0.1) 0 0 1px 1px;
          box-shadow: rgba(17, 17, 17, 0.1) 0 0 1px 1px;
}

.blog_side_list .blog_bx * {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.blog_side_list .blog_bx img {
  vertical-align: middle;
  height: 100px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

.blog_side_list .blog_bx:hover img {
  opacity: 1 !important;
}

.blog_side_list .blog_bx .ttl {
  font-weight: bold;
  font-size: 1.2rem;
  color: #ef9200;
  float: none;
  background: #fff;
  padding: 0 0px;
  border-bottom: 1px dashed #ef9200;
}

.blog_side_list .blog_bx .ttm {
  float: none;
  padding-top: 0px;
  font-size: 1.2rem;
  color: #888;
  font-weight: normal;
}

.blog_side_list .blog_bx .ttm:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f017";
  margin-right: 5px;
  font-weight: normal;
}

.blog_side_list .blog_bx .blog_ttl {
  clear: both;
  font-weight: bold;
  color: #ef9200;
  font-size: 1.5rem;
  margin-bottom: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: "Zen Kaku Gothic New", sans-serif, "YakuHanJP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

@media all and (max-width: 639px) {
  .blog_side_list .blog_bx .blog_ttl {
    font-size: 1.1rem;
    letter-spacing: .02rem;
    line-height: 1.2;
  }
}

.blog_side_list.list .ttl {
  display: none;
}

.blog_top_list {
  position: relative;
  margin: 0 0px 16px 0 !important;
  padding: 0 !important;
  width: 100% !important;
  height: auto;
  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_top_list:after {
  content: "";
  display: block;
  width: 31%;
}

.blog_top_list .blog_bx {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  width: calc(33.33% - 16px) !important;
  font-size: 12px;
  margin: 25px 0;
  position: relative;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  background-color: #FFFFFF;
  border: 1px solid #ef9200;
  padding: 10px;
}

.blog_top_list .blog_bx:nth-child(3) {
  margin-right: 0px;
}

.blog_top_list .blog_bx a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.blog_top_list .blog_bx .blog_bx_flex {
  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;
  background: #fff;
}

.blog_top_list .blog_bx .blog_bx_flex div {
  width: 100%;
  padding: 16px;
}

.blog_top_list .blog_bx:hover {
  -webkit-transform: translateY(-16px);
          transform: translateY(-16px);
  -webkit-box-shadow: 3px 3px 10px rgba(17, 17, 17, 0.2);
          box-shadow: 3px 3px 10px rgba(17, 17, 17, 0.2);
}

.blog_top_list .blog_bx figcaption {
  display: block;
  text-align: center;
  width: 100%;
  height: 230px;
  overflow: hidden;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  float: none;
}

.blog_top_list .blog_bx * {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.blog_top_list .blog_bx p {
  line-height: 1.6em;
  font-size: 13px;
}

.blog_top_list .blog_bx img {
  vertical-align: middle;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

.blog_top_list .blog_bx:hover img {
  opacity: 1 !important;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.blog_top_list .blog_bx .ttl {
  font-weight: bold;
  font-size: 12px;
  color: #fff;
  float: left;
  background: #ef9200;
  padding: 0 15px;
  margin-bottom: 5px;
}

.blog_top_list .blog_bx .ttm {
  padding-top: 0px;
  font-size: 12px;
  font-weight: normal;
  color: #aaa;
}

.blog_top_list .blog_bx .ttm:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f017";
  margin: 0 5px;
  font-weight: normal;
}

.blog_top_list .blog_bx .blog_ttl {
  clear: both;
  font-weight: bold;
  font-size: 1.4rem;
  color: #ef9200;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: "Zen Kaku Gothic New", sans-serif, "YakuHanJP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.blog_top_list .blog_bx .blog_text {
  margin-top: 5px;
}

@media (max-width: 960px) {
  .blog_top_list {
    position: relative;
    margin: 0 0 16px !important;
    padding: 0 !important;
    width: 100% !important;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .blog_top_list .blog_bx {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    width: 100% !important;
    border-bottom: 1px solid #ef9200;
    position: relative;
    padding: 8px;
    margin-bottom: 8px;
    background: #FEFEFE;
  }
  .blog_top_list .blog_bx a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
  }
  .blog_top_list .blog_bx .blog_bx_flex {
    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_top_list .blog_bx .blog_bx_flex div {
    width: calc(100% - 120px);
    padding: 0;
  }
  .blog_top_list .blog_bx:hover {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    background: #F8F8F8;
  }
  .blog_top_list .blog_bx figcaption {
    width: 100px;
    height: 100px;
    display: block;
    text-align: center;
    background-position: center center;
    background-repeat: no-repeat;
    float: left;
    margin-bottom: 0px;
    -webkit-box-shadow: rgba(17, 17, 17, 0.1) 0 0 1px 1px;
            box-shadow: rgba(17, 17, 17, 0.1) 0 0 1px 1px;
  }
  .blog_top_list .blog_bx * {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .blog_top_list .blog_bx img {
    vertical-align: middle;
    height: 100px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    font-family: "object-fit: cover;";
  }
  .blog_top_list .blog_bx:hover img {
    opacity: 1 !important;
  }
  .blog_top_list .blog_bx .ttl {
    font-weight: bold;
    font-size: 1.2rem;
    color: #ef9200;
    float: none;
    background: #fff;
    padding: 0 0px;
    border-bottom: 1px dashed #ef9200;
  }
  .blog_top_list .blog_bx .ttm {
    float: none;
    padding-top: 0px;
    font-size: 1.2rem;
    color: #888;
    font-weight: normal;
  }
  .blog_top_list .blog_bx .ttm:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f017";
    margin-right: 5px;
    font-weight: normal;
  }
  .blog_top_list .blog_bx .blog_ttl {
    clear: both;
    font-weight: bold;
    color: #ef9200;
    font-size: 1.5rem;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: "Zen Kaku Gothic New", sans-serif, "YakuHanJP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }
}

@media all and (max-width: 960px) and (max-width: 639px) {
  .blog_top_list .blog_bx .blog_ttl {
    font-size: 1.1rem;
    letter-spacing: .02rem;
    line-height: 1.2;
  }
}

@media (max-width: 960px) {
  .blog_top_list .blog_bx {
    width: calc(50% - 16px);
    margin: 0;
    border: none;
    border-bottom: 1px solid #ef9200;
  }
  .blog_top_list .blog_bx figcaption {
    border-radius: 0;
  }
  #blog_flexwrap {
    display: -webkit-block;
    display: block;
    width: 95%;
    margin: 20px auto 30px;
  }
  #blog_flexwrap #blog_main {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-bottom: 32px;
  }
  #blog_flexwrap #blog_side {
    width: 100%;
    margin-left: 0px;
  }
  .pages {
    width: 100%;
  }
  .pages .page_next {
    float: none;
    width: calc(100% - 20px);
    margin-bottom: 8px;
  }
  .pages .page_prev {
    float: none;
    text-align: left;
    width: calc(100% - 20px);
  }
}

.rel-box {
  position: relative;
}

.top-sc01 {
  position: relative;
  /*&:after{
		background: url("../img/deco04.png") no-repeat center / contain;
		left: 0;
		animation: yurayura 1.5s ease-in-out infinite alternate;
	}
	&:before{
		background: url("../img/deco05.png") no-repeat center / contain;
		right: 0;
		animation: yurayura2 1.5s ease-in-out infinite alternate;
	}*/
}

.top-sc01:after, .top-sc01:before {
  position: absolute;
  content: "";
  width: 300px;
  height: 200px;
  z-index: 30;
  top: -1%;
}

@media all and (max-width: 639px) {
  .top-sc01:after, .top-sc01:before {
    width: 130px;
    height: 100px;
    top: -3%;
  }
}

.tcen {
  text-align: center;
}

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

.top2_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: center;
      -ms-flex-align: center;
          align-items: center;
}

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

.top2_box .child1 {
  width: 40%;
  padding: 20px 10px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  text-align: center;
  line-height: 2.5;
}

@media all and (max-width: 1100px) {
  .top2_box .child1 {
    line-height: 2;
    width: 52%;
  }
}

@media all and (max-width: 896px) {
  .top2_box .child1 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 90%;
  }
}

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

.top2_box .child2,
.top2_box .child3 {
  width: 23%;
}

@media all and (max-width: 1100px) {
  .top2_box .child2,
  .top2_box .child3 {
    width: 15%;
  }
}

@media all and (max-width: 896px) {
  .top2_box .child2,
  .top2_box .child3 {
    margin-top: 30px;
    width: 50%;
  }
}

.top2_box .child2 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.top2_box .child3 {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

@media all and (max-width: 896px) {
  .top2_box .child3 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.top2_box .img_list li:nth-child(2n) img {
  width: 80%;
  margin: 40px 0 0 100px;
}

@media all and (max-width: 896px) {
  .top2_box .img_list li:nth-child(2n) img {
    margin: 0;
    width: auto;
  }
}

@media all and (max-width: 896px) {
  .top2_box .img_list li {
    width: 45%;
  }
}

@media all and (max-width: 896px) {
  .top2_box .img_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}

.top2_box .img_list.type1 li:nth-child(2n) img {
  width: 80%;
  margin: 40px 0 0 -50px;
}

@media all and (max-width: 896px) {
  .top2_box .img_list.type1 li:nth-child(2n) img {
    margin: 0;
    width: auto;
  }
}

@media all and (max-width: 896px) {
  .top2_box .img_list.type1 li {
    width: 45%;
  }
}

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

.column-m > .child01 {
  width: 40%;
}

.column-m > .child01 img {
  width: 100%;
}

.column-m > .child02 {
  width: 55%;
}

@media all and (max-width: 639px) {
  .column-m > .child01,
  .column-m .child02 {
    width: 100%;
  }
  .column-m > .child01 {
    margin-bottom: 15px;
  }
}

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

.cak-list > li {
  width: 23.5%;
  position: relative;
  margin: 0 calc(1.33% + (1.33% / 2)) 20px 0;
}

.cak-list > li .img-cak {
  margin: 0 auto;
  width: 140px;
  height: 140px;
}

.cak-list > li .img-cak img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

.cak-list > li .img-text {
  background: #f3cc63;
  padding: 10px;
  text-align: center;
  width: 80%;
  margin: 5px auto 0;
  font-size: 1.2rem;
  letter-spacing: .01rem;
}

.cak-list > li::after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: 900;
  top: 50%;
  right: -15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

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

.cak-list > li:nth-child(4n)::after {
  display: none;
}

@media all and (max-width: 1100px) {
  .cak-list > li {
    width: 48%;
  }
  .cak-list > li:nth-child(2n) {
    margin-right: 0;
  }
  .cak-list > li:nth-child(2n)::after {
    display: none;
  }
}

@media all and (max-width: 639px) {
  .cak-list > li {
    width: 48%;
  }
  .cak-list > li .img-text {
    font-size: 1rem;
    width: 90%;
  }
  .cak-list > li::after {
    right: -10px;
    top: 40%;
  }
  .cak-list > li:nth-child(3n) {
    margin: 0 calc(1.33% + (1.33% / 2)) 20px 0;
  }
  .cak-list > li:nth-child(3n)::after {
    display: block;
  }
  .cak-list > li:nth-child(4n) {
    margin-right: 0;
  }
  .cak-list > li:nth-child(4n)::after {
    display: none;
  }
  .cak-list > li:nth-child(2n) {
    margin-right: 0;
  }
  .cak-list > li:nth-child(2n)::after {
    display: none;
  }
}

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

.ks-list > li {
  width: 50%;
  position: relative;
  background: url("../img/ks_bg1.jpg") no-repeat center/cover;
  height: 350px;
  padding: 40px;
}

@media all and (max-width: 896px) {
  .ks-list > li {
    padding: 40px 10px;
  }
}

@media all and (max-width: 639px) {
  .ks-list > li {
    padding: 20px 10px;
  }
}

.ks-list > li:nth-child(2n) {
  background: url("../img/ks_bg3.jpg") no-repeat center/cover;
}

.ks-list > li .text-r {
  text-align: right;
  font-size: 2.5rem;
}

@media all and (max-width: 896px) {
  .ks-list > li .text-r {
    font-size: 2rem;
  }
}

@media all and (max-width: 639px) {
  .ks-list > li .text-r {
    font-size: 1.2rem;
  }
}

.ks-list > li .text-l {
  font-size: 2.5rem;
}

@media all and (max-width: 896px) {
  .ks-list > li .text-l {
    font-size: 2rem;
  }
}

@media all and (max-width: 639px) {
  .ks-list > li .text-l {
    font-size: 1.2rem;
  }
}

.ks-list > li .btn-r,
.ks-list > li .btn-l {
  position: absolute;
  bottom: -8%;
  z-index: 3;
}

.ks-list > li .btn-r::after,
.ks-list > li .btn-l::after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f061";
  font-weight: 900;
  top: 65%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 4rem;
  color: #ef9200;
}

@media all and (max-width: 1100px) {
  .ks-list > li .btn-r::after,
  .ks-list > li .btn-l::after {
    font-size: 2rem;
  }
}

.ks-list > li .btn-r:hover,
.ks-list > li .btn-l:hover {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: .6;
}

.ks-list > li .btn-r:hover::after,
.ks-list > li .btn-l:hover::after {
  left: 55%;
}

@media all and (max-width: 1100px) {
  .ks-list > li .btn-r img,
  .ks-list > li .btn-l img {
    width: 130px;
  }
}

@media all and (max-width: 639px) {
  .ks-list > li .btn-r,
  .ks-list > li .btn-l {
    bottom: 11%;
  }
  .ks-list > li .btn-r img,
  .ks-list > li .btn-l img {
    width: 70px;
  }
}

.ks-list > li .btn-r {
  right: 5%;
}

.ks-list > li .btn-l {
  left: 5%;
}

@media all and (max-width: 1100px) {
  .ks-list > li {
    height: 250px;
  }
}

@media all and (max-width: 639px) {
  .ks-list > li {
    width: 100%;
    height: 180px;
  }
}

.line_btn {
  padding: 2px 0;
  background: #06C755;
  border-radius: 5px;
}

.line_btn iframe {
  height: 16px !important;
}

.movie {
  width: 100%;
  max-width: 500px;
}

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

.doctor_link li {
  width: calc((100% - 20px) / 2);
  margin-right: 20px;
}

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

@media screen and (max-width: 480px) {
  .doctor_link li {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 20px;
  }
  .doctor_link li:last-child {
    margin-bottom: 0px;
  }
}

.doctor_link02 ul {
  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;
  margin-top: 10px;
}

.doctor_link02 li {
  width: calc((100% - 20px) / 2);
}

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

@media screen and (max-width: 480px) {
  .doctor_link02 li {
    margin-right: 20px;
  }
  .doctor_link02 li:nth-child(2n) {
    margin-right: 0px;
  }
}

.onayami {
  background: #fff;
  width: 90%;
  margin: 0 auto 50px;
  position: relative;
  border-radius: 10px;
  position: relative;
  padding: 50px;
}

@media all and (max-width: 639px) {
  .onayami {
    padding: 30px 15px;
    width: 100%;
  }
}

.onayami:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: 4px #ef9200 dotted;
  border-radius: 10px;
  position: absolute;
  right: 3px;
  bottom: 3px;
  z-index: 1;
}

.onayami .onayami_read {
  text-align: center;
  color: #ef9200;
  font-size: 2.5rem;
  position: relative;
  z-index: 2;
}

@media all and (max-width: 639px) {
  .onayami .onayami_read {
    font-size: 2rem;
    letter-spacing: 0;
  }
}

.onayami .onayami__bottom {
  display: block;
  height: 12px;
  margin: auto;
}

.concern_list {
  margin-top: 30px;
  padding: 0 20px;
}

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

.concern_list li {
  padding: 4px 4px 4px 40px;
  font-weight: 600;
  margin-bottom: 8px;
  text-shadow: 0 0 4px #cccccc;
  position: relative;
  border-bottom: 1px solid #ccc;
}

.concern_list li:before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 30px;
  height: 35px;
  background: url(../img/check.png) no-repeat center/contain;
}

@media all and (max-width: 639px) {
  .concern_list li:before {
    width: 25px;
    height: 28px;
  }
}

.sec2-list {
  margin-bottom: 30px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  gap: 15px 5%;
}

@media all and (max-width: 896px) {
  .sec2-list {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    max-width: 400px;
  }
}

.sec2-list li {
  position: relative;
  padding: 12px 5px 12px 30px;
  background: #fefefe;
  border-top: 4px solid #fffbe5;
  border-bottom: 4px solid #fffbe5;
  font-weight: 600;
  font-size: 1.6rem;
  -webkit-box-shadow: 4px 4px 6px rgba(239, 146, 0, 0.1);
          box-shadow: 4px 4px 6px rgba(239, 146, 0, 0.1);
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
}

.sec2-list li:nth-child(2n) {
  -webkit-transform: translateY(25px);
          transform: translateY(25px);
}

@media all and (max-width: 896px) {
  .sec2-list li:nth-child(2n) {
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
}

@media all and (max-width: 639px) {
  .sec2-list li:nth-child(2n) {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
}

@media all and (max-width: 639px) {
  .sec2-list li {
    width: 95%;
    padding: 10px 0 10px 20px;
    font-size: 1.3rem;
    line-height: 1.5;
  }
}

.sec2-list li:before {
  position: absolute;
  content: "";
  left: -10px;
  top: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background: #ef9200;
  border-radius: 50%;
  z-index: 1;
  opacity: 0.5;
}

.sec2-list li span {
  font-size: 2rem;
  color: #bc7300;
}

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

.flow_top {
  width: 100%;
  display: -webkit-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flow_top li {
  width: 25%;
  position: relative;
}

.flow_top li:before {
  content: "";
  display: block;
  width: 35px;
  height: 13px;
  background-image: url(../img/top_3_flow_list_yajirui.svg);
  position: absolute;
  top: 90px;
  right: -13px;
}

.flow_top li:last-child::before {
  display: none;
}

.flow_top li:nth-child(n+5) {
  margin-top: 40px;
}

@media all and (max-width: 639px) {
  .flow_top li:nth-child(n+5) {
    margin-top: 0;
  }
}

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

@media all and (max-width: 639px) {
  .flow_top li:nth-child(even) {
    margin-left: auto;
  }
}

.flow_top li .top_3_list_read {
  position: relative;
}

.flow_top li .top_3_list_read:before {
  content: "";
  display: block;
  width: 90%;
  height: 2px;
  background: #ef9200;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  position: absolute;
}

.flow_top li .top_3_list_read span {
  display: table;
  background: #fff;
  font-family: "Varela Round", sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .1em;
  position: relative;
  padding-right: 10px;
}

.flow_top li img {
  display: block;
  border-radius: 50%;
  width: 150px;
  margin: auto;
}

.flow_top li .top_3_list_main {
  font-size: 17px;
  letter-spacing: .1em;
  letter-spacing: 0;
  font-weight: 500;
  text-align: center;
  background: #f3cc63;
  padding: 5px;
  text-align: center;
  width: 80%;
  margin: 0 auto;
  border-radius: 35px;
  margin-top: 10px;
}

.flow_top li .top_3_list_main span {
  display: block;
  font-size: 15px;
  letter-spacing: .1em;
}

.flow_top li .txt_box {
  width: 80%;
  margin: 0 auto;
  font-size: 15px;
  margin-top: 10px;
}

#top_4 {
  position: relative;
}

#top_4 .top_4_kodawari {
  position: relative;
}

#top_4 .top_4_kodawari ul {
  display: -webkit-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media all and (max-width: 639px) {
  #top_4 .top_4_kodawari ul {
    display: block;
  }
}

#top_4 .top_4_kodawari ul li {
  width: 25%;
  padding: 120px 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-image: url(https://placehold.jp/150x150.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

@media all and (max-width: 896px) {
  #top_4 .top_4_kodawari ul li {
    padding: 100px 30px;
    width: 50%;
  }
}

@media all and (max-width: 639px) {
  #top_4 .top_4_kodawari ul li {
    padding: 70px 20px;
    width: 100%;
  }
}

#top_4 .top_4_kodawari ul li .top_4_read_no {
  display: block;
  position: absolute;
  width: 90px;
}

@media all and (max-width: 896px) {
  #top_4 .top_4_kodawari ul li .top_4_read_no {
    width: 70px;
  }
}

@media all and (max-width: 639px) {
  #top_4 .top_4_kodawari ul li .top_4_read_no {
    width: 56px;
  }
}

#top_4 .top_4_kodawari ul li:first-child {
  background-image: url(../img/top_4-1.jpg);
}

#top_4 .top_4_kodawari ul li:first-child .top_4_read_no {
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}

#top_4 .top_4_kodawari ul li:nth-child(2) {
  background-image: url(../img/top_4-2.jpg);
}

#top_4 .top_4_kodawari ul li:nth-child(2) .top_4_read_no {
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}

#top_4 .top_4_kodawari ul li:nth-child(3) {
  background-image: url(../img/top_4-3.jpg);
}

#top_4 .top_4_kodawari ul li:nth-child(3) .top_4_read_no {
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}

#top_4 .top_4_kodawari ul li:nth-child(4) {
  background-image: url(../img/top_4-4.jpg);
}

#top_4 .top_4_kodawari ul li:nth-child(4) .top_4_read_no {
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}

#top_4 .top_4_kodawari ul li:nth-child(5) {
  background-image: url(../img/top_4-5.jpg);
}

#top_4 .top_4_kodawari ul li:nth-child(5) .top_4_read_no {
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}

#top_4 .top_4_kodawari ul li:nth-child(6) {
  background-image: url(../img/top_4-6.jpg);
}

#top_4 .top_4_kodawari ul li:nth-child(6) .top_4_read_no {
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}

#top_4 .top_4_kodawari ul li:nth-child(7) {
  background-image: url(../img/top_4-7.jpg);
}

#top_4 .top_4_kodawari ul li:nth-child(7) .top_4_read_no {
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}

#top_4 .top_4_kodawari ul li:last-child {
  background-image: url(../img/top_4-8.jpg);
}

#top_4 .top_4_kodawari ul li:last-child .top_4_read_no {
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}

#top_4 .top_4_kodawari ul li .top_4_read {
  font-family: "Zen Kaku Gothic New", sans-serif, "YakuHanJP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  line-height: 1.4;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
}

#top_4 .top_4_kodawari ul li .top_4_read span {
  font-size: 2.3rem;
  color: #ef9200;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, #ffeacf));
  background: linear-gradient(transparent 70%, #ffeacf 0%);
}

@media all and (max-width: 896px) {
  #top_4 .top_4_kodawari ul li .top_4_read span {
    font-size: 1.8rem;
  }
}

@media all and (max-width: 639px) {
  #top_4 .top_4_kodawari ul li .top_4_read {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}

#top_4 .top_4_kodawari ul li .main {
  line-height: 2em;
  font-weight: 500;
}

#top_4 .top_4_kodawari .top_4_read_center {
  display: block;
  height: 200px;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}

@media all and (max-width: 896px) {
  #top_4 .top_4_kodawari .top_4_read_center {
    height: 150px;
  }
}

@media all and (max-width: 639px) {
  #top_4 .top_4_kodawari .top_4_read_center {
    position: relative;
  }
}

#top_4 .top_4_illust {
  display: block;
  width: 379px;
  margin: -80px auto 0;
  z-index: 1;
  position: relative;
}

@media all and (max-width: 639px) {
  #top_4 .top_4_illust {
    width: 60%;
    margin: -40px auto 0;
  }
}

#top_4 .top_4_bottom {
  position: relative;
}

#top_4 .top_4_bottom:before, #top_4 .top_4_bottom:after {
  content: "";
  display: block;
  width: 117px;
  height: 300px;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  background-size: 100%;
  background-repeat: no-repeat;
}

@media all and (max-width: 639px) {
  #top_4 .top_4_bottom:before, #top_4 .top_4_bottom:after {
    display: none;
  }
}

#top_4 .top_4_bottom:before {
  background-image: url(../img/top_6_bg_left.svg);
  left: 0;
}

#top_4 .top_4_bottom:after {
  background-image: url(../img/top_6_bg_right.svg);
  right: 0;
}

#top_4 .top_4_bottom .top_4_bottom_content {
  background: #fff;
  border: 2px solid #ef9200;
  padding: 60px;
  position: relative;
  border-radius: 10px;
}

@media all and (max-width: 639px) {
  #top_4 .top_4_bottom .top_4_bottom_content {
    padding: 60px 20px;
  }
}

#top_4 .top_4_bottom .top_4_bottom_content .top_4_bottom_content_read {
  display: block;
  height: 79px;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: -40px;
}

#top_4 .top_4_bottom .top_4_bottom_content .top_4_bottom_main {
  text-align: center;
  font-weight: 500;
  padding-top: 30px;
  line-height: 2em;
}

@media all and (max-width: 639px) {
  #top_4 .top_4_bottom .top_4_bottom_content .top_4_bottom_main {
    text-align: left;
    padding-top: 0;
    line-height: 1.7em;
  }
}

@media all and (max-width: 639px) {
  #top_4 .top_4_bottom .top_4_bottom_content .top_4_bottom_main br {
    display: none;
  }
}

.list_ttl {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: .1em;
  font-weight: 500;
  position: relative;
  line-height: 1em;
  display: table;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
}

@media all and (max-width: 639px) {
  .list_ttl {
    position: relative;
    -ms-writing-mode: inherit;
    -webkit-writing-mode: inherit;
            writing-mode: inherit;
    margin: 30px 0 0;
  }
}

.list_ttl span {
  display: block;
  color: #ef9200;
  font-size: 14px;
  letter-spacing: .1em;
  line-height: 1em;
  margin-left: 10px;
}

@media all and (max-width: 639px) {
  .list_ttl span {
    margin-left: 0;
    margin-bottom: 8px;
  }
}

.top-feature-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: inherit;
}

.top-feature-list > li {
  width: calc((100% - 4%) / 3);
  margin-right: 2%;
  margin-bottom: 40px;
}

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

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

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

.top-feature-list > li {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fffdf6), to(#fffbe5));
  background-image: linear-gradient(to bottom, #fffdf6, #fffbe5);
  padding: 20px 20px;
  position: relative;
}

.top-feature-list > li:before, .top-feature-list > li:after {
  position: absolute;
  content: "";
  bottom: 0;
  height: 300px;
  width: 100%;
}

.top-feature-list > li:before {
  left: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(235, 218, 194, 0.3)), to(#ebdac2));
  background-image: linear-gradient(to bottom, rgba(235, 218, 194, 0.3), #ebdac2);
  -webkit-clip-path: polygon(0 0, 100% 59%, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 59%, 100% 100%, 0 100%);
  opacity: 0.5;
}

.top-feature-list > li:after {
  right: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(211, 255, 244, 0.2)), to(#abefe1));
  background-image: linear-gradient(to bottom, rgba(211, 255, 244, 0.2), #abefe1);
  -webkit-clip-path: polygon(0 59%, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 59%, 100% 0, 100% 100%, 0 100%);
  opacity: 0.4;
}

.top-feature-list > li:nth-of-type(2n):before {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 250, 205, 0.3)), to(#eeb51c));
  background-image: linear-gradient(to bottom, rgba(255, 250, 205, 0.3), #eeb51c);
  opacity: 0.3;
}

.top-feature-list > li:nth-of-type(2n):after {
  background: #fff;
  opacity: 0.5;
}

.top-feature-list figure {
  position: relative;
  z-index: 2;
}

.top-feature-list figure img {
  width: 100%;
}

.top-feature-list .txt-main {
  position: relative;
  z-index: 2;
  padding: 0 15px;
}

.top-feature-list .top-feature-title {
  position: relative;
  z-index: 4;
  padding-left: 10px;
  margin: 15px 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top-feature-list .top-feature-title .num {
  font-size: 4rem;
  line-height: 1;
  font-weight: 600;
  color: #ef9200;
  font-family: "Varela Round", sans-serif;
}

.top-feature-list .top-feature-title .txt {
  display: inline-block;
  padding: 5px 5px;
  font-size: 1.8rem;
  margin-left: 5px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  letter-spacing: 0.05rem;
}

@media all and (max-width: 639px) {
  .top-feature-list .top-feature-title .num {
    font-size: 3.4rem;
  }
  .top-feature-list .top-feature-title .txt {
    font-size: 1.4rem;
    padding: 3px 6px;
  }
}

.foot_nav {
  display: -webkit-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 60px;
}

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

.foot_nav li {
  width: 32%;
  margin-right: 2%;
}

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

.foot_nav li:nth-child(n+4) {
  margin-top: 25px;
}

.foot_nav li:last-child {
  margin-right: 0;
}

.foot_nav li a {
  display: block;
  font-size: 17px;
  letter-spacing: .1em;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-weight: 500;
  border-left: 3px solid #ccc;
  padding-left: 10px;
}

.foot_nav li a span {
  display: block;
  font-size: 12px;
  letter-spacing: .1em;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  line-height: 1em;
  margin-bottom: 3px;
  padding-top: 6px;
}

.foot_nav li ul {
  display: block;
  margin-top: 6px;
}

.foot_nav li ul li {
  width: 100%;
  margin-right: 0;
}

.foot_nav li ul li:nth-child(n+4) {
  margin-top: 0;
}

.foot_nav li ul li a {
  border: none;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 600;
  font-size: 15px;
  font-size: 0.9375rem;
  letter-spacing: .1em;
}

.foot_sub_nav {
  display: -webkit-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

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

@media all and (max-width: 639px) {
  .foot_sub_nav li {
    width: 100%;
    margin-bottom: 15px;
  }
}

.foot_sub_nav li:nth-child(n+2) {
  margin-left: 30px;
}

@media all and (max-width: 639px) {
  .foot_sub_nav li:nth-child(n+2) {
    margin-left: 0;
  }
}

.foot_sub_nav li a img {
  display: block;
  height: 73px;
  margin: auto;
}
