@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap");
@font-face {
  font-family: "Kyokasho";
  src: url("../fonts/Kyokasho.ttc") format("truetype");
}
@font-face {
  font-family: "LiSong Pro";
  src: url("../fonts/LiSong Pro.ttf") format("truetype");
}
@media (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}
/*------------------------------------------------------------
	clearfix（float解除）
------------------------------------------------------------*/
.u-clearfix {
  *zoom: 1;
}
.u-clearfix:after {
  display: block;
  clear: both;
  content: "";
}

/*------------------------------------------------------------
    Default
------------------------------------------------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header, button,
hgroup, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 1em;
}

html {
  font-size: 62.5%;
}

* {
  box-sizing: border-box;
}

body, table,
input, textarea, select, option, button,
h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  -webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
}

table,
input, textarea, select, option {
  line-height: 1.7;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

img {
  vertical-align: middle;
  max-width: 100%;
}

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

table {
  width: 100%;
  border-collapse: collapse;
}

a {
  color: #2F2F2F;
  text-decoration: none;
  display: inline-block;
  transition: all .5s;
  -webkit-transition: all .5s;
  -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

a:hover,
a:hover img {
  opacity: 0.8;
  filter: alpha(opacity=80);
  -ms-filter: "alpha(opacity=80)";
}

.u-bgcover {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.u-df {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .u-df {
    flex-direction: column;
  }
}
.u-df .f-left, .u-df .f-right {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .u-df .f-left, .u-df .f-right {
    width: 100%;
  }
}
.ml5 {
  margin-left: 5%;
}
@media screen and (max-width: 767px) {
  .ml5 {
    margin-left: 0;
  }
}
.u-pd70 {
  padding: 70px 0;
}
@media screen and (max-width: 767px) {
  .u-pd70 {
    padding: 50px 0;
  }
}
.u-pb30 {
  padding-bottom: 30px;
}
.u-bg01 {
  position: relative;
  background-color: #EFF4EF;
}
.u-bg02 {
  position: relative;
  background-color: #E4EBE4;
}

/* .fadein
------------------------------------------------------------*/
.u-fadein {
  opacity: 0;
  transform: translateY(100px);
  transition: transform 1s, opacity 1s;
}

.u-fadein.on {
  opacity: 1;
  transform: translateY(0);
}

/*------------------------------------------------------------
  effect（ページ遷移）
------------------------------------------------------------*/
.u-effect {
  position: relative;
}
.u-effect::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ECF7F1;
  /* 背景カラー */
  background-image: url(../image/common/h-logo.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 225px;
  z-index: 9998;
  /* 一番手前に */
  pointer-events: none;
  /* 他の要素にアクセス可能にするためにポインターイベントは無効に */
  opacity: 0;
  /* 初期値 : 透過状態 */
  -webkit-transition: opacity .6s ease;
  /* アニメーション時間は 0.6秒 */
  transition: opacity .6s ease;
}

@media screen and (max-width: 767px) {
  .u-effect::after {
  }
}

.u-effect.show::after {
  opacity: 1;
}

.u-effect.show article {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

/* --------------------------------------------------
	 7. Slick
-------------------------------------------------- */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track::before,
.slick-track::after {
  content: "";
  display: table;
}

.slick-track::after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-prev,
.slick-next {
  display: block;
  color: transparent;
  text-decoration: none;
  text-indent: 110%;
  white-space: nowrap;
  font-size: 0;
  width: 44px;
  height: 44px;
  position: absolute;
  padding: 0;
  line-height: 0;
  border: none;
  outline: none;
  background-color: #707176;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1;
  opacity: 0.8;
  transition: opacity 0.4s;
  background-size: cover !important;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  opacity: 1;
}
.slick-prev {
  background: url(../image/top/arrow-prev.png) center no-repeat;
}
.slick-next {
  background: url(../image/top/arrow-next.png) center no-repeat;
}

.slick-dots {
  top: 50%;
  right: 35px;
  z-index: 2;
  transform: translate(0, -50%);
  text-align: center;
  position: absolute;
}
.slick-dots li {
  position: relative;
  margin: 10px 0;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .slick-dots {
    right: 20px;
  }
  .slick-dots li {
    margin: 7px 0;
  }
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  width: 17px;
  height: 17px;
  outline: none;
  line-height: 0;
  color: transparent;
  cursor: pointer;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.59);
  position: relative;
}
@media screen and (max-width: 767px) {
  .slick-dots li button {
    width: 9px;
    height: 9px;
  }
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover {
  background-color: #fff;
}

.slick-dots li.slick-active button {
  background-color: #fff;
}


/*------------------------------------------------------------
	Layout
------------------------------------------------------------*/
body {
  color: #101010;
  min-width: 768px;
  font-size: 14px;
  line-height: 1.5;
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  body {
    min-width: auto;
  }
}
.wrapper {
  overflow-x: hidden;
}
.l-container {
  margin: 0 auto;
  width: 1200px;
}
@media screen and (max-width: 1300px) {
  .l-container {
    width: 86%;
    margin: 0 auto;
  }
}
.l-container2 {
  margin: 0 auto;
  width: 850px;
}
@media screen and (max-width: 900px) {
  .l-container2 {
    width: 86%;
    margin: 0 auto;
  }
}

/*------------------------------------------------------------
header
------------------------------------------------------------*/
.c-header {
  /*nav menu*/
}
body.is-fixed {
  top: 0;
  left: 0;
  position: fixed;
}
.c-header__nav {
  position: relative;
}
.c-header #nav-toggle.fixed span {
  background: #000;
}

.c-header #nav-toggle.fixed.on span {
  background: #ccc;
}

.c-header #nav-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  width: 57px;
  height: 57px;
  z-index: 9999;
  position: fixed;
  top: 15px;
  right: 15px;
  background: #fff;
  border-radius: 50%;
}

.c-header #nav-toggle div {
  position: relative;
  width: 30px;
  height: 18px;
}

.c-header #nav-toggle span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000;
  border-radius: 20px;
  -webkit-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}
.c-header #nav-toggle p {
  font-size: 10px;
  line-height: 1;
  margin: 7px 0 -7px;
  font-family: "circe", sans-serif;
}
@media screen and (max-width: 767px) {
  .c-header #nav-toggle p {
    font-size: 0.9rem;
    margin: 5px 0 -6px;
  }

}

.c-header #nav-toggle span:nth-child(1) {
  top: 0px;
}

.c-header #nav-toggle span:nth-child(2) {
  top: 8px;
}

.c-header #nav-toggle span:nth-child(3) {
  top: 16px;
}

.c-header #nav-toggle.on span:nth-child(1) {
  top: 8px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
}

.c-header #nav-toggle.on span:nth-child(2) {
  width: 0;
  left: 50%;
}

.c-header #nav-toggle.on span:nth-child(2)::before,
.c-header #nav-toggle.on span:nth-child(2)::after {
  width: 0;
  height: 0;
}

.c-header #nav-toggle.on span:nth-child(3) {
  top: 8px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
}

.c-header .header-menu-inner {
  visibility: hidden;
  position: relative;
  z-index: 100;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.c-header .header-menu-inner.open {
  visibility: visible;
  -webkit-transition: opacity .24s ease;
  transition: opacity .24s ease;
}

.c-header #header-menu-bg {
  display: block;
  position: fixed;
  z-index: 100;
  width: 100vw;
  height: 100vh;
  background: #EFF4EF;
  visibility: hidden;
  opacity: 0;
  cursor: pointer;
  -webkit-transition: all .6s;
  transition: all .6s;
}

.c-header .header-menu-inner.open #header-menu-bg {
  visibility: visible;
  opacity: 1;
}

.c-header .g-nav-wrapper {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  right: 0;
  z-index: 998;
  width: 100%;
  height: 100vh;
  margin-left: 0;
  background-color: #EFF4EF;
  text-align: left;
  -webkit-transition: all .6s;
  transition: all .6s;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  .c-header .g-nav-wrapper{
    -webkit-box-align: start;
    -ms-flex-align: start;
        align-items: flex-start;
  }
}
.c-header .header-menu-inner.open .g-nav-wrapper {
  visibility: visible;
  opacity: 1;
}

.c-header .g-nav-logo {
  width: 30%;
}
.c-header .g-nav-bglogo {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: url(../image/top/top01.jpg) center no-repeat;
  background-size: auto 100%;
}
.c-header .g-nav-bglogo.zoom {
  animation: zoom 7s forwards alternate;
}
@keyframes zoom {
	0% {
		background-size: auto 100%;
	}
	100% {
		background-size: auto 103%;
	}
}
.c-header .g-nav-bglogo:after {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(127,162,141,0.69);
}
.c-header .g-nav-logo img {
  z-index: 1;
}

.c-header .g-nav-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 3%;
  width: 70%;
}
.c-header .g-nav-inner h2 {
  color: #fff;
  font-size: 18px;
  padding: 17px 0 13px;
  margin-bottom: 65px;
  text-align: center;
  border-radius: 3px;
  font-family: "circe", sans-serif;
  background-color: rgba(151,167,151,0.78);
}

.c-header .g-nav-link {
  padding: 0 4%;
}
.c-header .g-nav-link + .g-nav-link {
  border-left: 1px solid #C5D1C5;
}
.c-header .g-nav-link > li + li {
  margin-top: 10px;
}
.c-header .g-nav-link h3 a {
  color: #97A797;
  font-size: 36px;
  font-weight: 600;
  font-family: "circe", sans-serif;
}
.c-header .g-nav-sublink {
  margin-top: 10px;
}
.c-header .g-nav-sublink li {
  padding: 5px 0;
}
.c-header .g-nav-sublink a {
  color: #484848;
  font-size: 18px;
}
.c-header .g-nav-contact {
  padding: 43px 4%;
  text-align: center;
  border-radius: 30px;
  margin-top: 60px;
  border: 1px solid #97A797;
}
.c-header .g-nav-contact .s-contact__ttl {
  color: #97A797;
}
.c-header .g-nav-contact .s-contact__tel a {
  color: #000;
}
.c-header .g-nav-contact .s-contact__box:after {
  border-left: 1px solid #C5D1C5;
}



@media screen and (max-width: 767px) {
  .c-header #nav-toggle {
    width: 50px;
    height: 50px;
  }
  .c-header .g-nav-logo {
    width: 100%;
  }
  .c-header .g-nav-bglogo {
    height: 60vw;
    background-size: cover !important;
  }
  .c-header .g-nav-inner {
    padding: 50px 4% 70px;
    width: 100%;
  }
  .c-header .g-nav-inner h2 {
    font-size: 16px;
    padding: 14px 0 10px;
    margin-bottom: 50px;
  }
  .c-header .g-nav-link + .g-nav-link {
    border-left: 0;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #C5D1C5;
  }
  .c-header .g-nav-link h3 a {
    font-size: 3rem;
  }
  .c-header .g-nav-sublink a {
    font-size: 1.6rem;
  }
  .c-header .g-nav-contact {
    margin-top: 43px;
    padding: 35px 4% 40px;
  }
}
/*------------------------------------------------------------
footer
------------------------------------------------------------*/
.c-footer {
  z-index: 0;
  font-size: 12px;
  position: relative;
  background-color: #8CA28C;
}
.c-footer:after {
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  height: 115px;
  position: absolute;
  background: url(../image/common/footer-img.png) center no-repeat;
}
.c-footer .details {
  z-index: 1;
  position: relative;
  padding: 170px 0 20px;
}
.c-footer__address a {
  align-self: flex-end;
}
.c-footer__address p {
  font-size: 12px;
  line-height: 1.7;
}
.c-footer__copyright {
  color: #fff;
  text-align: center;
  padding-top: 18px;
  font-family: 'Muna', sans-serif;
}
@media screen and (max-width: 767px) {
  .c-footer__address a {
    align-self: flex-start;
    margin-top: 25px;
  }
  .c-footer__copyright {
    padding-top: 45px;
  }
}

/* c-mainvisual
------------------------------------------------------------*/
.c-mainvisual {
  position: relative;
}
.c-mainvisual__inner {
  height: 400px;
  background: url(../image/common/mainvisual.jpg);
}
.c-mainvisual__inner:after {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(36,87,185,0.25)
}
@media screen and (max-width: 767px) {
  .c-mainvisual__inner {
    height: 320px;
  }
}
.c-mainvisual__text {
  top: 30px;
  left: 0;
  right: 0;
  z-index: 1;
  color: #fff;
  text-align: center;
  margin: 0 auto;
  position: absolute;
}
.c-mainvisual__text h1 {
  font-size: 42px;
  margin-top: 80px;
  font-family: "circe", sans-serif;
}
.c-mainvisual__text p {
  font-size: 16px;
}
.c-mainvisual__text--ttl {
  color: #fff;
  font-size: 18px;
  display: block;
  text-align: center;
  max-width: 248px;
  margin: 28px auto 0;
  border-radius: 20px;
  padding: 5px 10px;
  background-color: #000;
  font-family: "circe", sans-serif;
}
@media screen and (max-width: 767px) {
  .c-mainvisual__text h1 {
    font-size: 3.5rem;
    margin-top: 65px;
    margin-top: 50px;
  }
  .c-mainvisual__text p {
    font-size: 1.4rem;
  }
  .c-mainvisual__text--ttl {
    font-size: 1.6rem;
    max-width: 210px;
    margin: 20px auto 0;
  }
}

/* c-breadcrumb
------------------------------------------------------------*/
.c-breadcrumb {
  color: #fff;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 8px 3%;
  position: absolute;
  border-top: 1px solid #fff;
}
.c-breadcrumb:after {
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  mix-blend-mode: multiply;
  background-color: #DDDDDD;
}
.c-breadcrumb ul li {
  z-index: 1;
  position: relative;
  display: inline-block;
}
.c-breadcrumb ul li img {
  vertical-align: -2px;
}
.c-breadcrumb ul li a {
  color: #fff;
}
.c-breadcrumb ul li:after {
  content: "〉";
  margin-left: 10px;
  font-size: 11px;
}
.c-breadcrumb ul li:last-of-type:after {
  content: none;
}
@media screen and (max-width: 767px) {

}

/*------------------------------------------------------------
c-title
------------------------------------------------------------*/
.c-title01 {
  top: -22px;
  left: 0;
  right: 0;
  z-index: 1;
  text-align: center;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-title01:before, .c-title01:after {
  content: "";
  /* height: 1px;
  width: 42%;
  top: 22px;
  z-index: -1;
  position: absolute;
  background-color: #C5D1C5; */
  flex: 1 0 20px;
  border-top: 1px solid #C5D1C5;
}
.c-title01:before {
  /* left: 0; */
  margin: 0 20px 0 0;
}
.c-title01:after {
  /* right: 0; */
  margin: 0 0 0 20px;
}
.c-title01 h2 {
  color: #97A797;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 600;
  font-family: "circe", sans-serif;
}
@media screen and (max-width: 767px) {
  .c-title01 h2 {
    font-size: 3rem;
    line-height: 1;
  }
  .c-title01:before {
    margin: -5px 15px 0 0;
  }
  .c-title01:after {
    margin: -5px 0 0 15px;
  }
  .c-title01 {
    top: -12px;
  }
  /* .c-title01:before, .c-title01:after {
    top: 12px;
    width: 35%;
  } */
}

.c-title01.jp {
  top: -18px;
}
.c-title01.jp:before, .c-title01.jp:after {
  /* top: 16px; */
}
.c-title01.jp:before {
  margin: 5px 20px 0 0;
}
.c-title01.jp:after {
  margin: 5px 0 0 20px;
}
.c-title01.jp h2 {
  font-size: 24px;
  line-height: 1.3;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .c-title01.jp {
    top: -13px;
  }
  .c-title01.jp:before {
    margin: -2px 15px 0 0;
  }
  .c-title01.jp:after {
    margin: -2px 0 0 15px;
  }
  .c-title01.jp:before, .c-title01.jp:after {
    /* top: 13px; */
  }
  .c-title01.jp h2 {
    font-size: 2.2rem;
  }
}


.c-text01 span {
  color: #97A797;
  font-size: 13px;
  font-family: "circe", sans-serif;
}
.c-text01 h3 {
  color: #484848;
  font-size: 28px;
  margin-top: 3px;
}
.c-text01 p {
  font-size: 16px;
  line-height: 1.7;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .c-text01 h3 {
    font-size: 2.1rem;
  }
  .c-text01 p {
    font-size: 1.4rem;
  }
}

.c-title02 {
  text-align: center;
  margin-bottom: 42px;
}
.c-title02 p {
  color: #484848;
  margin-bottom: 3px;
  font-family: "circe", sans-serif;
}
.c-title02 h2 {
  color: #97A797;
  font-size: 28px;
}
@media screen and (max-width: 767px) {
  .c-title02 {
    margin-bottom: 36px;
  }
  .c-title02 h2 {
    font-size: 2.6rem;
  }
}

/*------------------------------------------------------------
c-tabs
------------------------------------------------------------*/
.c-tabs {
  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;
}
.c-tabs li {
  margin-right: 10px;
  cursor: pointer;
}
.c-tabs a {
  padding: 3px 25px;
  text-align: center;
  border-radius: 60px;
}
@media screen and (max-width: 767px) {
  .c-tabs li {
    margin-top: 10px;
  }
}

/*------------------------------------------------------------
c-btn
------------------------------------------------------------*/
.c-btn01 {
  z-index: 2;
  color: #325F32;
  padding: 6px;
  display: block;
  border-radius: 23px;
  margin-top: 30px;
  max-width: 205px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all .3s;
  border: 1px solid #81A081;
  font-family: "circe", sans-serif;
}
/* .c-btn01:before {
  content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 23px;
    color: #fff;
    background: #81A081;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.c-btn01:hover:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
} */

.c-btn01:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #81A081;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
a.c-btn01:hover:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}
a.c-btn01:hover {
  color: #fff;
  background-color: #81A081;
}

@media screen and (max-width: 767px) {
  .c-btn01 {
    margin: 28px auto 0;
  }
}

/*------------------------------------------------------------
c-list
------------------------------------------------------------*/
.c-list01 {
  font-family: 'Heisei Kaku Gothic Std', sans-serif;
}
.c-list01 a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  padding: 8px 28px;
  margin-top: 12px;
  border-radius: 21px;
}
@media screen and (max-width: 767px) {
  .c-list01 a {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.c-list01__cat {
  text-align: center;
  min-width: 100px;
  font-size: 9px;
  padding: 1px;
  display: inline-block;
}
.c-list01__date + .c-list01__cat {
  margin-left: 2%;
}
.c-list01__cat.news {
  color: #C91D7A;
  border: 1px solid #C91D7A;
}
.c-list01__cat.press {
  color: #1D46C9;
  border: 1px solid #1D46C9;
}
.c-list01__cat.media {
  color: #108D3B;
  border: 1px solid #108D3B;
}
.c-list01__text {
  margin-left: 2%;
}
@media screen and (min-width: 768px) {
  .c-list01__text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media screen and (max-width: 767px) {
  .c-list01__date + .c-list01__cat {
    margin-left: 10px;
  }
  .c-list01__text {
    margin: 15px 0 0;
  }
}

/*------------------------------------------------------------
c-table
------------------------------------------------------------*/
.c-table01 {
  font-size: 16px;
}
.c-table01 dl {
  display: flex;
  padding: 22px 5%;
  line-height: 1.6;
  border-radius: 20px;
  background-color: #E4EBE4;
}
.c-table01.bg1 dl {
  background-color: #EFF4EF;
}
.c-table01 dl + dl {
  margin-top: 10px;
}
.c-table01 dt {
  min-width: 24%;
  color: #97A797;
  font-weight: 500;
}
.c-table01 ul {
  list-style: decimal;
  margin-left: 1em;
  text-indent: 5px;
}
.c-table01 ul li::marker {
  color: #97A797;
}
.c-table01__note {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .c-table01 {
    font-size: 1.4rem;
  }
  .c-table01 dl {
    display: block;
    line-height: 1.5;
    padding: 16px 5%;
  }
  .c-table01 dt {
    margin-bottom: 5px;
  }
  .c-table01__note {
    margin-top: 25px;
  }
}

/*------------------------------------------------------------
  c-pagination
  ------------------------------------------------------------*/
.c-pagination {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 70px;
}

.c-pagination a,
.c-pagination span {
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: block;
}

.c-pagination a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.c-pagination a:hover {
  filter: alpha(opacity=50);
  opacity: 0.5;
}

.c-pagination span.current {
  background-color: #97A797;
}

.c-pagination span.dots {
  border: none;
  min-width: auto;
}

.c-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 59px;
  height: 59px;
  margin: 0 8px;
  color: #fff;
  font-size: 33px;
  border-radius: 50%;
  font-family: "circe", sans-serif;
  background-color: #CED8CE;
}
.c-pagination .next.page-numbers,
.c-pagination .prev.page-numbers {
  color: #97A797;
  width: 118px;
  font-size: 24px;
  font-weight: 500;
  border-radius: 10px;
}
.c-pagination .prev.page-numbers {
  margin-right: 4%;
  margin-left: 0;
}
.c-pagination .prev.page-numbers img {
  margin-right: 5px;
}
.c-pagination .next.page-numbers {
  margin-left: 4%;
  margin-right: 0;
}
.c-pagination .next.page-numbers img {
  margin-left: 5px;
}

@media screen and (max-width: 767px) {
  .c-pagination {
    margin-top: 50px;
  }
  .c-pagination .page-numbers {
    min-width: 36px !important;
    height: 36px !important;
    margin: 0 4px !important;
    font-size: 20px !important;
  }
  .c-pagination .next.page-numbers,
  .c-pagination .prev.page-numbers {
    width: 86px;
    font-size: 1.8rem;
  }
}


/*------------------------------------------------------------
	s-common
------------------------------------------------------------*/
/* section-business
------------------------------------------------------------*/
.s-business .details {
  max-width: 850px;
  margin: 0 auto;
  padding: 70px 0;
}
.s-business__logo {
  text-align: center;
  margin-bottom: 60px;
}
.s-business .f-right {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background-color: #8CA28C;
  transition: all .5s;
}
.s-business .f-right h3 {
  font-size: 31px;
  text-align: center;
  transition: all .5s;
  font-family: "Kyokasho";
}
.s-business .f-right:hover {
  color: #2F2F2F;
  background-color: #fff;
  border: 1px solid #8CA28C;
}

@media screen and (max-width: 767px) {
  .s-business__logo {
    margin-bottom: 50px;
  }
  .s-business .f-right {
    margin-top: 42px;
    padding: 35px 0;
  }
}

/* section-contact
------------------------------------------------------------*/
.s-contact .details {
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 225px;
  text-align: center;
  max-width: 850px;
  border-radius: 30px;
  margin: 0 auto -112px;
  position: relative;
  overflow: hidden;
  background: url(../image/common/contact-bg.jpg);
}
.s-contact .details:after {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 30px;
  position: absolute;
  mix-blend-mode: multiply;
  background-color: rgba(77,77,77,0.79);
}
.s-contact__ttl {
  color: #fff;
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 25px;
  font-family: "circe", sans-serif;
}
.s-contact__box {
  font-weight: 600;
  align-items: center;
  position: relative;
}
.s-contact__box:after {
  content: "";
  left: 50%;
  width: 1px;
  height: 100%;
  position: absolute;
  border-left: 1px solid #fff;
}
.s-contact__tel a {
  color: #fff;
  font-size: 42px;
  font-family: "circe", sans-serif;
}
.s-contact__tel img {
  margin-right: 15px;
  vertical-align: -2px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.s-contact__tel a:hover img {
  webkit-transform: scale(1.3) rotate(12deg);
    transform: scale(1.3) rotate(12deg);
}
.s-contact__mail a {
  display: block;
  padding: 15px;
  max-width: 320px;
  margin: 0 auto;
  text-align: center;
  border-radius: 27px;
  background-color: #fff;
}
.s-contact__mail a:hover {
  color: #fff;
  opacity: 1;
  background: #81A081;
}
.s-contact__mail a img {
  margin-right: 10px;
  vertical-align: -6px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.s-contact__mail a:hover img {
  -webkit-animation-name: hvr-icon-pulse-shrink;
  animation-name: hvr-icon-pulse-shrink;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}
@keyframes hvr-icon-pulse-shrink {
  100% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}
@media screen and (max-width: 1200px) and (min-width: 768px) {
  .c-header .g-nav-sublink a {
    font-size: 1.5vw;
  }
  .s-contact__tel a {
    font-size: 3.5vw;
  }
}
@media screen and (max-width: 1200px) and (min-width: 768px) {

}
@media screen and (max-width: 767px) {
  .s-contact .details {
    height: 310px;
    width: calc(14% + 86%);
    border-radius: 0;
  }
  .s-contact .details:after {
    border-radius: 0;
  }
  .s-contact__box .f-right {
    margin-top: 15px;
  }
  .s-contact__box:after {
    content: none;
  }
}


/* section-concept
------------------------------------------------------------*/
.s-concept {
  /* padding-bottom: 20px; */
  background-color: #EFF4EF;
}
.s-concept__descript {
  padding: 50px 50px 0 50px;
}
.s-concept .s-descript__inner {
  height: 33vw;
  max-height: 336px;
  padding: 1px;
  position: relative;
  border-radius: 30px;
}
.s-concept .s-descript__inner:after {
  content: "";
  left: 0;
  right: 0;
  bottom: -4px;
  height: 115px;
  position: absolute;
  background: url(../image/concept/descript-img.png) center no-repeat;
}
.s-concept__descript h3 {
  z-index: 1;
  position: relative;
  text-align: center;
  margin-top: -88px;
}
.s-concept__descript h3 span {
  color: #fff;
  font-size: 26px;
  margin: 0 6px;
  padding: 15px 5px 10px 2px;
  background-color: #000;
  letter-spacing: 6px;
  vertical-align: top;
  -webkit-writing-mode: tb-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: tb-lr;
  -webkit-writing-mode: vertical-lr;
  writing-mode: vertical-lr;
  font-family: "circe", sans-serif;
}
@media screen and (max-width: 767px) {
  .s-concept__descript {
    padding: 20px 20px 0 20px;
  }
  .s-concept .s-descript__inner {
    height: 90vw;
  }
  .s-concept__descript h3 {
    margin-top: -21px;
  }
  .s-concept__descript h3 span {
    font-size: 2rem;
    margin: 0 4px;
  }
}

/* section-about
------------------------------------------------------------*/
.s-concept__about {
  position: relative;
  margin-top: 130px;
  background-color: #E4EBE4;
}
.s-concept__about .details {
  min-height: 450px;
  padding-bottom: 90px;
}
.s-concept__about--ttl {
  mix-blend-mode: overlay;
}
.s-concept__about--ttl, .s-concept__about--txt {
  z-index: 1;
  max-width: 400px;
}
.s-concept__about .c-title01 {
  display: block;
  text-align: left;
  position: relative;
}
.s-concept__about .c-title01 h2 {
  color: #000;
}
.s-concept__about .c-title01:before, .s-concept__about .c-title01:after {
  content: none;
}
.s-concept__about:before {
  content: "";
  width: 56%;
  min-height: 450px;
  top: -73px;
  position: absolute;
  background-size: cover !important;
}
.s-concept__about:nth-child(odd):before {
  right: 0;
  border-top-left-radius: 36px;
  border-bottom-left-radius: 36px;
}
.s-concept__about:nth-child(even):before {
  left: 0;
  border-top-right-radius: 36px;
  border-bottom-right-radius: 36px;
}
.s-concept__about:nth-child(even) .s-concept__about--txt,
.s-concept__about:nth-child(even) .s-concept__about--ttl  {
  margin-left: auto;
}

@media screen and (max-width: 1024px) {
  .s-concept__about:before {
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .s-concept__about {
    margin-top: 50px;
  }
  .s-concept__about .details {
    min-height: auto;
    padding-bottom: 50px;
  }
  .s-concept__about:before {
    width: 100%;
    min-height: 60vw;
    display: block;
    position: unset;
    border-radius: 0 !important;
  }
  .s-concept__about--ttl, .s-concept__about--txt {
    max-width: 100%;
  }
}

/* section-map
------------------------------------------------------------*/
.s-map__inner {
  position: relative;
}
.s-map__label {
  left: 0;
  right: 0;
  top: -28px;
  z-index: 1;
  position: absolute;
  padding: 18px;
  font-size: 16px;
  text-align: center;
  border-radius: 28px;
  background-color: #E4EBE4;

}
.s-map__label span {
  left: 12px;
  top: 50%;
  color: #fff;
  position: absolute;
  padding: 5px 30px;
  border-radius: 28px;
  background-color: #A6BAA6;
  transform: translate(0, -50%);
}
.s-map__frame {
  position: relative;
  padding-top: 39%;
}
@media screen and (max-width: 895px) and (min-width: 767px) {
  .s-map__label h2 {
    margin-left: 12vw;
  }
}
@media screen and (max-width: 767px) {
  .s-map__label {
    top: 0%;
    transform: translate(0, -50%);
    font-size: 1.4rem;
  }
  .s-map__label h2 {
    margin-top: 8px;
  }
  .s-map__label span {
    left: 50%;
    top: 0%;
    transform: translate(-50%, -50%);
  }
  .s-map__frame {
    padding-top: 70%;
  }
}

/* .s-aboutus
------------------------------------------------------------*/
.s-aboutus {
  position: relative;
}
.s-aboutus .details {
  min-height: 510px;
  align-items: center;
}
.s-aboutus__txt {
  padding: 5% 5% 5% 0;
  max-width: 568px;
}
.s-aboutus__txt p {
  font-size: 16px;
  line-height: 1.8;
}
.s-aboutus__txt p + p {
  padding-top: 28px;
}
.s-aboutus__txt--ctt {
  z-index: 2;
  font-size: 18px;
  padding: 13px 0;
  display: block;
  max-width: 322px;
  margin: 36px auto 0;
  font-weight: 600;
  overflow: hidden;
  text-align: center;
  position: relative;
  transition: all .3s;
  border-radius: 27px;
  background-color: #fff;
}
.s-aboutus__txt--ctt:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #81A081;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.s-aboutus__txt--ctt:hover:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}
.s-aboutus__txt--ctt:hover {
  color: #fff;
  background-color: #81A081;
}
.s-aboutus__txt--home {
  display: block;
  margin-top: 40px;
  text-align: center;
}
.s-aboutus:before {
  content: "";
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  position: absolute;
  background-size: cover !important;
}

@media screen and (max-width: 767px) {
  .s-aboutus .details {
    min-height: auto;
  }
  .s-aboutus__txt {
    padding: 30px 0 40px;
    max-width: 100%;
  }
  .s-aboutus__txt p {
    font-size: 1.4rem;
  }
  .s-aboutus__txt p + p {
    padding-top: 23px;
  }
  .s-aboutus__txt--ctt {
    font-size: 1.5rem;
    padding: 8px 0;
    max-width: 263px;
  }
  .s-aboutus__txt--home img {
    width: 80%;
    max-width: 340px;
  }
  .s-aboutus:before {
    width: 100%;
    height: 60vw;
    display: block;
    position: unset;
    border-radius: 0 !important;
  }
}

/* section-single
------------------------------------------------------------*/
.js .slide-single > div:nth-child(1n+2) { display: none }
.js .slide-single.slick-initialized > div:nth-child(1n+2) { display: block }

.s-single__title {
  color: #97A797;
  padding: 18px 0;
  position: relative;
  border-top: 1px solid #97A797;
  border-bottom: 1px solid #97A797;
}
.s-single__title:after {
  content: "";
  width: 1px;
  height: 100%;
  top: 0;
  left: calc(100% - 280px);
  position: absolute;
  background-color: #97A797;
}
.s-single__title h2 {
  font-size: 28px;
}
.s-single__title p {
  width: 280px;
  font-size: 16px;
  text-align: right;
  padding-right: 10px;
}
.s-single__title p span {
  font-size: 26px;
}
.s-single__item {
  margin-top: 40px;
}
.s-single__item .f-right {
  margin-left: 3%;
}
.s-single__img--pic {
  border-radius: 10px;
  overflow: hidden;
}
.s-single .slide-single .s-single__img--pic {
  height: 420px;
  background-size: contain !important;
}
.s-single .slide-nav .slick-track {
  width: 100% !important;
  display: flex;
  flex-wrap: wrap;
}
.s-single .slide-nav .s-single__img--box {
  width: calc((100% - 8%) / 3) !important;
  cursor: pointer;
  margin-top: 4%;
}
.s-single .slide-nav .s-single__img--box:not(:nth-child(3n)) {
  margin-right: 4%;
}
.s-single .slide-nav .s-single__img--box:nth-child(-n+3) {
  margin-top: 0;
}
.s-single .slide-nav .s-single__img--pic {
  border-radius: 10px;
}
.s-single .slide-nav .s-single__img--desc {
  font-size: 13px;
  margin-top: 5px;
}
.s-single .slide-nav .s-single__img--box.is-active {
}

@media screen and (max-width: 767px) {
  .s-single__title {
    padding: 14px 0;
  }
  .s-single__title:after {
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
  }
  .s-single__title h2 {
    font-size: 2.4rem;
  }
  .s-single__title p {
    width: 100%;
    text-align: left;
    margin-top: 25px;
  }
  .s-single__title p span {
    font-size: 2.2rem;
  }
  .s-single__item .f-right {
    margin: 4% 0 0;
  }
  .s-single .slide-single .s-single__img--pic {
    height: 65vw;
  }
  .s-single .slide-nav .s-single__img--box {
    width: calc((100% - 6%) / 3) !important;
    margin-top: 3%;
  }
  .s-single .slide-nav .s-single__img--box:not(:nth-child(3n)) {
    margin-right: 3%;
  }
  
}


/*------------------------------------------------------------
p-top
------------------------------------------------------------*/
#main-slider {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

#main-slider .slide {
  overflow: hidden;
  position: relative;
  opacity: 1 !important;
}

#main-slider .slide span {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: transparent no-repeat center center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.2, 1.2);
  transition: 0s;
}

#main-slider .slide.slick-start span {
  opacity: 1;
  transform: scale(1.2, 1.2);
  transition: ease 0s;
}

#main-slider .slide.slick-active span {
  opacity: 1;
  transform: scale(1.2, 1.2);
  transition: ease 6s;
}

#main-slider .slide.slick-continue span {
  opacity: 0;
  transform: scale(1, 1);
  transition: ease 6s;
}

.visual-top,
#main-slider .slide {
  height: 85vh;
  position: relative;
}
.visual-top::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(36, 87, 185, 0.25); /* RGB(36,87,185)の25%透明度 */
    pointer-events: none; /* クリックを通過させる */
}
@media screen and (max-width: 767px) {
  .visual-top,
  #main-slider .slide {
    height: 90vh;
  }
}
.visual-top.is_show .visual-top__text {
  -webkit-filter: blur(0);
  filter: blur(0);
  opacity: .999;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}
.visual-top__text {
  top: 48%;
  left: 0;
  right: 0;
  z-index: 1;
  color: #fff;
  text-align: center;
  margin: 0 auto;
  position: absolute;
  transform: translate(0, -50%);

  -webkit-filter: blur(5px);
  filter: blur(5px);
  opacity: 0;
  -webkit-transform: translate3d(0, 50px, 0);
  transform: translate3d(0, 50px, 0);
  -webkit-transition: opacity 1.5s, -webkit-filter 1.5s, -webkit-transform 1.5s;
  transition: opacity 1.5s, -webkit-filter 1.5s, -webkit-transform 1.5s;
  transition: filter 1.5s, opacity 1.5s, transform 1.5s;
  transition: filter 1.5s, opacity 1.5s, transform 1.5s, -webkit-filter 1.5s, -webkit-transform 1.5s;
}

@media screen and (max-width: 767px) {
  .visual-top__text {
  }
}
.visual-top__text h1 {
  font-size: 31px;
  margin-top: 3%;
  font-family: "Kyokasho";
}
.visual-top__text p {
  margin-top: 15px;
  font-family: "circe", sans-serif;
}
.visual-top__text strong {
	display: inline-block;
	font-size: 20px;
	margin-top: 30px;
	padding: 8px 30px;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  .visual-top__text img {
    max-width: 188px;
  }
  .visual-top__text h1 {
    font-size: 2rem;
    margin-top: 50px;
  }
  .visual-top__text p {
    margin-top: 8px;
  }
}
.visual-top__news {
  z-index: 1;
  left: 30px;
  bottom: 32px;
  position: absolute;
  max-width: 585px;
  font-weight: bold;
  font-family: "circe", sans-serif;
}
.visual-top__news h2 {
  color: #fff;
  font-weight: bold;
  margin: 0 0 10px 15px;
}
.visual-top__news ul {
  padding: 10px 20px 6px;
  border-radius: 21px;
  position: relative;
  border: 1px solid #fff;
  background-color: rgba(255,255,255,0.53);
}
.visual-top__news ul:before {
  content: "";
  width: 11px;
  height: 11px;
  top: 50%;
  left: 10px;
  position: absolute;
  transform: translate(0, -50%);
  background: url(../image/top/ic-right.png) center no-repeat;
  background-size: cover;
}
.visual-top__news ul a {
  font-size: 13px;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
.visual-top__news ul .news-date {
  font-size: 15px;
  margin: 0 10px;
}
.visual-top__news ul .news-txt {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media screen and (max-width: 767px) {
  .visual-top__news  {
    left: 0;
    right: 0;
    width: 86%;
    margin: 0 auto;
  }
  .visual-top__news h2 {
    margin: 0 0 6px 12px;
  }
  .visual-top__news ul {
    padding: 6px 15px 4px;
  }
  .visual-top__news ul a {
    font-size: 1.1rem;
  }
  .visual-top__news ul .news-date {
    font-size: 1.3rem;
  }
  .visual-top__news ul img {
    max-width: 10px;
  }
}


/* .p-top section-about
------------------------------------------------------------*/
.p-top .s-about {
  position: relative;
  background-color: #EFF4EF;
}
.p-top .s-about .details {
  position: relative;
  padding-bottom: 100px;
}
.p-top .s-about .c-title01 {
  top: 9%;
  text-align: left;
  justify-content: flex-start;
}
.p-top .s-about .c-title01:before, .p-top .s-about .c-title01:after {
  content: none;
}
.p-top .s-about:after {
  content: "";
  width: 45%;
  height: 63%;
  left: 0;
  bottom: 100px;
  position: absolute;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  background: url(../image/top/about-img01.jpg) center no-repeat;
  background-size: cover;
}
.p-top .s-about__img {
  width: 86%;
  height: 22vw;
  max-height: 310px;
  margin-top: -9vw;
  margin-left: auto;
  border-radius: 30px;
  background: url(../image/top/about-img02.jpg);
}
.p-top .s-about__txt {
  margin-top: 68px;
}
@media screen and (max-width: 767px) {
  .p-top .s-about {
    overflow: hidden;
  }
  .p-top .s-about .details {
    padding-bottom: 58px;
  }
  .p-top .s-about .c-title01 {
    top: 22px;
  }
  .p-top .s-about .c-title01 h2 {
    font-size: 2.5rem;
  }
  .p-top .s-about:after {
    width: 66%;
    height: 40vw;
    top: 60px;
  }
  .p-top .s-about__img {
    width: 50vw;
    height: 35vw;
    margin-top: calc(60px + (40vw / 2));
    margin-right: calc((83% - 100%));
  }
  .p-top .s-about__txt {
    margin-top: -16px;
  }
}


/* .p-top section-service
------------------------------------------------------------*/
.p-top .s-service {
  position: relative;
}
.p-top .s-service__top {
  background-color: #E4EBE4;
}
.p-top .s-service__top .details {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}
.s-service__top .slick-prev, .s-service__top .slick-next {
  top: 50%;
  transform: translate(0, -50%);
}
.s-service__top .slick-prev {
  left: -30px;
}
.s-service__top .slick-next {
  right: -30px;
}
@media screen and (max-width: 1299px) {
  .s-service__top .slick-prev {
    left: 8px;
  }
  .s-service__top .slick-next {
    right: 8px;
  }
}
@media screen and (max-width: 767px) {
  .s-service__top .slick-prev, .s-service__top .slick-next {
    top: auto;
    bottom: 152px;
  }
}
.p-top .s-service__item {
  display: flex;
  padding: 60px;
}
.p-top .s-service__label {
  color: #97A797;
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  letter-spacing: -0.6px;
  font-family: "circe", sans-serif;
}
.p-top .s-service__label:before, .p-top .s-service__label:after {
  /* content: ""; */
  height: 5px;
  bottom: -15px;
  position: absolute;
  border: 1px solid #CDD1CD;
}
.p-top .s-service__label:before {
  left: 0;
  width: 42%;
  background-color: #82AD82;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.p-top .s-service__label:after {
  left: 42%;
  width: 45%;
  background-color: #fff;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.p-top .s-service__img {
  height: 30vw;
  max-height: 310px;
  position: relative;
  border-radius: 30px;
  box-shadow: 2px 6px 20px 5px rgba(51, 77, 66, 0.16);
}
.p-top .s-service__img:after {
  /* content: ""; */
  top: -52px;
  right: -58px;
  width: 142px;
  height: 142px;
  position: absolute;
  background: url(../image/top/service-logo.png) center no-repeat;
  background-size: cover;
}
.p-top .s-service__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: -52px;
  right: -58px;
  min-width: 142px;
  min-height: 142px;
}
.p-top .s-service__badge h5 {
  color: #E1EDE1;
  font-size: 62px;
  line-height: 1;
  font-weight: 600;
  font-family: "circe", sans-serif;
}
.p-top .s-service__badge h5.small {
  font-size: 52px;
  letter-spacing: -4px;
}
.p-top .s-service__badge p {
  color: #325F32;
  font-size: 18px;
  margin-top: -13px;
  font-weight: 500;
}
@media screen and (max-width: 1000px) and (min-width: 768px) {
  .p-top .s-service__badge {
    zoom: 80%;
  }
}
@media screen and (max-width: 767px) {
  .p-top .s-service__badge {
    top: -33px;
    right: -23px;
    min-width: 86px;
    min-height: 86px;
  }
  .p-top .s-service__badge h5 {
    font-size: 37px;
  }
  .p-top .s-service__badge h5.small {
    font-size: 30px;
    letter-spacing: -2px;
  }
  .p-top .s-service__badge p {
    font-size: 11px;
    margin-top: -8px;
  }
}

.js .slider-single > div:nth-child(1n+2) { display: none }

.js .slider-single.slick-initialized > div:nth-child(1n+2) { display: block }

/* .p-top .s-service__list--box.slick-slide.is-active, .p-top .s-gallery__list--box.slick-slide.is-active, */
.p-top .s-service__list--box.slick-slide.slick-current, .p-top .s-gallery__list--box.slick-slide.slick-current {
  opacity: 1;
}
/* .p-top .s-service__list .slick-track {
  display: flex;
  flex-wrap: wrap;
  width: 100% !important;
  transform: none !important;
} */
.s-service__progress {
  width: 242px;
  height: 5px;
  top: 115px;
  left: 60px;
  z-index: 1;
  position: absolute;
  border-radius: 5px;
  background-color: #fff;
  border: 1px solid #CDD1CD;
}
.s-service__progress--line {
  height: 100%;
  display: block !important;
	background-color: #82AD82;
}
@media screen and (max-width: 767px) {
  .s-service__progress {
    top: 146px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}


.p-top .service-swiper {
  overflow: hidden;
}
.p-top .service-swiper.swiper-free-mode > .swiper-wrapper {
	transition-timing-function: linear;
}
.p-top .service-swiper .swiper-slide-active {
  opacity: 1;
  mix-blend-mode: normal;
}
.p-top .s-service__list {
  gap: 1px;
}
.p-top .s-service__list--box {
  /* opacity: .6; */
  cursor: pointer;
}
.p-top .s-service__list--box + .s-service__list--box {
  border-left: 1px solid #fff;
}
.p-top .s-service__list--box a {
  display: block;
}
.p-top .s-service__list--img {
  width: 100%;
  height: 15vw;
  object-fit: cover;
  object-position: center;
  background-blend-mode: screen;
  mix-blend-mode: screen;
  background-color: #81A081;
}
.p-top .s-service__list--txt {
  color: #fff;
	font-size: 18px;
	text-align: center;
  padding: 20px 0;
  background-color: #81A081;
}
.p-top .s-service__list--box.slick-slide.slick-current .s-service__list--img {
  background-blend-mode: normal;
}
.p-top .s-service__list--box.slick-slide.slick-current .s-service__list--txt {
  background-color: #325F32;
}

@media screen and (max-width: 1000px) and (min-width: 768px) {
  .p-top .s-service__list--txt {
    font-size: 1.7vw;
    padding: 2vw 0;
  }
}
@media screen and (max-width: 1260px) and (min-width: 768px) {
  .p-top .s-service__label {
    font-size: 2.5vw;
  }
}


@media screen and (max-width: 767px) {
  .p-top .s-service__item {
    padding: 50px 30px;
    flex-direction: column-reverse;
  }
  .p-top .s-service__label {
    display: block;
    text-align: center;
    margin: 0 auto 86px;
    font-size: 3.2rem;
    min-height: 83px;
    line-height: 1.1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }
  .p-top .s-service__label:before {
    left: 46%;
  }
  .p-top .s-service__label:after {
    left: 46%;
    width: 50%;
  }
  .p-top .s-service__img {
    height: 53vw;
    margin-bottom: 20px;
  }
  .p-top .s-service__img:after {
    top: -60px;
    right: -50px;
    background-size: 88px;
  }
  .p-top .s-service .c-text01 h3 {
    text-align: center;
  }
  .p-top .s-service .c-text01 p {
    max-width: 265px;
    margin: 12px auto 0;
  }

  .p-top .s-service__list--box {
    width: 50%;
  }
  .p-top .s-service__list--img {
    height: 30vw;
  }
  .p-top .s-service__list--txt {
    font-size: 1.4rem;
    padding: 10px 0;
  }
}


/* .p-top section-pickup
------------------------------------------------------------*/
.p-top .s-pickup {
  padding: 6%;
  margin: 2% 0 0 2%;
  position: relative;
  background-color: #EFF4EF;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}
.p-top .s-pickup:after {
  content: "";
  width: 28vw;
  height: 20vw;
  max-height: 270px;
  right: 0;
  bottom: -105px;
  z-index: 1;
  position: absolute;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  background: url(../image/top/pickup-img02.jpg) center no-repeat;
  background-size: cover;
}
.p-top .s-pickup__img {
  height: 27vw;
  max-height: 372px;
  border-radius: 30px;
  background: url(../image/top/pickup-img01.jpg);
}

@media screen and (max-width: 767px) {
  .p-top .s-pickup {
    padding: 0;
    margin: 28px 25px 0;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
  }
  .p-top .s-pickup:after {
    content: "";
    width: 28vw;
    height: 20vw;
    max-height: 270px;
    right: 0;
    bottom: -105px;
    z-index: 1;
    position: absolute;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    background: url(../image/top/pickup-img02.jpg) center no-repeat;
    background-size: cover;
  }
  .p-top .s-pickup__img {
    height: 60vw;
    border-radius: 30px;
    margin-bottom: 20px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .p-top .s-pickup .f-right {
    padding: 20px 23px 30px;
  }
  .p-top .s-pickup:after {
    content: none;
  }
}


/* .p-top section-news
------------------------------------------------------------*/
.p-top .s-news .details {
  padding: 100px 0;
}
.p-top .s-news .c-text01 {
  text-align: center;
}
.p-top .s-news .c-tabs {
  margin-top: 60px;
}
.p-top .s-news .c-tabs a {
  color: #3B3B3B;
  border: 1px solid #3B3B3B;
}
.p-top .s-news .c-tabs a:active, .p-top .s-news .c-tabs a:hover {
  color: #fff;
  background: #1C2D52;
}
.p-top .s-news .c-tabs li.current a {
  color: #fff;
  background: #1C2D52;
}
.p-top .s-news .tab-content {
  display: none;
  margin-top: 30px;
}
.p-top .s-news .tab-content.current {
  display: inherit;
}
.p-top .s-news .c-list01 a {
  background-color: #EFF4EF;
}
.p-top .s-news .c-list01 a:hover {
  color: #fff;
  background-color: #81A081;
}
.p-top .s-news .c-btn01 {
  margin: 40px auto 0;
}

@media screen and (max-width: 767px) {
  .p-top .s-news .details {
    padding: 50px 0;
  }
  .p-top .s-news .c-tabs {
    margin-top: 26px;
  }
  .p-top .s-news .tab-content {
    margin-top: 25px;
  }
}

/* .p-top section-gallery
------------------------------------------------------------*/
.p-top .s-gallery {
  position: relative;
  /* background-color: #E4EBE4; */
}
.p-top .s-gallery__top {
  position: relative;
}
.p-top .s-gallery__top:before {
  content: "";
  top: 0;
  width: 100%;
  position: absolute;
  height: calc((37vw / 2) + 70px);
  background: url(../image/top/gallery-bg.png) center no-repeat;
  background-size: cover;
}
.p-top .s-gallery__top:after {
  content: "";
  bottom: 0;
  width: 100%;
  position: absolute;
  height: calc((37vw / 2) + 50px);
  background: #E4EBE4;
}
.p-top .s-gallery__top .details {
  z-index: 1;
  position: relative;
  padding: 70px 0 50px;
}
.p-top .s-gallery__top .slider-single .slick-list {
  width: 80%;
  max-width: 850px;
  margin: 0 auto;
}
.p-top .s-gallery__top .slick-prev, .p-top .s-gallery__top .slick-next {
  bottom: 17%;
  
}
.p-top .s-gallery__top .slick-prev {
  left: 0;
}
.p-top .s-gallery__top .slick-next {
  right: 0;
}
.p-top .s-gallery__item {
  position: relative;
}
.p-top .s-gallery__img {
  height: 37vw;
  max-width: 850px;
  max-height: 520px;
  margin: 0 auto;
  position: relative;
  border-radius: 30px;
}
.p-top .s-gallery__txt {
  font-size: 13px;
  padding: 12px 30px 9px;
  background-color: rgba(255, 255, 255, 0.72);
  font-family: "circe", sans-serif;
  left: 0;
  right: 0;
  bottom: 26px;
  width: 80%;
  max-width: 660px;
  margin: 0 auto;
  position: absolute;
  border-radius: 21px;
}
.p-top .s-gallery__bottom {
  padding-bottom: 17px;
  background-color: #EFF4EF;
}

.p-top .gallery-swiper {
  overflow: hidden;
  padding-bottom: 20px;
}
.p-top .gallery-swiper.swiper-free-mode > .swiper-wrapper {
	transition-timing-function: linear;
}
.p-top .gallery-swiper .swiper-slide-active {
  opacity: 1;
}
.p-top .s-gallery__list--box {
	/* width: fit-content; */
  /* width: auto; */
  opacity: .6;
  cursor: pointer;
}
.p-top .s-gallery__list--img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}

@media screen and (max-width: 767px) {
  .p-top .s-gallery {
    margin-top: 52px;
  }
  .p-top .s-gallery__top:before {
    height: calc((56vw / 2) + 38px + 39px + 12px);
  }
  .p-top .s-gallery__top:after {
    height: calc((56vw / 2) + 38px + 39px + 12px);
  }
  .p-top .s-gallery__top .details {
    padding: 38px 0;
  }
  .p-top .s-gallery__img {
    height: 56vw;
  }
  .p-top .s-gallery__top .slider-single .slick-list {
    width: 100%;
  }
  .p-top .s-gallery__top .slick-prev, .p-top .s-gallery__top .slick-next {
    top: calc(50% - 24px);
    bottom: auto;
  }
  .p-top .s-gallery__top .slick-prev {
    left: -17px;
  }
  .p-top .s-gallery__top .slick-next {
    right: -17px;
  }
  .p-top .s-gallery__txt {
    width: 100%;
    position: unset;
    font-size: 1.2rem;
    margin-top: 12px;
    text-align: center;
  }
  .p-top .s-gallery__bottom {
    padding-bottom: 12px;
  }

  .p-top .gallery-swiper {
    padding-bottom: 8px;
  }
  .p-top .s-gallery__list--box {
    width: 38%;
  }
}

@media screen and (max-width: 403px) {
  .p-top .s-gallery {
    margin-top: 52px;
  }
  .p-top .s-gallery__top:before {
    height: calc((56vw / 2) + 38px + 57px + 12px);
  }
  .p-top .s-gallery__top:after {
    height: calc((56vw / 2) + 38px + 57px + 12px);
  }
}


/*------------------------------------------------------------
p-concept
------------------------------------------------------------*/
.p-concept .s-descript__inner {
  background: url(../image/concept/descript-bg.jpg);
}

.p-concept .s-concept__details {
  margin-top: 50px;
}
.p-concept .s-details__box1 {
  width: 30%;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  background: url(../image/concept/details-img01.jpg);
}
.p-concept .s-details__box2 {
  width: 22%;
}
.p-concept .s-details__box2 ul {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
.p-concept .s-details__box2 ul li {
  height: 100%;
  border-radius: 30px;
}
.p-concept .s-details__box2--img1 {
  margin-bottom: calc((100% - 22% - 40% - 30%)* 2);
  background: url(../image/concept/details-img02.jpg);
}
.p-concept .s-details__box2--img2 {
  background: url(../image/concept/details-img03.jpg);
}
.p-concept .s-details__box3 {
  width: 40%;
  padding: 3%;
  font-size: 16px;
  line-height: 1.7;
  background-color: #E4EBE4;
  border-top-left-radius: 35px;
  border-bottom-left-radius: 35px;
}
.p-concept .s-details__box3--txt {
  max-width: 410px;
}
.p-concept .s-details__box3 p + p {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .p-concept .s-concept__details {
    margin-top: 20px;
  }
  .p-concept .s-details__box1, .p-concept .s-details__box2 {
    width: 100%;
  }
  .p-concept .s-details__box1 {
    height: 70vw;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .p-concept .s-details__box2 ul {
    flex-direction: row;
    margin: 4%;
    width: auto;;
  }
  .p-concept .s-details__box2 ul li {
    width: 48%;
    height: 45vw;
    margin-bottom: 0;
  }
  .p-concept .s-details__box3 {
    width: auto;
    margin: 0 4%;
    padding: 20px;
    font-size: 1.4rem;
    border-radius: 35px;
  }
  .p-concept .s-details__box3--txt {
    max-width: 100%;
  }
  .p-concept .s-details__box3 p + p {
    margin-top: 20px;
  }
}

/* .p-concept section-about
------------------------------------------------------------*/
.p-concept .s-concept__about .c-title01 {
  top: -66px;
}
.p-concept .s-concept__about:before {
  background: url(../image/concept/about-img.jpg) center no-repeat;
}
@media screen and (max-width: 767px) {
  .p-concept .s-concept__about .c-title01 {
    top: -37px;
  }
}


/*------------------------------------------------------------
p-about
------------------------------------------------------------*/
.visual-about .c-mainvisual__inner {
  background: url(../image/about/mainvisual.jpg);
}
.p-about .s-descript__inner {
  background: url(../image/about/descript-bg.jpg);
}

/* .p-about section-about,  .p-service section-service
------------------------------------------------------------*/
.p-about .s-concept__about .c-title01, .p-service .s-concept__about .c-title01 {
  top: -42px;
}
.p-about .s-concept__about .c-btn01, .p-service .s-concept__about .c-btn01 {
  max-width: 300px;
}
.p-about .s-concept__about.item01:before {
  background: url(../image/about/about-img01.jpg) center no-repeat;
}
.p-about .s-concept__about.item02:before {
  background: url(../image/about/about-img02.jpg) center no-repeat;
}
.p-about .s-concept__about.item03:before {
  background: url(../image/about/about-img03.jpg) center no-repeat;
}
.p-about .s-concept__about.item04:before {
  background: url(../image/about/about-img04.jpg) center no-repeat;
}
@media screen and (max-width: 767px) {
  .p-about .s-concept__about .c-title01, .p-service .s-concept__about .c-title01 {
    top: -27px;
  }
}


/*------------------------------------------------------------
p-company
------------------------------------------------------------*/
.p-company .s-property dl {
  background-color: #EFF4EF;
}

/*------------------------------------------------------------
p-office
------------------------------------------------------------*/
.p-office .c-btn01 {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-office .c-btn01 {
    margin-bottom: 60px;
  }
}

/*------------------------------------------------------------
p-access
------------------------------------------------------------*/
.p-access .s-map__inner {
  margin-top: 80px;
}
.p-access .f-right {
  margin-left: 4%;
}
.p-access .s-access .details {
  padding-bottom: 70px;
}
.p-access .s-access h3 {
  color: #97A797;
  font-size: 20px;
  margin-top: -13px;
  text-align: center;
}
.p-access .s-access__box {
  padding: 0 3% 3%;
  border-radius: 30px;
  background-color: #E4EBE4;
}
.p-access .s-access table {
  font-size: 16px;
  margin-top: 15px;
}
.p-access .s-access table tr {
  position: relative;
}
.p-access .s-access table tr:after {
  content: "";
  width: 100%;
  height: 1px;
  left: 0;
  top: 50%;
  position: absolute;
  transform: translate(0, -50%);
  background-color: #97A797;
}
.p-access .s-access table th, .p-access .s-access table td {
  padding: 10px 0;
}
.p-access .s-access table th {
  color: #97A797;
  text-align: left;
  font-weight: 500;
}
.p-access .s-access table td {
  text-align: right;
}
.p-access .s-access table span {
  z-index: 1;
  position: relative;
  background-color: #E4EBE4;
}
.p-access .s-access table th span {
  padding-right: 10%;
}
.p-access .s-access table td span {
  padding-left: 10%;
}
.p-access .s-access__box--note {
  padding-top: 20px;
}
.p-access .s-access__note {
  text-align: center;
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .p-access .f-right {
    margin: 50px 0 0;
  }
  .p-access .s-access .details {
    padding-bottom: 50px;
  }
  .p-access .s-access__box {
    padding: 0 20px 20px;
  }
  .p-access .s-access table {
    font-size: 1.4rem;
    margin-top: 12px;
  }
  .p-access .s-access table th, .p-access .s-access table td {
    padding: 6px 0;
  }
  .p-access .s-access__box--note {
    padding-top: 10px;
    font-size: 1.3rem;
  }
  .p-access .s-access__note {
    margin-top: 30px;
  }
}

/* p-access section-facilities
------------------------------------------------------------*/
.p-access .s-facilities__label {
  position: relative;
  text-align: center;
  margin-bottom: 45px;
}
.p-access .s-facilities__label:after {
  content: "";
  width: 100%;
  height: 1px;
  top: 55%;
  left: 0;
  position: absolute;
  transform: translate(0, -50%);
  background-color: #97A797;
}
.p-access .s-facilities__label span {
  z-index: 1;
  color: #97A797;
  font-size: 24px;
  padding: 0 20px;
  position: relative;
  background: #E4EBE4;
}
.p-access .s-facilities__img {
  min-height: 426px;
  position: relative;
  border-radius: 30px;
  background: url(../image/access/facilities-img.jpg);
}
.p-access .s-facilities__img p {
  padding: 8px;
  text-align: center;
  border-radius: 22px;
  background-color: #fff;
  position: absolute;
  bottom: 20px;
  left: 4%;
  right: 4%;
  margin: 0 auto;
  max-width: 496px;
}
.p-access .s-facilities__text p {
  font-size: 16px;
}
.p-access .s-facilities__text dl {
  display: flex;
  margin-top: 8px;
  border-radius: 7px;
  background-color: #D9E3D9;
}
.p-access .s-facilities__text dt {
  width: 36%;
  padding: 10px 15px 10px 15px;
  border-right: 1px solid #C0C9C0;
}
.p-access .s-facilities__text dd {
  padding: 10px 15px 10px 5%;
}
.p-access .s-facilities__item + .s-facilities__item {
  margin-top: 20px;
}
.p-access .s-facilities__box + .s-facilities__box {
  margin-top: 78px;
}
.p-access .s-facilities__list {
  max-width: 736px;
  margin: 0 auto;
}
.p-access .s-facilities__list li {
  list-style: disc;
  margin-left: 1em;
  font-size: 16px;
  text-indent: 10px;
  line-height: 1.7;
}
.p-access .s-facilities__list li::marker {
  color: #97A797;
}

@media screen and (max-width: 767px) {
  .p-access .s-facilities__label {
    margin-bottom: 36px;
  }
  .p-access .s-facilities__label span {
    font-size: 1.8rem;
    padding: 0 10px;
  }
  .p-access .s-facilities__img {
    min-height: 65vw;
  }
  .p-access .s-facilities__img p {
    bottom: 10px;
    font-size: 1.2rem;
  }
  .p-access .s-facilities__text p {
    font-size: 1.4rem;
  }
  .p-access .s-facilities__text dl {
    display: block;
  }
  .p-access .s-facilities__text dt {
    width: 100%;
    border-right: 0;
  }
  .p-access .s-facilities__text dd {
    padding: 0 15px 10px 15px;
  }
  .p-access .s-facilities__box + .s-facilities__box {
    margin-top: 60px;
  }
  .p-access .s-facilities__list li {
    font-size: 1.4rem;
    text-indent: 5px;
  }
}


/*------------------------------------------------------------
p-service
------------------------------------------------------------*/
.visual-service .c-mainvisual__inner {
  background: url(../image/service/mainvisual.jpg);
  background-position: center top !important;
}
.p-service .s-descript__inner {
  background: url(../image/service/descript-bg.jpg);
}
.p-service .s-concept__about.item6 .c-title01 {
  top: -70px;
}
@media screen and (max-width: 767px) {
  .p-service .s-concept__about.item6 .c-title01 {
    top: -45px;
  }
}

/*------------------------------------------------------------
p-pension
------------------------------------------------------------*/
.s-list__inner {
  flex-wrap: wrap;
}
.p-pension .s-list__item {
  overflow: hidden;
  border-radius: 30px;
  position: relative;
  background-color: #E4EBE4;
}
.p-pension .s-list__item + .s-list__item {
  margin-top: 33px;
}

.p-pension .s-list__item .slick-list, .p-pension .s-list__item .slick-track {
  height: 100%;
}
.p-pension .s-list__item .slick-dots {
  left: 0;
  right: 0;
  top: auto;
  bottom: 15px;
  transform: none;
} 
.p-pension .s-list__item .slick-dots li {
  display: inline-block;
  margin: 0 10px;
}
.p-pension .s-list__img.hide-dots .slick-dots {
  display: none !important;
}

.p-pension .s-list__item .slide-counter {
  display: none;
  color: #fff;
  right: 52%;
  bottom: 12px;
  z-index: 1;
  font-size: 16px;
  position: absolute;
}


.p-pension .s-list__img {
  overflow: hidden;
}
.p-pension .s-list__img--pic {
  height: 100%;
  min-height: 347px;
  transition: all .5s;
}
.p-pension .s-list__img--pic:after {
  /* content: ""; */
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  transition: all .5s;
  position: absolute;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
.p-pension .s-list__item:hover .s-list__img--pic:after {
  transform: scale(1.1);
}
.p-pension .s-list__txt {
  padding: 3%;
}
.p-pension .s-list__txt h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.p-pension .s-list__txt thead tr {
  position: relative;
}
.p-pension .s-list__txt thead tr:after {
  content: "";
  width: 1px;
  height: 100%;
  left: 50%;
  position: absolute;
  background-color: #97A797;
}
.p-pension .s-list__txt tbody {
  color: #97A797;
}
.p-pension .s-list__txt td {
  padding: 10px 0;
  vertical-align: top;
  border-top: 1px solid #97A797;
}
.p-pension .s-list__txt tbody tr:last-child td {
  padding-bottom: 0;
}
.p-pension .s-list__txt--tel {
  font-size: 18px;
}
.p-pension .s-list__txt--tel img {
  vertical-align: -5px;
  margin-right: 6px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.p-pension .s-list__txt--tel a:hover img {
  -webkit-animation-name: hvr-icon-pulse-shrink;
  animation-name: hvr-icon-pulse-shrink;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}
.p-pension .s-list__txt--link {
  font-size: 17px;
}
.p-pension .s-list__txt--link img {
  vertical-align: -3px;
  margin-right: 9px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.p-pension .s-list__txt--link a:hover img {
  -webkit-animation-name: hvr-icon-wobble-horizontal;
  animation-name: hvr-icon-wobble-horizontal;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
@-webkit-keyframes hvr-icon-wobble-horizontal {
  16.65% {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
  }
  33.3% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }
  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }
  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes hvr-icon-wobble-horizontal {
  16.65% {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
  }
  33.3% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }
  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }
  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.p-pension .s-list__txt--addr {
  font-size: 16px;
}
.p-pension .s-list__txt .c-btn01 {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}
.p-pension .s-list__item.is_hover .s-list__img--pic {
  opacity: 0.8;
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
          transform: scale3d(1.1, 1.1, 1.1);
}

@media screen and (max-width: 767px) {
  .p-pension .s-list__img--pic {
    min-height: 65vw;
  }
  .p-pension .s-list__txt {
    padding: 25px 20px;
  }
  .p-pension .s-list__txt thead tr:after {
    content: none;
  }
  .p-pension .s-list__txt thead td {
    display: block;
  }
  .p-pension .s-list__txt td {
    padding: 8px 0;
  }
}
/* map modal  */
.p-pension__map {
	position: relative;
	display: inline-block;
}
.modal {
	position: absolute;
	z-index: 10;
	background: white;
	padding: 10px;
	display: none;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
	text-align: center;
	border-radius: 11px;
	max-width: 180px;
	pointer-events: auto;
}

.modal::after {
	content: '';
	position: absolute;
	bottom: -13px;
	left: 50%;
	transform: translate3d(-50%, 0, 0);
	width: 0;
	height: 0;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-top: 15px solid #fff;
}
.modal img {
	width: 180px; /* 必要に応じて固定サイズ */
	height: 100px; /* 高さも固定で統一 */
	object-fit: cover; /* 画像を枠に収めつつトリミング */
	display: block;
	margin: 0 auto;
	border-radius: 5px;
}
.modal .modal-title.c-btn01 {
	max-width: unset;
	font-size: 1.2rem;
	margin-top: 10px;
	padding: 4px;
}

/*------------------------------------------------------------
p-pension_single
------------------------------------------------------------*/
/* p-pension section-descript
------------------------------------------------------------*/
.p-pension .s-descript__img {
  overflow: hidden;
  border-radius: 30px;
}
.p-pension .slide-single .s-descript__img--pic {
  height: 397px;
}
.p-pension .slide-nav .slick-list {
  margin: 0 -2px;
}
.p-pension .slide-nav .slick-track {
  width: 100% !important;
  display: flex;
  justify-content: center;
}
.p-pension .slide-nav .s-descript__img--pic {
  width: 126px !important;
  height: 78px;
  margin: 2px 1px;
  opacity: .5;
}
.p-pension .slide-nav .s-descript__img--pic.is-active {
  opacity: 1;
}

.p-pension .s-descript__txt h3 {
  font-size: 28px;
  margin-bottom: 20px;
}
.p-pension .s-descript__txt th {
  width: 18%;
  color: #97A797;
  font-family: "circe", sans-serif;
}
.p-pension .s-descript__txt th, .p-pension .s-descript__txt td {
  padding: 10px 0;
  font-size: 16px;
  text-align: left;
  vertical-align: top;
  border-top: 1px solid #97A797;
}
.p-pension .s-descript__txt td {
  padding-left: 5px;
}
.p-pension .s-descript__txt--addr {
  line-height: 1.5;
}
.p-pension .s-descript__txt--addr a {
  color: #325F32;
  display: block;
  margin: 10px 0 5px;
  padding: 4px 3px 3px;
  max-width: 205px;
  text-align: center;
  border-radius: 23px;
  border: 1px solid #81A081;
  font-family: "circe", sans-serif;
}
.p-pension .s-descript__txt--addr img {
  vertical-align: -2px;
  margin-right: 5px;
}

.p-pension .s-descript__txt--news {
  padding: 6%;
  margin-top: 40px;
  border-radius: 30px;
  background-color: #E4EBE4;
}
.p-pension .s-descript__txt--news h3 {
  font-size: 16px;
  margin-bottom: 8px;
}
.p-pension .s-descript__txt--news p {
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .p-pension .slide-single .s-descript__img--pic {
    height: 55vw;
  }
  .p-pension .slide-nav .slick-track {
    /* flex-wrap: wrap; */
  }
  .p-pension .slide-nav .s-descript__img--pic {
    width: 80px !important;
    height: 48px;
    cursor: pointer;
  }
  
  .p-pension .s-descript__txt {
    margin-top: 30px;
  }
  .p-pension .s-descript__txt h3 {
    font-size: 2.2rem;
    margin-bottom: 17px;
  }
 
  .p-pension .s-descript__txt th, .p-pension .s-descript__txt td {
    font-size: 1.4rem;
  }
  .p-pension .s-descript__txt--addr a {
    max-width: 180px;
  }
}

/* p-pension section-message
------------------------------------------------------------*/
.p-pension .s-message__textarea {
  max-width: 560px;
  line-height: 2;
}

/* p-pension section-features
------------------------------------------------------------*/
.p-pension .s-features__item + .s-features__item {
  margin-top: 50px;
}
.p-pension .s-features .f-left, .p-pension .s-features .f-right {
  width: 48%;
}
.p-pension .s-features__txt {
  padding-top: 3%;
}
.p-pension .s-features__img {
  min-height: 348px;
  border-radius: 30px;
}
.p-pension .s-features__txt h3 {
  font-size: 24px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #707070;
}
.p-pension .s-features__txt h3 {
  line-height: 2;
}
.p-pension .s-features__item:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-pension .s-features .f-left, .p-pension .s-features .f-right {
    width: 100%;
  }
  .p-pension .s-features__txt {
    padding-top: 20px;
  }
  .p-pension .s-features__img {
    min-height: 50vw;
  }
  .p-pension .s-features__txt h3 {
    font-size: 2rem;
    margin-bottom: 18px;
    padding-bottom: 10px;
  }
  .p-pension .s-features__item:nth-child(even) {
    flex-direction: column;
  }
}

/* p-pension section-overview
------------------------------------------------------------*/
.p-pension .s-overview__url a {
  text-decoration: underline;
}
.p-pension .s-overview__map {
  padding-top: 38%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-pension .s-overview__map {
    padding-top: 68%;
  }
}

/*------------------------------------------------------------
p-estate
------------------------------------------------------------*/
.p-estate .s-list__item {
  display: block;
  overflow: hidden;
  position: relative;
  border-radius: 30px;
  padding-bottom: 50px;
  width: calc((100% - 3%) / 2);
  background-color: #E4EBE4;
}
@media screen and (min-width: 768px) {
  .p-estate .s-list__item:not(:nth-child(-n+2)) {
      margin-top: 3%;
  }
}
.p-estate .s-list__item:hover .s-list__img--pic  {
  opacity: 0.8;
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
          transform: scale3d(1.1, 1.1, 1.1);
}
.p-estate .s-list__item:hover {
  background-color: #fff;
}
.p-estate .s-list__img {
  overflow: hidden;
}
.p-estate .s-list__img--pic {
  height: 100%;
  min-height: 347px;
  transition: all .5s;
}
.p-estate .s-list__txt {
  padding: 4%;
}
.p-estate .s-list__txt--inner {
  position: relative;
  align-items: center;
}
.p-estate .s-list__txt--left {
  padding-right: 4%;
  margin-right: 2%;
  border-right: 1px solid #97A797;
}
/* .p-estate .s-list__txt--inner:after {
  content: "";
  width: 1px;
  height: 100%;
  right: 38%;
  top: 0;
  position: absolute;
  background-color: #97A797;
} */
.p-estate .s-list__txt--right {
  width: 38%;
}
.p-estate .s-list__txt--ttl {
  color: #97A797;
  font-size: 20px;
  line-height: 1.2;
}
.p-estate .s-list__txt--cat {
  margin-top: 12px;
}
.p-estate .s-list__txt--cat span {
  color: #fff;
  padding: 2px 10px;
  border-radius: 12px;
  background-color: #97A797;
}
.p-estate .s-list__txt--cat span + span {
  margin-left: 10px;
}
.p-estate .s-list__txt--price {
  color: #97A797;
  font-size: 13px;
}
.p-estate .s-list__txt--num {
  font-size: 16px;
}
.p-estate .s-list__txt--num span {
  font-size: 24px;
  font-weight: 500;
}
.p-estate .s-list__txt .c-btn01 {
  left: 0;
  right: 0;
  bottom: 20px;
  position: absolute;
  max-width: 300px;
  margin: 23px auto 0;
}

@media screen and (max-width: 1399px) {
  .p-estate .s-list__txt--inner {
    display: block;
  }
  .p-estate .s-list__txt--left {
    width: 100%;
    margin: 0 0 18px;
    padding: 0 0 20px;
    border-right: 0;
    border-bottom: 1px solid #97A797;
  }
  .p-estate .s-list__txt--right {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-estate .s-list__item {
    width: 100%;
  }
  .p-estate .s-list__item + .s-list__item {
    margin-top: 40px;
  }
  .p-estate .s-list__img--pic {
    min-height: 50vw;
  }
  .p-estate .s-list__txt {
    padding: 20px;
  }
  /* .p-estate .s-list__txt--inner:after {
    content: "";
    width: 100%;
    height: 1px;
    right: 0;
    top: 53%;
  } */
}

/*------------------------------------------------------------
p-estate_single
------------------------------------------------------------*/

/* p-estate section-info
------------------------------------------------------------*/
.s-form {
}
.s-form dl + dl {
  margin-top: 40px;
}
.s-form dt {
  color: #97A797;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}
.s-form dl input, .s-form dl select, .s-form dl textarea {
  width: 100%;
  padding: 2% 4%;
  font-size: 20px;
  resize: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #97A797;
  border-radius: 20px;
  vertical-align: middle;
  -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
  -webkit-transition: border linear 0.2s, -webkit-box-shadow linear 0.2s;
  transition: border linear 0.2s, -webkit-box-shadow linear 0.2s;
  transition: border linear 0.2s, box-shadow linear 0.2s;
  transition: border linear 0.2s, box-shadow linear 0.2s,
  -webkit-box-shadow linear 0.2s;
  font-family: 'Noto Sans JP', sans-serif;
}
.s-form dl input::placeholder, .s-form dl select::placeholder, .s-form dl textarea::placeholder {
  color: #C1C1C1;
  font-weight: normal;
}
.s-form dl textarea:focus, .s-form dl input:focus, .s-form dl select:focus {
  border-color: rgba(82, 168, 236, 0.8);
  outline: 0;
  outline: thin dotted \9;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(82, 168, 236, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(82, 168, 236, 0.6);
}
.s-form dl input, .s-form dl select {
  height: 80px;
}
.s-form__submit, .s-form__confirm, #wpcf7cpcnf button {
  text-align: center;
}
.s-form__submit input, .s-form__confirm input, #wpcf7cpcnf button {
  color: #325F32;
  width: 200px;
  border: none;
  cursor: pointer;
  font-size: 18px;
  padding: 14px 0;
  margin: 50px 10px 0;
  border-radius: 30px;
  background-color: transparent;
  border: 1px solid #81A081;
  transition: all .5s;
}
.s-form__submit input:hover, .s-form__confirm input:hover, #wpcf7cpcnf button:hover {
  color: #fff;
  background-color: #81A081;
}

.s-form .wpcf7-spinner {
  position: absolute;
}
#wpcf7cpcnf button {
  padding: 17px 0;
}

@media screen and (max-width: 767px) {
  .s-form dl + dl {
    margin-top: 27px;
  }
  .s-form dl input, .s-form dl select, .s-form dl textarea {
    font-size: 1.6rem;
  }
  .s-form dl input, .s-form dl select {
    height: 63px;
  }
  .s-form__submit input, .s-form__confirm input, #wpcf7cpcnf button {
    width: 45%;
    font-size: 1.6rem;
    padding: 10px 0;
    max-width: 170px;
    margin: 37px 5px 0;
  }
  #wpcf7cpcnf button {
    padding: 14px 0;
  }
}


/* テーブル */
#wpcf7cpcnf table th, #wpcf7cpcnf table td {
  padding: 2% 4%;
}
#wpcf7cpcnf table th {
  background-color: #E4EBE4;
  border: 1px solid #97A797;
  text-align: left;
  width: 35%;
  font-size: 16px;
  font-weight: 500;
}
#wpcf7cpcnf table td {
  font-size: 20px;
  border: 1px solid #97A797;
}

/* ボタン */
div.wpcf7cp-btns {
  text-align: center;
}
#wpcf7cpcnf button {
}

@media screen and (max-width: 767px) {
  #wpcf7cpcnf table th, #wpcf7cpcnf table td {
    display: block;
    width: 100% !important;
  }
  #wpcf7cpcnf table th {
    padding: 12px 12px 12px 4%;
  }
  #wpcf7cpcnf table td {
    margin-bottom: 27px;
    font-size: 1.7rem;
	  border-top: 0;
    padding: 15px 15px 15px 4%;
  }
}


/*------------------------------------------------------------
p-land
------------------------------------------------------------*/
.p-land .s-list__btn {
  max-width: 230px;
  margin: 50px auto 0;
}
.p-land .s-list__desc {
  padding-top: 50px;
}
.p-land .s-list__desc p {
  font-size: 16px;
  line-height: 1.7;
}
.p-land .s-list__desc p + p {
  margin-top: 20px;
}
.p-land .s-list__item {
  display: block;
  text-align: center;
}
.p-land .s-list__table {
  margin-top: 60px;
}
.p-land .s-list__table table {
  background-color: #fff;
}
.p-land .s-list__table th {
  width: 25%;
  padding: 25px;
  text-align: left;
  border-bottom: 2px solid #4e660c;
}
.p-land .s-list__table td {
  width: 75%;
  padding: 25px 20px 25px 20px;
  border-bottom: 2px solid #7b8929;
}
.p-land .s-list__table td, .p-land .s-list__table th {
  width: calc(100% / 7);
}
.p-land .s-list__table p {
  font-size: 16px;
  line-height: 1.7;
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .p-land .s-list__desc p {
    font-size: 1.5rem;
  }
  .p-land .s-list__table--box  {
    overflow-y: hidden;
  }
  .p-land .s-list__table td, .p-land .s-list__table th {
    padding: 20px;
    white-space: nowrap;
  }
  .p-land .s-list__table p {
    font-size: 1.4rem;
  }
}


/*------------------------------------------------------------
p-news
------------------------------------------------------------*/
.visual-news .c-mainvisual__inner {
  background: url(../image/news/mainvisual.jpg);
}
.p-news .s-news .c-tabs {
  margin-bottom: 40px;
  justify-content: center;
}
.p-news .s-news .c-tabs a {
  color: #8CA28C;
  border: 1px solid #8CA28C;
}
.p-news .s-news .c-tabs li.active a, .p-news .s-news .c-tabs a:hover {
  color: #fff;
  background: #97A797;
}
.p-news .s-news .c-list01 a {
  background-color: #E4EBE4;
}
.p-news .s-news .c-list01 a:hover {
  color: #fff;
  background-color: #97A797;
}
.p-news .c-pagination .page-numbers {
  min-width: 40px;
  height: 40px;
  margin: 0 6px;
  font-size: 23px;
}
.p-news .c-pagination .next.page-numbers,
.p-news .c-pagination .prev.page-numbers {
  width: 80px;
  font-size: 16px !important;
}
.p-news .c-pagination .next.page-numbers img {
  max-width: 17%;
}
.p-news .c-pagination .prev.page-numbers {
  margin-right: 3%;
}
.p-news .c-pagination .next.page-numbers {
  margin-left: 3%;
}

/*------------------------------------------------------------
p-news_single
------------------------------------------------------------*/
.p-news .s-single__title:after {
  content: none;
}
.p-news .s-single__cat {
  margin-top: 6px;
}
.p-news .s-single__date {
  font-size: 16px;
  margin-left: 15px;
  vertical-align: middle;
}
.p-news .s-single__content {
  font-size: 16px;
  line-height: 2;
  margin-top: 60px;
}
.p-news .s-single__content figure {
  width: 50%;
  float: left;
  max-width: 490px;
  margin: 2.3% 3.3% 0 0;
}
.p-news .s-single__content figure img {
  border-radius: 30px;
}
.p-news .s-single__content p ~ p {
  margin-top: 2%;
}
.p-news .s-single__content h3 {
  clear: both;
  color: #97A797;
  font-size: 28px;
  padding: 60px 0 22px;
  border-bottom: 1px solid #97A797;
}
.p-news .s-single__content ul {
  list-style: disc;
}
.p-news .s-single__content ol {
  list-style: decimal;
}
.p-news .s-single__content ul, .p-news .s-single__content ol {
  margin-left: 1.3em;
  margin-top: 32px;
}
.p-news .s-single__content ul li::marker,
.p-news .s-single__content ol li::marker {
  color: #97A797;
  font-size: 18px;
}
.p-news .s-single .c-btn01 {
  padding: 8px;
  max-width: 300px;
  margin: 60px auto 0;
}
@media screen and (max-width: 767px) {
  .p-news .s-single__content {
    font-size: 1.4rem;
    margin-top: 40px;
  }
  .p-news .s-single__content figure {
    width: 100%;
    float: none;
    max-width: 100%;
    margin: 30px auto;
  }
  .p-news .s-single__content h3 {
    font-size: 2.6rem;
    padding: 50px 0 20px;
  }
  .p-news .s-single__content ul li::marker,
  .p-news .s-single__content ol li::marker {
    font-size: 1.6rem;
  }
}

/*------------------------------------------------------------
p-policy
------------------------------------------------------------*/
.p-policy .s-policy {
  font-size: 16px; 
  line-height: 2;
}
.p-policy .s-policy h3 {
  color: #97A797;
  font-size: 28px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid #97A797;
}
.p-policy .s-policy__item {
  margin-top: 60px;
}
.p-policy .s-policy ul li {
  display: flex;
}
.p-policy .s-policy p + ul, .p-policy .s-policy ul li + li {
  margin-top: 12px;
}
.p-policy .s-policy ul li span {
  min-width: 40px;
}
.p-policy .s-policy ul.color1 span {
  color: #97A797;
  min-width: 30px;
}
.p-policy .s-policy ul li:before {
  /* content: counter(section) "）"; */
}
.p-policy .s-policy__box {
  padding: 3.3%;
  line-height: 1.7;
  max-width: 490px;
  margin-top: 26px;
  border-radius: 30px;
  background-color: #E4EBE4;
}
.p-policy .s-policy__box h4 {
  font-size: 18px;
  margin-bottom: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid #325F32;
}

@media screen and (max-width: 767px) {
  .p-policy .s-policy {
    font-size: 1.4rem; 
  }
  .p-policy .s-policy h3 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    padding-bottom: 16px;
  }
  .p-policy .s-policy__item {
    margin-top: 45px;
  }

  .p-policy .s-policy__box {
    padding: 20px;
  }
}

/*------------------------------------------------------------
p-built
------------------------------------------------------------*/
/* .p-built .s-introduce
------------------------------------------------------------*/
.p-built .s-introduce__inner {
  padding-top: 20px;
}
.p-built .s-introduce__box {
  padding-left: 5%;
}
.p-built .s-introduce__box h1 {
  color: #767676;
  font-size: 103px;
  line-height: 1;
  letter-spacing: 20px;
  font-family: 'LiSong Pro', sans-serif;
}
.p-built .s-introduce__box h3 {
  font-size: 28px;
}
.p-built .s-introduce__box p {
  font-size: 19px;
  line-height: 2;
  margin-top: 43px;
}
.p-built .s-introduce__image {
  height: 440px;
  margin-top: -53px;
  border-radius: 30px;
  background: url(../image/built/introduce-image.jpg);
}
@media screen and (max-width: 1200px) and (min-width: 768px) {
  .p-built .s-introduce__box h1 {
    font-size: 8vw;
    letter-spacing: 1.7vw;
  }
  .p-built .s-introduce__box p {
    font-size: 1.7vw;
  }
}
@media screen and (max-width: 767px) {
  .p-built .s-introduce__inner {
    padding-top: 10px;
  }
  .p-built .s-introduce__box {
    padding-left: 0;
  }
  .p-built .s-introduce__box h1 {
    font-size: 5rem;
    letter-spacing: 15px;
  }
  .p-built .s-introduce__box h3 {
    font-size: 2.2rem;
    margin-top: 30px;
  }
  .p-built .s-introduce__box p {
    font-size: 1.6rem;
    margin-top: 20px;
  }
  .p-built .s-introduce__image {
    height: 55vw;
    margin-top: 30px;
  }
}

/* .p-built .s-introduce
------------------------------------------------------------*/
.p-built .s-descript .c-title01.jp:before {
  /* width: 35%; */
  margin: -27px 0 0 0;
}
.p-built .s-descript .c-title01.jp:after {
  margin: -27px 0 0 0;
}
.p-built .s-descript {
  text-align: center;
  position: relative;
  padding-bottom: 76px;
}
.p-built .s-descript__desc {
  font-size: 19px;
  line-height: 1.8;
  padding-top: 15px;
}
.p-built .s-descript__strong {
  font-size: 28px;
  line-height: 1.5;
  padding-top: 38px;
}
.p-built .s-descript:after {
  content: "";
  left: 0;
  right: 0;
  bottom: -4px;
  height: 115px;
  position: absolute;
  background: url(../image/concept/descript-img.png) center no-repeat;
}
@media screen and (max-width: 767px) {
  .p-built .s-descript .c-title01.jp:before {
    margin: -59px 0 0 0;
  }
  .p-built .s-descript .c-title01.jp:after {
    margin: -59px 0 0 0;
  }
  .p-built .s-descript {
    padding-bottom: 76px;
  }
  .p-built .s-descript__desc {
    font-size: 1.6rem;
  }
  .p-built .s-descript__strong {
    font-size: 2.5rem;
  }
}

/* .p-built .s-concept
------------------------------------------------------------*/
.p-built .s-concept {
  padding-top: 1px;
}
.p-built .s-concept__about.item02 .c-title01 {
  top: -42px;
}
.p-built .s-concept__about.item01:before {
  background: url(../image/built/about-img01.jpg) center no-repeat;
}
.p-built .s-concept__about.item02:before {
  background: url(../image/built/about-img02.jpg) center no-repeat;
}

@media screen and (max-width: 767px) {
  .p-built .s-concept__about.item02 .c-title01 {
    top: -27px;
  }
}

/* .p-built .s-room
------------------------------------------------------------*/
.p-built .s-room__list {
  flex-wrap: wrap;
  padding-top: 20px;
}
.p-built .s-room .c-title02 h2 {
  color: #262626;
}
.p-built .s-room__list li {
  margin-top: 42px;
  width: calc((100% - 6%) / 3);
}
.p-built .s-room__list li img {
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .p-built .s-room__list li:nth-child(-n+3) {
    margin-top: 0;
  }
}
.p-built .s-room__list p {
  font-size: 16px;
  margin-top: 13px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-built .s-room__list {
    padding-top: 10px;
  }
  .p-built .s-room__list {
    flex-direction: row;
  }
  .p-built .s-room__list li {
    margin-top: 26px;
    width: calc((100% - 3%) / 2);
  }
  .p-built .s-room__list li:nth-child(-n+2) {
    margin-top: 0;
  }
  .p-built .s-room__list p {
    font-size: 1.4rem;
    margin-top: 7px;
  }
}

/* .p-built .s-aboutus
------------------------------------------------------------*/
.p-built .s-aboutus:before {
  background: url(../image/built/aboutus-img.jpg) center no-repeat;
}

/*------------------------------------------------------------
p-management
------------------------------------------------------------*/
/* .p-management .s-introduce
------------------------------------------------------------*/
.p-management .s-introduce__desc {
  font-size: 19px;
  line-height: 2;
  max-width: 895px;
  margin: 0 auto;
  padding-top: 40px;
}
.p-management .s-introduce__list {
  margin-top: 92px;
}
.p-management .s-introduce__list li {
  border-radius: 20px;
  padding: 3%;
  position: relative;
  width: calc((100% - 6%) / 3);
  background-color: #E4EBE4;
}
.p-management .s-introduce__list h3 {
  top: -39px;
  left: 0;
  right: 0;
  font-size: 42px;
  text-align: center;
  position: absolute;
  mix-blend-mode: overlay;
  font-family: "circe", sans-serif;
}
.p-management .s-introduce__list h4 {
  color: #262626;
  text-align: center;
  font-size: 24px;
}
.p-management .s-introduce__list p {
  font-size: 16px;
  line-height: 1.7;
  margin-top: 18px;
}
@media screen and (max-width: 767px) {
  .p-management .s-introduce__desc {
    font-size: 1.6rem;
    padding-top: 20px;
  }
  .p-management .s-introduce__list {
    margin-top: 70px;
  }
  .p-management .s-introduce__list li {
    padding: 25px;
    width: 100%;
  }
  .p-management .s-introduce__list li:not(:last-child) {
    margin-bottom: 65px;
  }
  .p-management .s-introduce__list h3 {
    top: -30px;
    font-size: 3.2rem;
  }
  .p-management .s-introduce__list h4 {
    font-size: 2rem;
  }
  .p-management .s-introduce__list p {
    font-size: 1.4rem;
    margin-top: 15px;
  }
}

/* .p-management .s-aboutus
------------------------------------------------------------*/
.p-management .s-aboutus:before {
  background: url(../image/management/aboutus-img.jpg) center no-repeat;
}

/*------------------------------------------------------------
p-contact
------------------------------------------------------------*/
.visual-contact .c-mainvisual__inner {
  background: url(../image/contact/mainvisual.jpg);
}

.title_under_p {
	margin-top: 20px;
}

.s-business__logo strong {
	display: block;
	font-size: 20px;
	margin-top: 30px;
	padding: 8px 10px;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	letter-spacing: 2px;
}

.s-form__desc {
  max-width: 1025px;
  margin: 0 auto;
}
.s-form__desc table {
  margin-top: 10px;
}
.s-form__desc table td:first-child {
  min-width: 85px;
}
.s-form__desc table td {
  color: #484848;
  text-align: left;
  vertical-align: top;
  font-family: "circe", sans-serif;
}