@charset "UTF-8";

:root {
  /* 色管理用の変数 */
  --white-color: #fff;
  --black-color: #000;
  --base-color: #000228;
  --base-color02: #0D1840;
  --accent-color: #211966;
  --key-color: #A37C52;
}

:root {
  /* コンテンツ幅管理用の変数 */
  --content-width: 936px;
  --content-width-sm: 800px;
  --content-width-lg: 1080px;
}

:root {
  /* z-index管理用の変数 */
  --z-index-back: -1;
  --z-index-default: 1;
  --z-index-page-top: 50;
  --z-index-header: 100;
  --z-index-menu: 150;
  --z-index-modal: 200;
}

html {
  scroll-behavior: smooth;
  cursor: default;
}

body {
  color: #000228;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 2;
}

.sp {
  display: block !important;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

.pc {
  display: none !important;
}

@media screen and (min-width: 768px) {
  .pc {
    display: block !important;
  }
}

.tbsp {
  display: block !important;
}

@media screen and (min-width: 1280px) {
  .tbsp {
    display: none !important;
  }
}

.tbpc {
  display: none !important;
}

@media screen and (min-width: 1280px) {
  .tbpc {
    display: block !important;
  }
}


/* ---------- layout ---------- */
.l_container-sm,
.l_container-lg,
.l_container {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.l_container {
  max-width: var(--content-width);
}

.l_container-sm {
  max-width: var(--content-width-sm);
}

.l_contents {
  padding: 72px 0;
}

.l_page-main {
  padding-top: 80px;
}

.l_header {
  /* position: fixed;
  top: 0;
  left: 0; */
  z-index: var(--z-index-header);
  width: 100%;
  background-color: var(--white-color);
}

.l_header-inner {
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 72px;
}

.l_header-contents {
  display: flex;
  justify-content: space-between;
}

.l_header-logo {
  width: 149px;
  height: 100%;
  padding-right: 8px;
}

.header_day {
  /* width: 196px; */
}


@media screen and (max-width: 768px) {
  .l_header-logo {
    width: 149px;
  }

  .header_day {
    width: 173px;
  }
}

@media screen and (max-width: 520px) {
  .l_header-logo {
    width: 148px;
  }

  .header_day {
    width: 173px;
  }
}

@media screen and (max-width: 400px) {
  .l_header-logo {
    width: 108px;
  }

  .header_day {
    width: 133px;
  }
}

@media screen and (max-width: 300px) {
  .l_header-logo {
    width: 108px;
  }

  .header_day {
    width: 100px;
  }
}

.l_header-nav {
  opacity: 0;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99;
}

@media screen and (min-width: 1280px) {
  .l_header-nav {
    opacity: 1;
    position: static;
    background: transparent;
  }
}

.l_header-nav_list {
  display: flex;
  gap: clamp(1.5rem, 1.208rem + 1.46vw, 2.375rem);

  align-items: center;
  justify-content: center;
  flex-direction: row;

  background-color: #fff;

  margin-left: -12px;

  height: auto;
}

.l_header-nav_item {
  color: #000228;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.8px;
}

.l_header-nav_item:nth-child(4) {
  color: #E36630;
}

.l_header-nav_item_reunion {
  position: relative;
  width: 243px;
  height: 50px;
  margin: 0 auto;
  display: block;
  cursor: pointer;
}

.l_header-nav_item_reunion img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  display: block;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

.l_header-nav_item_reunion:hover img:nth-of-type(2) {
  opacity: 0;
}

.l_header-nav_item_entry {
  position: relative;
  width: 254px;
  height: 70px;
  margin: 0 auto;
  display: block;
  border-radius: 12px;

  cursor: pointer;
}

.l_header-nav_item_entry img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  display: block;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

.l_header-nav_item_entry:hover img:nth-of-type(2) {
  opacity: 0;
}

.l_header-nav_link {
  display: block;
}

.l_header-nav_item_ul {
  margin-top: 0px;
}

.l_header-nav_item_ul li {
  display: flex;
  justify-content: center;
}


@media screen and (max-width: 1280px) {

  .l_header-nav_item {
    font-size: 16px;
  }

  .l_header-nav_list {
    flex-direction: column;
    height: 100%;
  }

  .l_header-nav_item_reunion {
    width: 400px;
    height: 90px;
  }

  .l_header-nav_item_entry {
    width: 400px;
    height: 90px;
  }

  .l_header-nav_item_ul {
    margin-top: 32px;
  }
}

@media screen and (max-width: 768px) {

  .l_header-nav_item_reunion {
    width: 260px;
    height: 60px;
  }

  .l_header-nav_item_entry {
    width: 260px;
    height: 60px;
  }
}

@media screen and (max-width: 368px) {

  .l_header-nav_item_reunion {
    width: 180px;
    height: 60px;
  }

  .l_header-nav_item_entry {
    width: 180px;
    height: 60px;
  }
}

nav ul li {
  position: relative;
}

@media screen and (min-width: 1280px) {

  /*下の階層を持っているulの指定*/
  nav li.has-child ul {
    /*絶対配置で位置を指定*/
    position: absolute;
    left: -72px;
    top: 40px;
    z-index: 4;
    /*形状を指定*/
    background: #ffffff;
    width: 220px;
    /*はじめは非表示*/
    visibility: hidden;
    opacity: 0;
    /*アニメーション設定*/
    transition: all .3s;
  }

  nav li.has-child ul li {
    height: 32px;
  }

  /*hoverしたら表示*/
  nav li.has-child:hover>ul,
  nav li.has-child ul li:hover>ul,
  nav li.has-child:active>ul,
  nav li.has-child ul li:active>ul {
    visibility: visible;
    opacity: 0.96;
  }

  /*ナビゲーションaタグの形状*/
  nav li.has-child ul li a {
    color: #000000;
    border-bottom: solid 1px rgba(255, 255, 255, 0.6);
  }

  nav li.has-child ul li:last-child a {
    border-bottom: none;
  }

  nav li.has-child ul li:hover {
    background: #e4e4e4;
  }

}


.l_footer {
  padding: 40px 10% 8px;
  background-color: #fff;
}

.l_footer-logo {
  color: #FFF;

  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.5px;

  width: 182px;
  height: 44px;
}

.l_footer_content {
  margin-top: 19px;
  color: #292929;
  font-family: Noto Sans JP;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  /* 175% */
  letter-spacing: 1.6px;
}

.copy {
  color: #292929;
  text-align: center;
  font-family: Noto Sans JP;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 23px;
  /* 191.667% */
  letter-spacing: 0.6px;

  margin-top: 24px;
}


/*---------- module ----------*/
.m_btn {
  display: block;
  width: 209px;
  height: 44px;
  border-radius: 24.5px;
  border: 1px solid #000;
  background: #FFF;

  color: #000;
  text-align: center;

  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: 0.8px;

  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

@media screen and (max-width: 1280px) {
  .m_btn {
    width: 100%;
  }
}


.m_hamburger {
  display: block;
  width: 23px;
  height: 16px;
  position: relative;
  z-index: var(--z-index-modal);
  border: none;
  background: transparent;
}

@media screen and (min-width: 1280px) {
  .m_hamburger {
    display: none;
  }
}

.m_hamburger_bar {
  width: 23px;
  height: 2px;
  position: absolute;
  left: 0;
  background: var(--black-color);
}

.m_hamburger_bar:nth-child(1) {
  top: 0;
}

.m_hamburger_bar:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.m_hamburger_bar:nth-child(3) {
  top: 100%;
  transform: translateY(-100%);
}


.m_title {
  color: #FFF;
  text-align: center;
  font-family: Noto Sans JP;
  font-size: clamp(2rem, 1.821rem + 0.89vw, 2.625rem);
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 6.3px;
}

.m_subtitle {
  width: 80%;
  margin: 16px auto;

  color: #FFF;
  text-align: center;
  font-family: Noto Sans JP;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  /* 155.556% */
  letter-spacing: 1.8px;
}

.top_main {
  background-color: #FDD212;
  padding-bottom: 128px;

  position: relative;
}

@media screen and (max-width: 768px) {
  .top_main {
    padding-bottom: 64px;
  }
}

/* ---------- top_kv ---------- */

.top_kv {
  background-color: #FDD212;
}

.top_kv_contents {
  position: relative;
  margin: 0 auto;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.top_kv_contents img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  display: block;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

.top_kv_contents:hover img:nth-of-type(2) {
  opacity: 0;
}

.top_kv_entry {
  position: fixed;
  bottom: 4%;
  right: 4%;
  width: 148px;
  height: 148px;
  z-index: 100;
}

@media screen and (max-width: 768px) {
  .top_kv_entry {
    bottom: 2%;
    right: 2%;
  }
}

/* ---------- top_message ---------- */

.top_message {
  background-image: url("/wp-content/themes/kinki/img/top_message_bg.png");

  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center center;
}

@media screen and (max-width: 768px) {
  .top_message {
    background-attachment: inherit;
  }
}


.top_message_title {
  width: 380px;
  display: block;
  margin: 0 auto;

  padding-top: 100px;
}

.top_message_txt {
  color: #FFF;
  text-align: center;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-family: Noto Sans JP;
  font-size: 38px;
  font-style: normal;
  font-weight: 900;
  line-height: 60px;
  /* 157.895% */
  letter-spacing: 3.8px;

  margin-top: 60px;
}

.top_message_subtxt {
  color: #FFF;
  text-align: center;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-family: Noto Sans JP;
  font-size: clamp(1.125rem, 1.054rem + 0.36vw, 1.375rem);
  font-style: normal;
  font-weight: 700;
  line-height: 52px;
  /* 236.364% */
  letter-spacing: 2.2px;

  margin-top: 30px;
  padding-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .top_message_title {
    width: 60%;
  }
}

/* ---------- top_about ---------- */



.top_about_img {
  display: block;
  width: 68%;
  margin: 30px auto;
}

@media screen and (max-width: 768px) {
  .top_about_img {
    width: 92%;
  }
}



/* ---------- top_reunion ---------- */
.top_reunion {
  position: relative;
  height: 900px;
}

.top_reunion_bg {
  width: 0%;
  height: 780px;

  position: absolute;
  right: 0;
  border-radius: 50px 0px 0px 50px;
  background: #00517E;

  z-index: 0;
  transition: width 1.5s, opacity 1.5s, visibility 1.5s;
}

.is-top_reunion_bg {
  width: 92%;
}


.top_reunion_title {
  position: relative;
  padding-top: 84px;
}

.top_reunion_contents {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;

  position: absolute;
  top: 16%;
  left: 6%;

  width: 90%;

  padding-top: 72px;

  z-index: 3;
}

.top_reunion_img {
  display: block;
  width: 44.5%;
}

.top_reunion_txt {
  display: block;
  width: 100%;
}

.top_reunion_entry {
  display: block;
  width: 60%;
}

.top_reunion_entry img {
  position: absolute;

  width: 30%;
  display: block;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;

  border: solid 2px #FFF;
  border-radius: 10px;
}

.top_reunion_entry:hover img:nth-of-type(2) {
  opacity: 0;
}

@media screen and (max-width: 1280px) {
  .top_reunion {
    height: auto;
    padding-bottom: 128px;
  }

  .top_reunion_title {
    color: #FFF;
    text-align: center;
    font-family: Noto Sans JP;
    font-size: 36px;
    font-style: normal;
    font-weight: 900;
    line-height: 52px;
    /* 144.444% */
    letter-spacing: 5.4px;

    padding-top: 28px;
  }

  .top_reunion_img {
    width: 80%;
    display: block;
    margin: 0 auto;

    position: relative;
  }

  .top_reunion_txt {
    width: 90%;
    display: block;
    margin: 0 auto;
    margin-top: 32px;

    position: relative;
  }

  .top_reunion_bg {
    width: 100%;
    height: 100%;

    border-radius: 0px 0px 0px 0px;

    top: 42px;
  }

  .top_reunion_entry {
    position: relative;
    display: block;
    margin: 0 auto;
    margin-top: 32px;
    width: 80%;
  }

  .top_reunion_entry img {
    width: 100%;
  }
}



/* ---------- top_food ---------- */

.top_food {
  position: relative;
  height: 700px
}

.top_food_bg {
  width: 0%;
  height: 600px;

  position: absolute;
  left: 0;
  border-radius: 0px 50px 50px 0px;
  background: #E36630;

  z-index: 0;
  transition: width 1.5s, opacity 1.5s, visibility 1.5s;
}

.is-top_food_bg {
  width: 90%;
}


.top_food_title {
  position: relative;

  width: 60%;
  display: block;
  margin: 0 auto;

  padding-top: 64px;
}

.top_food_contents {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);

  width: 100%;

  display: flex;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: space-around;
  align-items: center;
}

.top_food_txt {
  width: 50%;

  position: relative;
}

.festival_btn {
  display: block;
  width: 280px;
  height: auto;

  position: absolute;

  top: 74%;
  left: 15%;

  transform: translate(-50%, -50%);
}

.festival_btn img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  display: block;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

.festival_btn:hover img:nth-of-type(2) {
  opacity: 0;
}



.top_food_img {
  width: 40%;
}

@media screen and (max-width: 1280px) {
  .top_food {
    height: auto;
    margin: 64px 0;

    position: relative;
  }

  .top_food_bg {
    width: 100%;
    height: 80%;
    border-radius: 0px 0px 0px 0px;
    top: 120px;
  }

  .top_food_title {
    width: 80%;
  }

  .top_food_img {
    width: 80%;
    display: block;
    margin: 0 auto;
    margin-top: 32px;
  }

  .top_food_txt {
    width: 80%;
    display: block;
    margin: 0 auto;
    margin-top: 32px;
  }

  .tbsp_top_food_img {
    margin-top: 32px;
    position: relative;
  }

  .tbsp_festival_btn {
    width: 80%;

    position: absolute;
    top: 68%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .tbsp_festival_btn img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    display: block;
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
  }

  .tbsp_festival_btn:hover img:nth-of-type(2) {
    opacity: 0;
  }

}

@media screen and (max-width: 768px) {
  .top_food {
    margin: 32px 0;
  }

  .tbsp_festival_btn {
    top: 70%;
  }
}

/* ---------- top_contents ---------- */

.top_contents {
  border-radius: 70px;
  background: #E36630;
}

.top_contents_contents {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  gap: 14px 20px;

  width: 80%;

  margin: 0 auto;
  margin-top: 61px;
}

/* ---------- top_news ---------- */

.top_news {
  position: relative;
  height: 80vh;

  margin-top: 60px;
}

.top_news_bg {
  width: 0%;
  height: 630px;

  position: absolute;
  right: 0;
  border-radius: 50px 0px 0px 50px;
  background: #00517E;

  z-index: 0;

  transition: width 1.5s, opacity 1.5s, visibility 1.5s;
}

.is-top_news_bg {
  width: 80%;
}

.top_news_title {
  position: relative;
}

.top_news_contents {
  display: flex;
  align-items: center;
  justify-content: space-around;

  position: absolute;
  top: 24%;
  left: 0%;

  width: 100%;
}

.top_news_img {
  width: 44%;
}

.top_news_txt {
  width: 40%;

  display: flex;
  flex-direction: column;
  gap: 40px;

  color: #FFF;
  font-family: Noto Sans JP;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  /* 175% */
  letter-spacing: 1.6px;
}

.top_news_txt_entry {
  border-radius: 29.158px;
  border: 1px solid #00517E;
  background: #FFF;

  width: 50%;

  color: #00517E;
  text-align: center;
  font-family: Noto Sans JP;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  /* 140% */
  letter-spacing: 1px;

  padding: 10px;
}

.top_news_txt_entry:hover {
  border: 1px solid #FFF;
  color: #FFF;
  background: #00517E;
}

@media screen and (max-width: 1280px) {
  .top_news {
    height: auto;
  }

  .top_news_title {
    margin-top: 32px;
  }

  .top_news_bg {
    width: 100%;
    height: 90%;
    border-radius: 0px 0px 0px 0px;

    top: 120px;
  }

  .top_news_img {
    width: 80%;
    display: block;
    margin: 0 auto;

    position: relative;
  }

  .top_news_txt {
    width: 80%;
    display: block;
    margin: 0 auto;
    margin-top: 32px;

    position: relative;
  }

  .top_news_txt_entry {
    display: block;
    margin: 0 auto;
    margin-top: 32px;

    position: relative;

    width: 100%;
  }
}



/* ---------- top_access ---------- */

.top_access {
  position: relative;
  height: 80vh;

  margin: 61px 0px;
}

.top_access_bg {
  width: 0%;
  height: 750px;

  position: absolute;
  left: 0;
  border-radius: 0px 50px 50px 0px;
  background: #E36630;

  transition: width 1.5s, opacity 1.5s, visibility 1.5s;
}

.is-top_access_bg {
  width: 80%;
}

.top_access_title {
  position: relative;
}

.top_access_txt {
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);

  width: 30%;
}

.top_access_detail_title {
  color: #FFF;
  font-family: Noto Sans JP;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  /* 115.385% */
  letter-spacing: 2.6px;
}

.top_access_detail_address {
  color: #FFF;
  font-family: Noto Sans JP;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  /* 166.667% */
  letter-spacing: 1.8px;

  margin-top: 36px;
}

.top_access_detail_map {
  color: #FFF;
  font-family: Noto Sans JP;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  /* 166.667% */
  letter-spacing: 1.8px;
  text-decoration-line: underline;

  display: block;
  margin-top: 26px;
}

.map {
  position: absolute;
  top: 58%;
  left: 74%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);

  width: 44%;
  height: 400px;
}

@media screen and (max-width: 1280px) {
  .top_access {
    height: auto;
    margin-top: 80px;
    margin-bottom: 64px;
  }

  .top_access_bg {
    width: 100%;
    height: 100%;
    border-radius: 50px 50px 50px 50px;
  }

  .sp_map {
    width: 80%;
    height: 400px;
    margin: 0 auto;
    margin-top: 32px;

    position: relative;
  }

  .top_access_detail {
    width: 80%;
    margin: 0 auto;
    margin-top: 32px;

    position: relative;
  }
}

/* top-contact */

.top_contact {
  background: #00517E;
}

.top_contact_contnts {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;

  margin-top: 36px;
}

@media screen and (max-width: 768px) {
  .top_contact_contnts {
    flex-direction: column;
  }
}

.top_contact_contnts_item {
  display: block;

  border-radius: 10px;
  border: 3px solid #FFF;
  background: rgba(255, 255, 255, 0.10);

  width: 33%;
  height: 213px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding: 20px;
}

.top_contact_contnts_item a {
  width: 100%;
  height: 100%;
}

.top_contact_contnts_txt {
  color: #FFF;
  text-align: center;
  font-family: Noto Sans JP;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 42px;
  /* 175% */
  letter-spacing: 2.4px;
  margin-top: 12px;
}

.top_contact_img {
  width: 59px;
  height: 59px;

  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .top_contact_contnts_item {
    width: 92%;
  }
}


/*----------  ----------*/

/* コンテンツアイテム */

/*----------  ----------*/


.contents_title {
  background: #0D1840;
  color: #FFF;
  text-align: center;

  font-size: 26px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 1.3px;
  padding: 71px 0;
}

.contents_txt {
  color: #000228;
  text-align: center;

  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 1.2px;
  margin-top: 55px;
}

.contents_subtxt {
  color: #000228;
  text-align: center;

  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.8px;
  margin-top: 15px;
}

.contents_tab_button {
  display: flex;
  width: 181px;
  padding: 10px 56px;
  justify-content: center;
  align-items: center;
  gap: 10px;

  color: #FFF;
  text-align: center;

  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1px;

  border-radius: 35px;
  border: 3px solid #000228;
  background: #000228;
}

.contents_layout {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 25px 14px;
  width: 979px;
  margin: 0 auto;
  margin-top: 65px;
  margin-bottom: 65px;
}

.contents_item {
  width: 317px;
  height: 420px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;

  border-radius: 20px;
  background: #FFF;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.10);
}

.contents_item img {
  border-radius: 20px;
  /* border: 10px solid #E36630; */
}


.contents_item_txt {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 24px 14px;
}

.contents_item_txt_layout {
  width: 100%;
}

.contents_item_txt_title {
  color: #000228;
  text-align: center;

  font-size: 18px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 0.9px;
}

.contents_item_txt_txt {
  width: 90%;
  text-align: left;
  color: #292929;
  font-family: Noto Sans JP;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.7px;

  margin: 0 auto;
  margin-top: 12px;
}

.contents_item_txt_txt span {
  font-weight: 700;
}


.contents_item_txt_detail {
  width: 209px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 24.5px;
  border: 1px solid #00517E;
  background: #FFF;

  color: #00517E;
  text-align: center;
  font-family: Noto Sans JP;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  /* 175% */
  letter-spacing: 0.8px;

  padding: 6px;

  position: relative;
}

.contents_item_txt_detail:before {
  content: "";
  position: absolute;
  top: 42%;
  right: 4%;
  width: 10px;
  height: 2px;
  background: #fff;
  transform: rotate(45deg);
}

.contents_item_txt_detail:after {
  content: "";
  position: absolute;
  top: 56%;
  right: 4%;
  width: 10px;
  height: 2px;
  background: #fff;
  transform: rotate(-45deg);
}


/*----------  ----------*/

/* single-php */

/*----------  ----------*/

.content_main {
  position: relative;
}

.content_title {
  background: #00517E;
  color: #FFF;
  text-align: center;

  font-size: 26px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 1.3px;
  padding: 71px 0;
}

.content_name {
  width: 90%;
  margin: 0 auto;
  color: #000228;
  text-align: center;

  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1.2px;
  margin-top: 30px;
}

.content_time {
  color: #000228;
  text-align: center;

  font-size: 34px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.7px;
  margin-top: 16px;
}

.content_place {
  color: #000228;
  text-align: center;

  font-size: 34px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.7px;
  margin-top: 16px;
}

.content_img {
  width: 50%;
  margin: 0 auto;
  margin-top: 58px;
}

@media screen and (max-width: 768px) {
  .content_name {
    font-size: 22px;
  }

  .content_time {
    font-size: 30px;
  }

  .content_place {
    font-size: 20px;
  }

  .content_img {
    width: 90%;
  }
}

.content_img_layout {
  border-radius: 20px;
}

.content_txt {
  color: #000228;
  text-align: left;

  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  /* 187.5% */
  letter-spacing: 0.8px;
  margin: 0 auto;
  margin-top: 33px;
  margin-bottom: 94px;

  width: 60%;
}

.content_txt a {
  color: #000dff;
}

@media screen and (max-width: 768px) {
  .content_txt {
    width: 90%;
  }
}

.content_others {
  padding-top: 71px;
  padding-bottom: 103px;
}

.content_others_title {
  color: #000228;
  text-align: center;

  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 1.2px;
}

.content_others_contents {
  max-width: 1100px;

  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 63px;

  width: 100%;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  gap: 20px 14px;

  margin: 0 auto;
  margin-top: 36px;
}

@media screen and (max-width: 1280px) {
  .content_others_contents {
    padding: 0 12%;
  }
}

@media screen and (max-width: 768px) {
  .content_others_contents {
    padding: 0 10%;
  }
}

.others_contents_item {
  width: 317px;
  height: 456px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;

  background: #FFF;
  box-shadow: 2px 4px 10px 0px rgba(0, 0, 0, 0.15);
}

.others_contents_item img {
  width: 317px;
  height: 200px;
  border-radius: 20px;
}


.content_others_btn {
  display: flex;
  width: 382px;
  height: 55px;
  flex-direction: column;
  justify-content: center;
  border-radius: 27.5px;
  border: 1px solid #000228;
  color: #000228;

  text-align: center;

  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  background-color: white;
  /* 175% */
  letter-spacing: 0.8px;
  margin: 56px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;

  position: relative;
}

.content_others_btn:before {
  content: "";
  position: absolute;
  top: 45%;
  left: 4%;
  width: 10px;
  height: 2px;
  background: #000000;
  transform: rotate(-45deg);
}

.content_others_btn:after {
  content: "";
  position: absolute;
  top: 55%;
  left: 4%;
  width: 10px;
  height: 2px;
  background: #000000;
  transform: rotate(45deg);
}

@media screen and (max-width: 768px) {
  .content_others_btn {
    width: 90%;
  }
}


/* page-reunions */

.reunion_kv {
  background: #00517E;
}

.reunion_title {
  display: block;
  margin: 0 auto;
  width: 40%;
  padding: 10% 0px;
}

.reunion_kv_contents {
  display: flex;
  justify-content: space-around;
  align-items: center;

  padding: 90px;

  background-color: #fff;
}

.reunion_title_img {
  width: 40%;
}

.reunion_title_txt {
  width: 40%;

  color: #000;
  font-family: Noto Sans JP;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  /* 166.667% */
  letter-spacing: 1.8px;
}

.reunion {
  background: linear-gradient(to bottom, #fff 0%, #fff 10%, #00517E 10%, #00517E 100%);
}

.reunion_community {
  background: #E36630;
  border-radius: 50px;
}

.reunion_community_contents {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.reunion_community_contents_item {
  position: relative;
}

.reunion_community_img {
  width: 72%;

  display: block;
  margin: 0 auto;
}

.reunion_community_contents_item_txt {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);

  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 12px;

  text-align: center;
}

.reunion_community_contents__item_title {
  color: #292929;
  font-family: Noto Sans JP;
  font-size: 32px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 4.8px;
}

.reunion_community_contents__item_txt {
  color: #292929;
  text-align: center;
  font-family: Noto Sans JP;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  /* 155.556% */
  letter-spacing: 1.8px;
}

.reunion_community_contents__item_btn {
  display: flex;
  padding: 16px 43px;
  justify-content: center;
  align-items: center;
  gap: 10px;

  border-radius: 36.5px;
  background: #00507E;


  color: #FFF;
  text-align: center;
  font-family: Noto Sans JP;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  /* 140% */
  letter-spacing: 2px;
}

.reunion_community_contents_item_txt_last_btn {
  display: flex;
  gap: 20px;
}

.reunion_community_contents__item_btn_last {
  background: #DB402B;
}

.reunion_support {
  background-color: #00517E;
  padding: 90px;
}

.reunion_support_img {
  width: 80%;
  display: block;
  margin: 0 auto;
  margin-top: 32px;
}

.reunion_chimer {
  background-color: #fff;
  padding: 90px 0px;
}

@media screen and (max-width: 1280px) {
  .reunion_support {
    padding: 4%;
  }

  .reunion_chimer {
    background-color: #FDD212;
  }
}

.reunion_chimer_title {
  color: #00517E;
  text-align: center;
  font-family: Noto Sans JP;
  font-size: 42px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 4.8px;
}

.reunion_chimer_img {
  width: 100%;
  display: block;
  margin: 0 auto;
  margin-top: 32px;
}

.reunion_flow {
  background-color: #00517E;
  padding: 90px;
}

.reunion_flow_img {
  width: 80%;
  display: block;
  margin: 0 auto;
  margin-top: 32px;
}

.reunion_flow_txt {
  color: #FFF;
  text-align: center;
  font-family: Noto Sans JP;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  /* 214.286% */
  letter-spacing: 1.4px;

  margin-top: 32px;
}

.top_quetion {
  background-color: #fff;
}

.top_quetion_title {
  color: #00517E;
  text-align: center;
  font-family: Noto Sans JP;
  font-size: 42px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 6.3px;
}

.top_quetion_contents {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.top_quetion_contents_item {
  border-radius: 20px;
  background: #F1F1F1;

  width: 70%;

  margin-top: 36px;
}

.top_quetion_contents_item_q {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;

  padding: 20px;
}

.top_quetion_contents_item_q_img {
  width: 66px;
  height: 66px;
}

.top_quetion_contents_item_q_txt {
  color: #000;
  font-family: Noto Sans JP;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  /* 166.667% */
  letter-spacing: 1.8px;
}

.top_quetion_contents_item_a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;

  padding: 20px;
}

.top_quetion_contents_item_a_img {
  width: 66px;
  height: 66px;
}

.top_quetion_contents_item_a_txt {
  color: #000;
  font-family: Noto Sans JP;
  font-size: clamp(0.938rem, 0.92rem + 0.09vw, 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  /* 187.5% */
  letter-spacing: 1.6px;
}

@media screen and (max-width: 1280px) {
  .reunion_flow {
    padding: 4%;
  }

  .reunion_kv_contents {
    flex-direction: column;
    gap: 32px;
    padding: 24px 12px;
  }

  .reunion_title_img {
    width: 94%;
  }

  .reunion_title_txt {
    width: 94%;
    font-size: 16px;
  }

  .reunion_community_img {
    width: 94%;
  }

  .reunion_community_contents_item_txt {
    width: 80%;

  }

  .reunion_community_contents__item_title {
    font-size: 26px;
  }

  .reunion_community_contents__item_txt {
    font-size: 14px;
  }

  .reunion_community_contents__item_btn {
    font-size: 16px;
  }

  .reunion_community_contents_item_txt_last_btn {
    flex-direction: column;
    gap: 4px;
  }

  .reunion_chimer_title {
    font-size: 32px;
  }

  .top_quetion_contents_item {
    width: 92%;
  }

  .top_quetion_contents_item_q_img {
    width: 50px;
    height: 50px;
  }

  .top_quetion_contents_item_a_img {
    width: 50px;
    height: 50px;
  }
}

/* page-festival */

.festival_main {
  background: #E36630;
  padding-bottom: 128px;
}

.festival {
  border-radius: 61px;
  background: #FDD212;
}

.festival_fv {
  background: #E36630;
}

.festival_title {
  width: 187px;
  margin: 0 auto;
}

.festival_contents {
  display: flex;
  width: 80%;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin: 0 auto;
  margin-top: 54px;
}

.festival_contents_item {
  width: 317px;
  height: 456px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;

  border-radius: 20px;
  background: #E36630;
}

.festival_contents_item_txt_layout {
  width: 100%;
}

.festival_contents_item_txt {
  width: 96%;
}

.festival_contents_item_txt_contents {
  width: 90%;
  text-align: left;

  color: #FFF;
  font-family: Noto Sans JP;
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 3px;

  margin: 12px auto;
}

.festival_contents_item_txt_contents_txt {
  display: flex;
  align-items: center;
  gap: 10px;

  margin-top: 12px;
}

.festival_contents_item_txt_contents_menu {
  margin-top: 12px;
}

.festival_contents_item_txt_contents p:first-child {
  font-size: 16px;
}

.festival_contents_item_txt_contents p:last-child {
  font-size: 14px;
  font-weight: 400;
}

.festival_contents_band {
  background: #E36630;
  padding: 64px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;

  margin: 64px auto;
}

.festival_contents_right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.festival_contents_right_txt {
  color: #FFF;
  font-family: Noto Sans JP;
  font-size: 36px;
  font-style: normal;
  font-weight: 900;
  line-height: 42px;
  letter-spacing: 5.4px;
}

.festival_contents_right_btn {
  width: 80%;

  border-radius: 34px;
  background: #FFF;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);

  color: #00517E;
  text-align: center;
  font-family: Noto Sans JP;
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 2px;

  display: flex;
  justify-content: space-around;
  align-items: center;

  padding: 16px;
}

.icon_festival_1 {
  width: 14px;
  height: 15px;
}

.icon_festival_2 {
  width: 14px;
  height: 15px;
}

.festival_contents_right_btn_icon {
  width: 26px;
  display: block;
  /* margin: 0 auto;
  margin-bottom: 16px; */
}

@media screen and (max-width: 768px) {
  .festival_contents_band {
    flex-direction: column;
    padding: 4%;
  }

  .festival_contents_right_txt {
    font-size: 24px;
    letter-spacing: 0px;
  }

  .festival_contents_right_btn {
    padding: 20px;
    letter-spacing: 0px;
    flex-direction: column;
    width: 100%;
  }

  .festival_contents_right_btn_icon {
    width: 32px;
    display: block;
    margin: 0 auto;
    margin-bottom: 16px;
  }

  .festival_character_img {
    width: 60%;
    display: block;
    margin: 0 auto;
  }
}


/* single_reunion */

.single_reunion_content_title {
  background: #E36630;
  color: #FFF;
  text-align: center;

  font-size: 26px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 1.3px;
  padding: 71px 0;
}

.single_reunion_content_main {
  position: relative;
  background-color: #fff;
}

.single_reunion_content_name {
  width: 90%;
  margin: 0 auto;
  color: #000;
  text-align: center;
  font-family: Noto Sans JP;
  font-size: 36px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 5.4px;
  padding-top: 30px;
}

.single_reunion_content_time {
  color: #000;
  text-align: center;
  font-family: Noto Sans JP;
  font-size: 34px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 3.4px;
  margin-top: 16px;
}

.single_reunion_content_place {
  color: #000;
  text-align: center;
  font-family: Noto Sans JP;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2.4px;
  margin-top: 16px;
}

.single_reunion_content_img {
  width: 50%;
  margin: 0 auto;
  margin-top: 58px;
}

.single_reunion_content_secretary {
  color: #000;
  font-family: Noto Sans JP;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  /* 166.667% */
  letter-spacing: 1.8px;
}

.single_reunion_content_community {
  color: #000;
  font-family: Noto Sans JP;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  /* 166.667% */
  letter-spacing: 1.8px;
}

.single_reunion_content_capacity {
  color: #000;
  font-family: Noto Sans JP;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  /* 166.667% */
  letter-spacing: 1.8px;
}

.single_reunion_content_txt {
  color: #000;
  text-align: center;
  font-family: Noto Sans JP;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  /* 166.667% */
  letter-spacing: 1.8px;

  margin: 0 auto;
  margin-top: 33px;

  width: 60%;
}

.single_reunion_content_items {
  width: 40%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
  margin-top: 32px;
}

.single_reunion_content_items_title {
  width: 188px;
  height: 46px;

  border-radius: 5px;
  background: #E36630;

  color: #FFF;
  font-family: Noto Sans JP;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  /* 166.667% */
  letter-spacing: 1.8px;

  display: flex;
  justify-content: center;
  align-items: center;
}

.single_reunion_content_btn {
  width: 40%;
  display: block;
  margin: 0 auto;

  padding: 8px;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));

  border-radius: 29px;
  background: #DB402B;

  text-align: center;

  color: #FFF;
  font-family: Noto Sans JP;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  /* 187.5% */
  letter-spacing: 1.6px;

  margin-top: 32px;
  margin-bottom: 32px;
}

@media screen and (max-width: 768px) {
  .single_reunion_content_img{
    width: 90%;
  }
  .single_reunion_content_btn {
    width: 92%;
  }

  .single_reunion_content_items {
    flex-direction: column;
    gap: 20px;
  }

  .single_reunion_content_txt {
    width: 90%;
  }
}

/* page_reunion_page */

.page_reunion_content_main {
  background-color: #fff;
}

.page_reunion_page_content_title {
  background: #E36630;
  padding: 180px 0;
}

.page_reunion_page_content_title_new {
  background-color: #DB402B;
  padding: 180px 0;
}

.page_reunion_page_content_title_1 {
  color: #FFF;
  text-align: center;
  font-family: Noto Sans JP;
  font-size: clamp(1.25rem, 0.857rem + 1.96vw, 2.625rem);
  font-style: normal;
  font-weight: 700;
  line-height: 42px;
  /* 100% */
  letter-spacing: 4.2px;
}

.page_reunion_page_content_title_2 {
  color: #FFF;
  text-align: center;
  font-family: Noto Sans JP;
  font-size: clamp(2rem, 1.286rem + 3.57vw, 4.5rem);
  font-style: normal;
  font-weight: 900;
  line-height: 42px;
  /* 58.333% */
  letter-spacing: 10.8px;

  margin-top: 32px;
}

.page_reunion_page_content_name {
  color: #E36630;
  text-align: center;
  font-family: Noto Sans JP;
  font-size: clamp(2rem, 1.821rem + 0.89vw, 2.625rem);
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 6.3px;

  padding-top: 72px;
}

@media screen and (max-width: 768px) {
  .page_reunion_page_content_title {
    padding: 32px 0;
  }

  .page_reunion_page_content_title_new {
    padding: 32px 0;
  }

  .page_reunion_page_content_name {
    padding: 0px 16px;
    padding-top: 72px;
  }
}

.page_reunion_content_img {
  width: 50%;
  margin: 0 auto;
  margin-top: 58px;
}

.page_reunion_content_txt {
  color: #000;
  text-align: center;
  font-family: Noto Sans JP;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  /* 166.667% */
  letter-spacing: 1.8px;

  margin: 0 auto;
  margin-top: 33px;
  padding-bottom: 32px;

  width: 60%;
}

.page_reunion_content_others {
  background: #E36630;
  padding-top: 71px;
  padding-bottom: 103px;

  margin-bottom: 124px;

  border-radius: 70px;
}

.page_reunion_content_others_title {
  color: #FFF;
  text-align: center;
  font-family: Noto Sans JP;
  font-size: 42px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 6.3px;
}

.page_reunion_content_others_subtitle {
  color: #FFF;
  text-align: center;
  font-family: Noto Sans JP;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  /* 166.667% */
  letter-spacing: 1.8px;

  margin-top: 32px;
}

@media screen and (max-width: 768px) {
  .page_reunion_content_img {
    width: 90%;
  }

  .page_reunion_content_txt {
    width: 90%;
  }

  .page_reunion_content_others_subtitle {
    width: 80%;
    margin: 0 auto;
    margin-top: 32px;
  }
}


/* ---------- js ---------- */
.js_body.is_hidden {
  overflow: hidden;
}

.js_hamburger_bar {
  transition: top 0.24s, transform 0.24s, opacity 0.24s;
}

.js_hamburger_bar.is_active:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(135deg);
}

.js_hamburger_bar.is_active:nth-child(2) {
  transform: translate(50%, -50%);
  opacity: 0;
}

.js_hamburger_bar.is_active:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-135deg);
}

.js_nav {
  transition: opacity 0.24s;
}

.js_nav.is_active {
  opacity: 1;
  pointer-events: auto;
}

@media screen and (max-width: 1280px) {
  .js_nav {
    display: none;
  }

  .js_nav.is_active {
    display: block;
  }
}







.full_content {
  max-width: 1100px;
  position: relative;
  margin: 64px auto 0;
  clear: both;
  display: flex;
  justify-content: center;
}

.tabmenu {
  width: 16%;
  height: 56px;

  padding: 10px 0 10px;
  display: block;
  cursor: pointer;
  margin-left: 12px;

  color: #000228;
  text-align: center;

  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1px;

  border-radius: 35px;
  border: 3px solid #000228;
  background: #fff;
}

.tabactive {
  color: #fff;
  background-color: #000228;
  ;
}

.tabmenu:last-child {
  border: 3px solid #fff;
  background-color: #fff;
  pointer-events: none;
}

.active,
.hover {
  background: #000228;
  color: #fff;
  font-weight: bold;
}

.mr01 {
  margin-right: 1px;
}

.tabcontent {
  width: 100%;
  margin-top: 132px;
  left: 0;
  position: absolute;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  gap: 20px 14px;
}

.tabcontent:after {
  content: "";
  width: 317px;
  color: aliceblue;
  background-color: transparent;
}

.tabcontent:before {
  content: "";
  width: 317px;
  order: 1;
  color: aliceblue;
  background-color: transparent;
}

@media screen and (max-width: 1280px) {
  .full_content {
    flex-wrap: wrap;
    gap: 18px 0px;
  }

  .tabmenu {
    width: 30%;
  }

  .tabcontent {
    padding: 0 6%;
    margin-top: 204px;
  }
}

@media screen and (max-width: 768px) {
  .tabmenu {
    width: 40%;
  }

  .tabcontent {
    padding: 0 8%;
    margin-top: 276px;
  }
}


/* =====================
  アニメーション
===================== */

.fadein {
  /* 最初は非表示 */
  transform: translateY(0);
  opacity: 0;
  visibility: hidden;
  transition: transform 1.5s, opacity 1.5s, visibility 1.5s;
}

/* フェードイン時に入るクラス */
.is-fadein {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.fadeinUp {
  /* 最初は非表示 */
  transform: translateY(30px);
  opacity: 0;
  visibility: hidden;
  transition: transform 1.5s, opacity 1.5s, visibility 1.5s;
}

/* フェードイン時に入るクラス */
.is-fadeinUp {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.fadeinDown {
  /* 最初は非表示 */
  transform: translateY(-30px);
  opacity: 0;
  visibility: hidden;
  transition: transform 1.5s, opacity 1.5s, visibility 1.5s;
}

/* フェードイン時に入るクラス */
.is-fadeinDown {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

/* 拡大 */
.zoomIn {
  transform: scale(0.6);
  opacity: 0;
  visibility: hidden;
  transition: transform 1.5s, opacity 1.5s, visibility 1.5s;
}

.is-zoomIn {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}


/* もっと見るボタン */
.sp_contents_item {
  opacity: 1;
  transition: all 0.4s ease 0s;
}

.sp_contents_item.is-hidden {
  opacity: 0;
  height: 0;
  margin: 0;
}

.sp_festival_contents_item {
  opacity: 1;
  transition: all 0.4s ease 0s;
}

.sp_festival_contents_item.is-hidden {
  opacity: 0;
  height: 0;
  margin: 0;
}

.more {
  text-align: center;
  margin-top: 20px;

  z-index: 10;
}

button img {
  width: 52px;
  height: 52px;
  display: block;
  margin-bottom: 16px;
}

button {
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  height: 32px;
  line-height: 32px;
  width: 120px;
  border-radius: 16px;

  color: #FFF;
  text-align: center;
  font-family: Noto Sans JP;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  /* 175% */
  letter-spacing: 0.8px;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.festival_button {
  color: #E36630;
}









.top_fv_bg_img_1 {
  position: absolute;
  top: 78%;
  left: 20%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 26.8%;
  z-index: 2;
}

.top_fv_bg_copy_1 {
  position: absolute;
  top: 12%;
  left: 0px;
  width: 6%;
  z-index: 3;
}

.top_fv_bg_copy_2 {
  position: absolute;
  top: 12%;
  right: 0px;
  width: 6%;
  z-index: 3;
}