/*********************************
Variables
*********************************/
:root {
  /* Font */
  --font-family--primary: 'Noto Sans JP' , sans-serif;
  --font-family--secondary: 'Noto Sans JP', sans-serif;
  --font-family--headding: 'Noto Serif JP' , sans-serif;

  /* Colors */
  --color-text: #3C321E;
  --color-primary: #B00B0B;
  --color-secondary: #9A7605;
  --color-tertiary: #3C321E;
	--color-white: #ffffff;

  --container-width: 1080px;
}

/*********************************
Common
*********************************/
* { 
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
  
body {
  font-family: var(--font-family--primary);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7rem;
  color: var(--color-text);
  overflow-x: hidden;
  background-color: var(--color-white);
  background-repeat: repeat-y;
  background-position: top center;
  background-image: url("../img/bg-body.png");
}

a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: all .5s;
}
a:hover {
  text-decoration: underline;
}

p {
  margin-bottom: 1rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1 {
  font-size: 4rem; /* 64px */
  line-height: 5.5rem;
}
h2 {
  font-size: 2.5rem; /* 40px */
  line-height: 3.5rem;
}
h3 {
  font-size: 2rem; /* 32px */
  line-height: 3rem;
}
h4 {
  font-size: 1.5rem; /* 24px */
  line-height: 2.5rem;
}
h5 {
  font-size: 1.125rem; /* 18px */
  line-height: 2rem;
}
h6 {
  font-size: 1rem; /* 16px */
  line-height: 1.75rem;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family--headding);
  font-weight: 700;
  margin-bottom: 1rem;
}

.text-center {
  text-align: center;
}

.section {
  padding: 100px 0;
}
.text-white {
  color: var(--color-white);
}
.mb-0 {
  margin-bottom: 0 !important;
}
.text-decoration {
  text-decoration: underline;
}

@media (max-width: 767px) {
  h3 {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  h4 {
    font-size: 1.125rem;
    line-height: 2rem;
  }
  h5 {
    font-size: 1rem;
    line-height: 1.75rem;
  }

  .section {
    padding: 50px 0;
  }
}

/*-----------------------------
  badge
-----------------------------*/
.badge {
  border-radius: 100%;
  width: 65px;
  height: 40px;
  line-height: 38px;
  color: var(--color-white);
  display: inline-block;
  font-family: var(--font-family--primary);
  text-transform: uppercase;
  border-radius: 25px;
  background: var(--color-primary);
  text-align: center;
  font-weight: 400;
}

.badge-outline {
  border: 1px solid var(--color-primary);
  display: inline-block;
  position: relative;
  padding: 7.1px 20px;
  font-weight: 700;
  border-radius: 50px;
  margin-bottom: 10px;
}
.badge-outline span {
  padding-left: 10px;
  font-size: 12px;
}

.bg-dark {
  background: var(--color-tertiary);
}

@media (max-width: 767px) {
  .badge-outline {
    line-height: 27px;
    text-align: left;
  }
  .badge-outline span {
    display: block;
    padding-left: 0;
  }
}

/*-----------------------------
  Container
-----------------------------*/
.container {
	margin: 0 auto;
	width: 100%;
	max-width: var(--container-width);
}

@media (max-width: 1024px) {
	.container {
		padding: 0 24px;
	}
}

/*-----------------------------
  Button
-----------------------------*/
.btn-button {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-family--primary);
  color: var(--color-white);
  padding: 20px 50px;
  display: inline-block;
  min-width: 320px;
  position: relative;
  border-radius: 8px;
  background-color: var(--color-secondary);
  width: 100%;
  text-align: center;
  transition: all ease 0.5s;
}
.btn-button:after {
  position: absolute;
  content: '';
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  width: 35px;
  height: 20px;
  background-image: url(../img/svg/icon_arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
}

.btn-button:hover {
  background-color: #c9a222;
  text-decoration: none;
}

.btn-outline {
  border: 1px solid var(--color-primary);
  display: flex;
  gap: 15px;
  position: relative;
  padding: 16px 20px;
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  color: var(--color-text);
  justify-content: center;
  align-items: center;
  max-width: 350px;
  background-color: var(--color-white);
  z-index: 1;
  font-family: var(--font-family--headding);
}
.btn-outline::before {
  position: absolute;
  content: "";
  top: 0;
  width: 0;
  height: 100%;
  left: 0;
  background-color: var(--color-primary);
  z-index: -1;
  transition: all ease .3s;
  transform: translateX(0);
}
.btn-outline:hover {
  text-decoration: none;
}
.btn-outline:hover:before {
  width: 100%;
}
.btn-outline:after {
  position: absolute;
  content: '';
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  width: 10px;
  height: 20px;
  background-image: url(../img/svg/icon_arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 767px) {
  .btn-button {
    font-size: 16px;
    min-width: 264px;
    padding: 20px 15px;
  }
  .btn-outline {
    width: 100%;
    font-size: 1rem;
    padding: 12px 20px;
  }
  .btn-outline:after {
    bottom: 5px;
  }
}

/*-----------------------------
  icon
-----------------------------*/
.icon-arrow {
  background-image: url("../img/svg/icon_arrow_dark_long.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 80px;
  height: 6px;
  display: inline-flex;
}

/*-----------------------------
  pc,sp/on_off
-----------------------------*/
.pc {
	display: block;
}

.sp {
	display: none;
}

@media (max-width: 767px) {
	.pc {
		display: none;
	}

	.sp {
		display: block;
	}
}

/*-----------------------------
  Grid
-----------------------------*/
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/*-----------------------------
  swiper custom
-----------------------------*/
.swiper-button-prev,
.swiper-button-next {
  display: inline-block;
  width: 80px;
  height: 80px;
  text-align: center;
  background-color: var(--color-primary);
  border-radius: 50%;
  padding: 0;
  transition: 0.3s;
  cursor: pointer;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: #e6e1d1;
}

.swiper-button-prev:before {
  position: absolute;
  top: 50%;
  right: 50%;
  height: 2px;
  background: #343434;
  content: '';
  width: 40px;
  transform: translate(50%, -50%);
}

.swiper-button-next:before {
  position: absolute;
  top: 50%;
  right: 50%;
  height: 2px;
  background: #343434;
  content: '';
  width: 40px;
  transform: translate(50%, -50%);
}

.swiper-button-next::after {
  position: absolute;
  top: 50%;
  right: 14px;
  height: 2px;
  background: #343434;
  content: '';
  width: 14px;
  transform: translate(-50%, -50%) rotate(40deg);
  transform-origin: right center;
}

.swiper-button-prev::after {
  position: absolute;
  top: 50%;
  left: 7px;
  width: 14px;
  height: 2px;
  transform: translateY(-50%) rotate(145deg);
  transform-origin: right center;
  background: #343434;
  content: '';
}
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #E4E4E4;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, 
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 15px;
}

.swiper_btn_box {
  position: absolute;
  content: "";
  top: 45%;
  width: 100%;
  transform: translateY(-45%);
  z-index: 1;
}
.swiper_btn_box .swiper-button-prev {
  left: -40px;
}
.swiper_btn_box .swiper-button-next {
  right: -40px;
}

@media screen and (max-width: 768px) {
  .swiper-button-prev,
  .swiper-button-next {
    display: inline-block;
    position: relative;
    width: 50px;
    height: 50px;
    text-align: center;
    background-color: #faf9f6;
    left: 0px;
    border-radius: 50%;
    padding: 0;
    transition: 0.3s;
    cursor: pointer;
  }

  .swiper-button-prev::after {
    position: absolute;
    top: 50%;
    left: 6px;
    width: 10px;
    height: 2px;
    transform: translateY(-50%) rotate(145deg);
    transform-origin: right center;
    background: #343434;
    content: '';
  }

  .swiper-button-next::after {
    position: absolute;
    top: 50%;
    right: 11px;
    height: 2px;
    background: #343434;
    content: '';
    width: 10px;
    transform: translate(-50%, -50%) rotate(40deg);
    transform-origin: right center;
  }

  .swiper-button-prev:before {
    position: absolute;
    top: 50%;
    right: 50%;
    height: 2px;
    background: #343434;
    content: '';
    width: 20px;
    transform: translate(50%, -50%);
  }

  .swiper-button-next:before {
    position: absolute;
    top: 50%;
    right: 50%;
    height: 2px;
    background: #343434;
    content: '';
    width: 20px;
    transform: translate(50%, -50%);
  }
  .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, 
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 10px;
  }
}

/*********************************
1. Header
*********************************/
.header {
  position: sticky;
  top: 0;
  z-index: 99;
  background-color: var(--color-primary);
  height: 110px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.header.sticky {
  height: 80px;
}

.lp_overlay {
  background: rgba(0, 0, 0, 0.25);
  width: 100%;
  height: 100vh;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}
.is_open .lp_overlay {
  display: block;
}

@media(max-width: 991px) {
  .header {
    position: fixed;
    top: 20px;
    right: 0;
    background-color: transparent;
    z-index: 99;
    height: 30px;
    transition: inherit;
  }
  .header.sticky {height: 30px;}
}
/*-----------------------------
  lp_nav
-----------------------------*/
.lp_nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.lp_nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.lp_nav-list li {
  text-align: center;
  padding: 0 50px;
  border-right: 1px solid var(--color-white);
  line-height: 140%;
}
.lp_nav-list li:first-child {
  border-left: 1px solid var(--color-white);
}
.lp_nav-list li,
.lp_nav-list li > a {
  color: var(--color-white);
  font-weight: bold;
  font-family: var(--font-family--headding);
  font-size: 1.3rem;
  transition: all ease .3s;
  cursor: pointer;
}
.lp_nav-list li.active {
  color: #e9c468;
  text-decoration: none;
}
.lp_nav-list li > span {
  display: block;
  font-size: 15px;
}

@media (max-width: 991px) {
  .lp_nav {
    background-color: transparent;
    border: none;
    padding: 0;
    justify-content: flex-end;
    height: 30px;
  }
  .lp_nav.fixed {
    height: 30px;
  }
}

.is_open {
  overflow: hidden;
}
.is_open .lp_nav-list {
  opacity: 1;
  transform: translatex(0);
  -webkit-transform: translatex(0);
  visibility: visible;
}
.is_open .btn__nav--bar>.bar:nth-child(1),
.is_open .btn__nav--bar>.bar:nth-child(3) {
  position: absolute;
  content: "";
  top: 50%;
  background-color: var(--color-text);
}
.is_open .btn__nav--bar>.bar:nth-child(1) {
  transform: rotate(45deg) translatey(-50%);
}
.is_open .btn__nav--bar>.bar:nth-child(3) {
  transform: rotate(-45deg) translatey(-50%);
}

.btn__nav {
  display: none;
}
@media(min-width: 992px) and (max-width: 1199px) {
  .lp_nav-list li {
    padding: 0 30px;
    gap: 0;
  }
}
@media (max-width: 991px) {
  .lp_nav-list {
    position: fixed;
    content: "";
    top: 40px;
    left: 24px;
    right: 24px;
    bottom: 40px;
    width: auto;
    height: auto;
    padding: 96px 24px 30px;
    gap: 20px;
    background-color: var(--color-white);
    z-index: 10;
    opacity: 0;
    transform: translatex(-100%);
    -webkit-transform: translatex(-100%);
    transition: all 0.35s ease 0s;
    -webkit-transition: all 0.35s ease 0s;
    visibility: hidden;
    overflow-y: auto;
    scrollbar-width: thin;
    z-index: 100;
    align-content: flex-start;
    border-radius: 8px;
  }
  .lp_nav-list > .lp_nav-item {
    display: block;
    width: 100%;
  }
  .lp_nav-list li {
    border: 1px solid var(--color-primary);
    padding: 10px 10px;
  }
  .lp_nav-list li:first-child {
    border-color: var(--color-primary);
  }
  .lp_nav-list li,
  .lp_nav-list li > a {
    font-size: 1rem;
    color: var(--color-text);
  }
  .lp_nav-list li.active, .lp_nav-list li:hover,
  .lp_nav-list li a:hover {
    color: #e9c468;
    background-color: var(--color-primary);
  }

  .btn__nav {
    width: 40px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 101;
  }
  .btn__nav--bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    width: 40px;
    position: relative;
  }
  
  .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-text);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .is_open .bar:nth-child(2) {
    display: none;
  }
  .is_open .btn__nav {
    margin-top: 65px;
    margin-right: 20px;
  }
}

/*********************************
2. Lp mainvisual
*********************************/
/* 2.1 LP mainvisual slideshow */
.lp-mvisual_inner {
  position: relative;
  overflow-x: hidden;
}
.mvisual_slide .swiper-pagination {
  bottom: 30px;
}
.mvisual_slide .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  border: 3px solid white;
  background-color: transparent;
}
.mvisual_slide .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}
.mvisual_slide picture {
  display: flex;
  width: 100%;
}
.mvisual_caption {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  text-align: center;
  z-index: 3;
  width: 50%;
  margin: 0 auto;
}

@media(max-width: 991px) {
  .mvisual_slide .swiper-pagination {
    bottom: 10px;
  }
  .mvisual_slide .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
  }
  .mvisual_caption {
    top: 32%;
    transform: translateY(-32%);
    width: 100%;
  }
  .mvisual_caption img {
    width: 327px;
    height: 329px;
  }
}
/*********************************
3. Main
*********************************/
/* .main {
  overflow: hidden;
} */
.section__header {
  text-align: center;
  margin-bottom: 40px;
}
.section__subtitle,
.section__title {
  margin-bottom: .4rem;
}
.card__grid {
  overflow: hidden;
}
.card {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 1.5rem;
  position: relative;
  z-index: 9;
}
.card:not(:last-of-type) {
  margin-bottom: 80px;
}
.card__name {
  padding-left: 16px;
  border-left: 3px solid var(--color-secondary);
  margin-bottom: 1.5rem;
}
.card__name .card__title {
  margin-bottom: 0;
}
.card__name p {
  font-weight: 500;
  margin-bottom: 0;
}
.card__image img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
  transition: all ease 0.5s;
}
.card__image:hover img {
  opacity: 0.8;
}
.card__lead {
  margin-bottom: 1.5rem;
}
.card__info {
  flex: 1;
}
.card__desc {
  padding: 1.45rem;
  border-radius: 8px;
  background-color: var(--color-white);
  border: 1px solid var(--color-secondary);
}
.card__desc-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.card__desc-item {
  display: flex;
  gap: 1rem;
  align-items: baseline;
}
.card__desc-item:not(:last-child) {
  margin-bottom: 1rem;
}
.card__link {
  margin-top: 1rem;
}
.card__group {
  max-width: 400px;
  margin: 0 auto;
  margin-top: 4rem;
}
.card__badge {
  border-radius: 100%;
  width: 100%;
  max-width: 65px;
  height: 40px;
  color: var(--color-white);
  display: inline-block;
  line-height: 38px;
  font-family: var(--font-family--primary);
  border-radius: 25px;
  background: var(--color-primary);
  text-align: center;
  font-weight: 400;
}
.card__desc-note {        
  margin-top: 1rem;
}

.card__banners {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
}
.card__banner img {
  transition: all ease 0.5s;
}
.card__banner:hover img {
  opacity: 0.8;
}

.card__note {
  color: var(--color-white);
  max-width: 450px;
  margin: 0 auto;
  margin-top: 80px;
}
.border-bottom-primary {
  border-bottom: 3px solid var(--color-primary);
}
.card__price-period {
  width: 100%;
}
.card__price-time {
  padding-bottom: 1rem;
  border-bottom: 3px solid #c1c1c1;
}
.card__price-table:not(:last-of-type) {
  width: 100%;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 2px dashed var(--color-primary);
}
.card__price-table thead {
  display: block;
  margin-bottom: .8rem;
}
.card__price-table tr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.card__price-table--sp {
  width: 100%;
}
.card__price-table th .badge {
  width: 80px;
}
@media(min-width: 768px) {
  .card.reverse {
    grid-template-columns: 1fr 0.8fr;
  }
  .card.reverse .card__info {
    order: 2;
  }
  .card.reverse .card__desc {
    order: 1;
  }
}
@media(max-width: 767px) {
  .card,
  .card.reverse {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .card:not(:last-of-type) {
    margin-bottom: 40px;
  }
  .card__desc {
    padding: 1.3rem;
  }
  .card__note {
    margin-top: 2rem;
  } 
  .card__price-table tbody tr {
    display: flex;
    gap: 0;
  }
  .card__price-table {
    width: 100%;
  }
  .card__price-table tr {
    gap: 0;
  }
  .card__price-table--sp tbody tr {
    display: grid;
  }
  .card__price-table .card__price-subtable tr {
    flex-wrap: wrap;
  }
  span.card__text > span{display: inline;padding-left: 9px;}
}
@media(max-width: 480px) {
  .card__image img {
    height: 200px;
  }
}
@media(min-width: 430px) and (max-width: 480px) {
  .event02 article:nth-child(4) .card__image img {
    height: 230px;
  }
}

/*-----------------------------
  3.1. Layout 01
-----------------------------*/
.hero__inner {
  position: relative;
}
.hero__inner .hero__title {
  position: absolute;
  content: "";
  bottom: 19%;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.intro {
  margin-top: 50px;
  margin-bottom: 100px;
  font-weight: bold;
  font-family: var(--font-family--headding);
}
@media(max-width: 991px) {
  .hero__inner .hero__title {
    bottom: 13%;
    font-size: 1.3rem;
    line-height: 2.2rem;
  }
}
@media(max-width: 767px) {
  .hero__inner .hero__title {
    bottom: 21%;
    font-size: 1.125rem;
  }
  .intro {
    margin-bottom: 60px;
    font-size: 15.5px;
  }
}
/*-----------------------------
 3.2. Layout 02
-----------------------------*/
.icon-mask04 {
  position: relative;
}
.icon-mask04:before {
  position: absolute;
  content: "";
  top: 150px;
  left: -50px;
  width: 329px;
  height: 136px;
  background-image: url("../img/icon-mask04.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media(min-width: 1200px) and (max-width: 1440px) {
  .icon-mask04:before {
    width: 260px;
    height: 107px;
  }
}
@media(max-width: 1199px) {
  .icon-mask04:before {
    top: 80px;
    width: 150px;
    height: 62px;
  }
}
@media(max-width: 767px) {
  .icon-mask04:before {
    display: none;
  }
}

.dinner .dinner__item:not(:last-child) {
  margin-bottom: 40px;
}
.dinner .card__banners {
  margin-top: 40px;
}
.dinner .card__banners img {
  object-fit: cover;
}
.dinner .card .card__name {
  border-color: var(--color-text);
}
.dinner .card__note {
  color: var(--color-text);
  margin-bottom: 60px;
}
@media(max-width: 767px) {
  .stay {
    padding-bottom: 60px;
  }
  .dinner .card__banners {
    margin-top: 24px;
  }
  .dinner__banners.container {
    padding: 0;
  }
  .dinner .card__banners img {
    height: 120px;
  }
}
/*-----------------------------
 3.3. Layout 03 
-----------------------------*/
.course {
  background-image: url("../img/bg-red.jpg");
  background-repeat: repeat;
  background-position: top center;
  position: relative;
}
.course:before {
  position: absolute;
  content: "";
  top: -15px;
  right: 50px;
  width: 329px;
  height: 136px;
  background-image: url("../img/icon-mask04.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.course .section__title {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.course .section__title:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 88px;
  height: 3px;
  background-color: var(--color-secondary);
}
.course .card .card__name {
  color: var(--color-white);
}
@media(min-width: 1200px) and (max-width: 1440px) {
  .course:before {
    width: 260px;
    height: 107px;
  }
}
@media(max-width: 1199px) {
  .course:before {
    width: 150px;
    height: 62px;
  }
}
@media(max-width: 767px) {
  .course {
    padding-top: 60px;
  }
  .course:before {
    width: 133px;
    height: 55px;
    right: 0;
    top: -28px;
    background-position: 20px 0px;
  }
}
/*-----------------------------
 3.4. Layout 04
-----------------------------*/
.morning {
  background-image: url("../img/bg-dark.jpg");
  background-repeat: repeat;
  background-position: top center;
  position: relative;
}
.morning:before,
.morning:after {
  position: absolute;
  content: "";
  width: 584px;
  height: 187px;
  background-image: url("../img/icon-mask02.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.morning:before {
  top: -33px;
  right: 0;
}
.morning:after {
  bottom: -62px;
  left: -90px;
  transform: scaleX(-1);
}
.morning .card .card__name {
  border-color: var(--color-secondary);
}
@media(min-width: 768px) and (max-width: 1440px) {
  .morning:before,
  .morning:after {
    width: 350px;
    height: 112px;
  }
}
@media(max-width: 767px) {
  .morning:before,
  .morning:after {
    width: 352px;
    height: 56px;
  }
  .morning:before {
    right: 0px;
    top: -26px;
    width: 263px;
    background-position: 88px 0px;
  }
  .morning:after {
    bottom: -28px;
  }
  .morning .img_morning_cont01 {
    height: 270px;
  }
}
/*-----------------------------
 3.5. Layout 05
-----------------------------*/
.events {
  padding-top: 100px;
}
.events .card__note {
  color: var(--color-text);
  margin-bottom: 70px;
}
@media(max-width: 767px) {
  .events {
    padding-top: 60px;
  }
}
/* #event-tab2 */
.event-tab2__top {
  padding-bottom: 80px;
}
.event-tab2__bottom {
  padding-top: 80px;
  position: relative;
  background-color: #f7e6ba;
}
.event-tab2__bottom::before,
.event-tab2__bottom::after {
  position: absolute;
  content: "";
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.event-tab2__bottom::before {
  top: -389px;
  right: 0;
  left: 0;
  width: 100%;
  height: 389px;
  background-image: url("../img/bg-event-top.png");
}
.event-tab2__bottom::after {
  top: -290px;
  right: 0;
  width: 683px;
  height: 440px;
  background-image: url("../img/icon-mask01.png");
}
@media(min-width: 768px) and (max-width: 1440px) {
  .event-tab2__bottom::after {
    width: 450px;
    height: 250px;
    top: -200px;
  }
}
@media(max-width: 767px) {
  .event-tab2__top {
    padding-bottom: 40px;
  }
  .event-tab2__bottom {
    padding-top: 0;
    background-color: transparent;
  }
  .event-tab2__bottom::before,
  .event-tab2__bottom::after {
    content: none;
  }
}
/* #event-tab3 */
#event-tab3 {
  position: relative;
  background-image: url("../img/bg-dark.jpg");
  background-repeat: no-repeat;
  background-position: center bottom;
}
#event-tab3::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 80%;
  background-color: #f7e6ba;
  z-index: 1;
}
#event-tab3::after {
  position: absolute;
  content: "";
  bottom: -80px;
  right: 0;
  left: 0;
  width: 100%;
  height: 385px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../img/bg-event-bottom.png");
  z-index: 2;
}

@media(max-width: 767px) {
  #event-tab3 {
    background: transparent;
    margin-bottom: 50px;
  }
  #event-tab3::before {
    background-color: transparent;
  }
  #event-tab3::after {
    content: none;
  }
}

.event-tab__item {
  padding-top: 100px;
}
.events__tab {
  display: flex;
  justify-content: center;
  gap: 20px;
  /* position: sticky;
  top: 100px;
  z-index: 98; */
}
.events__tab > li {
  border: 1px solid Var(--color-primary);
  padding: 5px 20px;
  cursor: pointer;
  transition: all 0.5s ease;
  background-color: var(--color-white);
  text-align: center;
}
.events__tab > li.active {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.events__title {
  padding-bottom: 20px;
  position: relative;
  z-index: 3;
}

@media(max-width: 767px) {
  .event-tab__item {
    padding-top: 80px;
  }
  .events__tab {
    gap: 10px;
  }
  .events__tab > li {
    padding: 5px 10px;
    line-height: 130%;
    font-size: 11.5px;
    display: flex;
    align-items: center;
  }
  .events__title {
    padding-bottom: 10px;
  }
}
/*-----------------------------
 3.6. Layout 06
-----------------------------*/
.sports {
  background-image: url("../img/bg-dark.jpg");
  background-position: top;
  background-repeat: repeat;
  padding-top: 100px;
  position: relative;
}
.sports::before {
  position: absolute;
  content: "";
  top: -33px;
  left: 0;
  width: 456px;
  height: 294px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../img/icon-mask05.png");
  z-index: 2;
}
.sport__item:nth-child(3) .card__desc > ul.card__desc-list {
  padding-bottom: .5rem;
  margin-bottom: .5rem;
}

.sport__item.special {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto 1fr;
}

.sport__item.special .card__info {
  display: grid;
  grid-template-rows: subgrid; 
  grid-row: 1 / -1;
  gap: .2rem;
}

.sport__item.special .card__name { grid-row: 1; }
.sport__item.special .card__lead { grid-row: 2; }
.sport__item.special .card__desc { grid-row: 3; }
.sport__item.special:last-child {
  grid-template-columns: 1fr;
}
.sport__item.special:last-child .card__info:last-child {
  justify-content: center;
}
.sport__item.special:last-child .card__desc {
  width: 528px;
}

@media(min-width: 768px) and (max-width: 1440px) {
  .sports::before {
    width: 400px;
    height: 250px;
    top: -12px;
  }
}
@media(min-width: 768px) and (max-width: 991px) {
  .sports::before {
    top: -28px;
  }
}
@media(max-width: 767px) {
  .sports {
    padding-top: 50px;
  }
  .sports::before {
    content: none;
  }
  .sport__item.special {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1rem;
  }
  .sport__item.special .card__info {
    grid-template-rows: auto; 
    grid-row: auto;
    gap: 0;
  }
  .sport__item.special .card__name,
  .sport__item.special .card__lead,
  .sport__item.special .card__desc {
    grid-row: auto;
  }
  .sport__item.special:last-child .card__desc {
    width: 100%;
  }
}
/*********************************
4. Footer
*********************************/
/*-----------------------------
 4.1. Footer top
-----------------------------*/
.footertop {
  padding: 3rem 0;
}
.footertop > ul {
  display: flex;
  flex-wrap: nowrap;
  gap: 40px;
  align-items: center;
}
.footertop > ul li.instagram a {
  width: 30px;
  height: 30px;
  display: block;
  background-image: url("../img/svg/icon_instagram.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.footertop > ul > li.address {
  font-size: 12px;
  line-height: 21px;
}

.footertop__sns {
  gap: 20px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
.footertop__sns-handle {
  font-weight: 400;
  font-size: 16px;
}

.footertop__logo {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  margin-top: 2.5rem;
}

.footertop__sns-icon {
  width: 50px;
  height: 50px;
}

@media (max-width: 767px) {
  .footertop {
    padding: 2rem 0;
  }
  .footertop > ul {
    gap: 8px;
    flex-wrap: wrap;
  }
  .footertop > ul > li.logo {
    width: 100%;
  }
  .footertop > ul > li.logo a {
    display: flex;
  }
  .footertop > ul > li.address {
    padding-right: 20px;
  }

  .footertop__sns {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .footertop__logo {
    margin-top: 2rem;
    gap: 25px;
  }
  .footertop__logo img {
    width: 220px;
  }
  .footertop__sns-item .btn-outline {
    height: 82px;
  }
}

/*-----------------------------
 4.2. Footer copyright
-----------------------------*/
.s__footercopyright {
  padding: .6rem 0;
  font-size: 12px;
  font-weight: 400;
  font-family: var(--font-family--secondary);
  background-color: var(--color-tertiary);
  color: var(--color-white);
}
.s__footercopyright p {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .s__footercopyright {
    font-size: 11px;
    line-height: 17px;
  }
}

/*********************************
5. Back top
*********************************/
.pageTop .backtop {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 24px;
  bottom: 20px;
  z-index: 10;
  background-color: var(--color-secondary);
  background-image: url("../img/svg/icon_arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(-90deg);
  font-size: 0;
  cursor: pointer;
  transition: all ease 0.5s;
  border: none;
  box-shadow: 0px 3px 10px #3D260440;
}
.pageTop .backtop:hover {
  background-color: var(--color-primary);
}
@media (max-width: 768px) {
	.pageTop .backtop {
    width: 60px;
    height: 60px;
	}
}