/*  TOPページ  */

.top main {
  overflow: clip;
}

/*=============================
 背景イメージ画像 and すりガラス セクション
==============================*/
.glass {
  background-size: cover;
  padding: 103px 0px 107px;
}

.glass .inner {
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 65px 30px 80px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.glass .inner ul {
  max-width: 1000px;
  /* display: flex;
  justify-content: space-between; */
  margin: 60px auto 75px;
}

.glass .btn_goto {
  margin: 0 auto;
}

.glass .item_list {
  gap: 50px;
}

@media screen and (max-width:800px) {
  .glass .item_list {
    gap: 20px;
  }
}

@media screen and (max-width:500px) {
  .glass {
    padding: 54px 0px 58px;
  }

  .glass .inner {
    padding: 54px 20px 50px;
  }

  .glass .inner ul {
    margin: 31px auto 0;
  }
}


/*=============================
 最新お知らせ（１件）
==============================*/
.top .top_news {
  max-width: 1000px;
  width: calc(100vw - 40px);
  background-color: #fff2f2;
  border-radius: 10px;
  position: relative;
  z-index: 2;
  /* transform: translateY(-50%); */
  padding: 30px 36px 28px;
  margin: 65px auto 30px;
}

.top .top_news .inner {
  width: 100%;
  display: flex;
}

.top .top_news .left {
  width: 181px;
  display: block;
  text-align: center;
  background-color: #c67a7a;
  border-radius: 10px;
  padding: 30px 0;
  margin-right: 50px;
}

.top .top_news .left h3 {
  font-weight: 500;
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: 0.1em;
}

.top .top_news .left .en {
  font-family: "georgia", "georgiapro", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: #fff;
  margin-top: 1em;
}

.top .top_news .right {
  width: calc(100% - 181px - 55px);
  display: flex;
  align-items: center;
}

.top .top_news .right a {
  width: 100%;
  position: relative;
}

.top .top_news time {
  font-family: "georgia", "georgiapro", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  font-style: normal;
  color: #c67a7a;
}

.top .top_news .txt {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 0.8em;
}

.top .top_news .right a::after {
  content: "";
  width: 12px;
  height: 12px;
  border-right: 3px #c67a7a solid;
  border-bottom: 3px #c67a7a solid;
  position: absolute;
  top: 50%;
  right: 0;
  transform: rotate(-45deg) translateY(-50%);
}

.top .top_news .right a:hover::after {
  /* right: -3px; */
  transform: rotate(-45deg) translateY(-30%) translateX(2px);
  transition: 0.5s;
}

@media screen and (max-width:900px) {
  .top .top_news {
    position: relative;
    transform: none;
    padding: 3.3vw 3.96vw 3.08vw;
  }

  .top .top_news .left {
    min-width: 145px;
    width: 20vw;
    padding: 3.3vw 0;
    margin-right: 5.5vw;
  }

  .top .top_news .left h3 {
    font-size: max(2.64vw, 1.125rem);
  }

  .top .top_news .right {
    width: calc(100% - 20vw - 2.63vw);
  }
}

@media screen and (max-width:500px) {
  .top .top_news {
    width: calc(100vw - 20px);
    padding: 10px 20px 12px;
    margin: 0 auto;
  }

  .top .top_news .inner {
    display: block;
  }

  .top .top_news .left {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
  }

  .top .top_news .right {
    width: 100%;
    margin-top: 10px;
  }

  .top .top_news .left h3 {
    font-size: 1.125rem;
  }

  .top .top_news .left .en {
    font-size: 0.6875rem;
  }

  .top .top_news time {
    font-size: 0.8125rem;
  }

  .top .top_news .txt {
    font-size: 0.8125rem;
  }
}


/*=============================
 トップキャンペーン
==============================*/
.top .top_campaign {
  max-width: 1000px;
  width: calc(100vw - 40px);
  background-color: #fffdf5;
  border-radius: 10px;
  position: relative;
  z-index: 2;
  /* transform: translateY(-50%); */
  padding: 30px 36px 28px;
  margin: 30px auto 65px;
}

.top .top_campaign .inner {
  width: 100%;
  display: flex;
}

.top .top_campaign .left {
  width: 181px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #A19A69;
  border-radius: 10px;
  margin-right: 50px;
}

.top .top_campaign .left h3 {
  font-weight: 500;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: 0.05em;
}

.top .top_campaign .left .en {
  font-family: "georgia", "georgiapro", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: #fff;
  margin-top: 1em;
}

.top .top_campaign .right {
  width: calc(100% - 181px - 55px);
  display: flex;
  align-items: center;
}

.top .top_campaign .top_campaign_list {}

.top .top_campaign .top_campaign_list li {
  padding: 0.8em 0;
  border-bottom: 1px dotted #A19A69;
}

.top .top_campaign .right a {
  display: flex;
  padding-right: 3em;
  width: 100%;
  position: relative;
  gap: 0.5em;
}

.top .top_campaign time {
  width: 80px;
  padding-top: 0.2em;
  font-family: "georgia", "georgiapro", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  font-style: normal;
  color: #A19A69;
}

.top .top_campaign .txt {
  flex: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
}

.top .top_campaign .right a::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px #A19A69 solid;
  border-bottom: 2px #A19A69 solid;
  position: absolute;
  top: 50%;
  right: 0;
  transform: rotate(-45deg) translateY(-50%);
}

.top .top_campaign .right a:hover::after {
  /* right: -3px; */
  transform: rotate(-45deg) translateY(-30%) translateX(2px);
  transition: 0.5s;
}

@media screen and (max-width:900px) {
  .top .top_campaign {
    position: relative;
    transform: none;
    padding: 3.3vw 3.96vw 3.08vw;
  }

  .top .top_campaign .left {
    min-width: 145px;
    width: 20vw;
    padding: 3.3vw 0;
    margin-right: 5.5vw;
  }

  .top .top_campaign .left h3 {
    font-size: max(2.64vw, 1.125rem);
  }

  .top .top_campaign .right {
    width: calc(100% - 20vw - 2.63vw);
  }
}

@media screen and (max-width:500px) {
  .top .top_campaign {
    width: calc(100vw - 20px);
    padding: 15px 20px 15px;
    margin: 10px auto 30px;
  }

  .top .top_campaign .inner {
    display: block;
  }

  .top .top_campaign .left {
    width: 100%;
    display: flex;
    flex-direction: row;
    padding: 10px 0;
  }

  .top .top_campaign .right {
    width: 100%;
    margin-top: 10px;
  }

  .top .top_campaign .left h3 {
    font-size: 1.125rem;
  }

  .top .top_campaign .left .en {
    font-size: 0.6875rem;
  }

  .top .top_campaign time {
    font-size: 0.8125rem;
  }

  .top .top_campaign .txt {
    font-size: 0.8125rem;
  }
}


.shoplink.btn_block {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 70px;
}

@media screen and (max-width:500px) {

  .shoplink.btn_block {
    margin-bottom: 40px;
  }
}

/*=============================
 PLANセクション
==============================*/
/* plan.cssに記載 */

/*=============================
 サービスセクション
==============================*/
.top .service {
  width: 100%;
  background-color: #fffdf5;
  padding-top: 80px;
}

.top .service .baloon {
  min-width: 257px;
  margin-top: 47px;
  margin-bottom: 48px;
}

.top .service .cnt {
  width: 100%;
  margin-top: 65px;
  margin-bottom: 77px;
}

.top .service .cnt ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 20px;
}

.top .service .cnt li {
  width: 19.4%;
  aspect-ratio: 1/1;
}

.top .service .cnt li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.top .service .splide {
  margin-top: 36.5px;
  margin-bottom: 10px;
}

.top .service .splide__arrows {
  display: none;
}

.top .service .splide__slide {
  width: 149px;
  height: 149px;
}

.top .service .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.top .service .btn_block {
  display: flex;
  justify-content: center;
}

.top .service .merit {
  width: 100%;
  background-image: url(../img/bg_merit.jpg);
  background-size: contain;
  padding-top: 100px;
  padding-bottom: 100px;
  margin-top: 84px;
  position: relative;
}

.top .service .merit .baloon {
  position: absolute;
  /* top: -90px; */
  top: 0;
  left: 50%;
  /* transform: translateX(-50%); */
  min-width: 237px;
  transform: translate(-50%, -50%);
  margin-top: 0;
}

.top .service .merit .box01 {
  background-color: #fff;
  border-radius: 10px;
  padding: 60px 83px 62px;
}

.top .service .merit .box01 ul {
  display: flex;
  flex-wrap: wrap;
  /* justify-content: space-between; */
  justify-content: center;
  gap: 30px;
}

.top .service .merit .box01 li {
  width: 186px;
}

.top .service .merit .box01 .img {
  width: 100%;
  display: flex;
  justify-content: center;
}

.top .service .merit .box01 .img img {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.top .service .merit .box01 h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #a19a69;
  text-align: center;
  margin-top: 1em;
  margin-bottom: 1em;
}

.top .service .merit .box01 .txt {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.4;
}

.top .service .merit .lead {
  text-align: center;
  margin-top: 38px;
  margin-bottom: 31px;
}

.top .service .merit .lead p {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fff;
  width: fit-content;
  position: relative;
}

.top .service .merit .lead p::before,
.top .service .merit .lead p::after {
  display: block;
  position: absolute;
  top: 50%;
  content: "";
  width: 2px;
  height: 1.3em;
  background-color: #fff;
}

.top .service .merit .lead p::before {
  left: -1.2em;
  transform: rotate(-40deg) translateY(-60%);
}

.top .service .merit .lead p::after {
  right: -1.2em;
  transform: rotate(40deg) translateY(-60%);
}

.top .service .merit .box02 {
  display: block;
  background-color: #fff;
  border-radius: 10px;
  padding: 58px 20px 58px;
}

.top .service .merit .box02 ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  box-sizing: content-box;
}

.top .service .merit .box02 li {
  width: 270px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  box-sizing: content-box;
}

.top .service .merit .box02 li .img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.top .service .merit .box02 li img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.top .service .merit .box02 li .ttl {
  width: 170px;
  display: flex;
  align-items: center;
}

.top .service .merit .box02 li h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
}

@media screen and (max-width:1200px) {
  .top .service .l-inner {
    /* aspect-ratio: 1000/400; */
  }

  .top .service .l-inner>img {
    padding: 0 30px;
  }

  .top .service .merit {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media screen and (max-width:900px) {
  .top .service .merit .box01 {
    padding: 6.6vw 9.13vw 6.82vw;
  }

  .top .service .merit .box01 li {
    width: 100%;
    display: flex;
    gap: 30px;
  }

  .top .service .merit .box01 li .img {
    width: 150px;
  }

  .top .service .merit .box01 li .txt_block {
    width: calc(100% - 200px);
  }

  .top .service .merit .box01 li .txt {
    text-align: left;
  }

  .top .service .merit .box01 h3 {
    text-align: left;
  }

  .top .service .merit .lead p {
    font-size: max(2.64vw, 1rem);
  }
}

@media screen and (max-width:500px) {
  .top .service {
    padding-top: 40px;
  }

  .top .service .baloon {
    margin-top: 30px;
    margin-bottom: 40px;
  }

  .top .service .l-inner>img {
    height: 134px;
    padding: 0 20px;
  }

  .top .service .merit {
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 54px;
  }

  .top .service .merit .box01 {
    box-sizing: content-box;
    padding: 20px 10px 50px 13px;
  }

  .top .service .merit .box01 ul {
    box-sizing: content-box;
    gap: 10px;
  }

  .top .service .merit .box01 li {
    box-sizing: content-box;
    gap: 13px;
  }

  .top .service .merit .box01 li .img {
    box-sizing: content-box;
    width: 100px;
    height: 100px;
  }

  .top .service .merit .box01 li .txt_block {
    width: calc(100% - 120px);
  }

  .top .service .merit .box01 h3 {
    margin-top: 0.3em;
  }

  .top .service .merit .lead.sp-none {
    display: none;
  }

  .top .service .merit_more {
    background-color: #F0EEE5;
    border-radius: 30px;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 38px;
    box-sizing: content-box;
  }

  .top .service .merit_more .box02 {
    background-color: transparent;
    padding-top: 20px;
    padding-bottom: 40px;
    box-sizing: content-box;
  }

  .top .service .merit .lead {
    width: 100%;
    height: 60px;
    /* border-radius: 30px; */
    display: flex;
    align-items: center;
    position: relative;
    margin-left: 1.2em;
    margin-top: 0;
    margin-bottom: 0;
    box-sizing: content-box;
  }

  .top .service .merit .lead p {
    font-size: 1.125rem;
    color: #A19A69;
  }

  .top .service .merit .lead p::before,
  .top .service .merit .lead p::after {
    display: none;
  }

  .top .service .merit .lead .circle {
    position: absolute;
    width: 29px;
    height: 29px;
    top: 50%;
    right: 2.6rem;
    background-color: #A19A69;
    border-radius: 50%;
    transform: translateY(-50%);
  }

  .top .service .merit .lead .plus1,
  .top .service .merit .lead .plus2 {
    position: absolute;
    right: 47px;
    width: 1rem;
    height: 2px;
    background-color: #fff;
  }

  .top .service .merit .lead .plus1 {
    transform: rotate(0deg);
    transition: 0.3s;
  }

  .top .service .merit .lead.active .plus1 {
    display: none;
  }

  .top .service .merit .lead .plus2 {
    transform: rotate(90deg);
    transition: 0.3s;
  }

  .top .service .merit .lead.active .plus2 {
    transform: rotate(0deg);
  }

  .top .service .merit .box02 {
    display: none;
  }

  .top .service .merit_more .box02 ul {
    gap: 0;
  }

  .top .service .merit .box02.sp {
    /* padding-bottom: 100px; */
  }

  .top .service .merit .box02.sp li {
    margin-bottom: 20px;
    box-sizing: content-box;
  }

  .top .service .merit .box02.sp li .img {
    width: 60px;
    height: 60px;
  }

  .top .service .merit .box02.sp li h3 {
    font-size: 1rem;
  }

  .top .service .merit .box02.sp li .ttl {
    width: calc(100% - 80px);
    box-sizing: content-box;
  }
}

/*=============================
 バナーエリア
==============================*/
/* common.cssに記載 */

/*=============================
 店舗情報
==============================*/
/* shop-list.cssに記載 */

/*=============================
 キャンペーンセクション
==============================*/
.top .campaign .item_list {
  gap: 25px;
}

.top .campaign .item_list .item {
  width: 320px;
}

.top .campaign .item_list .ttl {
  margin-top: 0;
}

.top .campaign .item_list .item .txt_block {
  height: auto;
}

.top .campaign .splide__arrows{
  display: none;
}

.top .campaign .splide__pagination{
  display: none;
}

@media screen and (min-width:501px) {

  .top .campaign .sp-only {
    display: none;
  }

}

@media screen and (max-width:500px) {

  .top .campaign .l-container{
    padding-right: 0;
  }

  .top .campaign .pc-only {
    display: none;
  }
  
  .top .campaign .splide{
    margin-top: 30px;
    font-family: 'Noto Sans JP', sans-serif;
  }
  
  .top .campaign .splide .ttl{
    margin-top: 15px;
  }

}

/*=============================
 10の理由セクション
==============================*/
.top .reason {
  background-color: #c67a7a;
  background-image: url(../img/bg_reason_3.png);
  background-size: cover;
  background-position: center top;
  padding: 119px 30px 98px;
  overflow: hidden;
}

.top .reason .splide {}

.top .reason .slide {
  cursor: pointer;
}

.top .reason .slide .upper {
  display: flex;
}

.top .reason .slide .upper .img {
  width: 300px;
  aspect-ratio: 300/400;
}

.top .reason .slide .upper .img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
}

.top .reason .slide .upper .label {
  width: 40px;
  writing-mode: vertical-lr;
  font-weight: 400;
  color: #fff;
  display: flex;
  justify-content: start;
  padding-left: 3px;
}

.top .reason .slide .upper .label .small {
  font-size: 0.75rem;
  margin-bottom: 0.85em;
}

.top .reason .slide .upper .label .big {
  font-size: 1.5rem;
  line-height: 1;
}

.top .reason .slide .lower {
  position: relative;
  background-color: #fff2f2;
  border-radius: 10px;
  width: 320px;
  padding: 40px 30px 30px;
  margin-left: 20px;
  margin-top: -45px;
}

.top .reason .slide .lower h3 {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 1.125rem;
  line-height: 1.44;
  color: #c67a7a;
  margin-bottom: 1em;
}

.top .reason .slide .lower .txt {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 2;
}

.top .reason .slide .lower .caption {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: bold;
  color: #c67a7a;
  line-height: 2.75;
  background-color: #fff;
  border: 1px solid #c67a7a;
  border-radius: 10px;
  padding: 0 1.25em;
  position: absolute;
  top: 0;
  left: 30px;
  transform: translateY(-50%);
}

.top .reason .splide__track {
  margin-right: calc((100vw - 1200px) / -2);
}

.top .reason .splide-controller {
  margin-bottom: 59px;
}

.top .reason .splide__arrows {
  display: flex;
  gap: 30px;
  justify-content: flex-end;
  align-items: center;
}

/* 前へ / 次へボタン */
.top .reason .splide__arrow--prev,
.top .reason .splide__arrow--next {
  display: grid;
  place-content: center;
  width: 5rem;
  height: 5rem;
  cursor: pointer;
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  background-color: #FFF2F2;
  border-radius: 50%;
}

.top .reason .splide__arrow--prev {
  background-color: #c67a7a;
}

.top .reason .splide__arrow--prev:hover,
.top .reason .splide__arrow--next:hover {
  opacity: 0.7;
}

.top .reason .splide__arrow--prev::after,
.top .reason .splide__arrow--next::after {
  width: 0.875rem;
  height: 0.875rem;
  content: "";
  border: solid #c67a7a;
  border-width: 3px 3px 0 0;
}

.top .reason .splide__arrow--prev::after {
  border-color: #fff2f2;
}

.top .reason .splide__arrow--prev::after {
  margin-left: 0.4rem;
  transform: rotate(-135deg);
}

.top .reason .splide__arrow--next::after {
  margin-right: 0.4rem;
  transform: rotate(45deg);
}

.top .reason .splide__arrow:focus-visible {
  /* outline: 3px solid rgba(180, 233, 0, 0.8); */
  outline-offset: 3px;
  z-index: 1;
  transition: none;
}

.top .reason .splide__arrow>svg {
  display: none;
}

.top .reason .splide__arrow:disabled {
  pointer-events: none;
  opacity: 0.5;
  background-color: #c67a7a;
}

.top .reason .splide__arrow:disabled::before,
.top .reason .splide__arrow:disabled::after {
  border-color: #FFF2F2;
}

.top .reason button {
  border-color: #FFF2F2;
  border-style: solid;
}

.top .reason button:disabled {
  border-color: #FFF2F2;
  border-style: solid;
}

.top .reason button:active {
  border-style: solid;
}

.top .reason .splide__pagination {
  display: none;
}

.top .reason .btn_goto {
  margin: 0 auto;
}


@media screen and (max-width:1200px) {
  .top .reason .splide__track {
    margin-right: -30px;
  }
}

@media screen and (max-width:500px) {
  .top .reason {
    background-image: url(../img/bg_reason_sp.png);
    padding-top: 50px;
    padding-left: 20px;
  }

  .top .reason .slide .lower {
    margin-left: 0;
  }

  .top .reason .splide__track {
    margin-right: -40px;
  }

  .top .reason .splide__arrow--prev,
  .top .reason .splide__arrow--next {
    width: 40px;
    height: 40px;
    border-width: 1px;
    position: absolute;
    top: 367px;
    z-index: 10;
  }

  .top .reason .splide__arrow--prev {
    left: -10px;
    background-color: #FFF2F2;
  }

  .top .reason .splide__arrow--next {
    right: 0px;
    background-color: #c67a7a;
  }

  .top .reason .splide__arrow--prev::after {
    border-color: #c67a7a;
  }

  .top .reason .splide__arrow--next::after {
    border-color: #FFF2F2;
  }

  .top .reason .splide__arrow--prev:hover,
  .top .reason .splide__arrow--next:hover {
    opacity: 1;
  }

  .top .reason .slide .lower .txt {
    font-size: 0.9375rem;
  }

  .top .reason .splide__pagination {
    display: block;
    text-align: center;
  }

  .top .reason .splide__pagination {
    margin-top: 1rem;
  }

  .top .reason .splide__pagination li:not(:first-child) {
    margin-left: 1rem;
  }

  .top .reason .splide__pagination__page {
    width: 0.9375rem;
    height: 0.9375rem;
    background-color: #C67A7A;
    border: 1px solid #fff;
    border-radius: 50%;
  }

  .top .reason .splide__pagination__page.is-active {
    background-color: #fff;
  }
}

/*=============================
 ギャラリーセクション
==============================*/
.top .gallery {
  background-color: #FFF2F2;
  padding-top: 108px;
  padding-bottom: 150px;
}

.top .gallery .cnt {
  width: 100%;
  margin-top: 65px;
  margin-bottom: 77px;
}

.top .gallery .cnt ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 20px;
}

.top .gallery .cnt li {
  width: 19.4%;
  aspect-ratio: 1/1;
}

.top .gallery .cnt li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.top .gallery .baloon {
  margin-bottom: 40px;
}

.top .gallery .btn_goto {
  margin: 0 auto;
}

.top .gallery .cat_type {
  margin-top: 64px;
  margin-bottom: 64px;
}

.top .gallery .splide {
  margin-top: 36.5px;
  margin-bottom: 43px;
}

.top .gallery .splide__slide {
  width: 149px;
  height: 149px;
}

.top .gallery .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.top .gallery .splide__arrows {
  display: none;
}


@media screen and (max-width:800px) {
  .top .gallery .item_list.x280 .item {
    max-width: 100%;
  }

  .top .gallery .item_list {
    padding: 0 30px;
  }
}

@media screen and (max-width:500px) {
  .top .gallery {
    padding-top: 65px;
    padding-bottom: 58px;
  }

  .top .gallery .baloon {
    display: none;
  }

  .top .gallery .cat_type {
    background-color: #fff;
    border-radius: 30px;
    margin: 0 20px 30px;
  }

  .top .gallery .cat_type .lead {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 60px;
  }

  .top .gallery .cat_type .lead p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.9375rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    color: #C67A7A;
  }

  .top .gallery .cat_type .lead .circle {
    position: absolute;
    width: 29px;
    height: 29px;
    top: 50%;
    right: 1.6rem;
    background-color: #C67A7A;
    border-radius: 50%;
    transform: translateY(-50%);
  }

  .top .gallery .cat_type .lead .plus1,
  .top .gallery .cat_type .lead .plus2 {
    position: absolute;
    right: 32px;
    width: 1rem;
    height: 2px;
    background-color: #fff;
  }

  .top .gallery .cat_type .lead .plus1 {
    transform: rotate(0deg);
    transition: 0.3s;
  }

  .top .gallery .cat_type .lead.active .plus1 {
    display: none;
  }

  .top .gallery .cat_type .lead .plus2 {
    transform: rotate(90deg);
    transition: 0.3s;
  }

  .top .gallery .cat_type .lead.active .plus2 {
    transform: rotate(0deg);
  }

  .top .gallery .cat_type ul {
    padding: 0 20px;
  }
}



/*=============================
 着物レンタルの楽しみ方セクション
==============================*/
.top .enjoy {
  background-image: url(../img/bg_enjoy.jpg);
}

.top .enjoy .item_list.sp {
  display: none;
}

.top .enjoy .item_list .item .txt_block .btn {
  width: 100%;
}

@media screen and (max-width:500px) {
  .top .enjoy {
    background-image: url(../img/bg_enjoy_sp.jpg);
    padding: 85px 0px;
  }

  .top .enjoy .inner ul {
    margin-top: 38px;
  }

  .top .enjoy .item_list.pc {
    display: none;
  }

  .top .enjoy .item_list.sp {
    display: block;
  }
}

/*=============================
 お客様の声セクション
==============================*/
.top .voice {
  background-color: #FFFDF5;
  padding: 108px 0px 150px;
}

.top .voice .cnt {
  background-color: #FFF2F2;
  padding: 23px 20px;
  margin-top: 50px;
  margin-bottom: 41px;
}

.voice .btns {
  margin-top: 50px;
}

.voice .btns .voice_btn {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #C67A7A;
  letter-spacing: 0.12em;
  line-height: 2;
  padding: 0 2.13em;
  background-color: #fff;
  border: #C67A7A 1px solid;
  border-radius: 1.1em;
  cursor: pointer;
}

.voice .btns .voice_btn.current {
  color: #fff;
  background-color: #C67A7A;
}

.top .voice .cnt.pc {
  display: block;
}

.top .voice .cnt.sp {
  display: none;
}

.top .voice .cnt.pc li {
  width: 100%;
  background-color: #fff;
  padding: 18px 21px 14px;
  margin-bottom: 20px;
}

.top .voice .upper {
  display: flex;
  justify-content: space-between;
  border-bottom: #d9d9d9 1px solid;
  padding-bottom: 0.625rem;
}

.top .voice .upper .left {
  width: 50%;
}

.top .voice .upper .right {
  width: 50%;
  text-align: right;
}

.top .voice .star {
  font-size: 2.08rem;
  letter-spacing: 0.3em;
  color: #A19A69;
}

.top .voice .name {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #000;
  margin-top: 0.625em;
}

.top .voice .right p {
  font-family: "Noto Sans JP", sans-serif;
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #C67A7A;
  line-height: 2.66;
  border: #C67A7A 1px solid;
  border-radius: 1.5em;
  padding: 0 2.1em;
}

.top .voice .lower {
  font-family: "Noto Sans JP", "Microsoft Yahei", "PingHei", "Malgun Gothic", "Yoon Gothic", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: #000;
}

.top .voice .lower .content {
  display: inline-block;
  background-color: #fff;
  padding: 1.5em 0 1.8em;
}

.top .voice .comment {
  text-align: right;
}

.top .voice .btn_goto {
  margin: 0 auto;
}

@media screen and (max-width:700px) {
  .top .voice .star {
    font-size: 1.5rem;
  }

  .top .voice .right p {
    font-size: 0.75rem;
  }

  .top .voice .lower {
    font-size: 0.875rem;
  }
}

@media screen and (max-width:500px) {
  .top .voice {
    background-color: #FFFDF5;
    padding: 70px 0px 66px;
  }

  .top .voice .cnt.pc {
    display: none;
  }

  .top .voice .cnt.sp {
    display: block;
    background-color: transparent;
    padding: 0;
    margin-top: 55px;
  }

  .top .voice .star {
    font-size: 1.125rem;
  }

  .top .voice .right p {
    font-size: 0.625rem;
    line-height: 2;
    padding: 0 0.5em;
  }

  .top .voice .splide__track {
    padding-bottom: 15px;
    margin-right: -20px;
  }

  .top .voice .splide__slide {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
    padding: 15px;
  }

  .top .voice .splide-wrapper {
    background-color: #FFF2F2;
    padding: 30px 0 20px 20px;
    margin-right: -20px;
    margin-left: -20px;
    overflow-x: hidden;

  }

  .top .voice .splide__arrows {
    display: none;
  }

  .top .voice .splide__pagination {
    margin-top: 1rem;
  }

  .top .voice .splide__pagination li:not(:first-child) {
    margin-left: 1.25rem;
  }

  .top .voice .splide__pagination__page {
    width: 0.9375rem;
    height: 0.9375rem;
    background-color: #F0EEE5;
    border-radius: 50%;
    border: none;
  }

  .top .voice .splide__pagination__page.is-active {
    background-color: #A19A69;
  }
}

/*=============================
 よくあるご質問セクション
==============================*/
.top .qa {
  background-color: #FFF2F2;
  padding: 114px 30px 130px;
}

.top .qa .cnt {
  margin-top: 56px;
  margin-bottom: 54px;
}

.top .qa .cnt li {
  background-color: #fff;
  border-radius: 10px;
  padding: 18px 30px;
  margin-bottom: 20px;
}

.top .qa .cnt li .question {
  display: flex;
  align-items: baseline;
  padding-bottom: 1rem;
  position: relative;
  cursor: pointer;
}

.top .qa .cnt li .question .mark {
  width: 66px;
  font-family: "georgia", "georgiapro", sans-serif;
  font-size: 2.25rem;
  font-weight: 400;
  color: #A19A69;
}

.top .qa .cnt li .question .txt {
  width: calc(100% - 66px - 35px);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

.top .qa .cnt li .question .plus1,
.top .qa .cnt li .question .plus2 {
  position: absolute;
  right: 0;
  width: 15px;
  height: 1px;
  background-color: #C67A7A;
}

.top .qa .cnt li .question .plus1 {
  top: 50%;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.top .qa .cnt li .question .plus2 {
  top: 50%;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.top .qa .cnt li .question.active .plus1 {
  display: none;
}

.top .qa .cnt li .question.active .plus2 {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.top .qa .cnt li .answer {
  display: flex;
  padding-top: 7px;
  padding-bottom: 15px;
}

.top .qa .cnt li .answer .mark {
  width: 66px;
  font-family: "georgia", "georgiapro", sans-serif;
  font-size: 2.25rem;
  font-weight: 400;
  color: #C67A7A;
}

.top .qa .cnt li .answer .txt {
  width: calc(100% - 66px - 35px);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  padding-top: 0.6em;
}

.top .qa .cnt li .answer .txt a {
  color: #1a0dab;
}

.top .qa .btn_goto {
  margin: 0 auto;
}

.top .qa .qa_btn {
  font-family: 'Noto Sans JP', sans-serif;
  margin-top: 40px;
  text-align: center;
  line-height: 1.5;
}

@media screen and (max-width:500px) {
  .top .qa {
    padding: 53px 0;
  }

  .top .qa .cnt {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .top .qa .cnt li {
    padding: 10px 20px 10px;
  }

  .top .qa .cnt li .question {
    align-items: center;
    padding-bottom: 0;
  }

  .top .qa .cnt li .answer .mark {
    margin-top: 0.4em;
  }

  .top .qa .cnt li .question .mark,
  .top .qa .cnt li .answer .mark {
    font-size: 1.75rem;
    width: 31px;
  }

  .top .qa .cnt li .question .txt,
  .top .qa .cnt li .answer .txt {
    width: calc(100% - 31px - 25px);
    font-size: 0.9375rem;
  }

  .top .qa .qa_btn {
    margin-top: 20px;
    text-align: center;
  }

  .top .qa .qa_btn a {
    margin: 5px 0;
  }
}

/*=============================
 ブログセクション
==============================*/
.blog {
  background-color: #fff;
  padding: 135px 30px 120px;
}

.blog .item_list {
  margin-top: 75px;
  margin-bottom: 97px;
}

.blog .item_list.pc {
  display: flex;
  gap: 50px;
}

.blog .item_list.sp {
  display: none;
}

.blog .btn_goto {
  margin: 0 auto;
}

@media screen and (max-width:500px) {
  .blog {
    padding: 57px 30px 70px;
  }

  .blog .item_list {
    margin-top: 31px;
    margin-bottom: 31px;
  }

  .blog .item_list.pc {
    display: none;
  }

  .blog .item_list.sp {
    display: block;
  }
}

/*=============================
 お役立ち情報セクション
==============================*/
.useful {
  background-image: url(../img/bg_useful.jpg);
}

.useful .inner+.inner {
  margin-top: 60px;
}

.useful .item_list.pc {
  display: flex;
}

.useful .item_list.sp {
  display: none;
}

.useful .sub_content h3 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 22px;
}

.useful .sub_content .sub_text {
  max-width: 1000px;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
}

.useful .sub_content .sub_text p+p {
  margin-top: 1.2em;
}

.useful .sub_content .sub_text p a {
  text-decoration: underline;
}

@media screen and (max-width:500px) {
  .useful .item_list.pc {
    display: none;
  }

  .useful .item_list.sp {
    display: block;
  }

}

/*=============================
 動画セクション
==============================*/

.top .video {
  font-family: "Noto Sans JP", sans-serif;
  background-color: #F8F8F8;
  padding: 90px 0;
}

.top .video .inner {
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 64px;
  background-color: #fff;
  border-radius: 8px;
  padding: 65px 100px;
  margin: 40px auto 0;
}

.top .video_item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.top .video h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: #C67A7A;
  text-align: center;
  letter-spacing: 0.05em;
  margin-bottom: 1.05em;
}

.top .video p {
  width: 100%;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.43;
  padding: 0.5em 2em 0 2em;
}

@media screen and (max-width:500px) {
  .top .video .inner {
    padding: 65px 0;
  }
}


.top .video .sns_block {
  max-width: 87%;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin: 60px auto 0;
}

.top .video .sns_block .sns_block_child {
  width: 360px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.top .video .sns_block a {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #C67A7A;
  background-color: #fff;
  border: #C67A7A 1px solid;
  border-radius: 1.5em;
  display: flex;
  gap: 1rem;
  align-items: center;
  height: 46px;
  width: 360px;
  padding: 0 40px;
}

.top .video .sns_block a:hover {
  opacity: 1;
  background-color: #C67A7A;
  color: #fff;
}

.top .video .sns_block a img {
  width: 24px;
}


@media screen and (max-width:500px) {
  .top .video .sns_block {
    gap: 24px;
    margin-bottom: 40px;
  }

  .top .video .sns_block .sns_block_child {
    gap: 24px;
  }

  .top .video .sns_block a {
    font-size: 1rem;
    width: 325px;
  }
}

/*=============================
 運営会社情報
==============================*/

.company {
  background-color: #fff;
  padding: 135px 0 120px;
}

.company .common_table {
  margin-top: 60px;
}

@media screen and (max-width:500px) {
  .company {
    padding: 57px 0 70px;
  }

  .company .common_table {
    margin-top: 40px;
  }
}

/*=============================
 観光スポット
==============================*/

.spot {
  padding: 90px 0;
}

.spot_area {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 60px auto 0;
}

.spot_area .spot_box {
  position: relative;
  width: 23%;
  font-family: 'Noto Sans JP', sans-serif;
}

.spot_area .spot_box img {
  aspect-ratio: 5 / 4;
  object-fit: cover;
  width: 100%;
}

.spot_area .spot_box .spot_box_pic {
  margin-bottom: 10px;
}

.spot_area .spot_box h3 {
  margin-bottom: 10px;
}

.spot_area .spot_box p {
  position: relative;
  font-size: 14px;
  max-height: 80px;
  overflow: hidden;
  transition: max-height .2s;
}

.spot_area .spot_box p.active {
  max-height: 100%;
}

.spot_area .spot_box p::after {
  position: absolute;
  display: block;
  content: '';
  bottom: 0;
  width: 100%;
  height: 60px;
  z-index: 2;
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  font-size: 14px;
}

.spot_area .spot_box p.active::after {
  display: none;
}

.spot_area .spot_box_btn {
  text-align: center;
  margin-top: 30px;
}

.spot_box_accr {
  margin-top: 20px;
}

.spot_box_accr button {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  outline: none;
  border: none;
  cursor: pointer;
}

.spot_box_accr button span {
  display: inline-block;
  position: relative;
  padding-right: 30px;
}

.spot_box_accr button span.close {
  display: none;
}

.spot_box_accr button span::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  content: '+';
  width: 20px;
  height: 20px;
  background-color: #4B4B4B;
  border-radius: 50%;
  color: #fff;
}

.spot_box_accr button.active span::before {
  content: '－';
}

.spot_box_accr button.active span.open {
  display: none;
}

.spot_box_accr button.active span.close {
  display: block;
}

@media screen and (max-width: 500px) {

  .spot {
    padding: 50px 0;
  }

  .spot_area {
    display: block;
    margin: 40px auto 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .spot_area .spot_box {
    width: 100%;
    padding-bottom: 0;
  }

  .spot_area .spot_box+.spot_box {
    margin-top: 40px;
  }

  .spot_area .spot_box_btn {
    position: relative;
    margin-top: 20px;

  }

  .spot_area .spot_box_btn a {
    font-size: 14px;
  }

}

/*=============================
 アクセス
==============================*/

.access {
  padding: 90px 0;
}

.access_btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.access_btns a.is_active {
  background-color: #C67A7A !important;
  color: #fff !important;
}

.access_block {
  max-width: 1060px;
  margin: 60px auto 0;
  font-family: 'Noto Sans JP', sans-serif;
}

.access_block:not(:first-of-type) {
  display: none;
}

.access_block h3 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.access_block>* {
  margin-bottom: 40px;
}

.access_block ol {
  counter-reset: listnum;
}

.access_block ol li {
  position: relative;
  padding-left: 80px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.access_block ol li+li {
  margin-top: 20px;
}

.access_block .access_block_pic {
  width: 320px;
}

.access_block .access_block_pic img {
  width: 100%;
  aspect-ratio: 3 / 2;
}

.access_block .access_block_data {
  flex: 1;
}

.access_block ol li::before {
  position: absolute;
  counter-increment: listnum;
  content: counter(listnum);
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  border: solid 1px #C67A7A;
  color: #C67A7A;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.access_block .splide__arrows {
  display: none !important;
}

@media screen and (min-width: 501px) {
  .access_block .sp {
    display: none !important;
  }
}

@media screen and (max-width: 500px) {

  .access_block .splide__pagination {
    display: flex !important;
  }

  .access_block .pc {
    display: none !important;
  }

  .access {
    padding: 50px 0 30px;
  }

  .access_btns {
    margin-top: 30px;
    gap: 10px;
  }

  .access_block {
    margin-top: 40px;
  }

  .access_block ol li {
    margin-top: 0 !important;
    padding-left: 55px;
    display: block;
  }

  .access_block ol li::before {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .access_block .access_block_pic {
    width: 100%;
    margin-bottom: 10px;
  }
}

.access_block .splide__pagination__page {
  margin: 0 0.5rem;
  width: 0.9375rem;
  height: 0.9375rem;
  /* background-color: #FFF2F2; */
  background-color: #C67A7A;
  border-radius: 50%;
  border: none;
}

.access_block .splide__pagination__page.is-active {
  background-color: #FFF2F2;
}

.access_block .splide__pagination {
  margin-top: 40px;
}

.top_planBn {
  display: flex;
  max-width: 840px;
  margin: 0 auto 60px;
  gap: 40px;
}

.top_planBn a {
  width: 100%;
}


@media screen and (max-width: 500px) {

  .top_planBn {
    width: calc(100vw - 20px);
    margin: 10px auto 30px;
    flex-direction: column;
    gap: 10px;
  }

}