@charset "utf-8";
:root {
	--c-primary: #634a40;
	--c-dark: #444444;
	--c-white: #fefefe;
	--c-light: #fbf7f5;
	--c-secondary: #f8f0e6;
	--c-green: #64b562;
	--c-blue: #60b8c6;
	--c-purple: #80579e;
	--c-orange: #f3803c;
	--c-turq: #39b9a4;
	--c-red: #d95f56;
	--c-text: #222222;
	--c-bg: #fefefe;
	--font-base: "ヒラギノ角ゴシック", "Hiragino Sans","ＭＳ ゴシック",sans-serif;
	--font-mont: "Montserrat", sans-serif;
	--transition-base: all ease 0.33s;
	--transition-img: all ease-in-out 0.4s;
}
/* --- reset --- */
*,
::before,
::after {
	box-sizing: border-box;
	border-width: 0;
	border-style: solid;
}
html {
	font-size: 16px;
	line-height: 1.5;
	tab-size: 4;
	color: var(--c-text);
	font-family: var(--font-base);
	font-feature-settings: normal;
	font-variation-settings: normal;
	letter-spacing: 0.025em;
	font-weight: 500;
	scroll-behavior: smooth;
}

body{
	background: #D1E8F9;
}

body,p {
	margin: 0;
	line-height: inherit;
}

hr {
	height: 0;
	color: inherit;
	border-top-width: 1px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: inherit;
	font-weight: inherit;
}

a {
	color: inherit;
	text-decoration: inherit;
	user-select: none;
}
a:hover{
	opacity: 0.7;
}
li{
	list-style: none;
}
.sp{
	display: none!important;
}

h1{
	margin: 0;
}

h2{
	font-size: 30px;
    border-bottom: 1px solid #CCCCCC;
	margin-bottom: 30px;
	margin-top: 50px;
}
h2 span{
	color: #2779CA;
    font-size: 16px;
    display: inline-block;
    padding-left: 15px;
}
h2::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: #2779CA;
  border-radius: 50%;
  margin-right: 0.5em;
  vertical-align: middle;
}
.whiteWrapper h2:first-child{
	margin-top: 0;
}

h3{
	font-size: 30px;
	font-weight: 600;
	display: flex;
	flex-flow: column;
	text-align: center;
	gap: 20px;
	margin-bottom: 50px;
}
h3 span{
	font-size: 16px;
	color: #2779CA;
	display: inline-block
}

/*　　　　　文字サイズ切り替え　　　　　*/
body.font-small {
  font-size: 14px;
}

body.font-normal {
  font-size: 16px;
}

body.font-large {
  font-size: 20px;
}

select#fontSizeSelect{
	font-size: 16px;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: none;
  padding: 5px 10px;
}

/*　　　　　ハンバーガー　　　　　*/
/* overlay-styles.css */
.hamburger-overlay {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  width: 80px;
  height: 80px;
  border: none;
  cursor: pointer;
	background: #2779CA;
	color: #fff;
	font-size: 14px;
}

.hamburger-overlay__line {
  position: absolute;
  left: 0;
	right: 0;
	margin: 0 auto;
  width: 35px;
  height: 4px;
  background-color: #fff;
  transition: all .6s;
}

.hamburger-overlay__line:nth-of-type(1) { top: 15px; }
.hamburger-overlay__line:nth-of-type(2) { top: 27px; }
.hamburger-overlay__line:nth-of-type(3) { top: 39px; }

.hamburger-overlay.active .hamburger-overlay__line {
  background-color: #fff;
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
  opacity: 0;
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}
.hamburger-overlay p{
	margin-top: 40px;
}
.hamburger-overlay p.on{
	display: none;
}
.hamburger-overlay.active p.on{
	display: block;
}
.hamburger-overlay.active p.off{
	display: none;
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1){
	top: 20px;
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3){
	top: 38px;
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #2779CA;
  visibility: hidden;
  opacity: 0;
  transition: all .6s;
  z-index: 900;
}

.nav-overlay.active {
  visibility: visible;
  opacity: 1;
}

.nav-overlay__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.nav-overlay__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-overlay__item {
  opacity: 0;
  transform: translateY(20px);
  transition: all .6s;
}

.nav-overlay.active .nav-overlay__item {
  opacity: 1;
  transform: translateY(0);
}

.nav-overlay.active .nav-overlay__item:nth-child(1) { transition-delay: 0.1s; }
.nav-overlay.active .nav-overlay__item:nth-child(2) { transition-delay: 0.2s; }
.nav-overlay.active .nav-overlay__item:nth-child(3) { transition-delay: 0.3s; }
.nav-overlay.active .nav-overlay__item:nth-child(4) { transition-delay: 0.4s; }
.nav-overlay.active .nav-overlay__item:nth-child(5) { transition-delay: 0.5s; }
.nav-overlay.active .nav-overlay__item:nth-child(6) { transition-delay: 0.6s; }

.nav-overlay__link {
  display: inline-block;
  padding: 20px;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  transition: color .3s;
}

.nav-overlay__link:hover {
  color: #4a90e2;
}


/*----- header -----*/
#gNavi{
	background: #fff;
	display: flex;
	position: fixed;
	height: 120px;
	width: 100%;
	padding: 0 50px;
	justify-content: space-between;
	gap: 30px;
	z-index: 1000;
}
h1{
	max-width: 400px;
}
#gNavi .headerLogo{
	height: auto;
	object-fit: contain;
	width: 100%;
}
#gNavi .leftBox{
	display: flex;
	width: 43%;
	gap: 30px;
	align-items: center;
}
#gNavi .leftBox p{
	color: #2779CA;
    border: 1px solid #CCCCCC;
    border-radius: 30px;
    padding: 12px 25px;
	width: 60%;
    text-align: center;
}
#gNavi .rightBox{
	text-align: right;
	position: relative;
	top: 0;
	bottom: 0;
	margin: auto 0;
}
#gNavi .flexBox01,#gNavi .flexBox02{
	display: flex;
	justify-content: flex-end;
}
#gNavi .flexBox01{
	margin-bottom: 20px;
}
#gNavi .flexBox01 .font-toggle{
	position: relative;
}
#gNavi .flexBox01 .font-toggle::before{
	content: '';
	display: inline-block;
	background-image: url("../images/icon-text.svg");
	width: 18px;
	height: 18px;
	position: absolute;
	top: 4px;
	left: -24px;;
}
#gNavi .flexBox01 .search{
	margin-left: 20px;
	padding-left: 43px;
	border-left: 1px solid #CCCCCC;
	position: relative;
}
#gNavi .flexBox01 .search::before{
	content: '';
	display: inline-block;
	background-image: url("../images/icon-search.svg");
	width: 18px;
	height: 18px;
	position: absolute;
	top: 4px;
	left: 20px;
}
#gNavi .flexBox02{
	gap: 30px;
	font-weight: 600;
}



/*----- FV -----*/
.main{
	padding-top: 120px;
	background: #D1E8F9;
}

.main .fv{
	padding-top: 50px;
	padding-right: 100px;
	display: flex;
	justify-content: space-between;
	position: relative;
	background-image: url("../images/bg_01.png");
	background-size: 100%;
	background-repeat: no-repeat;
	align-items: flex-start;
}

.main .fv .leftBox{
	width: 83%;
	position: relative;
}
.main .fv .leftBox .slider{
	width: 100%;
}
.main .fv .leftBox .absoluteBox{
	position: absolute;
	bottom: 40px;
    left: 70px;
	z-index: 100;
	width: 52%;
}
.main .fv .leftBox .absoluteBox img{
	max-width: 700px;
	width: 100%;
}
.main .fv .leftBox::before{
	content: '';
	background-image: url("../images/decoration_01.png");
	background-size: 100%;
	display: inline-block;
	width: 200px;
	height: 95px;
	position: absolute;
	z-index: 900;
	top: 18%;
    left: -5%;
}
.main .fv .leftBox::after{
	content: '';
	background-image: url("../images/decoration_02.png");
	background-size: 100%;
	display: inline-block;
	width: 150px;
	height: 72px;
	position: absolute;
	z-index: 900;
	top: 10%;
    right: -4%;
}
.main .fv .rightBox{
	max-width: 220px;
	width: 12%;
}
.main .fv .rightBox img{
	width: 100%;
}
.main .fv .countdown{
	position: absolute;
	background: #fff;
	display: flex;
	right: 0;
    bottom: 50px;
    padding: 25px 80px 25px 50px;
    border-radius: 100px 0 0 100px;
	z-index: 100;
}
.main .fv .countdown::before{
	content: '';
	background-image: url("../images/decoration_03.png");
	background-size: 100%;
	display: inline-block;
	width: 120px;
	height: 45px;
	position: absolute;
	z-index: 900;
	top: 0;
    left: -8%;
}
.main .fv .countdown img{
	max-width: 200px;
	height: auto;
	object-fit: contain;
	margin-right: 20px;
}
.main .countdown .date01,.main .countdown .date02{
	font-size: 80px;
    color: #2F796A;
    font-family: 'Bebas Neue Pro', 'Bebas Neue', 'Impact', 'Arial Narrow', sans-serif;
	margin-top: -20px;
}
.main .countdown .date02{
	color: #2779CA;
}
.main .countdown .date01 span:last-child,
.main .countdown .date02 span:last-child{
	font-size: 26px;
    font-weight: 600;
    color: #222222;
    display: inline-block;
    padding-left: 10px;
}
.main .countdown > div{
	text-align: center;
	padding-top: 10px
}
.main .countdown > div:last-child{
	border-left: 1px solid #CCCCCC;
	padding-left: 40px;
	margin-left: 40px;
}

    .slider {
      position: relative;
      width: 100%;
      overflow: hidden;
    }

    .slider img {
		position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 2s ease;
  z-index: 0;
    }

    .slider img.active {
      opacity: 1;
      z-index: 1;
    }

.slider img:first-of-type {
  position: relative;
}

    .content {
      flex: 1;
    }


/*----- NEWS -----*/
#news{
	margin: 85px 100px 0;
	display: flex;
	gap: 50px;
	justify-content: space-between;
}
#news .newsBox{
	width: 75%;
	position: relative;
}
#news .rightBox{
	width: 20%;
}
#news .rightBox img{
	width: 100%;
}
#news .tab-container {
  width: 100%;
	position: relative;
}

#news .newsBox::after{
	content: '';
	background-image: url("../images/mascot_02.png");
	display: inline-block;
	width: 200px;
	height: 136px;
	background-size: 100%;
	position: absolute;
	right: 30px;
	top: -30px;
	background-repeat: no-repeat;
}

#news .tab-buttons {
  display: flex;
	width: 80%;
}

#news .tab-buttons button {
  flex: 1;
  padding: 20px;
  border: none;
  background: #EEEEEE;
  cursor: pointer;
  font-size: 18px;
font-weight: 600;
	border-left: 1px solid #fff;
}

#news .tab-buttons button.active {
  background: #fff;
}

#news .tab-buttons button:first-child{
	border-radius: 15px 0 0 0;
	border-left: none;
}
#news .tab-buttons button:last-child{
	border-radius: 0 15px 0 0;
}

#news .tab-content {
      background: #fff;
      padding: 50px;
      border-top: none;
      display: none;
	border-radius: 0 15px 15px 15px;
    }

#news .tab-content.active {
      display: block;
    }
#news ul {
      margin: 0;
      padding-left: 1.2em;
    }
#news li {
      display: flex;
	padding: 25px 0;
    border-bottom: 1px solid #CCCCCC;
	align-items: flex-end;
	justify-content: space-between;
    }
#news li:first-child{
	padding-top: 0;
}
#news .date{
	font-family: 'Helvetica Neue', 'Segoe UI', 'Arial', sans-serif;
	font-weight: 600;
}
#news .flexBox01{
	display: flex;
	gap: 20px;
	align-items: center;
}
#news .flexBox02{
	display: flex;
	margin-bottom: 20px;
	align-items: center;
}
#news .flexBox02 .category{
	display: flex;
	gap: 10px;
	margin-left: 20px;
}
#news li img{
	max-width: 180px;
}
#news li .topics{
	background: #66B49D;
    color: #fff;
    width: 150px;
    padding: 8px 0;
    text-align: center;
    border-radius: 5px;
}
#news li .others{
	background: #2779CA;
    color: #fff;
    width: 150px;
    padding: 8px 0;
    text-align: center;
    border-radius: 5px;
}
#news li .detail{
	position: relative;
	padding-right: 23px;
}
#news li .detail::after{
	content: '';
	background-image: url("../images/arrow.svg");
	display: inline-block;
	width: 8px;
	height: 15px;
	position: absolute;
	top: 6px;
	right: 0;
}

#news .more{
	text-align: center;
    margin-top: 30px;
}
#news .more a{
	border: 2px solid #2471B9;
    padding: 22px 40px;
    display: inline-block;
    border-radius: 40px;
}
#news .youtube iframe{
	aspect-ratio: 4 / 2.3;
}


/* ==== 画像スライダー ==== */
#slide{
	margin-top: 100px;
}
    .image-slider {
      position: relative;
      width: 100%;
      height: 100%;
      overflow: hidden;
      white-space: nowrap;
		z-index: 10;
    }

    .image-slider .slide-track {
      display: inline-block;
      white-space: nowrap;
    }

    .image-slider img {
      width: 20vw;
      height: 100%;
      object-fit: cover;
      display: inline-block;
    }

    /* ==== 文字スライダー ==== */
    .text-slider {
      position: relative;
      width: 100%;
      overflow: hidden;
      margin-top: -210px;
      z-index: 1;
		background: transparent;
    }

    .text-slider .text-track {
  display: flex;
  animation: scrollText 30s linear infinite;
  font-family: 'Bebas Neue Pro', sans-serif;
  font-size: 300px;
  font-weight: bold;
  color: #fff;
  white-space: nowrap;
}

@keyframes scrollText {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}


.whiteWrapper{
	background: #fff;
    margin: 0 100px 100px;
    border-radius: 50px;
    padding: 100px;
}
#place a{
	text-decoration: underline;
}
#place table{
	width: 100%;
	text-align: center;
	border: none;
    border-collapse: collapse;
}
#place table a{
	position: relative;
 line-height: 1.6;
}
#place table a::after{
	content: '';
	background-image: url("../images/icon-pin.svg");
	display: inline-block;
	background-repeat: no-repeat;
	background-size: 100%;
	width: 15px;
	height: 20px;
	position: absolute;
	top: -2px;
	right: -20px;
}
#place th{
	background: #2779CA;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
	padding: 10px 0;
	border: 1px solid #CCCCCC;
}
#place td{
	background: #F5F5F5;
	padding: 20px 0;
	border: 1px solid #CCCCCC;
}
#place tr:first-child th{
	border-top: none;
}
#place tr th:first-child,#place tr td:first-child{
	border-left: none;
}
#place tr th:last-child,#place tr td:last-child{
	border-right: none;
}
#place tr:last-child td,#place tr:nth-child(7) td{
	border-bottom: none;
}
#place table .date{
	padding: 20px 0;
}
#place table .squircle:first-child{
	border-radius: 15px 0 0 0;
}
#place table tr th.squircle:last-child{
	border-radius: 0 15px 0 0;
}
#place table tr:nth-child(7) .squircle:first-child{
	border-radius: 0 0 0 15px;
}
#place table tr:nth-child(7) .squircle:last-child{
	border-radius: 0 0 15px 0;
}
#place .demonstrationText{
	margin-bottom: 30px;
}
#place .dot{
	font-size: 25px;
    color: #2779CA;
}
#place .imgBox{
	text-align: center;
	margin-top: 50px;
}
#place .imgBox img{
	max-width: 930px;
	width: 100%;
}
#place .table02 tr:nth-child(4) .squircle:first-child{
	border-radius: 0 0 0 15px;
}
#place .table02 tr:nth-child(4) .squircle:last-child{
	border-radius: 0 0 15px 0;
}

#explanation .whiteWrapper{
	margin-top: -70px;
	position: relative;
	z-index: 2;
}
#explanation > img{
	width: 100%;
	position: relative;
	z-index: 1;
}
#explanation .flexBox{
	display: flex;
	gap: 75px;
}
#explanation .flexBox img{
	max-width: 200px;
	object-fit: contain;
	width: 16%;
}
#explanation .point{
	background: #2779CA;
    border-radius: 30px;
	color: #fff;
	padding: 25px 50px;
	margin: 60px 100px 80px;
	display: flex;
	align-items: center;
	font-size: 18px;
}
#explanation .point p{
	display: contents;
}
#explanation .point p:first-child{
	display: flex;
    flex-flow: column;
    color: #2779CA;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    text-align: center;
    font-size: 14px;
    padding-top: 25px;
	margin-right: 30px;
	background: #fff;
	min-width: 100px;
	min-height: 100px;
	flex-shrink: 0;
}
#explanation .point p:first-child span{
	display: inline-block;
    font-size: 18px;
}
#explanation .point p:last-child{
	line-height: 32px;
}
#explanation .whiteWrapper .imgCenter,#explanation .whiteWrapper .imgCenter02{
	text-align: center;
	margin-bottom: 30px;
}
#explanation .whiteWrapper .imgCenter img{
	max-width: 800px;
    width: 57%;
}
#explanation .whiteWrapper .imgCenter02 img{
	max-width: 600px;
	width: 42%;
}
#explanation .textCenter{
	font-size: 18px;
	font-weight: 600;
	text-align: center;
	margin-bottom: 15px;
}

#sports .sportsBox{
	display: flex;
	margin: 0 200px 100px;
	gap: 30px;
	justify-content: center;
	flex-wrap: wrap;
}
#sports .sportsBox img{
	width: 23%;
}


@media screen and (max-width: 1850px){
	.main .fv .countdown{
		padding: 15px 50px 15px 20px;
	}
}

@media screen and (max-width: 1440px){
 #place table a{
 display: block;
 padding: 0 30px;
  }
 #place table a::after{
  top: 0;
  right: 10px;
  bottom: 0;
  margin: auto;
  
 }
}

@media screen and (max-width: 1500px){
	#news .tab-buttons button{
		padding: 10px;
		font-size: 15px;
	}
	#news .newsBox::after {
		width: 130px;
	}
	.main .fv .countdown{
		bottom: 30px;
	}
	.main .fv .countdown img{
		max-width: 140px;
	}
	.main .countdown .date01, .main .countdown .date02{
		font-size: 60px;
	}
	.main .countdown > div:last-child{
		padding-left: 30px;
		margin-left: 30px;
	}
	#gNavi{
		font-size: 13px;
	}
	#gNavi .flexBox02{
		gap: 20px;
	}
	.main .fv .leftBox::before{
		width: 150px;
		height: 72px;
	}
	.main .fv .countdown::before{
		width: 90px;
		height: 34px;
	}
	.main .fv .leftBox::after{
		width: 120px;
		height: 58px;
	}
}

@media screen and (max-width: 1300px){
	#explanation .point{
		margin-left: 30px;
		margin-right: 30px;
		padding: 25px 30px;
	}
	#place .table{
		overflow: scroll;
	}
	#place table{
		white-space: nowrap;
	}
}

@media screen and (max-width: 1100px){
	#news{
		margin: 85px 70px;
	}
	#news li{
		flex-flow: column;
		align-items: flex-start;
	}
	#news li .detail{
		width: 100%;
		text-align: end;
	}
	#news .flexBox02{
		flex-flow: column;
		align-items: flex-start;
	}
	#news .flexBox02 .category{
		margin: 5px 0 0 0;
	}
	#news .newsBox::after{
		right: 0;
		top: 0;
		width: 100px;
	}
	#gNavi .leftBox{
		flex-flow: column;
		gap: 5px;
		justify-content: center;
		width: 35%;
	}
	#gNavi .leftBox p{
		border: none;
    	padding: 0;
	}
}

@media screen and (max-width: 768px){
	.pc{
		display: none!important;
	}
	.sp{
		display: block!important;
	}
	.main{
		padding-top: 80px;
	}
	.main .fv{
		background-image: none;
		display: block;
		padding: 30px 17px 0 0;
	}
	.main .fv .leftBox{
		width: 100%;
	}
	.main .fv .leftBox::before{
		width: 100px;
		height: 48px;
		left: -60px;
	}
	.main .fv .leftBox::after{
		width: 80px;
		height: 38.4px;
		top: 10px;
		right: -10px;
	}
	.main .fv .leftBox .absoluteBox{
		left: 20px;
		bottom: 60px;
		width: 60%;
	}
	
	#gNavi{
		display: block;
		height: 80px;
		padding: 7px 110px 7px 30px;
	}
	#gNavi .leftBox{
		flex-flow: column;
		width: 100%;
		gap: 6px;
	}
	#gNavi h1{
		max-width: 250px;
		width: 75%;
	}
	#gNavi .leftBox p{
		font-size: 10px;
		border: none;
		padding: 0;
	}
	
	#news{
		margin: 95px 0 0;
		flex-flow: column;
	}
	#news .newsBox::after{
		content: none;
	}
	#news .newsBox{
		width: 100%;
	}
	#news .tab-buttons{
		width: auto;
		white-space: nowrap;
		overflow: scroll;
	}
	#news .tab-buttons button{
		min-width: 160px;
		font-size: 16px;
	}
	#news .tab-content{
		border-radius: 0 0 15px 15px;
		padding: 30px 20px;
	}
	#news .flexBox02{
		flex-flow: column;
		gap: 5px;
		align-items: flex-start;
		margin-bottom: 10px;
	}
	#news li{
		flex-flow: column;
		align-items: flex-start;
		gap: 7px;
	}
	#news li .detail {
		width: 100%;
		text-align: right;
	}
	#news ul{
		padding: 0;
	}
	#news .more a{
		padding: 13px 26px;
	}
	#news .rightBox{
		width: auto;
		margin: 20px;
	}
	.image-slider img{
		width: 80vw;
	}
	.whiteWrapper{
		margin: 0 0 30px 0;
		padding: 30px 20px;
	}
	#place table{
		white-space: nowrap;
	}
	#place .imgBox img{
		width: 100%;
	}
	
	h2{
		font-size: 18px;
		padding-bottom: 15px;
	}
	h2 span{
		font-size: 13px;
	}
	
	#explanation .flexBox{
		flex-flow: column;
		gap: 20px;
	}
	#explanation .flexBox img{
		max-width: 150px;
		width: 100%;
		margin: 0 auto;
	}
	#explanation .point{
		margin: 20px;
		padding: 20px 20px 30px;
		flex-flow: column;
	}
	#explanation .point p:first-child{
		margin: 0 0 20px;
	}
	#explanation .whiteWrapper .imgCenter img{
		width: 80%;
	}
	#explanation .whiteWrapper .imgCenter02 img{
		width: 55%;
	}
	
	h3{
		font-size: 18px;
		gap: 15px;
	}
	h3 span{
		font-size: 13px;
	}
	
	#sports .sportsBox{
		flex-flow: column;
		margin: 0 45px 40px;
		gap: 10px;
	}
	#sports .sportsBox img{
		width: 100%;
	}
	.table{
		overflow-x: scroll;
	}
	#place td{
		padding: 20px 15px;
	}
	.main .countdown .date01, .main .countdown .date02{
		font-size: 40px;
		margin-top: -10px;
	}
	#news .flexBox02 .category{
		margin-left: 0;
	}
	#place .table02 th{
		padding: 10px 50px;
	}
	.main .fv .countdown{
		font-size: 14px;
		padding: 20px;
		bottom: -60px;
	}
	.main .countdown .date01 span:last-child,
 .main .countdown .date02 span:last-child{
		font-size: 18px;
	}
	.main .countdown > div:last-child{
		border-left: none;
		margin-left: 0;
		padding-left: 15px;
	}
	.main .fv .countdown img{
		max-width: 80px;
	}
 #place table a{
  padding: 0 20px;
 }
 #place table a::after{
  right: 0px;
 }
}

/*----- FOOTER -----*/
#fNavi{
	background: #2779CA;
	border-radius: 30px 30px 0 0;
	color: #fff;
	text-align: center;
	padding: 80px 0 60px;
}
#fNavi img{
	max-width: 500px;
	width: 27%;
	margin-bottom: 30px;
}
#fNavi .official{
	font-weight: 600;
	border: 1px solid #fff;
	border-radius: 30px;
	max-width: 300px;
	padding: 12px 28px;
	margin: 0 auto 50px;
}
#fNavi .flexBox{
	display: flex;
	gap: 30px;
	justify-content: center;
	margin-bottom: 50px;
}
#fNavi .contact{
	font-size: 14px;
	font-weight: 300;
	margin: 30px 0 50px;
}
#fNavi .file{
 display: flex;
 justify-content: center;
 gap: 30px;
}
#fNavi .file li a{
 font-weight: normal;
}
#fNavi .copy{
	font-size: 13px;
	font-weight: 600;
}
@media screen and (max-width: 768px){
	#fNavi{
		padding: 30px 20px;
	}
	#fNavi img{
		width: 100%;
		max-width: 300px;
	}
	#fNavi .flexBox.sp{
		display: flex!important;
		text-align: left;
		gap: 40px;
	}
	#fNavi .flexBox.sp .wrapper{
		display: flex;
		flex-flow: column;
		gap: 20px;
	}
	#fNavi .contac{
		margin: 25px 50px;
	}
}



/*----- single -----*/
h4{
	font-size: 30px;
	font-weight: 400;
	margin: 0 0 30px 0;
	padding-bottom: 30px;
	border-bottom: 1px solid #CCCCCC;
}
#news .newsWrapper{
	background: #fff;
	border-radius: 15px;
	padding: 50px 50px 100px;
	width: 77%;
}
#news .newsWrapper .wrapper{
	display: flex;
	gap: 20px;
	margin-bottom: 25px;
}
#news .newsWrapper .date{
	font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

#news .newsWrapper .category{
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

#news .newsWrapper .content{
	font-size: 18px;
	font-weight: 400;
	line-height: 32.4px;
}

#news .newsWrapper .content img{
	border-radius: 30px;
	width: 100%;
	object-fit: contain;
	margin-top: 30px;
}


@media screen and (max-width: 768px){
	.main .news{
		margin-top: 60px;
	}
	#news .newsWrapper{
		width: 94%;
    	margin: 0 auto;
		padding: 30px 30px 50px;
	}
	#news .newsWrapper .wrapper{
		flex-flow: column;
	}
	.category .notice{
		width: 130px;
	}
}


/*----- archive -----*/
#news .newsBox02::after{
	content: none;
}

.tab-button {
  padding: 20px 10px;;
	width: 180px;
  background: #eee;
  text-decoration: none;
  color: #666;
	font-weight: 600;
	font-size: 18px;
	text-align: center;
	border-left: 1px solid #fff;
}

#news .tab-buttons .tab-button:first-child{
	border-left: none;
}

.tab-button.active {
  background: #fff;
}

#news .tab-buttons .tab-button:first-child{
	border-radius: 15px 0 0 0;
}

#news .tab-buttons .tab-button:last-child{
	border-radius: 0 15px 0 0;
}

.category p{
	color: #fff;
	font-size: 15px;
	width: 150px;
	padding: 5px;
	text-align: center;
	border-radius: 5px;
}
.category .important{
	background: #EF6F6C;
}
.category .notice{
	background: #2779CA;
}
.category .event{
	background: #66B49D;
}
.category .tender{
	background: #8E61B1;
}
.category .volunteer{
	background: #FFA630;
}

#news .tab-important:hover{
	background: #EF6F6C!important;
	color: #fff;
	opacity: 1!important;
}
#news .tab-notice:hover{
	background: #2779CA!important;
	color: #fff;
	opacity: 1!important;
}
#news .tab-event:hover{
	background: #66B49D!important;
	color: #fff;
	opacity: 1!important;
}
#news .tab-tender:hover{
	background: #8E61B1!important;
	color: #fff;
	opacity: 1!important;
}
#news .tab-volunteer:hover{
	background: #FFA630!important;
	color: #fff;
	opacity: 1!important;
}

/* ページネーション共通スタイル */
.wp-pagenavi {
  font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 20px 0;
}

.wp-pagenavi a,
.wp-pagenavi span {
  display: inline-block;
  padding: 6px 12px;
  background-color: #F5F5F5;
  color: #2779CA;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s, color 0.3s;
	border: none;
	text-align: center;
	padding-top: 10px;
	width: 40px;
	height: 40px;
}

.wp-pagenavi a:hover {
  background-color: #e0e0e0;
}

.wp-pagenavi span.current {
  background-color: #2779CA;
  color: #fff;
	border: none;
	width: 40px;
	height: 40px;
	text-align: center;
	padding-top: 10px;
}

a.nextpostslink,a.previouspostslink{
	font-size: 25px;
	padding-top: 0;
}

@media screen and (max-width: 768px){
	.main news02{
		margin-top: 60px;
	}
	.tab-buttons a{
		display: inline-block;
		width: 160px;
		flex: none;
	}
	.main #news.news02{
		margin-top: 60px!important;
	}
}
#contact{
 background-color: #fff;
 padding: 80px 0 100px;
}
#contact p{
 text-align: center;
 font-size: 18px;
 margin: 0 0 30px;
}
#contact div{
 display: flex;
 gap: 30px;
 width: fit-content;
 margin: 0 auto;
 align-items: center;
}
#contact div a:nth-child(1){
 max-width: 336px;
}
#contact div a:nth-child(2){
 max-width: 316px;
}
#contact div a img{
 width: 100%;
 height: auto;
}
@media screen and (max-width: 768px){
 #contact div{
  display: block;
  width: 80%;
 }
 #contact div a:nth-child(1){
  display: block;
  margin: 0 0 20px;
 }
 #contact div a img{
  height: auto;
 }
}
[id] {
  scroll-margin-top: 120px;
}