@charset "UTF-8";
/*-----------------------------------------------------------------------------
初期化
-------------------------------------------------------------------------------*/
* {
  box-sizing: border-box;
}

ul, ol, li {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  transition: all 0.3s ease-in;
}

img {
  vertical-align: bottom;
}

h1, h2, h3, h4, h5, h6, figure, p, dl, dt, dd {
  padding: 0;
  margin: 0;
}

.none {
  display: none;
}

html, body {
  scroll-behavior: smooth;
}

/*-----------------------------------------------------------------------------
break point
-------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------
PC/SP
-------------------------------------------------------------------------------*/
@media screen and (min-width: 768px) {
  .pc-only {
    display: block;
  }
  .sp-only {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}
/*-----------------------------------------------------------------------------
colors
-------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------
font
-------------------------------------------------------------------------------*/
body {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-size: 1rem;
  line-height: 1.4;
  overflow-x: hidden;
  width: 100%;
  color: #3B3831;
}
@media screen and (max-width: 767px) {
  body {
    height: 100%;
    font-size: 14px;
    line-height: 1.4;
    width: 100%;
  }
  body .l-tieup {
    overflow-x: hidden;
  }
}

.txt-center {
  text-align: center;
}

.txt-right {
  text-align: right;
}

.txt-bold {
  font-weight: 700;
}

.txt-white {
  color: #fff;
}

/*-----------------------------------------------------------------------------
a tag
-------------------------------------------------------------------------------*/
a {
  transition: all 0.3s ease-in;
}

/*-------------------------------------------------------------
ふわっと表示
-------------------------------------------------------------*/
.scroll_up {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 1s ease-out, transform 2s ease-out;
  transition-delay: calc(var(--delay) * 0.2s);
}

.scroll_up.on {
  transform: translateY(0);
  opacity: 1;
}

/*-----------------------------------------------------------------------------
画像
-------------------------------------------------------------------------------*/
img {
  display: block;
  vertical-align: bottom;
}

.img-center {
  display: block;
  margin: 0 auto;
}

/*-----------------------------------------------------------------------------
.inner
-------------------------------------------------------------------------------*/
.inner {
  width: 100%;
  max-width: 90rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 1rem;
  }
}

/*-----------------------------------------------------------------------------
display flex
-------------------------------------------------------------------------------*/
.dflex {
  display: flex;
}

.dflex-center {
  justify-content: center;
}

.dflex-column-reverse {
  flex-direction: column-reverse;
}

.dblock {
  display: block;
}

/*-----------------------------------------------------------------------------
ボタン
-------------------------------------------------------------------------------*/
.btn a {
  display: block;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  transition: all 0.3s ease-in;
  line-height: 2.375rem;
  border-radius: 1.25rem;
}
.btn a span {
  position: relative;
}
@media screen and (min-width: 768px) {
  .btn a:hover {
    opacity: 0.7;
  }
}

.btn-red a {
  border: 0.0625rem solid #FC4747;
  color: #fff;
  background-color: #FC4747;
}

.btn-arrow-bottom span:after,
.btn-arrow span:after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  background: url("../img/icon_arrow_btn.svg") no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: -1.5rem;
}

.btn-arrow-bottom span:after {
  width: 1.5rem;
  height: 1.5rem;
  background: url("../img/icon_arrow_bottom.svg") no-repeat center center;
  right: -2rem;
}

/*-----------------------------------------------------------------------------
共通パーツ
-------------------------------------------------------------------------------*/
.txt-red {
  color: #FC4747;
}

main {
  background: url("../img/main_bg.png") repeat top center;
  background-size: cover;
}
main .httl {
  background: url("../img/bg_headline_pc.svg") no-repeat top center;
  width: 30rem;
  height: 8.625rem;
  margin: 0 auto 2rem;
  line-height: 8.625rem;
  text-align: center;
  font-size: 2rem;
  color: #FC4747;
}
@media screen and (max-width: 767px) {
  main .httl {
    width: 100%;
    background-size: cover;
    height: 26vw;
    line-height: 26vw;
    font-size: 6vw;
  }
}
main .tag span {
  padding: 0 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5rem;
  border-radius: 0.75rem;
}
@media screen and (max-width: 767px) {
  main .tag span {
    font-size: 0.75rem;
    display: block;
  }
}
main .tag-purple span {
  background-color: #FCF6FA;
}
main .tag-blue span {
  background-color: #E5EDF6;
}
main .tag-green span {
  background-color: #EBF5E3;
}
main .card {
  background-color: #fff;
  border-radius: 1rem;
  padding: 1.5rem 1rem;
  box-shadow: 0px 2px 4px 0px rgba(51, 51, 51, 0.12);
  min-height: 31.375rem;
}
@media screen and (max-width: 767px) {
  main .card {
    min-height: 21.875rem;
  }
}
main .card .card_inner {
  flex-direction: column;
  height: 100%;
}
main .card .card_inner .upper {
  flex-direction: column-reverse;
  margin-bottom: 0.5rem;
}
main .card .card_inner .upper .ttlarea {
  flex-direction: column-reverse;
}
main .card .card_inner .upper .ttlarea .tag {
  margin-bottom: 0.5rem;
}
main .card .card_inner .upper .ttlarea .ttl {
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  main .card .card_inner .upper .ttlarea .ttl {
    font-size: 1rem;
  }
}
main .card .card_inner .upper .img {
  margin-bottom: 0.5rem;
}
main .card .card_inner .upper .img img {
  width: 100%;
}
main .card .card_inner .txt {
  font-size: 0.875rem;
  font-weight: 400;
}
main .card .card_inner .btn {
  margin-top: auto;
}
main .secbwtop img {
  width: 100%;
  opacity: 0.5;
}
main .secbw {
  position: relative;
}
main .secbw .inner {
  padding-left: 7.5rem;
  padding-right: 7.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  main .secbw .inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
main .secbw .inner .icon {
  position: absolute;
}
main .secbw .inner > .dflex {
  gap: 9.0625rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  main .secbw .inner > .dflex {
    gap: 0.5rem;
    flex-direction: column-reverse;
  }
}
main .secbw .contents {
  width: 100%;
  max-width: 40rem;
}
main .secbw .contents .ttl {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  main .secbw .contents .ttl {
    margin-bottom: 0.625rem;
  }
}
main .secbw .contents .txt {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2.4;
}
@media screen and (max-width: 767px) {
  main .secbw .contents .txt {
    font-size: 0.875rem;
  }
}
main .secbw .contents .txt:not(:last-of-type) {
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 767px) {
  main .secbw .contents .txt:not(:last-of-type) {
    margin-bottom: 1.5rem;
  }
}
main .secbw .img {
  width: 100%;
  max-width: 25.9375rem;
}
main .secbw .img img {
  width: 100%;
}
main .secbw .bg-color {
  padding-bottom: 21.25rem;
}
main .secbw .swiperarea {
  padding-bottom: 1.5rem;
  margin-top: -17.5rem;
}
main .secbw .swiperarea .swiper {
  overflow: unset;
}
main .secbw .swiperarea .swiper .card_inner {
  min-height: 28.25rem;
}
main .secbw .swiperarea .swiper-scrollbar {
  bottom: -1rem;
}
main .secbw .swiperarea .swiper-scrollbar .swiper-scrollbar-drag {
  background: #FC4747;
}

/*-----------------------------------------------------------------------------
header
-------------------------------------------------------------------------------*/
#header {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-bottom: 0.0625rem solid #C8C8C8;
  height: 3.625rem;
}
@media screen and (max-width: 767px) {
  #header {
    height: 3rem;
  }
  #header img {
    width: 7.03125rem;
  }
}

/*-----------------------------------------------------------------------------
パンくずリスト
-------------------------------------------------------------------------------*/
.breadlist {
  background-color: #fff;
  padding: 0.25rem 0.4375rem;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .breadlist {
    padding: 0 !important;
  }
}
.breadlist .inner {
  padding: 0.75rem 7.5rem;
}
@media screen and (max-width: 767px) {
  .breadlist .inner {
    padding: 0.5rem;
  }
}
@media screen and (max-width: 767px) {
  .breadlist {
    padding: 0.1875rem 0.3125rem 0.125rem;
    width: 100%;
  }
}
.breadlist .list {
  align-items: center;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .breadlist .list {
    padding: 0;
    flex-wrap: wrap;
    gap: 4px 0;
  }
}
.breadlist .list .item {
  font-size: 0.875rem;
  letter-spacing: 0.045rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .breadlist .list .item {
    font-size: 0.625rem;
  }
}
.breadlist .list .item:not(:last-of-type):after {
  content: "";
  display: inline-block;
  width: 0.875rem;
  vertical-align: -4px;
  margin-left: 4px;
  width: 1.25rem;
  height: 1.25rem;
  background: url("../img/icon_arrow_breadlist.svg") no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .breadlist .list .item:not(:last-of-type):after {
    vertical-align: -1px;
    width: 10px;
    height: 10px;
  }
}
.breadlist .list .item a {
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.045rem;
  padding-top: 0.125rem;
  display: inline-block;
  color: #298BFF;
}
@media screen and (max-width: 767px) {
  .breadlist .list .item a {
    font-size: 0.625rem;
  }
}
.breadlist .list .item a:hover {
  text-decoration: underline;
}

/*-----------------------------------------------------------------------------
footer
-------------------------------------------------------------------------------*/
.footer {
  background-color: #1F1F1F;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .footer {
    height: 2.25rem;
  }
}
.footer small {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer small {
    font-size: 0.75rem;
  }
}

/*-----------------------------------------------------------------------------
kv
-------------------------------------------------------------------------------*/
.kv {
  background: url("../img/fv_bg.png") no-repeat top -11.25rem left -8.75rem;
  background-size: 117.5625rem auto;
  padding: 3.75rem 0 18.75rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .kv {
    background: url("../img/fv_bg_sp.svg") no-repeat top -4rem right -11.25rem;
    padding: 6.3125rem 0 14.375rem;
  }
}
.kv .ttlwrap {
  width: 38.75rem;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .kv .ttlwrap {
    width: 20.8125rem;
  }
}
.kv .ttlwrap .ttl {
  width: 100%;
}
.kv .ttlwrap .icon {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  width: 10.5rem;
  top: 0;
}
@media screen and (max-width: 767px) {
  .kv .ttlwrap .icon {
    width: 5.4375rem;
  }
}
.kv .autoscroll {
  background: url("../img/fv_slide_img_pc.png") repeat-x;
  background-size: auto 51.375rem;
  animation: bgscrollfv 60s linear infinite;
  height: 51.375rem;
  width: 100%;
  margin-bottom: 5rem;
  position: absolute;
  top: 1.875rem;
  will-change: transform;
}
@media screen and (max-width: 767px) {
  .kv .autoscroll {
    background: url("../img/fv_slide_img_sp.png") repeat-x;
    background-size: auto 38.75rem;
    height: 38.75rem;
  }
}
@keyframes bgscrollfv {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/*-----------------------------------------------------------------------------
体験しよう！ニッポンの素敵な文化！
-------------------------------------------------------------------------------*/
.sec-culture {
  background: url("../img/bg_mountain.png") no-repeat top right -33.125rem;
  background-size: 143.75rem auto;
  padding: 2.125rem 0 22.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .sec-culture {
    background: url("../img/bg_mountain.png") no-repeat bottom right -8.125rem;
    background-size: 43.75rem auto;
    padding: 2.75rem 0 17.5rem;
  }
}
.sec-culture .inner {
  padding-left: 8.75rem;
  padding-right: 8.75rem;
}
@media screen and (max-width: 767px) {
  .sec-culture .inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.sec-culture .contents {
  width: 100%;
  max-width: 39.1875rem;
}
.sec-culture .sec_ttl {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.3rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .sec-culture .sec_ttl {
    font-size: 5.5vw;
    margin-bottom: 4vw;
  }
}
@media screen and (max-width: 767px) {
  .sec-culture .sec_ttl2 {
    font-size: 4.2vw;
    line-height: 2;
  }
}
.sec-culture .sec_txt {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2.5;
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 767px) {
  .sec-culture .sec_txt {
    font-size: 3.5vw;
    margin-bottom: 7vw;
    line-height: 2.3;
  }
}
.sec-culture .icon {
  position: absolute;
  right: -5rem;
  top: 0;
}

/*-----------------------------------------------------------------------------
画像autoスクロールエリア
-------------------------------------------------------------------------------*/
.autoscroll {
  background: url("../img/slideshow_img_pc.png") repeat-x;
  background-size: auto 11.25rem;
  animation: bgscroll 70s linear infinite;
  height: 11.25rem;
  margin-bottom: 5rem;
  will-change: transform;
}
@media screen and (max-width: 767px) {
  .autoscroll {
    background-size: auto 5.625rem;
    height: 5.625rem;
    animation: bgscroll 140s linear infinite;
    margin: 1.25rem 0 3.75rem;
  }
}

@keyframes bgscroll {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 200% 0;
  }
}
/*-----------------------------------------------------------------------------
おすすめプラン
-------------------------------------------------------------------------------*/
.sec-rplan {
  margin-bottom: 3.75rem;
}
.sec-rplan .inner {
  max-width: 50.625rem;
}
.sec-rplan .swiper-button-prev,
.sec-rplan .swiper-button-next {
  width: 3.5rem;
  height: 3.5rem;
  transition: all 0.3s ease-in;
}
@media screen and (max-width: 767px) {
  .sec-rplan .swiper-button-prev,
  .sec-rplan .swiper-button-next {
    display: none;
  }
}
.sec-rplan .swiper-button-prev:after,
.sec-rplan .swiper-button-next:after {
  display: none;
}
@media screen and (min-width: 768px) {
  .sec-rplan .swiper-button-prev:hover,
  .sec-rplan .swiper-button-next:hover {
    opacity: 0.7;
  }
}
.sec-rplan .swiper-button-prev {
  background: url("../img/icon_slide_prev.svg") no-repeat top center;
  background-size: contain;
  left: -4rem;
}
.sec-rplan .swiper-button-next {
  background: url("../img/icon_slide_next.svg") no-repeat top center;
  background-size: contain;
  right: -4rem;
}
.sec-rplan .swiper-pagination {
  bottom: -1.875rem;
}
.sec-rplan .swiper {
  overflow: unset;
}
.sec-rplan .swiper-pagination-bullet {
  width: 1.5rem;
  height: 0.5rem;
  border-radius: 0.25rem;
}
.sec-rplan .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #FC4747;
}
.sec-rplan .swiper-slide {
  border-radius: 1.5rem;
  background-color: #fff;
  box-shadow: 0px 2px 4px 0px rgba(51, 51, 51, 0.12);
  min-width: 49.25rem;
}
@media screen and (max-width: 767px) {
  .sec-rplan .swiper-slide {
    min-width: unset;
  }
}
.sec-rplan .swiper-slide > .dflex {
  flex-direction: row;
}
@media screen and (max-width: 767px) {
  .sec-rplan .swiper-slide > .dflex {
    flex-direction: column-reverse;
  }
}
.sec-rplan .swiper-slide > .dflex > .dflex {
  flex-direction: column;
  width: 48%;
  padding: 2.0625rem 1.5rem;
  height: 16rem;
}
@media screen and (max-width: 767px) {
  .sec-rplan .swiper-slide > .dflex > .dflex {
    width: 100%;
    height: unset;
    padding: 1rem;
    min-height: 12rem;
  }
}
.sec-rplan .swiper-slide > .dflex > .dflex .tagarea {
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.sec-rplan .swiper-slide > .dflex > .dflex .ttl {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .sec-rplan .swiper-slide > .dflex > .dflex .ttl {
    font-size: 0.875rem;
  }
}
.sec-rplan .swiper-slide > .dflex > .dflex .btn {
  margin-top: auto;
}
.sec-rplan .swiper-slide > .dflex .img {
  width: 52%;
}
@media screen and (max-width: 767px) {
  .sec-rplan .swiper-slide > .dflex .img {
    width: 100%;
  }
}
.sec-rplan .swiper-slide > .dflex .img img {
  width: 100%;
}

/*-----------------------------------------------------------------------------
テーマから探す
-------------------------------------------------------------------------------*/
.sec-theme {
  background: url("../img/bg_theme.png") no-repeat top center;
  background-size: 1763px auto;
  padding: 10.8125rem 0 2.6875rem;
}
@media screen and (max-width: 767px) {
  .sec-theme {
    background: url("../img/bg_theme_sp.svg") no-repeat top 1.875rem left -0.5rem;
    padding: 15.625rem 0 2.5rem;
  }
}
.sec-theme .swiper {
  overflow: unset;
  width: 100%;
  max-width: 58.25rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .sec-theme .swiper {
    padding: 0 11vw;
  }
}
.sec-theme .swiper-slide {
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0px 2px 4px 0px rgba(51, 51, 51, 0.12);
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .sec-theme .swiper-slide {
    width: 17.75rem;
    min-height: 23.375rem;
  }
}
@media screen and (max-width: 767px) {
  .sec-theme .swiper-slide {
    min-height: 26.5rem;
    height: 78%;
  }
}
.sec-theme .swiper-slide > .dflex {
  flex-direction: column;
  height: 100%;
}
.sec-theme .swiper-slide figure {
  margin-bottom: 1rem;
}
.sec-theme .swiper-slide .ttl {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.sec-theme .swiper-slide .txt {
  font-size: 0.8125rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.sec-theme .swiper-slide .btn {
  margin-top: auto;
}
.sec-theme figure img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .sec-theme .swiper-button-prev,
  .sec-theme .swiper-button-next {
    width: 2rem;
    height: 2rem;
  }
  .sec-theme .swiper-button-prev:after,
  .sec-theme .swiper-button-next:after {
    display: none;
  }
  .sec-theme .swiper-button-prev {
    background: url("../img/icon_slide_prev.svg") no-repeat top center;
    background-size: contain;
  }
  .sec-theme .swiper-button-next {
    background: url("../img/icon_slide_next.svg") no-repeat top center;
    background-size: contain;
  }
}

/*-----------------------------------------------------------------------------
世代を結ぶ匠の技
-------------------------------------------------------------------------------*/
.sec-technique .bg-color {
  background: rgba(199, 218, 242, 0.5);
}
@media screen and (max-width: 767px) {
  .sec-technique .ttl img {
    width: 70%;
    display: block;
    margin: 0 auto;
  }
}
.sec-technique .icon_tea {
  left: 34.375rem;
  bottom: -1.5625rem;
}
@media screen and (max-width: 767px) {
  .sec-technique .icon_tea {
    left: 50%;
    transform: translate(-50%, 0);
    bottom: -2.5rem;
  }
  .sec-technique .icon_tea img {
    width: 7.5rem;
  }
}
.sec-technique .inner > .dflex {
  position: relative;
  z-index: 10;
}
.sec-technique .icon_cloud {
  opacity: 0.4;
  right: -5.625rem;
  bottom: 6.25rem;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .sec-technique .icon_cloud {
    display: none;
  }
}

/*-----------------------------------------------------------------------------
暮らしを彩る生活の知恵
-------------------------------------------------------------------------------*/
.sec-knowledge .bg-color {
  background: rgba(214, 239, 193, 0.5);
  padding-bottom: 4rem;
}
.sec-knowledge .bg-color + .swiperarea {
  margin-top: -14.375rem;
}
@media screen and (max-width: 767px) {
  .sec-knowledge .bg-color + .swiperarea {
    margin-top: -17.5rem;
  }
}
@media screen and (max-width: 767px) {
  .sec-knowledge .ttl img {
    width: 87%;
    display: block;
    margin: 0 auto;
  }
}
.sec-knowledge .icon_ninjya {
  right: 3.875rem;
  top: -10.9375rem;
}
@media screen and (max-width: 767px) {
  .sec-knowledge .icon_ninjya {
    right: 0.75rem;
    top: -4.875rem;
  }
  .sec-knowledge .icon_ninjya img {
    width: 7.875rem;
  }
}
.sec-knowledge .icon_archer {
  left: 40rem;
  bottom: -6.8125rem;
}
@media screen and (max-width: 767px) {
  .sec-knowledge .icon_archer {
    left: 1rem;
    bottom: unset;
    top: -7.125rem;
  }
  .sec-knowledge .icon_archer img {
    width: 3.4375rem;
  }
}
.sec-knowledge .icon_cloud {
  opacity: 0.3;
  left: -1.875rem;
  bottom: -5.125rem;
}
@media screen and (max-width: 767px) {
  .sec-knowledge .icon_cloud {
    bottom: 1.875rem;
    left: -3.75rem;
  }
  .sec-knowledge .icon_cloud img {
    width: 11.25rem;
  }
}

/*-----------------------------------------------------------------------------
五感で触れる伝統のこころ
-------------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  #theme03 {
    margin-top: 3.125rem;
  }
}

@media screen and (max-width: 767px) {
  .sec-heart .ttl img {
    width: 92%;
    display: block;
    margin: 0 auto;
  }
}
.sec-heart:before {
  background: url("../img/bg_heart.png") repeat top center;
  background-size: cover;
  opacity: 0.5;
}
.sec-heart .bg-color {
  background: rgba(255, 239, 250, 0.5);
}
.sec-heart .bg-color + .swiperarea {
  margin-top: -13.125rem;
}
.sec-heart .icon_bonsai {
  top: -1.625rem;
  left: 39.375rem;
}
@media screen and (max-width: 767px) {
  .sec-heart .icon_bonsai {
    left: unset;
    right: 1rem;
    top: -7.5rem;
  }
}
@media screen and (max-width: 767px) {
  .sec-heart .icon_yukata {
    bottom: -6.875rem;
  }
  .sec-heart .icon_yukata img {
    width: 4.875rem;
  }
}
.sec-heart .icon_cloud {
  top: -2.1875rem;
  left: -3.5rem;
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .sec-heart .icon_cloud {
    top: -5.4375rem;
    left: -3.125rem;
  }
  .sec-heart .icon_cloud img {
    width: 12.5rem;
  }
}

/*-----------------------------------------------------------------------------
エリアから探す
-------------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .secbwtop-area {
    margin-top: 3.75rem;
  }
}

.secbwtop-area img {
  opacity: 0.9 !important;
}

.sec-area .bg-color {
  background: rgba(244, 240, 228, 0.7);
  padding-bottom: 4rem !important;
}
.sec-area .inner {
  position: relative;
}
.sec-area .icon {
  position: absolute;
}
.sec-area .icon-yukatawoman {
  left: 8.375rem;
  top: 8.75rem;
}
@media screen and (max-width: 767px) {
  .sec-area .icon-yukatawoman {
    left: 2rem;
    top: -4.375rem;
  }
  .sec-area .icon-yukatawoman img {
    width: 2.25rem;
  }
}
.sec-area .icon-tyochin {
  right: 8.375rem;
  top: 8.75rem;
}
@media screen and (max-width: 767px) {
  .sec-area .icon-tyochin {
    right: 1rem;
    top: -4.375rem;
  }
  .sec-area .icon-tyochin img {
    width: 2.25rem;
  }
}
.sec-area .cardlist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(326px, 1fr));
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .sec-area .cardlist {
    gap: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .sec-area .card {
    min-height: unset;
  }
}
@media screen and (max-width: 767px) {
  .sec-area .card .card_inner .upper {
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }
}
@media screen and (max-width: 767px) {
  .sec-area .card .card_inner .upper .ttlarea {
    width: 70%;
  }
}
@media screen and (max-width: 767px) {
  .sec-area .card .card_inner .upper .img {
    width: 30%;
  }
}
@media screen and (max-width: 767px) {
  .sec-area .card .card_inner .txt {
    margin-bottom: 1rem;
  }
}

/*-----------------------------------------------------------------------------
バナーエリア
-------------------------------------------------------------------------------*/
.bnrarea {
  padding: 4rem 1.25rem 5rem;
}
@media screen and (max-width: 767px) {
  .bnrarea {
    padding: 3.375rem 1.75rem 5rem;
  }
}
.bnrarea .ttl {
  text-align: center;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .bnrarea .ttl {
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .bnrarea .ttl img {
    width: 80vw;
  }
}
.bnrarea .txt {
  font-size: 1.25rem;
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .bnrarea .txt {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }
}
.bnrarea .bnrs {
  justify-content: center;
  gap: 2.875rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .bnrarea .bnrs {
    flex-direction: column;
    gap: 2rem;
  }
}
.bnrarea .bnrs .item a {
  display: block;
}
@media screen and (min-width: 768px) {
  .bnrarea .bnrs .item a:hover {
    opacity: 0.7;
  }
}
.bnrarea .bnrs .item a img {
  width: 20rem;
}
@media screen and (max-width: 767px) {
  .bnrarea .bnrs .item a img {
    width: 100%;
  }
}
.bnrarea .box .box_ttl {
  color: #333;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .bnrarea .box .box_ttl {
    font-size: 6vw;
  }
}
.bnrarea .box .sns {
  justify-content: center;
}
.bnrarea .box .sns ul {
  justify-content: center;
  gap: 2.125rem;
}
@media screen and (max-width: 767px) {
  .bnrarea .box .sns ul {
    width: 100%;
    gap: unset;
  }
}
@media screen and (max-width: 767px) {
  .bnrarea .box .sns ul li {
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.bnrarea .box .sns ul li a {
  display: block;
}
@media screen and (min-width: 768px) {
  .bnrarea .box .sns ul li a:hover {
    opacity: 0.7;
  }
}

/*-----------------------------------------------------------------------------
wrapper
-------------------------------------------------------------------------------*/
.wrapper {
  position: relative;
  overflow-x: hidden;
}

/*-----------------------------------------------------------------------------
tab
-------------------------------------------------------------------------------*/
.tab {
  width: 100%;
  max-width: 64.25rem;
  margin: 0 auto;
  /* タブメニュー */
}
.tab .tab__menu {
  display: flex;
  align-items: flex-end; /* メニューを下揃え */
  justify-content: center;
  min-height: 6.25rem;
  padding: 0;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  /* is-activeがついている時のスタイル */
}
@media screen and (max-width: 767px) {
  .tab .tab__menu {
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    gap: 1rem 1.5rem;
  }
}
.tab .tab__menu .tab__menu-item {
  list-style: none;
  width: 6.25rem;
  cursor: pointer;
  transition: all 0.3s;
  opacity: 0.24;
}
@media screen and (max-width: 767px) {
  .tab .tab__menu .tab__menu-item {
    width: 26vw;
  }
  .tab .tab__menu .tab__menu-item img {
    width: 100%;
  }
}
.tab .tab__menu .tab__menu-item:hover {
  opacity: 1;
}
.tab .tab__menu .tab__menu-item.is-active {
  opacity: 1;
}
.tab .tab__menu .tab__menu-item:last-of-type {
  margin-right: 0px;
}
.tab .tab__panel {
  width: 100%;
}
.tab .tab__panel-box001,
.tab .tab__panel-box002,
.tab .tab__panel-box003,
.tab .tab__panel-box004,
.tab .tab__panel-box005 {
  display: none;
}
.tab .tab__panel-box.is-show {
  display: block;
}

.pbox {
  width: 100%;
  max-width: 64rem;
  margin: 8rem auto 4.375rem;
}
@media screen and (max-width: 767px) {
  .pbox {
    margin-bottom: 0;
    margin-top: 3.75rem;
  }
}
.pbox .pbox_ttl {
  text-align: center;
  font-size: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 0.0625rem solid #3B3831;
  margin-bottom: 1rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .pbox .pbox_ttl {
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
  }
}
.pbox .pbox_txt {
  font-size: 0.875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .pbox .pbox_txt {
    line-height: 1.4;
    margin-bottom: 1rem;
  }
}
.pbox .pbox_list {
  font-size: 0.875rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .pbox .pbox_list {
    line-height: 1.4;
  }
}/*# sourceMappingURL=style.css.map */