@charset "UTF-8";
/*  ▼ cmn-logo
------------------------------------- */
.cmn-logo {
  transition: all 0.5s;
}
.cmn-logo:hover {
  opacity: 0.6;
}

/*  ▼ cmn-title
------------------------------------- */
.cmn-title {
  width: 100%;
  text-align: center;
  letter-spacing: 0.12em;
}
.cmn-title__en {
  display: block;
  font-size: 83.33333%;
  font-weight: 400;
  font-family: "Lobster", cursive;
}
.cmn-title__ja {
  display: block;
}
.cmn-title__emphasis {
  color: #17706e;
  font-size: 116.66667%;
}
.cmn-title__font-small {
  font-size: 83.33333%;
}
@media screen and (min-width: 768px) {
  .cmn-title {
    margin: 0 0 50px;
    font-size: 3rem;
  }
  .cmn-title__en {
    margin: 0 0 15px;
  }
}
@media screen and (max-width: 767px) {
  .cmn-title {
    margin: 0 0 30px;
    font-size: 2rem;
  }
  .cmn-title__en {
    margin: 0 0 10px;
  }
}

/*  ▼ cmn-button
------------------------------------- */
.cmn-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 270px;
  height: 60px;
  border-radius: 10px;
  background: url(../images/common/cmn-button_bg.png) repeat;
  position: relative;
}
.cmn-button::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 7.5px solid transparent;
  border-bottom: 7.5px solid transparent;
  border-left: 10px solid;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 30px;
}
.cmn-button:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .cmn-button {
    width: 210px;
    height: 45px;
    margin: 20px auto 0;
    border-radius: 5px;
    background-size: contain;
  }
  .cmn-button::before {
    border-top: 4.5px solid transparent;
    border-bottom: 4.5px solid transparent;
    border-left: 7px solid;
    left: 20px;
  }
}

/*  ▼ reserve_button
------------------------------------- */
.reserve_button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 210px;
  height: 50px;
  color: #fff;
  font-weight: 500;
  text-shadow: 2px 0 5px #7ab897;
  font-size: 1.5rem;
  border-radius: 50px;
  background-color: #b2e6c5;
}
.reserve_button:hover {
  background-color: #66b17b;
}
@media screen and (max-width: 767px) {
  .reserve_button {
    width: 170px;
    height: 40px;
    font-size: 1.3rem;
  }
}

/*  ▼ wave
------------------------------------- */
.wave {
  background-color: #fff;
  position: relative;
  z-index: 0;
}
.wave::before,
.wave::after {
  content: "";
  width: 100%;
  height: 44px;
  background: url(../images/common/wave_shape.png) repeat-x left bottom;
  position: absolute;
  left: 0;
  z-index: -1;
}
.wave::before {
  top: -44px;
}
.wave::after {
  bottom: -44px;
  transform: scale(1, -1);
}
@media screen and (max-width: 767px) {
  .wave::before,
  .wave::after {
    height: 3vw;
    background-size: contain;
  }
  .wave::before {
    top: -3vw;
  }
  .wave::after {
    bottom: -3vw;
  }
}

/*  ▼ cmn-tel
------------------------------------- */
.cmn-tel {
  display: flex;
  align-items: center;
  height: auto;
  line-height: 1;
  font-weight: 600;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
  letter-spacing: 0.06em;
}
.cmn-tel::before {
  content: "";
  width: 42px;
  height: 42px;
  margin-right: 15px;
  background: url(../images/common/icon_tel.png) no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .cmn-tel {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 767px) {
  .cmn-tel {
    font-size: 2.5rem;
  }
  .cmn-tel::before {
    width: 31px;
    height: 31px;
    margin-right: 10px;
  }
}

/*  ▼ sns-list
------------------------------------- */
.sns-list {
  justify-content: flex-start;
}
.sns-list_item:not(:last-child) {
  margin-right: 15px;
}
.sns-list_link:hover {
  opacity: 0.7;
  transform: translateY(-5px);
}
@media screen and (max-width: 767px) {
  .sns-list_item {
    width: 30px;
  }
  .sns-list_item:not(:last-child) {
    margin-right: 10px;
  }
}

/*  ▼ time-table
------------------------------------- */
.time-table_item {
  line-height: 1.3;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.06em;
  border: 1px solid #91e6b0;
}

.time-table th {
  padding: 5px 0;
  color: #fff;
  background-color: #91e6b0;
}
.time-table th:not(:last-child) {
  border-right: 1px solid;
}

.time-table td {
  padding: 7px 0;
  vertical-align: middle;
  background-color: #fff;
}
.time-table td:not(:last-child) {
  border-right: 1px solid #91e6b0;
}

@media screen and (min-width: 768px) {
  .time-table {
    font-size: 1.5rem;
  }
  .time-table th:first-child {
    width: 245px;
  }
  .time-table td:not(:first-child) {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 767px) {
  .time-table {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    overflow-x: auto;
  }
  .time-table_item {
    width: 500px;
  }
  .time-table th:first-child {
    width: 240px;
  }
  .time-table td {
    padding: 10px 0;
  }
  .time-table td:not(:first-child) {
    font-size: 1.8rem;
  }
}

/*  ▼ guide
------------------------------------- */
.guide_inner {
  border-radius: 10px;
  background: url(../images/guide/guide_bg.png) no-repeat center/cover;
}

.guide_wrap {
  justify-content: center;
}

.guide_link {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  background: url(../images/guide/guide_link_bg01.png) no-repeat center/contain;
  position: relative;
}
.guide_link::after {
  content: "";
  width: 21px;
  height: 21px;
  margin: auto;
  background: url(../images/guide/guide_link_shape01.png) no-repeat
    center/contain;
  position: absolute;
  right: 0;
  bottom: 40px;
  left: 0;
}
.guide_link:nth-child(even) {
  background: url(../images/guide/guide_link_bg02.png) no-repeat center/contain;
}
.guide_link:nth-child(even)::after {
  background: url(../images/guide/guide_link_shape02.png) no-repeat
    center/contain;
}
.guide_link:hover {
  opacity: 0.7;
  transform: translateY(-5px);
}

.guide_text {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: center;
}
.guide_text__font-small {
  font-size: 85%;
}

@media screen and (min-width: 768px) {
  .guide_link {
    width: 191px;
    height: 190px;
    padding: 60px 0 0;
    font-size: 2rem;
  }
  .guide_link:not(:last-child) {
    margin-right: 30px;
  }
  .guide_text {
    height: 60px;
  }
}

@media screen and (max-width: 767px) {
  .guide_link {
    align-items: center;
    width: 28vw;
    min-width: 105px;
    height: 28vw;
    min-height: 105px;
    font-size: 3.73333vw;
  }
  .guide_link:not(:nth-child(3n)):not(:last-child) {
    margin-right: 2%;
  }
  .guide_link:not(:nth-last-child(-n + 2)) {
    margin-bottom: 3%;
  }
  .guide_link::after {
    width: 4vw;
    height: 4vw;
    bottom: 3.2vw;
  }
}

@media screen and (min-width: 768px) {
  .guide-under {
    padding-top: 80px;
  }
  .guide-under_inner {
    padding: 65px 0;
  }
}

@media screen and (max-width: 767px) {
  .guide-under {
    padding-top: 50px;
  }
  .guide-under_inner {
    justify-content: space-between;
    padding: 20px;
    border-radius: 5px;
    background-position: left 20% top;
  }
  .guide-under_link {
    align-items: center;
    width: 37.33333vw;
    min-width: 140px;
    height: 37.33333vw;
    min-height: 140px;
    font-size: 3.73333vw;
  }
  .guide-under_link::after {
    bottom: 9vw;
  }
}

/*  ▼ infiniteslide
------------------------------------- */
.infiniteslide_wrap {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .infiniteslide {
    padding: 80px 0;
  }
  .infiniteslide_figure:not(:last-child) {
    margin-right: 40px;
  }
}

@media screen and (max-width: 767px) {
  .infiniteslide {
    padding: 50px 0;
  }
  .infiniteslide_figure {
    width: 35%;
  }
  .infiniteslide_figure:not(:last-child) {
    margin-right: 5%;
  }
}

/*  ▼ banner
------------------------------------- */
.banner {
  background: url(../images/common/pattern02.png) repeat;
}
.banner_wrap {
  justify-content: space-around;
}
.banner_item {
  border-radius: 20px;
  box-shadow: 0px 3px 10px 0px rgba(35, 35, 35, 0.1);
  overflow: hidden;
}
.banner_item:hover {
  transform: translateY(-10px);
  box-shadow: 0px 3px 10px 0px rgba(35, 35, 35, 0.1),
    0px 3px 15px 0px rgba(35, 35, 35, 0.3);
}
@media screen and (min-width: 768px) {
  .banner {
    padding: 80px 0;
  }
}
@media screen and (max-width: 767px) {
  .banner {
    padding: 50px 0 30px;
    background-size: contain;
  }
  .banner_wrap {
    justify-content: center;
  }
  .banner_item {
    width: 48%;
    margin: 0 0 20px;
    text-align: center;
    border-radius: 10px;
  }
  .banner_item:not(:nth-child(odd)):not(:last-child) {
    margin-left: 4%;
  }
}
@media screen and (max-width: 767px) and (min-width: 540px) {
  .banner_wrap {
    justify-content: space-between;
  }
  .banner_item {
    width: 32%;
  }
  .banner_item:not(:nth-child(odd)):not(:last-child) {
    margin: 0;
  }
}

/*  ▼ cmn-table
------------------------------------- */
.cmn-table {
  display: block;
}
.cmn-table tbody,
.cmn-table td {
  display: block;
}
.cmn-table tr,
.cmn-table th {
  display: flex;
}
.cmn-table tr:not(:last-child) {
  margin-bottom: 15px;
}
.cmn-table th {
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background-color: #c7e2d1;
}
@media screen and (min-width: 768px) {
  .cmn-table th {
    width: 200px;
  }
  .cmn-table td {
    flex: 1;
    padding: 10px 0;
    margin-left: 30px;
  }
}
@media screen and (max-width: 767px) {
  .cmn-table th {
    width: 30%;
  }
  .cmn-table td {
    flex: 1;
    padding: 5px 0;
    margin-left: 15px;
  }
}

/*  ▼ news
------------------------------------- */
.news_list {
  letter-spacing: 0.12em;
}
.news_list_item {
  border-bottom: 1px dashed #c0a385;
}
.news_list_link {
  align-items: center;
  justify-content: flex-start;
}
.news_list_time {
  width: 130px;
  padding: 2px;
  text-align: center;
  font-weight: 400;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
  border-radius: 50px;
  background-color: #c7e2d1;
}
.news_list_title {
  font-size: inherit;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: all 0.5s;
}
.news_list_link:hover .news_list_title {
  color: #c5e2d0;
}

@media screen and (min-width: 768px) {
  .news_list {
    font-size: 1.5rem;
  }
  .news_list_link {
    padding: 20px 0;
  }
  .news_list_title {
    flex: 1;
    margin-left: 25px;
  }
}

@media screen and (max-width: 767px) {
  .news_list_link {
    padding: 15px 10px;
  }
  .news_list_time {
    width: 120px;
  }
  .news_list_title {
    width: 100%;
    margin: 5px 0 0;
  }
}

.news-detail_body {
  min-height: 40vh;
  border-top: 2px solid #603813;
  border-bottom: 2px solid #603813;
}
.news-detail_body a {
  display: inline-block !important;
  text-decoration: underline;
}

.news-detail_time {
  display: block;
  margin: 0 0 1em;
}

.news-detail em {
  font-style: italic;
}

@media screen and (min-width: 768px) {
  .news-detail {
    padding: 100px 0;
  }
  .news-detail_title {
    margin: 0 0 25px;
    font-size: 2.4rem;
  }
  .news-detail_body {
    padding: 30px 15px;
  }
}

@media screen and (max-width: 767px) {
  .news-detail {
    padding: 50px 0 60px;
  }
  .news-detail_title {
    margin: 0 0 20px;
    font-size: 1.8rem;
  }
  .news-detail_body {
    padding: 20px 15px;
  }
  .news-detail_body img {
    width: 100%;
    height: 100%;
  }
}

/*  ▼ postView
------------------------------------- */
.post-view {
  width: 100%;
  margin-top: 30px;
  line-height: 2;
  position: relative;
}
.post-view_prev {
  margin-right: auto;
}
.post-view_next {
  margin-left: auto;
}
.post-view_home {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .post-view {
    text-align: center;
    font-size: 1.3rem;
  }
}

/*  ▼ pagenation
------------------------------------- */
.pagenation {
  display: flex;
  justify-content: center;
  width: 100%;
  line-height: 1.5;
}
.pagenation li {
  background-color: #ccc;
}
.pagenation li:not(:last-child) {
  margin-right: 10px;
}
.pagenation li:not(.current):hover {
  opacity: 0.7;
}
.pagenation li.current {
  background-color: #c5e2d0;
}
.pagenation a {
  padding: 5px 10px;
  text-decoration: underline;
}
.pagenation span {
  display: block;
  padding: 5px 10px;
}
@media screen and (min-width: 768px) {
  .pagenation {
    margin: 50px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .pagenation {
    margin: 30px 0 0;
  }
}

/*  ▼ breadcrumbs
------------------------------------- */
.breadcrumbs {
  font-size: 1.4rem;
  font-weight: 400;
}
.breadcrumbs_wrap {
  justify-content: flex-start;
}
.breadcrumbs_item {
  list-style: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
  transition: all 0.5s;
}
.breadcrumbs_item:last-child {
  flex: 1 1 0%;
}
.breadcrumbs_item:not(:last-child)::before {
  content: " ";
  display: block;
  margin: auto;
  border-top: 2px solid;
  border-right: 2px solid;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
}
.breadcrumbs_item a {
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .breadcrumbs {
    padding: 7px 0;
  }
  .breadcrumbs_item:not(:last-child) {
    padding-right: 30px;
  }
  .breadcrumbs_item:not(:last-child)::before {
    width: 8px;
    height: 8px;
    right: 13px;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumbs {
    padding: 8px 0;
    font-size: 1.2rem;
  }
  .breadcrumbs_item:not(:last-child) {
    padding-right: 22px;
  }
  .breadcrumbs_item:not(:last-child)::before {
    width: 7px;
    height: 7px;
    right: 10px;
  }
  .breadcrumbs a {
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

/*# sourceMappingURL=common.css.map */
