@charset "UTF-8";
/* --

 top.css

 ------------------------------------
-- */
@import url(https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900&display=swap&subset=japanese);
@import url(https://fonts.googleapis.com/css?family=Noto+Serif+JP:200,300,400,500,600,700,900&display=swap&subset=japanese);
/* --

 * clearfix............float解除
 * font-size...........フォントサイズ指定（px指定はIE8対策）
 * moving-base.........基本のアニメーション
 * FontAwesome.........アイコンフォント使用（FontAwesome）
 * opacity.............透明度設定（IE対応含む）
 * tablet..............ブレイクポイント設定（タブレット）
 * mobile..............ブレイクポイント設定（スマホ）

 ------------------------------------

 * scroll..............スクロールアイコンのスタイル


-- */
/* --

 keyframes - アニメーションキーフレーム集

 ------------------------------------

 * loading.............ローディングアイコンのアニメーション
 * toggle-.............ハンバーガーアイコンに関するアニメーション

-- */
@-webkit-keyframes loading {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes loading {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes toggle-top {
  0% {
    -webkit-transform: translateY(-4px) rotate(0deg);
    transform: translateY(-4px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-8px) rotate(0deg);
    transform: translateY(-8px) rotate(0deg);
  }
}
@keyframes toggle-top {
  0% {
    -webkit-transform: translateY(-4px) rotate(0deg);
    transform: translateY(-4px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-8px) rotate(0deg);
    transform: translateY(-8px) rotate(0deg);
  }
}
@-webkit-keyframes toggle-bottom {
  0% {
    -webkit-transform: translateY(4px) rotate(0deg);
    transform: translateY(4px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(8px) rotate(0deg);
    transform: translateY(8px) rotate(0deg);
  }
}
@keyframes toggle-bottom {
  0% {
    -webkit-transform: translateY(4px) rotate(0deg);
    transform: translateY(4px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(8px) rotate(0deg);
    transform: translateY(8px) rotate(0deg);
  }
}
@-webkit-keyframes toggle-top-close {
  0% {
    -webkit-transform: translateY(-8px) rotate(0deg);
    transform: translateY(-8px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(1px) rotate(-45deg);
    transform: translateY(1px) rotate(-45deg);
  }
}
@keyframes toggle-top-close {
  0% {
    -webkit-transform: translateY(-8px) rotate(0deg);
    transform: translateY(-8px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(1px) rotate(-45deg);
    transform: translateY(1px) rotate(-45deg);
  }
}
@-webkit-keyframes toggle-bottom-close {
  0% {
    -webkit-transform: translateY(8px) rotate(0deg);
    transform: translateY(8px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(45deg);
    transform: translateY(0) rotate(45deg);
  }
}
@keyframes toggle-bottom-close {
  0% {
    -webkit-transform: translateY(8px) rotate(0deg);
    transform: translateY(8px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(-1px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(45deg);
    transform: translateY(-1px) rotate(45deg);
  }
}
@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
}
@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
}
/*-----------------------------------

	$mainvisual

-----------------------------------*/
.mainvisual__list li {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin: 0;
  display: block;
}
.mainvisual__list-01 {
  background-image: url("../images/top/top-slide-01.jpg");
}
.mainvisual__list-02 {
  background-image: url("../images/top/top-slide-02.jpg");
}
.mainvisual__list-03 {
  background-image: url("../images/top/top-slide-03.jpg");
}
@media screen and (max-width: 640px) {
  .mainvisual__list-01 {
    background-image: url("../images/top/top-slide-01-sp.jpg");
  }
}
.mainvisual__img {
  width: 100%;
}
.mainvisual__img img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .mainvisual__img {
    height: 400px;
    position: relative;
    overflow: hidden;
  }
  .mainvisual__img img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    height: 100%;
    width: auto;
    max-width: none;
  }
}
@media screen and (max-width: 640px) {
  .mainvisual__img {
    height: auto;
    position: relative;
  }
  .mainvisual__img::before {
    content: "";
    display: block;
    padding-top: 112%;
  }
  .mainvisual__img img {
    height: 80%;
  }
}
.mainvisual .slick-dots {
  bottom: 4%;
  z-index: 1;
}
.mainvisual .slick-dotted.slick-slider {
  margin-bottom: 0;
}

/*-----------------------------------

	$top

-----------------------------------*/
.top .concept {
  background: #f7f7f7;
  padding: 6.25% 0;
  text-align: center;
}
.top .concept__text p {
  line-height: 2.4;
}
@media screen and (max-width: 768px) {
  .top .concept__text p {
    line-height: 1.8;
    text-align: left;
  }
}
@media screen and (max-width: 640px) {
  .top .concept__text p {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.top .shop {
  padding: 6.25% 0;
}
.top .visit {
  padding: 6.25% 0;
  background: #f7f7f7;
}
.top .shop .lyt-img .image img,
.top .visit .lyt-img .image img {
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .top .shop .lyt-img .image,
.top .visit .lyt-img .image {
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
}
.top .shop .text p,
.top .visit .text p {
  line-height: 2.4;
}
@media screen and (max-width: 768px) {
  .top .shop .text p,
.top .visit .text p {
    line-height: 1.8;
  }
}
@media screen and (max-width: 640px) {
  .top .shop .text p,
.top .visit .text p {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.top .shop .text .title__group p,
.top .visit .text .title__group p {
  line-height: 1;
}
.top .shop .btn-01,
.top .visit .btn-01 {
  margin-top: 40px;
}
.top .contact__title {
  background: #2eb3b3;
  text-align: center;
  color: #fff;
  font-size: 36px;
  font-size: 3.6rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.8em 0;
  position: relative;
}
.top .contact__title::after {
  content: "";
  display: block;
  width: 12px;
  border-top: 12px solid #2eb3b3;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 100%;
}
@media screen and (max-width: 768px) {
  .top .contact__title {
    font-size: 28px;
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 640px) {
  .top .contact__title {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.top .contact__line {
  padding: 5.5% 0;
}
.top .contact__line .text {
  width: 57%;
  line-height: 2.4;
}
.top .contact__line .image {
  width: 35%;
}
.top .contact__line-btn {
  padding-top: 2.6em;
}
.top .contact__line-btn li {
  display: inline;
}
.top .contact__line-btn li:first-child {
  padding-right: 0.5em;
}
.top .contact__line-btn li.btn-01 a {
  max-width: 48%;
}
@media screen and (max-width: 900px) {
  .top .contact__line-btn li.btn-01 a {
    max-width: 300px;
  }
}
@media screen and (max-width: 768px) {
  .top .contact__line {
    padding-bottom: 0;
  }
  .top .contact__line .text,
.top .contact__line .image {
    width: 100%;
  }
  .top .contact__line .text p {
    line-height: 1.8;
  }
  .top .contact__line .image {
    padding: 5% 0 0;
  }
  .top .contact__line .image img {
    width: 50%;
  }
  .top .contact__line-btn li {
    display: block;
  }
  .top .contact__line-btn li:first-child {
    padding-right: 0;
  }
}
@media screen and (max-width: 640px) {
  .top .contact__line .text p {
    font-size: 13px;
    font-size: 1.3rem;
  }
  .top .contact__line .image img {
    width: 70%;
  }
  .top .contact__line-btn li {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.8;
  }
}
.top__calendar {
  padding-bottom: 5.5%;
}
.top__calendar iframe {
  width: 100%;
  max-width: 100%;
  max-height: 600px;
}
@media screen and (max-width: 640px) {
  .top__calendar iframe {
    max-height: 400px;
  }
}
.top__calendar h3 {
  text-align: center;
  position: relative;
  font-weight: 500;
  padding-bottom: 0.5em;
}
.top__calendar h3::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #353535;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 0;
}
.top__calendar h3 span {
  font-size: 30px;
  font-size: 3rem;
  background: #fff;
  position: relative;
  padding: 0 0.8em;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .top__calendar h3 span {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

/*-----------------------------------

	$news

-----------------------------------*/
.news {
  background: #f7f7f7;
  padding: 5.5% 0;
}
.news h2 {
  text-align: center;
  font-size: 30px;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: bold;
  padding-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .news h2 {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 640px) {
  .news h2 {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.news__wrap {
  background: #fff;
  border-radius: 20px;
  padding: 3em;
}
@media screen and (max-width: 768px) {
  .news__wrap {
    padding: 2.4em;
  }
}
@media screen and (max-width: 640px) {
  .news__wrap {
    padding: 1.8em;
  }
}
.news__list li {
  display: table;
  width: 100%;
  padding-bottom: 1em;
  border-bottom: 1px solid #dfe2e3;
}
.news__list li:not(:last-child) {
  margin-bottom: 1em;
}
@media screen and (max-width: 640px) {
  .news__list li {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.news__list time, .news__list a {
  display: table-cell;
}
@media screen and (max-width: 768px) {
  .news__list time, .news__list a {
    display: block;
  }
}
.news__list time {
  color: #2eb3b3;
  font-weight: 500;
  width: 15%;
}
.news__more {
  text-align: right;
  padding-top: 1.5em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .news__more {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.news__more a {
  font-weight: bold;
}
.news__more i {
  margin-left: 0.2em;
}