@charset "utf-8";
section {
  position: relative;
  z-index: 2;
}
#hero {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.hero__inner {
  width: 100%;
  height: 100%;
}
.hero__swiper_wrap {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
}
.hero__swiper__logo {
  width: 19.5833%;
  min-width: 282px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 80px;
}
.hero__swiper__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 288px;
  height: 56px;
  border-radius: 80px;
  background-color: var(--color--white);
  cursor: pointer;
  transition: all 0.3s;
}
.hero__swiper__button:hover {
  opacity: 0.7;
}
.hero__swiper__button_text {
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 15px */
  letter-spacing: 1.5px;
}
.hero__swiper__button_icon {
  width: 24px;
  height: 24px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.hero__swiper {
  width: 100%;
  height: 100%;
}
.hero__swiper::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 19;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
}
.hero__scroll {
  width: auto;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0%);
  z-index: 20;
}
.hero__scroll__txt {
  width: 100%;
  height: auto;
  margin: 0 auto 16px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  color: var(--color--white);
}
.hero__scroll__bar {
  width: 1px;
  height: 80px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
.hero__scroll__bar::before {
  content: "";
  display: block;
  width: 3px;
  height: 80px;
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translate(-50%, 0%);
  background-color: var(--color--white);
  animation: scrolldown 2.2s cubic-bezier(0.76, 0, 0.3, 1) forwards infinite;
}
@keyframes scrolldown {
  0% {
    top: -80px;
  }
  100% {
    top: 80px;
  }
}
.hero__uma_link_wrap {
  width: 375px;
  height: auto;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 20;
}
.hero__uma_link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 16px;
  background-color: var(--color--navy);
}
.hero__uma_link_wrap .swiper-slide{
  height: auto;
}
@media (any-hover: hover) {
  .hero__uma_link {
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
  .hero__uma_link:hover {
    background-color: var(--color--hover_navy);
  }
}
.hero__uma_link__image {
  width: 110px;
  margin-right: 19px;
  position: relative;
  aspect-ratio: 1/1;
}

.hero__uma_link__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
}

.hero__uma_link__contents {
  flex: 1;
  height: auto;
}
.hero__uma_link__copy {
  width: 100%;
  height: auto;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color--white);
  letter-spacing: 0;
}
.hero__uma_link__heading {
  width: 100%;
  height: auto;
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  color: var(--color--white);
}
.hero__uma_link__btn {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 24px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  color: var(--color--white);
  white-space: nowrap;
}
.hero__uma_link__arrow {
  margin-left: 16px;
}
@media (any-hover: hover) {
  .hero__uma_link__arrow {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .hero__uma_link:hover .hero__uma_link__arrow {
    margin-left: 24px;
  }
}

.fv_modal_mask,
.instagram_modal_mask {
  width: 100%;
  height: 100vh;
  background: rgba(19, 22, 23, 0.9);
  background-blend-mode: multiply;
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.fv_modal_container {
  width: 90%;
  max-width: 1080px;
  height: auto;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1100;
  background-color: var(--color--white);
}

.instagram_modal_container {
  width: 90%;
  max-width: 500px;
  height: auto;
  max-height: 80vh;
  overflow-y: auto;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1100;
  background-color: var(--color--white);
}

.fv_modal_container_video {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  position: relative;
}

.fv_modal_close,
.instagram_modal_close {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 24px;
  right: 24px;
  cursor: pointer;
  z-index: 1001px;
  transition: all 0.3s;
}

.fv_modal_close:hover,
.instagram_modal_close:hover {
  opacity: 0.7;
}

#about {
  width: 100%;
  height: auto;
  padding: 100px 0 185px;
  position: relative;
  background-color: var(--color--white);
}
.about__inner {
  width: 90%;
  max-width: 1120px;
  height: auto;
  margin: 0 auto;
}
.about__heading {
  margin: 0 auto 80px;
}
.about__contents {
  width: 39.21%;
  min-width: 447px;
  height: auto;
  padding: 0 0 152px 4.16666666%;
  margin: 0 auto;
}
.about__contents__heading {
  width: 100%;
  height: auto;
  margin: 0 auto 48px;
  font-size: 28px;
  font-weight: 500;
  line-height: 2.3;
}
.about__contents__txt {
  width: 100%;
  height: auto;
  font-size: 15px;
  font-weight: 500;
  line-height: 2.5;
}
.about__btn_wrap {
  width: 297px;
  margin: 48px auto 0 0;
}
.about__image {
  position: absolute;
}
.about__image_01 {
  width: 28.88888888vw;
  height: 740px;
  bottom: 185px;
  left: 0;
}
.about__image_02 {
  width: 28.88888888vw;
  height: 28.88888888vw;
  max-height: 500px;
  top: 100px;
  right: 0;
}
.about__image_03 {
  width: 17.77777777vw;
  height: 17.77777777vw;
  max-height: 340px;
  bottom: 413px;
  right: 14.035vw;
}
.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media all and (max-width: 1110px) {
  .about__contents__txt {
    line-height: 2.2;
  }
  .about__image_01 {
    width: 23.1104vw;
  }
  .about__image_03 {
    right: 7.175vw;
  }
  .about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

/*-----------------------------------------
- roots add
-----------------------------------------*/
#course {
  width: 100%;
  height: auto;
  padding: 100px 0 185px;
  position: relative;
  background-color: var(--color--white);
}

#course .course-swiper {
  width: 100%;
  height: 100%;
}

#course .swiper-slide {
  width: 220px;
}

.course__inner{
  width: 95%;
  max-width: 1312px;
  height: auto;
  margin: 0 auto;
}

.course__contents{
  display: grid;
  grid-template-columns: 450px 1fr;
  gap: 56px;
  margin-right: calc(50% - 50vw);
}

.course__contents__slider{
  width: 100%;
  overflow: hidden;
}

.course__card{
  display: block;
  width: 220px;
  background-color: var(--color--black);
  border: 1px solid var(--color--black);
  color: var(--color--white);
  padding: 24px 16px 16px;
  transition: 0.3s;
}

.course__card__head{
  margin-bottom: 24px;
  display: block;
  text-align: center;
}

.course__card__area{
  font-size: 14px;
}

.course__card__ttl{
  font-size: 20px;
}

.course__card__img{
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  margin-bottom: 32px;
}

.course__card__img img{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  left: 0;
  top: 0;
}

.course__card__btn{
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  border-bottom: 1px solid var(--color--white);
  padding-bottom: 20px;
  transition: 0.3s;
}

.course__card__btn::after{
  flex-basis: 24px;
  content: "";
  display: block;
  aspect-ratio: 1/1;
  -webkit-mask: url(../image/cmn/icon-arrow.png) no-repeat center center / 100% auto;
  mask: url(../image/cmn/icon-arrow.png) no-repeat center center / 100% auto;
  background-color: var(--color--white);
  transition: 0.3s;
}

.course__card:hover {
  border: 1px solid var(--color--black);
  background-color: var(--color--white);
  color: var(--color--black);
  transition: 0.3s;
}

.course__card:hover .course__card__btn {
  border-bottom: 1px solid var(--color--black);
  transition: 0.3s;
}

.course__card:hover .course__card__btn::after {
  background-color: var(--color--black);
  transition: 0.3s;
}

.course__contents__btn_wrap{
  margin: 0 auto;
  padding-top: 80px;
  width: 100%;
  max-width: 298px;
}


#buy {
  width: 100%;
  height: auto;
  padding: 100px 0 185px;
  position: relative;
  background-color: var(--color--white);
}

.buy__inner{
  width: 95%;
  max-width: 1312px;
  height: auto;
  margin: 0 auto;
}

.buy__list{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: 56px;
}

.buy__contents__head{
  max-width: 450px;
}

.buy__card{
  position: relative;
  overflow: hidden;
  padding: 32px 24px 24px;
  aspect-ratio: 300/414;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.buy__card__bg{
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.buy__card__title{
  font-size: 26px;
  position: relative;
  text-align: center;
  color: var(--color--white);
}

.buy__card__links{
  display: grid;
  gap: 16px;
  position: relative;
}

.buy__card__links a{
  border: 1px solid var(--color--white);
  background-color: rgba(255, 255, 255, 0.3);
  color: var(--color--white);
  display: block;
  text-align: center;
  padding: 8px 16px;
  line-height: 1.6;
  font-size: 15px;
  transition: 0.3s;
}

.buy__card__links a:hover{
  background-color: var(--color--white);
  color: var(--color--black);
  transition: 0.3s;
}

.buy__card__links a span{
  display: inline-block;
}

/*-----------------------------------------
// roots add
-----------------------------------------*/

#articles {
  width: 100%;
  height: auto;
  padding: 0 0 320px;
  background-color: var(--color--white);
}
.articles__inner {
  width: 95%;
  max-width: 1312px;
  height: auto;
  margin: 0 auto;
}
.articles__contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: auto;
  margin: 0 auto 73px;
}
.articles__contents__details {
  width: 34.2%;
  height: auto;
}
.articles__contents__txt {
  width: 100%;
  height: auto;
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
  text-align: justify;
}
.articles__contents__map {
  width: 56.097%;
  height: auto;
  position: relative;
}
.articles__contents__map__link {
  display: none;
  height: auto;
  aspect-ratio: 1 / 1;
  font-size: 0;
  border-radius: 50%;
  position: absolute;
}
.articles__contents__map__link.active {
  display: block;
}
.articles__contents__map__link.nagasaki {
  width: 16.5625%;
  bottom: 6.102362%;
  right: 21.71875%;
}
.articles__contents__map__link.keno {
  width: 17.1875%;
  bottom: 26.574803%;
  right: 15.625%;
}
.articles__contents__map__link.kenhoku {
  width: 17.1875%;
  top: 33.070866%;
  right: 34.375%;
}
.articles__contents__map__link.shimabara {
  width: 16.5625%;
  bottom: 5.391989%;
  right: 0.78125%;
}
.articles__contents__map__link.goto {
  width: 20.625%;
  bottom: 7.086614%;
  left: 14.21875%;
}
.articles__contents__map__link.iki {
  width: 16.5625%;
  top: 0;
  right: 25.3125%;
}
.articles__contents__map__link.tsushima {
  width: 20.625%;
  top: 11.023622%;
  left: 4.21875%;
}
@media (any-hover: hover) {
  .articles__contents__map__link {
    transition: 0.3s;
    opacity: 0;
    background-color: var(--color--white);
  }
  .articles__contents__map__link:hover {
    opacity: 0.45;
  }
}
.articles__area {
  width: 100%;
  height: auto;
}

/*-----------------------------------------
roots add
-----------------------------------------*/

.articles-swiper{
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50vw - 50%);
    width: 100vw;
}

.articles-swiper .swiper-slide{
    width: 260px;
    margin-bottom: 0 !important;
    height: auto;
}

.articles-swiper__btn{
    background-color: var(--color--black);
    display: flex;
    width: 50px !important;
    height: 50px !important;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50% !important;
    left: auto !important;
    right: 32px !important;
}

.articles-swiper__btn--prev{
    left: 32px !important;
    right: auto !important;
}

.articles-swiper__btn--prev span{
    transform: rotate(180deg);
}

.articles-swiper__btn::after{
    display: none;
}

/*-----------------------------------------
/ roots add
-----------------------------------------*/

.articles__area_list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
  margin: 0 auto 80px;
}

.articles__area_list::before,
.articles__area_list::after {
  content: "";
  display: block;
  width: 21.34146%;
  height: 0;
}
.articles__area_list::before {
  order: 1;
}
.articles__area_list__item {
  width: 21.34146%;
  height: auto;
  pointer-events: none;
}
.articles__area_list__item.active {
  pointer-events: auto;
}
.articles__area_list__item:not(:nth-last-of-type(-n + 4)) {
  margin-bottom: 80px;
}
.articles__area_list__item_wrap {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
}
.articles__area_list__item__area_name {
  width: 100%;
  height: auto;
  margin: 0 auto 8px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.8;
  color: var(--color--navy);
}
.articles__area_list__item__city {
  width: 100%;
  height: auto;
  margin: 0 auto 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color--navy);
}
.articles__area_list__item__image {
  width: 100%;
  height: auto;
  margin: auto auto 16px;
}
.articles__area_list__item__image_01,
.articles__area_list__item__image_02 {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 0.664;
  overflow: hidden;
}
.articles__area_list__item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.run .articles__area_list__item__image img {
  opacity: 1;
}
@media (any-hover: hover) {
  .articles__area_list__item__image img {
    transition: opacity 1s 0.3s, transform 1s 0s;
    -webkit-transition: opacity 1s 0.3s, transform 1s 0s;
    transform: scale(1);
    opacity: 0;
  }
  .articles__area_list__item__image:hover img {
    transform: scale(1.07);
  }
}
.articles__area_list__item__txt {
  width: 100%;
  height: 64px;
  margin: 0 auto 16px;
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
  text-align: justify;
  color: var(--color--navy);
  overflow: hidden;
  display: none;
}
.articles__area_list__item.active .articles__area_list__item__txt {
  display: block;
}
.articles__area_list__item__btn_wrap {
  width: 100%;
  height: auto;
  display: none;
}
.articles__area_list__item.active .articles__area_list__item__btn_wrap {
  display: block;
}
@media (any-hover: hover) {
  .articles__area_list__item:hover .line_btn.midgray {
    border-color: var(--color--navy);
  }
  .articles__area_list__item:hover .line_btn .arrow {
    left: 16px;
  }
  .articles__area_list__item:hover .line_btn.midgray .arrow::before {
    background-color: var(--color--navy);
  }
}
.articles__btn_wrap {
  width: 297px;
  height: auto;
  margin: 0 auto;
}

@media all and (min-width: 1241px) {
  .articles__heading .section__heading__main br {
    display: none;
  }
}

#uma,
#ouenten {
  width: 100%;
  height: 720px;
  background-color: var(--color--white);
}
.uma__inner,
.ouenten__inner {
  width: 100%;
  height: 100%;
}
.uma__container,
.ouenten__container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-direction: row-reverse;
  width: 100%;
  height: 100%;
}
.ouenten__container {
  flex-direction: row;
}
.uma__contents,
.ouenten__contents {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 100%;
  background-color: var(--color--lightgray2);
}
.uma__contents_wrap,
.ouenten__contents_wrap {
  width: 35%;
  min-width: 400px;
  height: auto;
}
.uma__heading,
.ouenten__heading {
  color: var(--color--navy);
}
.uma__heading .section__heading__main_sub,
.ouenten__heading .section__heading__main_sub {
  width: 100%;
  height: auto;
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
  color: var(--color--navy);
}
.uma__contents__txt,
.ouenten__contents__txt {
  width: 100%;
  height: auto;
  margin: 0 auto 48px;
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
  text-align: justify;
  color: var(--color--navy);
}
.uma__contents__btn_wrap,
.ouenten__contents__btn_wrap {
  width: 298px;
  height: auto;
}
.uma__image,
.ouenten__image {
  width: 65%;
  height: auto;
}
.uma__image img,
.ouenten__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#recipe {
  width: 100%;
  height: auto;
  padding: 200px 0 100px;
  background-color: var(--color--white);
}
.recipe__inner {
  width: 90%;
  max-width: 1120px;
  height: auto;
  margin: 0 auto;
}
.recipe__title {
  width: 470px;
}
.recipe__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: auto;
}

.recipe__contents {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 56px;
}

.recipe__contents__btn_wrap {
  width: 368px;
  height: auto;
  margin: 80px 0 32px;
}
.recipe__contents__btn_wrap:last-of-type {
  margin-bottom: 0;
}

.recipe__container_text {
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%; /* 30px */
  letter-spacing: 1.5px;
  margin-bottom: 40px;
}

#information {
  width: 100%;
  height: auto;
  padding: 100px 0 150px;
  background-color: var(--color--white);
}
.information__inner {
  width: 90%;
  max-width: 1120px;
  height: auto;
  margin: 0 auto;
}
.information__container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: auto;
}
.information__contents {
  flex: 1;
  height: auto;
}
.information__heading {
  margin-bottom: 45px;
}
.information__category_list {
  width: 100%;
  height: auto;
}
.information__category_list__item {
  width: 100%;
  height: auto;
}
.information__category_list__item:not(:last-of-type) {
  margin-bottom: 42px;
}
.information__category_list__item a {
  color: var(--color--navy);
}
@media (any-hover: hover) {
  .information__category_list__item a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .information__category_list__item a:hover {
    color: var(--color--midgray);
  }
}
.information__list_wrap {
  width: 74.2857%;
  height: auto;
}
.information__list {
  width: 100%;
  height: auto;
  border-top: solid 1px var(--color--whitegray);
}
.information__list__item {
  width: 100%;
  height: auto;
  border-bottom: solid 1px var(--color--whitegray);
  position: relative;
}
.information__list__item__wrap {
  display: block;
  width: 100%;
  height: auto;
  padding: 24px;
}
.information__list__item__info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  margin: 0 auto 8.5px;
}
.information__list__item__info__date {
  width: auto;
  height: auto;
  margin-right: 24px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--color--navy);
}
.information__list__item__info__category {
  display: flex;
  justify-content: flex-start;
  align-self: center;
  column-gap: 24px;
  width: auto;
  height: auto;
}
.information__list__item__info__category__icon {
  width: auto;
  height: auto;
  padding: 8px 16px 7px;
  border-radius: 15px;
  border: solid 1px var(--color--navy);
  background-color: var(--color--white);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  color: var(--color--navy);
}
.information__list__item__ttl {
  width: 100%;
  height: auto;
  padding-right: 40px;
}
.information__list__item__ttl__txt {
  width: 100%;
  height: auto;
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
  color: var(--color--navy);
}
.information__list__item__arrow {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translate(0%, -50%);
}
@media (any-hover: hover) {
  .information__list__item__ttl__txt {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .information__list__item:hover .information__list__item__ttl__txt {
    color: var(--color--midgray);
  }
  .information__list__item__arrow {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .information__list__item:hover .information__list__item__arrow {
    right: 8px;
  }
}
.information__btn_wrap {
  width: 297px;
  margin: 48px 0 0 auto;
}

#instagram {
  width: 100%;
  height: auto;
  padding: 100px 0 200px;
  background-color: var(--color--white);
}
.instagram__inner {
  width: 90%;
  max-width: 1120px;
  height: auto;
  margin: 0 auto;
}
.instagram__heading {
  text-align: center;
}
.instagram__heading::after {
  left: 50%;
  transform: translate(-50%, 0%);
}
.instagram__txt {
  width: 100%;
  height: auto;
  margin: 0 auto 48px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
}
.instagram__image {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 24px;
}

.instagram_post_container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  width: 100%;
  height: auto;
}

.instagram_post_container .item {
  width: 180px;
  aspect-ratio: 1024/1330;
  position: relative;
  overflow: hidden;
}

.instagram_post_container .item .thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
}
.instagram__btn_wrap {
  width: 343px;
  margin: 48px auto 0;
}

/*-----------------------------------------
roots add
-----------------------------------------*/
#sakemania{
  background-color: var(--color--white);
  padding-bottom: 100px;
}

.sakemania__inner{
  max-width: 1030px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.sakemania__inner>*{
  display: block;
  aspect-ratio: 16/9;
}

.sakemania__inner>a{
  overflow: hidden;
  position: relative;
}

.sakemania__inner>a img{
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: transform 0.3s;
}

.sakemania__inner>a:hover img{
  transform: scale(1.05);
  transition: transform 0.3s;
}

/*-----------------------------------------
/roots add
-----------------------------------------*/

#nagasaki-peace {
  width: 100%;
  height: auto;
  padding: 100px 0;
  background-color: var(--color--white);
}

.nagasaki_peace_title {
  text-align: center;
  padding-bottom: 0;
  margin-bottom: 48px;
}

.nagasaki_peace_title::after {
  display: none;
}

.nagasaki_peace_title .section__heading__sub {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  text-align: center;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro",
    "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 24px */
  letter-spacing: 2.4px;
}

.nagasaki_peace_icon {
  width: 20px;
  height: 20px;
}

.nagasaki_peace_icon.left {
  transform: rotateY(180deg);
}

.nagasaki_peace_banner {
  width: 100%;
  max-width: 832px;
  margin: auto;
  height: auto;
  display: flex;
}

.nagasaki_peace__btn_wrap {
  width: 297px;
  margin: 48px auto 0;
}

/* PC ================================================== */
@media all and (min-width: 992px) {
}

/* Tablet ================================================== */
@media all and (max-width: 991px) {
  #about {
    padding: 75px 0 138px;
  }
  .about__contents__heading {
    margin: 0 auto 32px;
    font-size: 24px;
  }
  .about__image_01 {
    width: 20.222216vw;
  }

  /*-----------------------------------------
  - roots add
  -----------------------------------------*/
  .buy__card{
    padding: 24px 16px 16px;
    aspect-ratio: 147/270;
  }

  .buy__card__links a{
    font-size: 13px;
  }

  /*-----------------------------------------
  - // roots add
  -----------------------------------------*/

  #articles {
    padding: 0 0 240px;
  }
  .articles__inner {
    width: 90%;
  }
  .articles__area_list::before {
    display: none;
  }
  .articles__area_list::before,
  .articles__area_list::after {
    width: 29%;
  }
  .articles__area_list__item {
    width: 29%;
  }
  .articles__area_list__item:not(:nth-last-of-type(-n + 4)) {
    margin-bottom: initial;
  }
  .articles__area_list__item:not(:nth-last-of-type(-n + 3)) {
    margin-bottom: 60px;
  }

  #recipe {
    padding: 150px 0 75px;
  }

  #information {
    padding: 75px 0;
  }

  #instagram {
    padding: 75px 0 150px;
  }

  #nagasaki-peace {
    padding: 75px 0;
  }
}

@media all and (max-width: 949px) {
  .hero__scroll__txt {
    margin: 0 auto 12px;
    font-size: 10px;
  }
  .hero__scroll__bar {
    height: 60px;
  }
  .hero__scroll__bar::before {
    height: 60px;
    top: -60px;
  }
  @keyframes scrolldown {
    0% {
      top: -60px;
    }
    100% {
      top: 60px;
    }
  }
  .hero__uma_link_wrap {
    width: auto;
  }
  .hero__uma_link {
    padding: 12px;
  }
  .hero__uma_link__image {
    width: 88px;
    margin-right: 14px;
  }
  .hero__uma_link__copy {
    margin-bottom: 6px;
    font-size: 10px;
  }
  .hero__uma_link__heading {
    margin-bottom: 8px;
    font-size: 20px;
  }
  .hero__uma_link__btn {
    height: 18px;
    font-size: 11px;
  }
  .hero__uma_link__arrow {
    margin-left: 12px;
  }
  @media (any-hover: hover) {
    .hero__uma_link__arrow {
      -webkit-transition: 0.3s;
      transition: 0.3s;
    }
    .hero__uma_link:hover .hero__uma_link__arrow {
      margin-left: 24px;
    }
  }

  /* 長崎UMA */
  .uma__contents,
  .ouenten__contents {
    width: 55%;
  }
  .uma__contents__txt,
  .ouenten__contents__txt {
    margin: 0 auto 36px;
  }
  .uma__contents__btn_wrap,
  .ouenten__contents__btn_wrap {
    width: 100%;
    max-width: 298px;
  }
  .uma__image,
  .ouenten__image {
    width: 45%;
  }
  .uma__image img,
  .ouenten__image img {
    object-position: 2% 60%;
  }
}

/* SP ================================================== */
@media all and (max-width: 768px) {
  /* MV */
  #hero {
    height: auto;
  }
  .hero__inner {
    height: auto;
  }
  .hero__swiper_wrap {
    height: 100svh;
  }
  .hero__swiper__logo {
    width: 50.6666666%;
    min-width: initial;
  }
  .fv_modal_container {
    width: 100%;
  }
  .hero__scroll__txt {
    width: auto;
    margin: 0 auto 16px;
    font-size: 10px;
    text-align: center;
  }
  .hero__scroll__bar {
    width: 1px;
    height: 40px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
  }
  .hero__scroll__bar::before {
    height: 40px;
    top: -40px;
  }
  @keyframes scrolldown {
    0% {
      top: -40px;
    }
    100% {
      top: 40px;
    }
  }
  .hero__uma_link_wrap {
    width: 100%;
    position: relative;
    margin-top: 100vh;
    margin-top: 100svh;
  }
  .hero__uma_link {
    padding: 16px;
  }
  .hero__uma_link__image {
    width: 110px;
    height: 110px;
  }
  .hero__uma_link__copy {
    margin-bottom: 8px;
    font-size: 12px;
  }
  .hero__uma_link__heading {
    margin-bottom: 12px;
    font-size: 24px;
  }
  .hero__uma_link__btn {
    height: 24px;
  }

  #about {
    padding: 128px 0 160px;
  }
  .about__inner {
    width: 83%;
  }
  .about__heading {
    margin: 0 auto 48px;
  }
  .about__image_01 {
    width: 91.5vw;
    height: auto;
    margin-right: -8.5vw;
    margin-bottom: 48px;
  }
  .about__contents {
    width: 100%;
    min-width: initial;
    height: auto;
    padding: 0;
  }
  .about__contents__heading {
    margin: 0 auto 24px;
    font-size: 24px;
    line-height: 2;
  }
  .about__contents__txt {
    font-size: 15px;
    line-height: 2;
  }
  .about__btn_wrap {
    width: 233px;
  }
  .about__btn_wrap .border_btn {
    background-color: var(--color--navy);
    color: var(--color--white);
  }
  .about__btn_wrap .border_btn .arrow::before {
    background-color: var(--color--white);
  }
  .about__image {
    position: initial;
  }
  .about__image_02 {
    width: 69.0666666vw;
    height: auto;
    max-height: initial;
    margin: 48px 0 0 auto;
  }
  .about__image_03 {
    width: 38.66666666vw;
    height: 38.66666666vw;
    max-height: initial;
    margin: -18.66666666vw auto 0 8.5vw;
  }
  .about__image img {
    width: 100%;
    height: auto;
    object-fit: initial;
    object-position: initial;
  }

  /*-----------------------------------------
  - roots add
  -----------------------------------------*/
  #course {
    padding: 128px 0 160px;
  }

  .course__inner{
    width: 83%;
    margin: 0 auto;
  }

  .course__contents{
    grid-template-columns: 1fr;
    gap: 56px;
    margin-right: 0;
  }

  .course__card{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
    border: none;
  }

  .course__card__head{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
  }

  .course__card__img{
    aspect-ratio: auto;
    height: 100px;
    margin-bottom: 0;
  }

  .course__card__btn{
    display: none;
  }

  .course__contents__slider ul{
    display: grid;
    gap: 16px;
  }

  #course .swiper-slide{
    width: 100%;
  }

  #buy {
    padding: 128px 0 160px;
  }

  .buy__inner{
    width: 83%;
  }

  .buy__list{
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding-top: 56px;
  }

  /*-----------------------------------------
  // roots add
  -----------------------------------------*/

  #articles {
    padding: 0 0 160px;
  }
  .articles__inner {
    width: 83%;
  }
  .articles__contents {
    display: block;
    margin: 0 auto 48px;
  }
  .articles__contents__details {
    width: 100%;
  }
  .articles__contents__txt {
    margin: 0 auto 48px;
    font-size: 15px;
  }
  .articles__contents__map {
    width: 89.3333333vw;
    height: auto;
    margin: 0 auto 0 -44.666666665vw;
    position: relative;
    left: 50%;
  }
  .articles__contents__map__link.nagasaki {
    width: 19.104478%;
    bottom: 2.157895%;
    right: 20.050746%;
  }
  .articles__contents__map__link.keno {
    width: 19.104478%;
    bottom: 26.406015%;
    right: 14.865672%;
  }
  .articles__contents__map__link.kenhoku {
    width: 19.104478%;
    top: 32.766917%;
    right: 32.385075%;
  }
  .articles__contents__map__link.shimabara {
    width: 19.104478%;
    bottom: 4.887218%;
    right: 0%;
  }
  .articles__contents__map__link.iki {
    width: 19.104478%;
    top: 1.879699%;
    right: 24.838806%;
  }
  .articles__area_list {
    margin: 0 auto 64px;
  }

  /*-----------------------------------------
  roots add
  -----------------------------------------*/

  .articles-swiper{
      margin-bottom: 64px;
  }

  .articles-swiper .swiper-slide{
      width: 260px;
  }

  .articles-swiper__btn{
      width: 32px !important;
      height: 32px !important;
      right: 8% !important;
  }

  .articles-swiper__btn--prev{
      left: 8% !important;
  }

/*-----------------------------------------
/ roots add
-----------------------------------------*/

  .articles__area_list::before,
  .articles__area_list::after {
    display: none;
  }
  .articles__area_list__item {
    width: 46%;
  }
  .articles__area_list__item:not(:nth-last-of-type(-n + 4)) {
    margin-bottom: initial;
  }
  .articles__area_list__item:not(:nth-last-of-type(-n + 2)) {
    margin-bottom: 64px;
  }
  .articles__btn_wrap {
    width: 233px;
  }
  .articles__btn_wrap .border_btn {
    background-color: var(--color--navy);
    color: var(--color--white);
  }
  .articles__btn_wrap .border_btn .arrow::before {
    background-color: var(--color--white);
  }

  /* uma ouenten */
  .uma__container,
  .ouenten__container {
    flex-direction: column-reverse;
  }
  .uma__contents,
  .ouenten__contents {
    display: block;
    width: 100%;
  }
  .uma__contents_wrap,
  .ouenten__contents_wrap {
    width: 83%;
    min-width: initial;
    padding: 64px 0 80px;
    margin: 0 auto;
  }
  .uma__heading,
  .ouenten__heading {
    margin: 0 auto 16px;
  }
  .uma__heading .section__heading__main_sub,
  .ouenten__heading .section__heading__main_sub {
    font-size: 15px;
    line-height: 2;
  }
  .uma__contents__txt,
  .ouenten__contents__txt {
    margin: 0 auto 16px;
  }
  .uma__contents__btn_wrap,
  .ouenten__contents__btn_wrap {
    width: 233px;
  }
  .uma__image,
  .ouenten__image {
    width: 100%;
  }
  .uma__image img,
  .ouenten__image img {
    width: 100%;
    height: auto;
    object-fit: initial;
    object-position: initial;
  }

  /* recipe */
  #recipe {
    padding: 80px 0 80px;
  }
  .recipe__inner {
    width: 83%;
  }
  .recipe__title {
    width: 90%;
    max-width: 470px;
    margin: 0 auto;
  }
  .recipe__image {
    width: 100%;
    margin: 0 auto 32px;
  }
  .recipe__image.pc_small {
    display: none;
  }
  .recipe__image.sp_large {
    display: block;
  }
  .recipe__contents {
    width: 100%;
    margin-top: 40px;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
  }
  .recipe__container_text {
    margin: 40px auto 0;
  }
  .recipe__contents__btn_wrap {
    max-width: initial;
    width: 320px;
    margin: 40px auto 24px;
  }

  #uma,
  #ouenten {
    height: auto;
    min-height: 700px;
    padding: 0;
  }

  #information {
    padding: 80px 0;
  }
  .information__inner {
    width: 83%;
  }
  .information__container {
    display: block;
  }
  .information__contents {
    width: 100%;
    margin: 0 auto 32px;
    flex: initial;
  }
  .information__heading {
    margin-bottom: 32px;
  }
  .information__category_list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  .information__category_list__item {
    width: auto;
  }
  .information__category_list__item:not(:last-of-type) {
    margin-bottom: initial;
    margin-right: 24px;
  }
  .information__list_wrap {
    width: 100%;
  }
  .information__list__item__wrap {
    padding: 24px 0px;
  }
  .information__btn_wrap {
    width: 233px;
    margin: 32px auto 0 0;
  }
  .information__btn_wrap .border_btn {
    background-color: var(--color--navy);
    color: var(--color--white);
  }
  .information__btn_wrap .border_btn .arrow::before {
    background-color: var(--color--white);
  }

  #instagram {
    padding: 80px 0 160px;
  }
  .instagram__inner {
    width: 83%;
  }
  .instagram__heading {
    margin: 0 auto 32px;
    text-align: left;
  }
  .instagram__heading::after {
    left: 0;
    transform: translate(0%, 0%);
  }
  .instagram__txt {
    margin: 0 auto 32px;
    text-align: justify;
  }
  .instagram__btn_wrap {
    width: 100%;
    max-width: 343px;
    margin: 32px auto 0;
  }
  .instagram__btn_wrap .border_btn {
    background-color: var(--color--navy);
    color: var(--color--white);
  }
  .instagram__btn_wrap .border_btn .external_link::before {
    background-color: var(--color--white);
  }

  .instagram_post_container {
    gap: 16px;
  }
  .instagram_post_container .item {
    width: 128px;
  }

  /*-----------------------------------------
  roots add
  -----------------------------------------*/
  #sakemania {
    padding-bottom: 80px;
  }

  .sakemania__inner{
    width: 83%;
    grid-template-columns: 1fr;
  }

  /*-----------------------------------------
  /roots add
  -----------------------------------------*/

  #nagasaki-peace {
    padding: 80px 0;
  }
}

@media all and (max-width: 575px) {
  /* about */
  .about__contents__txt br {
    display: none;
  }
  .about__contents__txt span {
    display: block;
  }
  .about__contents__txt span:not(:last-of-type) {
    margin-bottom: 24px;
  }

  /* articles */
  .articles__area_list {
    display: block;
  }
  .articles__area_list::before,
  .articles__area_list::after {
    display: none;
  }
  .articles__area_list__item {
    width: 100%;
  }
  .articles__area_list__item:not(:nth-last-of-type(-n + 2)) {
    margin-bottom: initial;
  }
  .articles__area_list__item:not(:last-of-type) {
    margin-bottom: 64px;
  }
  .articles__btn_wrap {
    margin: 0 auto 0 0;
  }

  /* information */
  .information__list__item__wrap {
    padding: 16px 0 17px;
  }
  .information__list__item__info {
    flex-direction: column;
    align-items: flex-start;
    margin: 0 auto 12px;
  }
  .information__list__item__info__category {
    width: 100%;
    column-gap: 16px;
    margin-top: 8px;
    margin-right: 0;
  }
  .information__list__item__info__category__icon {
    padding: 6px 12px;
    border-radius: 13px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    color: var(--color--navy);
  }
  .information__list__item__ttl {
    padding-right: 30px;
  }
  .information__list__item__ttl__txt {
    line-height: 1.6;
  }
  .information__list__item__arrow {
    right: 4px;
  }

  .instagram_post_container {
    gap: 8px;
  }
  .instagram_post_container .item {
    width: 98px;
  }

  .nagasaki_peace_title {
    margin-bottom: 32px;
  }

  .nagasaki_peace_title .section__heading__sub {
    font-size: 20px;
  }
}
