@charset "UTF-8";
/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
body {
  color: #232323;
  background: #ffffff;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ 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.1em;
}

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

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

#l-main {
  overflow: hidden;
  position: relative;
}

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

.bold {
  font-weight: 600;
}

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

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

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

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

.animation {
  opacity: 0;
}

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

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

.mask {
  position: relative;
  -webkit-clip-path: circle(1%);
          clip-path: circle(1%);
  -webkit-transition: 0.6s ease-in all;
  transition: 0.6s ease-in all;
}

.mask.on {
  -webkit-clip-path: circle(120%);
          clip-path: circle(120%);
}

/* 動き
----------------------------------*/
/*印象編　4-9、4-10　背景色が伸びて出現（左から・右から）　*/
.bgextend {
  -webkit-animation-name: bgextendAnimeBase;
          animation-name: bgextendAnimeBase;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  position: relative;
  overflow: hidden;
  /*　はみ出た色要素を隠す　*/
  opacity: 0;
}

@-webkit-keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*中の要素*/
.bgappear {
  -webkit-animation-name: bgextendAnimeSecond;
          animation-name: bgextendAnimeSecond;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*印象編　4-9 背景色が伸びて出現（左から）*/
.bgLRextend::before {
  -webkit-animation-name: bgLRextendAnime;
          animation-name: bgLRextendAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background-color: #111;
  /*伸びる背景色の設定*/
}

@-webkit-keyframes bgLRextendAnime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  51% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

@keyframes bgLRextendAnime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  51% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

/*印象編　4-9 背景色が伸びて出現（右から）*/
.bgRLextend::before {
  -webkit-animation-name: bgRLextendAnime;
          animation-name: bgRLextendAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #111;
  /*伸びる背景色の設定*/
}

@-webkit-keyframes bgRLextendAnime {
  0% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  51% {
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  100% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

@keyframes bgRLextendAnime {
  0% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  51% {
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  100% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.bgUDextendTrigger,
.bgDUextendTrigger,
.bgRLextendTrigger,
.bgLRextendTrigger {
  opacity: 0;
}

/*=============== ローでイング =================*/
.loader {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  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;
  pointer-events: none;
}

.loader.off {
  display: block;
}

.loader-bg1 {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #64B4A3;
  top: 0;
  left: 0;
  -webkit-animation: load-tate 0.6s ease-out 0.4s forwards;
          animation: load-tate 0.6s ease-out 0.4s forwards;
}

@-webkit-keyframes load-tate {
  0% {
    height: 100%;
    opacity: 1;
  }
  100% {
    height: 0%;
  }
}

@keyframes load-tate {
  0% {
    height: 100%;
    opacity: 1;
  }
  100% {
    height: 0%;
  }
}

@-webkit-keyframes load-tate2 {
  0% {
    height: 0%;
    opacity: 1;
  }
  100% {
    height: 100%;
  }
}

@keyframes load-tate2 {
  0% {
    height: 0%;
    opacity: 1;
  }
  100% {
    height: 100%;
  }
}

/* header
----------------------------------*/
@-webkit-keyframes load-bg {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes load-bg {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

#l-header {
  width: 100%;
  height: 200px;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 0;
  opacity: 1;
  overflow: hidden;
}

#l-header:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background-color: #fff;
}

#l-header .inner {
  width: 60%;
  margin: 10px auto;
  position: relative;
}

#l-header #logo {
  width: 380px;
  margin: 25px 0 0;
}

@media all and (max-width: 1680px) {
  #l-header .inner {
    width: 80%;
  }
}

@media all and (max-width: 1367px) {
  #l-header #logo {
    width: 280px;
    margin: 30px 0 0;
  }
}

@media all and (max-width: 1100px) {
  #l-header .inner {
    width: 90%;
  }
  #l-header #logo {
    width: 280px;
    margin: 30px 0 0;
  }
}

@media all and (max-width: 896px) {
  #l-header #logo {
    width: 280px;
    margin: 30px auto 20px;
  }
}

@media all and (max-width: 639px) {
  #l-header #logo {
    margin: 30px auto 20px 0;
    width: 80%;
    max-width: 250px;
  }
}

#l-header.is-fixed {
  right: auto;
  height: auto;
  position: fixed;
  padding: 10px 0;
  background-color: transparent;
  z-index: 101;
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#l-header.is-fixed .inner {
  max-width: 100%;
  margin: 0 auto;
}

#l-header.is-fixed .inner #logo {
  width: 260px;
  margin: 0px 0 0;
  position: absolute;
  top: 4px;
  left: 0;
  z-index: 2;
}

#l-header.is-fixed .inner .header__detail {
  display: none;
}

#l-header.is-fixed .inner .header__access {
  display: none;
}

#l-header.is-fixed #header_nav {
  margin: 40px auto 0;
}

@media all and (max-width: 896px) {
  #l-header.is-fixed .inner {
    max-width: 100%;
    margin: 0 auto;
  }
  #l-header.is-fixed .inner #logo {
    width: 260px;
    margin: 20px auto;
    position: initial;
  }
  #l-header.is-fixed .inner .header__detail {
    display: none;
  }
  #l-header.is-fixed .inner .header__access {
    display: none;
  }
}

@media all and (max-width: 639px) {
  #l-header.is-fixed .inner #logo {
    width: 200px;
    margin: 20px auto 20px 0;
  }
}

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

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

.header__right {
  width: 400px;
  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;
}

.header__right .header__detail {
  width: 280px;
}

.header__right .header__access {
  display: inline-block;
  border: 1px solid #35afa5;
  color: #fff;
  padding: 15px 20px 10px;
  text-align: center;
  border-radius: 6px;
  position: relative;
  z-index: 1;
  width: 120px;
}

.header__right .header__access:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 5px;
  left: 5px;
  background-color: #64B4A3;
  z-index: -1;
  border-radius: 6px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.header__right .header__access:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 1px solid #35afa5;
  border-radius: 6px;
  mix-blend-mode: plus-lighter;
}

.header__right .header__access:hover {
  background-color: #fff;
  color: #fff;
}

.header__right .header__access:hover:before {
  top: 0;
  left: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background-color: #64B4A3;
}

.header__right .header__access i {
  font-size: 1.8rem;
}

.header__right .header__access span {
  display: block;
}

@media all and (max-width: 1100px) {
  .header__right {
    width: 300px;
  }
  .header__right .header__detail {
    width: 210px;
  }
  .header__right .header__access {
    width: 90px;
    font-size: 12px;
    padding: 15px 10px 10px;
  }
  .header__right .header__access i {
    font-size: 14px;
  }
}

@media all and (max-width: 896px) {
  .header__right {
    width: 100%;
    position: relative;
    display: block;
  }
  .header__right .header__detail {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  .header__right .header__access {
    width: 80px;
    font-size: 12px;
    padding: 10px 5px 5px;
    position: absolute;
    top: 0;
    right: 0;
  }
  .header__right .header__access:before {
    top: 2px;
    left: 2px;
  }
  .header__right .header__access i {
    font-size: 14px;
  }
}

@media all and (max-width: 639px) {
  .header__right .header__detail {
    width: 100%;
    margin: 0 auto;
    text-align: left;
  }
  .header__right .header__access {
    width: 35px;
    height: 35px;
    font-size: 12px;
    padding: 6px 5px 5px 6px;
    right: -10px;
    border-radius: 50%;
  }
  .header__right .header__access:before {
    top: 2px;
    left: 2px;
    border-radius: 50%;
  }
  .header__right .header__access:after {
    border-radius: 50%;
  }
  .header__right .header__access span {
    display: none;
  }
  .header__right .header__access i {
    font-size: 12px;
  }
}

.header__detail {
  margin: 10px 0;
}

.header__detail .detail__box {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.header__detail .detail__box .detail__title {
  text-align: center;
  border: 1px solid #ade9d1;
  padding: 2px 16px;
  border-radius: 50px;
}

.header__detail .detail__box .detail__txt {
  padding-left: 5px;
}

.header__detail .detail__tel {
  font-size: 1.8rem;
}

.header__detail .detail__tel a {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  display: block;
}

.header__detail .detail__tel:hover a {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: scale(1.06);
          transform: scale(1.06);
}

.header__detail .detail__tel:hover a span {
  color: #333;
}

@media all and (max-width: 1100px) {
  .header__detail .detail__box {
    font-size: 1.4rem;
    margin-right: 10px;
  }
  .header__detail .detail__box .detail__title {
    padding: 2px 12px;
  }
  .header__detail .detail__tel {
    padding-left: 20px;
  }
}

@media all and (max-width: 896px) {
  .header__detail .header__detail__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media all and (max-width: 639px) {
  .header__detail .detail__box {
    font-size: 12px;
    margin-right: 10px;
  }
  .header__detail .detail__box .detail__title {
    text-align: center;
    border: 1px solid #ade9d1;
    padding: 2px 10px;
    border-radius: 50px;
  }
  .header__detail .detail__box .detail__txt {
    padding-left: 5px;
  }
  .header__detail .header__detail__box {
    display: block;
    text-align: center;
  }
  .header__detail .detail__tel {
    font-size: 1.5rem;
    padding-left: 0px;
    text-align: center;
  }
}

#header_nav {
  position: relative;
  margin: 20px auto;
  text-align: center;
  z-index: 1;
  border-radius: 50px;
  overflow: hidden;
}

#header_nav:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0%;
  background: linear-gradient(149deg, #d3fffc 0%, #f8f1bd 50%, #e2fdcc 100%);
  z-index: -1;
}

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

#header_nav ul li {
  position: relative;
  width: 33.33%;
}

#header_nav ul li a {
  display: block;
  position: relative;
  line-height: 1.5;
  font-size: 1.5rem;
  padding: 15px 25px;
  height: 52px;
  color: #333;
  letter-spacing: 0.05rem;
  font-weight: bold;
  z-index: 1;
}

#header_nav ul li a:before {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 22%;
  background-color: #fff;
  border-radius: 50%;
  z-index: -1;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

#header_nav ul li a span {
  display: block;
  font-size: 1.3rem;
  font-family: "Lora", serif;
  font-weight: 300;
  color: #333;
  position: relative;
  letter-spacing: 0.1rem;
}

#header_nav ul li a:hover, #header_nav ul li a.active {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  text-shadow: 0px 0px 10px #fff;
}

#header_nav ul li a:hover:before, #header_nav ul li a.active:before {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

#header_nav ul li .sub-menu {
  display: none;
  border-top: 0;
  display: none;
  margin: 0;
  position: absolute;
  width: 260px;
  top: 60px;
  left: 12px;
  visibility: hidden;
  -webkit-transiton: opacity 0.2s;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  z-index: 1;
  padding: 20px;
}

#header_nav ul li .sub-menu li {
  width: 100%;
  margin: 0 auto 5px;
  background-color: #64B4A3;
  padding: 10px 15px 10px 30px;
  margin-bottom: 4px;
  position: relative;
  opacity: 0;
  -webkit-transition: 0.8s;
  transition: 0.8s;
  -webkit-transform: translateX(200px);
          transform: translateX(200px);
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.2s ease;
  transition: transform 0.3s ease, opacity 0.2s ease, -webkit-transform 0.3s ease;
}

#header_nav ul li .sub-menu li:nth-child(2) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

#header_nav ul li .sub-menu li:nth-child(3) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

#header_nav ul li .sub-menu li:nth-child(4) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

#header_nav ul li .sub-menu li:nth-child(5) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

#header_nav ul li .sub-menu li:nth-child(6) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

#header_nav ul li .sub-menu li:nth-child(7) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

#header_nav ul li .sub-menu li:before {
  display: none;
}

#header_nav ul li .sub-menu li a {
  display: block;
  font-weight: normal;
  font-size: 1.3rem;
  color: #fff;
  padding: 0;
  text-shadow: none;
  text-align: left;
}

#header_nav ul li .sub-menu li:hover {
  background-color: #979797;
}

#header_nav ul li:hover .sub-menu, #header_nav ul li.active .sub-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  visibility: visible;
}

#header_nav ul li:hover .sub-menu li, #header_nav ul li.active .sub-menu li {
  -webkit-transition: 0.8s;
  transition: 0.8s;
  -webkit-transition: opacity 0.9s ease, -webkit-transform 1s ease;
  transition: opacity 0.9s ease, -webkit-transform 1s ease;
  transition: transform 1s ease, opacity 0.9s ease;
  transition: transform 1s ease, opacity 0.9s ease, -webkit-transform 1s ease;
  -webkit-animation: opacityAnime 1s 0.1s forwards;
          animation: opacityAnime 1s 0.1s forwards;
}

#header_nav ul li:hover .sub-menu li:nth-child(2), #header_nav ul li.active .sub-menu li:nth-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

#header_nav ul li:hover .sub-menu li:nth-child(3), #header_nav ul li.active .sub-menu li:nth-child(3) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

#header_nav ul li:hover .sub-menu li:nth-child(4), #header_nav ul li.active .sub-menu li:nth-child(4) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

#header_nav ul li:hover .sub-menu li:nth-child(5), #header_nav ul li.active .sub-menu li:nth-child(5) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

#header_nav ul li:hover .sub-menu li:nth-child(6), #header_nav ul li.active .sub-menu li:nth-child(6) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

#header_nav ul li:hover .sub-menu li:nth-child(7), #header_nav ul li.active .sub-menu li:nth-child(7) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}

#header_nav ul li:hover .header_link, #header_nav ul li.active .header_link {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  position: relative;
}

#header_nav ul li:hover .header_link:before, #header_nav ul li.active .header_link:before {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  left: 0;
  right: 0;
  top: -6px;
  margin: 0 auto;
  border-radius: 50%;
  background-color: rgba(53, 175, 165, 0.4);
  z-index: -1;
}

#header_nav ul li:hover .header_link.type2:before, #header_nav ul li.active .header_link.type2:before {
  background-color: rgba(12, 102, 192, 0.4);
}

#header_nav ul li:hover .header_link.type3:before, #header_nav ul li.active .header_link.type3:before {
  background-color: rgba(251, 133, 86, 0.4);
}

#header_nav ul li:hover .header_link.type4:before, #header_nav ul li.active .header_link.type4:before {
  background-color: rgba(240, 239, 168, 0.4);
}

@media all and (max-width: 1480px) {
  #header_nav ul li a {
    font-size: 1.4rem;
  }
  #header_nav ul li a span {
    font-size: 1.2rem;
  }
  #header_nav ul li.type-contact {
    margin-left: 10px;
  }
}

@media all and (max-width: 1367px) {
  #header_nav {
    text-align: center;
    margin: 20px auto 0px;
    width: 100%;
  }
  #header_nav ul {
    margin: 0px auto 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #header_nav ul li a {
    font-size: 1.4rem;
  }
}

/*　下に下がる動き　*/
@-webkit-keyframes DownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes DownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

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

#page-top a {
  display: block;
  background: #ade9d1;
  -webkit-box-shadow: #ade9d1;
          box-shadow: #ade9d1;
  color: #fff;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 1.2rem;
  text-align: center;
}

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

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

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

#slideshow {
  position: relative;
  margin: 0px auto;
  max-height: 880px;
  background-color: #f3f3e5;
}

#slide-wrap {
  position: relative;
  margin: 210px auto 0px;
  background-color: #f3f3e5;
  z-index: 1;
}

#slide-wrap:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background: url(../img/circle.png) no-repeat;
  background-size: cover;
  width: 440px;
  height: 100px;
  z-index: 1;
}

#slide-wrap:after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  background: url(../img/circle.png) no-repeat;
  background-size: cover;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
  width: 440px;
  height: 100px;
  z-index: 1;
}

#slide-wrap .slide-box {
  position: relative;
  height: 760px;
}

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

@media all and (max-width: 1100px) {
  #slide-wrap .slide-box {
    position: relative;
    height: 600px;
  }
  #slide-wrap:before {
    width: 270px;
    height: 60px;
  }
  #slide-wrap:after {
    width: 270px;
    height: 60px;
  }
}

@media all and (max-width: 639px) {
  #slide-wrap .slide-box {
    position: relative;
    height: 450px;
  }
  #slide-wrap:before {
    width: 200px;
    height: 50px;
  }
  #slide-wrap:after {
    width: 200px;
    height: 50px;
  }
}

@-webkit-keyframes bg-anime {
  0% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}

@keyframes bg-anime {
  0% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}

@-webkit-keyframes catch-anime {
  0% {
    opacity: 1;
    -webkit-transform: translateY(20%);
            transform: translateY(20%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes catch-anime {
  0% {
    opacity: 1;
    -webkit-transform: translateY(20%);
            transform: translateY(20%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes catch-anime2 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes catch-anime2 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.catch {
  z-index: 1;
  position: absolute;
  top: 18%;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 3;
  width: 70%;
  max-width: 500px;
}

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

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

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

@media all and (max-width: 896px) {
  .catch {
    width: 300px;
  }
}

@media all and (max-width: 639px) {
  .catch {
    width: 60%;
    top: 30%;
    max-width: 260px;
  }
}

/* footer
----------------------------------*/
footer {
  padding: 50px 0 0px;
  position: relative;
  background-color: #64B4A3;
}

@media all and (max-width: 639px) {
  footer {
    padding: 50px 0 0 0;
  }
}

#l-footer {
  font-size: 1.4rem;
  position: relative;
  width: 60%;
  padding: 0px 10px 10px;
  margin: 0 auto;
}

#l-footer .inner {
  margin: 0 auto 0px;
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#l-footer .footer__box {
  width: 60%;
  position: relative;
}

#l-footer .footer__box:before {
  position: absolute;
  content: "";
  width: 6px;
  height: 100%;
  top: 0;
  right: 0;
  background: url(../img/footer-line.png) repeat-y;
  background-size: 6px 28px;
}

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

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

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

@media all and (max-width: 639px) {
  #l-footer {
    font-size: 1.2rem;
  }
  #l-footer .inner {
    padding: 30px 0px;
    font-size: 1.1rem;
    display: block;
  }
  #l-footer .footer__box {
    width: 100%;
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 20px;
  }
  #l-footer .footer__box:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 6px;
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    background: url(../img/footer-line2.png) repeat-x;
    background-size: 28px 6px;
  }
}

.footer__detail {
  width: 40%;
  padding: 40px 0 40px 40px;
  font-family: "Shippori Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 300;
  font-weight: bold;
}

.footer__detail .detail__title {
  color: #64B4A3;
  padding-right: 10px;
}

@media all and (max-width: 1100px) {
  .footer__detail {
    padding: 20px 0 30px 20px;
  }
  .footer__detail .detail__inner {
    font-size: 1.4rem;
  }
}

@media all and (max-width: 639px) {
  .footer__detail {
    width: 100%;
    padding: 0 10px;
  }
  .footer__detail .detail__inner {
    font-size: 1.2rem;
  }
}

.footer__access {
  display: inline-block;
  color: #fff;
  font-size: 2rem;
}

.footer__access:hover {
  opacity: 0.4;
}

@media all and (max-width: 639px) {
  .footer__access {
    font-size: 12px;
    width: 100%;
    display: block;
  }
}

.ftxt {
  margin: 0 auto 10px;
  color: #fff;
  font-size: 2rem;
  font-family: "Shippori Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 300;
}

.ftxt span {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 4px 15px;
}

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

@media all and (max-width: 896px) {
  .ftxt {
    font-size: 1.4rem;
    line-height: 2;
  }
  .ftxt span {
    display: inline-block;
  }
}

.fbox {
  color: #fff;
  font-family: "Shippori Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 300;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
}

.fbox .fbox__tel {
  font-size: 4rem;
}

.fbox .fbox__tel a {
  color: #fff;
}

.fbox .fbox__tel a:hover {
  opacity: 0.4;
  border-bottom: 1px solid #fff;
}

@media all and (max-width: 1100px) {
  .fbox .fbox__tel {
    font-size: 2rem;
  }
}

@media all and (max-width: 639px) {
  .fbox .fbox__tel {
    font-size: 2rem;
    margin: 0 auto;
    text-align: center;
  }
}

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

.footer_navi ul {
  margin: 0 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.footer_navi ul li {
  margin: 0 1%;
  width: 15%;
}

.footer_navi ul li a {
  color: #fff;
  font-size: 1.4rem;
  position: relative;
  padding: 0 20px 5px;
  display: block;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
  font-family: "Shippori Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 300;
  font-weight: bold;
}

.footer_navi ul li a:before {
  content: "";
  background-color: #ffffff;
  width: 100%;
  height: 4px;
  position: absolute;
  border-radius: 2px;
  bottom: -6px;
  left: 0;
}

.footer_navi ul li a:after {
  content: "";
  background-color: #333;
  width: 0%;
  height: 4px;
  position: absolute;
  bottom: -6px;
  left: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 2px;
}

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

.footer_navi ul li a:hover:after {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  width: 100%;
}

@media all and (max-width: 1100px) {
  .footer_navi ul li a {
    font-size: 1.2rem;
  }
}

/* f logo
----------------------------------*/
.flogo {
  margin: 30px auto 20px 0;
  max-width: 480px;
  width: 70%;
}

@media all and (max-width: 1680px) {
  .flogo {
    margin: 20px auto 20px;
  }
}

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

.address {
  color: #fefefe;
  font-size: 12px;
}

.copyright {
  padding: 12px 0;
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
  background-color: #fff;
  width: 60%;
  margin: 0 auto;
  border-radius: 10px 10px 0 0;
  color: #64B4A3;
  font-family: "Shippori Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 300;
  font-weight: bold;
}

@media all and (max-width: 1680px) {
  .copyright {
    width: 80%;
  }
}

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

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

/* contents
----------------------------------*/
#main {
  float: left;
  width: 76%;
}

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

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

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

/* mtitle
----------------------------------*/
.mtitle-box {
  background-color: #64B4A3;
  color: #fff;
  padding: 20px 20px;
  margin: 0 auto;
  text-align: center;
}

.mtitle-box .ja {
  color: #fff;
  font-size: 2.4rem;
}

.mtitle-box .ja .main {
  padding-left: 5px;
  font-size: 3rem;
}

@media all and (max-width: 639px) {
  .mtitle-box .ja {
    font-size: 1.7rem;
  }
  .mtitle-box .ja .main {
    padding-left: 5px;
    font-size: 2rem;
  }
}

.mtitle_sub {
  padding: 0 0 0 20px;
  font-weight: 600;
  position: relative;
  border-left: 6px solid #64B4A3;
  margin: 0px 0 15px 20px;
  font-size: 1.1em;
  line-height: 1.4;
  text-align: left;
}

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

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

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

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

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

/* btn
----------------------------------*/
.btn {
  margin: 40px auto 0;
}

.btn a {
  display: block;
  width: 90%;
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
  padding: 10px 30px;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: #64B4A3;
}

.btn a:before {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: absolute;
  content: "";
  width: 140%;
  height: 200%;
  bottom: -50%;
  right: -20%;
  left: -20%;
  background-color: #fff;
  z-index: -1;
  border-radius: 50%;
}

.btn a span {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  color: #64B4A3;
  font-family: "Shippori Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 300;
  font-weight: bold;
  position: relative;
  z-index: 1;
}

.btn a:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.btn a:hover:before {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  height: 0%;
}

.btn a:hover span {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  color: #fff;
  letter-spacing: 3px;
}

.btn.btn--baseColor a {
  background-color: #eaf5f0;
  border: 1px solid #64B4A3;
  z-index: 1;
}

.btn.btn--baseColor a:before {
  background-color: #64B4A3;
  z-index: -1;
}

.btn.btn--baseColor a span {
  color: #fff;
}

.btn.btn--baseColor a:hover span {
  color: #64B4A3;
}

/* page-top
----------------------------------*/
@-webkit-keyframes page-leadanime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes page-leadanime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.page-toparea {
  position: relative;
}

.page-toparea .inner {
  padding: 250px 20px 160px;
}

@media all and (max-width: 639px) {
  .page-toparea .inner {
    padding: 180px 20px 160px;
  }
}

.page-toparea .inner .page-lead {
  color: #3a3a3a;
  text-align: center;
  font-size: 2.2rem;
  position: relative;
  margin: 0 auto;
  -webkit-animation: page-leadanime 1s ease-out 1s forwards;
          animation: page-leadanime 1s ease-out 1s forwards;
  opacity: 1;
}

.page-toparea .inner .page-lead .eng {
  display: block;
  font-family: "Lora", serif;
  font-weight: 300;
  font-size: 3rem;
}

@media all and (max-width: 639px) {
  .page-toparea .inner .page-lead {
    font-size: 1.5rem;
    -webkit-transform: translateY(4px);
            transform: translateY(4px);
  }
  .page-toparea .inner .page-lead .eng {
    font-size: 2rem;
  }
}

.page-toparea .slide-background {
  opacity: 0.6;
}

/* page-title
----------------------------------*/
.topbox {
  background-color: #eaf5f0;
}

.topbox #l-header {
  -webkit-animation: none;
          animation: none;
  opacity: 1;
}

.page-title-bg {
  position: relative;
  margin: 200px auto 0;
}

.page-title-bg:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background: url(../img/circle.png) no-repeat;
  background-size: cover;
  width: 440px;
  height: 100px;
  z-index: 1;
}

.page-title-bg:after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  background: url(../img/circle.png) no-repeat;
  background-size: cover;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
  width: 440px;
  height: 100px;
  z-index: 1;
}

@media all and (max-width: 1680px) {
  .page-title-bg {
    margin-top: 200px;
  }
}

@media all and (max-width: 1367px) {
  .page-title-bg {
    margin-top: 145px;
  }
}

@media all and (max-width: 1100px) {
  .page-title-bg {
    margin-top: 160px;
  }
  .page-title-bg:before {
    width: 270px;
    height: 60px;
  }
  .page-title-bg:after {
    width: 270px;
    height: 60px;
  }
}

@media all and (max-width: 639px) {
  .page-title-bg:before {
    top: 28px;
    width: 200px;
    height: 50px;
  }
  .page-title-bg:after {
    top: 28px;
    width: 200px;
    height: 50px;
  }
}

.page-title {
  position: relative;
  overflow: hidden;
  margin: 40px auto 0;
}

.page-title.type1 {
  background: url(../img/page-title01.jpg) no-repeat center 100%/cover;
}

.page-title.type2 {
  background: url(../img/page-title02.jpg) no-repeat center 100%/cover;
}

.page-title.type3 {
  background: url(../img/page-title03.jpg) no-repeat center 0%/cover;
}

.page-title.type4 {
  background: url(../img/page-title04.jpg) no-repeat center 100%/cover;
}

.page-title.type5 {
  background: url(../img/page-title05.jpg) no-repeat center 100%/cover;
}

.page-title.type6 {
  background: url(../img/page-title06.jpg) no-repeat center 100%/cover;
}

.page-title.type7 {
  background: url(../img/page-title07.jpg) no-repeat center 100%/cover;
}

.page-title:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #202020;
  opacity: 0.4;
}

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

.page-title .inner .page-lead {
  color: #fefefe;
  text-align: center;
  font-size: 2.2rem;
  position: relative;
  margin: 0 auto;
  -webkit-animation: page-leadanime 1s ease-out 0.4s forwards;
          animation: page-leadanime 1s ease-out 0.4s forwards;
  opacity: 0;
}

.page-title .inner .page-lead .eng {
  display: block;
  font-family: "Lora", serif;
  font-weight: 300;
  font-weight: bold;
  font-size: 2rem;
  text-shadow: 0px 0px 16px #6e6e6e;
}

.page-title .inner .page-lead .ja {
  color: #fff;
  font-family: "Shippori Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 300;
  font-weight: bold;
  text-shadow: 0px 0px 16px #6e6e6e;
}

@media all and (max-width: 639px) {
  .page-title .inner .page-lead {
    font-size: 1.4rem;
    -webkit-transform: translateY(4px);
            transform: translateY(4px);
  }
  .page-title .inner .page-lead .eng {
    font-size: 2rem;
  }
}

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

/* bg
----------------------------------*/
.bg-01 {
  position: relative;
  background-size: 100px;
}

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

.bg-02 {
  position: relative;
}

.bg-02:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/bg-01.jpg) repeat;
  background-size: 1000px 500px;
  top: 0;
  left: 0;
  opacity: 0.2;
}

.bg-03 {
  position: relative;
}

.bg-03:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/bg-03.jpg) repeat;
  background-size: 1000px 500px;
  top: 0;
  left: 0;
  opacity: 0.2;
}

.bg-common {
  margin-left: auto;
  margin-right: auto;
  padding: 0px 20px;
  overflow: hidden;
  position: relative;
  z-index: 100;
}

.bg-common .inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 100px 0;
}

@media all and (max-width: 896px) {
  .bg-common .inner {
    padding: 40px 0;
  }
  .bg-common.type-w {
    width: calc(100% - 20px);
    margin-bottom: 100px;
    background-color: white;
  }
}

/* tbl
----------------------------------*/
.tblarea {
  max-width: 900px;
  margin: 0 auto;
}

.tbl {
  width: 100%;
  background-color: #fff;
}

.tbl th,
.tbl td {
  padding: 10px 15px;
  border: 1px solid #ddd;
}

.tbl th {
  color: #fff;
  background: #64B4A3;
  width: 25%;
}

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

.tbl td {
  vertical-align: middle;
}

.tbl td.num {
  width: 10%;
  max-width: 200px;
}

@media all and (max-width: 639px) {
  .tbl th {
    width: 25%;
    text-align: left;
    font-size: 1.2rem;
  }
  .tbl th,
  .tbl td {
    padding: 5px 10px;
    font-size: 1.2rem;
  }
  .tbl td.num {
    width: 20%;
    max-width: 200px;
    min-width: 40px;
  }
}

.tbl_new {
  width: 100%;
  max-width: 1400px;
  margin: 10px auto 40px;
  font-size: 1.2rem;
}

.tbl_new tr th,
.tbl_new tr td {
  vertical-align: middle;
  padding: 10px 10px;
  border-right: 1px solid #fff;
}

.tbl_new tr th {
  font-weight: 600;
  width: 15%;
  text-align: left;
  letter-spacing: 0;
  background: #64B4A3;
  color: #ffff;
  text-align: center;
}

.tbl_new tr th.type2 {
  background: #f0f0f0;
  color: #64B4A3;
  border-bottom: 1px solid #fff;
}

.tbl_new tr th.w10 {
  width: 30px;
  border-top: 1px solid #fff;
}

@media all and (max-width: 639px) {
  .tbl_new tr th {
    padding-left: 10px;
  }
}

.tbl_new tr td {
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  border-right: 1px solid #f0f0f0;
}

.tbl_new2 {
  width: 100%;
}

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

.tbl_new2 tr th {
  background-color: #f5f5f5;
  width: 15%;
}

.tbl_new2 tr td {
  width: 85%;
}

.tbl_new2 tr th {
  font-weight: 700;
}

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

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

.tbl-txt {
  margin-bottom: 40px;
  padding: 20px 15px;
  border-bottom: 2px solid #dddddd;
  vertical-align: middle;
  text-align: right;
  font-weight: bold;
  background-color: #fff;
}

.tbl-txt span {
  font-size: 2rem;
}

.tbl-box {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border: 2px solid #dddddd;
}

.tbl-box .t-right {
  text-align: right;
}

.tbl-box th,
.tbl-box td {
  padding: 10px 15px;
  border-bottom: 2px solid #dddddd;
  vertical-align: middle;
  background-color: #fff;
}

.tbl-box th.type1,
.tbl-box td.type1 {
  width: 190px;
}

@media all and (max-width: 639px) {
  .tbl-box th.type1,
  .tbl-box td.type1 {
    width: 150px;
  }
}

.tbl-box th.b-no,
.tbl-box td.b-no {
  padding-bottom: 0;
  border-bottom: none;
}

.tbl-box th.tm-no,
.tbl-box td.tm-no {
  padding-top: 0;
}

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

.tbl-box th {
  width: 25%;
  text-align: center;
  color: white;
  background-color: #ddd;
  border-bottom-color: #fff;
  border-right: 1px solid #fff;
  font-size: 1.6rem;
  color: #333;
}

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

.tbl-box th.maintitle {
  text-align: center;
  color: #fff;
  font-size: 1.8rem;
}

.tbl-box th.maintitle .sub {
  font-size: 1.2rem;
}

@media all and (max-width: 639px) {
  .tbl-box th {
    font-size: 1rem;
  }
  .tbl-box th.maintitle {
    text-align: center;
    color: #fff;
    font-size: 1.2rem;
  }
  .tbl-box th.maintitle .sub {
    font-size: 1rem;
  }
  .tbl-box th.box1 {
    width: 30%;
    min-width: 160px;
  }
}

.tbl-box td {
  border-right: 1px solid #dddddd;
  width: 40%;
}

.tbl-box td.main {
  width: 20%;
}

.tbl-box td a {
  font-weight: bold;
  opacity: 0.4s;
}

.tbl-box td a:hover {
  opacity: 0.4s;
  color: #333;
}

@media all and (max-width: 639px) {
  .tbl-box td.box2 {
    width: 20%;
  }
}

.tbl-border {
  width: 100%;
}

.tbl-border .t-right {
  text-align: right;
}

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

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

.tbl-border th {
  width: 10%;
  text-align: left;
  font-weight: 600;
  border-right: 1px solid #64B4A3;
}

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

.tbl-border2 {
  width: 100%;
}

.tbl-border2 .t-right {
  text-align: right;
}

.tbl-border2 th,
.tbl-border2 td {
  padding: 10px 15px;
  border-bottom: 2px solid #dddddd;
  vertical-align: middle;
  width: 25%;
}

.tbl-border2 th p,
.tbl-border2 td p {
  font-size: 1.4rem;
  margin-top: 10px;
  font-weight: bold;
}

.tbl-border2 th.type1,
.tbl-border2 td.type1 {
  width: 190px;
}

@media all and (max-width: 639px) {
  .tbl-border2 th.type1,
  .tbl-border2 td.type1 {
    width: 150px;
  }
}

.tbl-border2 th.b-no,
.tbl-border2 td.b-no {
  padding-bottom: 0;
  border-bottom: none;
}

.tbl-border2 th.tm-no,
.tbl-border2 td.tm-no {
  padding-top: 0;
}

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

.tbl-border2 th {
  width: 28%;
  text-align: center;
  font-weight: 800;
  border-bottom-color: #64B4A3;
  color: #fff;
  background-color: #64B4A3;
}

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

@media all and (max-width: 639px) {
  .tbl-border2 th,
  .tbl-border2 td {
    padding: 10px 15px;
    border-bottom: 2px solid #dddddd;
    vertical-align: middle;
    width: 50%;
  }
}

/* ggmap
----------------------------------*/
.ggmap {
  position: relative;
  padding-bottom: 18%;
  height: 0;
  overflow: hidden;
  width: 60%;
  margin: 0 auto 100px;
  border-radius: 0 0 50px 50px;
}

@media all and (max-width: 1480px) {
  .ggmap {
    width: 80%;
    padding-bottom: 30%;
  }
}

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

@media all and (max-width: 639px) {
  .ggmap {
    padding-bottom: 28%;
    border-radius: 0 0 20px 20px;
    margin: 0 auto 50px;
  }
}

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

/* Gallery-list
----------------------------------*/
.gallerarea {
  max-width: 1500px;
  margin: 0 auto 30px;
  padding: 40px;
  background-color: #fff;
}

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

.gallery-list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.gallery-list li {
  width: 22%;
  margin: 0 1% 20px;
  border: 1px solid #363636;
  padding: 10px;
  background-color: #fff;
}

.gallery-list li img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery-list li .txt {
  margin-top: 10px;
  font-size: 2rem;
  text-align: center;
  font-weight: bold;
}

@media all and (max-width: 639px) {
  .gallery-list li {
    width: 98%;
    margin-bottom: 10px;
  }
  .gallery-list li img {
    width: 100%;
    height: 120px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .gallery-list li .txt {
    font-size: 1.5rem;
  }
}

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

.blogbox {
  max-width: 1200px;
  margin: 40px auto;
  background-color: #fff;
  border: 10px solid #eaf5f0;
  padding: 50px;
  border-radius: 20px;
}

.blogbox .blogbox__title {
  font-family: "Shippori Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 300;
  font-weight: bold;
  font-size: 2rem;
  color: #64B4A3;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 2px dotted #64B4A3;
}

@media all and (max-width: 639px) {
  .blogbox {
    text-align: left;
    padding: 20px 20px;
    border: 4px solid #eaf5f0;
  }
  .blogbox .blogbox__title {
    font-family: "Shippori Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
    font-weight: 300;
    font-weight: bold;
    font-size: 1.4rem;
  }
}

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

.blog-wrap > li {
  width: 100%;
  margin: 0 auto 20px;
  position: relative;
  padding: 15px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: rgba(255, 255, 255, 0.2);
}

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

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

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

@media all and (max-width: 639px) {
  .blog-wrap li {
    width: 100%;
    margin: 0 auto 20px;
    display: block;
  }
  .blog-wrap li .blog-img {
    width: 100%;
  }
  .blog-wrap li .blog-detail {
    width: 100%;
    padding: 10px;
  }
  .blog-wrap li .blog-txt {
    padding: 10px 0;
  }
}

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

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

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

.blog-detail {
  width: 80%;
  margin: 0 auto;
  padding: 10px 20px 0;
}

.blog-cat {
  background-color: #35afa5;
  color: #fff;
  font-size: 13px;
  display: none;
}

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

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

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

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

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

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

.blog-txt {
  line-height: 1.5;
  color: #333;
  font-size: 1.7rem;
  padding: 15px 15px 15px 15px;
  color: #fff;
  font-family: "Shippori Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 300;
  font-weight: bold;
}

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

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

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

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

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

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

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

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

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

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

.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: 48%;
  margin: 0 1% 10px;
  padding: 5px 0;
  text-align: center;
  letter-spacing: 0;
  background: #ade9d1;
}

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

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

.blog-month ul li a:hover {
  color: #64B4A3;
}

#a01,
#a02,
#a03,
#a04,
#a05,
#a06,
#a07,
#a08,
#a09,
#a10,
#a11,
#a12 {
  display: block;
  padding-top: 100px;
  margin-top: -100px;
}

/* breadcrumb
----------------------------------*/
.pagewrapper {
  position: relative;
}

.breadcrumb {
  padding: 10px 30px;
  z-index: 101;
  margin: 0px auto 0px;
  font-size: 1.2rem;
  width: 60%;
}

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

.breadcrumb li a {
  color: #f0efa8;
}

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

@media all and (max-width: 1680px) {
  .breadcrumb {
    width: 80%;
  }
}

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

@media all and (max-width: 639px) {
  .breadcrumb {
    font-size: 10px;
    padding: 8px 20px;
  }
}

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

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

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

.form dl dt span.nini {
  background: #f0efa8;
  color: #604C3F;
}

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

.form dl dd.type1 p {
  display: inline;
}

.form dl dd.type1 .w20 {
  width: 20%;
}

@media all and (max-width: 896px) {
  .form dl dd.type1 .w20 {
    width: 30%;
  }
}

.form dl dd.type1 .w30 {
  width: 30%;
}

@media all and (max-width: 639px) {
  .form dl dd.type1.type1-name .w30 {
    width: 48%;
  }
}

.form dl dd.type1 .w60 {
  width: 60%;
}

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

.form .textarea,
.form textarea {
  border: 0;
  padding: 12px 15px;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
  background: #fff;
}

.form .textarea02 {
  width: 48.5%;
  margin-right: 3%;
  background: #f9fcff;
  -webkit-box-shadow: 0 8px 8px rgba(165, 165, 165, 0.4);
          box-shadow: 0 8px 8px rgba(165, 165, 165, 0.4);
}

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

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

.form .textarea04 {
  width: 70%;
  margin-right: 1%;
}

.form .select_arrow {
  position: relative;
}

.form .select_arrow::before {
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 10.5px solid #64B4A3;
  content: "";
  position: absolute;
  right: 9px;
  top: 42px;
  width: 0;
}

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

.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 #363636;
  font-weight: 600;
  padding: 12px 5px;
  margin: 20px auto 0;
  width: 250px;
  background: #363636;
}

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

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

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

@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: 1px solid #64B4A3;
  background-color: #fff;
  max-width: 700px;
  margin: 0 auto;
}

.thanks .btn04 {
  position: relative;
  z-index: 1;
}

@media all and (max-width: 639px) {
  .thanks {
    max-width: 100%;
    padding: 30px 20px;
  }
  .thanks p.t-m50 {
    margin-top: 0;
  }
  .thanks p.b-m50 {
    margin-bottom: 20px;
  }
  .thanks p.tcenter.sp-left {
    text-align: left;
  }
}

.contentbox {
  margin-top: 100px;
}

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

.policy {
  padding: 30px;
  background: rgba(255, 255, 255, 0.8);
  max-width: 1200px;
  margin: 20px auto 0;
}

.mtitle_small {
  position: relative;
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #604C3F;
  font-weight: 600;
  padding: 10px;
  border-bottom: 1px solid #ccc;
}

.mtitle_small:before {
  content: "";
  width: 50px;
  height: 1px;
  background-color: #64B4A3;
  position: absolute;
  left: 0;
  bottom: -1px;
}

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

.mtitle_small2 {
  position: relative;
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #604C3F;
  font-weight: 600;
  padding: 10px 10px 10px 20px;
}

.mtitle_small2:before {
  content: "";
  background-color: #fff;
  width: 3px;
  height: 40%;
  position: absolute;
  top: 30%;
  left: 0;
}

.mtitle_small2:after {
  content: "";
  background-color: #838383;
  width: 3px;
  height: 40%;
  position: absolute;
  top: 30%;
  left: 2px;
}

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

@media all and (max-width: 639px) {
  .gallery_ul {
    margin-left: auto;
    margin-right: auto;
  }
}

.gallery_ul > li {
  width: 31.33%;
  margin-left: 2%;
  margin-bottom: 4%;
  font-weight: 600;
}

.gallery_ul > li .photobox-wrap {
  width: 100%;
  height: 220px;
  text-align: center;
  overflow: hidden;
  background: #aaa;
  margin-bottom: 10px;
}

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

@media all and (max-width: 896px) {
  .gallery_ul > li {
    width: 48%;
  }
}

@media all and (max-width: 639px) {
  .gallery_ul > li {
    width: 85%;
    margin: 0 auto 30px;
  }
  .gallery_ul > li .photobox-wrap {
    height: 180px;
  }
}

.comment {
  font-size: 1.4rem;
  letter-spacing: 0;
  padding: 0 5px;
  color: #604C3F;
}

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

/*アンカーリンク*/
.anchor-link {
  margin: 100px auto 0;
}

.anchor-link .anchorbox {
  margin: 0 20px;
  width: 380px;
}

@media all and (max-width: 639px) {
  .anchor-link .anchorbox {
    width: 100%;
    margin: 0 auto;
  }
}

.anchor-link .anchorbox a {
  display: block;
}

.anchor-link .anchorbox a:hover {
  opacity: 0.7;
  -webkit-filter: brightness(0.85) drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.6));
          filter: brightness(0.85) drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.6));
}

/*photoギャラリー*/
.gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.gallery li {
  width: 24%;
  margin: 0 calc(1% + (1% / 3)) 25px 0;
}

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

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

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

.gallery li p {
  font-size: 14px;
  margin: 0px 0 10px;
  background-color: #64B4A3;
  padding: 4px 10px;
  text-align: center;
  color: #fff;
}

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

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

.mainContents .mainContents__inner {
  width: 60%;
  margin: 0 auto;
}

.mainContents .mainContents__title {
  position: relative;
  z-index: 1;
}

.mainContents .mainContents__title .eng {
  font-size: 2.4rem;
  line-height: 1;
  font-family: "Lora", serif;
  font-weight: 300;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

.mainContents .mainContents__title .eng:before {
  position: absolute;
  content: "";
  width: 190px;
  height: 180px;
  top: -50px;
  left: -50px;
  background: url(../img/logomark.png) no-repeat;
  background-size: cover;
  z-index: -1;
}

.mainContents .mainContents__title .eng span {
  color: #64B4A3;
}

.mainContents .mainContents__title .ja {
  display: block;
  font-size: 4rem;
  position: relative;
  z-index: 1;
  padding: 0 4px;
  font-family: "Shippori Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 300;
}

.mainContents .mainContents__title.type--color .eng:before {
  background: url(../img/logomark2.png) no-repeat;
  background-size: cover;
  opacity: 0.6;
}

.mainContents .mainContents__pagetitle {
  position: relative;
  z-index: 1;
}

.mainContents .mainContents__pagetitle .eng {
  font-size: 2.4rem;
  line-height: 1;
  font-family: "Lora", serif;
  font-weight: 300;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

.mainContents .mainContents__pagetitle .eng span {
  color: #64B4A3;
}

.mainContents .mainContents__pagetitle .ja {
  display: block;
  font-size: 4rem;
  position: relative;
  z-index: 1;
  padding: 0 4px 0 210px;
  font-family: "Shippori Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 300;
}

.mainContents .mainContents__pagetitle .ja:before {
  position: absolute;
  content: "";
  width: 190px;
  height: 1px;
  top: 50%;
  left: 0;
  background-color: #333;
}

.mainContents .mainContents__photo {
  position: relative;
  z-index: 1;
}

.mainContents .mainContents__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mainContents .mainContents__txt {
  font-family: "Shippori Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 300;
  font-weight: bold;
  font-size: 1.6rem;
}

@media all and (max-width: 1480px) {
  .mainContents .mainContents__inner {
    width: 80%;
    margin: 0 auto;
  }
}

@media all and (max-width: 1100px) {
  .mainContents .mainContents__inner {
    width: 90%;
    margin: 0 auto;
  }
  .mainContents .mainContents__title .eng {
    font-size: 2rem;
    padding-left: 40px;
  }
  .mainContents .mainContents__title .eng:before {
    width: 110px;
    height: 100px;
    top: -40px;
    left: 0px;
  }
  .mainContents .mainContents__title .ja {
    font-size: 3rem;
  }
  .mainContents .mainContents__pagetitle .eng {
    font-size: 2rem;
  }
  .mainContents .mainContents__pagetitle .ja {
    font-size: 3rem;
    padding: 0 4px 0 100px;
  }
  .mainContents .mainContents__pagetitle .ja:before {
    width: 80px;
  }
}

@media all and (max-width: 639px) {
  .mainContents .mainContents__title .eng {
    font-size: 1.4rem;
    padding-left: 30px;
  }
  .mainContents .mainContents__title .eng:before {
    width: 110px;
    height: 100px;
    top: -40px;
    left: -0px;
  }
  .mainContents .mainContents__title .ja {
    font-size: 1.6rem;
  }
  .mainContents .mainContents__pagetitle .eng {
    font-size: 1.4rem;
  }
  .mainContents .mainContents__pagetitle .ja {
    font-size: 1.5rem;
    padding: 0 4px 0 60px;
  }
  .mainContents .mainContents__pagetitle .ja:before {
    width: 50px;
  }
  .mainContents .mainContents__txt {
    font-size: 1.3rem;
  }
  .mainContents .mainContents__photo {
    position: relative;
    z-index: 1;
  }
  .mainContents .mainContents__photo:before {
    top: 10px;
    left: 10px;
  }
}

.mainContents__bg01 {
  position: relative;
}

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

.mainContents__bg02 {
  position: relative;
}

.mainContents__bg02:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: url(../img/bg-02.jpg) no-repeat;
  background-size: cover;
  z-index: -1;
}

.mainContents__bg02:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: rgba(51, 51, 51, 0.5);
  z-index: -1;
}

.mainContents__bg03 {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.mainContents__bg03:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: url(../img/bg-03.jpg) no-repeat;
  background-size: cover;
  background-position: top center;
  z-index: -1;
  opacity: 0.3;
  -webkit-filter: blur(8px);
          filter: blur(8px);
}

.mainContents__bg03:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: #a7deda;
  background: linear-gradient(149deg, #bbf1ee 0%, #fbfdda 50%, #e5ffce 100%);
  z-index: -1;
}

.mainContents__bgcolor {
  position: relative;
}

.mainContents__bgcolor:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: #eaf5f0;
  z-index: -1;
}

.mainContents__gradetion {
  position: relative;
}

.mainContents__gradetion:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: linear-gradient(149deg, #fffbe3 0%, #c5ecb5 100%);
  z-index: -1;
}

/* top Contents
----------------------------------*/
.topGreet {
  padding: 100px 0 0;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}

.topGreet.topGreet--page {
  padding: 100px 0 0;
}

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

.topGreet .topGreet__photo {
  width: 50%;
  margin: 100px 0 0;
}

.topGreet .topGreet__txtarea {
  width: 50%;
  padding: 50px 50px 50px 0px;
}

.topGreet .topGreet__detail {
  position: relative;
  z-index: 1;
  font-size: 2rem;
  font-family: "Shippori Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 300;
  font-weight: 600;
  margin-top: 20px;
}

@media all and (max-width: 1100px) {
  .topGreet .topGreet__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .topGreet .topGreet__photo {
    width: 50%;
    margin: 100px 0 0;
  }
  .topGreet .topGreet__photo img {
    width: 100%;
    height: auto;
  }
  .topGreet .topGreet__detail {
    margin-top: 40px;
    font-size: 1.6rem;
  }
}

@media all and (max-width: 896px) {
  .topGreet .topGreet__inner {
    display: block;
  }
  .topGreet .topGreet__photo {
    width: auto;
    margin: 30px auto 0;
    height: 200px;
    text-align: center;
  }
  .topGreet .topGreet__photo img {
    width: auto;
    height: 100%;
  }
  .topGreet .topGreet__txtarea {
    width: 100%;
    padding: 0;
    text-align: center;
  }
}

@media all and (max-width: 639px) {
  .topGreet {
    padding: 100px 0 0;
  }
  .topGreet.topGreet--page {
    padding: 50px 0 0;
  }
  .topGreet .topGreet__detail {
    margin-top: 20px;
    font-size: 1.4rem;
    font-weight: bold;
  }
}

.topMessage {
  padding: 100px 0 100px;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  overflow: hidden;
  z-index: 1;
}

.topMessage:before {
  position: absolute;
  content: "";
  width: 1100px;
  height: 800px;
  border-radius: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -450px;
  background-color: #f7fff0;
  background-color: #fdffe6;
  z-index: -1;
  background-position: center;
}

.topMessage:after {
  position: absolute;
  content: "";
  width: 900px;
  height: 700px;
  border-radius: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -450px;
  background-color: #e9f9dc;
  background-color: #f0efa8;
  z-index: -1;
  background-position: center;
}

.topMessage .topMessage__title {
  font-family: "Shippori Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 300;
  font-size: 2.4rem;
  text-align: center;
}

.topMessage .topMessage__title span {
  font-size: 3rem;
  color: #604C3F;
  font-weight: bold;
}

.topMessage .topMessage__title span.sub {
  font-size: 2.6rem;
  display: block;
  margin-bottom: 20px;
}

@media all and (max-width: 1367px) {
  .topMessage:before {
    height: 770px;
    left: 50%;
    -webkit-transform: translateY(0%) translateX(-50%);
            transform: translateY(0%) translateX(-50%);
  }
  .topMessage:after {
    height: 700px;
    left: 50%;
    -webkit-transform: translateY(0%) translateX(-50%);
            transform: translateY(0%) translateX(-50%);
  }
}

@media all and (max-width: 896px) {
  .topMessage .topMessage__title {
    font-size: 1.8rem;
  }
  .topMessage .topMessage__title span {
    font-size: 2.4rem;
  }
  .topMessage .topMessage__title span.sub {
    font-size: 2rem;
  }
}

@media all and (max-width: 639px) {
  .topMessage {
    padding: 50px 0 80px;
  }
  .topMessage:before {
    left: 50%;
  }
  .topMessage:after {
    left: 50%;
  }
  .topMessage .topMessage__title {
    font-size: 1.5rem;
  }
  .topMessage .topMessage__title span {
    font-size: 1.8rem;
  }
  .topMessage .topMessage__title span.sub {
    font-size: 1.6rem;
  }
}

.topMessage__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: 40px auto 0;
  max-width: 780px;
}

.topMessage__list li {
  width: 250px;
  height: 250px;
  margin: 0 10px 20px 0;
  position: relative;
  border-radius: 50%;
  border: 4px solid #f0efa8;
  background-color: #fff;
}

.topMessage__list li:first-child {
  border: 4px solid #c4fdff;
}

.topMessage__list li:first-child .list__num {
  color: #41ced3;
}

.topMessage__list li:nth-child(2) {
  border: 4px solid #cffff1;
}

.topMessage__list li:nth-child(2) .list__num {
  color: #45caa2;
}

.topMessage__list li:nth-child(3) {
  border: 4px solid #d0ffd6;
}

.topMessage__list li:nth-child(3) .list__num {
  color: #61d871;
}

.topMessage__list li:nth-child(4) {
  border: 4px solid #e3ffbc;
}

.topMessage__list li:nth-child(4) .list__num {
  color: #9bce25;
}

.topMessage__list li:nth-child(5) {
  border: 4px solid #fffab7;
}

.topMessage__list li:nth-child(5) .list__num {
  color: #cfc31d;
}

.topMessage__list li:nth-child(6) {
  border: 4px solid #ffeac2;
}

.topMessage__list li:nth-child(6) .list__num {
  color: #cf9933;
}

.topMessage__list li .list__txtarea {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  width: 100%;
  text-align: center;
  line-height: 1.6;
  font-size: 2rem;
  font-family: "Shippori Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 300;
  font-weight: bold;
}

.topMessage__list li .list__num {
  color: #604C3F;
  line-height: 1;
  font-weight: bold;
}

.topMessage__list li .list__num span {
  display: inline-block;
  padding: 0 15px 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #604C3F;
  font-weight: bold;
}

.topMessage__list li:last-child {
  margin: 0;
}

@media all and (max-width: 639px) {
  .topMessage__list li {
    width: 150px;
    height: 150px;
    margin: 0 10px 10px 0;
  }
  .topMessage__list li:nth-child(2n) {
    margin: 0 0 10px;
  }
  .topMessage__list li:last-child {
    margin: 0 0 10px;
  }
  .topMessage__list li .list__txtarea {
    line-height: 1.4;
    font-size: 1.3rem;
  }
}

.topThought {
  margin: 0px auto;
  position: relative;
  z-index: 1;
  background-color: #6da87f;
}

.topThought:before {
  opacity: 0.2;
  mix-blend-mode: luminosity;
}

.topThought .topThought__inner {
  position: relative;
  z-index: 2;
  padding: 100px 0 30px;
}

.topThought .topThought__inner:before {
  position: absolute;
  content: "";
  width: 308px;
  height: 439px;
  bottom: -55px;
  left: 40px;
  background: url(../img/thought-photo-main.png) no-repeat;
  background-size: cover;
  z-index: 1;
}

.topThought .topThought__title {
  font-family: "Shippori Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 300;
  font-size: 2.4rem;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  top: -30px;
}

.topThought .topThought__title .title__inner {
  display: inline-block;
  padding: 10px 40px;
  border-radius: 50px;
  background-color: #71AC83;
  color: #fff;
  border: 2px solid #fff;
  -webkit-filter: drop-shadow(0px 2px white);
          filter: drop-shadow(0px 2px white);
}

.topThought .topThought__title .ja {
  font-size: 3rem;
}

@media all and (max-width: 1367px) {
  .topThought .topThought__inner:before {
    bottom: -55px;
    left: -50px;
  }
}

@media all and (max-width: 896px) {
  .topThought .topThought__title {
    font-size: 1.8rem;
  }
  .topThought .topThought__title .ja {
    font-size: 2.4rem;
  }
}

@media all and (max-width: 639px) {
  .topThought {
    padding: 50px 0;
  }
  .topThought .topThought__inner {
    padding: 100px 0 0px;
  }
  .topThought .topThought__inner:before {
    width: 144px;
    height: 198px;
    bottom: -68px;
    left: -40px;
  }
  .topThought .topThought__title {
    top: 20px;
    font-size: 1.4rem;
  }
  .topThought .topThought__title .ja {
    font-size: 1.6rem;
  }
}

.topThought__box {
  margin: 0 auto 0 320px;
}

@media all and (max-width: 1367px) {
  .topThought__box {
    margin: 0 auto;
  }
}

.topThought__txtarea {
  margin: 0px 0 0 50px;
  color: #fff;
  font-family: "Shippori Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 300;
  text-shadow: 0 0 10px rgba(70, 110, 81, 0.8);
}

.topThought__txtarea .txtarea__main {
  font-size: 3.4rem;
}

.topThought__txtarea .txtarea__txt {
  font-size: 2rem;
  text-align: left;
  padding: 40px 0 20px 0px;
}

@media all and (max-width: 1367px) {
  .topThought__txtarea {
    margin: 60px auto 0 300px;
    color: #fff;
    font-family: "Shippori Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
    font-weight: 300;
    text-align: left;
  }
  .topThought__txtarea .txtarea__main {
    font-size: 2.6rem;
  }
  .topThought__txtarea .txtarea__txt {
    font-size: 1.8rem;
    text-align: left;
    padding: 20px 0;
  }
}

@media all and (max-width: 639px) {
  .topThought__txtarea {
    margin: 40px auto 0;
    color: #fff;
    font-family: "Shippori Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
    font-weight: 300;
    text-align: left;
  }
  .topThought__txtarea .txtarea__main {
    font-size: 1.8rem;
  }
  .topThought__txtarea .txtarea__txt {
    font-size: 1.4rem;
    text-align: left;
    padding: 20px 0 0;
  }
  .topThought__txtarea .txtarea__txtsub {
    padding: 0 0 0 120px;
    min-height: 130px;
  }
}

.topPoint {
  padding: 100px 0 0px;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  overflow: hidden;
}

.topPoint:before {
  position: absolute;
  content: "";
  width: 1100px;
  height: 800px;
  border-radius: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: -450px;
  background-color: #f7fff0;
  background-color: #fdffe6;
  z-index: -1;
  background-position: center;
}

.topPoint:after {
  position: absolute;
  content: "";
  width: 900px;
  height: 700px;
  border-radius: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: -450px;
  background-color: #e9f9dc;
  background-color: #f0efa8;
  z-index: -1;
  background-position: center;
}

.topPoint .topPoint__photo {
  margin: 50px auto 0;
}

@media all and (max-width: 1367px) {
  .topPoint {
    padding: 50px 0 0;
  }
  .topPoint:before {
    height: 770px;
    left: 50%;
    -webkit-transform: translateY(0%) translateX(-50%);
            transform: translateY(0%) translateX(-50%);
  }
  .topPoint:after {
    height: 700px;
    left: 50%;
    -webkit-transform: translateY(0%) translateX(-50%);
            transform: translateY(0%) translateX(-50%);
  }
}

@media all and (max-width: 639px) {
  .topPoint {
    padding: 50px 0 0;
  }
  .topPoint .topPlan__inner {
    padding: 50px 0;
  }
  .topPoint:before {
    left: 50%;
  }
  .topPoint:after {
    left: 50%;
  }
  .topPoint .topPoint__photo {
    margin-top: 100px;
  }
}

.topPoint__list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow: hidden;
  padding: 20px;
  background-color: #fff;
  margin: 0 auto;
  border-top: 2px solid #64B4A3;
  border-bottom: 2px solid #64B4A3;
}

.topPoint__list li {
  width: 33.33%;
  padding: 20px 10px;
  position: relative;
  text-align: center;
}

.topPoint__list li:before {
  position: absolute;
  content: "";
  width: 2px;
  height: 80%;
  top: 10%;
  right: 0;
  background-color: #64B4A3;
}

.topPoint__list li:after {
  position: absolute;
  content: "";
  width: 80%;
  height: 2px;
  bottom: 0;
  left: 10%;
  background-color: #64B4A3;
}

.topPoint__list li:nth-child(3n):before {
  display: none;
}

.topPoint__list li:nth-child(4):after, .topPoint__list li:nth-child(5):after, .topPoint__list li:nth-child(6):after {
  display: none;
}

.topPlan {
  padding: 0px;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  overflow: hidden;
}

.topPlan .topPlan__inner {
  margin: 0px auto 0;
  padding: 100px 0 100px;
  position: relative;
  z-index: -1;
}

.topPlan .topPlan__inner:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #f9f9f9;
  z-index: -1;
}

.topPlan .topPlan__title {
  font-family: "Shippori Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 300;
  font-size: 2.4rem;
  text-align: center;
  margin: 0 auto 0px;
  position: relative;
}

.topPlan .topPlan__title .eng {
  display: block;
}

.topPlan .topPlan__title .ja {
  font-size: 4rem;
}

.topPlan .topPlan__txt {
  margin: 60px auto 20px;
  text-align: center;
}

.topPlan .topPlan__txt span {
  display: inline-block;
  border-bottom: 4px solid #64B4A3;
  padding: 10px 40px;
  font-size: 2rem;
  font-weight: bold;
}

@media all and (max-width: 639px) {
  .topPlan .topPlan__inner {
    padding: 50px 0;
  }
  .topPlan .topPlan__txt {
    max-width: 90%;
  }
  .topPlan .topPlan__txt span {
    padding: 6px 30px;
    font-size: 1.3rem;
  }
  .topPlan .topPlan__title {
    font-family: "Shippori Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
    font-weight: 300;
    font-size: 1.6rem;
    margin: 0 auto -30px;
  }
  .topPlan .topPlan__title .eng {
    display: block;
  }
  .topPlan .topPlan__title .ja {
    font-size: 2rem;
  }
}

.topPlan__list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0px auto 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-align: stretch;
	    -ms-flex-align: stretch;
	      align-items: stretch;
  width: 90%;
}

.topPlan__list li {
  width: 24%;
  margin: 100px 1% 20px 0;
  position: relative;
  border-radius: 20px;
  
  display: flex;          /* 【重要】フレックスボックスにする */
  flex-direction: column; /* 【重要】縦並びにする */
  align-items: stretch;
}

.topPlan__list li:first-child {
  background-color: #80baf0;
  -webkit-filter: drop-shadow(5px 5px 0 #4b93d6);
          filter: drop-shadow(5px 5px 0 #4b93d6);
}

.topPlan__list li:first-child .list__num:before {
  background-color: #80baf0;
}

.topPlan__list li:nth-child(2) {
  background-color: #bdbdbd;
  -webkit-filter: drop-shadow(5px 5px 0 #868686);
          filter: drop-shadow(5px 5px 0 #868686);
}

.topPlan__list li:nth-child(2) .list__num:before {
  background-color: #bdbdbd;
}

.topPlan__list li:nth-child(3) {
  background-color: #dac581;
  -webkit-filter: drop-shadow(5px 5px 0 #928356);
          filter: drop-shadow(5px 5px 0 #928356);
}

.topPlan__list li:nth-child(3) .list__num:before {
  background-color: #dac581;
}

.topPlan__list li:nth-child(4) {
  margin: 100px 0 20px;
  background-color: #a0c2cc;
  -webkit-filter: drop-shadow(5px 5px 0 #7a9299);
          filter: drop-shadow(5px 5px 0 #7a9299);
}

.topPlan__list li:nth-child(4) .list__num:before {
  background-color: #a0c2cc;
}

.topPlan__list .list__icon {
  text-align: center;
  margin: 0 auto;
  max-width: 80px;
  position: relative;
  z-index: 1;
}

.topPlan__list .list__num {
  position: absolute;
  top: -46px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  font-family: "Lora", serif;
  font-weight: 300;
  line-height: 1.2;
  z-index: 1;
}

.topPlan__list .list__num:before {
  position: absolute;
  content: "";
  width: 180px;
  height: 150px;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: -16px;
  background-color: #64B4A3;
  border-radius: 50% 50% 0 0;
  z-index: -1;
}

.topPlan__list .list__num .list__num__title {
  font-size: 14px;
  display: block;
}

.topPlan__list .list__num .list__num__main {
  font-size: 2rem;
  display: block;
}

.topPlan__list .list__title {
  text-align: center;
  font-family: "Shippori Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 300;
  font-weight: bold;
  color: #fff;
  padding: 0px 10px 15px;
  font-size: 2.4rem;
  position: relative;
  z-index: 1;
}

.topPlan__list .list__photo {
  position: relative;
  z-index: 1;
}

.topPlan__list .list__txtarea {
  /* padding: 0 10px 10px; */
  margin:  0 10px 10px;
  background-color: #fff;
  padding: 25px 25px 30px;
  border-radius: 0 0 20px 20px;
  flex-grow: 1;
}

/* .topPlan__list .list__txtarea__inner {
  background-color: #fff;
  padding: 25px 25px 30px;
  border-radius: 0 0 20px 20px;
} */

.topPlan__list .list__txtarea__main {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #604C3F;
  text-align: center;
  font-size: 2rem;
  font-family: "Shippori Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 300;
  font-weight: bold;
}

.topPlan__list .list__txtarea__sub {
  font-size: 1.8rem;
  text-align: center;
}

@media all and (max-width: 1680px) {
  .topPlan__list {
    width: 96%;
  }
}

@media all and (max-width: 1367px) {
  .topPlan__list {
    width: 90%;
  }
  .topPlan__list li {
    width: 49%;
    margin: 100px 2% 20px 0;
  }
  .topPlan__list li:nth-child(4) {
    margin: 100px 0 20px 0;
  }
  .topPlan__list li:nth-child(2n) {
    margin: 100px 0 20px;
  }
}

@media all and (max-width: 1100px) {
  .topPlan__list {
    width: 96%;
  }
  .topPlan__list .list__title {
    padding: 14px 10px;
    font-size: 1.8rem;
  }
  .topPlan__list .list__txtarea {
    padding: 30px 20px;
  }
  /* .topPlan__list .list__txtarea__inner {
    padding: 30px 20px;
  } */
  .topPlan__list .list__txtarea__main {
    font-weight: bold;
    padding-bottom: 5px;
    margin-bottom: 5px;
    font-size: 1.6rem;
  }
  .topPlan__list .list__txtarea__sub {
    font-size: 1.4rem;
  }
}

@media all and (max-width: 639px) {
  .topPlan__list {
    width: 80%;
  }
  .topPlan__list li {
    width: 100%;
    margin: 80px auto 0;
  }
  .topPlan__list li:first-child {
    margin: 100px auto 0;
  }
  .topPlan__list li:nth-child(2n) {
    margin: 80px auto  0;
  }
  .topPlan__list li:nth-child(4) {
    margin: 80px auto 0;
  }
  .topPlan__list .list__icon {
    max-width: 40px;
  }
  .topPlan__list .list__num {
    top: -36px;
  }
  .topPlan__list .list__num .list__num__title {
    font-size: 12px;
  }
  .topPlan__list .list__num .list__num__main {
    font-size: 1.4rem;
  }
  .topPlan__list .list__title {
    padding: 0px 6px 12px;
    font-size: 1.5rem;
  }
  .topPlan__list .list__txtarea {
    padding: 20px 15px;
  }
  /* .topPlan__list .list__txtarea__inner {
    padding: 20px 15px;
  } */
  .topPlan__list .list__txtarea__main {
    font-size: 1.4rem;
  }
  .topPlan__list .list__txtarea__sub {
    font-size: 1.2rem;
  }
}

.topFlower {
  position: relative;
  padding: 100px 0;
  margin: 0 auto;
}

.topFlower .topFlower__title {
  text-align: center;
}

.topFlower .topFlower__title span.ja {
  display: inline-block;
  border: 1px solid #0d3010;
  padding: 8px 50px;
  font-size: 3rem;
  color: #0d3010;
}

.topFlower .topFlower__txt {
  text-align: center;
  margin: 40px auto 0;
  color: #0d3010;
  font-size: 2.2rem;
  font-family: "Shippori Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 300;
}

@media all and (max-width: 639px) {
  .topFlower {
    padding: 50px 0;
  }
  .topFlower .topFlower__title span.ja {
    padding: 8px 30px;
    font-size: 1.6rem;
  }
  .topFlower .topFlower__txt {
    font-size: 1.6rem;
  }
}

.topColumn {
  padding: 100px 0;
  position: relative;
  margin: 0 auto;
}

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

.topColumn .column__photo {
  width: 40%;
}

.topColumn .column__photo img {
  border-radius: 40px;
  overflow: hidden;
}

.topColumn .column__txtarea {
  width: 55%;
  margin: 0 0 0 5%;
  padding: 50px 0 50px 50px;
}

.topColumn .column__detail {
  margin-top: 40px;
  font-size: 1.6rem;
}

.topColumn .column__detail .detail__title {
  font-size: 2rem;
  font-weight: bold;
}

@media all and (max-width: 1100px) {
  .topColumn .column__txtarea {
    width: 55%;
    margin: 0 0 0 5%;
    padding: 50px 0 50px 0px;
  }
}

@media all and (max-width: 639px) {
  .topColumn {
    padding: 50px 0;
  }
  .topColumn .topColumn__title span.ja {
    text-align: center;
  }
  .topColumn .topColumn__inner {
    display: block;
  }
  .topColumn .column__photo {
    width: 80%;
    margin: 0 auto;
    text-align: center;
    height: 140px;
  }
  .topColumn .column__photo img {
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .topColumn .column__txtarea {
    width: 100%;
    margin: 30px auto 0;
    padding: 0px;
  }
  .topColumn .column__detail {
    font-size: 1.3rem;
  }
  .topColumn .column__detail .detail__title {
    font-size: 1.4rem;
  }
}

.contact {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.contact .contact__inner {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60%;
  overflow: hidden;
}

.contact .contact__ggmap {
  width: 50%;
  position: relative;
  border-radius: 0px 50px 50px 0px;
  -o-object-fit: cover;
     object-fit: cover;
}

.contact .contact__ggmap iframe,
.contact .contact__ggmap object,
.contact .contact__ggmap embed {
  border-radius: 0 50px 50px 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.contact .contact__main {
  width: 50%;
  background-color: #f8ffe6;
  border-radius: 50px 0 0 50px;
  padding: 80px 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 4px solid #fff;
}

.contact .contact__txt {
  font-family: "Shippori Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 300;
  font-weight: bold;
  text-align: center;
}

.contact .contact__txt span {
  background-color: #fff;
  padding: 4px 10px;
}

.contact .detail__tel {
  text-align: center;
  font-family: "Shippori Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 300;
  font-weight: bold;
  font-size: 2rem;
}

.contact .detail__tel__link {
  font-size: 3rem;
  font-family: "Shippori Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 300;
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
}

.contact .detail__tel__link a:hover {
  color: #333;
}

.contact .contact__title {
  text-align: center;
}

.contact .contact__title .eng {
  padding-left: 0;
}

.contact .contact__title .eng:before {
  display: none;
}

@media all and (max-width: 1680px) {
  .contact .contact__inner {
    width: 80%;
  }
}

@media all and (max-width: 1100px) {
  .contact .contact__inner {
    width: 90%;
    display: block;
  }
  .contact .contact__main {
    width: 100%;
    display: block;
    padding: 60px 15px 30px;
    border-radius: 20px 20px 0 0;
  }
  .contact .contact__ggmap {
    width: 100%;
    height: 300px;
  }
  .contact .contact__ggmap iframe,
  .contact .contact__ggmap object,
  .contact .contact__ggmap embed {
    border-radius: 0 0 20px 20px;
  }
}

@media all and (max-width: 639px) {
  .contact {
    padding: 50px 0;
  }
  .contact .contact__main {
    display: block;
    padding: 40px 15px 20px;
  }
  .contact .contact__titlearea {
    width: 100%;
    border-right: none;
    border-bottom: 4px solid #fff;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .contact .contact__txt {
    font-family: "Shippori Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
    font-weight: 300;
    font-weight: bold;
    text-align: center;
  }
  .contact .contact__txt span {
    background-color: #fff;
    padding: 4px 10px;
  }
  .contact .contact__detail {
    width: 100%;
  }
  .contact .detail__tel {
    font-size: 1.4rem;
  }
  .contact .detail__tel__link {
    font-size: 1.6rem;
  }
  .contact .btn {
    margin-top: 20px;
  }
}

/* page contents
----------------------------------*/
.flower {
  position: relative;
  margin: 0 auto;
  padding: 100px 0;
  z-index: 1;
}

.flower .flower__inner {
  width: 60%;
  margin: 0 auto;
}

.flower .flower__subtitle {
  margin: 40px auto 0;
  font-weight: bold;
  font-size: 2rem;
  background-color: #f3f3f3;
  padding: 20px 30px;
}

.flower .flower__subtitle .flower__subtitle__min {
  color: #5c5c5c;
  font-size: 1.5rem;
}

@media all and (max-width: 1680px) {
  .flower .flower__inner {
    width: 80%;
  }
}

@media all and (max-width: 1100px) {
  .flower {
    padding: 50px 0;
  }
  .flower .flower__inner {
    width: 90%;
  }
}

@media all and (max-width: 639px) {
  .flower {
    padding: 50px 0;
  }
  .flower .flower__inner {
    width: 90%;
  }
  .flower .flower__subtitle {
    font-size: 1.4rem;
    background-color: #f3f3f3;
    padding: 20px;
  }
  .flower .flower__subtitle .flower__subtitle__min {
    font-size: 1.3rem;
  }
}

.flower__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 50px auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flower__list li {
  width: 32%;
  margin: 0 2% 25px 0;
  padding: 20px;
  border: 1px solid #578f35;
}

.flower__list li:nth-child(3n) {
  margin: 0 0 25px 0;
}

.flower__list .list__title {
  margin-top: 10px;
  font-weight: bold;
  text-align: center;
  font-size: 2rem;
}

.flower__list .list__detail {
  margin: 5px auto;
  text-align: center;

  margin-top: auto;  
}

.flower__list .list__detail span {
  display: inline-block;
  background-color: #f3f3f3;
  padding: 2px 15px;
}

.flower__list .list__price {
  text-align: center;
}

.flower__list .list__price .price__sub {
  font-size: 1.4rem;
  padding-right: 10px;
  font-weight: bold;
}

.flower__list .list__price .price__main {
  font-size: 2rem;
  font-family: "Lora", serif;
  font-weight: 300;
  font-weight: bold;
  color: #992121;
}

.flower__list .list__price .price__min {
  color: #5c5c5c;
}

@media all and (max-width: 896px) {
  .flower__list li {
    width: 49%;
    margin: 0 2% 25px 0;
  }
  .flower__list li:nth-child(3n) {
    margin: 0 2% 25px 0;
  }
  .flower__list li:nth-child(2n) {
    margin: 0 0 25px 0;
  }
}

@media all and (max-width: 639px) {
  .flower__list li {
    width: 100%;
    margin: 0 auto 25px;
  }
  .flower__list li:nth-child(3n) {
    margin: 0 auto 25px;
  }
  .flower__list li:nth-child(2n) {
    margin: 0 auto 25px;
  }
  .flower__list .list__title {
    font-size: 1.5rem;
  }
  .flower__list .list__detail span {
    padding: 2px 10px;
  }
  .flower__list .list__price .price__sub {
    font-size: 1.2rem;
  }
  .flower__list .list__price .price__main {
    font-size: 1.4rem;
  }
}

.plan {
  position: relative;
  margin: 0 auto;
  padding: 100px 0;
  z-index: 1;
}

.plan .plan__inner {
  width: 60%;
  margin: 0 auto;
}

.plan .plan__subtitle {
  margin: 40px auto 0;
  font-weight: bold;
  font-size: 2rem;
  background-color: #f3f3f3;
  padding: 20px 30px;
}

.plan .plan__subtitle .plan__subtitle__min {
  color: #5c5c5c;
  font-size: 1.5rem;
}

@media all and (max-width: 1680px) {
  .plan .plan__inner {
    width: 80%;
  }
}

@media all and (max-width: 1100px) {
  .plan {
    padding: 50px 0;
  }
  .plan .plan__inner {
    width: 90%;
  }
}

@media all and (max-width: 639px) {
  .plan {
    padding: 50px 0;
  }
  .plan .plan__inner {
    width: 90%;
  }
  .plan .plan__subtitle {
    font-size: 1.4rem;
    background-color: #f3f3f3;
    padding: 20px;
  }
  .plan .plan__subtitle .plan__subtitle__min {
    font-size: 1.3rem;
  }
}

.planNav__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: 40px auto;
}

.planNav__list li {
  width: 23%;
  margin: 0 2% auto 0;
  padding: 20px;
  position: relative;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.planNav__list li:before {
  position: absolute;
  content: "";
  width: 30px;
  height: 20px;
  border-top: 20px solid #ddd;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
}

.planNav__list li:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background-color: #ececec;
}

.planNav__list li:hover .list__icon {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.planNav__list li:hover:first-child {
  background-color: #80BAF0;
}

.planNav__list li:hover:nth-child(2) {
  background-color: #BDBDBD;
}

.planNav__list li:hover:nth-child(3) {
  background-color: #DAC581;
}

.planNav__list li:hover:last-child {
  background-color: #A0C2CC;
}

.planNav__list li:hover .list__icon {
  mix-blend-mode: color-dodge;
}

.planNav__list li a {
  display: block;
}

.planNav__list li:first-child {
  border: 1px solid #80BAF0;
  position: relative;
}

.planNav__list li:first-child:before {
  border-top: 15px solid #80BAF0;
}

.planNav__list li:first-child .list__title span {
  background-color: #80BAF0;
}

.planNav__list li:nth-child(2) {
  border: 1px solid #BDBDBD;
}

.planNav__list li:nth-child(2):before {
  border-top: 15px solid #BDBDBD;
}

.planNav__list li:nth-child(2) .list__title span {
  background-color: #BDBDBD;
}

.planNav__list li:nth-child(3) {
  border: 1px solid #DAC581;
}

.planNav__list li:nth-child(3):before {
  border-top: 15px solid #DAC581;
}

.planNav__list li:nth-child(3) .list__title span {
  background-color: #DAC581;
}

.planNav__list li:last-child {
  margin: 0 0 20px;
  border: 1px solid #A0C2CC;
}

.planNav__list li:last-child:before {
  border-top: 15px solid #A0C2CC;
}

.planNav__list li:last-child .list__title span {
  background-color: #A0C2CC;
}

.planNav__list .list__icon {
  margin: 0 auto;
  text-align: center;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.planNav__list .list__title {
  text-align: center;
  margin: 0 auto;
}

.planNav__list .list__title span {
  display: inline-block;
  background-color: #A0C2CC;
  border-radius: 50px;
  padding: 2px 30px;
  color: #fff;
  position: relative;
  z-index: 1;
  border: 1px solid #fff;
}

@media all and (max-width: 896px) {
  .planNav__list li {
    width: 48%;
    margin: 0 2% 20px 0;
    padding: 10px 10px 20px;
    position: relative;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .planNav__list .list__icon {
    width: 80px;
  }
  .planNav__list .list__title span {
    padding: 2px 10px;
    font-size: 1.2rem;
  }
}

.planDtail__list {
  margin: 0 auto;
}

.planDtail__list li {
  padding-top: 150px;
}

.planDtail__list li:nth-child(2) .list__title {
  border-top: 2px solid #868686;
  border-bottom: 2px solid #868686;
}

.planDtail__list li:nth-child(3) .list__title {
  border-top: 2px solid #928356;
  border-bottom: 2px solid #928356;
}

.planDtail__list li:nth-child(4) .list__title {
  border-top: 2px solid #7A9299;
  border-bottom: 2px solid #7A9299;
}

.planDtail__list .list__title {
  padding: 10px 0 15px;
  border-top: 2px solid #4B93D6;
  border-bottom: 2px solid #4B93D6;
  text-align: center;
  font-size: 3rem;
  font-family: "Shippori Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 300;
  font-weight: bold;
  color: #4B93D6;
  position: relative;
  z-index: 1;
}

.planDtail__list .list__photo {
  text-align: center;
  margin: 0 auto;
}

.planDtail__list .list__price {
  text-align: center;
  margin: 50px auto 40px;
  width: 80%;
  max-width: 453px;
}

@media all and (max-width: 639px) {
  .planDtail__list li {
    padding-top: 50px;
  }
  .planDtail__list .list__title {
    padding: 0px 0 10px;
  }
  .planDtail__list .list__price {
    margin: 30px auto 20px;
  }
}

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

.plan__box .plan__photo {
  width: 100%;
  margin: 0 auto 40px;
  text-align: center;
}

.plan__box .plan__detail {
  width: 100%;
  margin: 0 auto;
  padding: 0px 0 0px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.plan__box table {
  width: 48%;
  margin: 0 1% auto;
}

.plan__box table tr {
  display: block;
  margin-bottom: 10px;
}

.plan__box table th, .plan__box table td {
  padding: 6px 10px 6px 20px;
}

.plan__box table th {
  width: 100%;
  background-color: #dceeff;
  color: #333;
  font-weight: normal;
  display: block;
  font-size: 2rem;
}

.plan__box table th span {
  font-size: 1.6rem;
}

.plan__box table td {
  width: 100%;
  border-bottom: 1px solid #8ab5dd;
  position: relative;
  display: block;
  font-size: 2rem;
}

.plan__box table td span {
  font-size: 1.5rem;
}

.plan__box table.type--plan02 th {
  background-color: #eeeeee;
}

.plan__box table.type--plan02 td {
  border-bottom: 1px solid #b6b6b6;
}

.plan__box table.type--plan03 th {
  background-color: #e2d9c6;
}

.plan__box table.type--plan03 td {
  border-bottom: 1px solid #b3a791;
}

.plan__box table.type--plan04 th {
  background-color: #cae0df;
}

.plan__box table.type--plan04 td {
  border-bottom: 1px solid #9bb4b2;
}

@media all and (max-width: 896px) {
  .plan__box table th {
    font-size: 1.6rem;
  }
  .plan__box table th span {
    font-size: 1.4rem;
  }
  .plan__box table td {
    font-size: 1.5rem;
  }
  .plan__box table td span {
    font-size: 1.3rem;
  }
}

@media all and (max-width: 639px) {
  .plan__box table {
    width: 100%;
    margin: 0 auto;
  }
  .plan__box table tr {
    display: block;
    margin-bottom: 10px;
  }
  .plan__box table th, .plan__box table td {
    padding: 6px 10px 6px 20px;
  }
  .plan__box table th {
    font-size: 1.4rem;
  }
  .plan__box table th span {
    font-size: 1.2rem;
  }
  .plan__box table td {
    font-size: 1.3rem;
  }
}

/*----------------------------------
pc/sp
----------------------------------*/
@media all and (max-width: 639px) {
  .pconly {
    display: none;
  }
}

.sponly {
  display: none;
}

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