@charset "UTF-8";
/* CSS Document */
.main {
  overflow: hidden;
}
/*----------section-top_sp----------*/
.section-top {
  position: relative;
  margin: 0 auto 50px auto;
}
.section-top__image {
  height: 350px;
  margin-left: 15%;
  margin-right: 0%;
  border-radius: 0 0 0 50px;
  overflow: hidden; /*ここ0916追加*/
  position: relative;
  z-index: 5;
}
.section-top__image-shadow {
  z-index: 1;
  display: inline-block;
  height: 350px;
  width: 100%;
  top: 65px;
  left: 0px;
  background-color: #fff1d9;
  position: absolute;
  border-radius: 0 0 0 50px;
}
.slide-item_1 {
  height: 350px;
  width: 100%;
  object-fit: cover;
  object-position: right 30% bottom 0;
  border-radius: 0 0 0 50px;
}
.slide-item_2 {
  height: 350px;
  width: 100%;
  object-fit: cover;
  object-position: right 50% bottom 0;
  border-radius: 0 0 0 50px;
}
.slide-item_4 {
  height: 350px;
  width: 100%;
  object-fit: cover;
  object-position: right 50% top 0;
  /*  object-position: right 50% bottom 0;*/
  border-radius: 0 0 0 50px;
}
@keyframes fadezoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
/*このクラス名で、ズームするアニメーションを呼び出せる*/
.slick-animation {
  animation: fadezoom 5s 0s forwards;
}
.section-top__image-message {
  position: absolute;
  bottom: 50px;
  left: 48px;
  color: #fff;
  font-size: 2.0rem;
  line-height: 4.5rem;
  font-weight: 500;
  text-align: left
}
/*----------section-top_pc----------*/
@media(min-width:960px) {
  .section-top {
    max-width: 1160px;
    margin: 0 auto 0px auto;
  }
  .slide-item_1 {
    height: 552px;
    width: 100%;
    object-position: right 20% bottom 0;
  }
  .slide-item_2 {
    height: 552px;
    width: 100%;
    object-position: right 20% bottom 20%;
  }
  .slide-item_4 {
    height: 552px;
    width: 100%;
  }
  .section-top__image {
    height: 552px;
    margin-left: 5%;
    margin-right: 0%;
  }
  .section-top__image-shadow {
    height: 552px;
  }
  .section-top__image-message h2 {
    bottom: 50px;
    left: 48px;
    color: #fff;
    font-size: 3.6rem;
    line-height: 6.0rem;
    font-weight: 500;
    display: block;
    text-align: left
  }
}
/*----------section-top__lead _sp----------*/
.section-top__lead {
  margin-bottom: 50px;
}
.section-top__lead h2 {
  display: inline-block;
  color: #333;
  font-size: 1.8rem;
  font-weight: 400;
  text-align: left;
  padding: 50px 24px 0 24px;
  margin: 0px 0px 50px 0px;
  line-height: 3.2rem;
}
.section-top__lead_br {
  display: none;
}
.section-top__lead-btn {
  max-width: 200px;
  margin: 0 auto;
}
a.btn_03 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  position: relative;
  background: #ee869a;
  border: 1px solid #ee869a;
  border-radius: 30px;
  box-sizing: border-box;
  padding: 0 40px 0 10px;
  color: #fff;
  font-size: 2.0rem;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-align: left;
  text-decoration: none;
  transition-duration: 0.3s;
}
a.btn_03:before {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 55%;
  right: 25px;
  margin-top: -6px;
}
a.btn_03:hover {
  background: #fff;
  color: #ee869a;
}
a.btn_03:hover:before {
  border-top: 2px solid #ee869a;
  border-right: 2px solid #ee869a;
}
/*----------section-top__lead _pc----------*/
@media(min-width:960px) {
  .section-top__lead h2 {
    max-width: 960px;
    display: inline-block;
    color: #333;
    font-size: 2.0rem;
    line-height: 3.6rem;
    font-weight: 400;
    text-align: center;
    padding: 112px 24px 0px 24px;
    margin: 0px 0px 50px 0px;
  }
  .section-top__lead_br {
    display: block;
  }
}
/*----------section-search_sp----------*/
.section-search {
  background-color: #fff1d9;
  margin-bottom: 68px;
  padding-bottom: 100px;
}
.section-search h2, .section-feature h2, .section-news h2, .section-access h2 {
  padding: 58px 0 5px 0;
  color: #ffa000;
  font-weight: 600;
  font-size: 2.0rem;
}
.section-search__subtitle, .section-feature__subtitle, .section-news__subtitle, .section-access__subtitle {
  padding-bottom: 50px;
  color: #ffa000;
  font-weight: 500;
  font-size: 1.6rem;
}
.section-search p {
  padding-bottom: 30px;
  color: #333;
  font-weight: 400;
  font-size: 1.6rem;
}
.section-search ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 680px;
  margin: 0 auto;
}
.section-search ul li {
  list-style: none;
}
.section-search ul li img {
  transition: all .5s;
  padding: 4px;
  filter: drop-shadow(0px 0px 8px rgba(255, 160, 0, 0.5));
}
.section-search ul li img:hover {
  transform: scale(1.1);
}
/*----------section-feature_sp----------*/
.section-feature h3 {
  color: #ffa000;
  font-weight: 600;
  font-size: 2.0rem;
  margin-bottom: 10px;
}
.section-feature__subtitle2 {
  display: block;
  font-weight: 600;
  font-size: 2.0rem;
  line-height: 3.6rem;
  margin-bottom: 10px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  top: -20px;
}
.section-feature__no {
  font-family: 'Noto Serif JP', serif;
  font-weight: 600;
  font-size: 3.6rem;
  margin-top: 20px;
  top: 0;
  left: 50px;
}
.section-feature ul {
  display: inline-block;
  list-style: none;
}
.section-feature p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 3.0rem;
  text-align: left;
  margin: 0 24px 70px 24px;
  max-width: 450px;
}
.section-feature__img-wrapper {
  position: relative;
  height: 1434px;
}
.section-feature__img01 {
  height: 222px;
  width: 222px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 25px 25px #fff1d9;
  position: absolute;
  left: 10px;
}
.section-feature__img02 {
  height: 146px;
  width: 146px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: -50px 50px #fadae1;
  position: absolute;
  top: 248px;
  right: 0px;
}
.section-feature__img03 {
  height: 180px;
  width: 180px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 40px 40px #fff1d9;
  position: absolute;
  top: 412px;
  left: -14px;
}
.section-feature__img07 {
  height: 160px;
  width: 160px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: -25px 25px #fff1d9;
  position: absolute;
  top: 609px;
  right: 0px;
}
.section-feature__img05 {
  height: 125px;
  width: 125px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: -18px 18px #fff1d9;
  position: absolute;
  top: 728px;
  left: 5px;
}
.section-feature__img04 {
  height: 164px;
  width: 164px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 40px 40px #fadae1;
  position: absolute;
  top: 850px;
  right: 83px;
}
.section-feature__img06 {
  height: 204px;
  width: 204px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 50px 50px #fadae1;
  position: absolute;
  top: 1090px;
  left: 0px;
}
/*----------section-feature_pc----------*/
@media(min-width:960px) {
  .section-feature ul li {
    max-width: 450px;
  }
  .section-feature ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto;
  }
  .section-feature p {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 3.0rem;
    text-align: left;
    margin: 0 0 70px 0;
    max-width: 400px;
  }
  .section-feature__img-wrapper {
    height: 700px;
    max-width: 1000px;
    margin: 0 auto 90px auto;
  }
  .section-feature__img01 {
    height: 270px;
    width: 270px;
  }
  .section-feature__img02 {
    height: 180px;
    width: 180px;
    top: 0px;
    left: 430px;
  }
  .section-feature__img03 {
    height: 220px;
    width: 220px;
    top: 0px;
    left: 720px;
  }
  .section-feature__img07 {
    height: 195px;
    width: 195px;
    top: 470px;
    left: 470px;
  }
  .section-feature__img05 {
    height: 150px;
    width: 150px;
    top: 490px;
    left: 20px;
  }
  .section-feature__img04 {
    height: 192px;
    width: 192px;
    top: 340px;
    left: 200px;
  }
  .section-feature__img06 {
    height: 245px;
    width: 245px;
    top: 360px;
    left: 705px;
  }
}
/*----------section-news_sp----------*/
.section-news {
  background-color: #fff1d9;
  padding-bottom: 100px;
}
.accordion-003 {
  border-bottom: 2px solid #ffa000;
  background-color: #ffffff;
  margin: 0 24px;
  text-align: left
}
.accordion-003 summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em;
  color: #333333;
  font-weight: 600;
  cursor: pointer;
}
.accordion-003 summary::-webkit-details-marker {
  display: none;
}
.accordion-003 summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 3px solid #333333b3;
  border-right: 3px solid #333333b3;
  content: '';
  transition: transform .3s;
}
.accordion-003[open] summary::after {
  transform: rotate(225deg);
}
.accordion-003 p {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: .3em 2em 1.5em;
  color: #333333;
  transition: transform .5s, opacity .5s;
}
.accordion-003[open] p {
  transform: none;
  opacity: 1;
}
/*----------section-news_pc----------*/
@media(min-width:1160px) {
  .accordion-003 {
    max-width: 1000px;
    margin: 0 auto;
  }
}
/*----------section-access_sp----------*/
.section-access {
  margin-bottom: 135px;
}
.section-access__01 {
  color: #333;
  font-size: 1.6rem;
  font-weight: 400;
  text-align: left;
  margin: 0px auto 50px auto;
  padding: 0 24px 0 24px;
  line-height: 2.8rem;
  max-width: 375px;
}
.section-access__01-1 {
  display: none;
}
.section-access__wrapper {
  max-width: 1000px;
  margin: 0 auto;
}
.section-access address {
  font-style: normal;
  text-align: left;
  margin: 0 auto;
  padding: 0 24px 0 24px;
  max-width: 375px;
}
.section-access__span01 {
  color: #ffa000;
  font-size: 2.4rem;
}
.section-access__span02 {
  font-size: 2.0rem;
}
.section-access__span03 {
  font-size: 2.4rem;
  pointer-events: none;
  text-decoration: none;
}
.section-access__02 {
  color: #333;
  font-size: 1.6rem;
  font-weight: 400;
  text-align: left;
  margin: 40px auto 50px auto;
  padding: 0 24px 0 24px;
  max-width: 375px;
}
.section-access__03 {
  color: #ee869a;
  font-size: 2.0rem;
  font-weight: 500;
  text-align: left;
  margin: 0px auto 50px auto;
  padding: 0 24px 0 24px;
  max-width: 375px;
}
.section-access__map {
  height: 500px;
}
.section-access__map iframe {
  width: 100%;
  height: 100%;
}
/*----------section-access_pc----------*/
@media(min-width:960px) {
  .section-access {
    padding-bottom: 155px;
  }
  .section-access__wrapper {
    max-width: 1000px;
    position: relative;
  }
  .section-access address {
    font-style: normal;
    padding: 0 0 0 0;
    max-width: 375px;
    margin: 0 0 0 24px;
  }
  .section-access__02 {
    padding: 0 0 0 0;
    max-width: 375px;
    margin: 40px 0 50px 24px;
  }
  .section-access__03 {
    padding: 0 0 0 0;
    max-width: 375px;
    margin: 0px 0 50px 24px;
  }
  .section-access__01 {
    margin: 0px 0 70px 24px;
    padding: 0 0 0 0;
  }
  .section-access__01-1 {
    display: block;
  }
  .section-access__map {
    height: 500px;
    width: 500px;
    border-radius: 30px;
    box-shadow: 50px 50px #ffcf80;
    position: absolute;
    top: 0;
    right: 20px;
  }
  .section-access__map iframe {
    width: 100%;
    height: 100%;
    border-radius: 30px;
  }
}
/*----------JavaScript----------*/
/*js/8-16.js_文字がなめらかに出現------６つの特徴部分に使用*/
span.smoothText {
  overflow: hidden;
  display: block;
}
/* アニメーションで傾斜がついている文字列を水平に戻す*/
span.smoothTextTrigger {
  transition: .8s ease-in-out;
  transform: translate3d(0, 100%, 0) skewY(12deg);
  transform-origin: left;
  display: block;
}
span.smoothTextTrigger.smoothTextAppear {
  transform: translate3d(0, 0, 0) skewY(0);
}
/*js/8-2.js_テキストの動き-流れるように出現（左から右）-----見出し部分に使用*/
/*========= 流れるテキスト ===============*/
/*全共通*/
.slide-in {
  overflow: hidden;
  display: inline-block;
}
.slide-in_inner {
  display: inline-block;
}
/*左右のアニメーション*/
.leftAnime {
  opacity: 0; /*事前に透過0にして消しておく*/
}
.slideAnimeLeftRight {
  animation-name: slideTextX100;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
  animation-delay: 0.5s; /* アニメーションの始まりを遅らせる*/
}
@keyframes slideTextX100 {
  from {
    transform: translateX(-100%); /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  animation-name: slideTextX-100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes slideTextX-100 {
  from {
    transform: translateX(100%); /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
/*----------js/8-9.js_じわっと出現----------*/
/*==================================================
じわっ
===================================*/
.blur {
  animation-name: blurAnime;
  animation-duration: 2s;
  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;
  }
}
.blurTrigger {
  opacity: 0;
}
/*----------下からふわっと出現_1----------*/
/* 下から */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
  animation-delay: 0.5s
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*----------下からふわっと出現_1----------*/
/* 下から */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
  animation-delay: 0.5s
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*----------下からふわっと出現_2----------*/
/* 下から */
.fadeUp_2 {
  animation-name: fadeUpAnime;
  animation-duration: 1.4s;
  animation-fill-mode: forwards;
  opacity: 0;
  animation-delay: 1s
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*----------下からふわっと出現_3----------*/
/* 下から */
.fadeUp_3 {
  animation-name: fadeUpAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
  animation-delay: 1s
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*----------下からふわっと出現_4----------*/
/* 下から */
.fadeUp_4 {
  animation-name: fadeUpAnime;
  animation-duration: 1.6s;
  animation-fill-mode: forwards;
  opacity: 0;
  animation-delay: 1s
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*----------下からふわっと出現_5----------*/
/* 下から */
.fadeUp_5 {
  animation-name: fadeUpAnime;
  animation-duration: 1.8s;
  animation-fill-mode: forwards;
  opacity: 0;
  animation-delay: 1s
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*----------下からふわっと出現_6----------*/
/* 下から */
.fadeUp_6 {
  animation-name: fadeUpAnime;
  animation-duration: 1.4s;
  animation-fill-mode: forwards;
  opacity: 0;
  animation-delay: 1s
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*----------下からふわっと出現_7----------*/
/* 下から */
.fadeUp_7 {
  animation-name: fadeUpAnime;
  animation-duration: 1.9s;
  animation-fill-mode: forwards;
  opacity: 0;
  animation-delay: 1s
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}