/* ========================================================
   Custom Properties
=========================================================*/
:root {
  --main-color: #38A945;
  --text-color: #111;
  --gray-color: #f5f5f5;

  --margin-xxl: 120px;
  --margin-xl: 80px;
  --margin-l: 56px;
  --margin-m: 48px;
  --margin-ms: 32px;
  --margin-s: 24px;
  --margin-xs: 16px;

  --radius-s: 4px;
  --radius-m: 8px;
  --radius-l: 20px;
  --radius-xl: 32px;
  --radius-xxl: 60px;
}

@media (max-width: 767.98px) {
  :root {
    --margin-xxl: 80px;
    --margin-xl: 60px;
    --margin-l: 40px;
    --margin-m: 32px;
    --margin-ms: 24px;
    --margin-s: 16px;
    --margin-xs: 8px;

    --radius-xxl: 40px;
  }
}

/* ========================================================
   Common
=========================================================*/
html {
  font-size: 62.5%;
  box-sizing: border-box;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", "ヒラギノ角ゴ ProN W3",
    "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  background: #FFF;
  background-repeat: repeat-y;
  background-size: 100%;
  color: var(--text-color);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  overflow-x: hidden;
}

p {
  font-size: 1.6rem;
  line-height: 1.9;
  margin-bottom: 24px;
}

@media (max-width: 991.98px) {
  p {
    line-height: 1.6;
  }
}

@media (min-width: 576px) {
  .xs {
    display: none;
  }
}

@media (min-width: 992px) {
  .sp {
    display: none !important;
  }
}

@media (max-width: 991.98px) {
  .pc {
    display: none !important;
  }
}

.mt-16 {
  margin-top: 16px;
}

.mb-16 {
  margin-bottom: 16px;
}

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

.content {
  position: relative;
  margin-top: 100px;
}

.container {
  margin: 0 auto;
  padding: 64px 10%;
  position: relative;
}

@media (max-width: 767.98px) {
  .content {
    margin-top: 64px;
  }

  .container {
    padding: 40px 5%;
  }
}

.section_ttl {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}

.section_ttl .en {
  font-size: 62px;
  color: var(--main-color);
  font-family: "Montserrat", sans-serif;
  letter-spacing: -0.01em;
}

.section_ttl .ja {
  font-size: 20px;
  margin-bottom: 11px;
}

@media (min-width: 992px) {
  .section_ttl {
    font-size: 34px;
    margin-bottom: 60px;
  }
}

@media (max-width: 767.98px) {
  .section_ttl .en {
    font-size: 40px;
  }

  .section_ttl .ja {
    font-size: 14px !important;
    margin-bottom: 8px;
  }
}

.section_btn {
  color: #fff;
  background: var(--main-color);
  display: inline-block;
  padding: 18px 46px;
  border-radius: 100vmax;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  font-size: 16px;
  min-width: 290px;
  transition: all 0.2s ease;
  cursor: pointer;
  position: relative;
}

.section_btn.is_l {
  text-align: left;
  width: 100%;
  margin-bottom: 8px;
  max-width: 400px;
}

@media (max-width: 767.98px) {
  .section_btn.is_l {
    max-width: unset;
  }

  .section_btn.hcd-section_btn {
    display: block;
    margin-bottom: 20px;
  }
}

.section_btn.is_black {
  background: #222;
}

.section_btn.is_center {
  display: block;
  margin: 0 auto;
  width: 290px;
}

.section_btn::after {
  content: "";
  display: inline-block;
  background: url(../images/btn_arrow.svg) no-repeat center;
  background-size: contain;
  width: 16px;
  height: 11px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  right: 21px;
  transition: 0.2s ease;
}

.section_btn.is_back::after {
  background: url(../images/btn_arrow.svg) no-repeat center;
  background-size: contain;
  width: 16px;
  height: 11px;
  right: unset;
  left: 21px;
  transform: translateY(-50%)rotate(180deg);
}

.section_btn:hover::after {
  right: 17px;
}

.section_btn.is_back:hover::after {
  left: 17px;
}

.section_btn.is_external::after {
  background: url(../images/external_icon.svg) no-repeat center;
  height: 16px;
}

.section_btn:hover {
  transform: translateY(4px);
  opacity: 0.9;
}

.section_btn:hover,
.section_btn:visited {
  color: #fff;
}

.section_btn_wrap {
  margin-top: 24px;
}

.flex_btn_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 24px;
}

.flex_btn_wrap .section_btn:not(.is_l) {
  min-width: unset;
  max-width: 290px;
  gap: 24px;
  width: 31%;
  margin-right: 16px;
}

.flex_btn_wrap .section_btn:not(.is_l):last-child {
  margin-right: 0;
}

/*
@media (max-width: 991.98px) {
  .section_btn_wrap {
    text-align: center;
  }

  .flex_btn_wrap {
    justify-content: flex-start;
  }

  .flex_btn_wrap .section_btn:not(.is_l) {
    min-width: unset;
    width: calc(50% - 12px);
    margin-bottom: 16px;
  }
}*/

@media (max-width: 767.98px) {
  .flex_btn_wrap {
    gap: 16px;
  }

  .flex_btn_wrap .section_btn:not(.is_l) {
    width: 100%;
    margin-right: 0;
  }
}

@media (max-width: 662.98px) {
  .flex_btn_wrap {
    justify-content: center;
  }
}

.text_link {
  cursor: pointer;
  color: var(--main-color);
  font-weight: 700;
}

.text_link:hover {
  text-decoration: underline;
}

.text_link:hover,
.text_link:visited {
  color: var(--main-color);
}

@media (max-width: 576px) {
  .text_link {
    font-size: 14px;
  }
}

.text_link::after {
  content: "";
  display: inline-block;
  background: url(../images/link_arrow.svg) no-repeat center;
  background-size: contain;
  width: 13px;
  height: 13px;
  transition: 0.3s ease-in;
  margin-left: 4px;
}

.text_link:hover::after {
  transform: translateX(4px);
}

.text_link.is_external::after {
  background: url(../images/external_icon-darkred.svg) no-repeat center;
  height: 13px;
  margin-left: 15px;
}

div.content section a:not(.section_btn):not(.text_link) {
  cursor: pointer;
  color: var(--main-color);
  text-decoration: none;
}

div.content section a:not(.section_btn):not(.text_link):hover {
  text-decoration: underline;
}

div.content section .flex_wrapper.list_menu a,
div.content section .flex_wrapper .post_list a time {
  color: initial;
}

div.content section .flex_wrapper.list_menu a:hover {
  text-decoration: none;
}

.flex_wrapper {
  display: flex;
  gap: 60px;
}

@media (max-width: 991.98px) {
  .page_column .flex_wrapper {
    flex-wrap: wrap;
    gap: 0;
  }

  .page_column .flex_column {
    width: 100% !important;
  }
}

@media (max-width: 767.98px) {
  .flex_wrapper {
    flex-wrap: wrap;
    gap: 24px;
  }

  .flex_column {
    width: 100% !important;
  }
}

.flex_between {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: center;
}

@media (min-width: 768px) {
  .row_reverse {
    flex-direction: row-reverse;
  }
}

@media (max-width: 767.98px) {
  .page .col_reverse {
    flex-direction: column-reverse;
  }
}

@media (max-width: 767.98px) {
  .col_reverse {
    flex-direction: column-reverse;
  }
}

.list_menu {
  gap: 100px;
}

.list_menu.is_three {
  gap: 64px;
}

.list_menu .flex_column {
  width: 100%;
}

.list_menu a:not(.section_btn) {
  cursor: pointer;
  color: inherit;
}

.list_menu_img {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
}

.list_menu img {
  transition: 0.3s ease-in;
  aspect-ratio: 785 / 442;
}

.list_menu_ttl {
  font-size: 22px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  position: relative;
}

@media (max-width: 767.98px) {

  .list_menu,
  .list_menu.is_three {
    gap: 32px;
    flex-wrap: wrap;
  }

  .list_menu .flex_column,
  .list_menu.is_three .flex_column {
    width: calc(50% - 16px);
  }
}

@media (max-width: 767.98px) {
  .list_menu_ttl {
    font-size: 20px;
  }
}

.list_menu_ttl::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  border-radius: 100vmax;
  background-color: rgba(100, 7, 42, 0.05);
}

.list_menu_ttl::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 12.16%;
  height: 3px;
  border-radius: 100vmax;
  background-color: var(--main-color);
}

.list_menu_ttl span {
  display: block;
  position: relative;
  padding: 0 8px;
}

.list_menu_ttl span::after {
  content: "";
  display: inline-block;
  background: url(../images/link_arrow.svg) no-repeat center;
  background-size: contain;
  width: 16px;
  height: 16px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  right: 3%;
  transition: 0.3s ease-in;
}

.list_menu a:hover .list_menu_ttl span::after {
  right: 2%;
}

.list_menu a:hover img {
  transform: scale(1.05, 1.05);
  aspect-ratio: 523 / 294;
}

.list_content {
  gap: 40px;
  align-items: center;
}

.list_content_ttl {
  font-size: 24px;
  color: var(--main-color);
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px dashed #dcdcdc;
}

@media (max-width: 767.98px) {
  .list_content_ttl {
    font-size: 18px;
  }
}

.list_outline,
.list_circle,
.list_circle ul {
  line-height: 1.7;
  list-style: none;
}

ul.list_circle ul {
  margin-top: 16px;
  margin-left: 12px;
}

.list_outline_ttl,
.list_circle_ttl {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

@media (max-width: 767.98px) {

  .list_outline_ttl,
  .list_circle_ttl {
    align-items: flex-start;
  }
}

.list_outline_ttl::before {
  content: url(../images/list_circle_outline_icon.svg);
}

.list_circle li::before {
  content: url(../images/list_circle_icon.svg);
  margin-right: 8px;
}

.list_circle li {
  text-indent: -1.4em;
  padding-left: 1em;
  margin-bottom: 16px;
}

@media (max-width: 767.98px) {
  .list_outline {
    margin-left: 0;
  }
}

.ft_ml {
  font-size: 1.8rem;
}

.is_separated {
  padding: 32px 0;
  border-top: 1px dashed #dcdcdc;
}


/* -----------------------
    infinite_slider 
----------------------- */
.infinite_slider {
  pointer-events: none;
  overflow: hidden;
}

.infinite_slider>.swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  -o-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}

.infinite_slider .swiper-slide img {
  aspect-ratio: 401 / 269;
  object-fit: cover;
  overflow: hidden;
}

/* ========================================================
   Header
=========================================================*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  width: 100%;
}

.header.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
}

.nav-item:hover .subnav {
  box-shadow: 0 4px 10px rgba(0, 0, 0, .08);
}

.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  aspect-ratio: 365 / 86;
  width: 365px;
  background: url(../images/header_deco01.svg) no-repeat center/cover;
  z-index: -1;
}

@media (max-width: 767.98px) {
  .header::before {
    width: 44vw;
  }
}

.header::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  aspect-ratio: 217 / 89;
  width: 217px;
  background: url(../images/header_deco02.svg) no-repeat center/cover;
  z-index: -1;
}

@media (max-width: 767.98px) {
  .header::after {
    width: 30vw;
  }
}

.header-content {
  margin: 0 auto;
  height: 96px;
  padding-left: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  box-sizing: border-box;
}

@media (max-width: 767.98px) {
  .header-content {
    height: 64px;
    padding-left: 16px;
  }
}

.logo {
  display: flex;
  gap: 10px;
  align-items: center;
}

.logo-main img {
  width: 63.64px;
  height: 56.61px;
  aspect-ratio: 199 / 177;
}

.logo-text img {
  aspect-ratio: 140 / 59;
}


@media (max-width: 767.98px) {
  .logo-main img {
    width: 52px;
    height: auto;
  }

  .logo-text img {
    height: 46.25px;
  }
}

/* ========================================================
   PC Navigation
=========================================================*/
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav {
  display: flex;
  gap: 48px;
}

.nav-item {
  position: relative;
}

.nav-link {
  position: relative;
  display: inline-block;
  padding-right: 18px;
  text-decoration: none;
  font-weight: 700;
  transition: color .25s ease;
}

.nav-link:hover {
  color: #2c5530;
}

.nav-item.has-subnav .nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transition: transform .25s ease;
}

.nav-item.has-subnav:hover .nav-link::after,
.nav-item.has-subnav.is-active .nav-link::after {
  transform: translateY(-50%) rotate(225deg);
}

.subnav {
  position: fixed;
  top: 96px;
  left: 0;
  width: 100vw;
  background: #fff;
  border-radius: 0;
  border-top: 1px solid #dcdcdc;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(0);
  transition: opacity .2s ease, visibility .2s ease;
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  z-index: 999;
  pointer-events: none;
}

.nav-item.is-active .subnav {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* メニュー項目とサブナビゲーション間のギャップを埋めるためのブリッジ */
.nav-item.has-subnav::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 96px;
  z-index: 998;
  pointer-events: none;
}

.nav-item.has-subnav.is-active::before {
  pointer-events: auto;
}

.subnav-item {
  flex: 0 0 auto;
}

.subnav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-color);
  text-decoration: none;
  transition: background .2s, color .2s;
  border-radius: 4px;
  white-space: nowrap;
}

.subnav-link:hover {
  background: #f4f6f7;
  color: #2c5530;
}

.subnav-link::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #F1E657 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M6 4l4 4-4 4' stroke='%23333' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
  background-size: 14px 14px;
  position: relative;
  flex-shrink: 0;
}

/* ========================================================
   SP Navigation
=========================================================*/
.menu_btn_container {
  position: relative;
  z-index: 100003;
  margin-right: 16px;
}

@media (max-width: 767.98px) {
  .menu_btn_container {
    margin-right: 8px;
  }
}

.menu_btn {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 10000;
  cursor: pointer;
}

@media (max-width: 767.98px) {
  .menu_btn {
    width: 40px;
    height: 50px;
  }
}

/*
.menu_btn::after{
  content: "MENU";
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: #FFF;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
*/

.menu_btn span {
  position: absolute;
  width: 40px;
  height: 2px;
  left: 50%;
  transform: translateX(-50%);
  background: #FFF;
  transition: 0.4s;
}

.top_bar {
  top: calc(30% - 8px / 2);
}

.center_bar {
  top: calc(50% - 8px / 2);
}

.under_bar {
  top: calc(70% - 8px / 2);
}

#open:checked~.menu_btn>.top_bar {
  top: calc(50% - 2px / 2);
  transform: translateX(-50%) rotate(45deg);
  background: #000;
}

#open:checked~.menu_btn>.center_bar {
  opacity: 0;
}

#open:checked~.menu_btn>.under_bar {
  top: calc(50% - 2px / 2);
  transform: translateX(-50%) rotate(-45deg);
  background: #000;
}

#open {
  display: none;
}

.drawer {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.7s;
  transition: 0.5s;
  background: #F8F8F8;
  color: var(--text-color);
  padding: 32px 32px 60px 32px;
  z-index: 100002;
  overflow-y: auto;
}

.drawer.open {
  opacity: 1;
  visibility: visible;
}

.drawer_logo {
  width: 32%;
  max-width: 80px;
  aspect-ratio: 199 / 177;
  margin-bottom: 32px;
}

.drawer_container {
  display: flex;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 24px;
}

@media (max-width: 767.98px) {
  .drawer_container {
    flex-direction: column;
    padding: 0;
  }
}

.drawer_menu {
  width: 65%;
  margin: 0;
  position: relative;
}

@media (max-width: 991.98px) {
  .drawer_menu {
    width: 100%;
  }
}

.drawer_item {
  list-style: none;
  position: relative;
  z-index: 2;
}

.drawer_item:last-child {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .drawer_menu {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .drawer_item {
    width: calc((100% - 80px) / 3);
    margin-bottom: 35px;
  }
}

.drawer_item dl dt a {
  display: block;
  padding: 16px 0;
  text-decoration: none;
  font-size: 1.6rem;
  color: var(--text-color);
  font-weight: bold;
  border-bottom: 1px solid rgba(181, 181, 181, 0.4);
  transition: 0.2s ease-in;
}

.drawer_item dl dt a:hover {
  color: var(--main-color);
  text-decoration: underline;
}

.drawer_item dt .nav_sp_btn {
  display: block;
  position: absolute;
  width: 44px;
  height: 100%;
  top: 0;
  right: 0;
  cursor: pointer;
}

@media (min-width: 992px) {
  .drawer_item dt .nav_sp_btn {
    display: none;
  }
}

.drawer_item dt .nav_sp_btn>span {
  position: absolute;
  right: 8px;
  top: 24px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 10px;
  height: 1px;
}

.drawer_item dt .nav_sp_btn>span:before,
.drawer_item dt .nav_sp_btn>span:after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--text-color);
  transition: transform 0.2s ease;
}

.drawer_item dt .nav_sp_btn>span:after {
  transform: rotate(90deg);
}

.drawer_item dt .nav_sp_btn span.minus:after {
  transform: none;
}

@media (min-width: 992px) {
  .drawer_item dd {
    display: block;
  }
}

@media (max-width: 991.98px) {
  .drawer_item dd {
    display: none;
    transition: transfform 0.4s ease-in;
  }
}

.drawer_contents {
  width: 35%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (max-width: 991.98px) {
  .drawer_contents {
    width: 100%;
  }
}

.drawer_contents_title {
  font-family: 'Montserrat', 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--main-color);
  margin-bottom: 10px;
}

.drawer_sns_list {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
}

@media (max-width: 1200px) {
  .drawer_sns_list {
    gap: 8px;
  }
}

.drawer_sns_link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.11);
  transition: transform 0.2s ease;
  cursor: pointer;
}

@media (max-width: 575.98px) {
  .drawer_sns_link {
    border-radius: 10px;
  }
}

.drawer_sns_link img {
  width: 24px;
  aspect-ratio: 1 / 1;
  display: block;
}

.drawer_sns_link:hover {
  transform: translateY(-4px);
}

.drawer_item_sns {
  text-align: center;
  margin-top: 36px;
}

.drawer_news .post_list li:last-child a {
  border-bottom: 1px solid rgba(181, 181, 181, 0.39);
}

.drawer_news .post_list li a::after {
  display: none;
}

.drawer_news .post_list li a .post_title {
  color: var(--text-color);
  font-size: 1.4rem;
}

.drawer_news .post_list li a:hover .post_title {
  color: var(--main-color);
}

.drawer_news .text_link {
  font-size: 1.4rem;
  text-align: right;
  margin-top: 16px;
  font-family: 'Montserrat', 'Zen Kaku Gothic New', sans-serif;
}

.nav_sp_btn.opened span:before,
.nav_sp_btn.opened span:after {
  background: transparent;
}

.nav_sp_btn.opened span {
  background: var(--text-color);
}

.nav_sp_sub {
  padding: 8px 0;
  list-style: none;
}

.nav_sp_sub li a {
  font-size: 14px;
  display: block;
  padding: 8px 0;
  transition: 0.2s ease-in;
}

.nav_sp_sub li a:hover {
  color: var(--main-color);
  text-decoration: underline;
}

@media (max-width: 991.98px) {
  .nav_pc {
    display: none;
  }

  .drawer {
    width: 100vw;
    padding: 26px 26px 60px 26px;
  }

  .drawer_menu {
    padding: 0;
    margin: 0;
  }
}

/* ========================================================
   Fixed Banner
=========================================================*/
.fixed_banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 500px;
  z-index: 10000;
  aspect-ratio: 352 / 186;
  transition: opacity 0.5s ease, transform 0.5s ease;
  isolation: isolate;
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 767.98px) {
  .fixed_banner {
    bottom: 16px;
    right: 50%;
    transform: translateX(50%);
    max-width: 95%;
  }
}

@media (min-width: 768px) {
  .fixed_banner:hover {
    transform: translateY(4px);
  }
}

.fixed_banner_bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fixed_banner:not(.has_bg) .fixed_banner_bg {
  display: none;
}

.fixed_banner_close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 10001;
}

@media (max-width: 575.98px) {
  .fixed_banner_close {
    top: -8px;
    right: -8px;
  }
}

.fixed_banner_close img {
  width: 100%;
  height: 100%;
  display: block;
}

.fixed_banner a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  background: #FFF;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0px 3.328px 58.29px 0px rgba(0, 0, 0, 0.17);
}

.fixed_banner a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.5) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-45deg);
  animation: shine 0.7s ease-in-out 1 forwards, fadeout 0.7s linear 0.7s forwards;
  pointer-events: none;
  z-index: 1;
  opacity: 1;
}

@keyframes shine {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
    /* 最終位置を固定 */
  }
}

@keyframes fadeout {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.fixed_banner_deco {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.fixed_banner_text_wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Montserrat', 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  color: #2F2F2F;
}

.fixed_banner.has_bg.text-white .fixed_banner_text_wrap {
  color: #FFF;
  text-shadow: 0px 0.94px 5.642px rgba(0, 29, 40, 0.60);
}

.fixed_banner_subttl {
  font-size: 20px;
  margin-bottom: 8px;
}

@media (max-width: 575.98px) {
  .fixed_banner_subttl {
    font-size: clamp(18px, 4.74vw, 20px);
  }
}

.fixed_banner_ttl {
  font-size: 32px;
  margin-bottom: 6px;
}

@media (max-width: 575.98px) {
  .fixed_banner_ttl {
    font-size: clamp(28px, 7.89vw, 32px);
    margin-bottom: 0;
  }
}

.fixed_banner_text {
  font-size: 18px;
  margin-bottom: 8px;
  margin-top: 8px;
}

.fixed_banner_date {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fixed_banner_date_year {
  writing-mode: vertical-rl;
  text-orientation: sideways;
  transform: rotate(180deg);
  font-size: 15px;
}

.fixed_banner_date_day {
  font-size: 38px;
}

@media (max-width: 575.98px) {
  .fixed_banner_date_day {
    font-size: clamp(32px, 8.75vw, 38px);
  }
}

.fixed_banner_date_week {
  color: #FFF;
  padding: 6px;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100vmax;
  background: #2F2F2F;
  font-size: 22px;
}

.fixed_banner.has_bg .fixed_banner_date_week {
  text-shadow: none;
}

.fixed_banner_date_week.sunday {
  background: #AF0000;
}

.fixed_banner_date_week.saturday {
  background: #02256C;
}

.fixed_banner_period {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0;
  font-size: 14px;
  position: relative;
}

.fixed_banner_period .start {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0;
}

.fixed_banner_period .start:after {
  content: "~";
  display: inline-block;
  font-size: 10px;
  transform: rotate(90deg);
}

@media (max-width: 575.98px) {
  .fixed_banner_period {
    flex-direction: row;
    font-size: 18px;
  }

  .fixed_banner_period .start {
    flex-direction: row;
  }

  .fixed_banner_period .start:after {
    transform: none;
    font-size: 12px;
  }
}

.fixed_banner_link {
  font-family: 'Montserrat', 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #FFF;
  background: #2F2F2F;
  padding: 8px 16px;
  border-radius: 6px 0 0 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.fixed_banner_link::after {
  content: "";
  display: inline-block;
  background: url(../images/fixed_banner_arrow.svg) no-repeat center center / contain;
  width: 5px;
  height: 10px;
}

/* ========================================================
   Footer
=========================================================*/
.footer-image-item {
  flex-shrink: 0;
  width: 300px;
  height: 200px;
  margin-right: 20px;
  overflow: hidden;
}

.footer-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes scroll-images {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

footer {
  background: #FFF;
  color: var(--text-color);
}

footer .container {
  padding: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 767.98px) {
  footer .container {
    padding: 40px;
  }
}

.footer-slider{
  position: relative;
}

.footer-deco01{
  position: absolute;
  aspect-ratio: 160 / 175;
  width: 11.11vw;
  top: -4.17vw;
  left: 0;
  z-index: 2;
}

@media (max-width: 767.98px) {
  .footer-deco01 {
    width: 21.11vw;
  }
}

.footer-deco02{
  position: absolute;
  top: -4.17vw;
  aspect-ratio: 1 / 1;
  width: 9.79vw;
  right: 0;
  z-index: 2;
}

@media (max-width: 767.98px) {
  .footer-deco02 {
    width: 19.58vw;
  }
}

.footer-deco03{
  position: absolute;
  bottom: -40px;
  aspect-ratio: 161 / 141;
  right: 12.78vw;
  width: 11.18vw;
  z-index: 2;
}

@media (max-width: 767.98px) {
  .footer-deco03 {
    width: 21.11vw;
    bottom: -30px;
  }
}

.footer_head {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer_hr {
  width: 100%;
  height: 2px;
  background: var(--text-color);
  margin: 24px 0;
}

@media (max-width: 767.98px) {
  .footer_hr {
    display: none;
  }
}
.footer_sns {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 0 auto;
}

.footer_sns a {
  display: block;
  width: 24px;
  aspect-ratio: 1 / 1;
  transition: 0.2s;
}

.footer_sns a:hover {
  opacity: 0.8;
}

.footer_sns a img {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: contain;
}

.footer-youtube {
  width: 36px;
}

.footer_logo {
  width: 100%;
}

.footer_columns {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 64px;
}

@media (max-width: 991.98px) {
  .footer_columns {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.footer_column {
  width: 100%;
}

.footer_nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 0;
  list-style: none;
}

.footer_nav>li {
  width: calc((100% - 18px) / 6);
}

.footer_nav li a,
.footer_nav li span {
  font-size: 13px;
  font-weight: 500;;
  letter-spacing: 0.17em;
  display: block;
  padding: 8px 0;
}

.footer_nav li > ul> li > a::before{
  content: "-";
  display: inline-block; 
  margin-right: 8px;
}

.footer_nav li a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

.footer_nav>li>a,
.footer_nav>li>span {
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  padding: 10px 0;
  margin-bottom: 4px;
}

.footer_nav ul {
  list-style: none;
}

.footer_logo {
  width: 19.86vw;
}

@media (max-width: 767.98px) {
  .footer_logo {
    width: 60vw;
    max-width: 240px;
  }

  .footer_nav {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 24px;
  }
}

.footer_btn {
  color: var(--text-color);
  background: #fff;
  display: inline-block;
  padding: 17px 32px 18px;
  transition: 0.2s;
  border: 0;
  border-radius: 32px;
  box-shadow: 0 4px 10px 0 rgba(0, 26, 99, 0.2);
  font-weight: 700;
  line-height: normal;
  text-align: center;
  font-size: 16px;
  min-width: 256px;
  margin-top: 24px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.footer_btn:hover {
  transform: translateY(4px);
  opacity: 0.8;
}

.footer_txt {
  width: 96%;
  margin: 60px auto;
}

.copyright{
  background: #26403D;
  color: #FFF;
  padding: 24px 0;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 185.714% */
  letter-spacing: 1.26px;
}