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

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

#wrapper {
  overflow: hidden;
}
#wrapper.contents {
  overflow: initial;
}

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

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

.mincho {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
}

.eng {
  font-family: "Nanum Gothic", sans-serif;
}

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

.en-big {
  font-family: "Nanum Gothic", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}

.bold {
  font-weight: 600;
}

/* animation
----------------------------------*/
@keyframes view-zoomin {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes view-slideup {
  0% {
    opacity: 0;
    transform: translate(0, 35px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.animation {
  opacity: 0;
}

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

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

/* header
----------------------------------*/
@keyframes hd-scrolled {
  0% {
    opacity: 0;
    transform: translate(0, -100%);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.gradient {
  background: linear-gradient(45deg, #ccc, #3dac9d, #eee);
  background-size: 600% 600%;
  animation: anim-gradient 10s ease infinite;
}

@keyframes anim-gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
#l-header {
  width: 100%;
  height: 80px;
  position: absolute;
  z-index: 200;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
}
#l-header.is-hide {
  transform: translateY(-100%);
}
#l-header .inner {
  position: relative;
  width: calc(100% - 60px);
  margin: 0 20px 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
#l-header .inner #logo {
  width: 260px;
  z-index: 15;
}
@media all and (max-width: 639px) {
  #l-header .inner #logo {
    width: 210px;
  }
}
#l-header .inner #logo .wt {
  display: block;
}
#l-header .inner #logo .nml {
  display: none;
}
#l-header.is-fixed {
  position: fixed;
  background: #fefefe;
  border-bottom: 0.9px solid rgba(254, 254, 254, 0.3);
  box-shadow: 0 0 15px rgba(51, 51, 51, 0.1);
}
#l-header.is-fixed .inner #logo .wt {
  display: none;
}
#l-header.is-fixed .inner #logo .nml {
  display: block;
}
#l-header.is-fixed #nav-toggle span {
  background: #333;
}
#l-header.is-fixed #header_nav ul li a {
  color: #333;
}
#l-header.is-fixed #header_nav ul li a:hover span, #l-header.is-fixed #header_nav ul li a.active span {
  color: #3dac9d;
}
#l-header.is-fixed #header_nav .dropdown .dropdown-li a {
  color: #fefefe;
}
#l-header .head-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}
@media all and (max-width: 896px) {
  #l-header .head-right {
    display: none;
  }
}

#header_nav {
  position: relative;
  z-index: 20;
  margin-right: 15px;
}
#header_nav ul {
  display: flex;
  flex-wrap: wrap;
}
#header_nav ul li {
  position: relative;
  flex: 1 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  /*
  &:first-child{
  	display: none;
  }*/
}
#header_nav ul li a {
  letter-spacing: 0.09rem;
  display: block;
  position: relative;
  line-height: 1.5;
  padding: 0 15px 0;
  color: #fefefe;
  font-weight: 600;
  text-align: center;
}
@media all and (max-width: 1100px) {
  #header_nav ul li a {
    font-size: 1.1rem;
    padding: 0 10px 0;
  }
}
#header_nav ul li a span {
  display: block;
  margin: 0 auto;
  font-size: 1.2rem;
  font-family: "Nanum Gothic", sans-serif;
  font-weight: 400;
}
#header_nav ul li a:hover, #header_nav ul li a.active {
  color: #fefefe;
}
#header_nav ul li:first-child {
  border-left: none;
}
#header_nav ul li:first-child a::after {
  display: none;
}
#header_nav .dropdown {
  display: none;
  position: absolute;
  left: 0;
  top: 10px;
  z-index: 999;
  padding-top: 30px;
}
#header_nav .dropdown .dropdown-li {
  border-right: 0;
  margin: 0 0 5px;
  background: #3dac9d;
  text-align: center;
  z-index: 999;
}
#header_nav .dropdown .dropdown-li:last-child {
  display: block;
}
#header_nav .dropdown .dropdown-li a {
  display: block;
  width: 160px;
  padding: 10px 8px;
  color: #fefefe;
  font-size: 1.2rem;
}
#header_nav .dropdown .dropdown-li a:after {
  display: none;
}
#header_nav .dropdown .dropdown-li:hover {
  background: #087768;
}
#header_nav .dropdown .dropdown-li.foot_only {
  display: none;
}

/* splash
----------------------------------*/
#splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fefefe;
  z-index: 9999999;
  text-align: center;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
}
#splash::after {
  content: "";
  width: 150px;
  height: 150px;
  background: url(../img/mark.png) no-repeat center/contain;
  animation: loader 1.5s ease-in-out infinite;
}
@media all and (max-width: 896px) {
  #splash::after {
    width: 80px;
    height: 80px;
  }
}
#splash::before {
  content: "";
  background: linear-gradient(to left top, #82afa8, #087768, #82afa8);
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.8;
  z-index: -1;
}

body {
  background: #fefefe;
}
body.appear {
  background: #fefefe;
}

body.appear .splashbg {
  display: block;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  transform: scaleY(0);
  background: linear-gradient(to left top, #087768, #3dac9d);
  animation-name: backBoxAnime;
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  opacity: 0.5;
}

@keyframes backBoxAnime {
  0% {
    transform-origin: top;
    transform: scaleY(0);
  }
  50% {
    transform-origin: top;
    transform: scaleY(1);
  }
  50.001% {
    transform-origin: bottom;
  }
  100% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
}
#wrapper_loading {
  position: relative;
  opacity: 0;
  overflow: hidden;
}
#wrapper_loading.contents {
  overflow: initial;
}

body.appear #wrapper_loading {
  animation-name: PageAnimeAppear;
  animation-duration: 1s;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes loader {
  0% {
    transform: rotateY(0);
  }
  100% {
    transform: rotateY(360deg);
  }
}
/* page-top
----------------------------------*/
#page-top {
  position: fixed;
  bottom: 10px;
  right: 7px;
  z-index: 200;
}
#page-top a {
  display: block;
  background: #087768;
  box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 2px;
  color: #fefefe;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  text-align: center;
}
#page-top a:hover {
  opacity: 0.6;
}
@media all and (max-width: 639px) {
  #page-top {
    bottom: 3%;
  }
}

/* swiper
----------------------------------*/
@keyframes zoom-in {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.12);
  }
}
.swiper-slide {
  position: relative;
  background: #fff;
}
.swiper-slide:before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  left: 0;
  top: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0.85;
}
.swiper-slide.slide1:before {
  background-image: url(../img/01.webp);
}
.swiper-slide.slide2:before {
  background-image: url(../img/02.webp);
}
.swiper-slide.slide3:before {
  background-image: url(../img/03.webp);
}

.slide-img {
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media all and (max-width: 1100px) {
  .slide-img {
    height: 60vw;
  }
}
@media all and (max-width: 896px) {
  .slide-img img {
    width: 60%;
  }
}
@media all and (max-width: 639px) {
  .slide-img {
    height: 70vh;
  }
  .slide-img img {
    width: 80%;
  }
}
.slide-img video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* slideshow
----------------------------------*/
#slide-bg {
  position: relative;
  padding: 0;
  width: 100%;
  margin: auto 0;
  overflow: hidden;
}
@media all and (max-width: 1100px) {
  #slide-bg {
    width: 100%;
    padding: 0;
  }
}

#slideshow {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
@media all and (max-width: 639px) {
  #slideshow {
    margin: 0 auto;
    width: 100%;
  }
}

#catch {
  z-index: 150;
  position: absolute;
  left: 50%;
  top: 53%;
  transform: translate(-50%, -50%);
  width: 80%;
}
#catch .catch_01, #catch .catch_02, #catch .catch_03, #catch .catch_04, #catch .catch_05 {
  opacity: 0;
}
#catch .catch_01.on, #catch .catch_02.on, #catch .catch_03.on, #catch .catch_04.on, #catch .catch_05.on {
  opacity: 1;
  transition: 2s;
}
#catch h2 {
  width: 450px;
  margin-top: 30px;
}
#catch h2 img {
  width: 100%;
}
@media all and (max-width: 896px) {
  #catch h2 {
    width: 300px;
  }
}
@media all and (max-width: 639px) {
  #catch h2 {
    width: 90%;
  }
}
#catch h3 {
  color: #fefefe;
  text-shadow: 0 0 10px rgba(17, 17, 17, 0.8);
  font-size: 3.6rem;
  font-weight: 600;
  letter-spacing: 0.45rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
}
@media all and (max-width: 896px) {
  #catch h3 {
    font-size: 1.5rem;
  }
}
@media all and (max-width: 639px) {
  #catch {
    width: 90%;
  }
  #catch h3 {
    font-size: 1.2rem;
  }
}

#scrolldown {
  position: absolute;
  right: 15px;
  bottom: 0px;
  color: #fefefe;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-feature-settings: "pkna";
  font-size: 1.4rem;
  z-index: 100;
  height: 200px;
}
#scrolldown:before, #scrolldown:after {
  position: absolute;
  content: "";
  z-index: 2;
  left: 50%;
}
#scrolldown:before {
  width: 1px;
  height: 100px;
  bottom: 0;
  background: #fefefe;
  transform: translateX(-50%);
}
#scrolldown:after {
  width: 8px;
  height: 8px;
  background: rgba(254, 254, 254, 0.9);
  border-radius: 100%;
  top: 100px;
  margin-left: -4px;
  animation: scroll-point 2.3s ease-out infinite;
  animation-fill-mode: both;
}
@media all and (max-width: 896px) {
  #scrolldown {
    display: none;
  }
}

@keyframes scroll-point {
  0% {
    bottom: 0;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  50% {
    top: 180px;
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    top: 210px;
    opacity: 0;
  }
}
/* footer
----------------------------------*/
#l-footer {
  font-size: 1.4rem;
  position: relative;
  padding: 60px 20px 40px;
  background: #e6e9e7;
}
#l-footer .inner {
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
  z-index: 3;
}
#l-footer .inner .contact-area {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
}
#l-footer .inner .contact-area > li {
  width: 45%;
}
@media all and (max-width: 1100px) {
  #l-footer .inner .contact-area > li {
    width: 50%;
  }
}
@media all and (max-width: 896px) {
  #l-footer .inner .contact-area > li {
    width: 100%;
    text-align: center;
  }
}
@media all and (max-width: 639px) {
  #l-footer .inner .contact-area > li {
    margin-bottom: 30px;
  }
}
@media all and (max-width: 1100px) {
  #l-footer .inner {
    width: 100%;
  }
}
@media all and (max-width: 639px) {
  #l-footer {
    font-size: 1.2rem;
    background-size: contain;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    padding: 50px 0 0;
  }
  #l-footer .inner {
    padding: 0;
    width: 100%;
  }
}

/* footer_navi
----------------------------------*/
.footer_navi {
  flex-basis: 100%;
  margin: 30px auto 10px;
}
.footer_navi ul {
  margin: 0 auto;
  display: block;
}
.footer_navi ul li {
  margin-bottom: 8px;
  text-align: right;
}
.footer_navi ul li a {
  color: #2c1e07;
  font-size: 1.2rem;
  position: relative;
  display: block;
  padding: 0 10px 0 15px;
  font-weight: 600;
}
.footer_navi ul li a span {
  display: none;
}
.footer_navi ul li a:before {
  content: "";
  background-color: #087768;
  width: 10px;
  height: 1px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.footer_navi ul li a:hover {
  color: #087768;
}
.footer_navi ul li .dropdown {
  display: none;
}
.footer_navi ul li .dropdown .dropdon-li a {
  font-size: 1.2rem;
}

.address {
  font-size: 12px;
  margin-bottom: 10px;
}
@media all and (max-width: 639px) {
  .address {
    text-align: center;
  }
}

.flogo {
  width: 260px;
  margin-right: 15px;
  margin-bottom: 10px;
}
.flogo img {
  width: 100%;
}
@media all and (max-width: 896px) {
  .flogo {
    width: 200px;
  }
}
@media all and (max-width: 639px) {
  .flogo {
    width: 80%;
    margin: 0 auto 10px;
  }
}

.flogo-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
  width: 350px;
}
.flogo-area p {
  font-size: 1.2rem;
}
@media all and (max-width: 896px) {
  .flogo-area {
    width: 280px;
    margin: 0 auto 10px;
  }
}
@media all and (max-width: 639px) {
  .flogo-area {
    width: 80%;
    margin-bottom: 20px;
  }
  .flogo-area p {
    text-align: center;
    margin: 0 auto;
  }
  .flogo-area .sns-list {
    margin: 0 auto;
  }
}

.copyright {
  font-size: 1rem;
  z-index: 2;
  color: #2c1e07;
  position: relative;
  font-weight: 500;
  padding: 0;
}
@media all and (max-width: 896px) {
  .copyright {
    font-size: 12px;
    padding: 15px 0 0;
  }
}
@media all and (max-width: 639px) {
  .copyright {
    text-align: center;
  }
}

/* contents
----------------------------------*/
.single {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 0;
  position: relative;
}
@media all and (max-width: 1100px) {
  .single {
    width: 85%;
    padding: 80px 0;
  }
}

.single01 {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 100px;
}
@media all and (max-width: 1100px) {
  .single01 {
    width: 95%;
    padding: 0 0 60px;
  }
}

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

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

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

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

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

.margin-bottom2 {
  margin-bottom: -150px;
}
@media all and (max-width: 896px) {
  .margin-bottom2 {
    margin-bottom: -80px;
  }
}

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

.lsingle {
  float: left;
}

.rsingle {
  float: right;
}

.mbox {
  background: #fefefe;
  padding: 35px 30px;
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
.mbox.transparent {
  background: transparent;
}
@media all and (max-width: 639px) {
  .mbox {
    padding: 15px;
  }
}
.mbox.bd {
  position: relative;
  padding: 40px;
  border: 1px solid #82afa8;
  border-radius: 8px;
}
@media all and (max-width: 639px) {
  .mbox.bd {
    padding: 40px 15px;
  }
}
.mbox.p-non {
  padding: 0;
}
@media all and (max-width: 639px) {
  .mbox.sp-non {
    padding: 0;
  }
}
.mbox.sd {
  box-shadow: 0.5rem 0.5rem 10px rgba(51, 51, 51, 0.1), -0.5rem -0.5rem 8px rgba(218, 218, 218, 0.1);
  border-radius: 8px;
}
.mbox.kk {
  background-image: linear-gradient(to right top, rgba(130, 175, 168, 0.3), rgba(8, 119, 104, 0.3), rgba(130, 175, 168, 0.3));
  padding: 40px;
}
@media all and (max-width: 639px) {
  .mbox.kk {
    padding: 25px 10px;
    width: 95%;
  }
}
.mbox.kk::after, .mbox.kk::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 60px;
}
.mbox.kk::after {
  border-top: 2px solid #087768;
  border-left: 2px solid #3dac9d;
  top: -10px;
  left: -10px;
}
.mbox.kk::before {
  border-bottom: 2px solid #3dac9d;
  border-right: 2px solid #087768;
  bottom: -10px;
  right: -10px;
}

.small-box {
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
}
@media all and (max-width: 1100px) {
  .small-box {
    max-width: 80%;
  }
}
@media all and (max-width: 639px) {
  .small-box {
    max-width: 98%;
  }
}
.small-box.min {
  max-width: 800px;
}

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

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

.trig {
  text-align: right;
}
@media all and (max-width: 896px) {
  .trig {
    text-align: left;
  }
}

.contact-box {
  background: #fefefe;
  padding: 35px 30px;
  position: relative;
  z-index: 3;
  margin-right: auto;
  margin-left: auto;
}
@media all and (max-width: 639px) {
  .contact-box {
    padding: 35px 15px;
  }
}
.contact-box h3 {
  font-size: 3.5rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  color: #087768;
  margin-bottom: 30px;
  text-align: center;
}
@media all and (max-width: 1100px) {
  .contact-box h3 {
    font-size: 2.5rem;
  }
}
@media all and (max-width: 639px) {
  .contact-box h3 {
    font-size: 1.8rem;
  }
}
.contact-box .contact-bnr {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media all and (max-width: 896px) {
  .contact-box .contact-bnr {
    gap: 20px;
  }
}
@media all and (max-width: 639px) {
  .contact-box .contact-bnr {
    grid-template-columns: 1fr;
  }
}
.contact-box .contact-bnr li {
  grid-area: auto;
  position: relative;
}
.contact-box .contact-bnr li a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  border: 1px solid #3dac9d;
  color: #3dac9d;
  text-align: center;
  font-size: 2.3rem;
}
@media all and (max-width: 896px) {
  .contact-box .contact-bnr li a {
    font-size: 1.8rem;
  }
}
@media all and (max-width: 639px) {
  .contact-box .contact-bnr li a {
    font-size: 1.5rem;
  }
}
.contact-box .contact-bnr li a:hover {
  background: #3dac9d;
  color: #fefefe;
  transition: all 0.3s ease;
}
.contact-box .contact-bnr li a.tel {
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-weight: 500;
}
.contact-box .contact-bnr li a.tel::before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 10px;
}
.contact-box .contact-bnr li a.fax {
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-weight: 500;
  pointer-events: none;
}
.contact-box .contact-bnr li a.fax::before {
  font-family: "Font Awesome 5 Free";
  content: "\f1ac";
  font-weight: 900;
  margin-right: 10px;
}
.contact-box .contact-bnr li a.fax:hover {
  border: 1px solid #3dac9d;
  color: #3dac9d;
  background: #fefefe;
}
.contact-box .contact-bnr li a.mail::before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 10px;
}
@media all and (max-width: 639px) {
  .contact-box .contact-bnr li a.mail {
    letter-spacing: 0;
  }
}
.contact-box .time-area {
  margin-top: 50px;
  border-top: 1px solid #82afa8;
  padding-top: 30px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}
@media all and (max-width: 896px) {
  .contact-box .time-area {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media all and (max-width: 639px) {
  .contact-box .time-area {
    grid-template-columns: 1fr;
    gap: 15px 0;
    padding-top: 15px;
  }
}
.contact-box .time-area .t-ttl {
  grid-area: 1/1/2/2;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #087768;
  color: #fefefe;
  font-size: 1.8rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
}
@media all and (max-width: 896px) {
  .contact-box .time-area .t-ttl {
    grid-area: 1/1/2/3;
    padding: 15px 0;
  }
  .contact-box .time-area .t-ttl br {
    display: none;
  }
}
@media all and (max-width: 639px) {
  .contact-box .time-area .t-ttl {
    grid-area: auto;
  }
}
@media all and (max-width: 1100px) {
  .contact-box .time-area .t-ttl {
    font-size: 1.6rem;
  }
}
.contact-box .time-area .day-time {
  grid-area: 1/2/2/4;
  position: relative;
}
@media all and (max-width: 896px) {
  .contact-box .time-area .day-time {
    grid-area: auto;
  }
}
.contact-box .time-area .day-time .dt-dl {
  margin-bottom: -10px;
}
.contact-box .time-area .day-time .dt-dl dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.contact-box .time-area .day-time .dt-dl dl dt {
  width: 50%;
  background: #3dac9d;
  color: #fefefe;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 80px;
}
.contact-box .time-area .day-time .dt-dl dl dd {
  width: 48%;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-weight: 500;
  font-size: 2rem;
  text-align: center;
}
.contact-box .time-area .day-time .dt-dl dl dd.txt {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
}
@media all and (max-width: 639px) {
  .contact-box .time-area .day-time .dt-dl dl dt {
    width: 35%;
  }
  .contact-box .time-area .day-time .dt-dl dl dd {
    width: 65%;
  }
}
.contact-box .time-area .notes {
  grid-area: 1/4/2/6;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  text-align: center;
  border-left: 1px solid #82afa8;
}
@media all and (max-width: 896px) {
  .contact-box .time-area .notes {
    grid-area: auto;
  }
}
.contact-box .time-area .notes img {
  width: 85%;
  margin: 0 auto;
}
@media all and (max-width: 639px) {
  .contact-box .time-area .notes {
    border-left: none;
    border-right: none;
    border-top: 1px solid #82afa8;
    padding-top: 15px;
    font-size: 1.4rem;
    letter-spacing: 0;
  }
  .contact-box .time-area .notes br {
    display: none;
  }
}

#main {
  float: left;
  width: 76%;
}
#main .mbox {
  min-height: 300px;
}
@media all and (max-width: 896px) {
  #main .mbox {
    min-height: initial;
  }
}
#main .mbox a {
  font-weight: 600;
  text-decoration: underline;
}
#main .mbox a:hover {
  text-decoration: none;
}
@media all and (max-width: 896px) {
  #main {
    float: none;
    width: 100%;
  }
}

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

.s-contena {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: calc(100% - 40px);
  margin: 0 auto;
  position: relative;
}
@media all and (max-width: 1100px) {
  .s-contena {
    max-width: 95%;
  }
}

.s-main {
  width: 78%;
}
@media all and (max-width: 1100px) {
  .s-main {
    width: 75%;
  }
}
@media all and (max-width: 896px) {
  .s-main {
    width: 100%;
  }
}

.s-side {
  width: 18%;
  min-height: 300px;
  position: sticky;
  right: 0;
  top: 100px;
}
@media all and (max-width: 1100px) {
  .s-side {
    width: 20%;
  }
}
@media all and (max-width: 896px) {
  .s-side {
    width: 100%;
    height: auto;
    min-height: auto;
    position: relative;
    top: 0;
    margin-bottom: 10px;
  }
}

/* mtitle
----------------------------------*/
.mtitle {
  font-weight: 500;
  margin: 0 auto 40px;
  text-align: center;
}
.mtitle.b-min {
  margin-bottom: 20px;
}
.mtitle.b-non {
  margin-bottom: 0;
}
.mtitle.t-mgn {
  margin-top: 40px;
}
.mtitle .eng {
  font-size: 1.3rem;
  color: #82afa8;
  position: relative;
  display: block;
  font-family: "Nanum Gothic", sans-serif;
  font-weight: 400;
}
.mtitle .ja {
  font-size: 2.3rem;
  color: #232323;
  font-weight: 600;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
}
.mtitle.white {
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
.mtitle.white span {
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
.mtitle.white span:after {
  background-color: #eee;
}
.mtitle.white span.ja {
  border-bottom-color: #fefefe;
}
.mtitle.mtitle_left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}
.mtitle.mtitle_left span:after {
  left: 0;
  transform: none;
}
.mtitle.mtitle_right {
  text-align: right;
  margin-right: 0;
  margin-left: 0;
}
.mtitle.mtitle_right span:after {
  left: 0;
  transform: none;
}
@media all and (max-width: 639px) {
  .mtitle {
    text-align: center;
  }
  .mtitle .eng {
    font-size: 1.1rem;
  }
  .mtitle .ja {
    font-size: 1.6rem;
  }
}

.mtitle1 {
  position: relative;
  font-size: 3.5rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  margin-bottom: 35px;
  padding-bottom: 15px;
  text-align: center;
}
.mtitle1 span {
  font-size: 1.5rem;
  display: block;
  font-family: "Nanum Gothic", sans-serif;
  font-weight: 400;
  color: #087768;
}
.mtitle1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  width: 50px;
  height: 5px;
  background: #087768;
  background-image: linear-gradient(to right, #087768, #3dac9d);
}
@media all and (max-width: 896px) {
  .mtitle1 {
    font-size: 2.5rem;
  }
  .mtitle1 span {
    font-size: 1.3rem;
  }
}
@media all and (max-width: 639px) {
  .mtitle1 {
    font-size: 1.8rem;
  }
  .mtitle1 span {
    font-size: 1.2rem;
  }
}

.mtitle_line {
  font-size: 2.2rem;
  position: relative;
  font-weight: 600;
  margin-bottom: 30px;
  padding-top: 8px;
  padding-left: 8px;
  padding-bottom: 10px;
  color: #2c1e07;
  letter-spacing: 0.2rem;
  color: #087768;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
}
.mtitle_line span {
  display: block;
  font-size: 1.4rem;
  color: #2c1e07;
}
.mtitle_line:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  content: "";
  opacity: 0.6;
  background-image: repeating-linear-gradient(-45deg, #087768, #087768 1px, transparent 1px, transparent 3px);
  background-size: 4px 4px;
  backface-visibility: hidden;
}
@media all and (max-width: 639px) {
  .mtitle_line {
    font-size: 1.4rem;
  }
  .mtitle_line span {
    font-size: 1.2rem;
  }
}

.mtitle4 {
  font-weight: normal;
  text-align: center;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.1rem;
  color: #087768;
}
.mtitle4 span {
  position: relative;
  display: inline-block;
  min-width: 10%;
}
.mtitle4 span:before, .mtitle4 span:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1px;
  height: 3rem;
  background-color: #087768;
}
.mtitle4 span:before {
  left: -11px;
  transform: rotate(-20deg);
}
.mtitle4 span:after {
  right: -11px;
  transform: rotate(20deg);
}
.mtitle4.white span:before, .mtitle4.white span:after {
  background-color: #3dac9d;
}
@media all and (max-width: 639px) {
  .mtitle4 {
    font-size: 1.6rem;
  }
}
@media all and (max-width: 320px) {
  .mtitle4 span:before {
    left: -3px;
  }
  .mtitle4 span:after {
    right: -3px;
  }
}
.mtitle4.min {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
}
.mtitle4.min span:before, .mtitle4.min span:after {
  width: 2px;
  height: 3rem;
}

.mtitle_sub {
  padding-left: 0.5em;
  font-weight: 600;
  position: relative;
  border-left: 6px solid #087768;
  margin: 8px 0 15px;
  font-size: 1.1em;
  line-height: 1.4;
  text-align: left;
}
.mtitle_sub .hissu {
  color: #fff;
  background: #0ba792;
  padding: 5px 8px;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 20px;
}
.mtitle_sub:before {
  position: absolute;
  left: -6px;
  bottom: 0;
  content: "";
  width: 6px;
  height: 50%;
  background-color: #3dac9d;
}

.mtitle_box {
  background: #065f53;
  color: #fefefe;
  font-size: 2rem;
  position: relative;
  padding: 5px 10px;
  margin-bottom: 15px;
  font-weight: 500;
}
.mtitle_box span {
  font-weight: normal;
  font-size: 14px;
  padding-left: 10px;
}
@media all and (max-width: 639px) {
  .mtitle_box {
    font-size: 1.5rem;
  }
}

.mtext1 {
  font-size: 2.5rem;
  line-height: 1.6;
}
@media all and (max-width: 896px) {
  .mtext1 {
    font-size: 1.85rem;
  }
}

.mtext2 {
  font-size: 3rem;
  letter-spacing: 0.1rem;
  line-height: 1.6;
}
.mtext2 span {
  font-style: italic;
  padding: 5px 15px;
  border-bottom: 2px solid #2c1e07;
  border-top: 2px solid #2c1e07;
  color: #2c1e07;
}
@media all and (max-width: 639px) {
  .mtext2 {
    font-size: 1.8rem;
    padding: 4px 8px;
  }
}

.mtext3 {
  font-size: 1.8rem;
  letter-spacing: 0.15em;
}
@media all and (max-width: 639px) {
  .mtext3 {
    font-size: 1.4rem;
  }
}

.mtitle_category {
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: normal;
}
.mtitle_category:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0ca";
  font-weight: 900;
  margin-right: 5px;
  color: #087768;
}

/* btn
----------------------------------*/
.btn01 a {
  text-align: center;
  width: 300px;
  margin: 15px auto;
  color: #087768;
  display: block;
  padding: 8px 5px;
  border: 1px solid #087768;
  border-radius: 5px;
}
.btn01 a:hover {
  background: #087768;
  color: #fefefe;
}
.btn01.tel a {
  background: #fefefe;
}
.btn01.tel a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
}
.btn01.tel a:hover {
  background: #087768;
  color: #fefefe;
}
.btn01.mail {
  flex-basis: 100%;
}
.btn01.mail a {
  background: #3dac9d;
  margin: 15px auto 25px;
}
.btn01.mail a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 5px;
}
.btn01.sub1 a {
  margin: 15px auto 25px 0;
}
.btn01.white a {
  border: 2px solid #fefefe;
  color: #fefefe;
  margin: 20px auto 20px;
}
.btn01.white a:hover {
  background: #fefefe;
  color: #087768;
}
.btn01.right a {
  margin-right: 0;
}
.btn01.left a {
  margin-left: 0;
}
@media all and (max-width: 639px) {
  .btn01 a {
    width: 95%;
  }
}

.btn02 {
  width: 400px;
  margin: 20px auto 20px;
}
.btn02.right {
  margin-right: 0;
}
.btn02.left {
  margin-left: 0;
}
.btn02.full {
  width: 100%;
}
.btn02 a {
  display: block;
  position: relative;
  padding: 20px 0;
  background-color: #ffffff;
  border: 1px solid #087768;
  line-height: 24px;
  letter-spacing: 0.1rem;
  font-size: 1.7rem;
  text-align: center;
  color: #087768;
  font-weight: 600;
}
.btn02 a i {
  display: block;
  position: absolute;
  top: 50%;
  right: -10px;
  width: 50px;
  height: 1px;
  background-color: #087768;
  transition: all 0.3s ease;
}
.btn02 a:hover {
  background: #087768;
  color: #fefefe;
}
.btn02 a:hover i {
  width: 34px;
  background-color: #ffffff;
}
@media all and (max-width: 639px) {
  .btn02 {
    width: 80%;
  }
  .btn02 a {
    font-size: 1.4rem;
  }
}

.btn03 a {
  position: relative;
  display: block;
  padding: 0 15px 0 30px;
  margin: 30px auto;
  width: 300px;
  line-height: 50px;
  text-decoration: none;
  outline: none;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  color: #087768;
  transition: 0.3s ease-out;
}
.btn03 a::before {
  content: "";
  position: absolute;
  right: 0;
  z-index: -1;
  width: 50px;
  height: 50px;
  background: #087768;
  border-radius: 25px;
  transition: 0.3s ease-out;
}
.btn03 a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 25px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fefefe;
  border-right: 2px solid #fefefe;
  transform: rotate(45deg) translateY(-50%);
  transition: 0.3s ease-out;
}
.btn03 a:hover {
  color: #fefefe;
}
.btn03 a:hover::before {
  width: 100%;
}
.btn03 a:hover::after {
  top: 48%;
  animation: step01 2s ease-in-out infinite;
}
@media all and (max-width: 639px) {
  .btn03 a {
    padding-left: 15px;
  }
}
.btn03.type1 a {
  width: 220px;
}

@keyframes step01 {
  0% {
    right: 25px;
  }
  25% {
    right: 20px;
  }
  50% {
    right: 25px;
  }
  75% {
    right: 20px;
  }
  100% {
    right: 25px;
  }
}
.btn-m {
  position: relative;
  cursor: pointer;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  margin: 45px auto 30px;
  text-align: center;
  width: 120px;
}
.btn-m.right {
  margin: 30px 0 30px auto;
}
.btn-m.left {
  margin: 30px auto 30px 0;
}
.btn-m a {
  color: #087768;
}
.btn-m.white a {
  color: #fefefe;
}
.btn-m.white::after {
  background: #fefefe;
}
.btn-m.white::before {
  border-bottom: 1px solid #fefefe;
  border-right: 1px solid #fefefe;
}
.btn-m::after {
  background: #087768;
  width: 50px;
  height: 50px;
  content: "";
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 5%;
  border-radius: 50%;
  transition: all 0.5s ease;
  z-index: -1;
  opacity: 0.2;
}
.btn-m::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 8px;
  bottom: 0;
  right: -5px;
  border-bottom: 1px solid #087768;
  border-right: 1px solid #087768;
  transform: skew(45deg);
  transition: all 0.5s ease;
}
.btn-m:hover::after {
  animation: b-ani-hv 1.2s ease infinite;
}
.btn-m:hover::before {
  width: 60px;
  right: -20px;
}
@keyframes b-ani-hv {
  from {
    transform: translateY(-50%) scale(1);
    opacity: 0.2;
  }
  to {
    transform: translateY(-50%) scale(2);
    opacity: 0;
  }
}

/* news
----------------------------------*/
.news-bl {
  overflow: hidden;
}
.news-bl dt {
  float: left;
  width: 7em;
  padding: 5px;
  line-height: 1.3;
  color: #087768;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-size: 1.3rem;
}
@media all and (max-width: 639px) {
  .news-bl dt {
    font-size: 1.2rem;
  }
}
.news-bl dd {
  padding: 0 0 5px 8em;
  line-height: 1.6;
  margin: 0 0 5px;
}
.news-bl dd a {
  color: #333;
  background-image: linear-gradient(to right, #087768, #3dac9d);
  padding-bottom: 0.25em;
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  transition: background-size 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-weight: 500;
}
.news-bl dd a:hover {
  background-position: 0 100%;
  background-size: 100% 1px;
}
.news-bl dd:last-child {
  margin: 0;
  border-bottom: none;
}
.news-bl dd .cate {
  display: inline-block;
  padding: 3px 5px;
  font-size: 1rem;
  background: #087768;
  color: #fefefe;
  margin-right: 10px;
}
@media all and (max-width: 639px) {
  .news-bl dt {
    float: none;
  }
  .news-bl dd {
    padding: 8px 5px;
  }
}

.link-news {
  position: relative;
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}
@media all and (max-width: 896px) {
  .link-news {
    margin-top: 20px;
  }
}
.link-news .link {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #087768;
  padding-right: 30px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
}
.link-news:before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid #087768;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s ease-in-out;
}
.link-news:after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  top: 50%;
  right: 10px;
  border-top: 1px solid #087768;
  border-right: 1px solid #087768;
  transform: rotate(45deg) translateY(-50%);
  transition: 0.3s ease-in-out;
}
.link-news:hover:before {
  background: #087768;
}
.link-news:hover:after {
  border-color: #fefefe !important;
}

/* page-title
----------------------------------*/
.page-title {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  background: linear-gradient(to left top, #087768, #3dac9d);
}
.page-title:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: url(../img/sec00.webp) no-repeat center/cover;
  filter: grayscale(1);
  opacity: 0.5;
}
.page-title .inner {
  margin: 0 auto;
  padding: 300px 0 170px;
  max-width: 1200px;
  overflow: hidden;
}
.page-title .inner .page-lead {
  color: #fff;
  font-size: 2.2rem;
  position: relative;
  text-align: center;
}
.page-title .inner .page-lead .ja {
  font-weight: 600;
  font-size: 3.5rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
}
.page-title .inner .page-lead .eng {
  display: block;
  font-family: "Nanum Gothic", sans-serif;
  font-weight: 400;
  color: #fff;
}
@media all and (max-width: 639px) {
  .page-title .inner .page-lead .eng {
    font-size: 1rem;
  }
  .page-title .inner .page-lead .ja {
    font-size: 2rem;
  }
}
@media all and (max-width: 896px) {
  .page-title .inner {
    width: 95%;
    padding: 250px 0 80px;
  }
}
@media all and (max-width: 639px) {
  .page-title .inner {
    width: 95%;
    padding: 250px 0 100px;
  }
}

/* bg
---------------------------------*/
.bg-base {
  background: rgba(130, 175, 168, 0.5);
  position: relative;
}
.bg-base.type2 {
  background: transparent;
}
.bg-base.type2:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: -2;
  background-image: linear-gradient(to bottom left, #82afa8, #3dac9d);
  opacity: 0.25;
}
.bg-base.type3 {
  background: transparent;
}
.bg-base.type3:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: -2;
  background-image: linear-gradient(to bottom, #b4c0b5 0%, #e6e9e7 3%, #fefefe 50%, #e6e9e7 98%, #b4c0b5 100%);
  opacity: 0.1;
}

.bg-deco {
  position: relative;
}
.bg-deco::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/deco01.webp), url(../img/deco02.webp);
  background-position: top left, bottom right;
  background-repeat: no-repeat, no-repeat;
  z-index: -1;
  opacity: 0.2;
}
@media all and (max-width: 896px) {
  .bg-deco::after {
    background-size: 35% auto, 35% auto;
    opacity: 0.1;
  }
}
.bg-deco:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: -2;
  background-image: linear-gradient(to bottom, #b4c0b5 0%, #e6e9e7 2%, #fefefe 50%, #e6e9e7 98%, #b4c0b5 100%);
  opacity: 0.1;
}

.wide-img {
  width: 100%;
  height: 400px;
}
.wide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media all and (max-width: 896px) {
  .wide-img {
    height: 300px;
  }
}
@media all and (max-width: 639px) {
  .wide-img {
    height: 200px;
  }
}

/* tbl
----------------------------------*/
.tbl {
  width: 100%;
}
.tbl th,
.tbl td {
  padding: 10px 5px;
  vertical-align: middle;
  border: 1px solid #b4c0b5;
  text-align: center;
}
.tbl th {
  background: #e6e9e7;
}
@media all and (max-width: 639px) {
  .tbl th,
  .tbl td {
    padding: 5px;
    font-size: 1.1rem;
    letter-spacing: 0;
  }
}

.tbl_new {
  margin: 0 auto;
  width: 100%;
}
.tbl_new tr th,
.tbl_new tr td {
  vertical-align: middle;
  padding: 15px 10px;
}
.tbl_new tr th {
  font-weight: 600;
  width: 15%;
  text-align: left;
  padding-left: 30px;
  letter-spacing: 0;
}
@media all and (max-width: 639px) {
  .tbl_new tr th {
    width: 25%;
    padding-left: 10px;
  }
}
.tbl_new tr:nth-child(odd) th, .tbl_new tr:nth-child(odd) td {
  background: #f0f0f0;
}

.tbl-border {
  width: 100%;
}
.tbl-border th,
.tbl-border td {
  padding: 15px;
  border-bottom: 1px solid #82afa8;
  vertical-align: middle;
}
@media all and (max-width: 639px) {
  .tbl-border th,
  .tbl-border td {
    padding: 10px;
    font-size: 1.2rem;
  }
}
.tbl-border th {
  width: 30%;
  text-align: left;
  font-weight: 600;
  border-bottom-color: #82afa8;
}
.tbl-border th.th-1 {
  width: 45%;
}
@media all and (max-width: 639px) {
  .tbl-border th {
    width: 33%;
  }
}
.tbl-border td {
  word-break: break-all;
}
.tbl-border.type01 th, .tbl-border.type01 td {
  font-size: 1.4rem;
}
.tbl-border.type01 th {
  width: 35%;
}
@media all and (max-width: 639px) {
  .tbl-border.type01 th {
    width: 30%;
  }
}

.price {
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-weight: 600;
  font-size: 2rem;
  color: #087768;
  text-align: right;
}
.price span {
  font-size: 1.5rem;
  font-family: "Zen Kaku Gothic New", "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
@media all and (max-width: 639px) {
  .price {
    font-size: 2rem;
  }
  .price span {
    font-size: 1.2rem;
  }
}

.p-tbl {
  width: 100%;
}
.p-tbl.col3 tr th {
  width: 33.3333333333%;
}
.p-tbl tr {
  border-bottom: 1px solid #b3b3b3;
}
.p-tbl tr:last-child {
  border-bottom: none;
}
.p-tbl th,
.p-tbl td {
  padding: 15px 10px;
  vertical-align: middle;
  text-align: center;
  border-right: 1px solid #b3b3b3;
}
.p-tbl th:last-child,
.p-tbl td:last-child {
  border-right: none;
}
@media all and (max-width: 1100px) {
  .p-tbl th,
  .p-tbl td {
    padding: 10px;
    font-size: 1.2rem;
  }
}
.p-tbl td {
  font-family: "Zen Kaku Gothic New", "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
@media all and (max-width: 639px) {
  .p-tbl td {
    font-size: 1rem;
  }
}
@media all and (max-width: 639px) {
  .p-tbl th,
  .p-tbl td {
    padding: 10px 5px;
    font-size: 1rem;
  }
}

.company {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 5px;
}
.company th,
.company td {
  padding: 15px;
  vertical-align: middle;
}
.company th {
  width: 30%;
  position: relative;
  background: #087768;
  color: #fff;
  font-weight: 600;
}
.company th::after {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: #f9f9f9;
  border-width: 10px;
  border-left-color: #087768;
  margin-top: -10px;
}
@media all and (max-width: 639px) {
  .company th {
    width: 40%;
  }
}
.company td {
  background: #f9f9f9;
  padding-left: 20px;
}

.tbl0 {
  width: 100%;
  margin-bottom: 30px;
}
.tbl0 th,
.tbl0 td {
  padding: 5px;
  border: 0;
  font-size: 1.3rem;
  border-bottom: 1px solid #555;
  color: #2c1e07;
  vertical-align: middle;
}
@media all and (max-width: 639px) {
  .tbl0 th,
  .tbl0 td {
    font-size: 0.9rem;
  }
}
.tbl0 th {
  font-weight: normal;
  background: none;
  color: #333;
  font-weight: 600;
}
.tbl0 th:after, .tbl0 th:before {
  display: none;
}
.tbl0 th.nmb {
  font-family: "Oswald", sans-serif;
  font-weight: 300;
}
.tbl0.type1 th,
.tbl0.type1 td {
  font-size: 1.5rem;
  padding: 5px 10px;
  text-align: center;
  border: 1px solid #ccc;
}
@media all and (max-width: 639px) {
  .tbl0.type1 th,
  .tbl0.type1 td {
    padding: 3px 5px;
    font-size: 1.2rem;
  }
  .tbl0.type1 th:nth-child(1), .tbl0.type1 th:nth-child(2),
  .tbl0.type1 td:nth-child(1),
  .tbl0.type1 td:nth-child(2) {
    width: 10%;
  }
  .tbl0.type1 th:nth-child(3), .tbl0.type1 th:nth-child(4), .tbl0.type1 th:nth-child(5),
  .tbl0.type1 td:nth-child(3),
  .tbl0.type1 td:nth-child(4),
  .tbl0.type1 td:nth-child(5) {
    width: 20%;
  }
}
.tbl0.type1 th {
  background: rgba(8, 119, 104, 0.1);
}

.f-tbl {
  width: 100%;
}
.f-tbl th, .f-tbl td {
  padding: 5px 15px;
  font-size: 1.3rem;
  font-weight: 600;
}
@media all and (max-width: 896px) {
  .f-tbl th, .f-tbl td {
    padding: 5px 10px;
    font-size: 1.1rem;
  }
}
.f-tbl.ja th {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
}

.tbl_time {
  width: 100%;
  position: relative;
}
.tbl_time tr {
  position: relative;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}
.tbl_time tr::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  bottom: -2rem;
  left: 10%;
  background: #087768;
  z-index: -1;
}
@media all and (max-width: 896px) {
  .tbl_time tr::after {
    left: 18%;
  }
}
.tbl_time tr:last-child {
  margin-bottom: 0;
}
.tbl_time tr:last-child::after {
  display: none;
}
.tbl_time th {
  border: 2px solid #087768;
  color: #087768;
  background: #fefefe;
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.5rem;
  padding: 3px;
  display: block;
  position: relative;
  width: 20%;
  line-height: 1.5;
}
@media all and (max-width: 896px) {
  .tbl_time th {
    width: 35%;
  }
}
@media all and (max-width: 639px) {
  .tbl_time th {
    font-weight: 400;
    font-size: 1.4rem;
  }
}
.tbl_time td {
  width: 75%;
  padding: 3px;
  position: relative;
  display: block;
}
@media all and (max-width: 896px) {
  .tbl_time td {
    width: 60%;
  }
}

/* ggmap
----------------------------------*/
.ggmap {
  position: relative;
  padding-bottom: 46.25%;
  height: 0;
  overflow: hidden;
}
.ggmap iframe,
.ggmap object,
.ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ggmap.footer {
  padding-bottom: 0;
  height: 400px;
  background: #087768;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin-bottom: 10px;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/* list
----------------------------------*/
.list_check li {
  font-weight: 600;
}
.list_check li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: 900;
  margin-right: 8px;
  color: #087768;
}

.list_dot li {
  position: relative;
  padding: 0 5px 0 2rem;
}
.list_dot li:before {
  content: "●";
  margin-right: 8px;
  color: #087768;
  font-weight: 600;
  position: absolute;
  top: 0.2rem;
  left: 0;
}

.list-inline li {
  display: inline-block;
  padding: 3px;
}
.list-inline li:not(:last-of-type):after {
  content: "/";
  margin: 0 5px;
  color: #087768;
  font-weight: normal;
}
@media all and (max-width: 639px) {
  .list-inline li {
    display: block;
    padding: 0;
  }
  .list-inline li:before {
    content: "◆";
    color: #087768;
    margin-right: 5px;
  }
  .list-inline li:not(:last-of-type):after {
    display: none;
  }
}

.list_disc li {
  padding: 5px 0;
}
.list_disc li:not(:last-of-type) {
  margin-bottom: 5px;
  border-bottom: 1px dashed #ccc;
}
.list_disc li:before {
  content: "●";
  margin-right: 5px;
  color: #3dac9d;
}
.list_disc.type1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 15px;
}
.list_disc.type1 li {
  width: 48%;
  font-size: 1.4rem;
  font-weight: 500;
  position: relative;
  padding: 0;
  padding-left: 1.4em;
}
.list_disc.type1 li b {
  color: #3dac9d;
}
.list_disc.type1 li:not(:last-of-type) {
  margin-bottom: 5px;
  border-bottom: none;
}
.list_disc.type1 li:before {
  color: #3dac9d;
  position: absolute;
  top: 0;
  left: 0;
}
@media all and (max-width: 639px) {
  .list_disc.type1 li {
    font-size: 1.2rem;
  }
}

.list-btn {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto 50px;
}
.list-btn li {
  width: 31%;
  margin: 0 1.995% 10px 0;
}
.list-btn li a {
  display: block;
  color: #087768;
  font-weight: 600;
  padding: 10px 3px;
  text-align: center;
  width: 100%;
  height: 100%;
  line-height: 1.5;
  font-size: 1.55rem;
  letter-spacing: 0;
  border-radius: 8px;
  border: 1px solid #087768;
}
.list-btn li a:hover {
  background: #087768;
  color: #fefefe;
}
.list-btn li:nth-child(3n) {
  margin-right: 0;
}
@media all and (max-width: 896px) {
  .list-btn li {
    width: 98%;
    margin: 0 auto 10px;
  }
  .list-btn li:nth-child(3n) {
    margin: 0 auto 10px;
  }
}
@media all and (max-width: 639px) {
  .list-btn li {
    width: 100%;
  }
  .list-btn li a {
    font-size: 1.3rem;
  }
}
.list-btn.type1 {
  margin: 0 auto;
}
.list-btn.type1 li {
  width: 49%;
  margin: 0 1.995% 10px 0;
}
.list-btn.type1 li a {
  background: #087768;
  border: none;
  color: #fefefe;
  border-radius: 5px;
  font-size: 1.6rem;
  font-weight: 500;
}
.list-btn.type1 li a:hover {
  background: #02211d;
}
.list-btn.type1 li:nth-child(2n) {
  margin-right: 0;
}
@media all and (max-width: 1100px) {
  .list-btn.type1 li {
    margin: 0 auto 10px;
    width: 90%;
  }
  .list-btn.type1 li:nth-child(2n) {
    margin: 0 auto 10px;
  }
  .list-btn.type1 li:last-child {
    margin-bottom: 0;
  }
}
@media all and (max-width: 639px) {
  .list-btn.type1 li a {
    font-size: 1.4rem;
  }
}
.list-btn.type2 {
  margin: 0 auto;
}
.list-btn.type2 li {
  margin: 0 auto 10px;
  width: 90%;
}
.list-btn.type2 li a {
  background: #fefefe;
  border-color: #087768;
  color: #087768;
  border-radius: 5px;
  font-size: 1.6rem;
  font-weight: 500;
}
.list-btn.type2 li a span {
  font-size: 1.2rem;
  display: block;
}
.list-btn.type2 li a:hover {
  background: #087768;
  color: #fefefe;
}
.list-btn.type2 li:nth-child(2n) a {
  border-color: #3dac9d;
  color: #3dac9d;
}
.list-btn.type2 li:nth-child(2n) a:hover {
  background: #3dac9d;
  color: #fefefe;
}
.list-btn.type2 li:last-child {
  margin-bottom: 0;
}
@media all and (max-width: 639px) {
  .list-btn.type2 li a {
    font-size: 1.4rem;
  }
}

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

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

.blog-wrap {
  display: flex;
  flex-wrap: wrap;
}
.blog-wrap * {
  transition: 0.3s;
}
.blog-wrap > li {
  width: 24%;
  margin: 0 0.5% 20px 0.5%;
  padding: 15px;
  background: #fefefe;
  position: relative;
  border: 1px solid #ddd;
}
@media all and (max-width: 1100px) {
  .blog-wrap > li {
    width: 49%;
  }
}
.blog-wrap > li > a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}
.blog-wrap > li > a:hover ~ .blog-img img {
  opacity: 1;
  transform: scale(1.2);
}
@media all and (max-width: 639px) {
  .blog-wrap > li {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 48%;
    margin: 0 auto 10px;
    border: none;
    border-bottom: none;
    padding: 15px 5px;
  }
}

.blog-wrap2 {
  display: flex;
  flex-wrap: wrap;
}
.blog-wrap2 * {
  transition: 0.3s;
}
.blog-wrap2 > li {
  width: 100%;
  margin: 0 0.5%;
  background: transparent;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  box-shadow: 0 0 5px #ddd;
  border: 1px solid rgba(221, 221, 221, 0.5);
  border-radius: 10px;
  align-items: center;
}
.blog-wrap2 > li:hover {
  box-shadow: 15px 15px 10px #ddd;
}
.blog-wrap2 > li > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.blog-wrap2 > li > a:hover ~ .blog-img img {
  opacity: 1;
  transform: scale(1.2);
}
@media all and (max-width: 639px) {
  .blog-wrap2 > li {
    width: 100%;
    margin: 0 auto;
  }
}
.blog-wrap2 .blog-detail {
  width: 55%;
  margin-top: -5px;
  padding: 15px;
}
@media all and (max-width: 639px) {
  .blog-wrap2 .blog-detail {
    width: 95%;
    padding: 15px 10px;
  }
}
.blog-wrap2 .blog-date {
  border: none;
  width: 100px;
  padding: 5px;
  line-height: 1.3;
  text-align: center;
  color: #fefefe;
  background: #087768;
  font-size: 10px;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-weight: 600;
  border-radius: 5px;
}
.blog-wrap2 .blog-title {
  font-weight: 600;
  line-height: 1.3;
  margin: 10px 0;
  font-size: 2rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: #2c1e07;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
}
@media all and (max-width: 896px) {
  .blog-wrap2 .blog-title {
    font-size: 1.6rem;
  }
}
.blog-wrap2 .blog-txt {
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  padding: 0;
}
@media all and (max-width: 896px) {
  .blog-wrap2 .blog-txt {
    font-size: 12px;
  }
}
.blog-wrap2 .blog-img {
  width: 45%;
  height: 250px;
  overflow: hidden;
  box-sizing: border-box;
  border-radius: 10px 0 0 10px;
}
.blog-wrap2 .blog-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.4s ease;
  font-family: "object-fit: cover;";
  /*IE対策*/
}
.blog-wrap2 .blog-img:hover img {
  opacity: 1 !important;
  transform: scale(1.2);
}
@media all and (max-width: 896px) {
  .blog-wrap2 .blog-img {
    height: 180px;
  }
}
@media all and (max-width: 639px) {
  .blog-wrap2 .blog-img {
    width: 100%;
  }
}

.blog-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  box-sizing: border-box;
}
.blog-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.4s ease;
  font-family: "object-fit: cover;";
  /*IE対策*/
}
.blog-img:hover img {
  opacity: 1 !important;
  transform: scale(1.2);
}
@media all and (max-width: 639px) {
  .blog-img {
    width: 100%;
    height: 130px;
    margin-bottom: 10px;
  }
}

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

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

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

.blog-page-detail {
  margin-bottom: 15px;
}

.blog-date {
  border: 1px solid #ccc;
  width: 100px;
  padding: 5px 0;
  line-height: 1.3;
  text-align: center;
  display: inline-block;
  color: #aaa;
  font-size: 12px;
}

.blog-date2 {
  color: #032f29;
  font-size: 0.9em;
  margin-bottom: 5px;
  margin-right: 5px;
}
.blog-date2:before {
  font-family: "Font Awesome 5 Free";
  content: "\f017";
  font-weight: 900;
  margin-right: 5px;
}

.blog-title {
  font-weight: 600;
  line-height: 1.5;
  margin: 6px 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media all and (max-width: 639px) {
  .blog-title {
    margin-bottom: 8px;
  }
}

.blog-txt {
  line-height: 1.5;
  padding: 8px;
}
@media all and (max-width: 639px) {
  .blog-txt {
    font-size: 12px;
    padding: 8px 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    padding: 0;
  }
}

.pages {
  text-align: center;
  margin-top: 30px;
}
.pages .page_next,
.pages .page_prev {
  display: inline-block;
  margin: 0 20px;
}
.pages .page_next a,
.pages .page_prev a {
  color: #087768;
  padding: 4px 5px;
  background: #fff;
  font-size: 12px;
}

.category_nav {
  border: 1px solid #dddddd;
}
.category_nav li a {
  display: block;
  padding: 15px;
  border-bottom: 1px dotted #dddddd;
  background-color: #ffffff;
}
.category_nav li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0a9";
  font-weight: 900;
  margin-right: 5px;
}
.category_nav li a:hover {
  background: #e6e9e7;
}
.category_nav li:last-child a {
  border-bottom: none;
}

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

.w300 {
  width: 300px;
}

.spbr {
  display: none;
}

.color1 {
  color: #087768;
}

.color2 {
  color: #3dac9d;
}

.color3 {
  color: #82afa8;
}

.relative {
  position: relative;
}

.num {
  font-weight: 600;
}
.num a {
  color: #087768;
  font-size: 2.8rem;
  text-align: center;
  margin-left: 5px;
}
@media all and (max-width: 639px) {
  .num a {
    font-size: 2rem;
  }
}
.num a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
}
.num a:hover {
  color: #3dac9d;
}

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

.txt-link {
  font-weight: 600;
  text-decoration: underline;
  word-break: break-all;
}
.txt-link:hover {
  text-decoration: none;
}

.telbnr {
  max-width: 500px;
  margin: 30px auto 30px;
}
.telbnr li {
  border: 3px solid #ccc;
  padding: 10px 10px;
  text-align: center;
  border-radius: 50px;
}
.telbnr li a {
  display: block;
  font-size: 2.4rem;
  font-weight: 600;
  color: #087768;
}
.telbnr li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
}
.telbnr li a:hover {
  color: #087768;
}
@media all and (max-width: 639px) {
  .telbnr {
    max-width: 90%;
  }
  .telbnr li {
    width: 100%;
    margin: 0 auto 30px;
  }
  .telbnr li:last-of-type {
    margin-left: auto;
  }
  .telbnr li a {
    font-size: 2rem;
  }
}

.telbnr-ttl {
  font-weight: 600;
  font-size: 1.6rem;
  color: #333;
  margin-top: -30px;
}
.telbnr-ttl span {
  background: #e6e9e7;
  padding: 0 20px;
}
@media all and (max-width: 639px) {
  .telbnr-ttl {
    font-size: 1.3rem;
  }
}

/* breadcrumb
----------------------------------*/
.breadcrumb {
  max-width: 1200px;
  margin: 20px auto 20px;
  font-size: 1.2rem;
}
.breadcrumb li {
  display: inline;
  color: #999;
}
.breadcrumb li a {
  color: #087768;
}
.breadcrumb li + li:before {
  margin: 0 10px;
  content: ">";
}
@media all and (max-width: 639px) {
  .breadcrumb {
    font-size: 12px;
  }
}

/* form
----------------------------------*/
.form {
  margin: 0 auto;
  width: 90%;
}
.form dl dt {
  float: left;
  width: 280px;
  padding-top: 20px;
  font-weight: 600;
}
.form dl dt span {
  color: #fff;
  background: #087768;
  padding: 5px 8px;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 20px;
  position: relative;
  top: -2px;
}
.form dl dt span.nini {
  background: rgb(167, 167, 167);
}
.form dl dd {
  padding-left: 280px;
  padding-bottom: 20px;
  padding-top: 23px;
  line-height: 1.5;
  border-bottom: 1px dotted #cccccc;
  font-family: "Zen Kaku Gothic New", "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
}
.form dl dd:last-child {
  border-bottom: none;
}
.form dl dd input {
  margin-top: -0.5rem;
}
@media all and (max-width: 639px) {
  .form dl dd {
    font-size: 1.3rem;
  }
}
.form .textarea,
.form textarea {
  border: 0;
  padding: 15px;
  width: 100%;
  border-radius: 0;
  background: #f0f0f0;
  font-family: "Zen Kaku Gothic New", "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.form .textarea02 {
  width: 48.5%;
  margin-right: 3%;
}
.form .textarea02:last-child {
  margin-right: 0;
}
.form .textarea03 {
  width: 20%;
  margin-right: 1%;
  padding: 10px;
}
.form button {
  cursor: pointer;
  display: block;
  color: #fff;
  text-align: center;
  transition: all 0.2s ease-in-out 0s;
  border: 1px solid #087768;
  font-weight: 600;
  padding: 12px 5px;
  margin: 0 auto;
  width: 250px;
  background: #087768;
  border-radius: 25px;
}
.form button:hover {
  background: #fff;
  color: #087768;
}
.form button:before {
  font-weight: normal;
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 10px;
}
.form .select-wrap {
  position: relative;
  overflow: hidden;
  display: inline-block;
  min-width: 192px;
  min-width: 12em;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  color: #333;
}
.form .select-wrap select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  z-index: 2;
  display: block;
  width: 200%;
  width: -webkit-calc(100% + 5em);
  margin: 0;
  padding: 11px 35px 11px 11px;
  padding: 0.6875rem 2.1875rem 0.6875rem 0.6875rem;
  background: transparent;
  border: 0;
  outline: none;
  line-height: 1.5;
}
.form .entypo-down-open-mini:before {
  font-family: "FontAwesome";
  content: "\f0ab";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 12px;
  right: 0.75rem;
  margin-top: -8px;
  margin-top: -0.5rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  color: #087768;
}
.form label.radio_text {
  cursor: pointer;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
  padding-left: 20px;
  display: inline-block;
}
.form label.radio_text:before {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 1px solid #ccc;
  border-radius: 50%;
  left: 0px;
  top: 2px;
  content: "";
  z-index: 3;
}
.form label.radio_text:after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 100%;
  left: 2px;
  top: 4px;
  background-color: #087768;
  z-index: 1;
}
.form label.radio_text input[type=radio] {
  position: absolute;
  z-index: 2;
  width: 20px;
  height: 20px;
  left: -23px;
  top: 0px;
  margin: 0px;
  box-shadow: 20px -1px #fff;
}
.form label.radio_text input[type=radio]:checked {
  box-shadow: none;
}
.form label.radio_text input[type=radio]:focus {
  opacity: 0.2;
  box-shadow: 20px -1px #eeebda;
}
.form label.checkbox_text {
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  margin: 0 20px 5px 0;
  overflow: hidden;
  display: inline-block;
}
.form label.checkbox_text:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0px;
  top: 0;
  border: 1px solid #ccc;
  z-index: 3;
  padding: 1px;
}
.form label.checkbox_text:after {
  content: "";
  position: absolute;
  top: 40%;
  left: 5px;
  display: block;
  margin-top: -9px;
  width: 8px;
  height: 12px;
  border-right: 3px solid #087768;
  border-bottom: 3px solid #087768;
  transform: rotate(45deg);
  z-index: 1;
}
.form label.checkbox_text input[type=checkbox] {
  position: absolute;
  left: -40px;
  width: 20px;
  height: 20px;
  display: block;
  box-shadow: 41px 0px #fff;
  z-index: 2;
  margin: 0px;
  padding: 0px;
}
.form label.checkbox_text input[type=checkbox]:checked {
  box-shadow: none;
}
.form label.checkbox_text input[type=checkbox]:checked:focus {
  box-shadow: 40px 0px #666;
  opacity: 0.1;
}
.form label.checkbox_text input[type=checkbox]:focus {
  box-shadow: 41px 0px #eee;
}
.form input[type=text],
.form textarea {
  font-size: 16px;
}
@media all and (max-width: 639px) {
  .form input[type=text],
  .form textarea {
    transform: scale(0.9);
    margin-left: -5px;
  }
}

.fm-txt {
  font-size: 1.4rem;
  background: rgba(255, 255, 255, 0.5);
  padding: 5px;
}

.thanks {
  padding: 40px;
  border: 3px solid #3dac9d;
  background: #fefefe;
  max-width: 700px;
  margin: 0 auto;
  border-radius: 20px;
}
@media all and (max-width: 639px) {
  .thanks {
    max-width: 90%;
    padding: 30px 20px;
  }
}

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

.policy {
  padding: 30px;
  background: rgba(255, 255, 255, 0.8);
}

.mtitle_small {
  position: relative;
  font-size: 1.7rem;
  margin-bottom: 15px;
  color: #087768;
  font-weight: 600;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #ccc;
}
.mtitle_small:before {
  content: "";
  width: 50px;
  height: 1px;
  background-color: #087768;
  position: absolute;
  left: 0;
  bottom: -1px;
}
@media all and (max-width: 639px) {
  .mtitle_small {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

.mtitle_small2 {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
  font-weight: 600;
}
.mtitle_small2:before {
  content: "";
  background-color: #087768;
  width: 10px;
  height: 4px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

/*photo lightbox2
----------------------------*/
.gallery {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.gallery li {
  width: 18.5%;
  margin: 0 1.3333333333% 25px 0;
}
.gallery li:nth-child(5n) {
  margin-right: 0;
}
.gallery li a {
  background: rgba(230, 233, 231, 0.2);
  display: block;
  text-align: center;
  padding: 0px;
  height: 140px;
}
.gallery li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  /*IE対策*/
}
.gallery li p {
  font-size: 12px;
  text-align: center;
  line-height: 1.2;
  margin-top: 5px;
  letter-spacing: 0;
}
@media all and (max-width: 639px) {
  .gallery li {
    width: 31%;
    margin: 0 1% 20px;
  }
  .gallery li:nth-child(5n) {
    margin: 0 1% 20px;
  }
  .gallery li:nth-child(3n) {
    margin-right: 0;
  }
  .gallery li a {
    height: 100px;
  }
  .gallery li p {
    font-size: 12px;
  }
}
.gallery.col3 li {
  width: 31%;
  margin: 0 1% 60px;
}
.gallery.col3 li:nth-child(3n) {
  margin-right: 0;
}
.gallery.col3 li a {
  height: 120px;
  background: #fefefe;
}
.gallery.col3 li a img {
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain;";
}
.gallery.col3 li p {
  font-size: 12px;
  text-align: center;
  line-height: 1.2;
}
.gallery.col4 li {
  width: 23%;
  margin: 0 1% 20px;
}
.gallery.col4 li:nth-child(4n) {
  margin-right: 0;
}
.gallery.col4 li a {
  height: 250px;
  background: #fefefe;
}
.gallery.col4 li a img {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
.gallery.col4 li p {
  text-align: left;
}
@media all and (max-width: 896px) {
  .gallery.col4 li a {
    height: 150px;
  }
}
@media all and (max-width: 639px) {
  .gallery.col4 li {
    width: 48%;
    margin: 0 1% 10px;
  }
  .gallery.col4 li:nth-child(4n) {
    margin: 0 1% 10px;
  }
  .gallery.col4 li:nth-child(2n) {
    margin-right: 0;
  }
  .gallery.col4 li a {
    height: 150px;
  }
}

/*photo lightbox2 ここまで
----------------------------*/
/*photobox
----------------------------*/
.gallery-li {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.gallery-li li {
  width: 18.5%;
  margin: 0 1.3333333333% 25px 0;
}
.gallery-li li:nth-child(5n) {
  margin-right: 0;
}
.gallery-li li a {
  background: rgba(230, 233, 231, 0.2);
  display: block;
  text-align: center;
  padding: 0px;
  height: 140px;
}
.gallery-li li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  /*IE対策*/
}
.gallery-li li p {
  line-height: 1.2;
  margin-top: 5px;
  letter-spacing: 0;
}
@media all and (max-width: 639px) {
  .gallery-li li {
    width: 31%;
    margin: 0 1% 20px;
  }
  .gallery-li li:nth-child(5n) {
    margin: 0 1% 20px;
  }
  .gallery-li li:nth-child(3n) {
    margin-right: 0;
  }
  .gallery-li li a {
    height: 100px;
  }
  .gallery-li li p {
    font-size: 12px;
  }
}
.gallery-li.col3 li {
  width: 31%;
  margin: 0 1% 60px;
}
.gallery-li.col3 li:nth-child(3n) {
  margin-right: 0;
}
.gallery-li.col3 li a {
  height: 250px;
  background: #fefefe;
}
.gallery-li.col3 li a img {
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain;";
}
.gallery-li.col3 li p {
  font-size: 12px;
  line-height: 1.2;
}
@media all and (max-width: 639px) {
  .gallery-li.col3 li {
    width: 48%;
    margin: 0 1% 10px;
  }
  .gallery-li.col3 li:nth-child(3n) {
    margin: 0 1% 10px;
  }
  .gallery-li.col3 li:nth-child(2n) {
    margin-right: 0;
  }
  .gallery-li.col3 li a {
    height: 150px;
  }
}
.gallery-li.col4 li {
  width: 23%;
  margin: 0 1% 20px;
}
.gallery-li.col4 li:nth-child(4n) {
  margin-right: 0;
}
.gallery-li.col4 li a {
  height: 250px;
  background: #fefefe;
}
.gallery-li.col4 li a img {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
.gallery-li.col4 li p {
  text-align: left;
}
@media all and (max-width: 896px) {
  .gallery-li.col4 li a {
    height: 150px;
  }
}
@media all and (max-width: 639px) {
  .gallery-li.col4 li {
    width: 48%;
    margin: 0 1% 10px;
  }
  .gallery-li.col4 li:nth-child(4n) {
    margin: 0 1% 10px;
  }
  .gallery-li.col4 li:nth-child(2n) {
    margin-right: 0;
  }
  .gallery-li.col4 li a {
    height: 150px;
  }
}

.gallery {
  background: #f2f2f2;
  width: 100%;
  height: 250px;
  text-align: center;
  vertical-align: middle;
  overflow: hidden;
  position: relative;
}
@media all and (max-width: 896px) {
  .gallery {
    height: 200px;
  }
}

.grid {
  position: relative;
  padding: 0 !important;
  width: 100% !important;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.grid-item {
  transition: 0.3s ease-in-out;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.grid-item a {
  display: block;
  position: relative;
  text-align: center;
  width: 100%;
  height: 250px;
  background-color: #fff;
}
@media all and (max-width: 896px) {
  .grid-item a {
    height: 200px;
  }
}
.grid-item a img {
  vertical-align: middle;
  width: 100%;
  height: 100%;
  -o-object-fit: cover !important;
     object-fit: cover !important;
}
.grid-item a:hover img {
  opacity: 0.8;
}
.grid-item * {
  transition: 0.3s;
}
.grid-item .hide_area {
  pointer-events: none;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  color: #ffffff;
  background-color: rgba(8, 119, 104, 0.7);
  transform: translateY(100%);
  transition: transform 0.5s;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
@media all and (max-width: 896px) {
  .grid-item .hide_area {
    transform: translateY(0);
    padding: 20px 5px;
  }
}
.grid-item .hide_area .txt-area .ttl {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  /*
  &:before {
   content: "『";
   padding-right: 5px;
  }
  &:after {
   content: "』";
   padding-left: 5px;
  }*/
}
@media all and (max-width: 896px) {
  .grid-item .hide_area .txt-area .ttl {
    font-size: 1.5rem;
  }
}
@media all and (max-width: 639px) {
  .grid-item .hide_area .txt-area .ttl {
    font-size: 1.3rem;
  }
}
.grid-item .hide_area .txt-area .txt {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 200;
}
@media all and (max-width: 639px) {
  .grid-item .hide_area .txt-area .txt {
    font-size: 1rem;
  }
}
.grid-item:hover .hide_area {
  transform: translateY(0);
}

/* list2
----------------------------*/
.list2 {
  display: flex;
  flex-wrap: wrap;
  max-width: 1500px;
  margin-top: -50px;
  margin-left: auto;
  margin-right: auto;
}
@media all and (max-width: 639px) {
  .list2 {
    margin-top: -35px;
  }
}
.list2.ai-c {
  align-items: center;
}
.list2.jc-c {
  justify-content: center;
}
.list2.w-t70 > li,
.list2.w-t70 .child {
  width: 48%;
  margin-top: 50px;
}
.list2.w-t70 > li:nth-child(2n),
.list2.w-t70 .child:nth-child(2n) {
  margin-left: 4%;
}
@media all and (max-width: 639px) {
  .list2.w-t70 > li:nth-child(2n),
  .list2.w-t70 .child:nth-child(2n) {
    margin-left: auto;
  }
}
.list2.w-t70 > li.od-1,
.list2.w-t70 .child.od-1 {
  order: 1;
  margin-left: 0;
}
@media all and (max-width: 639px) {
  .list2.w-t70 > li.od-1,
  .list2.w-t70 .child.od-1 {
    order: 2;
  }
}
.list2.w-t70 > li.od-2,
.list2.w-t70 .child.od-2 {
  order: 2;
  margin-left: 4%;
}
@media all and (max-width: 639px) {
  .list2.w-t70 > li.od-2,
  .list2.w-t70 .child.od-2 {
    margin: 25px auto 0;
    order: 1;
  }
}
.list2.w-t70 > li .img,
.list2.w-t70 .child .img {
  height: 320px;
}
.list2.w-t70 > li .img img,
.list2.w-t70 .child .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
@media all and (max-width: 639px) {
  .list2.w-t70 > li .img,
  .list2.w-t70 .child .img {
    height: 300px;
  }
}
@media all and (max-width: 896px) {
  .list2.w-t70 > li,
  .list2.w-t70 .child {
    width: 45%;
  }
  .list2.w-t70 > li:nth-child(2n),
  .list2.w-t70 .child:nth-child(2n) {
    width: 50%;
  }
}
@media all and (max-width: 639px) {
  .list2.w-t70 > li,
  .list2.w-t70 .child {
    width: 100%;
    margin: 35px auto 0;
  }
  .list2.w-t70 > li:nth-child(2n),
  .list2.w-t70 .child:nth-child(2n) {
    width: 100%;
  }
}
.list2 > li,
.list2 .child {
  width: 48%;
  margin-top: 50px;
}
.list2 > li:nth-child(2n),
.list2 .child:nth-child(2n) {
  margin-left: 4%;
}
@media all and (max-width: 639px) {
  .list2 > li:nth-child(2n),
  .list2 .child:nth-child(2n) {
    margin-left: auto;
  }
}
.list2 > li.od-1,
.list2 .child.od-1 {
  order: 1;
  margin-left: 0;
}
@media all and (max-width: 639px) {
  .list2 > li.od-1,
  .list2 .child.od-1 {
    order: 2;
  }
}
.list2 > li.od-2,
.list2 .child.od-2 {
  order: 2;
  margin-left: 4%;
}
@media all and (max-width: 639px) {
  .list2 > li.od-2,
  .list2 .child.od-2 {
    margin: 25px auto 0;
    order: 1;
  }
}
@media all and (max-width: 639px) {
  .list2 > li,
  .list2 .child {
    width: 100%;
    margin: 35px auto 0;
  }
}

.list3 {
  display: flex;
  flex-wrap: wrap;
}
.list3.jc-c {
  justify-content: center;
}
.list3.ai-c {
  align-items: center;
}
.list3 > li {
  width: 31%;
  position: relative;
  margin: 0 3.495% 20px 0;
}
.list3 > li:nth-child(3n) {
  margin-right: 0;
}
@media all and (max-width: 896px) {
  .list3 > li {
    width: 48%;
  }
  .list3 > li:nth-child(2n) {
    margin-right: 0;
  }
  .list3 > li:nth-child(3n) {
    margin-right: 3.495%;
  }
}
@media all and (max-width: 639px) {
  .list3 > li {
    width: 95%;
    margin: 0 auto 20px;
  }
  .list3 > li:nth-child(3n) {
    margin-right: auto;
  }
  .list3 > li:nth-child(2n) {
    margin-right: auto;
  }
}

.list4 {
  display: flex;
  flex-wrap: wrap;
}
.list4 > li, .list4 .child {
  width: 24%;
  margin: 0 1.3333333333% 25px 0;
}
.list4 > li:nth-child(4n), .list4 .child:nth-child(4n) {
  margin-right: 0;
}

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

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

.flow-dl .flow-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px;
}
.flow-dl .flow-inner:not(:last-of-type) {
  margin-bottom: 10px;
  border-bottom: solid 1px #087768;
}
.flow-dl .flow-inner dt {
  width: 10%;
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-size: 3rem;
  color: #087768;
  line-height: 1.3;
}
.flow-dl .flow-inner dt .eng {
  font-size: 1.1rem;
  color: #087768;
  display: block;
}
.flow-dl .flow-inner dt .eng::after {
  content: ".";
}
.flow-dl .flow-inner dd {
  width: 87%;
  border-left: 1px solid #087768;
  padding-left: 20px;
}
@media all and (max-width: 639px) {
  .flow-dl .flow-inner {
    padding: 6px;
  }
  .flow-dl .flow-inner dt {
    width: 20%;
    font-size: 1.7rem;
  }
  .flow-dl .flow-inner dt .eng {
    font-size: 1.25rem;
  }
  .flow-dl .flow-inner dd {
    width: 77%;
  }
}

.blog-month {
  margin-bottom: 10px;
}
.blog-month ul {
  display: flex;
  flex-wrap: wrap;
}
.blog-month ul li {
  width: 49%;
  padding: 5px 0;
  margin-bottom: 5px;
  text-align: center;
  letter-spacing: 0;
  background: #087768;
}
.blog-month ul li:nth-child(2n) {
  margin-left: 2%;
}
.blog-month ul li a {
  color: #fff;
  font-size: 12px;
}
.blog-month ul li:hover {
  background: #e6e9e7;
  transition: all 0.4s ease;
}

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

.list-center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.list-center li {
  width: 50%;
}
@media all and (max-width: 639px) {
  .list-center {
    flex-direction: column;
  }
  .list-center li {
    width: 100%;
  }
}

.faq-dl .faq-inner {
  position: relative;
}
.faq-dl .faq-inner:not(:last-of-type) {
  border-bottom: 1px dashed #e7e7e7;
}
.faq-dl .faq-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-image: linear-gradient(to right, #3dac9d, #82afa8);
  opacity: 0.1;
}
.faq-dl .faq-inner:hover::before {
  width: 100%;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.faq-dl .faq-inner dt,
.faq-dl .faq-inner dd {
  position: relative;
  font-size: 1.6rem;
}
@media all and (max-width: 639px) {
  .faq-dl .faq-inner dt,
  .faq-dl .faq-inner dd {
    font-size: 1.3rem;
  }
}
.faq-dl .faq-inner dt:before,
.faq-dl .faq-inner dd:before {
  position: absolute;
  content: "";
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  left: 0;
  top: 1rem;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
}
.faq-dl .faq-inner dt {
  font-weight: 600;
  padding: 20px 10px;
  padding-left: 55px;
  margin: 5px auto;
  cursor: pointer;
}
@media all and (max-width: 639px) {
  .faq-dl .faq-inner dt {
    padding-left: 45px;
  }
}
.faq-dl .faq-inner dt:before {
  content: "Q.";
  color: #2c1e07;
  font-size: 3rem;
}
@media all and (max-width: 639px) {
  .faq-dl .faq-inner dt:before {
    font-size: 2rem;
  }
}
.faq-dl .faq-inner dd {
  display: none;
  margin-top: 10px;
  padding: 20px 10px 40px;
  padding-left: 55px;
}
.faq-dl .faq-inner dd:before {
  content: "A.";
  color: #087768;
  font-size: 3rem;
}
@media all and (max-width: 639px) {
  .faq-dl .faq-inner dd:before {
    font-size: 2rem;
  }
}

.bnr-list {
  text-align: center;
}
@media all and (max-width: 896px) {
  .bnr-list li {
    width: 48%;
    margin-right: 4%;
  }
  .bnr-list li:nth-child(2n) {
    margin-right: 0;
  }
}
.bnr-list a {
  display: block;
  text-align: center;
  background: #fefefe;
  padding: 8px 5px;
  font-size: 1.3rem;
  height: 100%;
}
.bnr-list a img {
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  height: 45px;
}
@media all and (max-width: 639px) {
  .bnr-list a {
    font-size: 12px;
    line-height: 1.5;
  }
  .bnr-list a img {
    height: 30px;
  }
}
.bnr-list li.bnr-txt {
  font-size: 2rem;
  font-weight: 600;
  line-height: 60px;
  background: #fefefe;
}
@media all and (max-width: 639px) {
  .bnr-list li.bnr-txt {
    font-size: 1.5rem;
  }
}

.sns-list {
  display: flex;
}
.sns-list.center {
  justify-content: center;
  margin: 15px 0;
}
.sns-list.big li a {
  width: 50px;
  height: 55px;
  font-size: 2rem;
}
.sns-list li a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 17px;
  color: #fefefe;
  display: block;
  background: #087768;
  border-radius: 5px;
  text-align: center;
  transition: all 0.2s ease-in;
  position: relative;
}
.sns-list li a i {
  line-height: 1.5;
}
.sns-list li a:hover {
  opacity: 0.7;
}
.sns-list li a.btn-facebook {
  background: #1877f2;
}
.sns-list li a.btn-twitter {
  background: #1da1f2;
}
.sns-list li a.btn-line {
  background: #00b900;
}
.sns-list li a.btn-instagram {
  overflow: hidden;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
}
.sns-list li a.btn-instagram i {
  position: relative;
  z-index: 2;
}
.sns-list li a.btn-instagram:before {
  content: "";
  position: absolute;
  /*絶対配置*/
  top: 18px;
  /*ずらす*/
  left: -10px;
  /*ずらす*/
  width: 50px;
  /*グラデーションカバーの幅*/
  height: 50px;
  /*グラデーションカバーの高さ*/
  background: radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
  /*グラデーション②*/
}
.sns-list li:not(:last-child) {
  margin-right: 10px;
}
@media all and (max-width: 896px) {
  .sns-list li:not(:last-child) {
    margin-right: 5px;
    margin-bottom: 0;
  }
}

/* slide_list
----------------------------------*/
.slide_list {
  position: relative;
  display: none;
}
.slide_list li {
  margin-right: 1%;
  width: 350px;
}
.slide_list li img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
.slide_list li table, .slide_list li p {
  display: none;
}
@media all and (max-width: 639px) {
  .slide_list li img {
    height: 180px;
  }
}

.bnr-img img:hover {
  opacity: 0.5;
  transform: scale(0.98);
  transition: all 0.3s ease;
}

/* accordion
----------------------------------*/
.accordion dt, .accordion dd {
  position: relative;
  padding: 1em;
  z-index: 20;
}
.accordion:last-child {
  border-bottom: 1px dotted #087768;
}
.accordion dt {
  cursor: pointer;
  font-size: 1.2em;
  font-weight: 600;
  border-top: 1px dotted #087768;
  color: #087768;
}
.accordion dt:after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f067";
  font-weight: 900;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.7rem;
}
.accordion dt:hover {
  background: #065f53;
  color: #fefefe;
  transition: all 0.3s ease;
}
.accordion dt.on:after {
  font-family: "Font Awesome 5 Free";
  content: "\f068";
  font-weight: 900;
}
.accordion dd {
  display: none;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  background: #fff;
  color: #333;
  border-top: 1px dotted #087768;
}

.h-img {
  width: 250px;
  height: 300px;
  overflow: hidden;
}
.h-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
@media all and (max-width: 896px) {
  .h-img {
    width: 100%;
    height: 300px;
  }
}
.h-img.min {
  height: 110px;
  width: 110px;
  border-radius: 300px;
}
@media all and (max-width: 639px) {
  .h-img.min {
    width: 100%;
    height: 200px;
  }
}

.btn_wk2 a {
  text-align: center;
  position: relative;
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
  padding: 10px;
  max-width: 200px;
  width: 80%;
  font-size: 90%;
  margin-top: 30px;
  margin-bottom: 6px;
  margin-left: auto;
  margin-right: auto;
  display: table;
  transition: all 0.3s ease-in-out;
  line-height: 1.4;
}
.btn_wk2 a span {
  font-family: "Nanum Gothic", sans-serif;
  font-weight: 400;
  letter-spacing: 0.4em;
}
.btn_wk2 a:before, .btn_wk2 a:after {
  content: "";
  position: absolute;
  border: solid #fff;
  width: 10px;
  height: 10px;
  transition: all 0.3s ease-in-out;
}
.btn_wk2 a:before {
  top: -6px;
  left: -6px;
  border-width: 1px 0 0 1px;
}
.btn_wk2 a:after {
  bottom: -6px;
  right: -6px;
  border-width: 0 1px 1px 0;
}
.btn_wk2 a:hover {
  color: #087768;
  background: #fff;
  border-color: transparent;
}
.btn_wk2 a:hover:before, .btn_wk2 a:hover:after {
  width: calc(100% + 11px);
  height: calc(100% + 11px);
  border-color: #fff;
}
.btn_wk2.btn-r a {
  margin-right: 5px;
}
.btn_wk2.base a {
  color: #087768;
  border: 1px solid #087768;
}
.btn_wk2.base a:before, .btn_wk2.base a:after {
  border: solid #087768;
}
.btn_wk2.base a:before {
  top: -6px;
  left: -6px;
  border-width: 1px 0 0 1px;
}
.btn_wk2.base a:after {
  bottom: -6px;
  right: -6px;
  border-width: 0 1px 1px 0;
}
.btn_wk2.base a:hover {
  color: #fff;
  background: #087768;
  border-color: transparent;
}
.btn_wk2.base a:hover:before, .btn_wk2.base a:hover:after {
  border-color: #087768;
}
.btn_wk2.right a {
  margin-right: 0;
}
.btn_wk2.left a {
  margin-left: 0;
}

.menu-list {
  width: 100%;
  margin: auto;
}
.menu-list > li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 5px 0;
}
.menu-list > li:not(:last-child) {
  margin-bottom: 20px;
}
.menu-list > li p {
  display: inline-block;
  line-height: 1.5;
}
.menu-list > li:before {
  background: radial-gradient(#2c1e07 20%, transparent 0) center center/8px 8px;
  content: "";
  display: inline-block;
  flex: 1;
  height: 4px;
  margin: 0 1.2em;
}
@media all and (max-width: 639px) {
  .menu-list > li:not(:last-child) {
    margin-bottom: 30px;
  }
  .menu-list > li:before {
    margin: 0 5px;
  }
}
.menu-list > li .info {
  flex-basis: 100%;
  font-size: 95%;
  color: #2c1e07;
  padding: 5px 10px;
  background: rgba(61, 172, 157, 0.1);
}
.menu-list > li .info.capt {
  margin-top: 10px;
  background: #fefefe;
}
.menu-list > li .left {
  order: -1;
  max-width: 65%;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #2c1e07;
  font-size: 1.5rem;
  position: relative;
}
.menu-list > li .left .small {
  display: block;
  font-size: 1.2rem;
}
.menu-list > li .left .small::before {
  content: "[";
  padding-right: 3px;
}
.menu-list > li .left .small::after {
  content: "]";
  padding-left: 3px;
}
.menu-list > li .left:after {
  content: ".";
  display: inline-block;
  width: 0;
  color: transparent;
  pointer-events: none;
}
@media all and (max-width: 639px) {
  .menu-list > li .left {
    max-width: 60%;
    font-size: 1.2rem;
    letter-spacing: 0;
  }
  .menu-list > li .left .small {
    font-size: 1rem;
  }
}
.menu-list > li .right {
  max-width: 35%;
  text-align: right;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-size: 1.8rem;
}
@media all and (max-width: 639px) {
  .menu-list > li .right {
    font-size: 1.6rem;
  }
}

.tab_area {
  width: 100%;
  margin: 0 auto;
  flex-wrap: wrap;
  display: flex;
  justify-content: space-between;
}
.tab_area > .content_class {
  padding: 40px 0;
  border-top: 2px solid #087768;
}
@media all and (max-width: 639px) {
  .tab_area > .content_class {
    padding: 25px 0;
    border-top: none;
  }
}

.tab_class {
  width: calc(50% - 20px);
  height: 50px;
  background-color: #fefefe;
  border: 2px solid #087768;
  color: #087768;
  font-weight: 600;
  border-bottom: none;
  line-height: 50px;
  margin: 0 10px;
  font-size: 15px;
  border-radius: 10px 10px 0 0;
  text-align: center;
  display: block;
  float: left;
  order: -1;
}
@media all and (max-width: 639px) {
  .tab_class {
    width: 100%;
    border: none;
    border-radius: 0;
    background: rgba(61, 172, 157, 0.2);
    margin-bottom: 5px;
  }
}

input[name=tab_name] {
  display: none;
}

input:checked + .tab_class {
  background-color: #087768;
  color: #fefefe;
}

.content_class {
  display: none;
  width: 100%;
}

input:checked + .tab_class + .content_class {
  display: block;
}

.feaure-bnr {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media all and (max-width: 896px) {
  .feaure-bnr {
    max-width: 80%;
    margin-bottom: -40px;
  }
}
@media all and (max-width: 639px) {
  .feaure-bnr {
    max-width: 95%;
  }
}
.feaure-bnr > ul > li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  padding: 0 10px 100px;
}
.feaure-bnr > ul > li:last-child {
  padding-bottom: 50px;
}
@media all and (max-width: 639px) {
  .feaure-bnr > ul > li {
    width: 100%;
    padding: 55px 10px;
  }
}
.feaure-bnr > ul > li .img-area {
  width: 60%;
  height: 400px;
  overflow: hidden;
  background: #e6e9e7;
  border-radius: 10px;
}
.feaure-bnr > ul > li .img-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
@media all and (max-width: 1100px) {
  .feaure-bnr > ul > li .img-area {
    width: 55%;
  }
}
@media all and (max-width: 896px) {
  .feaure-bnr > ul > li .img-area {
    width: 100%;
    height: 250px;
  }
}
.feaure-bnr > ul > li .text {
  width: 35%;
}
.feaure-bnr > ul > li .text h4 {
  font-size: 2rem;
  margin-bottom: 35px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  color: #087768;
}
@media all and (max-width: 896px) {
  .feaure-bnr > ul > li .text h4 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}
@media all and (max-width: 1100px) {
  .feaure-bnr > ul > li .text {
    width: 40%;
  }
}
@media all and (max-width: 896px) {
  .feaure-bnr > ul > li .text {
    width: 100%;
    margin-top: 40px;
    padding: 0 10px;
  }
}
.feaure-bnr > ul > li .btn a {
  position: relative;
  display: flex;
  justify-content: end;
  margin: 0 auto;
  margin-top: 65px;
  width: 114px;
}
@media all and (max-width: 896px) {
  .feaure-bnr > ul > li .btn a {
    margin-top: 50px;
    margin-bottom: 30px;
  }
}
.feaure-bnr > ul > li .btn a .link {
  display: flex;
  align-items: center;
  font-size: 2rem;
  line-height: 1;
  color: #087768;
  padding-right: 60px;
  font-family: "Nanum Gothic", sans-serif;
  font-weight: 400;
}
@media all and (max-width: 896px) {
  .feaure-bnr > ul > li .btn a .link {
    padding-right: 50px;
  }
}
.feaure-bnr > ul > li .btn a:before {
  position: absolute;
  content: "";
  width: 45px;
  height: 45px;
  border: 1px solid #087768;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s ease-in-out;
}
@media all and (max-width: 896px) {
  .feaure-bnr > ul > li .btn a:before {
    width: 40px;
    height: 40px;
  }
}
.feaure-bnr > ul > li .btn a:after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  top: 50%;
  right: 25px;
  border-top: 1px solid #087768;
  border-right: 1px solid #087768;
  transform: rotate(45deg) translateY(-50%);
  transition: 0.3s ease-in-out;
}
@media all and (max-width: 896px) {
  .feaure-bnr > ul > li .btn a:after {
    right: 20px;
  }
}
.feaure-bnr > ul > li .btn a:hover {
  transition: all 0.3s ease;
}
.feaure-bnr > ul > li .btn a:hover:before {
  background: #087768;
}
.feaure-bnr > ul > li .btn a:hover:after {
  border-color: #fefefe !important;
}
.feaure-bnr > ul > li:nth-child(2n) .img-area {
  order: 2;
}
@media all and (max-width: 896px) {
  .feaure-bnr > ul > li:nth-child(2n) .img-area {
    order: 1;
  }
}
.feaure-bnr > ul > li:nth-child(2n) .text {
  order: -1;
}
@media all and (max-width: 896px) {
  .feaure-bnr > ul > li:nth-child(2n) .text {
    order: 2;
  }
}

/* slide_list
----------------------------------*/
.slide_left, .slide_right {
  position: relative;
  display: none;
}
.slide_left li, .slide_right li {
  position: relative;
  margin-right: 2%;
  margin-bottom: 2%;
  width: 250px;
  height: 250px;
}
.slide_left li img, .slide_right li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
.slide_left li::after, .slide_right li::after {
  content: "";
  background-image: linear-gradient(to right top, #087768, #3dac9d, #82afa8);
  opacity: 0.2;
  z-index: -2;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: -5px;
  right: -5px;
}
.slide_left li p, .slide_right li p {
  display: none;
}
@media all and (max-width: 896px) {
  .slide_left li, .slide_right li {
    width: 200px;
    height: 200px;
  }
}

/* 4-6 じわっ（ぼかしから出現） */
.blur {
  animation-name: blurAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.blurTrigger {
  opacity: 0;
}

.top-greet {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.top-greet::before {
  content: "";
  width: 100%;
  height: calc(100% - 2em);
  background: #087768;
  position: absolute;
  z-index: -1;
  opacity: 0.1;
  bottom: 0;
  left: 0;
}
.top-greet::after {
  content: "Greeting";
  font-family: "Nanum Gothic", sans-serif;
  font-weight: 400;
  color: #087768;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2em;
}
.top-greet .inner {
  position: relative;
  padding: 5em 0 50px;
  margin: 0 auto;
  max-width: 500px;
  text-align: center;
  line-height: 2;
}
.top-greet .inner p + p {
  margin-top: 20px;
}
@media all and (max-width: 896px) {
  .top-greet .inner {
    max-width: 50%;
  }
}
@media all and (max-width: 639px) {
  .top-greet .inner {
    max-width: 90%;
    padding: 50px 0;
    text-align: left;
  }
}
.top-greet .img-area01, .top-greet .img-area02 {
  width: 300px;
  height: 450px;
  overflow: hidden;
}
@media all and (max-width: 1100px) {
  .top-greet .img-area01, .top-greet .img-area02 {
    width: 200px;
  }
}
@media all and (max-width: 896px) {
  .top-greet .img-area01, .top-greet .img-area02 {
    height: 300px;
    width: 25%;
  }
}
@media all and (max-width: 639px) {
  .top-greet .img-area01, .top-greet .img-area02 {
    width: 90%;
    height: 250px;
  }
}
.top-greet .img-area01 img, .top-greet .img-area02 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-greet .img-area01 {
  margin: auto auto -25px -50px;
}
@media all and (max-width: 639px) {
  .top-greet .img-area01 {
    margin: 80px auto 0;
  }
}
.top-greet .img-area02 {
  margin: -5px -50px auto auto;
}
@media all and (max-width: 639px) {
  .top-greet .img-area02 {
    margin: 0 auto 50px;
  }
}

.products-top {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 30px;
}
@media all and (max-width: 639px) {
  .products-top {
    grid-template-columns: 1fr;
  }
}
.products-top li {
  grid-area: auto;
  position: relative;
}
.products-top li .img-area {
  position: relative;
  padding-top: 20px;
  margin-bottom: 20px;
}
.products-top li .img-area .img {
  width: 100%;
  height: 350px;
}
.products-top li .img-area .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.products-top li .img-area .ttl {
  width: 80%;
  padding: 10px;
  text-align: center;
  background: #087768;
  color: #fefefe;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  border-radius: 30px;
  font-size: 1.8rem;
}

.top-cnts-area {
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.top-cnts-area .img-area {
  width: 65%;
  height: 500px;
  overflow: hidden;
}
.top-cnts-area .img-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
@media all and (max-width: 1100px) {
  .top-cnts-area .img-area {
    height: 550px;
  }
}
@media all and (max-width: 896px) {
  .top-cnts-area .img-area {
    width: 100%;
    height: 250px;
  }
}
.top-cnts-area .txt-area {
  width: 30%;
  padding-right: 10%;
  line-height: 2.1;
}
.top-cnts-area .txt-area h3 {
  font-size: 2rem;
  color: #087768;
  margin-bottom: 30px;
}
@media all and (max-width: 1100px) {
  .top-cnts-area .txt-area h3 {
    font-size: 1.8rem;
  }
}
@media all and (max-width: 896px) {
  .top-cnts-area .txt-area {
    width: 100%;
    padding: 50px 40px 0;
  }
}
@media all and (max-width: 639px) {
  .top-cnts-area .txt-area {
    padding: 50px 25px 0;
  }
}
@media all and (max-width: 896px) {
  .top-cnts-area.type1 .img-area {
    order: 1;
  }
}
.top-cnts-area.type1 .txt-area {
  order: -1;
  padding-left: 10%;
  padding-right: 0;
}
@media all and (max-width: 896px) {
  .top-cnts-area.type1 .txt-area {
    order: 2;
    padding-left: 0;
  }
}

.cnts-area {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.cnts-area .img-area {
  width: 55%;
  height: 500px;
  overflow: hidden;
}
.cnts-area .img-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
@media all and (max-width: 1100px) {
  .cnts-area .img-area {
    height: 550px;
  }
}
@media all and (max-width: 896px) {
  .cnts-area .img-area {
    width: 100%;
    height: 250px;
  }
}
.cnts-area .img-area.h550 {
  height: 550px;
}
@media all and (max-width: 1100px) {
  .cnts-area .img-area.h550 {
    height: 600px;
  }
}
@media all and (max-width: 896px) {
  .cnts-area .img-area.h550 {
    width: 100%;
    height: 250px;
  }
}
.cnts-area .txt-area {
  width: 40%;
  line-height: 2.1;
}
.cnts-area .txt-area h3 {
  font-size: 2rem;
  color: #087768;
  margin-bottom: 30px;
}
@media all and (max-width: 1100px) {
  .cnts-area .txt-area h3 {
    font-size: 1.8rem;
  }
}
@media all and (max-width: 896px) {
  .cnts-area .txt-area {
    width: 100%;
    padding: 50px 40px 0;
  }
}
@media all and (max-width: 639px) {
  .cnts-area .txt-area {
    padding: 50px 25px 0;
  }
}
@media all and (max-width: 896px) {
  .cnts-area.type1 .img-area {
    order: 1;
  }
}
.cnts-area.type1 .txt-area {
  order: -1;
}
@media all and (max-width: 896px) {
  .cnts-area.type1 .txt-area {
    order: 2;
  }
}

/* 背景色の伸びアニメーション
---------------------------------------*/
.bgextend {
  animation-name: bgextendAnimeBase;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden;
  opacity: 0;
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.bgappear {
  animation-name: bgextendAnimeSecond;
  animation-duration: 1s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.bgUDextend::before {
  animation-name: bgUDextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top left, #087768, #065f53);
}

@keyframes bgUDextendAnime {
  0% {
    transform-origin: top;
    transform: scaleY(0);
  }
  50% {
    transform-origin: top;
    transform: scaleY(1);
  }
  50.001% {
    transform-origin: bottom;
  }
  100% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
}
.bgRLextend::before {
  animation-name: bgRLextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top left, #087768, #065f53);
}

@keyframes bgRLextendAnime {
  0% {
    transform-origin: right;
    transform: scaleX(0);
  }
  50% {
    transform-origin: right;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: left;
  }
  100% {
    transform-origin: left;
    transform: scaleX(0);
  }
}
.bgLRextend::before {
  animation-name: bgLRextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top left, #087768, #065f53);
}

@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
.bgappearTrigger,
.bgUDextendTrigger,
.bgRLextendTrigger,
.bgLRextendTrigger {
  opacity: 0;
}

/* .bnr-top-list
---------------------------------------*/
.bnr-top-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.bnr-top-list.min li .bnr-img-area {
  height: 151px;
}
.bnr-top-list li {
  width: 100%;
  margin-bottom: 20px;
  position: relative;
}
@media all and (max-width: 639px) {
  .bnr-top-list li {
    width: 100%;
    margin-bottom: 15px;
  }
  .bnr-top-list li:last-child {
    margin-bottom: 0;
  }
}
.bnr-top-list li .bnr-img-area {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
  display: block;
  background: #087768;
}
.bnr-top-list li .bnr-img-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  opacity: 0.45;
}
@media all and (max-width: 639px) {
  .bnr-top-list li .bnr-img-area {
    height: 150px;
  }
}
.bnr-top-list li:hover .bnr-img-area img {
  transition: ease 0.5s all;
  opacity: 0.45;
  filter: blur(5px);
  transform: scale(1.1);
}
.bnr-top-list li .text-area {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  display: block;
}
.bnr-top-list li .text-area h3 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #fefefe;
  display: block;
  font-size: 3rem;
}
.bnr-top-list li .text-area h3 span {
  display: block;
  font-family: "Nanum Gothic", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
}
@media all and (max-width: 896px) {
  .bnr-top-list li .text-area h3 {
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
  .bnr-top-list li .text-area h3 span {
    font-size: 1.2rem;
  }
}
.bnr-top-list li .text-area p {
  font-size: 1.2rem;
  color: #fefefe;
}
@media all and (max-width: 896px) {
  .bnr-top-list li .text-area p {
    font-size: 1.15rem;
    letter-spacing: 0;
  }
}
@media all and (max-width: 639px) {
  .bnr-top-list li .text-area p {
    font-size: 1rem;
  }
}
.bnr-top-list li .text-area .btn {
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.11em;
  line-height: 15px;
  text-align: left;
  color: #fff;
  margin-top: 15px;
  margin-left: 3px;
  text-transform: uppercase;
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
.bnr-top-list li .text-area .btn::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  margin-left: 5px;
}

/* news
----------------------------------*/
.News-list li {
  margin: 0 2% 35px 0;
}
.News-list li:last-child {
  margin-bottom: 0;
}
.News-list li a {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.News-list li a:hover .img-area img {
  transform: scale(1.1);
  transition: all ease 0.5s;
}
.News-list li:first-child .img-area {
  width: 100%;
  margin-bottom: 15px;
  height: 250px;
}
.News-list li:first-child .txt-area {
  width: 100%;
  display: block;
  position: relative;
}
.News-list li .img-area {
  width: 30%;
  display: block;
  position: relative;
  height: 100px;
  overflow: hidden;
}
.News-list li .img-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
.News-list li .txt-area {
  width: 65%;
  display: block;
  position: relative;
}
.News-list li .txt-area h4 {
  font-size: 1.7rem;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-weight: 600;
  color: #087768;
}
@media all and (max-width: 639px) {
  .News-list li .txt-area h4 {
    font-size: 1.4rem;
  }
}
.News-list li .txt-area .day {
  font-size: 1.2rem;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  margin-top: 10px;
  text-align: right;
  color: #3dac9d;
}
.News-list li .txt-area .info {
  font-size: 1.3rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: #333;
}

.News-list-dtl {
  display: flex;
  flex-wrap: wrap;
}
.News-list-dtl li {
  width: 32%;
  margin: 0 2% 50px 0;
  padding: 10px;
}
.News-list-dtl li:nth-child(3n+1) {
  margin-right: 0;
}
@media all and (max-width: 896px) {
  .News-list-dtl li {
    width: 49%;
  }
  .News-list-dtl li:nth-child(3n+1) {
    margin-right: 2%;
  }
  .News-list-dtl li:nth-child(2n-1) {
    margin-right: 0;
  }
}
@media all and (max-width: 639px) {
  .News-list-dtl li {
    width: 100%;
    margin: 0 auto 20px;
  }
  .News-list-dtl li:nth-child(3n+1) {
    margin-right: auto;
  }
  .News-list-dtl li:nth-child(2n-1) {
    margin-right: auto;
  }
  .News-list-dtl li:last-child {
    margin-bottom: 0;
  }
}
.News-list-dtl li a {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.News-list-dtl li:hover {
  display: block;
  box-shadow: 0 0 15px rgba(51, 51, 51, 0.1);
  padding: 10px;
  transition: all ease 0.5s;
}
.News-list-dtl li:hover .img-area img {
  transform: scale(1.1);
  transition: all ease 0.5s;
}
@media all and (max-width: 639px) {
  .News-list-dtl li:hover {
    box-shadow: none;
    padding: 0;
  }
}
.News-list-dtl li:first-child {
  width: 100%;
}
.News-list-dtl li:first-child a {
  align-items: center;
}
.News-list-dtl li:first-child .img-area {
  width: 55%;
  height: 320px;
  margin-bottom: 0;
}
.News-list-dtl li:first-child .txt-area {
  width: 40%;
  display: block;
  position: relative;
}
@media all and (max-width: 639px) {
  .News-list-dtl li:first-child {
    margin-bottom: 50px;
  }
  .News-list-dtl li:first-child .img-area {
    width: 100%;
    height: 250px;
    margin-bottom: 15px;
  }
  .News-list-dtl li:first-child .txt-area {
    width: 100%;
  }
  .News-list-dtl li:first-child .txt-area h4 {
    -webkit-line-clamp: 3;
  }
}
.News-list-dtl li .img-area {
  width: 100%;
  display: block;
  position: relative;
  height: 250px;
  overflow: hidden;
  background: #087768;
  margin-bottom: 15px;
}
.News-list-dtl li .img-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
@media all and (max-width: 639px) {
  .News-list-dtl li .img-area {
    margin-bottom: 0;
  }
}
.News-list-dtl li .txt-area {
  width: 100%;
  display: block;
  position: relative;
}
.News-list-dtl li .txt-area h4 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  color: #087768;
  font-weight: 600;
}
@media all and (max-width: 639px) {
  .News-list-dtl li .txt-area h4 {
    font-size: 1.5rem;
  }
}
.News-list-dtl li .txt-area .day {
  font-size: 1.2rem;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  margin-top: 10px;
  text-align: right;
  color: #3dac9d;
}
.News-list-dtl li .txt-area .info {
  font-size: 1.3rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: #333;
}
@media all and (max-width: 639px) {
  .News-list-dtl li .img-area {
    width: 30%;
    height: 120px;
  }
  .News-list-dtl li .txt-area {
    width: 65%;
  }
  .News-list-dtl li .txt-area h4 {
    font-size: 1.5rem;
  }
  .News-list-dtl li .txt-area .day {
    font-size: 1rem;
  }
  .News-list-dtl li .txt-area .info {
    font-size: 1.1rem;
  }
}

.list-services {
  margin: 0 auto 50px;
  position: relative;
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(2, 1fr);
}
@media all and (max-width: 639px) {
  .list-services {
    grid-template-columns: 1fr;
  }
}
.list-services li {
  grid-area: auto;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: rgba(130, 175, 168, 0.15);
  padding: 15px;
  border-radius: 10px;
}
@media all and (max-width: 896px) {
  .list-services li {
    display: block;
  }
}
.list-services li .icon-area {
  width: 150px;
  height: 100%;
  background: #fefefe;
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
}
.list-services li .icon-area .icon {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.list-services li .icon-area .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media all and (max-width: 896px) {
  .list-services li .icon-area {
    margin: 0 auto 15px;
    width: 100%;
    height: 200px;
  }
}
.list-services li .txt-area {
  width: calc(100% - 170px);
}
.list-services li .txt-area .ttl {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #087768;
}
@media all and (max-width: 1100px) {
  .list-services li .txt-area .ttl {
    font-size: 1.8rem;
    letter-spacing: 0;
  }
}
@media all and (max-width: 896px) {
  .list-services li .txt-area .ttl {
    font-size: 1.5rem;
    text-align: center;
  }
}
.list-services li .txt-area p {
  color: #333;
}
@media all and (max-width: 639px) {
  .list-services li .txt-area p {
    letter-spacing: 0;
    line-height: 1.5;
  }
}
@media all and (max-width: 896px) {
  .list-services li .txt-area {
    width: 100%;
  }
}

.txt-f-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 50px;
}

.Feature-li li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  margin-bottom: 80px;
}
.Feature-li li:last-child {
  margin-bottom: 0;
}
@media all and (max-width: 639px) {
  .Feature-li li {
    margin-bottom: 55px;
  }
}
.Feature-li li .img-box {
  position: relative;
  width: 55%;
  height: 400px;
  overflow: hidden;
}
.Feature-li li .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media all and (max-width: 896px) {
  .Feature-li li .img-box {
    height: 250px;
  }
}
@media all and (max-width: 639px) {
  .Feature-li li .img-box {
    width: 100%;
    height: 200px;
    margin-bottom: 30px;
  }
}
.Feature-li li .txt-box {
  width: 40%;
  position: relative;
}
@media all and (max-width: 639px) {
  .Feature-li li .txt-box {
    width: 100%;
    padding-top: 2em;
  }
}
.Feature-li li .txt-box h4 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  color: #087768;
  position: relative;
  padding-left: 20px;
}
@media all and (max-width: 1100px) {
  .Feature-li li .txt-box h4 {
    font-size: 1.8rem;
  }
}
.Feature-li li .txt-box h4 .nmb {
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-size: 2em;
  color: #82afa8;
  opacity: 0.5;
  z-index: -1;
  position: absolute;
  top: -2.5rem;
  left: 0;
  line-height: 1;
}
.Feature-li li .txt-box h4.non-nmb {
  padding-left: 0;
}
.Feature-li li:nth-child(2n) .txt-box {
  order: -1;
}
@media all and (max-width: 639px) {
  .Feature-li li:nth-child(2n) .txt-box {
    order: 1;
  }
}