@charset "UTF-8";

/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
body {
  color: #222;
  background: #fefefe;
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  font-weight: 500;
  position: relative;
  letter-spacing: 0.07em;
}

a {
  color: rgb(110.4193548387, 215.2211981567, 233.5806451613);
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

a.white {
  color: #fff;
}

a.white:hover {
  opacity: 0.8;
}

#wrapper {
  overflow: hidden;
}

.contents {
  position: relative;
  z-index: 1;
}

section.fixed {
  position: sticky;
  padding: 600px 0;
}

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

.bold {
  font-weight: 600;
}

h2,
h3 {
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.border-line {
  display: block;
  border-top: 2px dashed rgb(1.8983050847, 3.3898305085, 6.1016949153);
  margin: 35px 0;
}

.inherit {
  text-transform: inherit !important;
}

en {
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
}

en2,
.eng2 {
  font-family: "Barlow Condensed", serif;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.mincho {
  font-family: "Shippori Mincho", "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 600;
  letter-spacing: 0.1em;
}

/* 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 4s cubic-bezier(0.2, 1, 0.2, 1);
  animation: view-slideup 4s cubic-bezier(0.2, 1, 0.2, 1);
}

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

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

.loader::after {
  -webkit-animation: loader 0.5s linear infinite;
  animation: loader 0.5s linear infinite;
  border: 1px solid #42CBE3;
  border-radius: 50%;
  border-right: 1px solid rgba(66, 203, 227, 0.2);
  border-top: 1px solid rgba(66, 203, 227, 0.2);
  content: "";
  height: 70px;
  width: 70px;
}

.loader.off {
  display: none;
}

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

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

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

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

#l-main {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: #ffffff;
}

#l-header {
  position: absolute;
  width: 100%;
  z-index: 200;
  top: 0;
  left: 0;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}

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

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

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

#l-header .inner #logo {
  width: 300px;
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

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

#l-header .inner #logo:hover {
  opacity: 0.6;
}

#l-header .inner #logo img {
  -webkit-filter: drop-shadow(0 0 5px rgba(51, 51, 51, 0.3));
  filter: drop-shadow(0 0 5px rgba(51, 51, 51, 0.3));
}

#l-header .head-right {
  position: relative;
  margin-left: auto;
}

@media all and (max-width: 896px) {
  #l-header .head-right {
    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;
}

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

@media all and (max-width: 1100px) {
  #l-header .head-right_contact p:not(:last-of-type) {
    margin-right: 10px;
  }
}

#l-header .head-right_tel {
  line-height: 1.3;
  text-align: center;
  -webkit-filter: drop-shadow(0 0 5px rgba(51, 51, 51, 0.3));
  filter: drop-shadow(0 0 5px rgba(51, 51, 51, 0.3));
}

#l-header .head-right_tel span {
  color: #fff;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
}

@media all and (max-width: 896px) {
  #l-header .head-right_tel span {
    font-size: 1.1rem;
  }
}

@media all and (max-width: 639px) {
  #l-header .head-right_tel span {
    font-size: 1rem;
  }
}

#l-header .head-right_tel a {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  display: block;
  font-size: 2.8rem;
  color: #fff;
  color: #ffffff;
  font-family: "Cinzel", serif;
  font-weight: 500;
  letter-spacing: 0.025em;
}

@media all and (max-width: 1100px) {

  #l-header .head-right_tel a {
    font-size: 2.5rem;
  }
}

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

#l-header .head-right_tel a:hover {
  opacity: 0.6;
}

#l-header .head-right_mail a {
  display: inline-block;
  padding: 10px 18px;
  font-size: 1.4rem;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  text-align: center;
  line-height: 1.4;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-filter: drop-shadow(0 0 5px rgba(51, 51, 51, 0.3));
  filter: drop-shadow(0 0 5px rgba(51, 51, 51, 0.3));
}

#l-header .head-right_mail a i {
  margin-right: 6px;
}

@media all and (max-width: 1100px) {

  #l-header .head-right_mail a {
    padding: 8px 15px;
    font-size: 1.35rem;
  }

  #l-header .head-right_mail a i {
    margin-right: 4px;
  }
}

#l-header .head-right_mail a:hover {
  background: #fff;
  color: #42CBE3;
}

#head-right_lower {
  position: relative;
  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: 0 auto;
  width: 100%;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  z-index: 100;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border: 1px solid transparent;
}

#head-right_lower.is-fixed {
  position: fixed;
  top: 5px;
  width: 98%;
  background: #ffffff;
  max-width: 1200px;
  -webkit-filter: drop-shadow(0 0 10px rgba(51, 51, 51, 0.08));
  filter: drop-shadow(0 0 10px rgba(51, 51, 51, 0.08));
}

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

#header_nav {
  position: relative;
  left: 0;
  right: 0;
  z-index: 10;
  margin: auto;
  width: 100%;
  max-width: 1200px;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}

.is-fixed #header_nav>ul:before,
.is-fixed #header_nav>ul:after {
  display: none;
}

.is-fixed #header_nav>ul li:not(:last-child) a:before {
  background: #dddddd;
}

.is-fixed #header_nav>ul li a {
  color: #333;
  -webkit-filter: none;
  filter: none;
  padding: 15px 0;
}

.is-fixed #header_nav>ul li a span {
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  color: #999999;
}

.is-fixed #header_nav>ul li a.active,
.is-fixed #header_nav>ul li a:hover {
  color: #333;
}

.is-fixed #header_nav>ul li a.active span,
.is-fixed #header_nav>ul li a:hover span {
  color: #42CBE3;
}

.is-fixed #header_nav>ul li:not(:last-child) a:before {
  background: #dddddd;
}

.is-fixed #header_nav .dropdown {
  background: #ffffff;
}

.is-fixed #header_nav .dropdown li:first-child {
  border-top: 1px solid #dddddd;
}

.is-fixed #header_nav .dropdown li:not(:last-child) {
  border-bottom: 1px solid #dddddd;
}

.is-fixed #header_nav .dropdown .dropdown-li a {
  background: #ffffff;
}

.is-fixed #header_nav .dropdown .dropdown-li a:hover {
  color: #333;
  background: #f4f4f4;
}

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

#header_nav>ul {
  position: relative;
  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;
}

#header_nav>ul:before,
#header_nav>ul:after {
  position: absolute;
  content: "";
  background: #ffffff;
  width: 1px;
  height: 62%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

#header_nav>ul:before {
  left: 0;
}

#header_nav>ul:after {
  right: 0;
}

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

#header_nav>ul li:not(:last-child) a:before {
  position: absolute;
  content: "";
  background: #ffffff;
  width: 1px;
  height: 62%;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

#header_nav>ul li a {
  position: relative;
  display: block;
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 1.7rem;
  color: #fff;
  padding: 20px 0;
  -webkit-filter: drop-shadow(0 0 5px rgba(51, 51, 51, 0.3));
  filter: drop-shadow(0 0 5px rgba(51, 51, 51, 0.3));
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  line-height: 1.6;
}

#header_nav>ul li a span {
  position: relative;
  display: block;
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 1.1rem;
}

#header_nav>ul li a:hover {
  color: rgba(255, 255, 255, 0.6);
}

@media all and (max-width: 1100px) {

  #header_nav>ul:before,
  #header_nav>ul:after {
    display: none;
  }
}

#header_nav .dropdown {
  display: none;
  position: absolute;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  left: 50%;
  top: 100%;
  z-index: 999;
  width: 100%;
  overflow: hidden;
}

#header_nav .dropdown li:not(:last-child) {
  border-bottom: 1px solid #ffffff;
}

#header_nav .dropdown .dropdown-li a {
  display: block;
  width: auto;
  padding: 10px;
  font-size: 1.4rem;
  background: rgba(51, 51, 51, 0.3);
  backdrop-filter: blur(5px);
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  -webkit-filter: none;
  filter: none;
}

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

#header_nav .dropdown .dropdown-li a:hover {
  color: #fff;
  background: rgba(51, 51, 51, 0.6);
}

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

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

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

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

  #page-top a {
    width: 34px;
    height: 34px;
    line-height: 34px;
  }
}

/* swiper
----------------------------------*/
#top_image {
  z-index: -9999;
  position: relative;
  width: 100%;
  height: 95vh;
}

#top_image img {
  -webkit-animation: zoom-out 8s linear 0s 1 normal both;
  animation: zoom-out 8s linear 0s 1 normal both;
}

#top_image:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(17, 17, 17, 0.4)), to(rgba(51, 51, 51, 0.4)));
  background: linear-gradient(to bottom, rgba(17, 17, 17, 0.4), rgba(51, 51, 51, 0.4));
}

@media all and (max-width: 896px) {
  #top_image {
    height: 65vw;
  }
}

@media all and (max-width: 639px) {
  #top_image {
    height: 70vh;
  }
}

@-webkit-keyframes zoom-out {
  0% {
    -webkit-filter: blur(25px);
    filter: blur(25px);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  10% {
    -webkit-filter: blur(10px);
    filter: blur(10px);
  }

  15% {
    -webkit-filter: blur(0);
    filter: blur(0);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes zoom-out {
  0% {
    -webkit-filter: blur(25px);
    filter: blur(25px);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  10% {
    -webkit-filter: blur(10px);
    filter: blur(10px);
  }

  15% {
    -webkit-filter: blur(0);
    filter: blur(0);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes zoom-in {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

@keyframes zoom-in {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
  -webkit-animation: zoom-out 8s linear 0s 1 normal both;
  animation: zoom-out 8s 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: 50% 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;
  position: relative;
}

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

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

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

#slideshow {
  position: relative;
}

#slideshow:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27549/raster.png) repeat;
}

.slide-txt {
  position: absolute;
  left: 50%;
  top: 47%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 40%;
  padding: 30px 25px;
  z-index: 20;
  background-image: linear-gradient(69deg, transparent 0%, rgba(255, 255, 255, 0.6) 20%, #fff 50%, rgba(255, 255, 255, 0.6) 80%, transparent 100%);
  backdrop-filter: blur(4px);
  text-align: center;
}

@media all and (max-width: 1100px) {
  .slide-txt {
    width: 55%;
  }
}

@media all and (max-width: 639px) {
  .slide-txt {
    padding: 20px 10px;
    width: 80%;
  }
}

.slide-txt:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 10px;
  left: 10px;
  border: 0.9px solid #fff;
  opacity: 0.7;
}

@media all and (max-width: 639px) {
  .slide-txt:before {
    top: 5px;
    left: 5px;
  }
}

.slide-fixed {
  position: absolute;
  left: 50%;
  bottom: 2%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 500px;
  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;
  z-index: 20;
}

@media all and (max-width: 896px) {
  .slide-fixed {
    width: 50%;
  }
}

.slide-fixed li {
  width: 31%;
}

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

#catch {
  z-index: 50;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  width: 70%;
  max-width: 600px;
  opacity: 0;
}

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

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

#scrolldown {
  position: absolute;
  right: 30px;
  bottom: 30px;
  color: #f2f2f2;
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
  text-shadow: 0 0 5px rgba(51, 51, 51, 0.5);
}

#scrolldown a {
  color: #f2f2f2;
}

#scrolldown {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  font-size: 1.2rem;
  z-index: 30;
  height: 180px;
}

#scrolldown:before,
#scrolldown:after {
  position: absolute;
  content: "";
  z-index: 2;
  left: 50%;
  -webkit-box-shadow: 0 0 5px rgba(51, 51, 51, 0.5);
  box-shadow: 0 0 5px rgba(51, 51, 51, 0.5);
}

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

#scrolldown:after {
  width: 8px;
  height: 8px;
  background: rgba(242, 242, 242, 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: 639px) {
  #scrolldown {
    display: none;
  }
}

@-webkit-keyframes scroll-point {
  0% {
    bottom: 0;
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  50% {
    top: 150px;
    opacity: 1;
  }

  80% {
    opacity: 0;
  }

  100% {
    top: 180px;
    opacity: 0;
  }
}

@keyframes scroll-point {
  0% {
    bottom: 0;
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  50% {
    top: 150px;
    opacity: 1;
  }

  80% {
    opacity: 0;
  }

  100% {
    top: 180px;
    opacity: 0;
  }
}

/* contact_bnr
----------------------------------*/
.contact_bnr {
  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;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact_bnr>li {
  width: 49%;
}

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

  .contact_bnr>li:last-child {
    margin: 0 auto;
  }
}

.contact_bnr>li .bnr_tel {
  white-space: nowrap;
  position: relative;
}

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

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

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

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

.contact_bnr>li a,
.contact_bnr>li span {
  display: block;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.2rem;
  padding: 12px 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.contact_bnr>li a:before,
.contact_bnr>li span:before {
  margin-right: 5px;
  position: relative;
  display: inline-block;
}

@media all and (max-width: 639px) {

  .contact_bnr>li a,
  .contact_bnr>li span {
    margin: 0 auto;
    white-space: nowrap;
    padding: 10px 0;
    width: 100%;
    font-size: 1.5rem;
  }

  .contact_bnr>li a:before,
  .contact_bnr>li span:before {
    font-size: 1.3rem;
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }
}

.contact_bnr>li a:hover {
  backdrop-filter: blur(3px);
  background: rgba(255, 255, 255, 0.2);
}

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

#l-footer:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #f4f4f4;
}

#l-footer .inner {
  position: relative;
  margin: 0 auto;
  max-width: 1200px;
  padding: 60px 10px;
}

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

#l-footer .footer-column .footer-left {
  width: 360px;
}

#l-footer .footer-column .footer-right {
  width: calc(100% - 400px);
}

@media all and (max-width: 1100px) {
  #l-footer .inner {
    padding: 50px 10px;
  }

  #l-footer .footer-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  #l-footer .footer-column .footer-left,
  #l-footer .footer-column .footer-right {
    width: 95%;
    margin: 0 auto;
  }

  #l-footer .footer-column .footer-left {
    margin-bottom: 30px;
  }
}

@media all and (max-width: 896px) {
  #l-footer {
    font-size: 1.3rem;
  }

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

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

  #l-footer .inner {
    padding: 30px 10px;
  }
}

/* footer_navi
----------------------------------*/
.footer_navi {
  margin: 0 auto;
}

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

.footer_navi ul li {
  position: relative;
  text-align: left;
  width: 16%;
}

.footer_navi ul li.foot_none {
  display: none;
}

.footer_navi ul li:not(:last-child) {
  margin-bottom: 5px;
}

.footer_navi ul li a {
  letter-spacing: 0.15em;
  color: #555;
  font-size: 1.4rem;
  font-weight: 600;
  display: block;
}

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

.footer_navi ul li a:hover {
  opacity: 0.6;
}

.footer_navi ul li .dropdown {
  margin-top: 10px;
}

.footer_navi ul li .dropdown .dropdown-li {
  width: 100%;
}

.footer_navi ul li .dropdown .dropdown-li a {
  font-weight: 500;
  font-size: 1.1rem;
  color: #555;
}

.footer_navi ul li .dropdown .dropdown-li a:before {
  content: "・";
  margin-right: 5px;
}

@media all and (max-width: 896px) {
  .footer_navi ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto;
  }

  .footer_navi ul li:not(:last-child) {
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #888;
  }

  .footer_navi ul li {
    padding-left: 8px;
    padding-right: 8px;
  }

  .footer_navi ul li a {
    font-size: 1.2rem;
  }

  .footer_navi ul li .dropdown {
    margin: 5px 0 0;
  }

  .footer_navi ul li .dropdown .dropdown-li {
    width: 49%;
    margin: 0;
    padding: 0;
    border-bottom: 0px solid #888;
  }

  .footer_navi ul li .dropdown .dropdown-li a {
    font-size: 1rem;
  }
}

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

.footer-access a {
  display: block;
  background: #70AE27;
  color: #fefefe;
  text-align: center;
  margin-top: 10px;
  padding: 8px;
  border-radius: 30px;
  border: 1px solid #70AE27;
}

.footer-access a i {
  margin-right: 6px;
}

.footer-access a span::before {
  content: "PC";
}

@media all and (max-width: 1100px) {
  .footer-access a i {
    margin-right: 4px;
  }
}

@media all and (max-width: 896px) {
  .footer-access a span::before {
    content: "スマホ";
  }
}

.footer-access a:hover {
  background: #fefefe;
  color: #70AE27;
}

.logo-txt {
  text-align: center;
  margin: 10px auto 15px;
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.logo-txt span {
  display: block;
  font-size: 1.8rem;
}

@media all and (max-width: 639px) {
  .logo-txt span {
    display: block;
    font-size: 1.6rem;
  }
}

.flogo {
  z-index: 5;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 360px;
  width: 100%;
}

.address {
  text-align: center;
  font-size: 1.2rem;
  color: #555;
}

@media all and (max-width: 896px) {
  .address {
    font-size: 11px;
    letter-spacing: 0.1em;
  }
}

.copyright {
  text-align: center;
  padding: 15px 0 15px;
  font-size: 12px;
  letter-spacing: 0.1em;
  position: relative;
  background: #42CBE3;
  color: #fff;
}

@media all and (max-width: 896px) {
  .copyright {
    font-size: 10px;
    padding: 14px 0 72px;
  }
}

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

.top-gray-box:before {
  position: absolute;
  content: "";
  z-index: -2;
  width: 80%;
  height: 60%;
  bottom: 10px;
  left: 0;
  background-image: -webkit-gradient(linear, left top, right bottom, from(#70AE27), to(#fffef3));
  background-image: linear-gradient(to right bottom, #70AE27, #fffef3);
  opacity: 0.3;
}

@media all and (max-width: 639px) {
  .top-gray-box:before {
    height: 70%;
    bottom: 20px;
    opacity: 0.2;
  }
}

.top-gray-box2 {
  position: relative;
  overflow: hidden;
}

.top-gray-box2:before {
  position: absolute;
  content: "";
  z-index: -2;
  -webkit-transform: skew(-12deg);
  transform: skew(-12deg);
  width: 30%;
  height: 100%;
  top: 0;
  right: 10%;
  background: #eaf5f7;
}

.top-gray-box3 {
  position: relative;
  overflow: hidden;
}

.top-gray-box3:before {
  position: absolute;
  content: "";
  z-index: -2;
  -webkit-transform: skew(12deg);
  transform: skew(12deg);
  width: 30%;
  height: 100%;
  top: 0;
  right: 10%;
  background: #eaf5f7;
}

.top-gray-box4 {
  position: relative;
  overflow: hidden;
}

.top-gray-box4:before,
.top-gray-box4:after {
  position: absolute;
  content: "";
  z-index: -2;
  -webkit-transform: skew(-12deg);
  transform: skew(-12deg);
}

.top-gray-box4:before {
  width: 45%;
  height: 100%;
  top: 0;
  right: -10%;
  background: #70AE27;
  opacity: 0.1;
}

.top-gray-box4:after {
  width: 45%;
  height: 45%;
  bottom: 0;
  left: -10%;
  background: #fefefe;
}

.bg-triangle {
  position: relative;
  overflow: hidden;
}

.bg-triangle .inner {
  position: relative;
  z-index: 2;
}

.bg-triangle:before {
  position: absolute;
  content: "";
  width: 25%;
  height: 100%;
  top: 0;
  left: -300px;
  background-image: -webkit-gradient(linear, left top, right bottom, from(#42cbe3), color-stop(50%, #42cbe3), color-stop(65%, #42cbe3), color-stop(75.5%, #42cbe3), color-stop(82.85%, #42cbe3), color-stop(88%, #42cbe3), to(#42cbe3));
  background-image: linear-gradient(to right bottom, #42cbe3 0%, #42cbe3 50%, #42cbe3 65%, #42cbe3 75.5%, #42cbe3 82.85%, #42cbe3 88%, #42cbe3 100%);
  -webkit-transform: skew(20deg);
  transform: skew(20deg);
  z-index: 1;
  opacity: 0.2;
}

.bg-triangle:after {
  position: absolute;
  content: "";
  width: 5%;
  height: 50%;
  bottom: 0;
  right: 2%;
  background: #42CBE3;
  -webkit-transform: skew(20deg);
  transform: skew(20deg);
  opacity: 0.8;
}

@media all and (max-width: 896px) {
  .bg-triangle:before {
    left: -180px;
  }
}

@media all and (max-width: 639px) {
  .bg-triangle:before {
    left: -80px;
    -webkit-transform: skew(10deg);
    transform: skew(10deg);
    width: 40%;
  }

  .bg-triangle:after {
    display: none;
  }
}

.bg-triangle.type1:before,
.bg-triangle.type1:after {
  opacity: 0.1;
}

.title-big {
  margin-bottom: 35px;
}

.title-big .eng {
  display: block;
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
  font-size: 5rem;
  line-height: 1.5;
  color: #fff;
  text-shadow: 1px 1px 0px #70AE27, -1px 1px 0px #70AE27, 1px -1px 0px #70AE27, -1px -1px 0px #70AE27, 1px 0px 0px #70AE27, 0px 1px 0px #70AE27, -1px 0px 0px #70AE27, 0px -1px 0px #70AE27;
}

.title-big .ja {
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  display: block;
  color: #555;
  font-size: 2rem;
}

.title-big.white .eng {
  color: #fff;
  background: #fff;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

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

  .title-big .eng {
    font-size: 3rem;
  }

  .title-big .ja {
    font-size: 1.5rem;
  }
}

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

.title-big2 span {
  display: block;
  line-height: 1.2;
}

.title-big2 .eng {
  font-size: 5rem;
  color: rgb(31.2258064516, 184.0092165899, 210.7741935484);
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
}

.title-big2 .ja {
  font-size: 2rem;
  color: #333;
  font-weight: 600;
}

@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 {
  padding-left: 30px;
  margin: 25px 0 -25px;
  position: relative;
  z-index: 3;
}

.title-big3 span {
  display: block;
  line-height: 1.4;
}

.title-big3.type1 {
  text-align: right;
  margin: 0 0 -35px;
}

.title-big3.type1 .eng {
  padding-bottom: 0;
}

.title-big3 .eng {
  padding-bottom: 10px;
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
  font-size: 6.5vw;
  color: #42CBE3;
  display: inline-block;
  background: #42CBE3;
  background: -webkit-gradient(linear, left top, right top, from(#42CBE3), color-stop(#e0eaf2), to(#70AE27));
  background: linear-gradient(to right, #42CBE3, #e0eaf2, #70AE27);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.title-big3 .ja {
  font-size: 2.8rem;
  position: relative;
  z-index: 2;
  line-height: 1.8;
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #555;
  margin-top: -40px;
}

@media screen and (max-width: 890px) and (orientation: landscape) {
  .title-big3 {
    padding-left: 8px;
    margin-bottom: -20px;
  }

  .title-big3 .eng {
    font-size: 5rem;
  }

  .title-big3 .ja {
    font-size: 2rem;
    margin-top: -10px;
  }
}

@media all and (max-width: 639px) {
  .title-big3 {
    padding-left: 8px;
    margin-bottom: -20px;
  }

  .title-big3 .eng {
    font-size: 3.8rem;
  }

  .title-big3 .ja {
    font-size: 1.8rem;
    margin-top: -10px;
  }
}

.title-big4 {
  text-align: center;
  position: relative;
  max-width: 90%;
  margin: 0 auto 30px;
}

.title-big4 .inner {
  position: relative;
  display: inline-block;
}

.title-big4 .inner:before,
.title-big4 .inner:after {
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  content: "”";
  display: inline-block;
  position: absolute;
  top: 25%;
  bottom: 0;
  font-size: 6rem;
  color: #70AE27;
}

.title-big4 .inner:before {
  content: "“";
  left: -30px;
}

.title-big4 .inner:after {
  right: -30px;
}

@media all and (max-width: 639px) {

  .title-big4 .inner:before,
  .title-big4 .inner:after {
    font-size: 3rem;
  }

  .title-big4 .inner:before {
    left: -16px;
  }

  .title-big4 .inner:after {
    right: -16px;
  }
}

.title-big4 .txt {
  display: inline-block;
  font-size: 2rem;
  font-weight: 500;
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.title-big4 .txt .eng {
  font-style: normal;
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
  font-size: 6rem;
  line-height: 1.2;
  color: #42CBE3;
}

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

  .title-big4 .txt .eng {
    font-size: 2.8rem;
  }
}

.greet-block {
  position: relative;
}

.greet-block .greet-img {
  position: absolute;
  width: 52%;
  height: 100%;
  overflow: hidden;
}

.greet-block .greet-img img {
  width: 100%;
  height: 100%;
  /*opacity: 0.8;*/
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
  -o-object-position: center;
  object-position: center;
}

@media all and (max-width: 639px) {
  .greet-block .greet-img {
    width: 100%;
    height: 180px;
    top: -200px;
  }
}

.greet-block .greet-txt {
  width: 58%;
  padding: 80px 20px;
  margin-left: auto;
  position: relative;
  z-index: 3;
}

.greet-block .greet-txt .inner {
  /*max-width: 680px;*/
  line-height: 2;
}

.greet-block .greet-txt .inner.type1 {
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

@media all and (max-width: 639px) {
  .greet-block .greet-txt {
    width: 100%;
    padding: 0 10px;
    /*padding: 0 20px 20px;*/
    margin-top: 200px;
    /*background: #fff;*/
  }
}

.top-concern-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.top-concern-list li {
  width: 47%;
  margin-right: 6%;
  margin-bottom: 15px;
  background-image: -webkit-gradient(linear, left top, right top, from(#42CBE3), to(#0e192d));
  background-image: linear-gradient(to right, #42CBE3, #0e192d);
  color: #fff;
  padding: 8px 15px;
  font-size: 1.8rem;
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.top-concern-list li:nth-child(2n) {
  margin-right: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
}

@media all and (max-width: 639px) {
  .top-concern-list li {
    width: 100%;
    font-size: 1.3rem;
    padding: 4px 10px;
    margin: 0 auto 10px;
  }

  .top-concern-list li:nth-child(2n) {
    margin-right: auto;
    -webkit-transform: none;
    transform: none;
  }
}

.pros-title {
  position: absolute;
  left: 0;
  top: 0;
  min-height: 80px;
}

.pros-title.smaller .eng {
  font-size: 4rem;
}

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

.pros-title span {
  line-height: 1.2;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
}

.pros-title .eng {
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
  font-size: 7rem;
  color: #e0eaf2;
  display: block;
  opacity: 0.7;
}

.pros-title .ja {
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 2.2rem;
  color: #42CBE3;
  padding: 0 15px;
  border-right: 0.9px solid #e0eaf2;
  display: inline-block;
}

.pros-title.type1 .eng {
  color: #0e192d;
}

.pros-title.type1 .ja {
  color: #0e192d;
}

@media all and (max-width: 639px) {
  .pros-title {
    left: -15px;
  }

  .pros-title .eng {
    font-size: 2.5rem;
  }

  .pros-title .ja {
    font-size: 2rem;
  }
}

.pros-txt {
  margin-left: 120px;
}

.pros-txt.type1 {
  margin-left: 80px;
}

@media all and (max-width: 639px) {
  .pros-txt.type1 {
    margin-left: 40px;
  }
}

@media all and (max-width: 639px) {
  .pros-txt {
    margin-left: 40px;
  }
}

.comparison-box {
  margin-top: 50px;
  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;
}

.comparison-box .child {
  background: rgba(112, 174, 39, 0.5);
  padding: 30px;
  width: 47%;
  position: relative;
}

.comparison-box .child .list_check2 {
  font-size: 1.4rem;
}

.comparison-box .child img {
  max-width: 300px;
  margin: 0 auto;
}

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

  .comparison-box .child img {
    max-width: 80%;
  }

  .comparison-box .child {
    padding: 20px;
  }

  .comparison-box .child .pros-title {
    left: -30px;
  }

  .comparison-box .child .list_check2 {
    font-size: 13px;
  }
}

.feature-box {
  max-width: 1800px;
  margin-right: auto;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-bottom: 80px;
}

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

.feature-box:not(:last-of-type) {
  margin-bottom: 140px;
}

.feature-box.type1 .feature-txt-box {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.feature-box .feature-txt-box {
  width: 50%;
  position: relative;
}

.feature-box .feature-txt-box:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffcc33), to(#70AE27));
  background-image: linear-gradient(to bottom, #ffcc33, #70AE27);
  opacity: 0.8;
}

.feature-box .feature-txt-box .inner {
  padding: 40px 6%;
  position: relative;
  z-index: 2;
}

.feature-box .feature-img {
  width: 50%;
  -webkit-transform: translateY(80px);
  transform: translateY(80px);
}

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

@media all and (max-width: 1100px) {
  .feature-box .feature-txt-box {
    width: 55%;
  }

  .feature-box .feature-txt-box .inner {
    padding: 40px 3.5%;
  }

  .feature-box .feature-txt-box .inner .fleft2 {
    float: none;
    display: block;
    margin: 0 auto 20px;
  }

  .feature-box .feature-img {
    width: 45%;
  }
}

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

  .feature-box:not(:last-of-type) {
    margin-bottom: 60px;
  }

  .feature-box .feature-txt-box {
    width: 100%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    z-index: 3;
  }

  .feature-box .feature-img {
    width: 100%;
    -webkit-transform: none;
    transform: none;
  }
}

.feature-title {
  position: absolute;
  left: 30px;
  top: -20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.feature-title .feature-point {
  background: #555;
  color: #fff;
  padding: 20px;
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
  text-align: center;
  font-size: 2rem;
  line-height: 1.2;
}

.feature-title .feature-point span {
  display: block;
  font-size: 5rem;
  color: #ffcc33;
}

.feature-title .feature-lead {
  font-weight: 600;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 30px;
  -ms-flex-item-align: center;
  align-self: center;
  font-size: 2.8rem;
  letter-spacing: 0.15em;
  line-height: 1.3;
  padding-top: 30px;
  padding-right: 20px;
}

@media all and (max-width: 639px) {
  .feature-title {
    left: 10px;
    top: -10px;
  }

  .feature-title .feature-point {
    font-size: 1.4rem;
  }

  .feature-title .feature-point span {
    font-size: 3rem;
  }

  .feature-title .feature-lead {
    font-size: 1.6rem;
    padding-top: 30px;
    padding-right: 15px;
    margin-left: 20px;
  }
}

.feature-txt {
  margin-top: 100px;
  font-weight: 600;
  font-size: 1.1em;
}

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

.feature-topic {
  padding: 20px;
  background: #fff;
  margin-top: 40px;
}

.pick-title {
  position: relative;
  z-index: 2;
  font-size: 2rem;
  padding-left: 30px;
  margin-bottom: -15px;
}

.pick-title .eng {
  line-height: 1;
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
  display: block;
  font-size: 3.2rem;
  color: #e0eaf2;
}

.pick-title:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 40px;
  top: -20px;
  left: 0;
  background: #e0eaf2;
  -webkit-transform: rotate(20deg);
  transform: rotate(20deg);
}

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

  .pick-title .eng {
    font-size: 2.2rem;
  }

  .pick-title:before {
    left: 10px;
  }
}

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

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

.top-icon {
  position: relative;
}

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

.sec3 {
  position: relative;
  margin: 40px 0;
}

.sec3:before {
  position: absolute;
  content: "";
  width: 70%;
  height: 100%;
  top: 0;
  right: 0;
  background: #f4f4f4;
}

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

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

.sec3-box .sec3-img,
.sec3-box .sec3-txt-box {
  width: 50%;
}

.sec3-box .sec3-img {
  height: 900px;
}

.sec3-box .sec3-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
  -o-object-position: center 20%;
  object-position: center 20%;
  opacity: 0.7;
}

.sec3-box .sec3-txt-box {
  -ms-flex-item-align: center;
  align-self: center;
}

.sec3-box .sec3-txt-box .inner {
  padding: 100px 40px;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 600;
  font-size: 1.1em;
}

@media all and (max-width: 896px) {
  .sec3-box .sec3-txt-box .inner {
    max-width: 80%;
    padding: 80px 20px;
  }
}

@media all and (max-width: 639px) {
  .sec3-box .sec3-txt-box .inner {
    padding: 45px 20px;
    max-width: 100%;
    font-size: inherit;
  }
}

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

  .sec3-box .sec3-img,
  .sec3-box .sec3-txt-box {
    width: 100%;
  }

  .sec3-box .sec3-img {
    height: auto;
  }
}

.top-btn a {
  display: block;
  margin: 0 auto;
  width: 350px;
  padding: 15px 20px;
  font-weight: 600;
  background: #333;
  color: #fffef3;
  border-top: 2px solid #e2ceaf;
  border-bottom: 2px solid #e2ceaf;
  position: relative;
}

.top-btn a i {
  position: absolute;
  right: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.topic-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 80px;
}

.topic-list>li {
  width: 44%;
  margin-bottom: 70px;
  position: relative;
  margin-right: 4%;
}

.topic-list>li:nth-child(even) {
  -webkit-transform: translateY(-70px);
  transform: translateY(-70px);
  margin-right: 0;
}

@media all and (max-width: 639px) {
  .topic-list>li:nth-child(even) {
    margin-right: 0;
    -webkit-transform: none;
    transform: none;
  }
}

.topic-list>li:nth-child(3n-1) .topic-inner {
  background: rgb(43.7903225806, 196.8894009217, 223.7096774194);
}

.topic-list>li:nth-child(3n) .topic-inner {
  background: #333;
}

.topic-list>li:nth-child(3),
.topic-list>li:nth-child(4) {
  margin-left: 2%;
}

.topic-list>li:nth-child(5),
.topic-list>li:nth-child(6) {
  margin-left: 4%;
}

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

@media all and (max-width: 639px) {
  .topic-list>li {
    width: 90%;
    margin-right: 0;
  }

  .topic-list>li:nth-child(3),
  .topic-list>li:nth-child(4) {
    margin-left: 0;
  }

  .topic-list>li:nth-child(5),
  .topic-list>li:nth-child(6) {
    margin-left: 0;
  }

  .topic-list>li:nth-child(even) {
    margin-right: 0;
    -webkit-transform: none;
    transform: none;
    margin-left: auto;
  }
}

.topic-list>li .topic-inner {
  width: 100%;
  height: 100%;
  background: #70AE27;
  position: relative;
}

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

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

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

.topic-list>li .topic-num {
  display: block;
  position: absolute;
}

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

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

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

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

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

.topic-list>li .topic-txt {
  position: relative;
  padding: 50px 30px 50px 40%;
  color: #fff;
}

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

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

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

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

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

.icon-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;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 30px auto 0;
}

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

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

.icon-list li {
  width: 23%;
  margin-bottom: 30px;
  margin-right: 2.6666666667%;
}

.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: #333;
  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(#fffef3), to(rgb(255, 249.75, 192)));
  background-image: linear-gradient(to right bottom, #fffef3, rgb(255, 249.75, 192));
  -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: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 {
  z-index: 2;
}

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

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

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

.sec6 {
  position: relative;
  color: #fff;
}

.sec6:before,
.sec6:after {
  position: absolute;
  content: "";
  width: 100%;
  top: 0;
  left: 0;
}

.sec6:before {
  height: 100%;
  background: #70AE27;
}

.sec6:after {
  height: 80%;
  background: url(../img/bg-sec6.jpg) no-repeat center/cover;
}

@media all and (max-width: 1100px) {
  .sec6:after {
    height: 100%;
  }
}

.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: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
  font-size: 3rem;
  letter-spacing: 0.15em;
  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 {
  line-height: 1.4;
}

.title01 span {
  display: block;
  font-size: 2.2rem;
  font-weight: 600;
  color: #42CBE3;
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
}

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

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

  .title01 {
    font-size: 1.4rem;
  }
}

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

.title01.white {
  color: #fcfcfc;
}

.title02 {
  font-weight: 700;
  font-size: 2rem;
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #555;
  margin-bottom: 10px;
  line-height: 2;
}

.title02 span {
  border-radius: 30px;
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
  font-size: 1.4rem;
  background: #1b8875;
  padding: 5px 20px;
  color: #fff;
}

.title02.area2 span {
  background: #4fbf7b;
}

.title02.area3 span {
  background: #88c942;
}

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

.title02.type1 span {
  background: #0e192d;
}

.title03 {
  background: #fff;
  color: #555;
  padding: 10px 15px;
  font-weight: 600;
  margin-top: 6px;
  font-size: 1.8rem;
  margin-bottom: 30px;
  position: relative;
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.title03 span {
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
  font-size: 1.6rem;
  color: rgba(66, 203, 227, 0.5);
  margin-right: 8px;
}

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

  .title03 span {
    font-size: 1.3rem;
  }
}

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

.title03:before {
  width: 30%;
  top: -6px;
  background: #0e192d;
}

.title03:after {
  width: 55%;
  bottom: -6px;
  background: #42CBE3;
}

.title04 {
  padding: 8px 0;
  text-align: center;
  background: #e0eaf2;
  margin-bottom: 15px;
  color: #fff;
}

.title04.type1 {
  background: #e0eaf2;
  color: #333;
}

.title05 {
  margin-bottom: 20px;
  line-height: 1.6;
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.title05 ja {
  font-size: 2.4rem;
  display: block;
  color: #555;
}

.title05 span {
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
  font-size: 4.5rem;
  text-shadow: 0 1px 0 #555, 1px 0 0 #555, 0 -1px 0 #555, -1px 0 0 #555, -1px -1px 0 #555, 1px -1px 0 #555, -1px 1px 0 #555, 1px 1px 0 #555, 4px 3px 1px #e0eaf2;
  color: #fff;
}

.title05.type1 span {
  text-shadow: 0 1px 0 #555, 1px 0 0 #555, 0 -1px 0 #555, -1px 0 0 #555, -1px -1px 0 #555, 1px -1px 0 #555, -1px 1px 0 #555, 1px 1px 0 #555, 4px 3px 1px #70AE27;
}

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

  .title05 span {
    font-size: 3rem;
  }

  .title05 {
    margin-bottom: 15px;
  }
}

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

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

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

@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 {
  position: relative;
  margin-right: 60px;
  text-align: center;
  min-width: 120px;
}

.news-title .eng {
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 4rem;
}

@media all and (max-width: 896px) {
  .news-title .eng {
    font-size: 3rem;
    letter-spacing: 0.15em;
  }
}

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

.news-title .eng {
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
  letter-spacing: 0.1em !important;
  line-height: 1 !important;
  color: #42CBE3;
}

.news-title .ja {
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 1.6rem;
}

@media all and (max-width: 896px) {
  .news-title .ja {
    font-size: 1.4rem;
    letter-spacing: 0.15em;
  }
}

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

.news-title .ja {
  color: #333;
  display: block;
}

.news-title a {
  padding: 3px 10px;
  border-radius: 30px;
  max-width: 80%;
  display: block;
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: 1px solid #42CBE3;
  background: #ffffff;
  color: #42CBE3;
  margin: 20px auto 0;
  font-size: 1.1rem;
}

.news-title a:hover {
  background: #42CBE3;
  color: #ffffff;
}

@media all and (max-width: 896px) {
  .news-title {
    width: calc(100% - 10px);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 45px;
    min-width: auto;
    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;
  }

  .news-title span {
    position: relative;
  }

  .news-title .ja {
    margin-left: 10px;
  }

  .news-title a {
    position: absolute;
    top: 0;
    right: 0;
    padding: 2px 16px;
    font-size: 0.9rem;
    margin: 0;
  }
}

.news-title2 {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}

.news-title2 span {
  display: block;
}

.news-title2 .eng {
  position: relative;
  color: #0e192d;
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.07em;
  font-size: 2.6rem;
  line-height: 1.4;
}

.news-title2 .ja {
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #333;
  font-size: 1.8rem;
  position: relative;
  margin: 0 auto;
}

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

  .news-title2 .eng {
    font-size: 3rem;
  }

  .news-title2 .ja {
    font-size: 1.4rem;
  }
}

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

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

.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 #70AE27;
  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: #42CBE3;
}

@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 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 50px;
  padding: 0 20px;
}

@media all and (max-width: 639px) {
  .top-bnr-list {
    grid-template-columns: 1fr;
    gap: 50px 0;
    padding: 0 10px;
  }
}

.top-bnr-list .top-bnr-wrap {
  display: block;
  height: 100%;
  position: relative;
}

.top-bnr-list .top-bnr-wrap:hover figure img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  opacity: 0.8;
}

.top-bnr-list .top-bnr-wrap:hover .morebtn {
  background: #70AE27;
  color: #fff;
}

.top-bnr-list .top-bnr-title {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  position: absolute;
  left: 15px;
  top: 10px;
  z-index: 2;
}

.top-bnr-list .top-bnr-title span {
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  background: #fff;
  padding: 8px;
  font-size: 1.8rem;
  letter-spacing: 0.3em;
  color: #333;
  border-right: 3px solid rgb(138.3521126761, 209.9577464789, 54.0422535211);
}

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

.top-bnr-list figure {
  width: 100%;
  height: 320px;
  background: #111;
  overflow: hidden;
}

.top-bnr-list figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  opacity: 1;
}

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

.top-bnr-list .top-bnr-txt {
  max-width: 100%;
  padding: 20px;
  background: #fff;
  position: relative;
  margin: 0 auto;
  color: #333;
  text-align: center;
}

@media all and (max-width: 639px) {
  .top-bnr-list .top-bnr-txt {
    padding: 15px 10px;
    text-align: left;
  }
}

.top-bnr-list .morebtn {
  text-align: center;
  width: 150px;
  background: #fff;
  border: 1px solid #70AE27;
  color: #70AE27;
  border-radius: 40px;
  position: relative;
  z-index: 2;
  padding: 5px 0;
  margin: 0 auto;
  font-size: 90%;
  -webkit-transition: 0.2s ease-in all;
  transition: 0.2s ease-in all;
}

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

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

.single02.type1 {
  padding: 80px 0 0;
}

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

  .single02.type1 {
    padding: 80px 10px 0;
  }
}

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

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

.single04 {
  position: relative;
  margin: 0 auto;
  padding: 40px 0;
  max-width: calc(100% - 80px);
}

.single04.inner {
  z-index: 2;
}

@media all and (max-width: 896px) {
  .single04 {
    max-width: calc(100% - 20px);
    padding: 20px 0;
  }
}

.single.phalf,
.single02.phalf,
.single03.phalf {
  padding: 40px 0;
}

@media all and (max-width: 1100px) {

  .single.phalf,
  .single02.phalf,
  .single03.phalf {
    padding: 20px 0;
  }
}

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

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

.margin-top2 {
  margin-top: -40px;
}

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

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

.lsingle {
  float: left;
}

.rsingle {
  float: right;
}

.sbox {
  background: transparent;
  padding: 20px;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}

.sbox.type1 {
  background: #fefefe;
}

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

.sbox2 {
  background: transparent;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

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

.vertical-box {
  position: relative;
}

.vertical-box .vertical-content {
  margin-left: 120px;
}

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

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

.mbox.transparent {
  background: transparent;
}

.mbox.wk {
  border: 1px solid #ddd;
}

.mbox.sd {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(3px);
  -webkit-box-shadow: 2px 2px 10px -3px rgba(51, 51, 51, 0.2);
  box-shadow: 2px 2px 10px -3px rgba(51, 51, 51, 0.2);
}

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

.mbox2 {
  background: #e0eaf2;
  padding: 35px 30px;
}

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

.mbox3 {
  background: #fefefe;
  border-radius: 2px;
  -webkit-box-shadow: 5px 5px #ccc;
  box-shadow: 5px 5px #ccc;
  padding: 30px;
  border: 1px solid #888;
  margin-right: auto;
  margin-left: auto;
}

@media all and (max-width: 639px) {
  .mbox3 {
    width: calc(100% - 10px);
    padding: 15px;
    -webkit-box-shadow: 3px 3px #ccc;
    box-shadow: 3px 3px #ccc;
    border-radius: 2px;
  }
}

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

.small-box2 {
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
}

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

.sentence2 p+p {
  margin-top: 10px;
}

.bg-gradation {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #0086e4, #37baea, #004890);
  background-size: 200% 200%;
  -webkit-animation: bggradient 5s ease infinite;
  animation: bggradient 5s ease infinite;
}

.bg-gradation2 {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #fef7e9, #fdf2f9, #edf7fd, #ebfefa, #fffbe2);
  background-size: 200% 200%;
  -webkit-animation: bggradient 5s ease infinite;
  animation: bggradient 5s ease infinite;
}

@-webkit-keyframes bggradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes bggradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

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

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

#main2 {
  width: 100%;
}

#main2 .mbox {
  min-height: 500px;
  border: 1px solid #ddd;
}

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

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

#main .blog_topics {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

#main .blog_topics li {
  width: 100%;
  margin: 0;
}

#main .blog_topics li a .topics_detail .imgbox {
  height: 130px;
}

#main .blog_topics li:not(:first-child) {
  border-top: 0px solid #fffef3;
}

#main .mbox,
#main .mbox2,
#main .mbox3 {
  min-height: 400px;
}

@media all and (max-width: 896px) {

  #main .mbox,
  #main .mbox2,
  #main .mbox3 {
    min-height: initial;
  }
}

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

#side {
  float: right;
  position: sticky;
  right: 0;
  top: 80px;
  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 30px;
  position: relative;
  text-align: center;
  line-height: 1.5;
}

.mtitle .eng,
.mtitle .eng2 {
  font-size: 3.8rem;
  color: #42CBE3;
  z-index: 2;
  display: block;
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
}

.mtitle .ja {
  z-index: 2;
  font-size: 1.8rem;
  color: #555;
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.mtitle.white {
  color: #fff;
}

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

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

.mtitle.gray .eng,
.mtitle.gray .eng2 {
  color: #555;
}

.mtitle.sbc .eng,
.mtitle.sbc .eng2 {
  color: #70AE27;
}

.mtitle.mtitle_left {
  text-align: left;
  margin: 0 auto 15px;
}

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

  .mtitle .eng,
  .mtitle .eng2 {
    font-size: 2.4rem;
  }

  .mtitle .ja {
    font-size: 1.4rem;
    letter-spacing: 0.15em;
  }
}

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

.mtitle1 .eng,
.mtitle1 .eng2 {
  font-size: 2.5rem;
  background-image: linear-gradient(45deg, #42CBE3 0%, #70AE27 60%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 2;
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
  line-height: 1.2;
}

.mtitle1 .eng::before,
.mtitle1 .eng2::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10px;
  background-image: -webkit-gradient(linear, left top, right top, from(#42CBE3), to(#70AE27));
  background-image: linear-gradient(90deg, #42CBE3 0%, #70AE27 100%);
  width: 20px;
  height: 20px;
  opacity: 0.2;
}

.mtitle1 .eng2 {
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
}

.mtitle1 .ja {
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 2;
  font-size: 2.8rem;
  color: #555;
  display: block;
  line-height: 1.5;
}

.mtitle1.sbc span.eng,
.mtitle1.sbc span.eng2 {
  color: #70AE27;
}

.mtitle1.white .eng,
.mtitle1.white .eng2 {
  color: #fff;
}

.mtitle1.white .eng:before,
.mtitle1.white .eng2:before {
  color: #fff;
}

.mtitle1.white .ja {
  color: #fff;
}

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

@media all and (max-width: 896px) {

  .mtitle1 .eng,
  .mtitle1 .eng2 {
    font-size: 1.8rem;
  }
}

@media all and (max-width: 639px) {
  .mtitle1 {
    text-align: center;
    margin: 0 auto 20px;
  }

  .mtitle1 .eng,
  .mtitle1 .eng2 {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .mtitle1 .ja {
    font-size: 1.5rem;
  }
}

.mtitle2 {
  width: 100%;
  position: relative;
  padding: 10px;
}

.mtitle2.type1 .eng {
  color: #42CBE3;
}

.mtitle2.type2 .eng {
  color: #888;
}

.mtitle2 .ja {
  font-size: 1.6rem;
  color: #555;
}

.mtitle2 .eng {
  font-size: 2.2rem;
  color: #70AE27;
  margin-right: 10px;
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
}

.mtitle2.white .ja,
.mtitle2.white .eng {
  color: #fff;
}

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

  .mtitle2 .ja {
    font-size: 1.3rem;
  }
}

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

.mtitle3:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 30px;
  top: 0;
  left: 50%;
  background: #70AE27;
}

.mtitle3 .ja {
  display: block;
  font-size: 1.8rem;
  line-height: 1.3;
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  letter-spacing: 0.3em;
  color: #333;
}

.mtitle3 .eng {
  display: block;
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
  letter-spacing: 0.15em;
  font-size: 2.2rem;
  color: #42CBE3;
}

.mtitle3.white:before {
  background: #fff;
}

.mtitle3.white .ja,
.mtitle3.white .eng {
  text-shadow: 1px 1px 0px #0e192d, -1px 1px 0px #0e192d, 1px -1px 0px #0e192d, -1px -1px 0px #0e192d, 1px 0px 0px #0e192d, 0px 1px 0px #0e192d, -1px 0px 0px #0e192d, 0px -1px 0px #0e192d;
  color: #fff;
}

@media all and (max-width: 639px) {
  .mtitle3 {
    position: relative;
    top: 0;
    left: 0;
    -webkit-writing-mode: inherit;
    -ms-writing-mode: inherit;
    writing-mode: inherit;
    padding: 0 0 0 30px;
    min-height: auto;
    min-height: inherit;
    margin-bottom: 15px;
  }

  .mtitle3:before {
    width: 20px;
    height: 1px;
    top: 50%;
    left: 0;
  }

  .mtitle3 .ja {
    font-size: 1.4rem;
  }

  .mtitle3 .eng {
    font-size: 1.8rem;
  }
}

.mtitle_line {
  font-size: 1.8rem;
  padding-bottom: 20px;
  position: relative;
  font-weight: 600;
  margin-bottom: 30px;
  color: #555;
  border-top: 2px solid #42CBE3;
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 8px 10px 14px;
}

.mtitle_line:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  content: "";
  opacity: 0.5;
  background-image: repeating-linear-gradient(-45deg, #42CBE3, #42CBE3 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: 1.8rem;
  }
}

.balloon {
  position: relative;
  margin: auto;
  display: table;
  padding: 8px 20px;
  left: 0;
  right: 0;
  min-width: 120px;
  max-width: 100%;
  color: #fff;
  font-size: 1.8rem;
  background: #e0eaf2;
  font-weight: 600;
  letter-spacing: 0.15em;
  border-radius: 30px;
}

.balloon:before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% - 5px);
  margin-top: -10px;
  border: 10px solid transparent;
  border-left: 22px solid #e0eaf2;
}

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

  .balloon:before {
    top: 100%;
    left: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-top: 15px solid #e0eaf2;
  }
}

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

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

.mtitle_balloon span.eng {
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
  font-size: 3.4rem;
}

.mtitle_balloon span:before,
.mtitle_balloon span:after {
  content: "";
  display: block;
  border-bottom: 2px 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: 9px;
  height: 9px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  position: absolute;
  left: 50%;
  margin-left: -5px;
  bottom: 2px;
}

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

  .mtitle_balloon span.eng {
    font-size: 2rem;
  }
}

.mtitle-bll {
  font-size: 1.7rem;
  font-weight: 700;
  border-bottom: 2px solid #ddd;
  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: rgb(97.0935483871, 211.5548387097, 231.6064516129);
}

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

.mtitle4 {
  text-align: center;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.2rem;
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.mtitle4 span {
  position: relative;
  display: inline-block;
  min-width: 10%;
  padding: 0 5px;
  color: #555;
}

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

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

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

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

  .mtitle4 span:after {
    right: -3px;
  }
}

.mtitle_sub {
  padding-left: 0.5em;
  font-weight: 600;
  position: relative;
  border-left: 6px solid #42CBE3;
  margin: 8px 0 15px;
  font-size: 1.6rem;
  line-height: 1.4;
  text-align: left;
}

.mtitle_sub:before {
  position: absolute;
  left: -6px;
  bottom: 0;
  content: "";
  width: 6px;
  height: 50%;
  background-color: rgb(132.6290322581, 221.331797235, 236.8709677419);
}

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

.mtitle_box {
  background: #555;
  color: #fff;
  font-size: 1.8rem;
  position: relative;
  padding: 10px 20px 10px 10px;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.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.4rem;
    display: block;
  }
}

.mtitle_box2 {
  background: #42CBE3;
  font-size: 2rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 15px 10px 15px 20px;
  margin-bottom: 25px;
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.mtitle_box2:before {
  background-color: #0e192d;
  content: "";
  display: block;
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
  position: absolute;
  bottom: -10px;
  right: -150px;
  width: 300px;
  height: 280px;
}

.mtitle_box2.type1 {
  background: #70AE27;
}

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

  .mtitle_box2:before {
    width: 215px;
    right: -170px;
  }
}

.mtitle_box3 {
  background: #454545;
  font-size: 1.6rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 10px 5px 10px 20px;
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.mtitle_box3:before {
  background-color: #0e192d;
  content: "";
  display: block;
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
  position: absolute;
  bottom: -10px;
  right: -150px;
  width: 300px;
  height: 280px;
}

@media all and (max-width: 639px) {
  .mtitle_box3 {
    font-size: 1.3rem;
    line-height: 1.5;
    padding-right: 40px;
  }

  .mtitle_box3:before {
    width: 215px;
    right: -170px;
  }
}

.big {
  font-size: 110%;
}

.mtext0 {
  font-size: 1.8rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
}

.mtext0 .big {
  font-size: 2rem;
}

.mtext0 img {
  margin-bottom: 10px;
}

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

  .mtext0 .big {
    font-size: 1.4rem;
  }
}

.mtext1 {
  font-size: 2rem;
  line-height: 1.6;
}

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

.mtext2 {
  font-size: 2.5rem;
  line-height: 1.5;
}

.mtext2.type1 {
  font-size: 2.8rem;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 15px;
  font-family: "Shippori Mincho", "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 900;
}

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

  .mtext2.type1 {
    letter-spacing: 0.15rem;
    font-size: 1.8rem;
  }
}

.mtext3 {
  font-size: 3.5rem;
}

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

.title-rec {
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-shadow: 1px 1px 0px #fff, -1px 1px 0px #fff, 1px -1px 0px #fff, -1px -1px 0px #fff, 1px 0px 0px #fff, 0px 1px 0px #fff, -1px 0px 0px #fff, 0px -1px 0px #fff;
  color: #42CBE3;
  font-size: 3.6rem;
  margin-bottom: 30px;
  line-height: 1.4;
}

@media all and (max-width: 639px) {
  .title-rec {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}

.txt-rec {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 40px;
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}

@media all and (max-width: 639px) {
  .txt-rec {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 30px;
  }
}

.mtitle_category {
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.mtitle_category:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0ca";
  font-weight: 900;
  margin-right: 5px;
  color: rgb(110.4193548387, 215.2211981567, 233.5806451613);
}

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

#particle-bg {
  width: 100%;
  height: 100%;
  top: 0;
  position: absolute;
  z-index: 1;
}

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

.btns a {
  background: #fff;
  text-align: center;
  max-width: 240px;
  width: 95%;
  font-size: 90%;
  margin: auto;
  color: #333;
  display: block;
  padding: 5px;
  font-weight: 500;
  border: 1px solid #222;
  border-radius: 35px;
}

.btns a:hover {
  background: #42CBE3;
  color: #fefefe;
}

.btn01 a {
  background: #fff;
  text-align: center;
  width: 300px;
  margin: 5px auto;
  color: #333;
  display: block;
  padding: 12px 5px;
  font-weight: 700;
  border: 2px solid #333;
  border-radius: 35px;
}

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

.btn01.type1 a {
  background: #70AE27;
  color: #fff;
}

.btn01.type1 a:hover {
  background: #fff;
  color: #333;
}

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

.btn01.mail a {
  background: #ffcc33;
  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;
}

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

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

.btn02 a {
  display: block;
  position: relative;
  padding: 15px 0;
  background-color: #e0eaf2;
  border: 1px solid #333;
  line-height: 24px;
  letter-spacing: 0.1rem;
  font-size: 1.6rem;
  text-align: center;
  color: #333;
}

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

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

.btn03 {
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

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

.btn03 a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  vertical-align: middle;
  padding: 15px 10px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #42CBE3;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background: rgba(254, 254, 254, 0.6);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: visible;
  color: #555;
  max-width: 320px;
  width: 96%;
  letter-spacing: 0.15rem;
  line-height: 1.4;
  font-weight: 600;
}

.btn03 a:focus {
  outline: none;
}

.btn03 a:active {
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
  background: none;
}

.btn03 a:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: #70AE27;
  background-image: -webkit-gradient(linear, left top, right top, from(#70AE27), to(rgb(255, 216.75, 102)));
  background-image: linear-gradient(to right, #70AE27 0%, rgb(255, 216.75, 102) 100%);
  z-index: -1;
  -webkit-box-shadow: 0 0 0 0 rgb(150.4436619718, 214.6267605634, 74.8732394366);
  box-shadow: 0 0 0 0 rgb(150.4436619718, 214.6267605634, 74.8732394366);
  -webkit-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}

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

.btn03 a:hover::after {
  -webkit-box-shadow: 0 0 0 24px transparent;
  box-shadow: 0 0 0 24px transparent;
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
  -webkit-transition: -webkit-transform 0.2s linear, -webkit-box-shadow 0.5s ease-out 0.2s;
  transition: -webkit-transform 0.2s linear, -webkit-box-shadow 0.5s ease-out 0.2s;
  transition: transform 0.2s linear, box-shadow 0.5s ease-out 0.2s;
  transition: transform 0.2s linear, box-shadow 0.5s ease-out 0.2s, -webkit-transform 0.2s linear, -webkit-box-shadow 0.5s ease-out 0.2s;
}

.btn03.en a {
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
  letter-spacing: 0.2rem;
  font-size: 2rem;
}

.btn03.white a {
  background: transparent;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  border: 1px solid #fff;
  color: #fff;
}

/* news
----------------------------------*/
.news .news-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 18px 6px;
  border-top: 1px solid #ccc;
}

.news .news-inner:last-of-type {
  border-bottom: 1px solid #ccc;
}

@media all and (max-width: 639px) {
  .news .news-inner {
    padding: 12px 4px;
  }
}

.news dt {
  font-family: "Barlow Condensed", serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  font-weight: 600;
  width: 7em;
}

@media all and (max-width: 639px) {
  .news dt {
    width: 6em;
  }
}

.news dd a {
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #333;
}

.news dd a:hover {
  opacity: 0.7;
}

.news-bl {
  overflow: hidden;
}

.news-bl dt {
  float: left;
  width: 8.5em;
  padding: 5px;
  line-height: 1.3;
  color: #333;
  text-align: center;
  border: 1px solid #333;
  border-radius: 30px;
  background: #e0eaf2;
  font-size: 1.3rem;
}

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

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

.news-bl dd a {
  color: #333;
  background-image: -webkit-gradient(linear, left top, right top, from(#42CBE3), to(#e0eaf2));
  background-image: linear-gradient(to right, #42CBE3, #e0eaf2);
  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;
  }

  .news-bl dd {
    padding: 8px 5px;
  }
}

/* page-title
----------------------------------*/
.page-title {
  margin: 0 auto 0;
  position: relative;
  z-index: 1;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27549/page-title.jpg) no-repeat 50%/cover;
  overflow: hidden;
}

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

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

.page-title .page-lead {
  text-align: center;
  color: #333;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3), 0 0 10px rgba(0, 0, 0, 0.1);
  color: #fff;
  line-height: 1.8;
}

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

.page-title .page-lead .ja {
  font-size: 1.8rem;
  letter-spacing: 0.3em;
}

.page-title .page-lead .eng {
  font-size: 2.8rem;
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.07em;
  letter-spacing: 0.05em;
}

@media all and (max-width: 896px) {
  .page-title .inner {
    width: 100%;
    padding: 40px 0;
  }

  .page-title .page-lead .ja {
    font-size: 1.3rem;
  }

  .page-title .page-lead .eng {
    font-size: 1.8rem;
  }
}

.bg-gradient {
  position: relative;
  position: relative;
}

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

.bg-fixed {
  width: 100%;
  height: 450px;
  background: url(../img/bg-fixed.jpg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

@media all and (max-width: 1100px) {
  .bg-fixed {
    height: 200px;
    background-attachment: scroll;
    background-position: center bottom;
  }
}

@media all and (max-width: 639px) {
  .bg-fixed {
    height: 140px;
  }
}

.bg-fixed2 {
  width: 100%;
  height: 450px;
  background: url(../img/bg-fixed2.jpg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

@media all and (max-width: 1100px) {
  .bg-fixed2 {
    height: 200px;
    background-attachment: scroll;
    background-position: center bottom;
  }
}

@media all and (max-width: 639px) {
  .bg-fixed2 {
    height: 140px;
  }
}

.bg-01 {
  z-index: 100;
  position: relative;
  background-image: linear-gradient(16deg, rgba(116, 116, 116, 0.02) 0%, rgba(116, 116, 116, 0.02) 25%, transparent 25%, transparent 96%, rgba(177, 177, 177, 0.02) 96%, rgba(177, 177, 177, 0.02) 100%), linear-gradient(236deg, rgba(148, 148, 148, 0.02) 0%, rgba(148, 148, 148, 0.02) 53%, transparent 53%, transparent 59%, rgba(56, 56, 56, 0.02) 59%, rgba(56, 56, 56, 0.02) 100%), linear-gradient(284deg, rgba(16, 16, 16, 0.02) 0%, rgba(16, 16, 16, 0.02) 46%, transparent 46%, transparent 71%, rgba(181, 181, 181, 0.02) 71%, rgba(181, 181, 181, 0.02) 100%), linear-gradient(316deg, rgba(197, 197, 197, 0.02) 0%, rgba(197, 197, 197, 0.02) 26%, transparent 26%, transparent 49%, rgba(58, 58, 58, 0.02) 49%, rgba(58, 58, 58, 0.02) 100%), linear-gradient(90deg, rgb(255, 255, 255), rgb(255, 255, 255));
}

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

.bg-02 .rbox {
  position: relative;
  max-width: 700px;
  width: 65%;
  margin-left: auto;
  padding: 35px 30px;
  color: #fff;
  background: rgba(1, 20, 37, 0.7);
  backdrop-filter: blur(3px);
}

.bg-02 .rbox .rbox-ttl {
  position: relative;
  margin-bottom: 20px;
  border-bottom: 2px solid #ccc;
  font-size: 2.2rem;
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.3;
  padding-bottom: 5px;
}

.bg-02 .rbox .rbox-ttl span {
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
  font-size: 3.6rem;
  margin-right: 15px;
}

.bg-02 .rbox .rbox-ttl:before {
  position: absolute;
  content: "";
  width: 100px;
  max-width: 25%;
  height: 2px;
  background: rgb(110.4193548387, 215.2211981567, 233.5806451613);
  left: 0;
  bottom: -2px;
}

.bg-02 .rbox p {
  line-height: 2.5;
}

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

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

  .bg-02 .rbox {
    width: 100%;
    margin-right: auto;
    padding: 25px 20px;
  }

  .bg-02 .rbox .rbox-ttl {
    font-size: 1.6rem;
  }

  .bg-02 .rbox .rbox-ttl span {
    font-size: 2.4rem;
  }

  .bg-02 .rbox p {
    line-height: 2;
  }
}

.bg-03 {
  background: url(../img/bg-03.jpg) no-repeat center/cover;
  background-attachment: fixed;
}

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

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

.bg-05 {
  position: relative;
}

.bg-05:before {
  position: absolute;
  content: "";
  z-index: -1;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 60%;
  height: 90%;
  right: -2%;
  top: 50%;
  background: rgb(140.5, 0, 5.9246987952);
  opacity: 0.05;
}

@media all and (max-width: 896px) {
  .bg-05:before {
    height: 95%;
  }
}

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

.bg-wood {
  background: url(../img/wood2.jpg);
}

.bg-fe {
  background: #fefefe;
}

.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: -webkit-gradient(linear, left top, right top, from(#bed197), color-stop(50%, #bed197), color-stop(50%, #d7dfaf), to(#d7dfaf));
  background: linear-gradient(90deg, #bed197 0%, #bed197 50%, #d7dfaf 50%, #d7dfaf 100%);
}

.bg-gray {
  position: relative;
}

.bg-gray.type1:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #f4f4f4;
}

.bg-gray:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f4f4f4), to(#fbfbfb));
  background-image: linear-gradient(to bottom, #f4f4f4, #fbfbfb);
}

.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%, #f4f4f4), to(#f4f4f4));
  background-image: linear-gradient(to bottom, transparent 0%, transparent 50%, #f4f4f4 50.1%, #f4f4f4 100%);
}

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

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

@media all and (max-width: 896px) {
  .bg-gray2 {
    margin: 0 auto;
  }

  .bg-gray2:before {
    width: 100%;
  }
}

.bg-999 {
  background: #aaa;
}

.bg-blue {
  background: #42CBE3;
}

.bg-blue.type1 {
  background: rgba(224, 234, 242, 0.7);
}

.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%, rgb(138.3521126761, 209.9577464789, 54.0422535211)), to(rgb(138.3521126761, 209.9577464789, 54.0422535211)));
  background-image: linear-gradient(to bottom, transparent 0%, transparent 50%, rgb(138.3521126761, 209.9577464789, 54.0422535211) 50.1%, rgb(138.3521126761, 209.9577464789, 54.0422535211) 100%);
}

.bg-beige {
  position: relative;
  background: #fffef3;
}

.bg-beige.type1 {
  background: transparent;
}

.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: #fffef3;
  z-index: -1;
}

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

.bg-beige2 {
  background: #f6f1ea;
}

.bg-base2 {
  background: repeating-linear-gradient(45deg, rgba(66, 203, 227, 0.1) 0, rgba(66, 203, 227, 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: 24%;
  text-align: left;
  color: #333;
}

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

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

.tbl {
  width: 100%;
  border-top: 1px solid #ccc;
}

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

.tbl th {
  background: #f9f9f9;
  font-weight: 600;
}

.tbl th a {
  color: #333;
}

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

.tbl th a:hover {
  opacity: 0.5;
}

@media all and (max-width: 639px) {

  .tbl th,
  .tbl td {
    padding: 5px;
    font-size: 11px;
    letter-spacing: 0.05em;
  }

  .tbl th span,
  .tbl td span {
    font-size: 11px;
  }

  .tbl th a::before {
    display: block;
    margin-right: 0;
  }
}

.tbl2 {
  width: 100%;
}

.tbl2 th,
.tbl2 td {
  padding: 15px;
  vertical-align: middle;
  border: 1px solid #ccc;
  font-size: 1.4rem;
}

.tbl2 th {
  background: #f9f9f9;
  font-weight: 600;
}

@media all and (max-width: 639px) {

  .tbl2 th,
  .tbl2 td {
    padding: 8px 5px;
    font-size: 1rem;
    letter-spacing: 0.1em;
  }
}

.tbl2-wrap {
  overflow-x: visible;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
}

@media all and (max-width: 639px) {
  .tbl2-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    -webkit-overflow-scrolling: touch;
  }
}

.tbl2--spec2 {
  border-collapse: collapse;
  width: 100%;
  min-width: 980px;
}

.tbl2--spec2 th,
.tbl2--spec2 td {
  border: 1px solid #8c8f94;
  /* 画像っぽい濃いめの実線 */
  padding: 14px 14px;
  font-size: 1.4rem;
  vertical-align: middle;
  background: #fff;
}

.tbl2--spec2 {
  /* ヘッダー */
}

.tbl2--spec2 .spec-blank {
  background: #18b7d3;
  border-right: 1px solid #8c8f94;
  width: 10%;
}

.tbl2--spec2 .spec-head {
  background: #18b7d3;
  color: #fff;
  font-weight: 700;
  text-align: center;
}

.tbl2--spec2 {
  /* 左の縦帯（部屋） */
}

.tbl2--spec2 .spec-side {
  background: #18b7d3;
  color: #fff;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.12em;
  width: 10%;
}

.tbl2--spec2 {
  /* 2列目の項目帯（前室/実験室/高さ…） */
}

.tbl2--spec2 .spec-rowttl {
  background: #18b7d3;
  color: #fff;
  font-weight: 700;
  text-align: center;
  width: 16%;
}

.tbl2--spec2 {
  /* セル中央寄せ */
}

.tbl2--spec2 .spec-center {
  text-align: center;
}

.tbl2--spec2 {
  /* 2段目の寸法など（少し小さく） */
}

.tbl2--spec2 .spec-sub {
  font-size: 1.2rem;
  color: #555;
}

.tbl2--spec2 {
  /* 長文エリア */
}

.tbl2--spec2 .spec-wide {
  text-align: left;
  line-height: 1.9;
  font-size: 1.3rem;
}

.tbl2--spec2 {
  /* 画像みたいな「点線の区切り」 */
}

.tbl2--spec2 .spec-dot-bottom th,
.tbl2--spec2 .spec-dot-bottom td {
  border-bottom: 1px dotted #9aa0a6;
  /* 点線 */
}

.tbl2--spec2 {
  /* 同一ブロック内は上線を薄くしたい場合 */
}

.tbl2--spec2 tbody tr+tr th,
.tbl2--spec2 tbody tr+tr td {
  border-top-color: #a7adb3;
}

@media all and (max-width: 639px) {
  .tbl2--spec2 {
    min-width: 920px;
  }

  .tbl2--spec2 th,
  .tbl2--spec2 td {
    padding: 10px 10px;
    font-size: 1.1rem;
  }

  .tbl2--spec2 .spec-wide {
    font-size: 1.05rem;
  }

  .tbl2--spec2 .spec-sub {
    font-size: 1rem;
  }
}

.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: 25%;
  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: #e0eaf2;
}

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

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

.company th {
  position: relative;
  background: #70AE27;
  color: #fff;
  font-weight: 600;
  width: 15%;
}

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

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

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

.tbl-border0 {
  width: 100%;
}

.tbl-border0.type1 {
  border-top: 1px solid #eee;
}

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

@media all and (max-width: 639px) {

  .tbl-border0 th,
  .tbl-border0 td {
    font-size: 11px;
  }
}

.tbl-border {
  width: 100%;
  border-top: 1px solid #ddd;
}

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

@media all and (max-width: 639px) {

  .tbl-border th,
  .tbl-border td {
    padding: 8px;
    font-size: 11px;
    letter-spacing: 0.05em;
  }
}

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

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

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

.tbl-border2 {
  width: 100%;
}

.tbl-border2 th,
.tbl-border2 td {
  padding: 12px;
  border-bottom: 1px solid;
  vertical-align: middle;
}

@media all and (max-width: 639px) {

  .tbl-border2 th,
  .tbl-border2 td {
    padding: 10px;
    font-size: 1.2rem;
  }
}

.tbl-border2 th {
  width: 20%;
  color: #333;
  text-align: left;
  border-color: #999;
}

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

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

.tbl-border2 td {
  border-color: rgb(231.25, 231.25, 231.25);
}

.marker {
  padding: 0 4px;
  margin-left: 4px;
  background: #fff;
  color: #a60007;
}

.price {
  color: #0e192d;
  font-size: 1.2em;
}

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

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

  .price span {
    font-size: 13px;
  }
}

.timetable-wrap {
  border: 1px solid #fffef3;
  background: #fff;
  font-size: 1.4rem;
  -webkit-box-shadow: 0 0 4px rgba(238, 234, 212, 0.2);
  box-shadow: 0 0 4px rgba(238, 234, 212, 0.2);
  margin-bottom: 12px;
}

.timetable {
  width: 100%;
  border-top: 1px solid #333;
}

.timetable.type1 {
  border-top: none;
}

.timetable.type1 th,
.timetable.type1 td {
  border: none;
}

.timetable.type1 .thead th {
  border-bottom: 2px solid #e0eaf2;
}

.timetable.type1 td {
  color: #555;
}

.timetable th,
.timetable td {
  border-bottom: 1px solid #70AE27;
  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 .thead th {
  border-top: 0;
  background: #42CBE3;
  color: #fff;
}

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

.timetable .circle {
  color: #42CBE3;
}

.timetable .triangle {
  color: #0e192d;
}

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

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

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

.ggmap2 {
  position: relative;
  padding-bottom: 65%;
  height: 0;
  overflow: hidden;
}

.ggmap2 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* list
----------------------------------*/
.list_common.type1 li {
  border-bottom: 1px dotted #cccccc;
}

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

.list_common li {
  padding-bottom: 4px;
  margin-bottom: 5px;
  border-bottom: 1px dashed #bbb;
}

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

.list_check.type1 li {
  background: transparent;
  padding: 5px;
  width: 48%;
}

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

.list_check.type1 li:before {
  color: #bbb;
  margin-right: 5px;
}

.list_check.type1 li a {
  color: #333;
  border-bottom: 0px;
}

.list_check.type1 li a:hover {
  color: #42CBE3;
}

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

  .list_check.type1 li:nth-child(2n) {
    margin: 0 auto;
  }
}

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

.list_check.type2 li {
  background: transparent;
  padding: 5px;
  width: 33.333%;
}

.list_check.type2 li a {
  color: #333;
  border-bottom: 0px;
}

.list_check.type2 li a:hover {
  color: #42CBE3;
}

@media all and (max-width: 639px) {
  .list_check.type2 li {
    width: 100%;
    letter-spacing: 0;
    padding: 0;
  }
}

.list_check li {
  padding: 8px;
  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, 254, 243, 0.2);
  margin-top: 10px;
}

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

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

@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 4px 4px 30px;
  color: #333;
  font-weight: 700;
  position: relative;
}

.list_check2 li .num {
  color: #42CBE3;
  margin: 0 4px;
  font-family: "Cinzel", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.list_check2 li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 8px;
  color: #42CBE3;
}

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

@media all and (max-width: 639px) {
  .list_check2 li {
    padding: 3px 0px 3px 20px;
  }
}

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

.list_check3.type1 li:not(:last-child) {
  border-bottom: 0 solid #aaa;
}

.list_check3.type1 li {
  width: 48%;
  margin-bottom: 8px;
}

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

@media all and (max-width: 639px) {
  .list_check3.type1 li {
    width: 49%;
  }

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

.list_check3.type2 li::before {
  color: #70AE27;
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: 900;
}

.list_check3 li {
  padding: 0 0 8px 0;
  color: #333;
  font-weight: 600;
  position: relative;
}

@media all and (max-width: 639px) {
  .list_check3 li {
    font-size: inherit;
    letter-spacing: 0.05em;
  }
}

.list_check3 li .num {
  color: #42CBE3;
  margin: 0 4px;
  font-family: "Cinzel", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.list_check3 li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f138";
  font-weight: 900;
  margin-right: 8px;
  color: rgb(98.5915492958, 153.1690140845, 34.3309859155);
}

@media all and (max-width: 639px) {
  .list_check3 li:before {
    margin-right: 4px;
  }
}

.list_check3 li:not(:last-child) {
  margin-bottom: 8px;
  border-bottom: 0.9px solid #ccc;
}

.list_check4.type1 li {
  border: 1px solid #aaa;
}

.list_check4.type1 li:before {
  color: #0e192d;
}

.list_check4 li {
  display: inline-block;
  margin: 4px 2px;
  padding: 3px 15px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #70AE27;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.list_check4 li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f138";
  font-weight: 900;
  margin-right: 5px;
  color: #70AE27;
}

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

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

.list-inline li {
  display: inline-block;
}

.list-inline li:not(:last-of-type):after {
  content: " / ";
  color: #70AE27;
}

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

  .list-inline li:before {
    content: "・";
    color: #70AE27;
  }

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

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

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

.ol-list.red li:before {
  counter-increment: number;
  content: counter(number);
  display: inline-block;
  font-family: "Barlow Condensed", serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  left: 0;
  top: 10px;
  position: absolute;
  font-size: 3.5rem;
  color: #70AE27;
  line-height: 1;
}

.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.type2 li {
  padding-top: 0;
  border-bottom: 0px solid #ccc;
  padding-bottom: 0;
}

.ol-list.type2 .clearfix {
  padding-top: 10px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}

.ol-list li {
  line-height: 2;
  padding-top: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
  position: relative;
  padding-left: 30px;
  padding-bottom: 10px;
  font-size: 1.8rem;
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #0e192d;
}

.ol-list li .inner {
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #333;
  display: block;
  padding: 5px;
  line-height: 1.6;
  font-size: 1.5rem;
}

.ol-list li:before {
  counter-increment: number;
  content: counter(number);
  display: inline-block;
  font-family: "Barlow Condensed", serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  left: 0;
  top: 10px;
  position: absolute;
  font-size: 3.5rem;
  color: #42CBE3;
  line-height: 1;
}

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

  .ol-list li .inner {
    font-size: 0.9em;
  }

  .ol-list li:before {
    font-size: 3rem;
  }
}

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

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

.ol-list2.type1>li {
  width: 49%;
}

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

@media all and (max-width: 896px) {
  .ol-list2.type1>li {
    width: 100%;
  }

  .ol-list2.type1>li:nth-child(2n) {
    margin-left: 0;
  }
}

.ol-list2>li {
  line-height: 1.8;
  font-weight: 600;
  margin: 0 auto 15px;
  font-size: 1.6rem;
}

.ol-list2>li:last-child {
  margin-bottom: 0;
}

.ol-list2>li .inner {
  font-size: 1.4rem;
  font-weight: 500;
  display: block;
  padding: 10px;
  line-height: 1.8;
}

.ol-list2>li:before {
  counter-increment: number;
  content: counter(number);
  background: #e0eaf2;
  display: inline-block;
  width: 1.8em;
  height: 1.8em;
  font-family: "Barlow Condensed", serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
  font-size: 1.8rem;
  color: #0e192d;
  border-radius: 100%;
}

@media all and (max-width: 896px) {
  .ol-list2>li {
    font-size: 1.3rem;
  }

  .ol-list2>li .inner {
    font-size: 1.2rem;
  }

  .ol-list2>li:before {
    font-size: 1.4rem;
  }
}

.list_disc li {
  padding: 5px 0 5px 20px;
  position: relative;
}

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

.list_disc li:before {
  content: "●";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #42CBE3;
  font-size: 80%;
}

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

.list_disc2 li {
  padding: 5px 0 0 15px;
  position: relative;
}

.list_disc2 li:before {
  content: "・";
  position: absolute;
  left: 0;
  top: 6px;
  color: #999;
}

.list_disc3 li {
  padding: 5px 0 0 15px;
  position: relative;
  font-size: 1.5rem;
}

.list_disc3 li:before {
  content: "・" !important;
  position: absolute !important;
  left: -10px !important;
  top: 3px !important;
  color: #999 !important;
}

@media all and (max-width: 639px) {
  .list_disc3 li:before {
    left: -15px !important;
    top: 6px !important;
  }
}

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

.list-btn.btn-col2 {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.list-btn.btn-col2 li {
  width: 48%;
  margin: auto;
  margin-bottom: 20px;
}

.list-btn.btn-col2 li a {
  font-size: 2rem;
  padding: 20px 5px;
}

@media all and (max-width: 639px) {
  .list-btn.btn-col2 li {
    width: 100%;
    margin: 0 auto 20px;
  }

  .list-btn.btn-col2 li a {
    font-size: 1.5rem;
  }
}

.list-btn li {
  width: 32%;
  margin: 0 1.995% 10px 0;
}

.list-btn li a {
  border: 1px solid #42CBE3;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  font-weight: 700;
  padding: 10px 3px;
  text-align: center;
  width: 100%;
  height: 100%;
  line-height: 1.6;
  letter-spacing: 0;
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 4px 4px rgba(66, 203, 227, 0.4);
  box-shadow: 4px 4px rgba(66, 203, 227, 0.4);
}

.list-btn li a:before {
  position: absolute;
  content: "";
  width: 70px;
  height: 70px;
  border-bottom: 0.2em solid #70AE27;
  border-right: 0.2em solid #70AE27;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}

.list-btn li a .small {
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
  color: rgb(31.2258064516, 184.0092165899, 210.7741935484);
  display: block;
  font-size: 1.8rem;
}

.list-btn li a span {
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  position: relative;
  z-index: 2;
}

.list-btn li a span mn {
  font-weight: 500;
  letter-spacing: 0.1em;
  font-size: 90%;
}

.list-btn li a:hover {
  background: #42CBE3;
}

.list-btn li a:hover span {
  color: #fff;
}

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

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

  .list-btn li a .small {
    font-size: 1.6rem;
  }

  .list-btn li a span {
    font-size: 1.4rem;
  }

  .list-btn li a span mn {
    display: block;
  }

  .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: #42CBE3;
  border: 1px solid rgb(31.2258064516, 184.0092165899, 210.7741935484);
}

.list-btn.type1 li a:hover {
  background: rgb(110.4193548387, 215.2211981567, 233.5806451613);
}

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

/* top_blog
----------------------------------*/
.tiple-item {
  margin: auto;
}

.tiple-item .top_blog_box {
  position: relative;
  background: #fff;
  color: #333;
  margin: 10px;
  height: 100%;
  -webkit-box-shadow: 0 0 10px rgba(51, 51, 51, 0.1);
  box-shadow: 0 0 10px rgba(51, 51, 51, 0.1);
}

.tiple-item .top_blog_box figure {
  height: 250px;
  width: 100%;
  overflow: hidden;
}

@media all and (max-width: 1100px) {
  .tiple-item .top_blog_box figure {
    height: 220px;
  }
}

@media all and (max-width: 896px) {
  .tiple-item .top_blog_box figure {
    height: 200px;
  }
}

.tiple-item .top_blog_box figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
  -webkit-transition: 0.4s all ease-in;
  transition: 0.4s all ease-in;
}

.tiple-item .top_blog_box:hover figure img {
  opacity: 0.8;
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}

.tiple-item .top_blog_box:hover .top_blog .inner:after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.tiple-item .top_blog_box .top_blog {
  display: block;
  position: relative;
  color: #333;
}

.tiple-item .top_blog_box .top_blog .inner {
  padding: 20px;
  position: relative;
}

.tiple-item .top_blog_box .top_blog .inner:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  background: #70AE27;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.tiple-item .top_blog_box .top_blog .inner .date {
  display: inline-block;
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.tiple-item .top_blog_box .top_blog .inner .top_blog_title {
  position: relative;
  padding-left: 15px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.tiple-item .top_blog_box .top_blog .inner .top_blog_title:before {
  content: "";
  background: #70AE27;
  width: 8px;
  height: 2px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

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

.blog-wrap>li {
  width: calc((100% - 30px) / 3);
  margin-right: 15px;
  margin-bottom: 25px;
}

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

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

  .blog-wrap>li:nth-child(3n) {
    margin-right: 4%;
  }

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

.blog-wrap>li a {
  display: block;
  position: relative;
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.blog-wrap>li a:hover {
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  -webkit-box-shadow: 0 0 12px rgba(51, 51, 51, 0.1);
  box-shadow: 0 0 12px rgba(51, 51, 51, 0.1);
}

.blog-wrap>li a:hover .morebtn {
  border-bottom-color: #70AE27;
  color: #70AE27;
}

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

.blog-wrap>li .blog-date {
  display: inline-block;
  color: #555;
  border-bottom: 2px solid #ccc;
  font-weight: 700;
  font-size: 1.3rem;
}

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

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

.blog-wrap>li .blog-img {
  overflow: hidden;
}

.blog-wrap>li .blog-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: 0.2s ease-in all;
  transition: 0.2s ease-in all;
}

.blog-wrap>li .blog-detail {
  padding: 15px;
}

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

.blog-wrap>li .blog-title {
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  overflow: hidden;
  line-height: 1.5;
  font-size: 1.6rem;
  color: #333;
  margin-top: 5px;
}

@media all and (max-width: 639px) {
  .blog-wrap>li .blog-title {
    font-size: 1.2rem;
  }
}

.blog-wrap>li .blog-txt {
  font-size: 1.3rem;
  margin-top: 8px;
  letter-spacing: 0;
  margin-bottom: 15px;
  color: #222;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  /*IE対策*/
  line-height: 1.8em;
  max-height: 3.6em;
}

@media all and (max-width: 639px) {
  .blog-wrap>li .blog-txt {
    font-size: 12px;
    margin-bottom: 25px;
  }
}

.blog-wrap>li .morebtn {
  position: absolute;
  right: 10px;
  bottom: 0;
  color: #a60007;
  border-bottom: 3px solid #a60007;
  font-size: 12px;
  font-weight: 700;
  padding: 0 10px;
  -webkit-transition: 0.2s ease-in all;
  transition: 0.2s ease-in all;
  letter-spacing: 0;
}

@media all and (max-width: 639px) {
  .blog-wrap>li .morebtn {
    font-size: 11px;
  }
}

.blog-wrap.type1 {
  display: block;
}

.blog-wrap.type1>li {
  width: 100%;
  border: 1px solid #e4e4e4;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
}

.blog-wrap.type1>li:last-child {
  margin-bottom: 0;
}

.blog-wrap.type1>li a {
  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-wrap.type1>li a .blog-img {
  width: 32%;
  max-height: 160px;
  height: 100%;
}

.blog-wrap.type1>li a .blog-detail {
  width: 68%;
  padding: 15px;
}

@media all and (max-width: 639px) {
  .blog-wrap.type1>li a .blog-detail {
    width: calc(100% - 80px);
    padding: 15px 15px 30px;
  }
}

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

.pages>div {
  font-size: 13px;
  line-height: 1.4;
  width: 48%;
}

.blog-page-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 12px;
  margin-bottom: 10px;
}

.blog-page-detail .blog-date2 {
  display: inline-block;
  color: #42CBE3;
}

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

.blog-page-detail .blog-date2 {
  margin-right: 10px;
}

.blog-page-detail .blog-category {
  background: #f4f4f4;
  margin-right: 5px;
}

.blog-date2 {
  display: inline-block;
  color: #42CBE3;
}

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

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

.poly {
  clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);
}

.poly-img {
  border-radius: 31% 69% 70% 30%/30% 43% 57% 70%;
}

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

.img-hv {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.img-hv:hover {
  opacity: 0.95;
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
  -webkit-filter: drop-shadow(8px 2px 10px rgba(0, 0, 0, 0.1));
  -moz-filter: drop-shadow(8px 2px 10px rgba(0, 0, 0, 0.1));
  -ms-filter: drop-shadow(8px 2px 10px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(8px 2px 10px rgba(0, 0, 0, 0.1));
}

.img-hv2 {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.img-hv2:hover {
  opacity: 0.7;
}

.w300 {
  width: 300px;
}

.w200 {
  width: 200px;
}

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

.spbr {
  display: none;
}

.color1 {
  color: #42CBE3;
}

.color2 {
  color: #70AE27;
}

.color3 {
  color: rgb(26.1016949153, 46.6101694915, 83.8983050847);
}

.relative {
  position: relative;
}

.relative.type1 {
  z-index: 5;
}

.bigger {
  font-size: 1.15em;
}

.smaller {
  font-size: 0.95em;
  letter-spacing: 0;
}

.num {
  font-weight: 700;
}

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

.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: 500px;
  margin: 0 auto 30px;
  padding-top: 25px;
}

.telbnr li {
  border: 3px solid #70AE27;
  padding: 15px;
  text-align: center;
  border-radius: 50px;
  line-height: 1.4;
}

.telbnr li mn {
  font-size: 90%;
  font-weight: 600;
  color: #333;
}

.telbnr li a {
  margin-top: 20px;
  display: block;
  font-size: 3rem;
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
  color: #70AE27;
}

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

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

.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: 500;
  font-size: 1.8rem;
  color: #333;
  margin-top: -30px;
}

.telbnr-ttl span {
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  background: #70AE27;
  color: #fff;
  padding: 2px 15px;
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
  border-radius: 20px;
}

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

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

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

.breadcrumb li a {
  color: #42CBE3;
}

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

@media all and (max-width: 639px) {
  .breadcrumb {
    font-size: 11px;
    letter-spacing: 0.05em;
  }

  .breadcrumb li+li:before {
    margin: 0 5px;
  }
}

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

.form.span-sub dl dt span {
  background: #70AE27;
}

.form.span-sub button {
  border: 1px solid #70AE27;
  background: #70AE27;
}

.form.span-sub button:hover {
  color: #70AE27;
}

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

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

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

.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 #42CBE3;
  font-weight: 700;
  padding: 12px 5px;
  margin: 0 auto;
  width: 250px;
  background: #42CBE3;
  border-radius: 25px;
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
}

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

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

.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: #555;
  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 #42CBE3;
  border-bottom: 3px solid #42CBE3;
  -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 #42CBE3;
  -webkit-box-shadow: 0 0 0 8px rgba(66, 203, 227, 0.2);
  box-shadow: 0 0 0 8px rgba(66, 203, 227, 0.2);
  max-width: 700px;
  margin: 0 auto;
  background: #fefefe;
}

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

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

/* accordion
----------------------------------*/
.accordion {
  border: 1px solid #ddd;
}

.accordion dt,
.accordion dd {
  position: relative;
  padding: 1em;
}

.accordion dt {
  background: #fff;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: 600;
  border-bottom: 1px dotted #ddd;
}

.accordion dt:after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f067";
  font-weight: 900;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 1.7rem;
}

.accordion dt.on:after {
  font-family: "Font Awesome 5 Free";
  content: "\f068";
  font-weight: 900;
}

.accordion dd {
  display: none;
  padding: 20px;
  background: #fff;
}

.policy {
  padding: 0;
  background: #f4f4f4;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #ccc;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

.mtitle_small {
  padding: 4px 0;
  font-size: 110%;
  border-top: 1px solid #42CBE3;
  border-bottom: 1px solid #42CBE3;
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
}

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

.mtitle_small.type1 {
  border-top: 1px solid #70AE27;
  border-bottom: 1px solid #70AE27;
}

.mtitle_small.type1:before {
  color: #70AE27;
}

.mtitle_small.type2 {
  border-top: 1px solid #777;
  border-bottom: 1px solid #777;
}

.mtitle_small.type2:before {
  color: #777;
}

.mtitle_small {
  margin-bottom: 15px;
}

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

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

.mtitle_small2.sbc:before {
  background-color: #70AE27;
}

.mtitle_small2:before {
  content: "";
  background-color: #42CBE3;
  width: 10px;
  height: 4px;
  position: absolute;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
  left: 0;
}

.mtitle_small2.type1 {
  margin-bottom: 10px;
}

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

.mtitle_small3 {
  padding-bottom: 4px;
  position: relative;
  margin-bottom: 20px;
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 1.8rem;
  color: #333;
}

.mtitle_small3:first-letter {
  font-size: 2.2rem;
  color: #42CBE3;
}

.mtitle_small3.sbc:first-letter {
  color: #70AE27;
}

.mtitle_small3.sbc:before {
  background: #70AE27;
}

.mtitle_small3:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 200px;
  height: 2px;
  background: #42CBE3;
  opacity: 0.8;
}

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

  .mtitle_small3:first-letter {
    font-size: 1.6rem;
  }

  .mtitle_small3:before {
    width: 150px;
  }
}

.mtitle_small4 {
  position: relative;
  background: #fefefe;
  border: 1px solid #ddd;
  font-size: 2rem;
  padding: 15px 15px 15px 30px;
  margin-bottom: 20px;
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.mtitle_small4:before {
  position: absolute;
  top: 15%;
  left: 8px;
  width: 6px;
  height: 70%;
  content: "";
  background: rgb(43.7903225806, 196.8894009217, 223.7096774194);
}

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

/*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: 23.5%;
  margin-right: 2%;
  margin-bottom: 10px;
}

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

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

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

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

  .gallery li a {
    height: 120px;
  }

  .gallery li p {
    font-size: 12px;
  }
}

/*photoギャラリー*/
.gallery2 {
  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;
  text-align: center;
}

.gallery2 li {
  width: 32%;
  position: relative;
  margin: 0 2% 10px 0;
}

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

.gallery2 li a {
  background: rgba(244, 244, 244, 0.6);
  display: block;
  text-align: center;
  padding: 0px;
  height: 240px;
}

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

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

@media all and (max-width: 896px) {
  .gallery2 li {
    width: 48%;
    margin: 0 1% 10px;
  }

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

  .gallery2 li a {
    height: 120px;
  }

  .gallery2 li p {
    font-size: 12px;
  }
}

.list2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 1500px;
  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;
  }
}

@media all and (max-width: 639px) {
  .list2.sp100 li {
    width: 48%;
    margin-top: 50px;
  }

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

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

.list3>li {
  width: 32%;
  position: relative;
  margin: 0 2% 10px 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;
  }
}

@media all and (max-width: 639px) {
  .list3.sp100 li {
    width: 32%;
    margin: 0 2% 10px 0;
  }

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

.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(14, 25, 45, 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: #42CBE3;
  border-bottom: 1px solid #ccc;
  margin: 10px 0;
}

.box-arrow {
  position: relative;
}

.box-arrow:after {
  position: absolute;
  content: "";
  right: -15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 0 30px 30px;
  border-color: transparent transparent transparent #ffcc33;
  z-index: 3;
}

@media all and (max-width: 639px) {
  .box-arrow:after {
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: auto;
    bottom: -15px;
    border-width: 15px 20px 0 20px;
    border-color: #ffcc33 transparent transparent transparent;
  }
}

.caution {
  color: #a60007;
  letter-spacing: 0;
  font-size: 1.4rem;
}

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

.note {
  padding: 20px 15px;
  background: #f4f4f4;
}

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

.note2 {
  padding: 20px 15px;
  background: #fff;
}

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

.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: 100%;
  margin-bottom: 25px;
  padding: 10px;
  background: #f4f4f4;
}

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

.flow-dl dt {
  color: #42CBE3;
  width: 60px;
  text-align: center;
  margin-right: 20px;
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
  padding-top: 8px;
}

.flow-dl dt span {
  font-size: 3.5rem;
  display: block;
  line-height: 1;
  color: #42CBE3;
  font-family: "Cinzel", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.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: "Cinzel", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-size: 4.5rem;
  color: #42CBE3;
  line-height: 1;
  top: 0;
  left: 0;
  position: absolute;
}

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

.txt1 {
  font-weight: 600;
  line-height: 1.3;
}

.txt1 span {
  font-size: 4rem;
  color: #d36c70;
  font-weight: 900;
  margin-left: 15px;
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
}

.txt1 span mn {
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-left: 3px;
  font-size: 2.2rem;
}

@media all and (max-width: 639px) {
  .txt1 span {
    font-size: 2.6rem;
    margin-left: 10px;
  }

  .txt1 span mn {
    font-size: 1.6rem;
  }
}

.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-dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.faq-dl .faq-inner {
  margin-bottom: 20px;
  width: 48%;
  background: #fff;
}

@media all and (max-width: 639px) {
  .faq-dl .faq-inner {
    width: 90%;
    margin: 0 auto 20px;
  }
}

.faq-dl .faq-inner dt,
.faq-dl .faq-inner dd {
  position: relative;
}

.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: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
}

.faq-dl .faq-inner dt {
  background-image: -webkit-gradient(linear, left top, right top, from(#42CBE3), to(#70AE27));
  background-image: linear-gradient(to right, #42CBE3, #70AE27);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  padding: 10px 10px 10px 55px;
}

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

.faq-dl .faq-inner dd {
  padding: 20px 20px 20px 55px;
}

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

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

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

.sns-list.type2 {
  margin-left: 15px;
}

@media all and (max-width: 1100px) {
  .sns-list.type2 {
    margin-left: 10px;
  }

}

.sns-list.type2 li a {
  background: transparent !important;
  border: 1px solid #fff;
}

.sns-list.type2 li a::before {
  display: none;
}

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

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

.sns-list.type3 li a {
  background: transparent !important;
  border: 1px solid #fff;
}

.sns-list.type3 li a::before {
  display: none;
}

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

.sns-list li a {
  width: 48px;
  height: 48px;
  line-height: 48px;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  border-radius: 50%;
}

.sns-list li a img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 22px;
  z-index: 3;
}

.sns-list li a:hover img {
  -webkit-transition: all 1s;
  transition: all 1s;
  -webkit-transform: rotate(360deg);
  transform: translate(-50%, -50%) rotate(360deg);
}

.sns-list li a.btn-other {
  background: #42CBE3;
}

.sns-list li a.btn-other2 {
  background: #70AE27;
}

.sns-list li a.btn-brown {
  background: #333;
}

.sns-list li a.btn-map {
  background: #a60007;
}

.sns-list li a.btn-lit {
  background: #918ff1;
}

.sns-list li a.btn-tiktok {
  background: #000;
}

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

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

.sns-list li a.btn-line {
  background: #00b900;
}

.sns-list li a.btn-rakuten {
  background: #bf0000;
}

.sns-list li a.btn-youtube {
  background: #d62a29;
}

.sns-list li a.btn-yahoo {
  background: #df0f16;
}

.sns-list li a.btn-ameba {
  background: #2c883a;
}

.sns-list li a.btn-online {
  background: #42CBE3;
}

.sns-list li a.btn-x {
  background: #000000;
}

.sns-list li a.btn-bio {
  background: #000000;
}

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

.sns-list li a.btn-instagram:before {
  content: "";
  position: absolute;
  top: 20px;
  left: -12px;
  width: 60px;
  height: 60px;
  background: radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
}

@media all and (max-width: 1100px) {
  .sns-list li a {
    width: 42px;
    height: 42px;
    line-height: 42px;
  }

  .sns-list li a img {
    width: 18px;
  }
}

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

  .sns-list li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }

  .sns-list li a img {
    width: 16px;
  }
}

.name {
  width: 200px;
  margin: -20px auto 20px;
  position: relative;
  z-index: 2;
  background: #fefefe;
  color: #333;
  font-weight: 600;
  text-align: center;
  padding: 8px 6px;
  /*box-shadow: 0 0 8px rgba($brown, 0.05);*/
  line-height: 1.6;
  font-size: 1.6rem;
}

.name span {
  font-size: 1.4rem;
}

.name en {
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
  color: #70AE27;
  font-size: 1.2rem;
}

.greet {
  font-weight: 600;
  letter-spacing: 0;
  line-height: 2;
  color: #333;
}

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

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

@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;
  -webkit-box-shadow: 8px 8px #42CBE3;
  box-shadow: 8px 8px #42CBE3;
  padding: 30px;
  margin-right: auto;
  margin-left: auto;
}

.box1.type1 {
  position: relative;
  background: #fff;
  border: 1px solid #70AE27;
}

.box1.type1:before {
  position: absolute;
  content: "";
  left: 50%;
  top: -80px;
  width: 1px;
  height: 80px;
  z-index: 2;
  background: #70AE27;
}

@media all and (max-width: 639px) {
  .box1.type1:before {
    top: -40px;
    height: 40px;
  }
}

.box1.type2 {
  max-width: 1200px;
}

.box1.type3 {
  max-width: 1200px;
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 0 10px;
}

.box1.type3:before {
  position: absolute;
  content: "";
  left: 50%;
  top: -80px;
  width: 1px;
  height: 80px;
  z-index: 2;
  background: #42CBE3;
}

@media all and (max-width: 639px) {
  .box1.type3:before {
    top: -40px;
    height: 40px;
  }
}

@media all and (max-width: 639px) {
  .box1 {
    -webkit-box-shadow: 5px 5px #e0eaf2;
    box-shadow: 5px 5px #e0eaf2;
    padding: 15px 12px;
    width: calc(100% - 10px);
  }
}

.pickup {
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
  color: #42CBE3;
}

.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>li {
  width: 48%;
  margin-right: 4%;
  margin-bottom: 35px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  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(51, 51, 51, 0.05);
  box-shadow: 0 0 15px rgba(51, 51, 51, 0.05);
}

.flow-list>li.type100 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  margin-right: 0;
}

.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: #42CBE3;
  font-size: 3.4rem;
  -ms-flex-item-align: center;
  align-self: center;
  line-height: 1.2;
  font-family: "Cinzel", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.flow-list>li .flow-num span {
  font-size: 1.4rem;
  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: #333;
  padding: 5px;
  border-bottom: solid #42CBE3 1px;
  border-top: solid #42CBE3 1px;
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
  font-size: 1.6rem;
}

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

  .flow-list>li .flow-num span {
    display: inline;
    margin-right: 5px;
  }

  .flow-list>li .flow-title {
    font-size: 1.4rem;
  }

  .flow-list>li .txt {
    margin: 20px auto 0;
  }
}

.price-dl dt {
  background: rgb(255, 251.875, 217.5);
  padding: 14px 20px;
  color: #333;
  border-top: 1px solid #70AE27;
  border-bottom: 1px solid #70AE27;
}

.price-dl dd {
  padding: 20px;
  margin-bottom: 25px;
}

.kiritori {
  height: 1px;
  border-top: 1px dashed #ddd;
  margin: 20px auto 30px;
  width: 100%;
  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 .child {
  width: 48%;
}

.column2 .child2 {
  width: 45%;
}

.column2 .child3 {
  width: 52%;
}

.column2 .child4 {
  width: 35%;
}

.column2 .child4 .inner {
  padding: 10px 5px;
}

.column2 .child5 {
  width: 63%;
}

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

  .column2 .child,
  .column2 .child2,
  .column2 .child3,
  .column2 .child4,
  .column2 .child5 {
    width: 100%;
  }

  .column2 .child.column2-img,
  .column2 .child2.column2-img,
  .column2 .child3.column2-img,
  .column2 .child4.column2-img,
  .column2 .child5.column2-img {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    margin-bottom: 30px;
  }

  .column2 .child.rec-bnr,
  .column2 .child2.rec-bnr,
  .column2 .child3.rec-bnr,
  .column2 .child4.rec-bnr,
  .column2 .child5.rec-bnr {
    margin-top: 10px;
  }

  .column2 .child.rec-bnr .inner,
  .column2 .child2.rec-bnr .inner,
  .column2 .child3.rec-bnr .inner,
  .column2 .child4.rec-bnr .inner,
  .column2 .child5.rec-bnr .inner {
    padding: 25px 15px;
  }

  .column2 .child.bm20,
  .column2 .child2.bm20,
  .column2 .child3.bm20,
  .column2 .child4.bm20,
  .column2 .child5.bm20 {
    margin-bottom: 20px;
  }

  .column2 .child.bm30,
  .column2 .child2.bm30,
  .column2 .child3.bm30,
  .column2 .child4.bm30,
  .column2 .child5.bm30 {
    margin-bottom: 30px;
  }
}

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

.column3 .child {
  width: 33%;
}

.column3 .child.text-box {
  padding: 30px 20px;
}

.column3 .child2 {
  width: 32%;
}

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

  .column3 .child,
  .column3 .child2 {
    width: 100%;
  }

  .column3 .child.text-box,
  .column3 .child2.text-box {
    padding: 20px 10px;
  }

  .column3 .child.bm20,
  .column3 .child2.bm20 {
    margin-bottom: 20px;
  }
}

.item-column3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: -3%;
}

.item-column3 .child {
  width: 31.3%;
  margin: 0 3% 3% 0;
}

.item-column3 .child .item_link {
  display: block;
  color: #333;
  font-size: 1.3rem;
}

.item-column3 .child a.item_link:hover .item_image:before {
  opacity: 0.4;
}

.item-column3 .child a.item_link:hover .item_image:after {
  opacity: 1;
}

.item-column3 .child a.item_link:hover .item_image img {
  -webkit-transform: scale(1.2, 1.2);
  transform: scale(1.2, 1.2);
}

.item-column3 .child .item_image {
  overflow: hidden;
  position: relative;
  height: 240px;
}

.item-column3 .child .item_image:before,
.item-column3 .child .item_image:after {
  position: absolute;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in;
  transition: 0.2s opacity ease-in;
}

.item-column3 .child .item_image:before {
  content: "";
  background: #000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.item-column3 .child .item_image:after {
  content: "View more";
  color: #fefefe;
  font-size: 1.8rem;
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.07em;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  padding: 30px;
  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;
  text-align: center;
  border: 3px solid #fff;
  z-index: 3;
}

.item-column3 .child .item_image img {
  -webkit-transition: 1s all;
  transition: 1s all;
}

.item-column3 .child .item_title {
  position: relative;
  margin: 10px 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #333;
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 1.6rem;
}

.item-column3 .child:nth-child(3n) {
  margin: 0 0 3% 0;
}

@media all and (max-width: 896px) {
  .item-column3 {
    display: block;
    margin-bottom: 0;
  }

  .item-column3 .child {
    width: 100%;
    margin: 0 0 20px;
  }

  .item-column3 .child:nth-child(3n) {
    margin: 0 0 20px;
  }

  .item-column3 .child:last-child {
    margin: 0;
  }

  .item-column3 .child .item_image {
    width: 100%;
    height: inherit;
    height: 180px;
  }

  .item-column3 .child .item_title {
    margin: 5px 0;
    font-size: 1.3rem;
  }
}

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

.top-column2 .child {
  width: 42%;
  padding: 20px;
  table-layout: fixed;
  word-wrap: break-word;
}

.top-column2 .child-img {
  width: 54%;
  position: relative;
}

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

  .top-column2 .child {
    width: 100%;
    padding: 5px;
  }

  .top-column2 .child-img {
    width: 100%;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    margin-bottom: 20px;
  }
}

/* slick
----------------------------------*/
.thumb-item {
  margin-bottom: 30px;
}

.thumb-item .items a {
  width: 100%;
  height: 320px;
  overflow: hidden;
  display: block;
  padding: 0 5px;
}

.thumb-item .items a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
  -webkit-transition: -webkit-transform 0.3s ease-in;
  transition: -webkit-transform 0.3s ease-in;
  transition: transform 0.3s ease-in;
  transition: transform 0.3s ease-in, -webkit-transform 0.3s ease-in;
}

.thumb-item .items a img:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

@media all and (max-width: 639px) {
  .thumb-item .items a {
    height: 220px;
  }
}

.thumb-item-nav .items {
  overflow: hidden;
  height: 70px !important;
  margin: 0 5px;
  width: auto;
}

.thumb-item-nav .items 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 .items {
    height: 60px;
  }
}

.slick-prev,
.slick-next {
  background: rgba(255, 255, 255, 0.8) !important;
  width: 35px !important;
  height: 35px !important;
  z-index: 20 !important;
  border-radius: 50% !important;
  border: 1px solid #aaa !important;
  top: 40%;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.slick-prev:before,
.slick-next:before {
  color: #333 !important;
}

.slick-prev:hover,
.slick-next:hover {
  background: #f4f4f4;
}

.slick-prev {
  left: 0 !important;
}

.slick-next {
  right: 0 !important;
}

.slider-item {
  width: 100%;
  max-width: 700px;
  border: 2px solid #70AE27;
  padding: 25px !important;
  background: #fff;
}

.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: -370px;
  border-bottom: solid 2px;
  border-left: solid 2px;
  border-color: #42CBE3;
}

@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: #70AE27;
  }
}

.slide-arrow.next-arrow {
  right: 50%;
  margin-right: -370px;
  border-top: solid 2px;
  border-right: solid 2px;
  border-color: #42CBE3;
}

@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: #70AE27;
  }
}

.gallery-block {
  position: relative;
}

.gallery-block .gallery-name {
  position: absolute;
  left: 30px;
  top: -30px;
  z-index: 2;
}

.gallery-block .gallery-name .eng {
  color: #70AE27;
}

.slide_list {
  position: relative;
  display: none;
  margin: 0 auto;
}

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

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

.slide_list li img {
  width: auto;
  height: 280px;
  -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 p {
  font-size: 12px;
  text-align: center;
}

.slide_list li:hover img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}

@media all and (max-width: 639px) {
  .slide_list li {
    margin-right: 2%;
  }

  .slide_list li img {
    height: 140px;
  }
}

.top-box {
  max-width: 1200px;
  margin: auto;
  padding-top: 50px;
  margin-bottom: 50px;
  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-box li {
  line-height: 1.5;
}

.top-box li.lh2 {
  line-height: 3;
}

.top-box li {
  padding: 25px 20px;
  position: relative;
  text-align: center;
  font-size: 1.7rem;
  letter-spacing: 0.3rem;
  width: 31%;
  background: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #70AE27;
  -webkit-box-shadow: 8px 8px rgba(112, 174, 39, 0.3);
  box-shadow: 8px 8px rgba(112, 174, 39, 0.3);
  border-radius: 5px;
}

@media all and (max-width: 639px) {
  .top-box {
    max-width: initial;
    width: 90%;
    padding-top: 30px;
    margin-bottom: 30px;
  }

  .top-box li.lh2 {
    line-height: 1.5;
  }

  .top-box li {
    width: 100%;
    margin-bottom: 15px;
    font-size: 1.3rem;
    padding: 15px 10px;
    -webkit-box-shadow: 5px 5px rgba(112, 174, 39, 0.3);
    box-shadow: 5px 5px rgba(112, 174, 39, 0.3);
  }

  .top-box li:last-child {
    margin-bottom: 0;
  }
}

.top-list li {
  padding: 8px;
  font-weight: 600;
}

.top-list li:not(:last-child) {
  margin-bottom: 10px;
  border-bottom: 1px solid #333;
}

.top-list li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: 900;
  margin-right: 5px;
  color: #70AE27;
}

.top-list.type1 li:before {
  color: #0e192d;
}

.sinryou-list {
  font-size: 12px;
  letter-spacing: 0;
}

.name-box {
  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;
  text-align: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  font-weight: 600;
  margin: 10px auto 40px;
}

.name-box p {
  color: rgb(31.2258064516, 184.0092165899, 210.7741935484);
}

.name-box p span {
  display: block;
  font-size: 1.3rem;
  color: #333;
}

@media all and (max-width: 639px) {
  .name-box p span {
    font-size: 12px;
  }
}

.name-box p:first-child {
  margin-left: 30px;
}

.about-txt {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 70px;
  -moz-column-gap: 70px;
  column-gap: 70px;
}

@media all and (max-width: 639px) {
  .about-txt {
    -webkit-column-count: inherit;
    -moz-column-count: inherit;
    column-count: inherit;
  }
}

.txt {
  font-size: 1.4rem;
}

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

.top-anchor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 800px;
  margin: 30px auto 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.top-anchor li {
  width: 31%;
}

.top-anchor li a {
  display: block;
  width: 100%;
  text-align: center;
}

.top-anchor li img {
  max-width: 80%;
  margin: 0 auto;
}

.top-anchor li .anchor-title {
  position: relative;
  margin-top: 20px;
}

.top-anchor li .anchor-title span {
  padding: 10px 0;
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  border-top: 0.9px solid #42CBE3;
  border-bottom: 0.9px solid #42CBE3;
  letter-spacing: 0.15em;
}

@media all and (max-width: 639px) {
  .top-anchor li .anchor-title span {
    display: block;
    font-size: 1.2rem;
    line-height: 1.3;
    padding: 6px 0;
  }
}

.top-anchor li .anchor-title:after {
  position: absolute;
  content: "";
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -30px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 12.5px 0 12.5px;
  border-color: #70AE27 transparent transparent transparent;
}

/* top_main
----------------------------------*/
.top_main {
  overflow: hidden;
}

.top_main .inner {
  position: relative;
  margin: 40px 0 60px;
}

.top_main .inner.type1 {
  margin: 0 auto;
}

.top_main .inner .top_main_contents {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.top_main .inner .top_main_contents .top_main_txt {
  position: relative;
  width: 680px;
  left: 0%;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(3px);
  -webkit-box-shadow: 2px 2px 10px -3px rgba(51, 51, 51, 0.2);
  box-shadow: 2px 2px 10px -3px rgba(51, 51, 51, 0.2);
  padding: 35px 50px;
}

.top_main .inner .top_main_contents .top_main_img {
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 40px;
  width: 700px;
  max-width: 100%;
}

.top_main .inner .top_main_contents .top_main_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

@media all and (max-width: 896px) {
  .top_main .inner .top_main_contents .top_main_img {
    display: none;
  }
}

.top_main .inner .top_main_contents .top_main_img_small {
  display: none;
}

@media all and (max-width: 896px) {
  .top_main .inner .top_main_contents .top_main_img_small {
    display: block;
    margin-bottom: 30px;
  }
}

@media all and (max-width: 896px) {
  .top_main .inner .top_main_contents {
    max-width: 90%;
    margin: auto;
  }

  .top_main .inner .top_main_contents .top_main_txt {
    left: 0%;
    padding: 15px;
  }
}

@media all and (max-width: 639px) {
  .top_main .inner .top_main_contents {
    max-width: 95%;
  }
}

.clinic-list li {
  margin-bottom: 30px;
}

.clinic-list li a {
  display: block;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.clinic-list li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  font-family: "object-fit: contain;";
}

.clinic-list li p {
  font-size: 1.4rem;
  padding: 5px;
  line-height: 1.5;
}

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

  .clinic-list li a img {
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover;";
  }

  .clinic-list li p {
    font-size: 13px;
  }
}

.fuchi {
  text-shadow: 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff;
}

.mini {
  font-size: 90%;
  line-height: 1.5;
}

.en {
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
}

.normal {
  font-weight: normal;
}

.medical1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background: #fefefe;
  position: relative;
}

.medical1:before {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background: url(../img/top-medical01.jpg) no-repeat center/cover;
}

.medical1.type1:before {
  background: url(../img/top-medical02.jpg) no-repeat center/cover;
}

.medical1.type2:before {
  background: url(../img/top-medical03.jpg) no-repeat center/cover;
}

.medical1 .left {
  padding: 80px 40px;
  width: 50%;
  -ms-flex-item-align: center;
  align-self: center;
  position: relative;
}

.medical1 .left .inner {
  max-width: 550px;
  margin: 0 auto;
}

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

  .medical1 .left {
    width: 100%;
    margin-top: 200px;
    padding: 30px 15px;
  }
}

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

.medical2-wrap .medical1 {
  width: 50%;
  background: #fff;
}

.medical2-wrap .medical1 .left {
  width: 60%;
  background: #fff;
  padding: 60px 20px;
}

@media all and (max-width: 896px) {
  .medical2-wrap .medical1:before {
    width: 100%;
    height: 240px;
  }

  .medical2-wrap .medical1 .left {
    width: 100%;
    margin-top: 240px;
    padding: 30px 15px;
  }
}

@media all and (max-width: 639px) {
  .medical2-wrap .medical1 {
    width: 100%;
  }

  .medical2-wrap .medical1:before {
    height: 180px;
  }

  .medical2-wrap .medical1 .left {
    margin-top: 180px;
    padding: 20px 15px;
  }
}

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

.medical3 .child {
  width: 25%;
  background: #fffef3;
}

.medical3 .child img {
  width: 100%;
}

.medical3 .child .inner {
  position: relative;
  padding: 25px;
}

@media all and (max-width: 896px) {
  .medical3 .child {
    width: 50%;
  }
}

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

  .medical3 .child {
    width: 100%;
  }

  .medical3 .child .inner {
    padding: 20px;
  }
}

.ita {
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
  font-style: italic !important;
  text-transform: inherit !important;
  letter-spacing: 0.1em;
}

.tcenter_pc {
  text-align: center;
}

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

.bg-common {
  position: relative;
}

.bg-common:before {
  position: absolute;
  content: "";
  width: 60%;
  height: 60%;
  top: 0%;
  left: 0;
  background: url(../img/bg-common1.jpg) no-repeat center top/cover;
  opacity: 0.6;
}

@media all and (max-width: 896px) {
  .bg-common:before {
    width: 80%;
    height: 40%;
  }
}

@media all and (max-width: 639px) {
  .bg-common:before {
    width: 80%;
    height: 200px;
    opacity: 0.1;
  }
}

.bg-common.common2:before {
  left: auto;
  right: 0;
  background: url(../img/bg-common2.jpg) no-repeat center/cover;
  opacity: 0.4;
}

@media all and (max-width: 639px) {
  .bg-common.common2:before {
    opacity: 0.1;
  }
}

.content-box {
  max-width: 60%;
  margin-left: auto;
  margin-bottom: 45px;
}

.content-box.type1 {
  margin-left: 0;
}

@media all and (max-width: 896px) {
  .content-box.type1 {
    margin-right: auto;
    margin-left: auto;
  }
}

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

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

.content-txt {
  padding: 20px 40px;
  font-size: 1.7rem;
  line-height: 2;
}

@media all and (max-width: 896px) {
  .content-txt {
    font-size: 1.5rem;
  }
}

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

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

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

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

.faq dd {
  fonnt-size: 90%;
  display: none;
  position: relative;
  margin-bottom: 24px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 16px;
  padding-left: 48px;
  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: #a60007;
  width: 35px;
  height: 35px;
  text-align: center !important;
}

.faq:last-child {
  margin-bottom: 0;
}

.faq dt:before,
.faq dd:before {
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
}

.eng,
eng {
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
}

.TextTyping span {
  display: none;
}

.TextTyping::after {
  content: "|";
  font-weight: 100;
  -webkit-animation: typinganime 0.8s ease infinite;
  animation: typinganime 0.8s ease infinite;
}

.TextTyping.af_none::after {
  display: none;
}

@-webkit-keyframes typinganime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes typinganime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.glowAnime span {
  opacity: 0;
}

.glowAnime.glow span {
  -webkit-animation: glow_anime_on 1s ease-out forwards;
  animation: glow_anime_on 1s ease-out forwards;
}

@-webkit-keyframes glow_anime_on {
  0% {
    opacity: 0;
    text-shadow: 0 0 0 #fff, 0 0 0 #fff;
  }

  50% {
    opacity: 1;
    text-shadow: 0 0 10px #fff, 0 0 15px #fff;
  }

  99% {
    opacity: 1;
    text-shadow: 0 0 0 #fff, 0 0 0 #fff;
  }

  100% {
    opacity: 1;
    text-shadow: none;
  }
}

@keyframes glow_anime_on {
  0% {
    opacity: 0;
    text-shadow: 0 0 0 #fff, 0 0 0 #fff;
  }

  50% {
    opacity: 1;
    text-shadow: 0 0 10px #fff, 0 0 15px #fff;
  }

  99% {
    opacity: 1;
    text-shadow: 0 0 0 #fff, 0 0 0 #fff;
  }

  100% {
    opacity: 1;
    text-shadow: none;
  }
}

.js-span-text.on {
  opacity: 1;
}

.js-span-text.on span {
  display: inline-block;
  opacity: 0;
}

.js-span-text.on span:nth-child(1) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.1s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.1s forwards;
}

.js-span-text.on span:nth-child(2) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.2s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.2s forwards;
}

.js-span-text.on span:nth-child(3) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.3s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.3s forwards;
}

.js-span-text.on span:nth-child(4) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.4s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.4s forwards;
}

.js-span-text.on span:nth-child(5) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.5s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.5s forwards;
}

.js-span-text.on span:nth-child(6) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.6s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.6s forwards;
}

.js-span-text.on span:nth-child(7) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.7s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.7s forwards;
}

.js-span-text.on span:nth-child(8) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.8s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.8s forwards;
}

.js-span-text.on span:nth-child(9) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.9s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.9s forwards;
}

.js-span-text.on span:nth-child(10) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1s forwards;
}

.js-span-text.on span:nth-child(11) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.1s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.1s forwards;
}

.js-span-text.on span:nth-child(12) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.2s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.2s forwards;
}

.js-span-text.on span:nth-child(13) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.3s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.3s forwards;
}

.js-span-text.on span:nth-child(14) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.4s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.4s forwards;
}

.js-span-text.on span:nth-child(15) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.5s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.5s forwards;
}

.js-span-text.on span:nth-child(16) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.6s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.6s forwards;
}

.js-span-text.on span:nth-child(17) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.7s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.7s forwards;
}

.js-span-text.on span:nth-child(18) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.8s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.8s forwards;
}

.js-span-text.on span:nth-child(19) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.9s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.9s forwards;
}

.js-span-text.on span:nth-child(20) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2s forwards;
}

.js-span-text.on span:nth-child(21) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.1s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.1s forwards;
}

.js-span-text.on span:nth-child(22) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.2s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.2s forwards;
}

.js-span-text.on span:nth-child(23) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.3s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.3s forwards;
}

.js-span-text.on span:nth-child(24) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.4s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.4s forwards;
}

.js-span-text.on span:nth-child(25) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.5s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.5s forwards;
}

.js-span-text.on span:nth-child(26) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.6s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.6s forwards;
}

.js-span-text.on span:nth-child(27) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.7s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.7s forwards;
}

.js-span-text.on span:nth-child(28) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.8s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.8s forwards;
}

.js-span-text.on span:nth-child(29) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.9s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.9s forwards;
}

.js-span-text.on span:nth-child(30) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3s forwards;
}

.js-span-text.on span:nth-child(31) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.1s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.1s forwards;
}

.js-span-text.on span:nth-child(32) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.2s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.2s forwards;
}

.js-span-text.on span:nth-child(33) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.3s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.3s forwards;
}

.js-span-text.on span:nth-child(34) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.4s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.4s forwards;
}

.js-span-text.on span:nth-child(35) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.5s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.5s forwards;
}

.js-span-text.on span:nth-child(36) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.6s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.6s forwards;
}

.js-span-text.on span:nth-child(37) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.7s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.7s forwards;
}

.js-span-text.on span:nth-child(38) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.8s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.8s forwards;
}

.js-span-text.on span:nth-child(39) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.9s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.9s forwards;
}

.js-span-text.on span:nth-child(40) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4s forwards;
}

.js-span-text.on span:nth-child(41) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.1s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.1s forwards;
}

.js-span-text.on span:nth-child(42) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.2s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.2s forwards;
}

.js-span-text.on span:nth-child(43) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.3s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.3s forwards;
}

.js-span-text.on span:nth-child(44) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.4s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.4s forwards;
}

.js-span-text.on span:nth-child(45) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.5s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.5s forwards;
}

.js-span-text.on span:nth-child(46) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.6s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.6s forwards;
}

.js-span-text.on span:nth-child(47) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.7s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.7s forwards;
}

.js-span-text.on span:nth-child(48) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.8s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.8s forwards;
}

.js-span-text.on span:nth-child(49) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.9s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.9s forwards;
}

.js-span-text.on span:nth-child(50) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 5s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 5s forwards;
}

.js-span-text.on span:nth-child(51) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 5.1s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 5.1s forwards;
}

.js-span-text.on span:nth-child(52) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 5.2s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 5.2s forwards;
}

.js-span-text.on span:nth-child(53) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 5.3s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 5.3s forwards;
}

.js-span-text.on span:nth-child(54) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 5.4s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 5.4s forwards;
}

.js-span-text.on span:nth-child(55) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 5.5s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 5.5s forwards;
}

.js-span-text.on span:nth-child(56) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 5.6s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 5.6s forwards;
}

.js-span-text.on span:nth-child(57) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 5.7s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 5.7s forwards;
}

.js-span-text.on span:nth-child(58) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 5.8s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 5.8s forwards;
}

.js-span-text.on span:nth-child(59) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 5.9s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 5.9s forwards;
}

.js-span-text.on span:nth-child(60) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 6s forwards;
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 6s forwards;
}

@-webkit-keyframes text {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px) translateY(-10px) scale(1.3);
    transform: translateX(-20px) translateY(-10px) scale(1.3);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes text {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px) translateY(-10px) scale(1.3);
    transform: translateX(-20px) translateY(-10px) scale(1.3);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

spc {
  padding: 0.2em;
}

spc2 {
  padding: 0.1em;
}

#btn_square {
  position: fixed;
  right: 0;
  top: 25%;
  z-index: 30;
}

#btn_square p {
  position: relative;
  text-align: center;
}

#btn_square p span {
  display: block;
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
  font-size: 1.5rem;
  color: #ffcc33;
  text-shadow: 1px 1px 0px #000, -1px 1px 0px #000, 1px -1px 0px #000, -1px -1px 0px #000, 1px 0px 0px #000, 0px 1px 0px #000, -1px 0px 0px #000, 0px -1px 0px #000;
  -webkit-animation: bounce-anm 2s ease infinite;
  animation: bounce-anm 2s ease infinite;
}

#btn_square p a {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  display: block;
  padding: 12px;
  height: 160px;
  display: block;
  border-radius: 5px 0 0 5px;
  border: 1px solid #333;
  background: #ffcc33;
  color: #333;
  text-align: center;
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  letter-spacing: 0.1em;
  font-size: 1.8rem;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

#btn_square p a i {
  margin-bottom: 5px;
  font-size: 2.2rem;
}

#btn_square p a:hover {
  background: #70AE27;
}

#btn_square p a:hover i {
  -webkit-transition: all 1s;
  transition: all 1s;
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

@media all and (max-width: 896px) {
  #btn_square {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    top: auto;
    right: auto;
    left: 10px;
    bottom: 10px;
  }

  #btn_square p a {
    -webkit-writing-mode: inherit;
    -ms-writing-mode: inherit;
    writing-mode: inherit;
    font-size: 1.4rem;
    height: auto;
    border-radius: 5px;
    padding: 10px 15px;
  }

  #btn_square p a i {
    margin-bottom: 0;
    margin-right: 5px;
    font-size: 1.8rem;
  }
}

@-webkit-keyframes bounce-anm {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  10% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
  }

  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  60% {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
  }

  80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounce-anm {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  10% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
  }

  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  60% {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
  }

  80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes bounce-anm2 {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  10% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }

  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  60% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }

  80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounce-anm2 {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  10% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }

  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  60% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }

  80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

#btn_circle {
  position: fixed;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 40;
}

#btn_circle p+p {
  margin-top: 20px;
}

#btn_circle p {
  position: relative;
}

#btn_circle p.type1 a {
  background: #bbb;
}

#btn_circle p a {
  width: 84px;
  height: 84px;
  display: block;
  border-radius: 50%;
  background: #70AE27;
  color: #333;
  text-align: center;
  font-weight: normal;
}

#btn_circle p a span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  line-height: 1.1;
}

#btn_circle p a span i {
  font-size: 20px;
  margin-bottom: 4px;
  display: block;
}

#btn_circle p a:hover {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translate(2px, 2px);
  transform: translate(2px, 2px);
}

#btn_circle p a:hover i {
  -webkit-transition: all 1s;
  transition: all 1s;
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

#btn_circle p:after {
  position: absolute;
  content: "";
  z-index: -1;
  top: 2px;
  left: 2px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(51, 51, 51, 0.8);
}

@media all and (max-width: 1100px) {
  #btn_circle p+p {
    margin-top: 14px;
  }

  #btn_circle p a {
    width: 60px;
    height: 60px;
  }

  #btn_circle p a span {
    font-size: 12px;
    letter-spacing: 0.05em;
  }

  #btn_circle p a span i {
    font-size: 18px;
  }
}

@media all and (max-width: 639px) {
  #btn_circle {
    -webkit-transform: translate(0);
    transform: translate(0);
    top: auto;
    bottom: 70px;
  }

  #btn_circle p+p {
    margin-top: 10px;
  }

  #btn_circle p a {
    width: 60px;
    height: 60px;
  }

  #btn_circle p a span {
    font-size: 10px;
  }

  #btn_circle p a span i {
    font-size: 14px;
  }
}

#fixed-btn a {
  display: none;
}

@media all and (max-width: 896px) {
  #fixed-btn {
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    z-index: 200;
    left: 0;
    bottom: 0;
  }

  #fixed-btn a {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    display: block;
    color: #fff;
    font-size: 0.95rem;
    font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    letter-spacing: 0;
    padding: 10px 4px;
    background: -webkit-gradient(linear, left top, right top, from(rgb(31.2258064516, 184.0092165899, 210.7741935484)), to(#42CBE3));
    background: linear-gradient(to right, rgb(31.2258064516, 184.0092165899, 210.7741935484), #42CBE3);
    -webkit-transition: background 0.2s ease-in;
    transition: background 0.2s ease-in;
    text-align: center;
    width: calc(100% / 3);
  }

  #fixed-btn a i {
    font-size: 1.4rem;
    margin-bottom: 3px;
    display: block;
  }

  #fixed-btn a:hover {
    background: #333;
  }
}

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

.covid-box .left {
  width: 35%;
}

.covid-box .right {
  width: 60%;
}

@media all and (max-width: 639px) {

  .covid-box .left,
  .covid-box .right {
    width: 94%;
    margin: auto;
  }

  .covid-box .right {
    margin-top: 20px;
  }
}

.mtitles {
  margin: 0 auto 20px;
  position: relative;
  text-align: center;
}

.mtitles .eng {
  font-size: 3rem;
  color: #42CBE3;
  display: block;
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
  line-height: 1.4;
}

.mtitles.sbc .eng {
  color: #70AE27;
}

.mtitles .ja {
  font-size: 1.6rem;
  color: #333;
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
}

@media all and (max-width: 896px) {
  .mtitles {
    margin: 0 auto 15px;
  }

  .mtitles .eng {
    font-size: 2rem;
  }

  .mtitles .ja {
    font-size: 1.3rem;
  }
}

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

.feature-list>li {
  width: 49%;
  margin-bottom: 40px;
  position: relative;
}

.feature-list>li:nth-child(even) {
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
}

@media all and (max-width: 639px) {
  .feature-list>li:nth-child(even) {
    -webkit-transform: inherit;
    transform: inherit;
  }
}

.feature-list>li:nth-child(even) .feature-inner {
  background: rgb(31.2258064516, 184.0092165899, 210.7741935484);
}

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

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

.feature-list>li .feature-inner {
  width: 100%;
  height: 100%;
  background: #42CBE3;
  position: relative;
}

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

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

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

.feature-list>li .feature-list-num {
  display: block;
  position: absolute;
}

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

@media all and (max-width: 639px) {
  .feature-list>li .feature-list-num:before {
    display: none;
  }
}

.feature-list>li .feature-list-num {
  font-family: "Cinzel", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-size: 4.8rem;
  line-height: 1;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4), 0 0 10px rgba(0, 0, 0, 0.3);
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 3;
}

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

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

.feature-list>li .feature-list-txt {
  position: relative;
  padding: 40px 25px 40px 25%;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4), 0 0 10px rgba(0, 0, 0, 0.3);
}

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

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

.feature-list>li .feature-list-title {
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-weight: 900;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4), 0 0 10px rgba(0, 0, 0, 0.3);
  font-size: 1.7rem;
  border-bottom: 1px solid #fff;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

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

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

.treat-box {
  position: relative;
  z-index: 2;
  background: rgba(254, 254, 254, 0.9);
  -webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  margin: auto;
  padding: 16px 0;
}

.mlist4 {
  width: 95%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.mlist4 li {
  width: 24%;
  margin-bottom: 40px;
}

.mlist4 li a {
  display: block;
}

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

.mlist4 li a:hover .treat-box {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.mlist4 li a:hover .treat-box:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: linear-gradient(135deg, #ffcc33, #42CBE3);
  opacity: 0.2;
}

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

  .mlist4 li {
    width: 49%;
  }
}

.list-title {
  text-align: center;
  color: #333;
}

.list-title span {
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 1.7rem;
  display: block;
}

.list-title.ls {
  letter-spacing: 0;
}

.list-title img {
  width: 70px;
  margin-bottom: 10px;
}

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

.about-area {
  width: 100%;
  margin: 0 auto;
  background: url(../img/about.jpg) no-repeat top center/cover;
  height: 400px;
  position: relative;
  z-index: -1;
}

.about-area:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
}

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

.about-box {
  max-width: 650px;
  width: 90%;
  position: relative;
  z-index: 2;
  margin: -350px auto 0;
  background: rgba(254, 254, 254, 0.8);
  backdrop-filter: blur(4px);
  padding: 40px 35px;
}

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

.deco {
  position: relative;
}

.deco:before,
.deco:after {
  position: absolute;
  content: "";
  width: 50px;
  height: 100%;
  top: 0;
  opacity: 0.8;
}

@media all and (max-width: 639px) {

  .deco:before,
  .deco:after {
    width: 25px;
    opacity: 0.4;
  }
}

.deco:before {
  left: 0px;
  background: url(../img/deco-left.png) repeat-y center left/contain;
}

.deco:after {
  right: 0px;
  background: url(../img/deco-right.png) repeat-y center right/contain;
}

.deco .inner {
  width: calc(100% - 100px);
  margin: auto;
}

@media all and (max-width: 639px) {
  .deco .inner {
    width: calc(100% - 50px);
  }
}

.deco2 {
  position: relative;
}

.deco2:before,
.deco2:after {
  content: "";
  position: absolute;
  width: 50%;
  height: 300px;
  opacity: 1;
}

@media all and (max-width: 639px) {

  .deco2:before,
  .deco2:after {
    width: 70%;
  }
}

.deco2:before {
  left: 0;
  top: 0;
  background: url(../img/deco01.png) no-repeat left top/contain;
}

.deco2:after {
  right: 0;
  bottom: 0;
  background: url(../img/deco02.png) no-repeat right bottom/contain;
}

.deco2 .inner {
  position: relative;
  z-index: 2;
}

.bg-sec2 {
  position: relative;
  background: #f4f4f4;
  z-index: -1;
}

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

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

.sec2-lead p {
  line-height: 2;
  letter-spacing: 0.15em;
}

@media all and (max-width: 639px) {
  .menu-bnr {
    width: calc(100% - 20px);
    margin: auto;
  }
}

.menu-bnr li+li {
  margin-top: 30px;
}

.menu-bnr li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fdfdfd;
  position: relative;
  -webkit-animation: anim-out 0.2s ease-in forwards;
  animation: anim-out 0.2s ease-in forwards;
  overflow: hidden;
  border-radius: 10px;
}

.menu-bnr li a:hover {
  -webkit-box-shadow: 3px 3px 30px -10px rgba(0, 0, 0, 0.2);
  box-shadow: 3px 3px 30px -10px rgba(0, 0, 0, 0.2);
}

.menu-bnr li a:hover .bnr-img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.menu-bnr li .bnr-img {
  width: 40%;
  height: 200px;
  overflow: hidden;
}

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

@media all and (max-width: 639px) {
  .menu-bnr li .bnr-img {
    width: 30%;
    height: 90px;
  }
}

.menu-bnr li .bnr-title {
  padding-left: 20px;
}

.menu-bnr li .bnr-title .eng {
  color: #42CBE3;
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
  display: block;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
}

.menu-bnr li .bnr-title {
  font-size: 2rem;
  letter-spacing: 0.15em;
  color: #333;
  line-height: 1.6;
}

@media all and (max-width: 639px) {
  .menu-bnr li .bnr-title .eng {
    font-size: 1.2rem;
  }

  .menu-bnr li .bnr-title {
    font-size: 1.3rem;
  }
}

.menu-bnr .arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  stroke-miterlimit: 5;
  stroke-width: 1;
  stroke: #70AE27;
}

@media all and (max-width: 639px) {
  .menu-bnr .arrow {
    -webkit-transform: translateY(-50%) scale(0.8);
    transform: translateY(-50%) scale(0.8);
  }
}

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

.menu-bnr.type1 li {
  width: 48%;
  margin-bottom: 25px;
}

.menu-bnr.type1 li+li {
  margin-top: 0;
}

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

.menu-bnr.type1 li .bnr-img {
  height: 160px;
}

@media all and (max-width: 639px) {
  .menu-bnr.type1 li {
    width: 100%;
    margin: 0 auto 25px;
  }

  .menu-bnr.type1 li .bnr-img {
    height: 120px;
  }

  .menu-bnr.type1 li:nth-child(2n) {
    margin-left: auto;
  }
}

.bg-contact {
  background-image: url(../img/bg-contact.jpg);
}

.bg-area {
  background-image: url(../img/bg-area.jpg);
}

.bg-contact,
.bg-area {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -moz-background-size: cover;
  background-attachment: fixed;
  margin: 0;
  min-height: 200px;
  overflow: hidden;
}

@media all and (max-width: 1100px) {

  .bg-contact,
  .bg-area {
    background-attachment: scroll;
  }
}

@media all and (max-width: 639px) {

  .bg-contact,
  .bg-area {
    padding: 10px;
  }
}

.photobx-l {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.photobx-l2 {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.photobx-l,
.photobx-l2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0 auto;
}

.pbx {
  line-height: 1.8;
  background: rgba(17, 17, 17, 0.7);
  backdrop-filter: blur(4px);
  color: #fff;
  width: 50%;
  height: auto;
  vertical-align: middle;
  padding: 100px 60px;
  min-height: 200px;
}

@media all and (max-width: 639px) {

  .pbx,
  .pbx2 {
    margin: auto;
    width: 100%;
    padding: 30px 20px;
  }
}

.tel-btn {
  text-align: center;
  line-height: 1.5;
}

.tel-btn span {
  font-size: 90%;
}

.tel-btn h3 {
  font-size: 110%;
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
}

.tel-btn span,
.tel-btn h3 {
  display: block;
  letter-spacing: 0.15em;
}

.tel-btn a {
  color: #555;
  font-size: 3.6rem;
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
}

.tel-btn a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f098";
  font-weight: 900;
  margin-right: 10px;
}

.tel-btn a:hover {
  color: #999;
}

@media all and (max-width: 1100px) {
  .tel-btn a {
    font-size: 2.8rem;
  }
}

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

.menu-list {
  width: 100%;
  margin: auto;
}

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

.menu-list.type1 li {
  width: 48%;
  margin: 10px auto;
}

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

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

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

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

.menu-list>li .info {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  font-size: 1.4rem;
  color: #333;
  margin-top: 2px;
  padding: 6px 8px;
}

.menu-list>li .info.capt {
  margin-top: 8px;
  background: #f4f4f4;
  border-radius: 5px;
}

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

.menu-list>li .left {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
  max-width: 65%;
  letter-spacing: 0.1rem;
  font-weight: 600;
}

.menu-list>li .left .small {
  color: #555;
  padding-top: 5px;
  display: block;
  font-size: 1.4rem;
  letter-spacing: 0;
}

.menu-list>li .left {
  position: relative;
}

.menu-list>li .left:after {
  content: ".";
  display: inline-block;
  width: 0;
  color: transparent;
  pointer-events: none;
}

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

  .menu-list>li .left .small {
    font-size: 12px;
  }
}

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

.menu-list>li .right span {
  font-size: 11px;
}

@media all and (max-width: 639px) {
  .menu-list>li .right span {
    display: block;
  }
}

.bg-g {
  background: rgba(224, 234, 242, 0.2);
  padding: 5px 10px;
}

.lh2 {
  line-height: 2.2;
}

@media all and (max-width: 639px) {
  .lh2 {
    line-height: 2;
  }
}

.bg-ttl {
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  font-weight: 600;
}

.bg-ttl span {
  background: #42CBE3;
  color: #fff;
  padding: 4px 12px;
  border-radius: 5px;
}

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

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

@media all and (max-width: 896px) {
  .top-greet-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0;
  }
}

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

.lead-box {
  padding: 30px;
  letter-spacing: 0.15em;
  line-height: 2.2;
  border: 5px solid rgba(66, 203, 227, 0.3);
  position: relative;
}

.lead-box:before,
.lead-box:after {
  position: absolute;
  content: "";
  width: 60px;
  height: 1px;
  background: #333;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.lead-box:before {
  top: 15px;
  left: -33px;
}

.lead-box:after {
  bottom: 15px;
  right: -33px;
}

.top-greet-img1 {
  width: 40%;
  position: relative;
}

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

@media all and (max-width: 1100px) {
  .top-greet-img1 {
    width: 90%;
    margin: 0 auto 20px;
  }
}

@media all and (max-width: 639px) {
  .top-greet-img1 {
    width: calc(100% - 20px);
  }
}

.top-greet-lead {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  position: absolute;
  left: 30px;
  top: 30px;
  font-family: "Barlow Condensed", serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  letter-spacing: 0.12em;
  text-transform: inherit;
  z-index: 2;
  font-size: 2.8rem;
  color: #fff;
  line-height: 1;
}

@media all and (max-width: 639px) {
  .top-greet-lead {
    left: 10px;
    top: 10px;
    font-size: 1.3rem;
    letter-spacing: 0.1em;
  }
}

.top-greet-box {
  width: 56%;
  position: relative;
}

.top-greet-box p {
  letter-spacing: 0.15em;
}

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

@media all and (max-width: 896px) {
  .top-greet-box {
    width: 500px;
    margin: 0 auto;
    text-align: center;
  }

  .top-greet-box p {
    letter-spacing: 0.1em;
  }
}

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

.greet-title {
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
  text-align: center;
  font-size: 5rem;
  letter-spacing: 0.15em;
  line-height: 1;
  margin-bottom: 30px;
  color: #42CBE3;
}

.greet-title span {
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 1.8rem;
  color: #555;
}

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

  .greet-title span {
    font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: 600;
    letter-spacing: 0.1em;
    font-size: 1.6rem;
  }
}

.top-greet-txt {
  width: 100%;
  margin: auto;
}

@media all and (max-width: 639px) {
  .top-greet-txt {
    width: calc(100% - 5px);
  }
}

.top-greet-img-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: end;
  -ms-flex-align: end;
  align-items: flex-end;
  max-width: 1500px;
  margin: 0 auto;
  padding-bottom: 50px;
  position: relative;
  z-index: 2;
}

.top-greet-img-box .img-box1 {
  width: 48%;
}

.top-greet-img-box .img-box2 {
  width: 45%;
  margin-bottom: 30px;
}

@media all and (max-width: 639px) {
  .top-greet-img-box {
    padding-bottom: 30px;
  }
}

/* clip_left */
.clip_left {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-name: clip_left;
  animation-name: clip_left;
}

@keyframes clip_left {
  0% {
    clip-path: inset(0 100% 0 0);
    background: #42CBE3;
  }

  100% {
    clip-path: inset(0 0% 0 0);
    background: none;
  }
}

@-webkit-keyframes clip_left {
  0% {
    clip-path: inset(0 100% 0 0);
    background: #42CBE3;
  }

  100% {
    clip-path: inset(0 0% 0 0);
    background: none;
  }
}

/* /clip_left */
.clip_left02 {
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-name: clip_left02;
  animation-name: clip_left02;
}

@keyframes clip_left02 {
  0% {
    clip-path: inset(0 100% 0 0);
  }

  100% {
    clip-path: inset(0 0% 0 0);
  }
}

@-webkit-keyframes clip_left02 {
  0% {
    clip-path: inset(0 100% 0 0);
  }

  100% {
    clip-path: inset(0 0% 0 0);
  }
}

/* /clip_left */
[data-aos=slidein] {
  opacity: 0;
}

[data-aos=slidein].aos-animate {
  -webkit-animation-name: play;
  animation-name: play;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  position: relative;
  opacity: 1 !important;
}

[data-aos=slidein].aos-animate:before {
  -webkit-animation-name: maskOut;
  animation-name: maskOut;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(109.6deg, #42CBE3 11.2%, #eee 91.1%);
}

@-webkit-keyframes play {
  from {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes play {
  from {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes maskOut {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@keyframes maskOut {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

.slidein_box {
  width: 100%;
  overflow: hidden;
}

@media all and (max-width: 639px) {
  .img2 {
    width: 80%;
    max-width: 200px;
  }
}

.plant {
  width: 100px;
  margin: 0 auto 15px;
  text-align: center;
}

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

.img-wk {
  position: relative;
  width: calc(100% - 20px);
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
}

.img-wk:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 10px;
  top: 10px;
  border: 1px solid #bbb;
}

@media all and (max-width: 639px) {
  .img-wk {
    width: calc(100% - 10px);
    margin-left: 0;
    margin-right: auto;
  }
}

.bg-sec3 {
  position: relative;
}

.bg-sec3:before {
  position: absolute;
  content: "";
  right: 10%;
  bottom: 0;
  width: 46%;
  height: 80%;
  z-index: -1;
  background: #f6f6f6;
}

@media all and (max-width: 639px) {
  .bg-sec3:before {
    top: auto;
    bottom: 20px;
    right: 0;
    height: calc(100% - 380px);
  }
}

.bg-sec4 {
  position: relative;
  padding: 40px 0;
}

.bg-sec4:before {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url(../img/bg-sec4.png) no-repeat center/cover;
}

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

.bg-sec5 {
  position: relative;
  background: transparent;
}

.bg-sec5:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 50%;
  bottom: 0;
  left: 0;
  background: url(../img/bg-fixed.jpg) no-repeat center/cover;
  background-attachment: fixed;
}

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

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

.ring-box {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  max-width: 750px;
  background: #fff;
  border-radius: 15px;
  padding: 40px 35px 35px;
  -webkit-box-shadow: 0 6px 15px rgba(51, 51, 51, 0.1);
  box-shadow: 0 6px 15px rgba(51, 51, 51, 0.1);
}

.ring-box: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;
}

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

@media all and (max-width: 639px) {
  .ring-box {
    max-width: 100%;
    padding: 30px 15px 20px;
  }
}

.top-lead-box {
  max-width: 650px;
  padding: 30px;
  margin: 0 auto;
  background: transparent;
  line-height: 2;
  text-align: center;
  position: relative;
  color: #555;
  z-index: 4;
}

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

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

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

.article-box .right {
  width: 75%;
}

@media all and (max-width: 896px) {
  .article-box {
    padding: 0 10px;
  }

  .article-box .left {
    width: 100%;
  }

  .article-box .right {
    width: 100%;
  }
}

@keyframes fuwafuwas {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  50% {
    -webkit-transform: translate(0, -5px);
    transform: translate(0, -5px);
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@-webkit-keyframes fuwafuwas {
  0% {
    -webkit-transform: translate(0, 0);
  }

  50% {
    -webkit-transform: translate(0, -5px);
  }

  100% {
    -webkit-transform: translate(0, 0);
  }
}

.fuwafuwas {
  animation-name: fuwafuwas;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
  -webkit-animation-name: fuwafuwas;
  -webkit-animation-duration: 4s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease;
  -moz-animation-name: fuwafuwas;
  -moz-animation-duration: 4s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: ease;
  -ms-animation-name: fuwafuwas;
  -ms-animation-duration: 4s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: ease;
}

@keyframes fuwafuwa {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  50% {
    -webkit-transform: translate(0, -10px);
    transform: translate(0, -10px);
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@-webkit-keyframes fuwafuwa {
  0% {
    -webkit-transform: translate(0, 0);
  }

  50% {
    -webkit-transform: translate(0, -10px);
  }

  100% {
    -webkit-transform: translate(0, 0);
  }
}

.fuwafuwa {
  animation-name: fuwafuwa;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
  -webkit-animation-name: fuwafuwa;
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease;
  -moz-animation-name: fuwafuwa;
  -moz-animation-duration: 2s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: ease;
  -ms-animation-name: fuwafuwa;
  -ms-animation-duration: 2s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: ease;
}

.feat-txt {
  margin: 30px auto 0;
  font-size: 90%;
  width: calc(100% - 12px);
}

.feat-txt p+p {
  margin-top: 10px;
}

@media all and (max-width: 639px) {
  .feat-txt {
    margin: 20px auto 0;
    width: 100%;
  }
}

.top-stylist-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.top-stylist-wrap .top-stylist-img {
  width: 400px;
}

.top-stylist-wrap .top-stylist-txt {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 60px;
}

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

  .top-stylist-wrap .top-stylist-img {
    width: 100%;
  }

  .top-stylist-wrap .top-stylist-txt {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-left: 0;
  }
}

.top-name .eng {
  display: block;
  line-height: 1.4;
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
  font-size: 1.8rem;
  color: #333;
}

.top-name .ja {
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 2.6rem;
}

.top-name {
  margin-bottom: 25px;
}

@media all and (max-width: 639px) {
  .top-name {
    margin-top: 20px;
    text-align: center;
  }

  .top-name .eng {
    font-size: 1.6rem;
  }

  .top-name .ja {
    font-size: 2.2rem;
  }
}

.span-bg span {
  font-size: 11px;
  padding: 3px 15px;
  border-radius: 20px;
  background: #0e192d;
  color: #fff;
}

@media all and (max-width: 639px) {
  .span-bg span {
    font-size: 10px;
  }
}

.rssBox dl dt {
  float: left;
  width: 110px;
  padding: 5px;
  line-height: 1.3;
  color: #fff;
  text-align: center;
  border-radius: 30px;
  background: #42CBE3;
  background: -webkit-gradient(linear, left top, right top, from(#42CBE3), to(rgb(125.4084507042, 194.8309859155, 43.6690140845)));
  background: linear-gradient(to right, #42CBE3, rgb(125.4084507042, 194.8309859155, 43.6690140845));
  font-size: 1.3rem;
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
  letter-spacing: 0.1em;
}

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

.rssBox dl dd {
  word-break: break-all;
  padding: 3px 0 10px 120px;
  line-height: 1.6;
  border-bottom: 1px dashed #ddd;
  margin: 0 0 10px;
}

.rssBox dl dd a {
  color: #333;
  background-image: -webkit-gradient(linear, left top, right top, from(#70AE27), to(#42CBE3));
  background-image: linear-gradient(to right, #70AE27, #42CBE3);
  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;
}

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

.rssBox dl dd:last-child {
  margin: 0;
  border-bottom: none;
}

@media all and (max-width: 639px) {
  .rssBox dl dt {
    float: none;
  }

  .rssBox dl dd {
    padding: 4px 0;
  }
}

.rssBox {
  min-height: 180px;
  max-height: 180px;
  overflow-y: scroll;
  overflow-x: hidden;
  margin: 0 auto;
  padding: 0 6px;
}

.rssBox::-webkit-scrollbar {
  overflow: hidden;
  width: 1px;
  background: #fafafa;
}

.rssBox::-webkit-scrollbar:horizontal {
  height: 1px;
}

.rssBox::-webkit-scrollbar-button {
  display: none;
}

.rssBox::-webkit-scrollbar-piece {
  background: #eee;
}

.rssBox::-webkit-scrollbar-piece:start {
  background: #eee;
}

.rssBox::-webkit-scrollbar-thumb,
.rssBox::-webkit-scrollbar-corner {
  background: #333;
}

.img-hv {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.img-hv:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-filter: drop-shadow(2px 2px 4px rgba(62, 43, 31, 0.4));
  -moz-filter: drop-shadow(2px 2px 4px rgba(62, 43, 31, 0.4));
  -ms-filter: drop-shadow(2px 2px 4px rgba(62, 43, 31, 0.4));
  filter: drop-shadow(2px 2px 4px rgba(62, 43, 31, 0.4));
}

.index-box {
  height: 100vh;
  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;
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(rgba(244, 244, 244, 0.7)), to(rgba(66, 203, 227, 0.7)));
  background-image: linear-gradient(to bottom, transparent, rgba(244, 244, 244, 0.7), rgba(66, 203, 227, 0.7));
  text-align: center;
}

.index-box .in-box {
  color: #fff;
  margin: auto;
  padding: 30px;
  border: 3px solid #fff;
  -webkit-box-shadow: 0 0 0 6px rgba(112, 174, 39, 0.3);
  box-shadow: 0 0 0 6px rgba(112, 174, 39, 0.3);
  background: #70AE27;
}

@media all and (max-width: 896px) {
  .index-box .in-box {
    width: calc(100% - 30px);
  }
}

.bg-main {
  background: #fefefe;
  z-index: 2;
  position: relative;
}

.bg-main.bd {
  border-top: 1px solid #42CBE3;
}

#loopimg {
  width: 100%;
  height: 300px;
  position: relative;
  background: url(../img/loop.jpg);
  background-size: contain;
  animation: loopimg-move 30s linear infinite;
  -webkit-animation: loopimg-move 30s linear infinite;
  -moz-animation: loopimg-move 30s linear infinite;
  z-index: 1;
}

@media all and (max-width: 1100px) {
  #loopimg {
    height: 240px;
  }
}

@media all and (max-width: 639px) {
  #loopimg {
    height: 120px;
    background-size: cover;
    animation: loopimg-move 10s linear infinite;
    -webkit-animation: loopimg-move 10s linear infinite;
    -moz-animation: loopimg-move 10s linear infinite;
  }
}

@keyframes loopimg-move {
  0% {
    background-position: 0 0;
  }

  25% {
    background-position: 25% 0;
  }

  50% {
    background-position: 50% 0;
  }

  75% {
    background-position: 75% 0;
  }

  100% {
    background-position: 100% 0;
  }
}

@-webkit-keyframes loopimg-move {
  0% {
    background-position: 0 0;
  }

  25% {
    background-position: 25% 0;
  }

  50% {
    background-position: 50% 0;
  }

  75% {
    background-position: 75% 0;
  }

  100% {
    background-position: 100% 0;
  }
}

.txt-grad {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  display: table;
  color: #42CBE3;
  background: #42CBE3;
  background: -webkit-gradient(linear, left top, right top, from(#42CBE3), color-stop(#70AE27), to(#0e192d));
  background: linear-gradient(to right, #42CBE3, #70AE27, #0e192d);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2rem;
  line-height: 1.6;
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
}

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

.btn_doc a {
  text-align: center;
  position: relative;
  color: #333;
  background: #fff;
  border: 1px solid #333;
  padding: 15px 10px;
  max-width: 280px;
  width: 90%;
  margin-top: 20px;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  display: table;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  line-height: 1.4;
}

.btn_doc a i {
  color: #c6181f;
  margin-right: 10px;
  font-size: 2rem;
}

.btn_doc a span {
  font-family: "Barlow Condensed", serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  font-size: 13px;
  margin-left: 5px;
}

.btn_doc a:before,
.btn_doc a:after {
  content: "";
  position: absolute;
  border: solid #333;
  width: 10px;
  height: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.btn_doc a:before {
  top: -6px;
  left: -6px;
  border-width: 1px 0 0 1px;
}

.btn_doc a:after {
  bottom: -6px;
  right: -6px;
  border-width: 0 1px 1px 0;
}

.btn_doc a:hover {
  color: #fff;
  background: #c6181f;
  border-color: transparent;
}

.btn_doc a:hover i {
  color: #fff;
}

.btn_doc a:hover:before,
.btn_doc a:hover:after {
  width: calc(100% + 11px);
  height: calc(100% + 11px);
  border-color: #c6181f;
}

.btn_doc.type1 a i {
  color: #1d6f42;
}

.btn_doc.type1 a:hover {
  color: #fff;
  background: #1d6f42;
}

.btn_doc.type1 a:hover i {
  color: #fff;
}

.btn_doc.type1 a:hover:before,
.btn_doc.type1 a:hover:after {
  border-color: #1d6f42;
}

.btn_doc.type2 a i {
  color: #2b579a;
}

.btn_doc.type2 a:hover {
  color: #fff;
  background: #2b579a;
}

.btn_doc.type2 a:hover i {
  color: #fff;
}

.btn_doc.type2 a:hover:before,
.btn_doc.type2 a:hover:after {
  border-color: #2b579a;
}

.btn_wk a {
  text-align: center;
  position: relative;
  color: #333;
  background: #fff;
  border: 1px solid #333;
  padding: 10px;
  max-width: 200px;
  width: 80%;
  margin-top: 35px;
  font-size: 95%;
  margin-bottom: 6px;
  margin-left: auto;
  margin-right: auto;
  display: table;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  line-height: 1.4;
}

.btn_wk a span {
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
  letter-spacing: 0.4em;
}

.btn_wk a:before,
.btn_wk a:after {
  content: "";
  position: absolute;
  border: solid #333;
  width: 10px;
  height: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.btn_wk a:before {
  top: -6px;
  left: -6px;
  border-width: 1px 0 0 1px;
}

.btn_wk a:after {
  bottom: -6px;
  right: -6px;
  border-width: 0 1px 1px 0;
}

.btn_wk a:hover {
  color: #fff;
  background: #42CBE3;
  border-color: transparent;
}

.btn_wk a:hover:before,
.btn_wk a:hover:after {
  width: calc(100% + 11px);
  height: calc(100% + 11px);
  border-color: #42CBE3;
}

.btn_wk.type1 a:hover {
  color: #fff;
  background: #70AE27;
}

.btn_wk.type1 a:hover:before,
.btn_wk.type1 a:hover:after {
  border-color: #70AE27;
}

.btn_wk.btn-r a {
  margin-right: 0;
}

.btn_wk2 a {
  text-align: center;
  position: relative;
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
  padding: 10px;
  max-width: 200px;
  width: 80%;
  margin-top: 35px;
  font-size: 95%;
  margin-bottom: 6px;
  margin-left: auto;
  margin-right: auto;
  display: table;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  line-height: 1.4;
}

.btn_wk2 a span {
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
  letter-spacing: 0.4em;
}

.btn_wk2 a:before,
.btn_wk2 a:after {
  content: "";
  position: absolute;
  border: solid #fff;
  width: 10px;
  height: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.btn_wk2 a:before {
  top: -6px;
  left: -6px;
  border-width: 1px 0 0 1px;
}

.btn_wk2 a:after {
  bottom: -6px;
  right: -6px;
  border-width: 0 1px 1px 0;
}

.btn_wk2 a:hover {
  color: #333;
  background: #fff;
  border-color: transparent;
}

.btn_wk2 a:hover:before,
.btn_wk2 a:hover:after {
  width: calc(100% + 11px);
  height: calc(100% + 11px);
  border-color: #fff;
}

.btn_wk2.btn-r a {
  margin-right: 0;
}

.top-link {
  max-width: 450px;
  width: 90%;
  margin: 0 auto 25px;
}

.top-link a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
  border-radius: 10px 0 10px 0;
}

.top-link a:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 6px;
  left: 6px;
  border: 1px solid #42CBE3;
  z-index: 2;
  border-radius: 10px 0 10px 0;
}

.top-link a:hover .top-link-img img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  opacity: 0.8;
}

.top-link a:hover .top-link-title {
  background: #fefefe;
  color: #0e192d;
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}

.top-link a .top-link-img {
  width: 100%;
  height: 260px;
  overflow: hidden;
  position: relative;
  background: #000;
  border-radius: 10px 0 10px 0;
}

.top-link a .top-link-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
  display: block;
  margin: 0 auto;
  border-radius: 10px 0 10px 0;
}

@media all and (max-width: 639px) {
  .top-link a .top-link-img {
    height: 190px;
  }
}

.top-link a .top-link-title {
  background: #42CBE3;
  position: absolute;
  left: 16px;
  bottom: 8px;
  display: block;
  -webkit-transition: 0.5s ease-in all;
  transition: 0.5s ease-in all;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
  color: #fff;
  font-size: 2.2rem;
  padding: 2px 12px;
  border-radius: 10px 0 10px 0;
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
}

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

.inner_acc {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  background: #f4f4f4;
}

.inner_acc .footer-left,
.inner_acc .footer-right {
  width: 50%;
}

.inner_acc .footer-left .inbox,
.inner_acc .footer-right .inbox {
  padding: 80px 20px;
  margin: 0 auto;
}

@media all and (max-width: 896px) {

  .inner_acc .footer-left,
  .inner_acc .footer-right {
    width: 100%;
  }

  .inner_acc .footer-left.map,
  .inner_acc .footer-right.map {
    height: 250px;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}

@media all and (max-width: 639px) {

  .inner_acc .footer-left,
  .inner_acc .footer-right {
    width: 100%;
  }

  .inner_acc .footer-left .inbox,
  .inner_acc .footer-right .inbox {
    padding: 30px 15px;
  }

  .inner_acc .footer-left.map,
  .inner_acc .footer-right.map {
    height: 200px;
  }
}

.btn-grad {
  padding: 4px;
}

.btn-grad.w90 a {
  font-weight: 600;
  max-width: 320px;
  width: 94%;
}

.btn-grad a {
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}

.btn-grad a i {
  font-size: 2rem;
}

.btn-grad a {
  font-size: 1.4rem;
  max-width: 240px;
  width: 80%;
  text-align: center;
  display: table;
  padding: 8px 12px;
  border-radius: 30px;
  text-decoration: none;
  background: #fcfcfc;
  border: 2px solid #555;
  color: #555;
  outline: none;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

.btn-grad a.ist {
  -webkit-box-shadow: 0 0 0 4px rgba(247, 51, 95, 0.4);
  box-shadow: 0 0 0 4px rgba(247, 51, 95, 0.4);
}

.btn-grad a.ist:hover {
  background: -webkit-gradient(linear, right top, left top, from(#f13f79), color-stop(50%, #427eff), to(#ffc24a));
  background: linear-gradient(270deg, #f13f79 0%, #427eff 50%, #ffc24a 100%);
  background-size: 200% auto;
  background-position: right center;
}

.btn-grad a.fb {
  -webkit-box-shadow: 0 0 0 4px rgba(43, 109, 230, 0.4);
  box-shadow: 0 0 0 4px rgba(43, 109, 230, 0.4);
}

.btn-grad a.fb:hover {
  background: -webkit-gradient(linear, right top, left top, from(#3c5390), color-stop(50%, #2b6de6), to(#4361a9));
  background: linear-gradient(270deg, #3c5390 0%, #2b6de6 50%, #4361a9 100%);
  background-size: 200% auto;
  background-position: right center;
}

.btn-grad a:hover {
  color: #fff;
  background: -webkit-gradient(linear, right top, left top, from(#0040c2), to(#83c3cb));
  background: linear-gradient(270deg, #0040c2 0%, #83c3cb 100%);
  background-size: 200% auto;
  background-position: right center;
  -webkit-box-shadow: 0 0 10px rgba(51, 51, 51, 0.4);
  box-shadow: 0 0 10px rgba(51, 51, 51, 0.4);
}

.btn-grad.btn-r a {
  margin-right: 0;
}

.txt-big {
  font-size: 4rem;
  text-align: center;
  font-family: "Barlow Condensed", serif;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.bg-deko-img {
  width: 100%;
  background: url(../img/catch_bg01.png) left top no-repeat, #e5f7fb url(../img/catch_bg02.png) right top no-repeat;
  background-size: contain;
}

.bg-deko-img .inner {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
  padding: 35px 30px;
}

.bg-deko-img .inner .icon {
  margin: auto;
  text-align: center;
}

@media all and (max-width: 639px) {
  .bg-deko-img {
    background: url(../img/catch_bg01.png) left top no-repeat, #e0eaf2;
    background-size: cover;
  }

  .bg-deko-img .inner .icon {
    width: 60px;
  }

  .bg-deko-img .inner {
    width: calc(100% - 15px);
    background: rgba(255, 255, 255, 0.6);
    padding: 20px 15px;
  }
}

.cp_box *,
.cp_box *:before,
.cp_box *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.cp_box {
  position: relative;
}

.cp_box label {
  position: absolute;
  z-index: 1;
  bottom: 0;
  width: 100%;
  height: 180px;
  /* グラデーションの高さ */
  cursor: pointer;
  text-align: center;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(70%, #fefefe));
  background: linear-gradient(to bottom, transparent 0%, #fefefe 70%);
}

.cp_box input:checked+label {
  background: inherit;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 0;
}

.cp_box label:after {
  position: absolute;
  z-index: 2;
  bottom: 20px;
  left: 50%;
  width: 180px;
  content: "＋　詳細はこちら";
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  letter-spacing: 0.1em;
  color: #fff;
  border-radius: 20px;
  padding: 2px;
  background-color: #42CBE3;
}

.cp_box input {
  display: none;
}

.cp_box .cp_container {
  overflow: hidden;
  height: 320px;
  /* 開く前に見えている部分の高さ */
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cp_box input:checked+label:after {
  content: "－　閉じる";
}

.cp_box input:checked~.cp_container {
  height: auto;
  padding-bottom: 80px;
  /* 閉じるボタンのbottomからの位置 */
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.sold-img {
  position: relative;
}

.sold-img:before {
  position: absolute;
  content: "";
  width: 120px;
  height: 120px;
  background: url(../img/sold-img.png) no-repeat center/contain;
  z-index: 2;
  right: 10px;
  bottom: 10px;
  -webkit-transform: rotate(5deg);
  transform: rotate(5deg);
}

.grid {
  position: relative;
  margin: 0 auto !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;
}

.grid-item .gallery {
  background: #f2f2f2;
  width: 100%;
  height: 320px;
  text-align: center;
  vertical-align: middle;
  overflow: hidden;
  margin: 5px auto;
  position: relative;
}

.grid-item {
  overflow: hidden;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  width: calc(33.3% - 7px) !important;
  font-size: 12px;
  margin-right: 10px;
}

.grid-item:nth-child(3n) {
  margin-right: 0px;
}

.grid-item a {
  display: block;
  text-align: center;
  width: 100%;
  height: 320px;
  margin-bottom: 10px;
  background: #fff;
}

.grid-item * {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.grid-item h5 {
  font-size: 1.4rem;
  text-align: center;
  color: #333;
  font-weight: 400;
  letter-spacing: 0.15em;
}

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

.grid-item .ttl {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 50%;
  opacity: 0;
  color: #333;
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
  font-size: 1.6rem;
  line-height: 1.5;
}

.grid-item .ttl span {
  display: block;
  font-size: 2.8rem;
}

.grid-item a:hover .ttl {
  opacity: 1;
}

.grid-item a:hover img {
  opacity: 0.2;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

@media all and (max-width: 639px) {
  .grid-item {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    width: calc(100% - 0px) !important;
    margin-right: 0;
  }

  .grid-item .gallery {
    height: 200px;
  }

  .grid-item .gallery a {
    height: 200px;
  }
}

.bg-naname {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  background: rgba(112, 174, 39, 0.1);
}

.bg-naname .inner {
  padding: 120px 0;
}

@media all and (max-width: 896px) {
  .bg-naname .inner {
    padding: 80px 0;
  }
}

.bg-naname::before,
.bg-naname::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 60px;
  left: 0;
  z-index: 10;
}

.bg-naname:before {
  top: -1px;
  background: url(../img/top.png) no-repeat center top;
}

.bg-naname:after {
  bottom: -1px;
  background: url(../img/bottom.png) no-repeat center bottom;
}

.bnr-btn {
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

.bnr-btn::before,
.bnr-btn::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 60px;
  left: 0;
  z-index: 10;
}

.bnr-btn:before {
  top: -1px;
  background: url(../img/top.png) no-repeat center top;
}

.bnr-btn:after {
  bottom: -1px;
  background: url(../img/bottom.png) no-repeat center bottom;
}

.bnr-btn a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  background: #000;
}

.bnr-btn a figure {
  width: 100%;
  height: 420px;
  overflow: hidden;
  position: relative;
  margin-left: auto;
  opacity: 0.5;
}

.bnr-btn a figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  display: block;
}

@media all and (max-width: 639px) {
  .bnr-btn a figure {
    height: 250px;
  }
}

.bnr-btn a h3 {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  left: 50%;
  top: 50%;
  display: block;
  z-index: 2;
  line-height: 1.8;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  letter-spacing: 0.25em;
  font-size: 2rem;
  color: #fff;
  width: 94%;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.bnr-btn a h3 i {
  display: block;
  font-size: 5rem;
  margin-bottom: 10px;
  opacity: 0.5;
}

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

  .bnr-btn a h3 i {
    font-size: 2.4rem;
  }
}

.bnr-btn a:hover figure img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

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

.contents2 .child {
  position: relative;
  width: 50%;
  background: -webkit-gradient(linear, left top, right top, from(#222), to(#000));
  background: linear-gradient(to right, #222, #000);
}

@media all and (max-width: 896px) {
  .contents2 .child {
    margin-bottom: 5px;
  }
}

.contents2 .child:hover {
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

.contents2 .child:hover .ttl {
  background: #fff;
  color: #333;
  text-shadow: none;
}

.contents2 .child:hover .link-arrow {
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  right: 10px;
  mix-blend-mode: color-burn;
}

.contents2 .child:hover figure img {
  position: relative;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  opacity: 0.4;
}

.contents2 .child:hover .txt-box {
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  background-color: rgb(26, 26, 26);
}

.contents2 .child:hover .txt {
  display: block;
  bottom: 0;
  left: 110px;
  color: #fff;
  text-align: left;
  padding: 56px 0 0 30px;
}

@media all and (max-width: 896px) {
  .contents2 .child:hover .txt {
    position: initial;
    padding: 0 0 0 0;
    text-align: center;
  }
}

.contents2 .child a {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
}

.contents2 .child a img {
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  width: 100%;
  opacity: 0.8;
}

.contents2 .child .txt-box {
  position: relative;
}

.contents2 .child .ttl {
  position: absolute;
  top: 7%;
  left: 5%;
  padding: 10px 20px;
  border: 1px solid #fff;
  font-size: 2rem;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  backdrop-filter: blur(4px);
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgb(255, 255, 255);
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.contents2 .child .ttl eng {
  border-top: 1px solid #aaa;
  display: block;
  font-size: 3.4rem;
  font-family: "Barlow Condensed", serif;
  font-weight: 400;
  letter-spacing: 0.1em;
}

@media all and (max-width: 1100px) {
  .contents2 .child .ttl {
    padding: 8px 16px;
    font-size: 1.6rem;
  }

  .contents2 .child .ttl eng {
    font-size: 2.8rem;
  }
}

@media all and (max-width: 639px) {
  .contents2 .child .ttl {
    padding: 5px 10px;
    font-size: 1.3rem;
  }

  .contents2 .child .ttl span {
    font-size: 2rem;
  }
}

.contents2 .child .subttl {
  position: absolute;
  bottom: 20px;
  right: 150px;
  margin: 0 auto;
  text-align: center;
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
  letter-spacing: 0.3em;
  font-size: 1.4rem;
  color: #fff;
}

@media all and (max-width: 1100px) {
  .contents2 .child .subttl {
    right: 100px;
  }
}

@media all and (max-width: 896px) {
  .contents2 .child .subttl {
    right: 70px;
    bottom: 10px;
    font-size: 1.2rem;
  }
}

@media all and (max-width: 639px) {
  .contents2 .child .subttl {
    right: 50px;
  }
}

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

  .contents2 .child {
    width: 100%;
  }
}

.arrow-line {
  position: absolute;
  color: #fff;
  display: inline-block;
  text-decoration: none;
  outline: none;
  width: 150px;
  bottom: 50px;
  right: 50px;
}

@media all and (max-width: 1100px) {
  .arrow-line {
    width: 100px;
  }
}

@media all and (max-width: 896px) {
  .arrow-line {
    width: 70px;
    bottom: 40px;
  }
}

@media all and (max-width: 639px) {
  .arrow-line {
    width: 50px;
  }
}

.arrow-line:before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 200px;
  height: 1px;
  background: #fff;
}

.arrow-line:after {
  content: "";
  position: absolute;
  bottom: -2px;
  right: 10px;
  width: 21px;
  height: 11px;
  border-top: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media all and (max-width: 639px) {
  .arrow-line:after {
    bottom: -3px;
    width: 18px;
  }
}

.arrow-line:before {
  -webkit-animation: arrowlong01 2s ease infinite;
  animation: arrowlong01 2s ease infinite;
}

.arrow-line:after {
  -webkit-animation: arrowlong02 2s ease infinite;
  animation: arrowlong02 2s ease infinite;
}

@-webkit-keyframes arrowlong01 {
  0% {
    width: 0;
    opacity: 0;
  }

  20% {
    width: 0;
    opacity: 1;
  }

  80% {
    width: 105%;
    opacity: 1;
  }

  100% {
    width: 105%;
    opacity: 0;
  }
}

@keyframes arrowlong01 {
  0% {
    width: 0;
    opacity: 0;
  }

  20% {
    width: 0;
    opacity: 1;
  }

  80% {
    width: 105%;
    opacity: 1;
  }

  100% {
    width: 105%;
    opacity: 0;
  }
}

@-webkit-keyframes arrowlong02 {
  0% {
    left: 0;
    opacity: 0;
  }

  20% {
    left: 0;
    opacity: 1;
  }

  80% {
    left: 100%;
    opacity: 1;
  }

  100% {
    left: 100%;
    opacity: 0;
  }
}

@keyframes arrowlong02 {
  0% {
    left: 0;
    opacity: 0;
  }

  20% {
    left: 0;
    opacity: 1;
  }

  80% {
    left: 100%;
    opacity: 1;
  }

  100% {
    left: 100%;
    opacity: 0;
  }
}

/* menu-btn-list
----------------------------------*/
.top-menu-bnr {
  max-width: 650px;
  margin-left: auto;
}

@media all and (max-width: 896px) {
  .top-menu-bnr {
    max-width: 70%;
    margin: 0 auto 0;
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }
}

@media all and (max-width: 639px) {
  .top-menu-bnr {
    max-width: 80%;
    -webkit-transform: translateX(-25px);
    transform: translateX(-25px);
  }
}

.top-menu-bnr li:not(:last-of-type) {
  margin-bottom: 5px;
}

.top-menu-bnr li:nth-child(2) {
  -webkit-transform: translateX(50px);
  transform: translateX(50px);
}

@media all and (max-width: 639px) {
  .top-menu-bnr li:nth-child(2) {
    -webkit-transform: translateX(25px);
    transform: translateX(25px);
  }
}

.top-menu-bnr li:nth-child(3) {
  -webkit-transform: translateX(100px);
  transform: translateX(100px);
}

@media all and (max-width: 639px) {
  .top-menu-bnr li:nth-child(3) {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
  }
}

.top-menu-bnr li a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.top-menu-bnr li a:hover .top-menu-img img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  opacity: 0.8;
}

.top-menu-bnr li a:hover .top-menu-title .ja {
  color: #fefefe;
  background: #42CBE3;
}

.top-menu-bnr .top-menu-img {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
  background: #000;
}

.top-menu-bnr .top-menu-img img {
  width: 100%;
  height: 100%;
  opacity: 0.5;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  display: block;
  margin: 0 auto;
}

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

.top-menu-bnr .more-btn {
  position: absolute;
  right: 10px;
  top: 10px;
  color: #fff;
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
  letter-spacing: 0.15em;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5), 0 0 5px rgba(0, 0, 0, 0.5);
  font-size: 1.4rem;
}

.top-menu-bnr .top-menu-title {
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: block;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
  color: #42CBE3;
  z-index: 2;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1.4;
}

.top-menu-bnr .top-menu-title span {
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

.top-menu-bnr .top-menu-title .eng {
  font-size: 1.9rem;
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
  color: #fff;
  line-height: 1;
}

.top-menu-bnr .top-menu-title .ja {
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 1.8rem;
  min-width: 100px;
  letter-spacing: 0.15em;
  background: #fff;
  padding: 5px 15px;
  color: #111;
  display: inline-block;
  text-align: center;
}

@media all and (max-width: 639px) {
  .top-menu-bnr .top-menu-title .ja {
    padding: 4px 8px;
    font-size: 1.3rem;
  }

  .top-menu-bnr .top-menu-title .eng {
    font-size: 1.5rem;
  }
}

.top-menu-bnr2 {
  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 120px;
}

@media all and (max-width: 639px) {
  .top-menu-bnr2 {
    width: 75%;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    margin: 0 auto;
  }
}

.top-menu-bnr2 li {
  width: 32%;
}

@media all and (max-width: 639px) {
  .top-menu-bnr2 li {
    -webkit-transform: translate(-20px, 0);
    transform: translate(-20px, 0);
    width: 100%;
    margin-bottom: 20px;
  }
}

.top-menu-bnr2 li:nth-child(2) {
  -webkit-transform: translateY(40px);
  transform: translateY(40px);
}

@media all and (max-width: 639px) {
  .top-menu-bnr2 li:nth-child(2) {
    -webkit-transform: translate(20px, 0);
    transform: translate(20px, 0);
  }
}

.top-menu-bnr2 li:nth-child(3) {
  -webkit-transform: translateY(80px);
  transform: translateY(80px);
}

@media all and (max-width: 639px) {
  .top-menu-bnr2 li:nth-child(3) {
    -webkit-transform: translate(-20px, 0);
    transform: translate(-20px, 0);
  }
}

.top-menu-bnr2 li a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.top-menu-bnr2 li a:hover .top-menu-img img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  opacity: 0.8;
}

.top-menu-bnr2 li a:hover .top-menu-title .ja {
  color: #fefefe;
  background: #42CBE3;
}

.top-menu-bnr2 .top-menu-img {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
  background: #000;
}

.top-menu-bnr2 .top-menu-img img {
  width: 100%;
  height: 100%;
  opacity: 0.9;
  -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;
  display: block;
  margin: 0 auto;
}

@media all and (max-width: 1100px) {
  .top-menu-bnr2 .top-menu-img {
    height: 240px;
  }
}

@media all and (max-width: 639px) {
  .top-menu-bnr2 .top-menu-img {
    height: 180px;
  }
}

.top-menu-bnr2 .more-btn {
  position: absolute;
  right: 10px;
  top: 10px;
  color: #fff;
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
  letter-spacing: 0.15em;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5), 0 0 5px rgba(0, 0, 0, 0.5);
  font-size: 1.4rem;
}

.top-menu-bnr2 .top-menu-title {
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: block;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
  color: #42CBE3;
  z-index: 2;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1.4;
}

.top-menu-bnr2 .top-menu-title span {
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

.top-menu-bnr2 .top-menu-title .eng {
  font-size: 2rem;
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
  color: #fff;
  line-height: 1;
}

.top-menu-bnr2 .top-menu-title .ja {
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  letter-spacing: 0.1em;
  font-size: 1.6rem;
  min-width: 100px;
  background: #fff;
  padding: 5px 10px;
  color: #111;
  display: inline-block;
  text-align: center;
}

@media all and (max-width: 639px) {
  .top-menu-bnr2 .top-menu-title .ja {
    padding: 4px 8px;
    font-size: 1.3rem;
  }

  .top-menu-bnr2 .top-menu-title .eng {
    font-size: 1.5rem;
  }
}

.lh3 {
  line-height: 3;
}

@media all and (max-width: 639px) {
  .lh3 {
    line-height: 2.5;
  }
}

.mask {
  position: relative;
  clip-path: circle(1%);
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

.mask.on {
  clip-path: circle(120%);
}

.btn-arr a {
  position: relative;
  border: 1px solid #555;
  padding: 8px;
  max-width: 260px;
  width: 80%;
  text-align: center;
  color: #333;
  outline: none;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  margin-left: auto;
  margin-right: auto;
  display: table;
  font-size: 90%;
}

.btn-arr a span {
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
  letter-spacing: 0.15em;
}

.btn-arr a:hover {
  background: #555;
  color: #fff;
}

.btn-arr a:hover:before {
  right: -30px;
}

.btn-arr a:hover:after {
  right: -25px;
}

.btn-arr a:before {
  content: "";
  position: absolute;
  top: 50%;
  right: -26px;
  width: 40px;
  height: 1px;
  background: #555;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.btn-arr a:after {
  content: "";
  position: absolute;
  top: 21%;
  right: -20px;
  width: 1px;
  height: 12px;
  background: #555;
  -webkit-transform: skewX(45deg);
  transform: skewX(45deg);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.link-list3 {
  margin: auto;
  max-width: 450px;
  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;
}

.link-list3>li {
  width: 32%;
  text-align: center;
}

.link-list3>li a {
  display: block;
  font-size: 6rem;
  color: #42CBE3;
}

.link-list3>li a:hover {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0.9;
}

.link-list3>li a:hover i {
  -webkit-transition: all 1s;
  transition: all 1s;
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

@media all and (max-width: 639px) {
  .link-list3 {
    width: 85%;
    max-width: 300px;
  }

  .link-list3 li a {
    font-size: 4rem;
  }
}

.link-list4 {
  margin: auto;
  max-width: 500px;
  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;
}

.link-list4>li {
  width: 24%;
  text-align: center;
}

.link-list4>li a {
  display: block;
  border: 1px solid #fff;
  padding: 6px;
  font-size: 1.3rem;
  color: #fff;
  letter-spacing: 0.25em;
}

.link-list4>li a i {
  font-size: 1.7rem;
  margin-right: 5px;
}

.link-list4>li a span {
  letter-spacing: 0.1em;
}

.link-list4>li a:hover {
  background: rgba(255, 255, 255, 0.2);
}

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

  .link-list4 li {
    width: 47%;
    margin: 5px auto;
  }

  .link-list4 li a {
    font-size: 1.25rem;
  }

  .link-list4 li a i {
    font-size: 1.5rem;
  }
}

.publicAera {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.publicAera .textArea {
  max-width: 500px;
  width: 90%;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.publicAera .public01 {
  float: left;
  width: 16.5%;
}

.publicAera .public02 {
  float: left;
  width: 16.5%;
  margin: 240px 0 0 -70px;
}

.publicAera .public03 {
  float: left;
  width: 16.5%;
  margin: 480px 0 0 53px;
}

.publicAera .public04 {
  float: left;
  width: 16.5%;
  margin: 490px 0 0 56px;
}

.publicAera .public05 {
  float: left;
  width: 16.5%;
  margin: 258px 0 0 30px;
}

.publicAera .public06 {
  float: left;
  width: 16.5%;
  margin: 5px 0 0 -65px;
}

@media all and (max-width: 896px) {

  .publicAera .public01,
  .publicAera .public02,
  .publicAera .public03,
  .publicAera .public04,
  .publicAera .public05,
  .publicAera .public06 {
    display: none;
  }
}

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

.bg-sec2 {
  position: relative;
}

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

.about-box {
  background: #fffef3;
  max-width: 500px;
  width: 95%;
  margin: auto;
  border-radius: 43% 54% 48% 48%/40% 54% 46% 60%;
  padding: 100px 50px;
  color: #333;
  text-align: center;
}

.about-box h3 {
  font-size: 2.8rem;
}

.about-box p {
  margin: 30px auto;
}

@media all and (max-width: 896px) {
  .about-box {
    padding: 40px 50px;
  }

  .about-box h3 {
    font-size: 1.6rem;
  }

  .about-box p {
    margin: 20px auto;
  }
}

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

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

.sec2-txt-box {
  width: 480px;
  -ms-flex-item-align: center;
  align-self: center;
  letter-spacing: 0.15em;
  position: relative;
}

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

@media all and (max-width: 639px) {
  .sec2-txt-box {
    width: 90%;
  }
}

.sec2-img-box {
  width: calc((100% - 650px) / 2);
  -webkit-column-gap: 50px;
  -moz-column-gap: 50px;
  column-gap: 50px;
  row-gap: 50px;
}

@media all and (max-width: 1100px) {
  .sec2-img-box {
    width: calc((100% - 400px) / 2);
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
    row-gap: 30px;
  }
}

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

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

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

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

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

.sec2-img-box.img-2 .img-2-01 {
  grid-column: 1;
  grid-row: 1/3;
}

.sec2-img-box.img-2 .img-2-02 {
  grid-column: 2;
  grid-row: 1;
}

.sec2-img-box.img-2 .img-2-03 {
  grid-column: 2;
  grid-row: 2;
}

.mtext-top {
  font-size: 2.2rem;
  color: #333;
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.mtext-top.type1 {
  text-align: center;
  margin-bottom: 20px;
}

.mtext-top span {
  position: relative;
  display: inline-block;
  padding-top: 24px;
  padding-left: 2px;
  padding-right: 2px;
  color: #0e192d;
}

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

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

  .mtext-top.type1 {
    margin-bottom: 20px;
  }

  .mtext-top span {
    padding-top: 15px;
  }

  .mtext-top span:before {
    width: 50px;
    height: 15px;
  }
}

.title40 {
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 4rem;
}

@media all and (max-width: 896px) {
  .title40 {
    font-size: 3rem;
    letter-spacing: 0.15em;
  }
}

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

.title28 {
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 2.8rem;
}

@media all and (max-width: 896px) {
  .title28 {
    font-size: 2.2rem;
    letter-spacing: 0.15em;
  }
}

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

.title24 {
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 2.4rem;
}

@media all and (max-width: 896px) {
  .title24 {
    font-size: 2rem;
    letter-spacing: 0.15em;
  }
}

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

.title22 {
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 2.2rem;
}

@media all and (max-width: 896px) {
  .title22 {
    font-size: 1.8rem;
    letter-spacing: 0.15em;
  }
}

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

.title20 {
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 2rem;
}

@media all and (max-width: 896px) {
  .title20 {
    font-size: 1.6rem;
    letter-spacing: 0.15em;
  }
}

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

.title20.type1 {
  letter-spacing: 0.1em !important;
}

.title18 {
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 1.8rem;
}

@media all and (max-width: 896px) {
  .title18 {
    font-size: 1.5rem;
    letter-spacing: 0.15em;
  }
}

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

.title16 {
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 1.6rem;
}

@media all and (max-width: 896px) {
  .title16 {
    font-size: 1.4rem;
    letter-spacing: 0.15em;
  }
}

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

.flow-lead-box {
  width: calc(100% - 80px);
  padding: 30px;
  background: #fff;
  margin: -80px auto 0;
  position: relative;
}

@media all and (max-width: 896px) {
  .flow-lead-box {
    width: calc(100% - 40px);
    padding: 20px;
    margin-top: -40px;
  }
}

@media all and (max-width: 639px) {
  .flow-lead-box {
    width: calc(100% - 20px);
    padding: 15px;
    margin-top: -20px;
  }
}

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

.flex-list li {
  margin: 1%;
  min-width: 240px;
}

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

  .flex-list li {
    width: 100%;
    min-width: auto;
  }
}

.icon {
  margin: 0 auto 10px;
  text-align: center;
}

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

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

.link4 li {
  width: 24%;
  margin: 1% 0.5%;
}

.link4 li img {
  width: 200px;
}

.link4 li h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-top: 10px;
}

.link4 li p {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.link4 li a,
.link4 li span {
  display: block;
}

.link4 li a img,
.link4 li span img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid #999;
}

.link4 li a img:hover {
  opacity: 0.5;
}

@media all and (max-width: 639px) {
  .link4 li {
    width: 49%;
  }

  .link4 li img {
    width: 80%;
  }

  .link4 li h3 {
    font-size: 1.2rem;
    margin-top: 5px;
  }

  .link4 li p {
    font-size: 10px;
    letter-spacing: 0.05em;
  }
}

/* フレックスコンテナ
-------------------------------------------------- */
.k-flex * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.k-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}

.k-flex img {
  vertical-align: middle;
  max-width: 100%;
}

.k-flex.jc-left {
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
}

.k-flex.jc-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.k-flex.jc-right {
  -webkit-box-pack: right;
  -ms-flex-pack: right;
  justify-content: right;
}

.k-flex.col-1>.k-fitem {
  width: 100%;
}

.k-flex.col-2>.k-fitem {
  width: 50%;
}

.k-flex.col-3>.k-fitem {
  width: 33.3333333%;
}

.k-flex.col-4>.k-fitem {
  width: 25%;
}

.k-flex.col-5>.k-fitem {
  width: 20%;
}

.k-flex>.k-fitem.k-w5 {
  width: 5%;
}

.k-flex>.k-fitem.k-w10 {
  width: 10%;
}

.k-flex>.k-fitem.k-w15 {
  width: 15%;
}

.k-flex>.k-fitem.k-w20 {
  width: 20%;
}

.k-flex>.k-fitem.k-w25 {
  width: 25%;
}

.k-flex>.k-fitem.k-w30 {
  width: 30%;
}

.k-flex>.k-fitem.k-w33 {
  width: 33.3333333%;
}

.k-flex>.k-fitem.k-w35 {
  width: 35%;
}

.k-flex>.k-fitem.k-w40 {
  width: 40%;
}

.k-flex>.k-fitem.k-w45 {
  width: 45%;
}

.k-flex>.k-fitem.k-w50 {
  width: 50%;
}

.k-flex>.k-fitem.k-w55 {
  width: 55%;
}

.k-flex>.k-fitem.k-w60 {
  width: 60%;
}

.k-flex>.k-fitem.k-w65 {
  width: 65%;
}

.k-flex>.k-fitem.k-w70 {
  width: 70%;
}

.k-flex>.k-fitem.k-w75 {
  width: 75%;
}

.k-flex>.k-fitem.k-w80 {
  width: 80%;
}

.k-flex>.k-fitem.k-w85 {
  width: 85%;
}

.k-flex>.k-fitem.k-w90 {
  width: 90%;
}

.k-flex>.k-fitem.k-w95 {
  width: 95%;
}

.k-flex>.k-fitem.k-w100 {
  width: 100%;
}

.k-flex>.k-fitem.order1 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.k-flex>.k-fitem.order2 {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.k-flex>.k-fitem.order3 {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}

.k-flex>.k-fitem.order4 {
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 4;
  order: 4;
}

@media all and (max-width: 639px) {
  .k-flex>.k-fitem {
    width: 100% !important;
  }

  .k-flex>.k-fitem.order1,
  .k-flex>.k-fitem.order2,
  .k-flex>.k-fitem.order3,
  .k-flex>.k-fitem.order4 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }

  .k-flex.col-4>.k-fitem {
    width: 50% !important;
  }

  .k-flex {
    /*モバイルで100%にしたくない時の指定*/
  }

  .k-flex.fix.col-1>.k-fitem {
    width: 100% !important;
  }

  .k-flex.fix.col-2>.k-fitem {
    width: 50% !important;
  }

  .k-flex.fix.col-3>.k-fitem {
    width: 33.3333333% !important;
  }

  .k-flex.fix.col-4>.k-fitem {
    width: 25% !important;
  }

  .k-flex.fix.col-5>.k-fitem {
    width: 20% !important;
  }

  .k-flex.fix>.k-fitem.k-w5 {
    width: 5% !important;
  }

  .k-flex.fix>.k-fitem.k-w10 {
    width: 10% !important;
  }

  .k-flex.fix>.k-fitem.k-w15 {
    width: 15% !important;
  }

  .k-flex.fix>.k-fitem.k-w20 {
    width: 20% !important;
  }

  .k-flex.fix>.k-fitem.k-w25 {
    width: 25% !important;
  }

  .k-flex.fix>.k-fitem.k-w30 {
    width: 30% !important;
  }

  .k-flex.fix>.k-fitem.k-w33 {
    width: 33.3333333% !important;
  }

  .k-flex.fix>.k-fitem.k-w35 {
    width: 35% !important;
  }

  .k-flex.fix>.k-fitem.k-w40 {
    width: 40% !important;
  }

  .k-flex.fix>.k-fitem.k-w45 {
    width: 45% !important;
  }

  .k-flex.fix>.k-fitem.k-w50 {
    width: 50% !important;
  }

  .k-flex.fix>.k-fitem.k-w55 {
    width: 55% !important;
  }

  .k-flex.fix>.k-fitem.k-w60 {
    width: 60% !important;
  }

  .k-flex.fix>.k-fitem.k-w65 {
    width: 65% !important;
  }

  .k-flex.fix>.k-fitem.k-w70 {
    width: 70% !important;
  }

  .k-flex.fix>.k-fitem.k-w75 {
    width: 75% !important;
  }

  .k-flex.fix>.k-fitem.k-w80 {
    width: 80% !important;
  }

  .k-flex.fix>.k-fitem.k-w85 {
    width: 85% !important;
  }

  .k-flex.fix>.k-fitem.k-w90 {
    width: 90% !important;
  }

  .k-flex.fix>.k-fitem.k-w95 {
    width: 95% !important;
  }

  .k-flex.fix>.k-fitem.k-w100 {
    width: 100% !important;
  }

  .k-flex.fix>.k-fitem.order1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }

  .k-flex.fix>.k-fitem.order2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }

  .k-flex.fix>.k-fitem.order3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }

  .k-flex.fix>.k-fitem.order4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }
}

/* ビフォーアフター1
 ================================================== */
.k-beforeAfter1 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.k-beforeAfter1 {
  position: relative;
}

.k-beforeAfter1 .before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40%;
  z-index: 2;
}

.k-beforeAfter1 .after {
  padding: 10px 10px 30px 30px;
}

.k-beforeAfter1 .before .inner img {
  height: 100px;
}

.k-beforeAfter1 .inner {
  position: relative;
  background-color: #fff;
}

.k-beforeAfter1 .inner img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
  border: solid 5px #fff;
  -webkit-box-shadow: 2px 2px 10px -3px rgba(0, 0, 0, 0.3);
  box-shadow: 2px 2px 10px -3px rgba(0, 0, 0, 0.3);
}

.k-beforeAfter1 .inner p {
  position: absolute;
  font-weight: 600;
  top: 10px;
  right: 10px;
  letter-spacing: 0.5px;
  background: rgba(66, 203, 227, 0.8);
  border-radius: 5px;
  padding: 1px 8px 0px;
  text-align: right;
  z-index: 3;
  color: #fff;
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
  font-size: 90%;
}

.k-beforeAfter1 .inner p.af {
  background: rgba(112, 174, 39, 0.8);
}

.k-beforeAfter1 .inner a {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.k-beforeAfter1 .inner a:hover {
  opacity: 0.6;
}

@media all and (max-width: 639px) {
  .k-beforeAfter1 .before {
    width: 50%;
  }

  .k-beforeAfter1 .inner img {
    height: 170px;
  }
}

.inner2 .mbox+.mbox {
  margin-top: 40px;
}

.list-catch {
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
  letter-spacing: 0.1em;
  font-size: 3.6rem;
  padding-top: 20px;
  margin: 0 auto 25px;
  max-width: 500px;
  line-height: 1.6;
  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;
}

.list-catch li {
  color: #888;
  text-align: center;
}

.list-catch li:first-letter {
  font-weight: 600;
}

.list-catch li:nth-child(1) {
  -webkit-transform: rotate(-10deg);
  transform: rotate(-10deg);
}

.list-catch li:nth-child(1):first-letter {
  color: #a60007;
}

.list-catch li:nth-child(2) {
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
}

.list-catch li:nth-child(2):first-letter {
  color: #ffcc33;
}

.list-catch li:nth-child(3) {
  -webkit-transform: rotate(10deg);
  transform: rotate(10deg);
}

.list-catch li:nth-child(3):first-letter {
  color: #0e192d;
}

@media all and (max-width: 896px) {
  .list-catch {
    padding-top: 10px;
    margin: 0 auto 15px;
    font-size: 2rem;
  }

  .list-catch li:nth-child(1) {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  .list-catch li:nth-child(2) {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  .list-catch li:nth-child(3) {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
}

.map-pin {
  font-size: 4rem;
  line-height: 1.4;
  color: #a60007;
  text-align: center;
  -webkit-animation: bounce-anm2 2s ease infinite;
  animation: bounce-anm2 2s ease infinite;
}

@media all and (max-width: 896px) {
  .map-pin {
    font-size: 3rem;
  }
}

.top-merit {
  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-merit li {
  width: 31%;
  position: relative;
  margin: 0 0 40px 0;
}

.top-merit li:nth-child(odd) {
  -webkit-transform: translateY(40px);
  transform: translateY(40px);
}

.top-merit li .merit-num {
  line-height: 1;
  display: block;
  position: absolute;
  text-align: center;
  font-size: 4.5rem;
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
  color: #fff;
  text-shadow: 1px 1px 0px #70AE27, -1px 1px 0px #70AE27, 1px -1px 0px #70AE27, -1px -1px 0px #70AE27, 1px 0px 0px #70AE27, 0px 1px 0px #70AE27, -1px 0px 0px #70AE27, 0px -1px 0px #70AE27;
  left: 10px;
  top: -10px;
  z-index: 3;
}

.top-merit li h2 {
  margin: 10px auto 0;
  font-size: 2.4rem;
  text-align: center;
  line-height: 1.4;
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #a60007;
}

.top-merit li h3 {
  margin: 15px auto 10px;
  font-size: 1.8rem;
  text-align: center;
  line-height: 1.4;
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgb(98.5915492958, 153.1690140845, 34.3309859155);
}

@media all and (max-width: 896px) {
  .top-merit {
    margin: 0 auto;
    max-width: 500px;
    width: 85%;
  }

  .top-merit li {
    width: 100%;
    margin: 0 auto 20px;
  }

  .top-merit li:nth-child(odd) {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  .top-merit li:last-child {
    margin: 0 auto;
  }

  .top-merit li .merit-num {
    font-size: 3.2rem;
    top: 0px;
  }

  .top-merit li h2 {
    font-size: 1.8rem;
  }

  .top-merit li h3 {
    font-size: 1.3rem;
    letter-spacing: 0.15em;
  }
}

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

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

.list-btn2 li {
  width: 32%;
  margin: 0 1.995% 10px 0;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  background: rgba(14, 25, 45, 0.8);
  color: #fff;
  padding: 25px 5px;
  text-align: center;
  line-height: 1.6;
  font-size: 1.6rem;
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  overflow: hidden;
}

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

@media all and (max-width: 639px) {
  .list-btn2 li {
    width: 90%;
    margin: 0 auto 10px;
    padding: 15px 5px;
    font-size: 1.3rem;
  }

  .list-btn2 li:last-child {
    margin: 0 auto;
  }

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

.mask {
  position: relative;
  clip-path: circle(1%);
  -webkit-transition: 0.6s ease-in all;
  transition: 0.6s ease-in all;
}

.mask.on {
  clip-path: circle(120%);
}

.title06 {
  text-align: center;
  font-size: 1.6rem;
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.title06 span {
  display: block;
  max-width: 350px;
  width: 100%;
  color: #fff;
  background: #42CBE3;
  padding: 5px 20px;
  border-radius: 20px;
  margin: auto;
}

.title06.type1 span {
  background: #70AE27;
}

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

/*===作業の流れページ==============================*/
.flow_list {
  position: relative;
  z-index: 1;
}

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

.flow_list .box {
  width: 50%;
  padding: 30px;
}

.flow_list .box:last-child {
  margin-bottom: 0;
}

.flow_list .box:not(.right) {
  padding-left: 0;
}

.flow_list .box.right {
  margin-left: auto;
  padding-right: 0;
}

.flow_list .box h3 {
  position: relative;
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #333;
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 15px;
}

.flow_list .box h3 b {
  font-size: 1.6rem;
}

.flow_list .box h3 span {
  margin-right: 15px;
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #42CBE3;
  font-size: 3rem;
}

.flow_list .box h3::before {
  position: absolute;
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #42CBE3;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  top: 50%;
  right: -30px;
}

.flow_list .box.right h3::before {
  right: auto;
  left: -30px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.flow_list .box .text {
  margin-bottom: 20px;
}

@media all and (max-width: 896px) {
  .flow_list {
    margin: auto;
    width: 90%;
  }

  .flow_list::before {
    left: 0;
    -webkit-transform: none;
    transform: none;
  }

  .flow_list .box {
    width: 100%;
  }

  .flow_list .box:not(.right),
  .flow_list .box.right {
    padding: 20px;
    padding-right: 0;
  }

  .flow_list .box h3 {
    font-size: 1.4rem;
  }

  .flow_list .box h3 b {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
  }

  .flow_list .box h3 span {
    margin-right: 10px;
    font-size: 1.8rem;
  }

  .flow_list .box h3::before {
    width: 10px;
    height: 10px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    left: -20px;
  }

  .flow_list .box.right h3::before {
    width: 10px;
    height: 10px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    left: -20px;
  }
}

.top-contents li {
  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;
}

.top-contents li .bg-photo {
  width: 60%;
  z-index: 1;
}

.top-contents li .bg-photo.r-box {
  margin-left: auto;
}

@media all and (max-width: 896px) {
  .top-contents li .bg-photo {
    display: block;
    width: 100%;
  }
}

.top-contents li .txtbox.r-box {
  right: 0;
}

.top-contents li .txtbox.l-box {
  left: 0;
}

.top-contents li .txtbox {
  position: absolute;
  width: 45%;
  background: rgba(255, 255, 255, 0.9);
  -webkit-box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 5px;
  z-index: 2;
  line-height: 2;
}

@media all and (max-width: 896px) {
  .top-contents li .txtbox {
    position: relative;
    width: 92%;
    left: 0;
    right: 0;
    padding: 20px 15px;
    margin: -15px auto 0;
  }
}

.top-contents li:not(:last-of-type) {
  margin-bottom: 80px;
}

@media all and (max-width: 896px) {
  .top-contents li:not(:last-of-type) {
    margin-bottom: 40px;
  }
}

.top-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /* 4カラムを安定させる */
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 2%;
}

.top-menu li {
  /* 4カラム */
  width: 23.5%;
  margin: 0;
}

.top-menu li a {
  overflow: hidden;
}

.top-menu li a figure {
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.top-menu li a figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.top-menu li a .wbox {
  position: relative;
  z-index: 1;
  width: 80%;
  max-width: 250px;
  margin: -60px auto 0 0;
  padding: 20px 15px 5px;
  background: #ffffff;
  color: #333;
  border-radius: 0 5px 0 0;
}

.top-menu li a .wbox .top-menu-title {
  position: relative;
}

.top-menu li a .wbox .top-menu-title .ja {
  color: #333;
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 2rem;
}

@media all and (max-width: 896px) {
  .top-menu li a .wbox .top-menu-title .ja {
    font-size: 1.6rem;
    letter-spacing: 0.15em;
  }
}

@media all and (max-width: 639px) {
  .top-menu li a .wbox .top-menu-title .ja {
    font-size: 1.45rem;
  }
}

.top-menu li a .wbox .top-menu-title .ja {
  letter-spacing: 0.15em;
}

@media all and (max-width: 639px) {
  .top-menu li a .wbox .top-menu-title .ja {
    font-size: 1.3rem;
  }
}

.top-menu li a .wbox .top-menu-title .eng {
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.07em;
  line-height: 1.4;
  color: #42CBE3;
  display: block;
}

.top-menu li a:hover figure img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

@media all and (max-width: 1100px) {
  .top-menu li a figure {
    height: 220px;
  }
}

.top-menu li {
  /* タブレットは2カラムに落とす例（必要なければ消してOK） */
}

@media all and (max-width: 896px) {
  .top-menu li {
    width: 49%;
  }

  .top-menu li a figure {
    height: 180px;
    border-radius: 5px;
  }

  .top-menu li a .wbox {
    max-width: 180px;
    margin: -30px auto 0 0;
  }
}

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

  .top-menu li a figure {
    height: 160px;
  }

  .top-menu li a .wbox {
    max-width: 190px;
    padding: 15px 10px 2px;
  }
}

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

.top-links li {
  width: 19%;
  margin: 0.5%;
}

.top-links li a {
  display: block;
  width: 100%;
  background: #fff;
}

.top-links li a img {
  width: 100%;
}

.top-links li a {
  display: block;
  width: 100%;
}

@media all and (max-width: 1100px) {
  .top-links li {
    width: 32.3%;
  }
}

@media all and (max-width: 639px) {
  .top-links li {
    width: 48%;
    margin: 1%;
  }
}



/* category_tab
----------------------------------*/
.category_tab {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.category_tab:before {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: #ddd;
}

.category_tab li {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  background: #ddd;
  border-top: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-left: 1px solid #ddd;
  color: #333;
  padding: 8px;
  cursor: pointer;
  margin-left: 15px;
}

.category_tab li:last-child {
  margin-right: 15px;
}

.category_tab li.active {
  background: #fefefe;
  border-radius: 5px 5px 0 0;
}

.category_tab li.active:before {
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  content: "";
  background: #fff;
}

@media all and (max-width: 639px) {
  .category_tab {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 90%;
    margin: 0 auto;
  }

  .category_tab:before {
    display: none;
  }

  .category_tab li {
    width: 33.33%;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    margin: 0;
    line-height: 1.4;
  }

  .category_tab li:last-child {
    margin-right: 0;
  }
}

.panel {
  display: none;
}

.category_contents {
  background: #fefefe;
  padding: 35px 20px 20px;
  margin: 0 auto;
  border: 1px solid #ddd;
  border-top: 0;
}

.top-info-dl {
  max-width: 1200px;
  margin: 0 auto;
}

.top-info-dl .info-inner {
  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;
  padding-bottom: 10px;
  padding-top: 2px;
}

.top-info-dl .info-inner:not(:last-of-type) {
  margin-bottom: 15px;
  border-bottom: 0.9px dashed #ddd;
}

.top-info-dl .info-inner dt {
  width: 14em;
  color: #333;
  letter-spacing: 0.1em;
}

.top-info-dl .info-inner dt span {
  color: #fff;
  background: #42CBE3;
  padding: 2px 8px;
  margin-left: 5px;
  font-size: 85%;
}

.top-info-dl .info-inner dd {
  width: calc(100% - 15em);
}

.top-info-dl .info-inner dd a {
  color: #0e192d;
}

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

  .top-info-dl .info-inner dd {
    width: 100%;
    margin-top: 10px;
  }
}

.cbox {
  background: #fcfcfc;
  border: 1px solid #ddd;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 35px 30px;
}

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

.select-area {
  margin-bottom: 30px;
  text-align: right;
}

.select-wrap2 {
  position: relative;
  display: inline-block;
  min-width: 180px;
  min-width: 12em;
  background: #fff;
  border: 1px solid #ddd;
  color: #333;
}

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

.flow-slick li .flow-column {
  width: calc(100% - 80px);
  margin: auto;
  padding: 15px;
}

.flow-slick li .flow-column .mds {
  line-height: 1.4;
  font-size: 2rem;
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #333;
  border-bottom: 1px solid rgb(110.4193548387, 215.2211981567, 233.5806451613);
  padding-bottom: 5px;
  margin-bottom: 15px;
}

.flow-slick li .flow-column .mds.type1 {
  border-bottom: 1px solid rgb(138.3521126761, 209.9577464789, 54.0422535211);
}

.flow-slick li .flow-column .mds.type1 span {
  color: #70AE27;
}

.flow-slick li .flow-column .mds span {
  color: #42CBE3;
  font-size: 3rem;
  font-family: "Barlow Condensed", serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-right: 10px;
}

@media all and (max-width: 896px) {
  .flow-slick li .flow-column {
    padding: 5px;
  }

  .flow-slick li .flow-column .mds {
    font-size: 1.4rem;
    padding-bottom: 3px;
    margin-bottom: 10px;
    letter-spacing: 0.15em;
  }

  .flow-slick li .flow-column .mds span {
    font-size: 1.8rem;
    margin-right: 5px;
    letter-spacing: 0.1em;
  }
}

.flow-slick li .flow-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;
  background: #fefefe;
  -webkit-box-shadow: 0 0 8px rgba(66, 203, 227, 0.06);
  box-shadow: 0 0 8px rgba(66, 203, 227, 0.06);
  width: calc(100% - 80px);
  margin: auto;
}

.flow-slick li .flow-column2 .child-img {
  width: 50%;
}

.flow-slick li .flow-column2 .child {
  width: 50%;
  padding: 30px;
}

.flow-slick li .flow-column2 .child h3 {
  line-height: 1.4;
  font-size: 2rem;
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #42CBE3;
  border-bottom: 1px solid rgb(110.4193548387, 215.2211981567, 233.5806451613);
  padding-bottom: 5px;
  margin-bottom: 15px;
}

.flow-slick li .flow-column2 .child h3 span {
  font-size: 3rem;
  font-family: "Barlow Condensed", serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-right: 10px;
}

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

  .flow-slick li .flow-column2 .child-img {
    width: 100%;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    margin-bottom: 10px;
  }

  .flow-slick li .flow-column2 .child {
    width: 100%;
    padding: 15px;
  }

  .flow-slick li .flow-column2 .child h3 {
    font-size: 1.4rem;
    padding-bottom: 3px;
    margin-bottom: 10px;
    letter-spacing: 0.15em;
  }

  .flow-slick li .flow-column2 .child h3 span {
    font-size: 1.8rem;
    margin-right: 5px;
    letter-spacing: 0.1em;
  }
}

/*tabの形状*/
.tab2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

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

.tab2 li a {
  display: block;
  background: #ddd;
  padding: 10px 20px;
}

.tab2 li.active a {
  background: #fff;
}

@media all and (max-width: 639px) {
  .tab2 li {
    margin-bottom: 10px;
    width: 100%;
    text-align: center;
  }

  .tab2 li:last-child {
    margin-bottom: 0;
  }
}

/*liにactiveクラスがついた時の形状*/
/*エリアの表示非表示と形状*/
.area {
  display: none;
  /*はじめは非表示*/
  opacity: 0;
  /*透過0*/
  background: #fff;
  padding: 50px 20px;
}

.area.is-active {
  display: block;
  /*表示*/
  -webkit-animation-name: displayAnime;
  animation-name: displayAnime;
  /*ふわっと表示させるためのアニメーション*/
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

/*areaにis-activeというクラスがついた時の形状*/
@-webkit-keyframes displayAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* tenant layout: image + table in 2 columns */
.tenant .tenant__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 24px;
}

.tenant {
  /* 画像は固定 200x200 */
}

.tenant .tenant__img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 200px;
  flex: 0 0 200px;
  width: 200px;
}

.tenant .tenant__img img {
  width: 200px;
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.tenant {
  /* テーブルは残り全部を使う（広く） */
}

.tenant .tenant__tbl {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-width: 0;
}

.tenant .tbl_new {
  width: 100%;
}

.tenant {
  /* 長いURL対策（必要なら） */
}

.tenant .tbl_new a {
  word-break: break-all;
}

.tenant {
  /* スマホは縦並び */
}

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

  .tenant .tenant__img {
    width: 200px;
    margin: 0 auto;
  }
}

.chosei {
  margin-bottom: 120px;

  @media all and (max-width: 896px) {
    margin-bottom: 60px;
  }
}

.chosei2 {
  margin-bottom: 60px;

  @media all and (max-width: 896px) {
    margin-bottom: 40px;
  }
}

.chosei3 {
  margin-bottom: 40px;

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

.chosei4 {
  margin-bottom: 25px;

  @media all and (max-width: 896px) {
    margin-bottom: 15px;
  }
}

.bnr-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
  list-style: none;
  padding: 0;
}

.bnr-list li a {
  display: block;
  width: 100%;
  border: 1px solid #bebebe;
  transition: all 0.3s ease;
  text-align: center;
  background: #ffffff;
}

.bnr-list li a img {
  display: block;
  width: 100%;
  height: auto;
  transition: all 0.3s ease;
}

.bnr-list li a:hover {
  border: 1px solid #42CBE3;
}

.bnr-list li a:hover img {
  opacity: 0.8;
}

@media all and (max-width: 1100px) {
  .bnr-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}

@media all and (max-width: 639px) {
  .bnr-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }
}

.scrollbar.type-news-top {
  min-height: unset;
}
.scrollbar.type-news-top:has(.news-inner) {
  box-shadow: 0 0 5px 0px rgba(66, 203, 227, 1);
  border-top: 1px solid rgb(66, 203, 227);
}

.scrollbar.type-news-top .news .news-inner:last-of-type {
  border-bottom: none;
}