@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Outfit:wght@100..900&display=swap');
:root {
  font-family: Noto Sans JP, sans-serif;
  line-height: 1.5;
  font-weight: 400;
  --bs-font-sans-serif: Noto Sans JP, Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  /* テキスト色 */
  --text-color: #000000;
  --text-white: #ffffff;
  --text-gray: #999999;

  /* 背景色 */
  --bg-color: #ffffff;
  --bg-black: #000000;
  --bg-gray: #f5f5f5;
  --bg-LightBlue:#F0F8FF;
  --bg-PaleBlue:#E3F2FD;
  --bg-WaterBlue:#dbfaff;
  --bg-SkyBlue:#90CAF9;
  --bg-Mediumblue:#42A5F5;
  --bg-blue:#1565C0;
  --bg-Darkblue:#0D47A1;
  --bg-gradation: linear-gradient(#b1e0ff, #1565C0);
  --dark80: #323232;
  --dark70: #494949;
  --dark40: #8f8f8f;
  --dark30: #b9b9b9;
  --dark10: #efefef;
  --deepBlue: #4731b6;
  --white100: #ffffff;
  --gold: #FFD700;
  --silver: #C0C0C0;
  --bronze: #CD7F32;

  --primary: var(--bg-blue);
  --secondary:var(--bg-Mediumblue);
  --tertiary: var(--bg-WaterBlue);	
  --btn-bg: var(--bg-blue);
  --btn-bg-hover: var(--bg-Mediumblue);
  --link-text-color: var(--deepBlue);
  --describe-color: var(--dark40);
  --text-color: var(--dark70);
  --title-color: var(--dark80);
  --text-active-color: var(--bg-blue);
  --border-color: var(--dark30);
  --bs-heading-color: var(--dark80);
  --main-shadow: 2px 4px 8px 4px #00000012;

  --block-radius: 16px;
  --button-radius: 8px;
  --hint-size: 12px;
  --span-size: 14px;
  --text-size: 16px;
  --body-lg-size: 18px;
  --subtitle-size: 20px;
  --title-size: 24px;
  --heading-size: 28px;
  --x-heading-size: 32px;
}

body {
  font:16px var(--bs-font-sans-serif);
  color: var(--text-color);
  background-color: var(--bg-color);
  font-size: 16px;
  line-height: 1.75;
  font-family: Noto Sans JP, sans-serif;
  list-style: none;
  
}

a {
  transition: all 0.3s ease-in-out 0s;
}

a:link,
a:visited {
  color: var(--text-color);
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
  opacity: 0.7;
  color: var(--text-color);
}

body.bg-body-ver2 {
  background: none !important;
}

@media (max-width: 1024px) {
  body {
    font-size: 15px;
  }
}

main {
  margin-top: -86px;
}

@media (max-width: 767px) {
  main {
    margin-top: 0px;
    padding-top: 60px;
  }
}

/* ------------------------------------------
				common
------------------------------------------ */
.wrap {
  max-width: 1512px;
  margin: auto;
}

.inner-wrap {
  max-width: 80%; 
  margin: 0 auto; 
  word-break: break-all;
  padding: 80px 0;
}

@media (max-width: 1024px) {
  .inner-wrap {
    width:80%;
    max-width: none;
    padding: 40px 20px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .inner-wrap {
    padding: 40px 0;
    width: 90%;
  }
}

.main-shadow {
  box-shadow: var(--main-shadow);
}

/* ------------------------------------------
				header
------------------------------------------ */
.header-block {
  flex-direction: column;
  color: var(--text-white);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-block a {
  color: var(--text-white);
  text-decoration: none;
}

.header-block a:hover {
  color: var(--text-white);
}

.header-block .inner-wrap {
  display: flex;
  padding: 0;
}

.header__titleWrap {
  display: flex;
  background-color: var(--bg-Darkblue);
  padding: 0 20px;
  height: 30px;
}

.header__titleWrap figure {
  margin-bottom:0;
}

.header__tokyo img {
	width: 75%;
	height:auto
}

.header__logo img {
	width: 120px;
	height:auto
}

.sumida-logo {
  position: relative;
  z-index: 100;
}

.sumida-logo img {
  width: 35%;
  height: auto;
}

.header__title {
  height: 20px;
  width: 100%;
  display: block;
}

.header__title img {
  width: auto;
  height: 100%;
}

.header__title__text {
  min-width: 200px;
  max-width: 400px;
  height: auto;
  line-height: 56px;
}

.header-block nav {
  display: flex;
  margin: 0 0 0 auto;
  justify-content: flex-end;
}

.header-block .header__navi {
  display: flex;
}

.header-block .header__navi li {
  margin-right: 40px;
}

.header-block .header__navi li:last-child {
  margin-right :0; 
}

.header-block .snslist {
  display: flex;
}

.header-block .snslist li {
  width: 1.5rem;
  margin-right :5px; 
}

.header-block .snslist li:last-child {
  margin-right :0; 
}

.header-block .search-container {
  height: 40px;
  display: flex;
  align-items: center;
  background-color: #fff;
  border: solid 1px #000080;
  border-radius: 5px;
}

.header-block .search-container input {
  height: 100%;
  padding-left: 10px;
  background: none;
  border: none;
  outline: none;
  line-height: 80px;
}

.header-block .search-container button {
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
}

.header-block .search-container svg {
  fill: #000080;
}

.header-block-sp {
  display: none;
}

.header-block .page__navi {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0;
}

.header-block .navi-right {
  display: flex;
  justify-content: space-around;
  font-weight: 500;
  padding: 10px 20px;
  padding-bottom: 36px;
  width: 100%;
  background-image: url(/img/nav-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}

.header-block .navi-right ul{
  margin-bottom: 0;
  padding: 0;
}

.navi-right .page__navi li{
	padding: 0 1em;
	text-align:center;
	position: relative;
}

.navi-right .page__navi li a {
  color: var(--bg-Darkblue);
  padding: 5px 10px;
  display: block;
  -webkit-text-stroke: 4px white;
  paint-order: stroke;
}

.navi-right .page__navi li a:hover {
  color: #ff9e00;
}

.navi-right .page__navi li .dropdown {
  color: var(--bg-Darkblue);
  display: none;
  position: absolute;
  top: 100%;
  left: -10px;
  z-index: 1000;
  padding-left: 0;
  background-color: rgba(231, 240, 248, 0.7);
}

.navi-right .page__navi li .dropdown li {
	padding: 0;
  width: max-content;
}

.navi-right .page__navi li .dropdown li a {
  color: var(--bg-Darkblue);
  padding: 10px 15px;
  display: block;
  white-space: nowrap;
  -webkit-text-stroke: 4px white;
  paint-order: stroke;
  display: inline-block;
}

.navi-right .page__navi li .dropdown li a:hover {
  color: #ff9e00;
}

.navi-right .page__navi li:hover .dropdown {
  display: block;
}

.navi-right .page__navi li img {
	width:70px;
}

.navi-right .page__navi li:hover {
  color: #ff9e00;
}

.navi-right .page__navi li .dropdown li a:hover {
  color: #ff9e00;
}

@media (max-width: 1024px) {
  .header-block {
    display: none;
  }

  .header-block-sp {
    display: block; 
    background-color: white;
    width: 100%;
    z-index: 500;
  }
  
  .header-block-sp .header__titleWrap{
	  display:flex;
  }

  .header-block-sp .header__logo img {
    width: 70px;
    height: auto;
  }

  .sumida-logo img {
    width: 100%;
  }

  .header-block-sp .inner-wrap {
    padding: 0;
    margin: 0 7%;
    display: flex;
    justify-content: space-between;
    width: 76%;
  }

  .header-block-sp figure {
    width: 13.9%;
  }

  .header-block-sp .header__title-sp {
    width: 100%;
    height: 40px;
    position: relative;
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .header__title-sp img {
    height: 100%;
  }

  .header-block-sp .search-button {
    background-color: #FFDA00;
    padding: 8px;
    width: 60px;
    height: 60px;
    border-radius: 0;
  }

  .header-block-sp .search-button img {
    width: 100%;
    height: 100%;
  }

  .search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
  }

  .search-box {
    text-align: center;
  }

  .search-box input {
    font-size: 1.2rem;
    padding: 0.5em 1em;
    width: 80%;
    max-width: 400px;
  }

  .scroll-prevent {
    overflow: hidden;
  }

  .gnav {
    background: #ffffffdf;
    display: none;
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 98;
    top: 0;
    left: 0;
  }

  .gnav__wrap {
    align-items: center;
    display: flex;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    justify-content: center;
    position: absolute;
    margin: 20px;
  }

  .gnav__wrap .header__navi {
    font-weight: bold;
  }

  .gnav__wrap .header__navi li {
    margin-bottom: 15px;
  }

  .gnav__wrap .header__navi li:last-child {
    margin-bottom: 0;
  }

  .gnav__wrap .header__navi a {
    text-decoration: none;
  }

  .menu {
    cursor: pointer;
    height: 26px;
    position: absolute;
    right: 20px;
    top: 16px;
    width: 24px;
    z-index: 200;
  }

  .menu__line {
    background-color: var(--bg-black);
    display: block;
    height: 2px;
    position: absolute;
    transition: 0.3s;
    width: 100%;
  }

  .menu__line--center {
    top: 12px;
  }

  .menu__line--bottom {
    bottom: 0;
  }

  .menu__line--top.active {
    top: 12px;
    transform: rotate(45deg);
  }

  .menu__line--center.active {
    transform: scaleX(0);
  }

  .menu__line--bottom.active {
    bottom: 12px;
    transform: rotate(135deg);
  }

  .scroll-prevent {
    position: fixed;
    z-index: -1;
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 767px) {
  .header-block-sp {
    position: fixed;
    height: 60px;
  }

  .header-block-sp figure {
    width: 30%;
  }

  .search-box input {
    width: 100% !important;
  }
}

/* ------------------------------------------
				footer
------------------------------------------ */
footer {
  position: relative;
  z-index: 10;
}

.footer-block {
  background-color: var(--bg-Darkblue);
  padding: 10px 0;
  color: var(--text-white);
}

.footer-block a {
  text-decoration: none;
  color: var(--text-white);
}

.footer-block a:hover {
  color: var(--text-white);
}

.footer-block .inner-wrap {
  display: flex;
  justify-content: center;
  padding: 0 20px;
  align-items: center;
}

.footer-block  .footer-links {
  padding: 0 20px;
  display: flex;
  gap: 11rem;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .footer-block {
    padding: 10px 0;
  }

  .footer-block .footer-links {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
  }

  .footer-block li {
    padding: 0 10px;
  }

  .footer-block ul li:nth-child(1) {
    padding-left: 0;
  }

  .footer-block ul li:nth-child(1),
  .footer-block ul li:nth-child(2) {
    border-right: 1px solid white;
  }

  .footer-block a {
    font-size: 0.6rem;
  }
  .footer-block ul li:nth-child(3) a {
    letter-spacing: -1px;
  }
}

/* ------------------------------------------
				Top
------------------------------------------ */
.top-column-2 {
  display: flex;
  background-color: #F3F7F8;
}

.content_data .big-area .Top-logo {
  z-index: 10;
  width: 39%;
  height: auto;
  position: absolute;
  bottom: 10%;
  transform: translateX(145%);
}

.top-bg-img {
  z-index: 0;
}

.top-right {
  flex: 1;
}

.content_data .block-buttonItem {
  margin-top: 60px;
}

.content_data .block-buttonItem a {
  text-decoration: none;
  position: relative;
  z-index: 20;
}

.content_data .block-buttonItem
.button, .button-01, .button-02 {
  position: relative;
  height: 247px;
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
  line-height: 30px;
  outline: none;
  margin: 20px auto;
}

.content_data .block-buttonItem .button-01 {
  border: 3px #ff9e00 solid;
}

.content_data .block-buttonItem .button-02 {
  border: 3px #00D67C solid;
}

.content_data .block-buttonItem .button__image {
  position: relative;
  width: 100%;
  height: 100%;
}

.content_data .block-buttonItem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content_data .block-buttonItem p {
  position: absolute;
  top: 30%;
  font-size: 2em;
  font-weight: bold;
  color: var(--bg-color);
  z-index: 1;
  margin: 0;
  width: 100%;
  text-align: center;
}

.content_data .block-buttonItem .public_p, .business_p {
  font-size: 1.1em;
  top: 58%;
  left: 4%;
}

.content_data .block-buttonItem 
.public_title, .public_p, .business_title, .business_p {
  paint-order: stroke;
}

.content_data .block-buttonItem .public_title {
  -webkit-text-stroke: 6px #ff9e00;
}

.content_data .block-buttonItem .public_p {
  -webkit-text-stroke: 4px #ff9e00;
  font-size: 1.1em;
  top: 58%;
  left: 34%;
  text-align: left;
}

#business .bg-layer {
  background-color: #F7FFFC;
}
.content_data .block-buttonItem .business_title {
  -webkit-text-stroke: 6px #00D67C;
}

.content_data .block-buttonItem .business_p {
  -webkit-text-stroke: 4px #00D67C;
  font-size: 1.1em;
  top: 58%;
  left: 25%;
  text-align: left;
}

#business .flex-container {
  display: flex;
  gap: 20px;          
}

#business .text-area,
#business .image-area {
  flex: 1;            
}

@media (max-width: 1024px) {
  .content_data .block-buttonItem {
    margin-top: 30px;
  }

 .content_data .block-buttonItem p {
    font-size: 1.5em;
  }
}

@media (max-width: 767px) {
  .content_data .big-area .Top-logo {
    width: 70%;
    bottom: 5%;
    transform: translateX(35%);
  }

  .content_data  .block-buttonItem {
    display:block;
  }

  .content_data .block-buttonItem {
    margin-top: 0;
  }

  .content_data .block-buttonItem
  .button, .button-01, .button-02 {
    height: 100px;
  }

  .content_data .block-buttonItem .public_p, .business_p {
    display: none;
  }
}

/* 区切りの波線 */
.wave-separator_navi {
  position: absolute;
  top: 46px;
}

#eventsRepo .wave-separator_navi,
#eventsInfo .wave-separator_navi,
#tokushu .wave-separator_navi {
  top: 57px;
}

.wave-separator_1, .wave-separator_2, .wave-separator_3, .wave-separator_4 {
  z-index: 10;
  position: relative;
}

.wave-separator_1 {
  margin-top: -44px;
}

.wave-separator_2 {
  margin-top: -62px;
}

.wave-separator_3 {
  margin-top: -62px;
}

.wave-separator_4 {
  margin-top: -30px;
}

.wave-separator_1 img, .wave-separator_2 img, .wave-separator_3 img, .wave-separator_4 img, .wave-separator_navi img {
  width: 100%;
}

@media (max-width: 767px) {
  .wave-separator_2 {
    margin-top: -34px;
  }

  .wave-separator_3 {
    margin-top: -144px;
  }
}

/* block-news */
.oshirase {
  padding: 0 0 120px 0;
}

.oshirase .block-title {
  margin: 0px 0 0 2em;
}

.oshirase .inner-wrap {
  padding: 0;
  width: 90%;
  max-width: 90%;
}

#news-splide {
  width: 90%;
  margin:25px auto 0;
}

#news-splide-list li {
  padding: 0;
}

 #news-splide-list .block-news li {
  padding: 0;
}

#news-splide ul li:before {
  content: none;
}

 #news-splide .splide__slide {
  z-index: 1;
  transition: transform 0.5s ease, z-index 0.5s ease, opacity 0.5s ease;
}

#news-splide .splide__slide .block-newsItem {
  border-radius: 17px;
  overflow: hidden;
  border: 4px #ffda00 solid;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.2);
}

#news-splide .splide__slide.is-active .block-newsItem {
  z-index: 3;
  opacity: 1;
  transform: scale(1);
  border-radius: 17px;
}

#news-splide .block-newsItem {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 3px 2px #f5f5f5;
  height: 100%;
  max-width:290px;
  margin:auto;
  background: #fff;
}

#news-splide .block-news__image {
  width: 100%;
  height: auto;
  margin: 16px 0;
  text-align: center;
  border-radius: 10%;
}

#news-splide .block-news__image img {
  height: auto;
  border-radius: 10%;
  aspect-ratio:  4 / 3;
  object-fit: cover;
}

#news-splide .block-news__text {
  height: 392px;
  padding: 15px;
  position: relative;
  color: var(--text-color);
  background-color: var(--bg-color);
}

#news-splide h4 {
  margin:0;
  border-bottom: 2px solid #000;
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-align: start;
}

#news-splide .block-news__text p {
  margin-bottom:0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-align: start;
}

#news-splide .block-news__allWrap {
  text-align: center;
  margin: 60px auto 0;
} 

@media (max-width: 767px) {
  .oshirase {
    padding: 0 0 87px 0;
  }

  .oshirase .block-title {
    margin: 0px 0 1em 1em;
  }
}

/* block-events */
#events-splide ul li:before {
  content: none;
}

#events-splide ul li {
  padding: 0 1em;
}

#events-splide {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

#events-splide h5 {
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

#events-splide .splide__slide {
  transition: transform 0.5s ease, z-index 0.5s ease, opacity 0.5s ease;
}

#events-splide .block-events__link {
  width: 100%;
  height: 80px;
  padding: 10px;
  position: relative;
  color: var(--text-color);
  margin: 10px 0;
}

.event-title {
  display: flex;
  object-fit: cover;
  border-bottom: dashed 2px #ffda00;
  justify-content: flex-start;
  gap: 16px;
  align-items: flex-end;
  margin-top: -7px;
}

.title-icon {
  width: 40px;
  height: 100%;
  transform: translateY(3px);
}

.news-link, .event-link, .calendar-link {
  text-align: end;
  margin-right: 1.5em;
}

.content_data .news-link a,
.content_data .event-link a,
.content_data .calendar-link a {
  background-color: #FFDA00;
  color: white;
  border: 2.5px solid white;
  border-radius: 5px;
  padding: 5px 20px;
  font-size: 1.2rem;
  font-weight: 750;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}

#events-splide .block-eventsItem {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 3px 2px #f5f5f5;
  margin: 6px;
  background-image: url(../img/borderwave.png);
  background-size: 100% 100%;
  padding: 30px;
  background-repeat: no-repeat;
  height: 520px;
  margin-top: 25px;
}

#events-splide .block-events__image {
  margin-top: 10px;
  aspect-ratio: 4 / 3;
}

#events-splide .block-events__image img{
  max-width: 100%;
  object-fit: cover;
  background: #fff;
  width: 320px;
  aspect-ratio: 4 / 3;
  border-radius: 9%;
}

#events-splide .block-events {
  width: 100%;
  height: 80px;
  padding: 10px;
  position: relative;
  color: var(--text-color);
  margin: 20px 0;
  background-color: rgba(255, 165, 0, 0.2);
}

#events-splide .block-events__text {
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 15px;
}

#events-splide .block-events__text p {
  margin-bottom:0;
  -webkit-text-stroke: 6px white;
  paint-order: stroke;
}

#events-splide  ul li {
padding-left: 2em;
}

.splide__pagination {
  top: 100%;
  display: flex !important;
}

.splide__pagination li button {
  width: 5px;
  height: 5px;
  margin: 15px;
  border-radius: 50%;
  background-color: var(--bg-color);
  box-shadow: 0 3px 5px #f5f5f5;
}

.splide__pagination li button.is-active {
  background-color: var(--bg-blue);
  box-shadow: 0 3px 5px #f5f5f5;
}

.splide__pagination li:last-child {
  margin-bottom: 0.5rem;
}

@media (max-width: 1024px) {
  .event-link, .calendar-link {
    margin: 0 1em 2em 0;
  }

  .content_data .block-news {
    display: block;
  }

  .content_data .block-news .mt-be-column {
    margin-right: 0;
    height: auto;
    width: 100%;
    padding: 2em 2em 0 !important;
  }

  .content_data .block-news .mt-be-column:last-child {
    margin-bottom: 0;
  }

  .content_data .block-news__button {
    position: relative;
    margin-top: 40px;
  }

	#events-splide .block-eventsItem{
	  width:100%;
	  margin:auto;
    height: 511px;
	}
  
  #events-splide .splide__list li {
    padding: 0 10px;
  }

  #news-splide .block-news__button {
    position: absolute;
    margin-top: 0;
  }

	#news-splide .block-newsItem{
		height:385px;
		width:100%
	}
}

@media (max-width: 767px) {
  .content_data
  .news-link, .event-link, .calendar-link {
    margin: 0 0 25px 0;
    text-align: right;
  }

  .content_data .news-link a, .content_data .event-link a, .content_data .calendar-link a {
    margin-left: 0;
    font-size: 1rem;
  }

  #events-splide .block-eventsItem {
    height: 453px;
	}
}

/* ------------------------------------------
				news
------------------------------------------ */
.content_data .news__medium-area {
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  text-align: center;
  background: url(/img/news-top_01.jpg);
  background-size: cover;
  background-position: center center;
  color: var(--text-white);
	position:relative;
}

.content_data .news__medium-area img {
	width: 100%;
  position: absolute;
	left: 0;
  bottom: -1px;
  height: 60%;
	z-index: 1;
}

.content_data .news__medium-area .inner-wrap {
  width: 800px;
  margin: 0 auto;
}

.content_data .news__medium-area h1 {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 1.8px;
  margin-bottom: 32px;
}

.content_data .news__navi-wrap {
  margin: 0 auto;
  max-width: 1024px;
  word-break: break-all;
  padding: 40px 0 0;
}

.news__navi-wrap + .section-bgwhite > .inner-wrap {
  padding: 40px 0 80px;
}

.content_data .news__navi {
  width: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border-bottom: 1px solid var(--text-color);
  padding-bottom: 20px;
  margin: 0 auto;
}

.content_data .news__navi li {
  padding: 0;
  margin-bottom: 0;
}

.content_data .news__navi li a {
  color: var(--text-color);
  text-decoration: none;
}

.content_data .news__navi .news__navi--all {
  font-weight: 600;
}

.content_data .news__navi li:before {
  display: none;
}

.content_data .news__navi li:last-child {
  margin-right: 0;
}

.content_data .news__navi > li {
  display: flex;
  margin-right: 28px;
  font-weight: bold;
}

.content_data .news__navi > li:last-child {
  margin-right: 0;
}

.content_data .news__subnavi {
  display: flex;
  flex-wrap: wrap;
  font-weight: 600;
  margin-bottom: 0;
}

.content_data .news__subnavi li {
  margin-right: 28px;
}

.content_data .news__subnavi li .nolink {
  color: var(--text-gray);
}

.content_data .news__subnavi .submenu {
  margin: 0;
}

.content_data .news__subnavi .submenu li {
  margin: 0;
}

.content_data .tokushu,
.content_data .event-detail {
  padding-top: 160px;
}

/* select */
.pulldownWrap {
  width: 80px;
}

.pulldown__header {
  display: block;
  padding: 0 4px;
  background-color: var(--bg-color);
  cursor: pointer;
  position: relative;
}

.pulldown__header:after {
  content: "";
  width: 2px;
  height: 10px;
  display: block;
  background-color: var(--text-color);
  position: absolute;
  bottom: 8px;
  right: 4px;
  transform: rotate(45deg);
  transition: all 0.1s ease-in;
}

.pulldown__header:before {
  width: 2px;
  height: 10px;
  display: block;
  background-color: var(--text-color);
  position: absolute;
  bottom: 8px;
  right: 10px;
  transform: rotate(-45deg);
  transition: all 0.1s ease-in;
}

.pulldown__header:active:after,
.pulldown__header.active:after {
  transform: rotate(135deg);
}

.pulldown__header:active:before,
.pulldown__header.active:before {
  transform: rotate(-135deg);
}

.pulldown__list {
  display: none;
  position: absolute;
  top: 28px;
  padding: 4px 0;
  background-color: var(--bg-color);
}

.content_data .news__subnavi.pulldown__list li {
  min-width: 72px;
  margin-right: 0;
  padding: 0 1rem;
}

.pulldown__list li a {
  display: block;
  transition: all 0.1s ease-in;
}

.pulldown__list li:last-child {
  border-bottom: 0;
}

.content_data .paginationWrap {
  display: flex;
  margin: 0 auto;
  text-align: center;
  justify-content: center;
}

.content_data .pagination {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.content_data .pagination li {
  margin-bottom: 0;
  padding: 0;
}

.content_data .pagination li:before {
  display: none;
}

.content_data .pagination li a[rel="prev"]:before {
  content: "";
  width: 2px;
  height: 8px;
  display: block;
  background-color: var(--text-color);
  position: absolute;
  bottom: 8px;
  left: -16px;
  transform: rotate(-45deg);
}

.content_data .pagination li a[rel="prev"]:after {
  content: "";
  width: 2px;
  height: 7px;
  display: block;
  background-color: var(--text-color);
  position: absolute;
  top: 8px;
  left: -16px;
  transform: rotate(45deg);
}

.content_data .pagination li a[rel="next"]:before {
  content: "";
  width: 2px;
  height: 8px;
  display: block;
  background-color: var(--text-color);
  position: absolute;
  bottom: 8px;
  right: -16px;
  transform: rotate(45deg);
}

.content_data .pagination li a[rel="next"]:after {
  content: "";
  width: 2px;
  height: 7px;
  display: block;
  background-color: var(--text-color);
  position: absolute;
  top: 8px;
  right: -16px;
  transform: rotate(-45deg);
}

.splide__pagination {
  position: absolute;
  left: 0;
  top: 100%;
  display: flex !important;
}

.splide__pagination li button {
  width: 5px;
  height: 5px;
  margin: 15px;
  border-radius: 50%;
  background-color: var(--bg-color);
  box-shadow: 0 3px 5px #f5f5f5;
}

.splide__pagination li button.is-active {
  background-color: var(--bg-blue);
  box-shadow: 0 3px 5px #f5f5f5;
}

.splide__pagination li:last-child {
    margin-bottom: 0.5rem;
}

@media (max-width: 1024px) {
  .content_data .news__medium-area {
    height: 160px;
  }

  #news #inner-wrap {
    background: var(--bg-blue);
    padding: 2em;
    margin: 40px auto;
    border-radius: 30px;
  }

  .news__navi-wrap + .section-bgwhite > .inner-wrap {
    padding: 40px 20px;
  }

  .content_data .news__navi {
    margin-left: 0;
    display: block;
    margin-bottom: 0;
  }

  .content_data .news__navi-wrap {
    padding: 40px 20px 0;
    margin: 0;
  }

  .content_data .news__navi .news__navi--yearly,
  .content_data .news__navi .news__navi--category {
    width: 120px;
  }

  .content_data .news__navi > li {
    margin-right: 0;
  }

  .content_data .news__subnavi {
    margin-left: 0;
  }

  .pulldownWrap {
    width: 100%;
  }

  .pulldown__header {
    display: none;
  }

  .content_data .news__subnavi.pulldown__list li {
    padding: 0;
  }

  .content_data .news__subnavi li,
  .content_data .news__subnavi.pulldown__list li {
    min-width: auto;
    margin-right: 20px;
  }

  .pulldown__list {
    display: flex !important;
    position: relative;
    top: 0;
    padding: 0;
  }

  .content_data .pagination--prev:before,
  .content_data .pagination--prev:after {
    height: 6px;
  }

  .content_data .pagination--next:before,
  .content_data .pagination--next:after {
    height: 6px;
  }

  .content_data .splide__list li {
    padding-left: 0;
  }

  .content_data .splide__pagination li {
    padding: 0;
  }
}

@media (max-width: 767px) {
  .splide__pagination li button {
    width: 3px;
    height: 3px;
  }

  .content_data .tokushu,
  .content_data .event-detail {
    padding-top: 80px;
  }
}

/* ------------------------------------------
				contents
------------------------------------------ */
.content_data .outer-wrap {
  background-color: var(--bg-WaterBlue);
  /*background-image: url(/img/river-white.png);*/
  background-repeat: no-repeat;
  background-position: center center;
}

.content_data .web-outer-wrap {
  background-color: var(--bg-color);
  /*background-image: url(/img/river-blue.png);*/
  background-repeat: no-repeat;
  background-position: center center;
	background-size:70%;
}

.content_data .inner-wrap > *:last-child {
  margin-bottom: 0;
  position: relative;
}

.content_data .section-block{
	position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 1em;
  margin: 0em auto;
  padding: 2em;
  width: 100%;
  max-width: 1298px;
  min-height: 300px;
  background-color: var(--white100);
  border-radius: var(--block-radius);
  box-shadow: var(--main-shadow);
}

.content_data .section-block ul{
  margin: 0; 
}

.content_data .page-detail .section-block h2,
.content_data .page-detail .section-block h3,
.content_data .page-detail .section-block h4,
.content_data .page-detail .section-block p{
  margin-top:0 ;
  margin-bottom:0 ;
}

/* h */
.content_data h1 {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 100;
  font-size: 2.625rem;
  line-height: 1.5;
  margin-bottom: 60px;
  text-align: center;
}

.content_data h2 {
  font-size: 2.3rem;
  position: relative;
  color: var(--bg-Darkblue);
  font-weight: bold;
  -webkit-text-stroke: 4px white;
  paint-order: stroke;
}

.content_data h3 {
  font-size: 1.75rem;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 36px;
}

.content_data h4 {
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 600;
}

.content_data h5 {
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 30px;
}

.content_data .label {
  width: fit-content;
  display: block;
  background-color: var(--bg-black);
  padding: 0.5rem 1rem;
  color: var(--text-white);
  margin-bottom: 40px;
}

.content_data .label h1,
.content_data .label h2,
.content_data .label h3,
.content_data .label h4,
.content_data .label h5 {
  margin: 0;
  color: var(--text-white);
}

.content_data * + h1,
.content_data * + h2,
.content_data * + h3,
.content_data * + h4,
.content_data * + h5,
.content_data * + .label {
  margin-top: 60px;
}

.content_data a {
  text-decoration: none;
  color: var(--deepBlue);
}

.content_data img {
  max-width: 100%;
  height: auto;
}

.content_data p {
  margin-bottom: 1rem;
}

.content_data p img {
  margin-right: 13px;
}

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

.content_data strong {
  font-weight: bold;
}

.content_data em {
  font-style: italic;
}

.content_data u {
  text-decoration: underline;
}

.content_data del {
  text-decoration: line-through;
}

.content_data blockquote {
  max-width: 800px;
  padding: 4px 0 4px 32px;
  position: relative;
}

.content_data blockquote:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--bg-gray);
  display: block;
}

.content_data hr {
  height: 0px;
  margin: 80px 0;
  border: none;
  border-top: 1px solid var(--text-gray);
}

.content_data ul {
  margin: 0 0 40px 0;
  padding-left: 0;
}

.content_data ul li {
  padding: 0 ;
  position: relative;
  margin-bottom: 0.5rem;
}

.article-list {
  position: relative;
  display: flex;
  column-gap: 2px;
  width: 100%;
  font-size: var(--text-size);
  font-weight: 500;
  color: var(--text-color);
}

.article-list::before {
  --list-mark-size: 6px;
  content: "";
  display: block;
  flex: var(--list-mark-size) 0 0;
  margin: calc(var(--list-mark-size) * 1.6) 2px 0;
  height: var(--list-mark-size);
  width: var(--list-mark-size);
  background-color: var(--primary);
  border-radius: 6px;
}

.content_data .snslist {
  margin-top: 1em;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  padding-left: 0;
}

.content_data .snslist li {
  margin-bottom: 0;
  font-size: 1.5rem;
}

.content_data .snslist li:first-child {
  padding-left: 0;
}

.content_data .snslist li:before {
  display: none;
}

.content_data ol {
  max-width: 800px;
  margin: 0 0 40px 0;
  counter-reset: number;
  list-style-type: none !important;
}

.content_data ol li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 0.5rem;
}

.content_data ol li:before {
  counter-increment: number;
  content: counter(number);
  width: 20px;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  text-align: center;
  color: var(--text-gray);
}

.content_data dl {
  margin: 0 0 40px 0;
}

.content_data dl dt {
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.content_data dl dd {
  margin: 0 0 20px 0;
}

.content_data table {
  display: table;
  max-width: 100%;
  border: 1px solid var(--border-color);
  margin: 0 auto 0.5rem;
  width: 100%;
  background: var(--bg-color);
}

.content_data table img{
  max-width: 100%;
}

.content_data table th,
.content_data table td {
  color: var(--text-color);
  vertical-align: middle;
  width: calc((100% - 0rem) / 7);
  position: relative;
}

.content_data table p{
  margin: 0 auto;
}

.content_data table th {
  background-color: var(--bg-gray);
  vertical-align: middle;
}

.content_data table.cell-fixed {
  width: 75%;
  table-layout: fixed;
}

.content_data .button {
  display: block;
  width: fit-content;
  min-width: 480px;
  min-height: 60px;
  line-height: 60px;
  margin: auto 1em;
  text-decoration: none;
  padding: 0.5em 1em;
  background-color: var(--btn-bg);
  color: var(--text-white)!important;
  border-radius: var(--button-radius);
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.25s;
}

.content_data .button:hover {
  background-color: var(--btn-bg-hover);
}

.content_data pre {
  max-width: 800px;
  background-color: var(--bg-gray);
  white-space: pre-wrap;
  word-break: break-all;
  padding: 20px;
  margin: 0 0 40px 0;
}

.content_data a.imglink {
  max-width: 400px;
  display: block;
  margin: 0 auto;
  position: relative;
  line-height: 0;
}

.content_data a.imglink div:before {
  width: 100%;
  height: 100%;
  display: block;
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.content_data a.imglink div img {
  width: 100%;
  height: auto;
  z-index: 0;
}

.content_data a.imglink div span {
  width: calc(100% - 80px);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
  position: absolute;
  text-align: center;
  top: 0;
  left: 40px;
  color: var(--text-white);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .content_data h1 {
    font-size: 1.75rem;
    margin-bottom: 40px;
  }

  .content_data h2 {
    font-size: 1.5rem;
    margin-bottom: 32px;
  }

  .content_data h3 {
    font-size: 1.25rem;
    margin-bottom: 24px;
  }

  .content_data h4 {
    font-size: 1.125rem;
    margin-bottom: 20px;
  }

  .content_data h5 {
    font-size: 1.125rem;
    margin-bottom: 16px;
  }

  .content_data * + h1,
  .content_data * + h2,
  .content_data * + h3,
  .content_data * + h4,
  .content_data * + h5,
  .content_data * + .label {
    margin-top: 40px;
  }

  .content_data .label {
    margin-bottom: 32px;
  }

  .content_data blockquote {
    padding: 2px 0 2px 20px;
  }

  .content_data .button {
    width: calc(100% - 24px);
    min-width: auto;
    margin: 40px auto 0;
  }

  .content_data hr {
    margin: 60px 0;
  }

	.content_data img {
		max-width:100%;
	}
}

/* ------------------------------------------
				webpage
 ------------------------------------------ */
.search-box {
	margin-bottom:1em;
}

.search-box input {
	background-color: #fff;
	border: solid 1px var(--bg-blue);
	border-radius: 5px;
	width: auto;
}

.content_data .webpage__medium-area {
  background-color: var(--bg-black);
}

.accordion {
  border: 1px solid var(--bg-blue);
  border-radius: 15px;
  margin-bottom: 2em;
}

.accordion-header {
  padding: 10px;
  background-color: var(--bg-blue);
  cursor: pointer;
  outline: none;
  font-weight: bold;
  border-bottom: 1px solid var(--bg-blue);
  position: relative; 
  list-style: none;
  transition: background-color 0.3s; 
  color: #fff;
  box-shadow: 0px 9px 8px 0px #00000012;
  border-radius: 10px;
}


.accordion-content {
  padding: 15px;
  line-height: 1.5;
  box-shadow: 0px 9px 8px 0px #00000012;
  background: #ffffff;
  border-radius: 15px;
}

.accordion-header::after {
  content: '▼'; /* ここに好きなアイコンを設定できます */
  position: absolute;
  right: 10px; /* ヘッダーから右に10pxの位置 */
  transition: transform 0.3s ease; /* アニメーション効果 */
}

.accordion[open] .accordion-header::after {
  transform: rotate(180deg); /* 矢印を180度回転 */
}

.accordion-header:hover {
  background-color: #2196F3; /* ホバー時の背景色 */
}

.accordion .accordion-header::-webkit-details-marker {
  display: none;
}

#ranking h3 {
  position: relative;
  font-size: 1.5rem;
  margin: 0;
  letter-spacing: 1px;
  -webkit-text-stroke: 6px white;
  paint-order: stroke;
  color: #ff9e00;
  border-bottom: 3px solid #ff9e00;
  margin-bottom: 8px;
  padding-bottom: 6px;
}

#business h3{
  position: relative;
  font-size: 1.5rem;
  margin: 0;
  letter-spacing: 1px;
  -webkit-text-stroke: 6px white;
  paint-order: stroke;
  color: #00D67C;
  border-bottom: 3px solid #00D67C;
  margin-bottom: 8px;
  padding-bottom: 6px;
}

#ranking .title {
  text-align: center;
  text-transform: uppercase;
  margin: 2rem;
  position: relative;
  font-size: 2.8rem;
  position: relative;
  color: white;
  -webkit-text-stroke: 6px #ff9e00;
  font-weight: bold;
  font-weight: bold;
  paint-order: stroke;
}

#business .title {
  text-align: center;
  text-transform: uppercase;
  margin: 2rem;
  position: relative;
  font-size: 2.8rem;
  position: relative;
  color: white;
  -webkit-text-stroke: 6px #00D67C;
  font-weight: bold;
  font-weight: bold;
  paint-order: stroke;
}

@keyframes titleGlow {
  0%, 100% {
    text-shadow: 3px 3px 0 #B8860B, 6px 6px 20px rgba(0,0,0,0.5);
  }

  50% {
    text-shadow: 3px 3px 15px var(--gold), 6px 6px 30px rgba(255,215,0,0.8);
  }
}

#ranking {
  position: relative;
}

.bg-layer {
  position: absolute;
  z-index: 0;
  background-color: #FFFCF7;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.public-bg {
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  z-index: 1;
  opacity: 0.9;
  border: 3.5px solid #fff;
  box-shadow: 0 0 15px 3px rgba(255, 255, 255, 0.8);
}

.public-bg_1 {
  background-image: url(/img/public-bg_5.png);
  z-index: 1;
  top: 130px;
  left: 25px;
  width: 500px;
  height: 500px;
}

.public-bg_2 {
  background-image: url(/img/public-bg_6.png);
  z-index: 1;
  top: 410px;
  right: 60px;
  width: 330px;
  height: 330px;
}

.public-bg_3 {
  background-image: url(/img/public-bg_7.png);
  z-index: 1;
  bottom: 270px;
  left: 60px;
  width: 330px;
  height: 330px;
}

.public-bg_4 {
  background-image: url(/img/public-bg_8.png);
  z-index: 1;
  bottom: 30px;
  right: 0px;
  width: 500px;
  height: 500px;
}

.rank-list, .business-list {
  border-radius: 15px;
  padding: 30px 140px;
  z-index: 2;
  margin-top: 30px;
}

.rank-item {
  padding: 17px;
  margin: 20px 0;
  background: rgb(255 255 255 / 80%);
  border: 4px solid #ff9e00;
  border-radius: 8px;
  position: relative;
  transition: all 0.3s;
  counter-increment: rank;
}

.business-item {
  padding: 17px;
  margin: 20px 0;
  background: rgb(255 255 255 / 80%);
  border: 4px solid #00D67C;
  border-radius: 8px;
  position: relative;
  transition: all 0.3s;
  counter-increment: rank;
}

.rank-title::before,
.rank-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 8px;
  height: 8px;
  background-color: #ff9e00;
  border-radius: 50%;
}

.business-title::before,
.business-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 8px;
  height: 8px;
  background-color: #00D67C;
  border-radius: 50%;
}

.rank-title::before, 
.business-title::before {
  left: -8px;
  top: 39px;
}

.rank-title::after,
.business-title::after {
  right: -8px;
  top: 39px;
}

.content_data .rank-info,
.content_data .business-info {
  margin: 0;
}

.rank-info a,
.business-info a {
  margin: 8px 0;
  color: #3366cc;
  text-decoration: underline 1px;
  text-decoration-color: #3366cc;
  text-underline-offset: 4px;
}

@media (max-width: 767px) {
  .public-bg_1 {
    top: 100px;
    left: 0px;
    width: 350px;
    height: 350px;
  }

  .public-bg_2 {
    top: 490px;
    right: 10px;
    width: 300px;
    height: 300px;
  }

  .public-bg_3 {
    bottom: 520px;
    left: 10px;
    width: 300px;
    height: 300px;
  }

  .public-bg_4 {
    bottom: 100px;
    right: 0px;
    width: 350px;
    height: 350px;
  }

  #ranking .inner-wrap, #business .inner-wrap {
    width: 90%;
    max-width: none;
    padding: 40px 0;
    margin: 0 auto;
  }
  
  #ranking .title, #business .title {
    margin: 0;
    font-size: 2.1em;
  }

  #ranking h3, #business h3 {
    font-size: 1.2rem;
  }

  .rank-list, .business-list {
    padding: 0px;
  }

  .rank-title::before,
  .business-title::before {
    left: -8px;
    top: 60.5px;
  }

  .rank-title::after,
  .business-title::after {
    right: -8px;
    top: 60.5px;
  }

  .short::before,
  .short::after {
    top: 32.5px;
  }

  .rank-item, .business-item {
    padding: 17px;
    margin: 35px 0;
  }

  #business .flex-container {
    display: block;
  }
}

.highlight {
  color: var(--gold);
  font-weight: bold;
}

.content_data a.about-block {
	position: relative;
	display: block;
	margin: 0em auto 2em;
	padding: 1.5em 2em;
	width: 100%; 
	max-width: 1298px;
	min-height: auto;
	background-color: var(--bg-blue);
	border-radius: var(--block-radius);
	box-shadow: var(--main-shadow);
	color: #fff;
	text-decoration:none;
}

.content_data .about-block p {
	color:#fff;
	margin-bottom: 0;
	font-weight: bold;
}

.content_data .about-block p .about-info {
	border-top:2px solid #fff;
	padding-top:0.5em;
}

.content_data .about-block .about-title {
	font-size: 1.75em;
	margin-bottom: 0;
  border-bottom: 2px solid white;
  margin-bottom: 7px;
}

.card-group-col-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5em;
  margin: auto;
  padding: 0em;
  width: 100%;
  max-width: 1298px;
}

.card-group-col-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2em;
  margin: auto;
  width: 100%;
  max-width: 1298px;
}

.card-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
  padding: 2em;
  border: 0;
  border-top: 4px solid var(--primary);
  z-index: 1;
  border-radius: var(--block-radius);
  background: var(--bg-color);
}

.card-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2em;
  background-color: var(--white100);
}

.card-col img{
	max-width:100%;
}

.card-group-col-2 .card-col h4,
.card-group-col-3 .card-col h4 {
	margin:0;
}

.content_data .card-group-col-2 a,
.content_data .card-group-col-3 a {
	text-decoration:none;
}

@media (max-width: 767px) {
  .card-group-col-2 {
    display: block;
  }

  .card-col {
    margin: 30px auto;
  }
}

/*ページャー*/
.page-pagination {
text-align:center;
margin:1em auto;
}

ul.search-pagination {
  display: inline-block;
  padding: 0;
  margin: 0;
}

ul.search-pagination li {
  display: inline;
}

ul.search-pagination li a {
  color: black;
  float: left;
  padding: 8px 16px;
  text-decoration: none;
}

ul.search-pagination li a.active {
  background-color: var(--bg-Darkblue);
  color: white;
}

ul.search-pagination li a:hover:not(.active) {
  background-color: var(--bg-Mediumblue);
}

.col-sm-3 {
  width: 100%;
}

/*END*/
.map-box {
	display:flex;
	justify-content: space-around;
}

.map-box .main-map {
	width: 40%;
}

.map-box .main-map img {
	max-width: 100%;
}

.map-box .area-box {
	width: 50%;
}

.map-box .area-box img {
	max-width: 100%;
}

.map-box .area-box p {
	margin: 0;
}

/* ------------------------------------------
				entry
 ------------------------------------------ */
.content_data .entrydata__wrap .inner-wrap {
  display: flex;
  padding: 0;
}

.content_data .entrydata__wrap {
  display: flex;
  font-size: 0.75rem;
  margin-bottom: 2em;
}

.content_data .entrydata__date,
.content_data .entrydata__genre {
  margin-bottom: 0;
  margin-right: 40px;
  color: var(--text-gray);
}

.entrydata__genre {
  display: flex;
}

.content_data .entrydata__genre li {
  padding-left: 20px;
  margin-right: 12px;
  margin-left: 0;
  margin-bottom: 0;
}

.content_data .entrydata__genre li:before {
  top: -1px;
  left: 0;
  color: var(--text-gray);
}

 .dateandtime,
 .location {
  display: flex;
  align-items: center;
}

 .dateandtime img,
 .location img {
  width: 20px;
  margin-right: 15px;
}

/* ------------------------------------------
				breadcrumb
------------------------------------------ */
.breadcrumb-block .inner-wrap {
  padding: 20px 0;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
}

.breadcrumb__list li {
  display: flex;
  font-size: 0.75rem;
}

.breadcrumb__list li:after {
  content: ">";
  padding: 0 8px;
}

.breadcrumb__list li:last-child:after {
  display: none;
}

.breadcrumb__list li a {
  text-decoration: none;
  color: var(--text-gray);
}

@media (max-width: 1024px) {
  .breadcrumb-block .inner-wrap {
    padding: 20px;
  }
}

/* ------------------------------------------
                    BTN
------------------------------------------ */
.btn:hover {
	color: var(--text-color);
  border-color: var(--primary);
}

.btn {
  border-color: var(--primary);
  font-size: var(--body-lg-size);
}

.btns-group {
  display: flex;
  justify-content: center;
  gap: 3em;
  width: 100%;
}

.btns-group a {
  text-decoration:none;
}

.btns-group.space-around {
  justify-content: space-around;
}

.btn:hover {
  color: var(--text-color);
  border: 1px solid var(--primary);
}

.btn-primary {
  padding: 0.5em 1em;
  background-color: var(--btn-bg);
  color: var(--text-white)!important;
  border-radius: var(--button-radius);
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.25s;
}

.btn-secondary {
  padding: 0.5em 1em;
  background-color: var(--tertiary);
  color: var(--text-white);
  border-radius: var(--button-radius);
  font-size: var(--text-size);
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.25s;
  border-color: var(--primary);
}

.content_data .btn-primary {
  text-decoration: none; 
}

.btn-tertiary {
  padding: 0.5em 1em;
  background-color: var(--tertiary);
  color: var(--text-white);
  border-radius: 28px;
  font-size: var(--text-size);
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.25s;
}

.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
  color: var(--text-color);
  background-color: var(--btn-bg-hover);
}

.btn-tertiary:hover {
  color: var(--text-color);
  background-color: #6ae2e5;
}
.btn-secondary:hover {
  background-color: var(--btn-bg-hover);
}

.btn-primary:hover {
  background-color: var(--btn-bg-hover);
}

.btn-xlg {
  flex: 1;
  max-width: unset;
  padding: 1.2em 0;
  width: 100%;
  font-size: var(--title-size);
}

.btn-lg {
  max-width: 360px;
  width: 100%;
  font-size: var(--body-lg-size);
}

.btn-md {
  max-width: 240px;
  width: 100%;
  line-height: 18px;
  font-size: var(--text-size);
}

button {
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 0.6em 1.2em;
  font-size: 1em;
  font-weight: 500;
  font-family: Noto Sans JP, sans-serif;
  background-color: unset;
  cursor: pointer;
  transition: border-color 0.25s;
}

button.hidden {
  display: none;
}

.btn-info {
  background: #60A79D;
  border-color: #60A79D;
}

.btn-info:hover {
  background: #74BBB1;
  border-color: #74BBB1;
}

.btn-success {
  background: #60A79D;
  border-color: #60A79D;
}

.btn-success:hover {
  background: #74BBB1;
  border-color: #74BBB1;
}

@media (max-width: 767px) {
  .btns-group{
	  display: block;
  }
	
  .btn-lg {
    max-width: 100%;
    width: 100%;
    margin:0.5em auto;
  }
}

/* ------------------------------------------
					About
------------------------------------------ */
.outer-container.col-1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1em;
  margin: 1em auto;
  max-width: 1298px;
  width: 100%;
}

.outer-container.col-1 ul {
  padding: 0 2em;
}

.outer-container.col-1 .list-title {
  padding: 0 1.5em;
}

.outer-container.col-2 {
  display: grid;
  grid-template-columns: 3fr 10fr;
  gap: 1em;
  margin: 1em auto;
  max-width: 1298px;
  width: 100%;
  height: auto;
}

.outer-container.col-2 > .main {
  display: flex;
  flex-direction: column;
  border-radius: 0;
  overflow-y: auto;
}

.outer-container.col-2 > .main .inner-wrap{
  display: flex;
  flex-direction: column;
  padding: 2em;
  border-radius: 0;
  box-shadow: var(--main-shadow);
}

.outer-container.col-2 > .main .bg-color-light,
.outer-container.col-2 > .main .bg-color-semidark{
	margin-bottom:1.5em;
}

.outer-container.col-2 > .sidebar {
  flex-direction: column;
  padding: 2em 1em;
  border-radius: 0;
  position: sticky;
  top: 0;
  max-height: 300px;
}

.sidebar > ul {
  flex-direction: column;
  gap: 1em;
}

.sidebar a {
  text-decoration:none;
  font-size: 1.5em;
  font-weight: bold;
  text-align: center;
  color: #4a4a4a;
  text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.5);
}

.sidebar > ul > li .list-description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 1.5em;
  line-height: 1.5em;
  font-size: var(--text-size);
  font-weight: 400;
  color: var(--text-color);
}

.sidebar-content {
  width: 100%;
  aspect-ratio: 5/3;
  background-color: var(--dark80);
}

.sidebar-content > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar .info-group {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5em;
}

.col-2 ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.page-detail .main {
  display: flex;
  flex-direction: column;
  border-radius: 0;
  overflow-y: auto;
}

.page-detail .main .inner-wrap{
  display: flex;
  flex-direction: column;
  border-radius: 0;
}

.page-detail .page-navi {
  border-radius: 0;
  position: sticky;
  top: 125px;
  z-index: 2;

}

.page-detail .page-navi > ul {
	margin: 0;
  padding: 1em;
	list-style-type: none;
  display: flex;
  justify-content: space-around;
  background: aliceblue;
}

.page-detail .page-navi > ul  li {
	margin: 0;;
}

.page-detail .page-navi a {
  text-decoration:none;
  font-size: 1.25em;
  font-weight: bold;
  color: #4a4a4a;
}

.page-detail .page-navi > ul > li .list-description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 1.5em;
  line-height: 1.5em;
  font-size: var(--text-size);
  font-weight: 400;
  color: var(--text-color);
}

/* ------------------------------------------
					block
------------------------------------------ */
.content_data .block-news {
  width: 100%;
  max-width: 100%;
  flex-wrap: wrap;
  margin-bottom: 80px;
  background: var(--bg-blue);
  padding: 3em;
  border-radius: 30px;
}

.content_data .block-news li {
  padding: 0;
}

.content_data .block-news li:before {
  content: none;
}

.content_data .block-news p {
  margin: 0;
}

.content_data .block-news .mt-be-column {
  padding: 0em 2em;
  background: #fff;
  margin: 0;
}

.content_data .block-news .block-newsItem {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: #c8c8c8 1px solid;
  padding: 2em 1em;
  text-decoration: none;
}

.content_data .block-news .block-news__dateWrap {
  font-size: 1em;
  color: #666666;
  width: 15%;
}

.content_data .block-news .block-news__category {
  margin-left: 12px;
}

.content_data .block-news .block-news__date{
	color: var(--bg-blue);
	font-weight: bold;
}

.content_data .block-news h2 {
  display: none;
  font-size: 3em;
  font-weight: bold;
  padding: 0;
  margin: 0 0 1rem 0;
  -webkit-text-stroke: 0;
  text-align: center;
  color: #FFFFFF;
  text-shadow: 0 2px 0 #0048e7, 0 4px 4px rgba(0,0,0,0.25), 0 8px 16px rgba(0,0,0,0.15);
}

.content_data .block-news .block-newsItem .news-p {
  width: 50%;
  font-weight: bold;
  margin-right: 15px;
}

.content_data .block-news .block-newsItem figure {
  width: 40%;
}

.content_data .block-news .block-newsItem figure img {
  width:100%;
  border-radius: 30px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.content_data .block-news__allWrap {
  text-align: center;
  margin: 60px auto 0;
}

.content_data .block-news__all {
  font-size: 1.25rem;
  font-weight: bold;
  text-decoration: none;
  position: relative;
}

.content_data .block-news__all:before {
  content: "";
  width: 2px;
  height: 10px;
  display: block;
  background-color: var(--text-color);
  position: absolute;
  bottom: 8px;
  right: -16px;
  transform: rotate(-45deg);
}

.content_data .block-news__all:after {
  content: "";
  width: 2px;
  height: 10px;
  display: block;
  background-color: var(--text-color);
  position: absolute;
  top: 8px;
  right: -16px;
  transform: rotate(45deg);
}

.content_data .news__snslist {
  margin-bottom: 0;
  display: flex;
  justify-content: center;
}

.content_data .news__snslist li {
  margin-bottom: 0;
  font-size: 1.5rem;
}

.content_data .news__snslist li:first-child {
  padding-left: 0;
}

.content_data .news__snslist li:before {
  display: none;
}

@media (max-width: 1024px) {
  .content_data .block-news {
    display: block;
    padding: 0;
    background-color: white;
  }

  .content_data .block-news .mt-be-column {
    height: auto;
    width: 100%;
    padding: 2em 2em 0;
  }

  .content_data .block-news .block-newsItem {
    padding: 0;
  }

  .content_data .block-news .mt-be-column:last-child {
    margin-bottom: 0;
  }

  .content_data .block-news__button {
    position: relative;
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .content_data .block-news .block-newsItem{
	  display: block;
  }

  .content_data .block-news .block-news__dateWrap,
  .content_data .block-news .block-newsItem .news-p,
  .content_data .block-news .block-newsItem figure {
    width: 90%;
    margin: auto;
    margin-bottom:1em;
  }

  .content_data .block-news .block-newsItem figure {
    margin-bottom: 2em;
  }
}

/* ------------------------------------------
					event
------------------------------------------ */
.event-report-bg {
  padding-top: 30px;
  margin-top: -5px;
}

.event-report .block-title {
  margin: -29px 0 0 2em;
}

.event-report {
  padding-bottom: 70px;
}

.event-report .inner-wrap {
  padding: 0;
  max-width: 90%;
}

.content_data .block-event li {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 1em;
  margin: 0em auto 2em;
  padding: 2em;
  width: 100%;
  max-width: 1298px;
  min-height: 300px;
  background-color: var(--white100);
  border-radius: var(--block-radius);
  box-shadow: var(--main-shadow);
}

.content_data .block-event li:before {
  content: none;
}

.content_data .block-event p {
  margin: 0;
  text-decoration: none;
}

.content_data .block-event .block-event-date {
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.5;
	margin-bottom: 0;
	text-align: right;
	color: var(--text-white);
	font-weight: bold;
	text-shadow: 4px 1px 10px var(--bg-blue);
	padding: 0 1em;
	background: var(--bg-PaleBlue);
	width: fit-content;
}

.content_data .block-news .mt-be-column {
  padding: 0em 2em;
  background: #fff;
  margin: 0;
}

.content_data .block-event .block-eventItem {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
}

.content_data .block-event .block-event__dateWrap {
  font-size: 0.75em;
  color: #666666;
  width: 10%;
}

.content_data .block-event .block-event__category {
  margin-left: 12px;
}

.content_data .block-event h2 {
  font-size: 1.25rem;
  font-weight: bold;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.content_data .block-event .block-eventItem figure {
  width: 35%;
  max-width: 425px;
  border: 1px solid var(--bg-blue);
  border-radius: var(--block-radius);
  padding: 1em;
  margin: 0;
}

.content_data .block-event .block-eventItem figure img {
  width:100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

.content_data .block-event-info {
  width: 60%;
  padding: 0 2em 2em;
}

.event-img img {
	width:100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

.content_data .block-event-allWrap {
  text-align: center;
  margin: 60px auto 0;
}

.content_data .block-event-all {
  font-size: 1.25rem;
  font-weight: bold;
  text-decoration: none;
  position: relative;
}

.content_data .block-event-all:before {
  content: "";
  width: 2px;
  height: 10px;
  display: block;
  background-color: var(--text-color);
  position: absolute;
  bottom: 8px;
  right: -16px;
  transform: rotate(-45deg);
}

.content_data .block-event-all:after {
  content: "";
  width: 2px;
  height: 10px;
  display: block;
  background-color: var(--text-color);
  position: absolute;
  top: 8px;
  right: -16px;
  transform: rotate(45deg);
}

@media (max-width: 1024px) {
  .content_data .block-event {
    display: block;
  }

  .content_data .block-event .mt-be-column {
    margin-right: 0;
    height: auto;
    width: 100%;
  }

  .content_data .block-event .mt-be-column:last-child {
    margin-bottom: 0;
  }

  .content_data .block-event__button {
    position: relative;
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .event-report {
    margin-top: 24px;
  }

  .event-report .block-title {
    margin: -29px 0 1em 1em;
  }

  .event-report .inner-wrap {
    width: 90%;
  }

  .event-report .splide__arrow--prev {
    left: 0;
  }

  .event-report .splide__arrow--next {
    right: 0;
  }

  .content_data .block-event .block-eventItem {
	  display: block;
  }

  .content_data .block-event .block-event-dateWrap,
  .content_data .block-event .block-eventItem .news-p,
  .content_data .block-event .block-eventItem figure {
    width: 90%;
    margin: auto;
    margin-bottom:1em;
  }

  .event-title {
    margin-top: -24px;
  }

  .content_data .block-event-info {
	  width: 100%;
	  padding: 0;
  }

  .content_data .block-event .block-event-date {
  	font-size: 1em;
	  font-weight: bold;
	  width: fit-content;
  }
	
  .content_data .block-event li {
	  padding: 2em 1em;
  }
}

/* ------------------------------------------
				gallery
------------------------------------------ */
.gallery {
  padding: 110px 0 50px 0;
  position: relative;
  margin-top: -55px;
  background-image: url(../img/gallery-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.gallery .block-title {
  margin: -31px 0 1em 2em;
}

.gallery-link_01 {
  margin-left: 7rem;
}

.gallery-link_01 a {
  text-align: center;
  cursor: pointer;
}

.gallery-link_01 a img {
  width: 30%;
  padding-bottom: 20px;
}

.gallery-link_02 {
  margin-left: 17%;
  display: flex;
  justify-content: flex-end;
}

.gallery-link_02 a {
  text-align: center;
  cursor: pointer;
  justify-content: flex-end;
  display: flex;
  margin-right: 6.3rem;
}

.gallery-link_02 a img {
  width: 40%;
  padding-top: 10px;
}

.gallery-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5em 3em;
  margin: auto;
  width: 100%;
  max-width: 1173px;
}

.gallery-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.gallery-img figure {
  max-width: 425px;
  margin-bottom: 0.5em;
  padding: 0.5em;
}

.gallery-img figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  height: 100%;
}

.content_data .inner-wrap .attention-box {
    border: 1px solid black;
    display: inline-block;
    padding: 20px;
}

#tokyo-photo-gallery .medium-area h2 {
  display: block;
}

#tokyo-photo-gallery .medium-area .h2_sp {
  display: none;
  font-size: 2.1em;
  margin: 0;
}

@media (max-width: 1024px) {
  .gallery {
    margin-top: -34px;
  }

  .gallery-link_01 a img {
    width: 40%;
  }

  .gallery-link_02 a img {
    width: 50%;
  }

  .gallery-list {
    gap: 0.5em 1em;
    width: 80%;
  }
}

@media (max-width: 767px) {
  .gallery {
    padding-bottom: 40px;
    margin-top: -55px;
  }

  .gallery .block-title {
    margin: -53px 0 1em 1em;
  }

  .gallery-link_01 {
    margin: 0;
  }

  .gallery-link_01 a img {
    width: 70%;
    margin-left: 20px;
  }

  .gallery-link_02 {
    margin: 0;
  }

  .gallery-link_02 a {
    margin: 0;
  }

  .gallery-link_02 a img {
    width: 70%;
    margin-right: 20px;
  }

  .gallery-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1em;
    margin: auto;
    width: 90%;
    max-width: 1298px;
  }

  #tokyo-photo-gallery .medium-area .inner-wrap {
    width: 100%;
    padding: 60px 0px;
  }

  #tokyo-photo-gallery .medium-area h2 {
    display: none;
  }

  #tokyo-photo-gallery .medium-area .h2_sp {
    display: block;
  }
}

/* ------------------------------------------
				big-area
------------------------------------------ */
.main-splide, .main-splide .splide__track--draggable {
  width: 100%;
  height: 36rem;
}

.weather-flex {
  display: flex;
  z-index: 10;
  margin: -491px 0 0 25px;
}

#weather {
  color:var(--bg-black);
  font-family: Noto Sans JP, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  -webkit-text-stroke: 3px white;
  paint-order: stroke;
  font-size: 15px;
}

#location {
	text-align:left;
}

#weather .weatherForecast {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: center;
}

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

#weather .weatherImg {
  height: 56%;
  position: relative;
  background: rgba(231, 240, 248, 0.9);
  padding: 5px;
  border-radius: 17%;
}

#weather .tempMin {
  color: blue;
}

#weather .tempMax {
  color: red;
}

.text-start {
  margin-top: 1.9rem !important;
}

.content_data .big-area {
  max-width: 100%;
  height: 36rem;
  display: flex;
  align-items: flex-start;
  text-align: center;
  background-size: cover;
  background-position: center top;
  position: relative;
  flex-direction: column;
  flex: 2;
}

.content_data .big-area img {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  z-index: 0;
  object-fit: cover;
}

.content_data .big-area .inner-wrap {
  max-width: 100%;
  padding: 80px 28px;
  margin: 0 auto;
}

.content_data .big-area h1 {
  font-size: 3.85rem;
  line-height: 1.5;
  letter-spacing: 3.72px;
  margin-bottom: 40px;
}
.content_data .big-area h2 {
  font-size: 6rem;
  position: relative;
  margin-bottom: 0;
  margin-left: 0.5em;
  text-align: left;
  color: var(--text-white);
  font-weight: bold;
  background: url(/img/title-decore.png) no-repeat;
  background-position: bottom;
  background-size: 100%;
  line-height: 0.75;
  margin-top: 2em;
}

.content_data .big-area h3 {
  font-size: 2.5rem;
  margin-left: 1.5em;
  margin-top: 0;
  text-align: left;
  color: var(--text-white);
  text-shadow: 1px 2px 3px var(--bg-blue);
}

.content_data .big-area .button:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

.overray {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
}

.content_data .medium-area {
  max-width: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  text-align: center;
  background-size: cover;
  background-position: center center;
  position: relative;
}

.content_data .medium-area img {
	width: 100%;
  position: absolute;
	left: 0;
  bottom: 0;
  height: 60%;
  z-index: 1;
}

.content_data .medium-area .inner-wrap {
  max-width: 800px;
  padding: 80px 28px;
  margin: 0 auto;
}

.content_data .medium-area h1 {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 1.8px;
  margin-bottom: 32px;
}

.content_data .medium-area .button {
  margin-top: 60px;
}

.content_data .medium-area .button:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

.content_data .subnavi-area {
  width: calc(100% - 160px);
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--text-color);
  padding: 0 80px 28px;
  margin: 0 0 60px 0;
}

.content_data .subnavi-area li {
  display: block;
  padding-left: 0;
  margin-bottom: 0;
  line-height: 1.5;
}

.content_data .subnavi-area li:before {
  display: none;
}

.content_data .subnavi-area li a {
  color: var(--text-color);
  text-decoration: none;
  position: relative;
  padding-bottom: 20px;
  font-weight: 600;
}

.content_data .subnavi-area li a:after {
  content: "";
  display: block;
  width: 2px;
  height: 12px;
  background-color: #cccccc;
  position: absolute;
  left: calc(50% + 4px);
  bottom: 0;
  transform: rotate(45deg);
}

.content_data .subnavi-area li a:before {
  content: "";
  display: block;
  width: 2px;
  height: 12px;
  background-color: #cccccc;
  position: absolute;
  left: calc(50% - 4px);
  bottom: 0;
  transform: rotate(-45deg);
}

.content_data .subnavi-area li a:before {
  content: "";
  display: block;
  width: 2px;
  height: 12px;
  background-color: var(--text-gray);
  position: absolute;
  left: calc(50% - 4px);
  bottom: 0;
  transform: rotate(-45deg);
}

@media (max-width: 1024px) {
  .weather-flex {
    margin: -572px 0 0 25px;
  }

  #weather {
    margin-top : 60px;
  }

  #weather .weatherForecast {
    height: 105px;
  }

  .content_data .big-area {
    width: 100%;
    min-height: 420px;
  }

  .content_data .big-area h1 {
    font-size: 3rem;
    letter-spacing: 2px;
  }

  .content_data .medium-area {
    min-height: 160px;
  }
}

@media (max-width: 767px) {
  .weather-flex {
    display: none;
  }

  .top-column-2 {
    display: block;
    padding-bottom: 20px;
  }

  .content_data .big-area {
    height: 23rem;
    min-height: 0;
  }

  .main-splide, .main-splide .splide__track--draggable {
    height: 23rem;
  }

  .content_data .medium-area .inner-wrap {
    padding: 60px 0;
    width: 100%;
  }
}

/* ------------------------------------------
				calendar
------------------------------------------ */
.event-calendar {
  padding-bottom: 120px;
  position: relative;
}

.event-calendar .block-title {
  margin: 0 0 0 2em;
}

.widget-calendar {
  position: relative;
  width: 90%;
  margin: 0 auto;
  z-index: 2;
}

.widget-calendar .widget-header {
  margin-bottom: 0;
  display: flex;
  color: rgb(69, 74, 95);
  font-family: Noto Sans JP, sans-serif;
  font-weight: bold;
  -webkit-text-stroke: 4px white;
  paint-order: stroke;
}

.widget-calendar .widget-header span {
	line-height: 1;
}

.widget-calendar .selected-year {
  font-size: 50px;
  margin: auto 50px 25px 0;
}

.widget-calendar .selected-month {
  font-size: 50px;
}

.content_data .widget-calendar table {
  padding-bottom: 2em;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 10px;
  border: none;
  background-color: white;
  width: 100%;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  border-top: solid 10px rgb(69, 74, 95);
}

.content_data .widget-calendar table th {
  background: none;
  background-color: transparent;
  font-size: 20px;
  font-weight: bold;
  padding: 0;
  text-align: center;
  border: none;
}

.widget-calendar table th:nth-child(1) {
  color: #da886f;
}

/* 月曜日（2番目）*/
.widget-calendar table th:nth-child(2) {
  color: rgb(69, 74, 95);
}

/* 火曜日（3番目） */
.widget-calendar table th:nth-child(3) {
  color: rgb(69, 74, 95);
}

/* 水曜日（4番目） */
.widget-calendar table th:nth-child(4) {
  color: rgb(69, 74, 95);
}

/* 木曜日（5番目) */
.widget-calendar table th:nth-child(5) {
  color: rgb(69, 74, 95);
}

/* 金曜日（6番目） */
.widget-calendar table th:nth-child(6) {
  color: rgb(69, 74, 95);
}

/* 土曜日（7番目）*/
.widget-calendar table th:nth-child(7) {
  color: #82a6c5; 
}

.widget-calendar table td .day-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  font-size: 30px;
  font-weight: bold;
  color: white;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
  border: 3px solid white;
  margin: 0 auto;
}

.weekday-1 .day-inner { background-color: #cfa89b; }
.weekday-7 .day-inner{ background-color: #93adc4; }
.weekday-2 .day-inner, .weekday-3 .day-inner, .weekday-4 .day-inner, .weekday-5 .day-inner, .weekday-6 .day-inner {
  background-color: rgb(142, 147, 165);
}

.calendar-box {
  flex-direction: row;
  justify-content: center;
  padding: 2em 1em;
  display: flex;
  width: 100%;
  z-index: 1;
}

.calendar-box .calendar-left {
  width: 100%;
  flex: 1;
}

.calendar-box .calendar-right {
  width: 50%;
  flex: 1;
}

.calendar-header {
  display: flex;
  background: gainsboro;
  padding: 25px 25px 10px 25px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  border: solid white;
  align-items: flex-end;
}

.calendar-header button {
  padding: 0.6em 1.8em;
  color: rgb(69, 74, 95);
  /* text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2); */
}

.calendar-box-closed {
  display:none;
}

.month-list {
  height: 100%;
}

#calendar-list-box {
  width: auto;
  display: flex;
  justify-content: center;
  height: 100%;
}

#calendar-list-box ul,
.calendar-event ul {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding: 0 1em 0 1em;
}

.calendar-event {
	width:auto;
	display: flex;
	justify-content: center;
	padding-bottom: 2em;
}

#calendar-event-day li,
#calendar-event-list li {
  background: rgba(253, 216, 53, 0.5);
  color: var(--text-white);
  padding: 0.5em 1em;
  border-radius: var(--block-radius);
  border: solid white 2px;
  height: calc(100% / 4);
}

#calendar-event-day li a,
#calendar-event-list li a {
  text-decoration: none;
  color: #212529;
  -webkit-text-stroke: 4px white;
  paint-order: stroke;
  font-size: 18px;
  font-weight: 500;
}

.btn-calendar {
	display: flex;
	justify-content: flex-end;
	max-width: 85%;
}

.calendar-day.event-day .day-inner {
  background-color: #fdd835 !important;
  font-weight: bold;
}

.event-calendar-bg {
  margin-top: -26px;
  z-index: 0;
  position: absolute;
  right: 0;
  display: block;
  width: 60%;
}

@media (max-width: 1024px) {
  .event-calendar {
    padding-top: 36px;
  }

  .event-calendar .block-title {
    margin: -50px 0 1em 1em;
  }

  .widget-calendar .selected-year {
    font-size: 2em;
    margin: auto 5px 8px 0;
  }

  .widget-calendar .selected-month {
    font-size: 3em;
  }

  .calendar-box {
    padding: 0 1em 2em;
  }

  .widget-calendar table {
    padding-bottom: 30px;
    border-collapse: separate;
    border-spacing: 20px 10px;
  }

  .content_data .widget-calendar table th {
    font-size: 20px;
    width: 38px;
  }

  .widget-calendar table td {
    padding: 9px 10px;
    font-size: 10px;
    font-weight: normal;
  }

  .widget-calendar table td .day-inner {
    width: 75%;
  }

	.content_data .big-area h2 {
		font-size: 5em;
		text-align: center;
		width: 100%;
		margin: auto;
		background-size: 80%;
	}

	.widget-calendar {
		max-width:80%;
	}

	.calendar-box {
		display:block;
	}

  .event-calendar-bg {
    display: none;
  }

	.calendar-box .calendar-left, .calendar-box .calendar-right {
		width:100%;
    margin-top: 25px;
	}

	#calendar-list-box ul, .calendar-event ul {
		height: 100%;
	}
}

@media (max-width: 767px) {
  .event-calendar {
    margin-top: -5px;
    padding-top: 0;
  }

  .widget-calendar {
		max-width:100%; 
	}

  .calendar-header {
    display: block;
  }

	.content_data .big-area h2 {
		font-size: 3em;
	}

	.content_data .big-area h3 {
		font-size:1.5em
	}

  .widget-calendar .selected-year {
    font-size: 14px;
    margin: auto 5px 8px 0;
  }

  .widget-calendar .selected-month {
    font-size: 30px;
  }

  .widget-calendar table {
    padding-bottom: 20px;
    border-spacing: 5px;
  }

  .content_data .widget-calendar table th {
    font-size: 12px;
    width: 38px;
  }

  .widget-calendar table td {
    padding: 0;
    font-weight: normal;
  }

  .widget-calendar table td .day-inner {
    font-size: 17px;
    width: 100%;
  }
}

/* ------------------------------------------
				 title style
------------------------------------------ */
.content_data .h1-shoulder {
  text-align: center;
  margin-bottom: 60px;
}

.content_data .h1-shoulder .h1-shoulder__title {
  margin-bottom: -4px;
}

.content_data .h1-shoulder .h1-shoulder__title:before {
  display: none !important;
}

.content_data .h1-shoulder .h1-shoulder__caption {
  margin-bottom: 0px;
}

.content_data .medium-area h2,
.content_data .news__medium-area h2 {
  font-size: 3em;
  margin-bottom: 0;
  font-weight: bold;
z-index: 1;
}

h2.page-title {
	color: var(--bg-blue);
  text-shadow: 1px 2px 3px #c8c8c8;
}

.page-detail h3,
.page-detail h4,
.page-detail h5,
.page-detail h6 {
  position: relative;
	display: flex;
	column-gap: 2px;
	width: 100%;
	color: var(--title-color);
	align-items: center;
	margin-bottom: 0.5em;
	margin-top: 1em;
}

.page-detail h3::before,
.page-detail h4::before,
.page-detail h5::before,
.page-detail h6::before {
  --title-mark-height: 10px;
  content: "";
  display: block;
  flex: 4px 0 0;
  margin: 0px 4px;
  height: var(--title-mark-height);
  background-color: var(--primary);
  border-radius: 6px;
}

.page-detail h3::before {
  --title-mark-height: 20px;
}

.page-detail h4::before {
  --title-mark-height: 20px;
}

.page-detail h5::before {
  --title-mark-height: 10px;
}

.page-detail h6::before {
  --title-mark-height: 10px;
}

.block-title {
  display: flex;
  align-items: center;
  gap: 1em;
  margin: -29px 0 1em 2em;
  position: relative;
  z-index: 20;
}

.block-title img {
  width: 55px;
}

.block-title h2 {
  margin: 0;
  font-size: 2.3em;
}

@media (max-width: 767px) {
  .block-title {
    margin: -29px 0 1em 1em;
    gap: 0.8em;
  }

  .block-title img {
    width: 35px;
  }

	.block-title h2 {
    font-size: 1.8em;
  }

  .content_data .medium-area h2,
  .content_data .news__medium-area h2 {
    font-size: 2.3em;
  }
}

/* ------------------------------------------
				border
------------------------------------------ */
.border {
	display: flex;
	justify-content: space-between;
	padding: 1em 2em;
	margin-bottom: 2em;
	border-radius: var(--block-radius);
	align-items: center;
}

.border .bd-right img {
	max-width: 150px;
}

.border .bd-left {
	width: 90%;
}

.bd-grn {
  border: 2px solid green!important;
}

.bd-nv {
  border: 2px solid var(--bg-Darkblue)!important;
}

.bd-red {
  border: 2px solid red!important;
}

.bd-bl {
  border: 2px solid var(--bg-SkyBlue)!important;
}

.bd-yl {
  border: 2px solid yellow!important;
}

@media (max-width: 767px) {
	.border {
		display: block;
		padding: 1em;
	}

	.border .bd-right {
	  text-align: center;
	}

	.border .bd-left {
	  width: 100%;
	}
}

/* ------------------------------------------
				background-color
------------------------------------------ */
/* dark */
.bg-color-dark {
  color: var(--text-white);
  background-size: cover;
  background-position: center center;
}

.bg-color-dark pre {
  background-color: rgba(255, 255, 255, 0.2);
}

.bg-color-dark a {
  color: var(--text-white);
}

.bg-color-dark blockquote:before {
  background-color: var(--bg-black);
}

.bg-color-dark ol li:before {
  color: var(--text-white);
}

.bg-color-dark table {
  border: 1px solid var(--text-white);
}

.bg-color-dark hr {
  border-top: 1px solid var(--text-white);
}

.bg-color-dark a.imglink div:before {
  width: 100%;
  height: 100%;
  display: block;
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.bg-color-dark .button {
  outline: solid 2px var(--text-white);
  color: var(--text-white);
}

.bg-color-dark .button:hover {
  color: var(--text-color);
}

.bg-color-dark + .bg-color-dark > .inner-wrap {
  padding-top: 0;
}

/* column-dark */
.mt-be-column .bg-color-dark {
  color: var(--text-white);
}

.mt-be-column .bg-color-dark pre {
  background-color: rgba(255, 255, 255, 0.2);
}

.mt-be-column .bg-color-dark a {
  color: var(--text-white);
}

.mt-be-column .bg-color-dark blockquote:before {
  background-color: var(--bg-black);
}

.mt-be-column .bg-color-dark ol li:before {
  color: var(--text-white);
}

.mt-be-column .bg-color-dark table {
  border: 1px solid var(--text-white);
}

.mt-be-column .bg-color-dark hr {
  border-top: 1px solid var(--text-white);
}

.mt-be-column .bg-color-dark a.imglink div:before {
  width: 100%;
  height: 100%;
  display: block;
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.mt-be-column .bg-color-dark .button {
  outline: solid 2px var(--text-white);
  color: var(--text-white);
}

.mt-be-column .bg-color-dark .button:hover {
  color: var(--text-color);
}

/* light */
.bg-color-light {
  color: var(--text-color);
  background-size: cover;
  background-position: center center;
}

.bg-color-light pre {
  background-color: rgba(255, 255, 255, 0.2);
}

.bg-color-light a {
  color: var(--deepBlue);
}

.bg-color-light blockquote:before {
  background-color: var(--bg-gray);
}

.bg-color-light ol li:before {
  color: var(--text-color);
}

.bg-color-light hr {
  border-top: 1px solid var(--text-color);
}

.bg-color-light a.imglink div:before {
  width: 100%;
  height: 100%;
  display: block;
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.mt-be-column .bg-color-light {
  color: var(--text-color);
}

.mt-be-column .bg-color-light {
  color: var(--text-color);
  background-size: cover;
  background-position: center center;
}

.mt-be-column .bg-color-light pre {
  background-color: rgba(255, 255, 255, 0.2);
}

.mt-be-column .bg-color-light a {
  color: var(--text-color);
}

.mt-be-column .bg-color-light blockquote:before {
  background-color: var(--bg-gray);
}

.mt-be-column .bg-color-light ol li:before {
  color: var(--text-color);
}

.mt-be-column .bg-color-light hr {
  border-top: 1px solid var(--text-color);
}

.mt-be-column .bg-color-light a.imglink div:before {
  width: 100%;
  height: 100%;
  display: block;
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.bg-color-light + .bg-color-light > .inner-wrap {
  padding-top: 0px;
}

/* bg-light + bg-img */
.bg-color-light + .bg-color-light.bg-img > .inner-wrap,
.bg-color-light.bg-img + .bg-color-light > .inner-wrap {
  padding-top: 80px;
}

.section-bgcolor a {
  color: var(--text-white);
}

.section-bgcolor hr {
  border-top: 1px solid var(--text-white);
}

.section-bgcolor pre {
  background-color: rgba(255, 255, 255, 0.2);
}

.section-bgcolor ol li:before {
  color: var(--text-white);
}

.section-bgcolor .block-news .block-news__dateWrap {
  color: var(--text-white);
}

/* line-bgimg */
.section-bgimg {
  width: 100%;
  height: 240px;
  background-size: cover;
  background-position: center center;
  display: block;
}

.bg-gradation {
  background: var(--bg-gradation);
  color: #FFFFFF;
}

.bg-color_1 {
  background-color: #F3F7F8;
}

.bg-color_2 {
  background-color: #DCEAF7;
}

.bg-darkblue {
  background-color: #0D47A1;
  color: #FFFFFF;
}

.bg-indigo-blue {
  background-color: #303F9F;
  color: #FFFFFF;
}

.bg-blue {
  background-color: #1565C0;
  color: #FFFFFF;
}

.bg-mediumblue {
  background-color: #42A5F5;
  color: #FFFFFF;
}

.bg-steelblue {
  background-color: #4A90E2;
  color: #FFFFFF;
}

.bg-deepskyblue {
  background-color: #03A9F4;
  color: #FFFFFF;
}

.bg-cornflowerblue {
  background-color: #64B5F6;
  color: #FFFFFF;
}

.bg-skyblue {
  background-color: #90CAF9;
  color: #1E1E1E; /* 深色文字 */
}

.bg-gallery {
  background-color: #f0f2f2;
}

.bg-paleblue {
  background-color: #E3F2FD;
  color: #1E1E1E;
}

.bg-waterblue {
  background-color: #DBFAFF;
  color: #1E1E1E;
}

.bg-iceblue {
  background-color: #E0F7FA;
  color: #1E1E1E;
}

@media (max-width: 767px){
  .bg-color_2 {
    margin-top: -5px;
    padding-top: 75px;
  }

  .bg-gallery {
    margin-top: 40px;
  }
}

/* ------------------------------------------
				collumn
------------------------------------------ */
/* collumn */
.content_data .mt-be-columns {
  width: 100%;
  display: flex;
  margin-bottom: 1em;
}

.content_data .mt-be-columns .mt-be-column {
  flex: 1;
  margin-right: 40px;
}

.content_data .mt-be-columns .mt-be-column:last-child {
  margin-right: 0px;
}

.content_data .collumn-2 > .mt-be-column > *:last-child,
.content_data .collumn-3 > .mt-be-column > *:last-child {
  margin-bottom: 0;
}

.mt-be-columns .mt-be-column .button {
  min-width: auto;
  width: calc(100% - 24px);
}

.content_data .mt-be-columns img {
  max-width: 100%;
}

.mt-be-columns .mt-be-column iframe {
    width: 100%;
}

@media (max-width: 1024px) {
  .content_data .mt-be-columns .mt-be-column {
    margin-bottom: 40px;
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  iframe {
    width: 100%;
    height: 100%;
  }
}

/* collumn-2, 3, 4 */
.content_data .collumn-2 .col,
.content_data .collumn-3 .col {
  width: 100%;
  margin-right: 80px;
}

.content_data .collumn-2 .col:last-child,
.content_data .collumn-3 .col:last-child {
  margin-right: 0;
}

.content_data .collumn-2 h1,
.content_data .collumn-3 h1 {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 100;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.content_data .collumn-2 .h1-shoulder > h1,
.content_data .collumn-3 .h1-shoulder > h1 {
  margin-bottom: -4px;
}

.content_data .collumn-2 .label h1,
.content_data .collumn-2 .label h2,
.content_data .collumn-2 .label h3,
.content_data .collumn-2 .label h4,
.content_data .collumn-2 .label h5,
.content_data .collumn-3 .label h1,
.content_data .collumn-3 .label h2,
.content_data .collumn-3 .label h3,
.content_data .collumn-3 .label h4,
.content_data .collumn-3 .label h5 {
  margin: 0;
}

.collumn-2 img,
.collumn-3 img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.aspect-3-4 img {
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background-color: #eee;
  width: 100%;
}

.content_data .collumn-4 {
  width: 100%;
  display: flex;
  margin-bottom: 80px;
}

.content_data .collumn-4 .col {
  width: 100%;
  margin-right: 40px;
}

.content_data .collumn-4 .col:last-child {
  margin-right: 0;
}

.content_data .collumn-4 h1 {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 100;
  font-size: 2.5rem;
  margin-bottom: 32px;
  text-align: left;
}

.content_data .collumn-4 .label h1,
.content_data .collumn-4 .label h2,
.content_data .collumn-4 .label h3,
.content_data .collumn-4 .label h4,
.content_data .collumn-4 .label h5 {
  margin: 0;
}

.content_data .mt-be-columns > .mt-be-column hr {
  margin: 40px 0;
}

.content_data .mt-be-columns .bg-color-light,
.content_data .mt-be-columns .bg-color-dark {
  padding: 28px;
}

.content_data .mt-be-columns .bg-color-light > .inner-wrap,
.content_data .mt-be-columns .bg-color-dark > .inner-wrap {
  padding: 20px 0;
}

@media (max-width: 1024px) {
  .content_data .collumn-2,
  .content_data .collumn-3,
  .content_data .collumn-4 {
    margin-bottom: 40px;
    flex-direction: column;
  }

  .content_data .collumn-2 .col,
  .content_data .collumn-3 .col,
  .content_data .collumn-4 .col {
    margin: 0 0 28px 0;
  }
  .page-detail .page-navi {
    top: 60px;
  }
}

/*--------------------
				gototop
--------------------*/
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  margin-bottom: 0;
}

#page-top a {
  display: block;
  background-color: var(--bg-black);
  text-decoration: none;
  width: 64px;
  height: 64px;
  padding: 0;
}

#page-top a:before {
  content: "";
  display: block;
  width: 4px;
  height: 24px;
  background-color: var(--bg-color);
  position: absolute;
  bottom: 21px;
  left: 23px;
  transform: rotate(45deg);
}

#page-top a:after {
  content: "";
  display: block;
  width: 4px;
  height: 24px;
  background-color: var(--bg-color);
  position: absolute;
  bottom: 21px;
  right: 23px;
  transform: rotate(-45deg);
}

#page-top a:hover {
  text-decoration: none;
}

@media (max-width: 1024px) {
  #page-top a {
    width: 48px;
    height: 48px;
  }

  #page-top a:after {
    height: 16px;
    bottom: 16px;
    right: 17.5px;
  }

  #page-top a:before {
    height: 16px;
    bottom: 16px;
    left: 17.5px;
  }
}

/* ------------------------------------------
				notfound
------------------------------------------ */
.notfound .medium-area {
  height: 200px;
  display: flex;
  align-items: center;
  text-align: center;
  background-image: none;
  background-color: var(--bg-gray);
  color: var(--text-color);
}

.notfound .inner-wrap {
  max-width: 800px;
}

@media (max-width: 1024px) {
  .notfound .medium-area {
    height: 160px;
  }
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.clearfix:before {
  content: "";
  display: block;
  clear: both;
}

.clearfix {
  display: block;
}