@charset "UTF-8";

/****************************************
Resetting
*****************************************/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  font-size: 100%;
  border: 0;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
hgroup,
menu,
nav,
section {
  display: block;
}

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

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input[type='submit'],
input[type='button'],
input[type='reset'] {
  border-radius: 0;
  appearance: auto;
  border: none;
  box-sizing: content-box;
  box-sizing: border-box;
  cursor: pointer;
}

/******************************************
normarise
******************************************/
* {
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  transition: 0.5s;
}

a:hover {
  opacity: 0.8;
}

/****************************************
modal window
*****************************************/
#cover {
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  left: 0;
  display: block;
  background: rgb(0 0 0 / 80%);
  min-height: 100%;
  min-width: 100%;
}

#modal {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: block;
  width: 50%;
  height: auto;
  color: white;
  transform: translate(-50%, -50%);
}

@media screen and (width <= 768px) {
  #modal {
    top: 30%;
    width: 70%;
  }
}

@media screen and (width <= 480px) {
  #modal {
    width: 90%;
  }
}

#modal img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid cyan;
}

/****************************************
header
*****************************************/

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 70px;
  margin: 0 auto;
  padding: 0 20px;
  background: #fff;
  overflow: hidden;
  transition: 0.5s;
}

@media screen and (width <= 930px) {
  .site-header {
    padding: 0 10px;
  }
}

@media screen and (width <= 480px) {
  .site-header {
    height: 50px;
    padding: 5px 10px 0;
  }
}

.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #4061cf;
}

.hide {
  transform: translateY(-70px);
}

.site-logo {
  display: flex;
  margin: auto 0;
}

.site-logo a {
  display: flex;
  font-size: 1.5em;
}

.site-logo a:last-child {
  border-left: solid 2px #666;
  margin-left: 20px;
  padding-left: 20px;
}

.site-logo img {
  width: auto;
  height: 20px;
}

@media screen and (width <=1200px) {
  .site-logo img {
    height: 15px;
  }
}

@media screen and (width <=930px) {
  .site-logo a:last-child {
    margin-left: 10px;
    padding-left: 10px;
  }
}

@media screen and (width <=480px) {
  .site-logo a:last-child {
    border-left: solid 1px #666;
  }

  .site-logo img {
    height: 12px;
  }
}

.gnav {
  align-self: center;
  margin: auto 0;
}

ul.gnav__menu {
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media screen and (width <=930px) {
  ul.gnav__menu {
    gap: 0.5rem;
  }
}

ul.gnav__menu li.__sp_none:nth-child(3n + 1) {
  margin-left: 1.5rem;
}

@media screen and (width <=1200px) {
  ul.gnav__menu li.__sp_none:nth-child(3n + 1) {
    margin-left: 1rem;
  }
}

@media screen and (width <=930px) {
  ul.gnav__menu li.__sp_none:nth-child(3n + 1) {
    margin-left: 0.5rem;
  }
}

.gnav__menu__item {
  display: flex;
  align-items: center;
}

@media screen and (width <=480px) {
  .gnav__menu__item.__sp_none {
    display: none;
  }
}

.gnav__menu__item__link {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gnav__menu__item__link small {
  font-size: 0.625rem;
  color: #001764;
  line-height: 1;
  font-weight: bold;
}

@media screen and (width <=1200px) {
  .gnav__menu__item__link small {
    font-size: 0.5rem;
  }
}

.gnav__menu__item__link img {
  height: 18px;
  margin-bottom: 3px;
  object-fit: contain;
}

@media screen and (width <=1200px) {
  .gnav__menu__item__link img {
    height: 10px;
  }
}

.__login {
  justify-content: center;
  height: 30px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid #001764;
}

@media screen and (width <=1200px) {
  .__login {
    padding: 0 6px;
  }
}

.__login:hover {
  background: lightyellow;
}

.__u-login,
.__d-login {
  position: relative;
  font-size: 0.6875rem;
  line-height: 1;
  font-weight: bold;
  padding-right: 25px;
}

@media screen and (width <=1200px) {
  .__u-login,
  .__d-login {
    font-size: 0.5rem;
    padding-right: 15px;
  }
}

.__d-login small {
  display: block;
  font-size: 0.625rem;
  font-weight: bold;
}

@media screen and (width <=1200px) {
  .__d-login small {
    font-size: 0.5rem;
  }
}

.__u-login::after,
.__d-login::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 15px;
  height: 15px;
  background: url('../img/icon-login-u.png') no-repeat center center;
  background-size: contain;
  transform: translateY(-50%);
}

@media screen and (width <=1200px) {
  .__u-login::after,
  .__d-login::after {
    width: 10px;
    height: 10px;
  }
}

.__d-login::after {
  background: url('../img/icon-login-d.png') no-repeat center center;
  background-size: contain;
}

.__signup {
  justify-content: center;
  height: 30px;
  padding: 0 12px;
  font-size: 0.75rem;
  color: #fff;
  background: #4061cf;
  border-radius: 10px;
  border: 1px solid #001764;
  font-weight: bold;
  letter-spacing: 0.2rem;
}

@media screen and (width <=1200px) {
  .__signup {
    padding: 0 6px;
    font-size: 0.5rem;
  }
}

.menu_btn {
  font-size: 0.875rem;
  color: #001764;
  font-weight: bold;
  padding-right: 0.5rem;
}

@media screen and (width <=1200px) {
  .menu_btn {
    display: none;
  }
}

.mnav__menu {
  overflow: hidden;
}

.mnav__menu2 {
  margin-top: 5%;
  overflow: hidden;
}

.mnav__menu__tittle {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 10px;
  font-size: 1em;
  color: #fff;
  background: linear-gradient(90deg, #a60, #fc0);
}

.mnav__menu__tittle2 {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 10px;
  font-size: 1em;
  color: #333;
  background: #efefef;
}

.mnav__menu__item {
  display: flex;
  flex-direction: column;
  padding: 10px;
  border-bottom: solid 1px #c93;
}

.mnav__menu__item2 {
  display: flex;
  flex-wrap: wrap;
  margin: 2% auto;
  padding: 0;
}

.mnav__menu__item2 input {
  flex-basis: 5%;
  margin-left: 1em;
  margin-top: 2%;
}

.mnav__menu__item2 label {
  flex-basis: 90%;
}

.mnav__menu__item__link {
  padding: 10px;
  font-size: 1em;
  color: #666;
}

.login2 {
  display: none;
}

@media screen and (width <=480px) {
  .login2 {
    display: flex;
  }
}

.logo_item {
  width: 70%;
  margin: 0 auto;
}

.index__menu {
  width: 100%;
  margin: 100px 0 0;
  padding: 20px 0;
  text-align: center;
  border-bottom: 1px solid;
  border-image: linear-gradient(to right, #000 20%, #fff 50%, #000 80%);
  border-image-slice: 1;
  border-top: 1px solid;
}

.index__menu__item {
  margin-left: 50px;
}

.index__menu__item__link {
  font-size: 16px;
  letter-spacing: 0.2em;
}

/****************************************
main_contents
*****************************************/
body {
  position: relative;
  width: 100%;
  height: 100%;
  background: #eef5ff;
  font-family: '游ゴシック体', 'Yu Gothic', YuGothic, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  overflow-x: hidden;
}

body::before,
body::after {
  content: '';
  position: fixed;
  z-index: -1;
  top: 50%;
  width: 600px;
  height: 800px;
  background: radial-gradient(ellipse at center, rgb(130 180 255 / 55%) 0%, rgb(200 230 255 / 35%) 40%, rgb(255 255 255 / 0%) 80%);
  filter: blur(80px);
  opacity: 0.9;
  transform: translateY(-50%);
}

body::before {
  left: -200px;
}

body::after {
  right: -200px;
}

main {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 70px auto;
  box-shadow: 0 0 8px #003;
  max-width: 1280px;
}

@media screen and (width <= 480px) {
  main {
    margin: 50px auto;
  }
}

.section {
  display: flex;
  width: 100%;
}

/****************************************
hero
*****************************************/

.hero {
  position: relative;
  justify-content: flex-end;
  background: url('../img/index_new/hero.jpg') no-repeat center top;
  aspect-ratio: 16 / 9;
  background-size: contain;
  overflow: hidden;
}

@media screen and (width<=480px) {
  .hero {
    background: url('../img/index_new/hero_sp.jpg') no-repeat center top;
    aspect-ratio: 5 / 4;
    background-size: contain;
  }
}

.hero__inner {
  position: absolute;
  display: flex;
  flex-direction: column;
  width: 43%;
  height: 100%;
  padding: 0.625rem 0 2rem;
  margin-right: 90px;
}

@media screen and (width <=1280px) {
  .hero__inner {
    margin-right: 30px;
  }
}

@media screen and (width <=1080px) {
  .hero__inner {
    margin-right: 20px;
  }
}

@media screen and (width <=820px) {
  .hero__inner {
    width: 40%;
    padding: 10px 0;
    margin-right: 10px;
  }
}

@media screen and (width <=480px) {
  .hero__inner {
    width: 60%;
  }
}

.hero-title {
  display: flex;
  flex-direction: column;
}

@media screen and (width <=480px) {
  .hero-title {
    display: none;
  }
}

.hero-title span {
  align-self: center;
  font-size: 0.6875rem;
  color: #694517;
  font-weight: bold;
  text-shadow: 2px 2px 0 #fff, -2px 2px 0 #fff, 2px -2px 0 #fff, -2px -2px 0 #fff, 0 2px 0 #fff, 2px 0 0 #fff, 0 -2px 0 #fff, -2px 0 0 #fff;
}

@media screen and (width <=820px) {
  .hero-title span {
    font-size: 0.5rem;
    text-shadow: 1px 1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, -1px -1px 0 #fff, 0 1px 0 #fff, 1px 0 0 #fff, 0 -1px 0 #fff, -1px 0 0 #fff;
  }
}

.hero-title img {
  width: 100%;
  margin: auto;
  max-width: 530px;
}

.hero-schedule {
  display: flex;
  flex-direction: column;
  align-self: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

@media screen and (width <=820px) {
  .hero-schedule {
    align-self: flex-end;
    margin-top: 0.5rem;
  }
}

@media screen and (width <=480px) {
  .hero-schedule {
    display: none;
  }
}

.hero-schedule li {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: 0.3fr 1fr;
}

.hero-schedule li span {
  font-size: 1.0625rem;
  color: #fff;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: 0.1rem;
  text-shadow: 2px 2px 2px hsl(44deg 100% 33%), -2px 2px 2px hsl(44deg 100% 33%), 2px -2px 2px hsl(44deg 100% 33%), -2px -2px 2px hsl(44deg 100% 33%), 0 2px 2px hsl(44deg 100% 33%),
    2px 0 2px hsl(44deg 100% 33%), 0 -2px 2px hsl(44deg 100% 33%), -2px 0 2px hsl(44deg 100% 33%);
}

@media screen and (width <=1280px) {
  .hero-schedule li span {
    font-size: 0.875rem;
  }
}

@media screen and (width <=1080px) {
  .hero-schedule li span {
    font-size: 0.8125rem;
  }
}

@media screen and (width <=1000px) {
  .hero-schedule li span {
    font-size: 0.75rem;
  }
}

@media screen and (width <=900px) {
  .hero-schedule li span {
    font-size: 0.625rem;
  }
}

@media screen and (width <=820px) {
  .hero-schedule li span {
    font-size: 0.5rem;
  }
}

.hero-schedule li.hero-sub-schedule {
  display: grid;
  align-self: flex-end;
  gap: 0.25rem;
  grid-template-columns: auto 1fr;
}

.hero-schedule li.hero-sub-schedule span {
  font-size: 0.625rem;
  color: #694517;
  line-height: 1.2;
  font-weight: bold;
  text-shadow: 1px 1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, -1px -1px 0 #fff, 0 1px 0 #fff, 1px 0 0 #fff, 0 -1px 0 #fff, -1px 0 0 #fff;
}

@media screen and (width <=900px) {
  .hero-schedule li.hero-sub-schedule span {
    font-size: 0.5rem;
  }
}

.hero-schedule li.hero-sub-schedule span:first-child {
  grid-row: span 2;
}

.hero-btn {
  display: flex;
  flex: 1 1 100%;
  flex-direction: column;
  align-self: flex-end;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-right: 10px;
}

@media screen and (width <=768px) {
  .hero-btn {
    margin-right: 0;
  }
}

@media screen and (width <=480px) {
  .hero-btn {
    gap: 0.25rem;
  }
}

.ticket-btn {
  display: flex;
  flex-direction: column;
  align-self: center;
  gap: 0.25rem;
  padding: 12px 24px;
  background: linear-gradient(to bottom, #f60 0%, #f30 100%);
  border-radius: 10px;
  box-shadow: inset 0 3px 3px rgb(255 255 255 / 60%), inset 3px 0 3px rgb(255 255 255 / 30%), inset -3px 0 3px rgb(0 0 0 / 30%), inset 0 -3px 3px rgb(0 0 0 / 30%);
  text-align: center;
  border: 1px solid #f93;
  cursor: pointer;
  transition: 0.1s ease;
}

.ticket-btn:hover {
  background: linear-gradient(to bottom, #f90 0%, #f60 100%);
}

.ticket-btn small,
.ticket-btn span {
  font-size: 0.875rem;
  color: #fff;
  font-weight: bold;
}

.ticket-btn span {
  font-size: 1.5rem;
  color: #fff;
}

@media screen and (width <=1000px) {
  .ticket-btn span {
    font-size: 1.125rem;
  }

  .ticket-btn small {
    font-size: 0.75rem;
  }
}

@media screen and (width <=768px) {
  .ticket-btn span {
    font-size: 1rem;
  }

  .ticket-btn small {
    font-size: 0.625rem;
  }
}

@media screen and (width <=480px) {
  .ticket-btn {
    padding: 6px 12px;
  }

  .ticket-btn span {
    font-size: 0.875rem;
  }

  .ticket-btn small {
    font-size: 0.6rem;
  }
}

.sub-text {
  align-self: center;
  font-size: 0.875rem;
  color: #d00;
  font-weight: bold;
  text-shadow: 1px 1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, -1px -1px 0 #fff, 0 1px 0 #fff, 1px 0 0 #fff, 0 -1px 0 #fff, -1px 0 0 #fff;
}

@media screen and (width <=1000px) {
  .sub-text {
    font-size: 0.75rem;
  }
}

@media screen and (width <=480px) {
  .sub-text {
    font-size: 0.625rem;
  }
}

/****************************************
news
*****************************************/
.news-wrap {
  justify-content: center;
  gap: 5rem;
  padding: 2rem 2rem 0;
  background: #fff;
}

.news-wrap picture {
  width: 150px;
  margin: auto 0;
}

@media screen and (width<=480px) {
  .news-wrap {
    gap: 0;
    padding: 20px 10px 0;
  }

  .news-wrap picture {
    display: none;
  }
}

.news-wrap picture img {
  width: 100%;
  height: auto;
}

ul.news-list {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-basis: 700px;
  align-self: center;
  gap: 0.625rem;
  height: 150px;
  overflow-y: auto;
  padding-right: 5rem;
}

@media screen and (width<=480px) {
  ul.news-list {
    gap: 1rem;
    height: 200px;
    padding-right: 0.625rem;
  }
}

ul.news-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media screen and (width<=480px) {
  ul.news-list li {
    flex-flow: wrap;
    gap: 0.5rem;
  }
}

.news-date {
  font-size: 0.875rem;
  color: #444;
  line-height: 1;
  border-right: 1px solid #ccc;
  font-family: 'Arial Black';
  font-weight: bold;
  padding-right: 0.75rem;
}

@media screen and (width<=480px) {
  .news-date {
    font-size: 0.75rem;
    padding-right: 0.5rem;
  }
}

.news-label-d,
.news-label-c {
  width: 80px;
  padding: 2px 4px;
  font-size: 0.625rem;
  color: #444;
  background: #e1eefb;
  text-align: center;
}

.news-label-d {
  background: #f8e4eb;
}

.news-title {
  font-size: 0.75rem;
  color: #444;
  font-weight: normal;
}

@media screen and (width<=480px) {
  .news-title {
    flex: 1 1 100%;
    line-height: 1.25;
  }
}

/****************************************
main-contents
*****************************************/
.main-contents {
  gap: 1rem;
  padding: 2rem;
  background: #fff;
}

@media screen and (width <=1080px) {
  .main-contents {
    padding: 2rem 0;
  }
}

@media screen and (width <=480px) {
  .main-contents {
    flex-flow: column;
    padding: 10px 0;
  }
}

.cols-left,
.cols-right {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1rem;
}

.cols-left {
  flex: none;
  width: 400px;
}

@media screen and (width <=1280px) {
  .cols-left {
    width: 40%;
  }
}

@media screen and (width <=480px) {
  .cols-left {
    width: 100%;
  }
}

.cols-right {
  padding: 1rem;
  background: rgb(220 230 240);
}

@media screen and (width <=1280px) {
  .cols-right {
    width: calc(60% - 1rem);
  }
}

@media screen and (width <=480px) {
  .cols-right {
    width: 100%;
  }
}

.dealer-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  background: rgb(220 230 240);
}

.ad-block {
  background: #fff;
}

.banner-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.banner-area a picture {
  display: flex;
}

.banner-area a img {
  width: 90%;
  height: auto;
  margin: auto;
  object-fit: contain;
}

@media screen and (width <= 768px) {
  .banner-area a img {
    width: 100%;
  }
}

ul.d-link-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  margin: auto;
  max-width: 260px;
}

@media screen and (width <= 480px) {
  ul.d-link-list {
    flex-flow: row wrap;
    max-width: 100%;
  }

  ul.d-link-list li {
    display: flex;
    flex-basis: calc((100% - 1rem) / 2);
  }
}

ul.d-link-list li a {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  width: 100%;
}

ul.d-link-list li a.d-link-btn {
  align-items: center;
  padding: 1rem;
  font-size: 1rem;
  color: #001743;
  background: linear-gradient(90deg, #40da92, #40a9da);
  border-radius: 50px;
  box-shadow: 2px 2px 4px #999;
  line-height: 1;
  font-weight: bold;
}

@media screen and (width <= 480px) {
  ul.d-link-list li a.d-link-btn {
    font-size: 0.75rem;
  }
}

ul.d-link-list li a.-event-add {
  color: #fff;
  background: linear-gradient(90deg, #f63, #f30);
}

ul.d-link-list li a.-d-signup {
  color: #242b00;
  background: linear-gradient(90deg, rgb(239 241 86), rgb(255 166 0));
}

ul.d-link-list li a small {
  font-size: 0.75rem;
}

@media screen and (width <= 480px) {
  ul.d-link-list li a small {
    font-size: 0.5rem;
  }

  ul.d-link-list li a.-event-add {
    line-height: 2;
  }
}

.contents-title {
  align-self: center;
  width: 350px;
  padding: 0.5rem 1rem;
  background: linear-gradient(180deg, #9fa5aa 0%, #cfcfcf 40%, #fff 50%, #cfcfcf 60%, #9fa5aa 80%, #ddd 100%);
  box-shadow: 0 5px 10px rgb(10 20 30 / 15%), inset 0 1px 0 rgb(255 255 255 / 60%);
  border: 1px solid rgb(255 255 255 / 30%);
}

@media screen and (width <= 768px) {
  .contents-title {
    width: auto;
  }
}

.contents-title span {
  display: block;
  font-size: 1.125rem;
  color: #001743;
  text-align: center;
  font-weight: bold;
  text-shadow: 2px 2px 0 #fff, -2px 2px 0 #fff, 2px -2px 0 #fff, -2px -2px 0 #fff, 0 2px 0 #fff, 2px 0 0 #fff, 0 -2px 0 #fff, -2px 0 0 #fff;
}

@media screen and (width <= 768px) {
  .contents-title span {
    font-size: 1rem;
  }
}

.sub-contents-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sub-contents-title:last-of-type {
  margin-top: 3rem;
}

.sub-contents-title img {
  width: 40px;
  object-fit: contain;
}

.sub-contents-title span {
  font-size: 1.25rem;
  color: #001743;
  font-weight: bold;
}

.event-info {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.5fr 1fr;
}

@media screen and (width <= 768px) {
  .event-info {
    grid-template-columns: 1fr;
  }
}

.event-info a {
  display: flex;
  height: fit-content;
}

@media screen and (width <= 768px) {
  .event-info a picture {
    width: 300px;
    margin: auto;
  }

  .event-info a.row-3 picture {
    width: 100%;
  }
}

.event-info a img {
  width: 100%;
  height: auto;
  box-shadow: 2px 2px 4px #999;
  object-fit: contain;
}

.event-info a.row-3 {
  grid-row: span 3;
}

.sns-box {
  display: flex;
  justify-content: flex-end;
}

.event-info .sns-box a img {
  width: 40px;
  box-shadow: none;
}

.event-schedule {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.event-schedule li {
  padding: 0.75rem;
  background: #fff;
  box-shadow: 2px 2px 4px #ccc;
  border: 1px solid #ccc;
}

@media screen and (width <=1280px) {
  .event-schedule li {
    overflow: hidden;
  }
}

.index_schedule__title {
  margin: 0;
}

.evtl_item_title {
  font-size: 0.875rem;
}

.evtl_item_list {
  font-size: 0.75rem;
}

ul.index_schedule__sub_text li {
  padding: 0 0 0 1rem;
  box-shadow: none;
  border: none;
}

table.event_timeline_wrap {
  font-size: 0.75rem;
}

@media screen and (width <= 1280px) {
  table.event_timeline_wrap {
    display: block;
    width: auto;
    white-space: nowrap;
  }
}

table.event_timeline_wrap tbody td {
  padding: 5px;
}

.red {
  color: #f00 !important;
}

.blue {
  color: #069;
}

/****************************************
big square
*****************************************/

.bigsquare {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background: #dae3f3;
}

@media screen and (width <= 480px) {
  .bigsquare {
    padding: 20px 10px;
  }
}

.bigsquare_flex {
  position: relative;
  display: flex;
  align-self: center;
  gap: 1.5rem;
  width: 100%;
  height: 400px;
  padding: 1rem;
  background: url('../img/index_new/bigsquare_bg.jpg') no-repeat center center;
  background-size: cover;
  max-width: 950px;
}

@media screen and (width <= 900px) {
  .bigsquare_flex {
    flex-direction: column;
    height: auto;
  }
}

.bigsquare_flex img {
  width: auto;
  object-fit: contain;
}

.bigsquare_flex img.-left-position {
  height: fit-content;
  margin: auto 0;
  border: 1px solid #fff;
}

@media screen and (width <= 1000px) {
  .bigsquare_flex img.-left-position {
    height: 170px;
  }
}

@media screen and (width <= 900px) {
  .bigsquare_flex img.-left-position {
    flex: 1;
    width: 320px;
    height: auto;
  }
}

@media screen and (width <= 480px) {
  .bigsquare_flex img.-left-position {
    width: 100%;
  }
}

.bigsquare_flex .-center-position {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 230px;
  margin: auto 0;
}

@media screen and (width <= 1000px) {
  .bigsquare_flex .-center-position {
    height: 180px;
  }
}

@media screen and (width <= 900px) {
  .bigsquare_flex .-center-position {
    flex: 1;
    gap: 0.5rem;
    width: 230px;
    height: auto;
    margin-left: 50px;
  }
}

@media screen and (width <= 900px) {
  .bigsquare_flex .-center-position {
    width: 200px;
    margin-left: 0;
  }
}

.bigsquare_flex .-center-position div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.bigsquare_flex .-center-position div:nth-child(2) {
  gap: 1rem;
}

.bigsquare_flex .-center-position div p {
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  color: #fff;
  line-height: 1.25;
}

@media screen and (width <= 900px) {
  .bigsquare_flex .-center-position div p {
    font-size: 0.875rem;
  }
}

.bigsquare_flex .-center-position div p span {
  flex: 1;
}

.bigsquare_flex .-center-position div p span.__flex_end {
  align-self: flex-end;
}

.bigsquare_flex .-center-position div p em {
  font-size: 2rem;
  background: linear-gradient(180deg, #fff, #fc9);
  background-clip: text;
  font-style: normal;
  font-weight: bold;
  -webkit-text-fill-color: transparent;
}

@media screen and (width <= 900px) {
  .bigsquare_flex .-center-position div p em {
    font-size: 1.5rem;
  }
}

.bigsquare_flex .-center-position div p.small__text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
}

.bigsquare_flex .-center-position div p.small__text small {
  font-size: 0.625rem;
}

.bigsquare__btn {
  align-self: flex-start;
  width: 100px;
  padding: 0.25rem 1rem;
  font-size: 0.75rem;
  background: #fff;
  border-radius: 50px;
  text-align: center;
  border: 2px solid #a89525;
  font-weight: bold;
  margin-left: 2rem;
}

.bigsquare_flex img.-right-position {
  position: absolute;
  right: -70px;
  bottom: 0;
  height: 400px;
}

@media screen and (width <=1080px) {
  .bigsquare_flex img.-right-position {
    right: -50px;
  }
}

@media screen and (width <=1050px) {
  .bigsquare_flex img.-right-position {
    right: -30px;
    height: 370px;
  }
}

@media screen and (width <=1000px) {
  .bigsquare_flex img.-right-position {
    right: -20px;
  }
}

@media screen and (width <=480px) {
  .bigsquare_flex img.-right-position {
    right: -10px;
    height: 190px;
  }
}

/****************************************
navigate
*****************************************/

.navigate {
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  background: #fff;
  border-bottom: 50px solid #dae3f3;
}

@media screen and (width <=480px) {
  .navigate {
    padding: 20px 10px;
  }
}

.navigate__inner {
  display: flex;
  align-self: center;
  justify-content: center;
  gap: 2rem;
  width: 100%;
}

@media screen and (width <=900px) {
  .navigate__inner {
    flex-direction: column;
  }
}

.navigate__dl {
  display: flex;
  flex-direction: column;
  flex-basis: 300px;
  gap: 1rem;
}

@media screen and (width <=1280px) {
  .navigate__dl {
    flex-basis: 250px;
  }
}

@media screen and (width <=900px) {
  .navigate__dl {
    flex-flow: row wrap;
    flex-basis: 100%;
  }
}

.navigate__dl dt {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem 1rem 0;
  background: linear-gradient(0deg, #fff 50%, #dfdfdf 100%);
  line-height: 1.25;
  border-top: 3px solid #4061cf;
  font-family: 'BIZ UDゴシック';
}

@media screen and (width <=900px) {
  .navigate__dl dt {
    flex-basis: 100%;
  }
}

.navigate__dl dt small {
  align-self: center;
  font-size: 0.8125rem;
}

.navigate__dl dt span {
  align-self: center;
  font-size: 1.125rem;
  font-weight: bold;
}

.navigate__dl dd {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  box-shadow: 2px 2px 4px #ccc;
  border: 1px solid #ccc;
}

@media screen and (width <=900px) {
  .navigate__dl dd {
    flex-basis: calc((100% - 2rem) / 3);
  }
}

@media screen and (width <=480px) {
  .navigate__dl dd {
    flex-basis: 100%;
  }
}

.c-img {
  width: 70px;
  height: 70px;
  border-radius: 50px;
  border: 1px solid #ccc;
  object-fit: contain;
}

.c-item {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.25rem;
}

.c-name {
  font-size: 1.25rem;
  text-align: center;
  line-height: 1.25;
  border-bottom: 1px solid #ccc;
  font-family: 'BIZ UDゴシック';
  font-weight: bold;
  padding-bottom: 0.25rem;
}

@media screen and (width<=480px) {
  .c-name {
    font-size: 1rem;
  }
}

.c-ruby {
  font-size: 0.875rem;
  text-align: center;
  line-height: 1.25;
  font-family: 'メイリオ';
}

@media screen and (width<=480px) {
  .c-ruby {
    font-size: 0.75rem;
  }
}

.navigate__main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 340px;
  padding: 1rem;
  background: url('../img/index_new/navigate__main_bg.jpg') no-repeat center center;
  aspect-ratio: 80 / 33;
  background-size: contain;
}

@media screen and (width <=1280px) {
  .navigate__main {
    flex: 1;
    height: 100%;
  }
}

@media screen and (width <=480px) {
  .navigate__main {
    gap: 0.5rem;
    padding: 10px;
    aspect-ratio: unset;
    background-size: cover;
  }
}

.navigate__main-title {
  font-size: 1.75rem;
  color: #78787c;
  line-height: 1.75;
  font-family: 'Noto Serif JP', serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  padding-left: 4.75rem;
}

@media screen and (width <=480px) {
  .navigate__main-title {
    font-size: 1rem;
    padding-left: 0;
  }
}

.navigate__main-title small {
  font-size: 1.25rem;
}

@media screen and (width <=480px) {
  .navigate__main-title small {
    font-size: 0.75rem;
  }
}

.navigate__main-title-line {
  position: relative;
  display: inline-block;
  width: 115px;
  height: 1.25rem;
}

@media screen and (width <=480px) {
  .navigate__main-title-line {
    width: 65px;
    height: 0.75rem;
  }
}

.navigate__main-title-line::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 10px;
  width: 100%;
  height: 2px;
  background: #78787c;
  transform: translateY(-50%);
}

.d-list-anchor {
  display: flex;
  gap: 2rem;
  padding-left: 60px;
}

@media screen and (width <=480px) {
  .d-list-anchor {
    flex-flow: column;
    gap: 0.5rem;
    padding-left: 0;
  }
}

.navigate__btn {
  width: 240px;
}

@media screen and (width <=480px) {
  .navigate__btn {
    width: 180px;
    line-height: 1;
  }
}

.navigate__btn img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.navigate__banner {
  display: flex;
  align-self: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  max-width: 1150px;
}

@media screen and (width<=480px) {
  .navigate__banner {
    flex-flow: column;
  }
}

.navigate__banner a {
  position: relative;
  flex-basis: calc((100% - 2rem) / 3);
  height: 200px;
  border-radius: 15px;
  border: 1px solid #ccc;
}

@media screen and (width<=480px) {
  .navigate__banner a {
    flex-basis: auto;
  }
}

.-left-banner {
  background: url('../img/index_new/navigate__banner-1.jpg') no-repeat center bottom;
  background-size: cover;
}

.-center-banner {
  background: url('../img/index_new/navigate__banner-2.jpg') no-repeat center center;
  background-size: cover;
}

.-right-banner {
  background: url('../img/index_new/navigate__banner-3.jpg') no-repeat center bottom;
  background-size: 80%;
}

@media screen and (width <= 900px) {
  .-right-banner {
    background: url('../img/index_new/navigate__banner-3.jpg') no-repeat center center;
    background-size: 80%;
  }
}

.oval-btn {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  color: #666;
  background: #fff;
  border-radius: 50px;
  border: 1px solid #ccc;
}

.oval-btn::after {
  content: '>';
  padding-left: 10px;
}

/****************************************
other-event
*****************************************/

.other-event {
  justify-content: center;
  padding: 2rem 2rem 4rem;
  background: #fff;
}

@media screen and (width<=480px) {
  .other-event {
    padding: 20px 10px 40px;
  }
}

.other-event-inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 100%;
  background: #fff;
  max-width: 1000px;
}

@media screen and (width<=480px) {
  .other-event-inner {
    gap: 1.5rem;
  }
}

.other-event-title {
  font-size: 1.25rem;
  color: #444;
  font-weight: bold;
}

@media screen and (width<=480px) {
  .other-event-title {
    font-size: 1rem;
  }
}

.line {
  position: relative;
  display: inline-block;
  width: 250px;
  height: 0.875rem;
}

.line::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 10px;
  width: 100%;
  height: 1px;
  background: #444;
  transform: translateY(-50%);
}

.other-event__flex {
  display: flex;
  flex-direction: column;
  align-self: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 700px;
}

.other-event__flex img {
  width: 700px;
  height: auto;
  padding-left: 4rem;
}

@media screen and (width <= 480px) {
  .other-event__flex img {
    width: 100%;
    height: auto;
    padding-left: 0;
  }
}

.other-event-label {
  width: fit-content;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(90deg, #f30 50%, #f96);
  border-radius: 50px;
  text-align: center;
  font-weight: bold;
}

.other-event-lead {
  font-size: 1.125rem;
  font-weight: bold;
  padding-left: 2rem;
}

@media screen and (width<=480px) {
  .other-event-lead {
    font-size: 1rem;
    padding-left: 0;
  }
}

.other-event-text {
  font-size: 1rem;
  line-height: 1.5;
  padding-left: 2rem;
}

@media screen and (width<=480px) {
  .other-event-text {
    font-size: 0.875rem;
    line-height: 1.5;
    padding-left: 0;
  }
}

.other-event-text b {
  font-weight: bold;
}

.other-event-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0 1rem 30%;
}

@media screen and (width<=480px) {
  .other-event-list {
    padding: 0 0 0 2rem;
  }
}

.other-event-list li {
  position: relative;
  padding-left: 1.5rem;
}

.other-event-list li::before {
  content: '✅';
  position: absolute;
  top: 0;
  left: 0;
}

.other-event-btn {
  position: relative;
  display: inline-block;
  align-self: flex-end;
  height: 32px;
  padding: 0 20px 0 30px;
  font-size: 0.8125rem;
  color: #fff;
  background: #f7931e;
  text-align: center;
  line-height: 32px;
  clip-path: polygon(0% 0%, calc(100% - 16px) 0%, 100% 50%, calc(100% - 16px) 100%, 0% 100%);
  font-weight: bold;
  margin-top: -3.5rem;
}

@media screen and (width<=480px) {
  .other-event-btn {
    margin-right: 1rem;
    margin-top: 0;
  }
}

.other-event-btn::before {
  content: '';
  position: absolute;
  top: 0;
  width: 0;
  height: 0;
}

.other-event-btn::before {
  left: 0;
  border-bottom: 16px solid transparent;
  border-left: 16px solid #fff;
  border-top: 16px solid transparent;
}

/****************************************
footer
*****************************************/

.footer {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 2rem;
  background: #fff;
}

@media screen and (width<=480px) {
  .footer {
    gap: 2rem;
  }
}

.footer img {
  align-self: center;
}

@media screen and (width<=480px) {
  .footer img {
    width: 70%;
  }
}

.footer-list {
  display: flex;
  align-self: center;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  border-top: 2px solid #ccc;
  max-width: 1280px;
  padding-top: 2rem;
}

@media screen and (width<=480px) {
  .footer-list {
    gap: 0.75rem;
    padding-top: 1rem;
  }
}

.footer-list li {
  font-size: 1rem;
  border-left: 1px solid #ccc;
  padding-left: 2rem;
}

@media screen and (width<=480px) {
  .footer-list li {
    font-size: 0.75rem;
    padding-left: 0.75rem;
  }
}

.footer-list li:first-child {
  border-left: none;
  padding-left: 0;
}

.footer p {
  align-self: center;
  color: #444;
  text-align: center;
}

@media screen and (width<=480px) {
  .footer p {
    font-size: 0.75rem;
  }
}

.hidden {
  display: none;
}

/* topに戻るボタン */
.pagetop {
  position: fixed;
  right: 1vw;
  bottom: 2vh;
  width: 40px;
  height: 40px;
  background: linear-gradient(0deg, #f60 50%, #f40);
  border-radius: 50px;
}

.pagetop a {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  margin: 15px 0 0 10px;
  border-right: 3px solid #fff;
  border-top: 3px solid #fff;
  box-sizing: border-box;
  text-decoration: none;
  transform: rotate(-45deg);
}

/* ボタンリンク無効 */
.no_link {
  pointer-events: none;
}
