@charset "UTF-8";

html{
	overflow-x: clip;
	box-sizing: border-box;
}

body{
	font-family: "Noto Sans JP", sans-serif;
	-webkit-font-smoothing: antialiased;
	-webkit-font-feature-settings: "palt" 1;
	font-feature-settings: "palt" 1;
	color: #222;
	letter-spacing: 0.04em;
	overflow-x: clip;
	position: relative;
	line-height: 1.5;
}

body.is-fixed {
  overflow: hidden;
}

body.is-modal-open {
  position: fixed;
  width: 100%;
  overflow: hidden;
}


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

a{
	color: inherit;
	text-decoration: none;
	outline: none;
}

a:hover{
	text-decoration: none;
	color: inherit;
}

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

.sp-only{
	display: none;
}

@media ( max-width : 840px ) {
.sp-only{
	display: inherit;
}
.pc-only{
	display: none;
}
}

/* フローティングバナー */
.float_bn {
	position: fixed;
	top: 170px;
	right: 0px;
	z-index: 100;
}

/*ヘッダー*/
#header{
	width: 100%;
	height: 80px;
	padding: 0 21px 0 9px;
	display: flex;
	align-items: center;
	border-bottom: 1px solid #EBEBEB;
}

#header .logo{
	font-size: 0;
	width: 215px;
	content: url("../img/common/logo.svg");
}

#header .buppy{
	width: 47px;
	content: url("../img/common/buppy.png");
	/*margin-top: 14px;*/
	margin-left: 7px;
}

#header .rightBox{
	display: flex;
	gap:0 12px;
	margin-left: auto;
}

#header .rightBox .nana{
	width: 100%;
	max-width: 119px;
	margin-right: 20px;
}

#header .rightBox .weather{
	display: flex;
	gap:10px;
	width: 150px;
	height: 45px;
	justify-content: center;
	align-items: center;
	background: #0096E1;
	border-radius: 5px;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	transition: .3s;
}

#header .rightBox .weather span{
	content: url("../img/common/weather.svg");
	width: 32px;
}

#header .rightBox .search{
	display: flex;
	gap:10px;
	width: 150px;
	height: 45px;
	justify-content: center;
	align-items: center;
	background: #0055AF;
	border-radius: 5px;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: .3s;
}

#header .rightBox .search span{
	content: url("../img/common/search.svg");
	width: 25px;
}

#search-menu {
		position: fixed;
		width: 100%;
		height: 200px;
		top: -20em;
		left: 0;
		right: 0;
		white-space: nowrap;
		z-index: 9999;
		background-color: #fff;
		opacity: 0;
		visibility: hidden;
	border-bottom: 1px solid #EBEBEB;
		-webkit-transition: 500ms ease all;
		-moz-transition: 500ms ease all;
		transition: 500ms ease all;
}

	#search-menu.toggled {
		top: 0;
		opacity: 1;
		visibility: visible;
	}

	#search-menu p{
		font-size: 22px;
		font-weight: 700;
		text-align: center;
		margin-bottom: 31px;
	}

	#search-menu form{
		position: relative;
		max-width: 585px;
		margin: 0 auto;
		width: 100%;
		display: flex;
		align-items: center;
		gap:0 20px;
	}

	#search-menu .wrapper {
		margin: 38px auto 0;
		padding: 0 20px;
		position: relative;
	}

	#search-menu .wrapper input {
		border: #636B70 solid 1px;
		font-size: 20px;
		width: 100%;
		font-weight: 700;
		padding: 12px 22px;
		max-width: 400px;
	}

	#search-menu .wrapper input::placeholder{
		color: #C3C3C3;
	}

	#search-menu .wrapper input:focus {
		outline: none;
	}

	#search-menu .wrapper button {
		width: 160px;
		height: 50px;
		right: 0;
		top: 0;
		border: none;
		background-color: #FF8800;
		cursor: pointer;
		padding: 0;
		display: flex;
		justify-content: center;
		align-items: center;
		color: #fff;
		font-size: 15px;
		font-weight: 700;
		border-radius: 70px;
		gap:0 10px;
	}

	#search-menu .wrapper button span{
		content: url("../img/common/search.svg");
		width: 23px;
		
	}

	#search-menu .wrapper button:focus {
	  outline: none;
	}

	#search-menu .wrapper .close{
		position: absolute;
		width: 41px;
		height: 41px;
		top: -24px;
		right: 10%;
		cursor: pointer;
		content: url("../img/common/close.svg");
	}

@media ( min-width : 840px ) {
#header .rightBox .weather:hover,
#header .rightBox .search:hover{
	background: #FF8800;
}
#nav ul.navList a:hover li{
	color: #0096e1;
}
}

/* ナビゲーション */
#nav{
	width: 100%;
	z-index: 10;
	top: 0;
	padding: 0 20px;
	position: relative;
	background: #fff;
}

#nav.is-fixed {
	position: fixed;
	top: 0;
	left: 0;
}
#nav .navWrap{
	width: 100%;
	/*max-width: 877px;*/
	margin: 0 auto;
	position: relative;
}

#nav ul.navList{
	display: flex;
	margin: 0 auto;
	justify-content: center;
	align-items: center;
	height: 70px;
	gap:0 60px;
}

#nav ul.navList li{
	font-size: 18px;
	line-height: 22px;
	font-weight: 700;
	color: #0055AF;
	text-align: center;
	transition: color .3s ease;
}

#nav ul.navList .logo{
	font-size: 0;
  width: 215px;
  content: url("../img/common/logo.svg");
	opacity: 0;
	position: absolute;
	left: 100px;
	z-index: -1;
}

#nav.is-fixed ul.navList .logo{
	opacity: 1;
	position: inherit;
	transition: .3s;
	z-index: 0;
}

@media ( max-width : 1215px ) {
#nav ul.navList{
	gap:0 calc(100vw * 40 / 930);
}
	

#nav.is-fixed {
	padding: 0 calc(100vw * 20 / 1215);
}
	
#nav.is-fixed ul.navList{
	gap:0 calc(100vw * 38 / 1215);
}

#nav ul.navList .logo{
  width: calc(100vw * 218 / 1215);
	left: calc(100vw * 100 / 1215);
}

#nav.is-fixed ul.navList li{
	font-size: calc(100vw * 22 / 1215);
	line-height: calc(100vw * 24 / 1215);
}
}

@media ( max-width : 840px ) {
#header{
	height: calc(100vw * 50 / 390);
	padding: 0 0 0 calc(100vw * 10 / 390);
	border-bottom: none;
}

#header .logo{
	width: calc(100vw * 150 / 390);
}

#header .buppy{
	width: calc(100vw * 31 / 390);
	margin-top: 0;
	margin-left: calc(100vw * 5 / 390);
}

#header .rightBox{
	gap:0 calc(100vw * 17 / 390);
}

#header .rightBox .nana{
	max-width: calc(100vw * 72 / 390);
	margin-right: 0px;
}

#header .rightBox a:first-child{
	display: flex;
	align-items: center;
}

#header .rightBox .weather{
	flex-direction: column;
	gap:calc(100vw * 2 / 390);
	width: calc(100vw * 60 / 390);
	height: calc(100vw * 50 / 390);
	border-radius: 0px;
	color: #000;
	font-size: calc(100vw * 12 / 390);
	background: none;
}

#header .rightBox .weather span{
	width: calc(100vw * 24 / 390);
    content: "";
    mask-image: url("../img/common/weather.svg");
    height: calc(100vw * 22 / 390);
	background: #0096E1;
}

#search-icon {
		display: none;
}

#search-menu {
		display: none;
}
	
#nav{
	padding: 0 0px;
	position: relative;
	border-bottom: 1px solid #C3C3C3;
}

#nav ul.navList{
	height: calc(100vw * 50 / 390);
	gap:0 calc(100vw * 39 / 390);
	padding: 0 calc(100vw * 10 / 390);
	justify-content: flex-start;
}

#nav ul.navList li{
	font-size: calc(100vw * 13 / 390);
	color: #333;
}

#nav.is-fixed ul.navList li{
	font-size: calc(100vw * 13 / 390);
}

#nav ul.navList .logo{
  width: calc(100vw * 150 / 390);
	margin-right: calc(100vw * 20 / 390);
}
	
#nav ul.navList a:nth-child(n+6){
	display: none;
}
	
#nav.is-fixed ul.navList a:nth-child(n+4){
	display: none;
}
}

/* ハンバーガーメニュー */
.fullscreenmenu{
	display: none;
}

.menu, .menu span {
  display: inline-block;
  -webkit-transition: all .3s;
  transition: all .3s;
  box-sizing: border-box;
}

.menu {
	width: calc(100vw * 60 / 390);
	height: calc(100vw * 50 / 390);
	z-index: 11;
	background: none;
	top: 0;
	right: 0;
	position: absolute;
	background: #0055AF;
}

.menu span {
	position: absolute;
	left: 0;
	width: calc(100vw * 30 / 390);
	height: calc(100vw * 4 / 390);
	background-color: #fff;
	z-index: 10;
	right: 0;
	margin: auto;
	border-radius: 100px;
}

.menu span:nth-of-type(1) {
  top: calc(100vw * 12 / 390);
}

.menu span:nth-of-type(2) {
  top: calc(100vw * 24 / 390);
}

.menu span:nth-of-type(3) {
  top: calc(100vw * 36 / 390);
}

.menu.active span:nth-of-type(1) {
  transform: translateY(calc(100vw * 12 / 390)) rotate(45deg);
}

.menu.active span:nth-of-type(2) {
  opacity: 0;
}

.menu.active span:nth-of-type(3) {
 transform: translateY(calc(100vw * -12 / 390)) rotate(-45deg);
}

#hnav {
  position: fixed;
  top: calc(100vw * 100 / 390);
  right: 0;
  z-index: 10;
  width: 100%;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
	filter: blur(10px);
	background-color: #0055AF;
	transform: translateX(100%);
	height: calc(100vh - (100vw * 100 / 390));
	padding: 0 calc(100vw * 10 / 390) calc(100vw * 50 / 390);
	overflow-y: auto;
	overflow-x: hidden;
}

#nav.is-fixed #hnav {
  top: calc(100vw * 50 / 390);
}

#nav.is-fixed #hnav {
	height: calc(100vh - (100vw * 50 / 390));
}

#hnav.active {
  z-index: 10;
  opacity: 1;
  visibility: visible;
	filter: blur(0px);
	transform: translateX(0);
}

#hnav .menuList {
	padding: calc(100vw * 20 / 390) 0;
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	border-bottom: 1px solid #fff;
	margin-bottom: calc(100vw * 20 / 390);
	gap: calc(100vw * 10 / 390) 0;
}

#hnav .menuList li {
	font-size: calc(100vw * 16 / 390);
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.08em;
	line-height: 1;
}

#nav #hnav .menuList li:nth-child(-n + 2){
	display: none;
}

#nav.is-fixed #hnav .menuList li:nth-child(-n + 2){
	display: block;
}

#hnav .programBox {
	border-bottom: 1px solid #fff;
	margin-bottom: calc(100vw * 30 / 390);
}

#hnav .programBox .programHead{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: calc(100vw * 20 / 390);
}

#hnav .programBox .programHead .tit{
	font-size: calc(100vw * 18 / 390);
	font-weight: 700;
	color: #fff;
}

#hnav .programBox .programHead a{
	font-size: calc(100vw * 18 / 390);
	font-weight: 700;
	color: #0055AF;
	background: #fff;
	width: calc(100vw * 150 / 390);
	height: calc(100vw * 40 / 390);
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	border-radius: 100px;
}

#hnav .programBox .programHead a span{
	content: url("../img/common/arrow.svg");
	position: absolute;
	right: calc(100vw * 17 / 390);
	width: calc(100vw * 12 / 390);
}

#hnav .programBox .programList{
	display: flex;
	flex-wrap: wrap;
	gap:calc(100vw * 10 / 390);
	align-items: center;
	margin-bottom: calc(100vw * 20 / 390);
}

#hnav .programBox .programList a{
	width: calc(100vw * 180 / 390);
	border-radius: 5px;
	overflow: hidden;
}

#hnav .programBox .programList img{
	width: calc(100vw * 180 / 390);
	border-radius: 5px;
	overflow: hidden;
}

#hnav .menuBox{
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	margin-bottom: calc(100vw * 20 / 390);
}

#hnav .menuBox .menuList2 li{
	color: #fff;
	font-size: calc(100vw * 14 / 390);
	font-weight: 500;
	margin-bottom: calc(100vw * 10 / 390);
}

#hnav .snsBox{
	display: flex;
	justify-content: center;
	align-items: center;
	gap:0 calc(100vw * 40 / 390);
	margin-bottom: calc(100vw * 30 / 390);
}

#hnav .snsBox .insta{
	content: url("../img/common/insta.svg");
	width: calc(100vw * 35 / 390);
}

#hnav .snsBox .x{
	content: url("../img/common/x.svg");
	width: calc(100vw * 27 / 390);
}

#hnav .snsBox .youtube{
	content: url("../img/common/youtube.svg");
	width: calc(100vw * 42 / 390);
}

#hnav .searchBox form {
  position: relative;
  max-width: calc(100vw * 370 / 390);
  margin: 0 auto;
  width: 100%;
  font-size: calc(100vw * 16 / 390);
  color: #C3C3C3;
  font-weight: 700;
	display: flex;
	justify-content: center;
	gap:0 calc(100vw * 10 / 390);
}

#hnav .searchBox input {
  width: calc(100vw * 240 / 390);
  padding: calc(100vw * 13 / 390) calc(100vw * 18 / 390);
  outline: none;
  font-size: calc(100vw * 16 / 390);
  font-weight: 700;
  border: none;
  -webkit-appearance: none;
  border-radius: 5px;
}

#hnav .searchBox input::placeholder{
  color: #C3C3C3;
}

#hnav .searchBox button {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: calc(100vw * 14 / 390);
	font-weight: 700;
  width: calc(100vw * 100 / 390);
  height: calc(100vw * 45 / 390);
	background: #FF8800;
	border-radius: 100px;
  border: none;
  cursor: pointer;
  padding: 0;
}

#hnav .searchBox button span{
	content: url("../img/common/search.svg");
	width: calc(100vw * 25 / 390);
	margin-right: calc(100vw * 5 / 390);
}


button {
    border: none;
    outline: none;
}

button:focus {
    border: none;
    outline: none;
}

@media ( max-width : 840px ) {
.fullscreenmenu{
	display: inherit;
}
}







/*スライダー*/
#slider{
	width: 100%;
	padding: 50px 0 16px;
	position: relative;
}

#slider .bg{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background:radial-gradient(ellipse at 21.82% 14.69%,#7DC8F0 46.66%,#0096E1 100%),linear-gradient(135deg, #0096E1, #00A0E8);
	clip-path: ellipse(90% 100% at 50% 0%);
}

#slider .swiperCont {
  margin: 0 auto;
  position: relative;
}

#slider .swiper-slide{
	width: 700px;
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
}

#slider .swiper-slide .imgBox{
	width: 700px;
	height: 393px;
	overflow: hidden;
}

#slider .swiper-slide .imgBox img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
	transition: .3s;
}

#slider .swiper-slide .youtube{
	display: block;
	position: relative;
}
#slider .swiper-slide .youtube-in{
	padding-top: 56.25%;
}
#slider .swiper-slide .youtube-in iframe{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	bottom: 0px;
	right: 0px;
	left: 0px;
}

#slider .swiper-slide .txtBox{
	padding: 18px 20px;
}

#slider .swiper-slide .txtBox p{
	font-size: 18px;
	font-weight: 700;
	color: #0055AF;
	overflow: hidden; 
  text-overflow: ellipsis; 
  white-space: nowrap;   
	margin-bottom: 0;
	transition: .3s;
}

#slider .swiper-horizontal>.swiper-pagination-bullets,
#slider .swiper-pagination-bullets.swiper-pagination-horizontal,
#slider .swiper-pagination-custom,
#slider .swiper-pagination-fraction {
  /*bottom: -53px;*/
	bottom: -35px;
	z-index: 2;
}

#slider .swiper-pagination-bullet {
  position: relative;
  width: 60px;
  height: 8px;
  border-radius: 20px;
  background-color: #fff;
  opacity: 1;
	overflow: hidden;
	margin: 0 6px;
}
#slider .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #0055AF;
	border-radius: 20px;
}
#slider .swiper-pagination-bullet-active::before {
  animation: paginationActive 4s linear forwards;
}
@keyframes paginationActive {
  100% {
    width: 100%;
    opacity: 1;
  }
}

#slider .onAirWrap{
	width: 100%;
	padding: 0 20px;
}

#slider .nowOnAir{
	width: 100%;
	background: #fff;
	position: relative;
	border-radius: 10px;
	max-width: 963px;
	margin: 84px auto 0;
	display: grid;
	grid-template-columns: 128px minmax(0, 1fr) 166px;
  	gap: 20px;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	/*overflow: hidden;*/
	height: 100px;
	padding-right: 10px;
}

#slider .nowOnAir .icoBox{
	background: #0055AF;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap:2px;
	border-radius: 10px 0px 0px 10px;
}

#slider .nowOnAir .icoBox .ico{
	position: relative;
	width: 41px;
	height: 31px;
}

#slider .nowOnAir .icoBox .ico span{
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	opacity: 0;
	animation: wifiWave 2.1s ease-out infinite;
	transform-origin: center bottom;
}


#slider .nowOnAir .icoBox .ico span:nth-child(1){
	content: url("../img/common/wifi1.svg");
	top: 0;
	animation-delay: .8s;
}

#slider .nowOnAir .icoBox .ico span:nth-child(2){
	content: url("../img/common/wifi2.svg");
	top: 8px;
	animation-delay: .4s;
}

#slider .nowOnAir .icoBox .ico span:nth-child(3){
	content: url("../img/common/wifi3.svg");
	top: 15px;
	animation-delay: 0s;
}

#slider .nowOnAir .icoBox .ico span:nth-child(4){
	content: url("../img/common/wifi4.svg");
	bottom: 0;
	opacity: 1; 
	animation: none;
}

@keyframes wifiWave {
	0% {
		opacity: 0;
	}
	15% {
		opacity: 1;
	}
	60% {
		opacity: .6;
	}
	100% {
		opacity: 0;
	}
}

#slider .nowOnAir .icoBox p{
	font-size: 12px;
	font-weight: 900;
	margin-bottom: 0;
	line-height: 17px;
	color: #fff;
}

#slider .nowOnAir .programBox{
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap:5px;
	max-width: 619px;
}

#slider .nowOnAir .programBox .time{
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 0;
	letter-spacing: 5%;
	color: #0055AF;
}

#slider .nowOnAir .programBox .title{
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 0;
	letter-spacing: 5%;
	color: #0055AF;
	overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#slider .nowOnAir .linkBox{
	display: flex;
	justify-content: center;
	align-items: center;
}

#slider .nowOnAir .linkBtn{
	display: flex;
	width: 166px;
	height: 40px;
	border: solid 1px #0055AF;
	border-radius: 100px;
	justify-content: center;
	align-items: center;
	color: #0055AF;
	font-size: 14px;
	font-weight: 700;
	transition: .3s;
}

#slider .nowOnAir .linkBtn span{
	mask-image:url("../img/common/arrow.svg");
	margin-left: 10px;
	background: #0055AF;
	width: 10px;
	height: 9px;
	mask-size: cover;
	transition: .3s;
}

#slider .nowOnAir .titLink p{
	transition: .3s;
}

@media ( min-width : 840px ) {
#slider .nowOnAir .linkBtn:hover{
	color: #fff;
	background: #0055AF;
}
#slider .nowOnAir .linkBtn:hover span{
	background: #fff;
}
#slider .nowOnAir .titLink:hover p{
	color: #0096E1;
}
	
#slider .swiper-slide a:hover .imgBox img{
		transform: scale(1.05);
}

#slider .swiper-slide a:hover .txtBox p{
	color: #0096E1;
}
}

@media ( max-width : 840px ) {
#slider{
	padding: calc(100vw * 10 / 390) calc(100vw * 10 / 390) calc(100vw * 40 / 390);
}

#slider .bg{
	display: none;
}

#slider .swiper-slide{
	width: calc(100vw * 373 / 390);
}

#slider .swiper-slide .imgBox{
	width: calc(100vw * 373 / 390);
	height: calc(100vw * 200 / 390);
}

#slider .swiper-slide .txtBox{
	padding: calc(100vw * 5 / 390) 0px;
}

#slider .swiper-slide .txtBox p{
	font-size: calc(100vw * 18 / 390);
}

#slider .swiper-horizontal>.swiper-pagination-bullets,
#slider .swiper-pagination-bullets.swiper-pagination-horizontal,
#slider .swiper-pagination-custom,
#slider .swiper-pagination-fraction {
  bottom: calc(100vw * -44 / 390);
}

#slider .swiper-pagination-bullet {
  width: calc(100vw * 8 / 390);
  height: calc(100vw * 8 / 390);
  border-radius: 100px;
  background-color: #D9D9D9;
	margin: 0 calc(100vw * 5 / 390);
}
#slider .swiper-pagination-bullet::before {
 display: none;
}
	
#slider .swiper-pagination-bullet-active{
	background-color: #0055AF;
}
	

#slider .onAirWrap{
	padding: 0 0px;
}

#slider .nowOnAir{
	border-radius: 10px;
	margin: calc(100vw * 109 / 390) auto 0;
	grid-template-columns: 1fr;
  	gap: 0px;
	height: auto;
	padding-right: 0px;
}

#slider .nowOnAir .icoBox{
	flex-direction: row;
	gap:calc(100vw * 13 / 390);
	padding: calc(100vw * 10 / 390);
	border-radius: 10px 10px 0 0;
}

#slider .nowOnAir .icoBox .ico{
	width: calc(100vw * 40 / 390);
	height: calc(100vw * 31 / 390);
}


#slider .nowOnAir .icoBox .ico span:nth-child(1){
	width: calc(100vw * 40 / 390);
}

#slider .nowOnAir .icoBox .ico span:nth-child(2){
	width: calc(100vw * 31 / 390);
	top: calc(100vw * 8 / 390);
}

#slider .nowOnAir .icoBox .ico span:nth-child(3){
	width: calc(100vw * 20 / 390);
	top: calc(100vw * 15 / 390);
}

#slider .nowOnAir .icoBox .ico span:nth-child(4){
	width: calc(100vw * 9 / 390);
}

#slider .nowOnAir .icoBox p{
	font-size: calc(100vw * 21 / 390);
}

#slider .nowOnAir .programBox{
	gap:calc(100vw * 5 / 390);
	max-width: calc(100vw * 370 / 390);
	padding: calc(100vw * 20 / 390) calc(100vw * 20 / 390) calc(100vw * 11 / 390);
}

#slider .nowOnAir .programBox .time{
	font-size: calc(100vw * 16 / 390);
	font-weight: 900;
}

#slider .nowOnAir .programBox .title{
	font-size: calc(100vw * 16 / 390);
	line-height: calc(100vw * 23 / 390);
  white-space: normal;
	display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

#slider .nowOnAir .linkBox{
	padding-bottom: calc(100vw * 16 / 390);
}

#slider .nowOnAir .linkBtn{
	width: calc(100vw * 156 / 390);
	height: calc(100vw * 33 / 390);
	font-size: calc(100vw * 14 / 390);
}

#slider .nowOnAir .linkBtn span{
	margin-left: calc(100vw * 10 / 390);
	width: calc(100vw * 10 / 390);
	height: calc(100vw * 8 / 390);
}
}




/*ニュース*/
#news{
	width: 100%;
	padding: 60px 0 40px;
}

#news .newsWrap{
	width: 100%;
	padding: 0 20px;
	margin-bottom: 40px;
}

.commonTit{
	text-align: center;
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 40px;
	letter-spacing: 5%;
	color: #0055AF;
}

#news .newsWrap .topNewBox{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap:20px;
}

#news .newsWrap .topNewBox .latestNews .imgArea{
	width: 100%;
	max-width: 590px;
	height: 332px;
	margin-bottom: 6px;
	overflow: hidden;
}

#news .newsWrap .topNewBox .latestNews .imgArea img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .4s;
}

#news .newsWrap .topNewBox .latestNews .txtArea .date{
	font-size: 16px;
	font-weight: 500;
	line-height: 32px;
	color: #333;
	margin-bottom: 0;
}

#news .newsWrap .topNewBox .latestNews .txtArea .date span{
	font-weight: 500;
	margin-left: 10px;
}

#news .newsWrap .topNewBox .latestNews .txtArea .tit{
	font-size: 20px;
	font-weight: 700;
	line-height: 29px;
	color: #0055AF;
	text-align: justify;
	overflow: hidden;
	display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
	margin-bottom: 0;
	transition: .3s;
}

#news .newsWrap .topNewBox .latestNews2 .newsOne{
	display: grid;
	grid-template-columns: minmax(0, 1fr) 1fr;
	gap:0 20px;
	margin-bottom: 18px;
}

#news .newsWrap .topNewBox .latestNews2 .newsOne .imgArea{
	width: 100%;
	max-width: 280px;
	height: 158px;
	overflow: hidden;
}

#news .newsWrap .topNewBox .latestNews2 .newsOne .imgArea img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .4s;
}

#news .newsWrap .topNewBox .latestNews2 .newsOne .txtArea .date{
	font-size: 16px;
	font-weight: 500;
	line-height: 20px;
	color: #333;
	margin-top: 24px;
	margin-bottom: 8px;
}

#news .newsWrap .topNewBox .latestNews2 .newsOne .txtArea .date span{
	font-weight: 500;
}

#news .newsWrap .topNewBox .latestNews2 .newsOne .txtArea .tit{
	font-size: 18px;
	font-weight: 700;
	line-height: 27px;
	color: #0055AF;
	text-align: justify;
	overflow: hidden;
	display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
	margin-bottom: 0;
	transition: .3s;
}

#news .newsWrap2{
	padding-left: calc((100vw - min(97vw,1200px)) / 2);
}

#news .newsSlide{
	overflow: hidden;
	padding-bottom: 70px;
	padding-right: 150px;
}

#news .newsSlide .swiper-wrapper{
	margin-bottom: 60px;
}

#news .newsSlide .swiper-slide{
	width: 278px;
}

#news .newsSlide .swiper-slide .imgArea{
	width: 278px;
	height: 156px;
	overflow: hidden;
}

#news .newsSlide .swiper-slide .imgArea img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .4s;
}

#news .newsSlide .swiper-slide .txtArea .date{
	font-size: 16px;
	font-weight: 500;
	line-height: 32px;
	color: #333;
	margin-bottom: 0;
}

#news .newsSlide .swiper-slide .txtArea span{
	font-weight: 500;
	margin-left: 10px;
}

#news .newsSlide .swiper-slide .txtArea .tit{
	font-size: 16px;
	font-weight: 700;
	line-height: 140%;
	color: #0055AF;
	text-align: justify;
	overflow: hidden;
	display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
	transition: .3s;
	margin-bottom: 0;
}

.moreBtn{
	display: flex;
	width: 275px;
	height: 55px;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	font-weight: 700;
	color: #0055AF;
	border-radius: 100px;
	border:1px solid #0055AF;
	margin: 0 auto;
	position: relative;
	transition: .3s;
	z-index: 2;
	background: #fff;
}

.moreBtn span{
	mask-image:url("../img/common/arrow.svg");
	width: 11px;
	height: 10px;
	background: #0055AF;
	mask-size:cover;
	mask-repeat: no-repeat;
	position: absolute;
	right: 28px;
	transition: .3s;
}

#news .moreBtn{
	margin-top: -80px;
}


.btnWrap {
	display: flex;
	gap: 0 40px;
	position: absolute;
	right: 97px;
	bottom: 41px;
	font-weight: 500;
	font-size: 14px;
	z-index: 1;
  }

.swiper-button-prev,
.swiper-button-next {
    cursor: pointer;
    transition: .3s;
	color: #0055AF;
	user-select: none;
	position: relative;
	display: block;
	width: 100%;
}
.swiper-button-prev::after {
	content: none;
}
.swiper-button-prev::before {
	content: "";
	background-image: url("../img/common/arrow2.svg");
	width: 60px;
	height: 60px;
	display: block;
	background-repeat: no-repeat;
	background-size: cover;
}
.swiper-button-next::after {
	content: none;
}
.swiper-button-next::before {
	content: "";
	background-image: url("../img/common/arrow2.svg");
	width: 60px;
	height: 60px;
	display:block;
	background-repeat: no-repeat;
	background-size: cover;
	transform: rotateZ(180deg);
}

.swiper-button-prev span,
.swiper-button-next span{
	text-align: center;
	display: block;
	font-size: 14px;
	font-weight: 700;
}

.swiper-button-disabled {
    pointer-events: none;
    opacity: 0.5;
}

@media ( min-width : 840px ) {
#news .newsWrap .topNewBox a:hover .imgArea img{
	transform: scale(1.07);
}
#news .newsWrap .topNewBox a:hover .txtArea .tit{
	color: #0096E1;
}
#news .newsWrap .topNewBox a:hover .newsOne .txtArea .tit{
	color: #0096E1;
}
	
#news .newsWrap2 .swiper-slide a:hover .imgArea img{
	transform: scale(1.07);
}
	
#news .newsWrap2 .swiper-slide a:hover .txtArea .tit{
	color: #0096E1;
}

.moreBtn:hover{
	color: #fff;
	background: #0055AF;
}

.moreBtn:hover span{
	background: #fff;
}
}

@media ( max-width : 1300px ) {
.btnWrap {
	right: 20px;
  }
}
@media ( max-width : 840px ) {
#news{
	padding: 0px 0 calc(100vw * 30 / 390);
}

#news .newsWrap{
	padding: 0 calc(100vw * 0 / 390);
	margin-bottom: 0px;
}

.commonTit{
	font-size: calc(100vw * 38 / 390);
	margin-bottom: calc(100vw * 20 / 390);
}

#news .newsWrap .topNewBox{
	grid-template-columns: 1fr;
	gap:0px;
}

#news .newsWrap .topNewBox .latestNews{
	display: flex;
	gap:calc(100vw * 10 / 390);
	align-items: center;
	padding: 0 calc(100vw * 10 / 390) calc(100vw * 15 / 390);
	border-bottom: 1px solid #C3C3C3;
	margin-bottom: calc(100vw * 15 / 390);
}

#news .newsWrap .topNewBox .latestNews .imgArea{
	width: calc(100vw * 131 / 390);
	max-width: 100%;
	height: calc(100vw * 74 / 390);
	margin-bottom: 0;
}

#news .newsWrap .topNewBox .latestNews .txtArea{
	width: calc(100vw * 225 / 390);
	padding-right: calc(100vw * 17 / 390);
}

#news .newsWrap .topNewBox .latestNews .txtArea .date{
	font-size: calc(100vw * 14 / 390);
	line-height: calc(100vw * 20 / 390);
}

#news .newsWrap .topNewBox .latestNews .txtArea .date span{
	margin-left: calc(100vw * 10 / 390);
}

#news .newsWrap .topNewBox .latestNews .txtArea .tit{
	font-size: calc(100vw * 14 / 390);
	line-height: 130%;
  -webkit-line-clamp: 3;
}

#news .newsWrap .topNewBox .latestNews2 .newsOne{
	gap:0 calc(100vw * 10 / 390);
	padding: 0 calc(100vw * 10 / 390) calc(100vw * 15 / 390);
	border-bottom: 1px solid #C3C3C3;
	margin-bottom: calc(100vw * 15 / 390);
}

#news .newsWrap .topNewBox .latestNews2 .newsOne .imgArea{
	width: calc(100vw * 131 / 390);
	max-width: 100%;
	height: calc(100vw * 74 / 390);
	margin-bottom: 0;
}

#news .newsWrap .topNewBox .latestNews2 .newsOne .txtArea{
	width: calc(100vw * 225 / 390);
	padding-right: calc(100vw * 17 / 390);
}

#news .newsWrap .topNewBox .latestNews2 .newsOne .txtArea .date{
	font-size: calc(100vw * 14 / 390);
	line-height: calc(100vw * 20 / 390);
	margin: 0;
}

#news .newsWrap .topNewBox .latestNews2 .newsOne .txtArea .tit{
	font-size: calc(100vw * 14 / 390);
	line-height: 130%;
}

#news .newsWrap2{
	padding-left: 0;
}

#news .newsSlide {
  padding-bottom: 0px;
	padding-right: 0;
}

#news .newsSlide .swiper-wrapper{
	margin-bottom: calc(100vw * 30 / 390);
	padding: 0 calc(100vw * 10 / 390) calc(100vw * 15 / 390);
	border-bottom: 1px solid #C3C3C3;
	margin-bottom: calc(100vw * 50 / 390);
}

#news .newsSlide .swiper-slide{
	width: 100%;
}

#news .newsSlide .swiper-slide .newsOne{
	display: flex;
	gap:calc(100vw * 10 / 390);
	align-items: center;
}

#news .newsSlide .swiper-slide:nth-child(n+2){
	display: none;
}

#news .newsSlide .swiper-slide .imgArea{
	width: calc(100vw * 131 / 390);
	max-width: 100%;
	height: calc(100vw * 74 / 390);
	margin-bottom: 0;
}

#news .newsSlide .swiper-slide .txtArea{
	width: calc(100vw * 225 / 390);
	padding-right: calc(100vw * 17 / 390);
}

#news .newsSlide .swiper-slide .txtArea .date{
	font-size: calc(100vw * 14 / 390);
	line-height: calc(100vw * 20 / 390);
	margin: 0;
}

#news .newsSlide .swiper-slide .txtArea .tit{
	font-size: calc(100vw * 14 / 390);
	line-height: 130%;
}

.moreBtn{
	width: calc(100vw * 272 / 390);
	height: calc(100vw * 55 / 390);
	font-size: calc(100vw * 18 / 390);
}

.moreBtn span{
	width: calc(100vw * 11 / 390);
	height: calc(100vw * 10 / 390);
	right: calc(100vw * 28 / 390);
}

	#news .moreBtn{
		margin-top: 0;
	}

#news .btnWrap {
	display: none;
  }
}




/*バナーA*/
#bnA{
	width: 100%;
	padding: 80px 0;
	margin-bottom: 40px;
}

#bnA .swiperCont{
	position: relative;
}

#bnA .swiper-slide{
	width: 400px;
}

#bnA .swiper-slide .imgBox{
	width: 400px;
	height: 225px;
	overflow: hidden;
}

#bnA .swiper-slide .imgBox img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .4s;
}

#bnA .swiper-pagination{
	bottom: -40px;
}

#bnA .swiper-pagination-bullet-active{
	background-color: #0055AF;
}

@media ( min-width : 840px ) {
#bnA .swiper-slide a:hover .imgBox img{
	transform: scale(1.07);
}
}
@media ( max-width : 840px ) {
#bnA{
	padding: calc(100vw * 10 / 390) 0;
	margin-bottom: calc(100vw * 40 / 390);
}

#bnA .swiper-slide{
	width: calc(100vw * 320 / 390);
}

#bnA .swiper-slide .imgBox{
	width: calc(100vw * 320 / 390);
	height: calc(100vw * 180 / 390);
}

#bnA .swiper-pagination{
	bottom: calc(100vw * -32 / 390);
	z-index: 1;
}

#bnA .swiper-pagination-bullet {
    width: calc(100vw * 8 / 390);
    height: calc(100vw * 8 / 390);
	border-radius: 100px;
    margin: 0 calc(100vw * 5 / 390);
}
}





/*番組情報*/
#program{
	width: 100%;
	padding: 60px 0 130px;
	position: relative;
	margin-bottom: 60px;
}

#program .commonTit{
	color: #fff;
	position: relative;
}

#program .bg{
	position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(97.02% 71.97% at 5.63% 26.69%, #7DC8F0 0%, #00A0E8 83.02%, #0096E1 100%);
  clip-path: ellipse(90% 100% at 50% 0%);
}

#program .swiperCont {
  padding-left: calc((100vw - min(97vw,1200px)) / 2);
	margin-bottom: 40px;
}

#program .swiperCont .programSlide{
	padding-right: 150px;
}

#program .swiper-slide{
	width: 240px;
	background: #fff;
	border-radius: 5px;
	padding: 15px 10px 20px;
}

#program .swiper-slide a{
	display: block;
}

#program .swiper-slide .tit{
	font-size: 18px;
	font-weight: 700;
	line-height: 29px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 10px;
	transition: .3s;
}

#program .swiper-slide .imgBox{
/*	width: 220px;
	height: 85px;*/
	border-bottom: 1px solid #C3C3C3;
	padding-bottom: 10px;
	margin-bottom: 15px;
	overflow: hidden;
}

#program .swiper-slide .imgBox img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .3s;
}

#program .swiper-slide .txtBox{
	padding: 0 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	
}

#program .swiper-slide .txtBox .date{
	font-size: 16px;
	font-weight: 500;
	line-height: 150%;
	max-width: 170px;
	min-height: 48px;
	transition: .3s;
}

#program .swiper-slide .txtBox .arrow{
	content: url("../img/common/arrow.svg");
	width: 17px;
}

#program .btnWrap {
  bottom: 147px;
}

#program .btnWrap .swiper-button-prev::before {
  background-image: url("../img/common/arrow3.svg");
}

#program .btnWrap .swiper-button-next::before {
  background-image: url("../img/common/arrow3.svg");
}

#program .btnWrap .swiper-button-prev span,
#program .btnWrap .swiper-button-next span {
	color: #fff;
}

#program .moreBtn{
	border: none;
}

@media ( min-width : 1400px ) {
#program .swiperCont {
  padding-left: calc((100vw - min(92vw,1700px)) / 2);
}
}

@media ( min-width : 840px ) {
#program .swiper-slide a:hover .imgBox img{
	transform: scale(1.07);
}
#program .swiper-slide a:hover .tit{
	color: #0096E1;
}
#program .swiper-slide a:hover .date{
	color: #0096E1;
}
}

@media ( max-width : 840px ) {
#program{
	padding: calc(100vw * 40 / 390) calc(100vw * 10 / 390) calc(100vw * 60 / 390);
	margin-bottom: calc(100vw * 40 / 390);
}

#program .bg{
 clip-path: ellipse(160% 100% at 50% 0%);
}

#program .swiperCont {
  padding-left:0;
	margin-bottom: calc(100vw * 30 / 390);
}

#program .swiperCont .programSlide{
	padding-right: 0px;
}

#program .swiperCont .programSlide .swiper-wrapper{
	flex-wrap: wrap;
	gap:calc(100vw * 10 / 390);
}

#program .swiper-slide{
	width: calc(100vw * 180 / 390);
	padding: calc(100vw * 10 / 390);
}

#program .swiper-slide .tit{
	display: none;
}

#program .swiper-slide .imgBox{
	width: 100%;
	height: auto;
	border-bottom: none;
	padding-bottom: 0px;
	margin-bottom: 0;
}

#program .swiper-slide .txtBox{
	display: none;
}

#program .btnWrap {
  display: none;
}
}





/*イベント*/
#event{
	width: 100%;
	padding: 0px 0 40px;
	position: relative;
	margin-bottom: 36px;
}

#event .swiperCont {
  padding-left: calc((100vw - min(97vw,1200px)) / 2);
	margin-bottom: 90px;
}

#event .swiperCont .eventSlide{
	padding-right: 150px;
}

#event .swiper-slide{
	width: 280px;
}

#event .swiper-slide a{
	display: block;
	position: relative;
}

#event .swiper-slide .copy{
	position: absolute;
	right: 0;
	top: 428px;
	font-size: 10px;
	font-weight: 400;
}

#event .swiper-slide .cat{
	font-size: 16px;
	font-weight: 500;
	padding: 4px 10px;
	color: #fff;
	display: inline-block;
	border-radius: 5px 5px 0px 0px;
	min-width: 100px;
	text-align: center;
}

#event .swiper-slide .cat.exhibition{
	background: #FFB124;
}

#event .swiper-slide .cat.concert{
	background: #8F5CB8;
}

#event .swiper-slide .cat.sports{
	background: #1AB8FF;
}

#event .swiper-slide .cat.preview{
	background: #1A9C13;
}

#event .swiper-slide .imgBox{
	width: 280px;
	/*height: 395px;*/
	margin-bottom: 20px;
	overflow: hidden;
	background: #EBEBEB;
	border-radius: 0px 10px 10px 10px;
}

#event .swiper-slide .imgBox img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 224/316;
	transition: .3s;
}

#event .swiper-slide .txtBox .tit{
	font-size: 18px;
	font-weight: 700;
	line-height: 130%;
	overflow: hidden;
	display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
	margin-bottom: 10px;
	text-align: justify;
	transition: .3s;
	color: #0055AF;
}

#event .swiper-slide .txtBox .date{
	font-size: 16px;
	font-weight: 500;
	line-height: 23px;
	margin-bottom: 0;
	color: #0055AF;
	transition: .3s;
}

#event .swiper-pagination{
	display: none;
}

#event .btnWrap {
  bottom: 120px;
}

#event .linkWrap{
	display: flex;
	justify-content: center;
	gap:0 10px;
}

#event .linkWrap .moreBtn{
	margin: 0;
}

.moreBtn.orange{
	background: #FF8800;
	text-align: center;
	line-height: 20px;
	border: none;
	color: #fff;
}

.moreBtn.orange span{
	background: #fff;
}


@media ( min-width : 840px ) {
.moreBtn.orange:hover{
	background: #0055AF;
}

#event .swiper-slide a:hover .imgBox img{
	transform: scale(1.07);
}

#event .swiper-slide a:hover .txtBox .tit{
	color: #0096E1;
}

#event .swiper-slide a:hover .txtBox .date{
	color: #0096E1;
}
}

@media ( min-width : 1400px ) {
#event .swiperCont {
  padding-left: calc((100vw - min(92vw,1700px)) / 2);
}
}

@media ( max-width : 840px ) {
#event{
	padding: 0px 0 calc(100vw * 46 / 390);
	margin-bottom: 0;
}

#event .swiperCont {
  padding-left: 0;
	margin-bottom: calc(100vw * 80 / 390);
}

#event .swiperCont .eventSlide{
	padding-right: 0;
}

#event .swiper-slide{
	width: calc(100vw * 280 / 390);
}

#event .swiper-slide .copy{
	top: calc(100vw * 429 / 390);
	font-size: calc(100vw * 10 / 390);
}

#event .swiper-slide .cat{
	font-size: calc(100vw * 16 / 390);
	padding: calc(100vw * 4 / 390) calc(100vw * 10 / 390);
	min-width: calc(100vw * 100 / 390);
}

#event .swiper-slide .imgBox{
	width: calc(100vw * 280 / 390);
	/*height: calc(100vw * 395 / 390);*/
	margin-bottom: calc(100vw * 20 / 390);
}

#event .swiper-slide .txtBox .tit{
	font-size: calc(100vw * 16 / 390);
	margin-bottom: calc(100vw * 10 / 390);
}

#event .swiper-slide .txtBox .date{
	font-size: calc(100vw * 16 / 390);
	line-height: calc(100vw * 23 / 390);
}

#event .btnWrap {
  display: none;
}

#event .linkWrap{
	flex-wrap: wrap;
	gap:calc(100vw * 10 / 390);
}

#event .linkWrap .moreBtn{
	margin: 0;
}

.moreBtn.orange{
	font-size: calc(100vw * 14 / 390);
	line-height: calc(100vw * 20 / 390);
}

#event .swiper-pagination{
	display: block;
	bottom: calc(100vw * 200 / 390);
	z-index: 1;
}

#event .swiper-pagination-bullet-active{
	background-color: #0055AF;
}
#event .swiper-pagination-bullet {
    width: calc(100vw * 8 / 390);
    height: calc(100vw * 8 / 390);
	border-radius: 100px;
    margin: 0 calc(100vw * 5 / 390);
}
}




/*アナウンサー*/
#announcer{
	width: 100%;
	padding: 60px 0 130px;
	position: relative;
	margin-bottom: 60px;
}

#announcer .commonTit{
	color: #fff;
	position: relative;
}

#announcer .bg{
	position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse 100.84% 211.02% at 8.59% 53.06%,#7DC8F0 0%,#00A0E8 50%,#FFFFFF 100%);
  clip-path: ellipse(90% 100% at 50% 0%);
}

#announcer .swiperCont {
  padding-left: calc((100vw - min(97vw,1200px)) / 2);
	margin-bottom: 40px;
}

#announcer .swiperCont .announcerSlide{
	padding-right: 150px;
}

#announcer .swiper-slide{
	width: 180px;
	position: relative;
}

#announcer .swiper-slide .ann{
	display: block;
}

#announcer .swiper-slide .name{
	font-size: 18px;
	font-weight: 700;
	line-height: 29px;
	margin-bottom: 0px;
	color: #fff;
	transition: .3s;
	text-align: center;
}

#announcer .swiper-slide .imgBox{
	width: 180px;
	height: 180px;
	border-radius: 1000px;
	overflow: hidden;
	background: #e0e0e0;
}

#announcer .swiper-slide .imgBox img{
	width: 100%;
	height: 100%;
	object-fit:scale-down;
	transition: .3s;
}

#announcer .swiper-slide .insta{
	width: 50px;
	height: 50px;
	background: #fff;
	position: absolute;
	bottom: 24px;
	right: 0;
	border-radius: 1000px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: .3s;
}

#announcer .swiper-slide .insta span{
	content: url("../img/common/Instagram.svg");
	width: 30px;
}

#announcer .moreBtn{
	border: none;
}

#announcer .btnWrap {
  bottom: 154px;
}
#announcer .swiper-pagination{
	display: none;
}


@media ( min-width : 840px ) {
#announcer .swiper-slide .ann:hover .imgBox img{
	transform: scale(1.07);
}
#announcer .swiper-slide .ann:hover .name{
	
}
#announcer .swiper-slide .insta:hover{
	transform: scale(1.15);
}
}

@media ( min-width : 1400px ) {
#announcer .swiperCont {
  padding-left: calc((100vw - min(92vw,1700px)) / 2);
}
}

@media ( max-width : 840px ) {
#announcer{
	padding: calc(100vw * 40 / 390) 0 calc(100vw * 70 / 390);
	margin-bottom: calc(100vw * 68 / 390);
}

#announcer .bg{
	clip-path: ellipse(160% 100% at 50% 0%);
}

#announcer .swiperCont {
  padding-left: calc(100vw * 5 / 390);
	margin-bottom: calc(100vw * 58 / 390);
}

#announcer .swiperCont .announcerSlide{
	padding-right: 0px;
}

#announcer .swiper-slide{
	width: calc(100vw * 180 / 390);
}

#announcer .swiper-slide .name{
	font-size: calc(100vw * 18 / 390);
	line-height: calc(100vw * 29 / 390);
}

#announcer .swiper-slide .imgBox{
	width: calc(100vw * 180 / 390);
	height: calc(100vw * 180 / 390);
	margin-bottom: calc(100vw * 15 / 390);
}

#announcer .swiper-slide .insta{
	width: calc(100vw * 60 / 390);
	height: calc(100vw * 60 / 390);
	bottom: calc(100vw * 30 / 390);
	right: calc(100vw * -10 / 390);
}

#announcer .swiper-slide .insta span{
	width: calc(100vw * 35 / 390);
}

#announcer .btnWrap {
 display: none;
}

#announcer .swiper-pagination{
	display: block;
	bottom: calc(100vw * 150 / 390);
	z-index: 1;
}

#announcer .swiper-pagination-bullet-active{
	background-color: #0055AF;
}
#announcer .swiper-pagination-bullet {
    width: calc(100vw * 8 / 390);
    height: calc(100vw * 8 / 390);
	border-radius: 100px;
    margin: 0 calc(100vw * 5 / 390);
}
}




/*お知らせ&公式SNS*/
#newsAsns{
	width: 100%;
	padding: 0 20px;
	margin-bottom: 40px;
}

#newsAsns .newsAsnsWrap{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

#newsAsns .newsAsnsWrap .commonTit{
	font-size: 36px;
	text-align: left;
	margin-bottom: 26px;
}

#newsAsns .newsAsnsWrap .newsBox{
	border: solid 1px #C3C3C3;
	border-radius: 10px;
	padding: 30px;
	height: 500px;
	overflow-y: scroll;
}

#newsAsns .newsAsnsWrap .newsBox .newsOne{
	display: grid;
	grid-template-columns: 1fr 2fr 1fr;
	align-items: center;
	gap:6px 0;
	border-bottom: 1px solid #C3C3C3;
	padding: 14px 0;
}

#newsAsns .newsAsnsWrap .newsBox .newsOne:last-child{
	border-bottom: none;
}

#newsAsns .newsAsnsWrap .newsBox .newsOne .date{
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 0;
	width: 130px;
	transition: .3s;
}

#newsAsns .newsAsnsWrap .newsBox .newsOne .cat{
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 0;
	background: #0055AF;
	display: inline-flex;
	color: #fff;
	width: fit-content;
	padding: 2px 12px;
	border-radius: 3px;
}

#newsAsns .newsAsnsWrap .newsBox .newsOne .tit{
	font-size: 16px;
	font-weight: 500;
	text-align: justify;
	grid-column: 1 / -1;
	align-items: center;
  display: flex;
	flex-wrap: wrap;
	gap:0 10px;
	transition: .3s;
}

#newsAsns .newsAsnsWrap .newsBox .newsOne .desc{
	font-size: 13px;
	color: #777;
	transition: .3s;
	text-align: justify;
	grid-column: 1 / -1;
}

#newsAsns .newsAsnsWrap .newsBox .newsOne .tit .pdf{
	mask-image: url("../img/common/pdf.svg");
	width: 22px;
	height: 23px;
	background: #333333;
	transition: .3s;
	display: inline-flex;
}

#newsAsns .newsAsnsWrap .sns-tabs {
	border: solid 1px #C3C3C3;
	border-radius: 10px;
	padding: 30px;
	height: 500px;
	overflow-y: scroll;
}

#newsAsns .newsAsnsWrap .tab-buttons {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
}

#newsAsns .newsAsnsWrap .tab-buttons li {
  cursor: pointer;
  opacity: 0.3;
  transition: opacity 0.3s;
}

#newsAsns .newsAsnsWrap .tab-buttons li.active {
  opacity: 1;
}

#newsAsns .newsAsnsWrap .tab-buttons li span{
	width: 55px;
	height: 55px;
}

#newsAsns .newsAsnsWrap .tab-buttons li.insta span{
	content: url("../img/common/sns_insta.svg");
}

#newsAsns .newsAsnsWrap .tab-buttons li.x span{
	content: url("../img/common/sns_x.svg");
}

#newsAsns .newsAsnsWrap .tab-buttons li.youtube span{
	content: url("../img/common/sns_youtube.svg");
}

#newsAsns .newsAsnsWrap .tab-buttons li.tiktok span{
	content: url("../img/common/sns_tiktok.svg");
}

#newsAsns .newsAsnsWrap .tab-content {
  display: none;
}

#newsAsns .newsAsnsWrap .tab-content.active {
  display: block;
}

#newsAsns .newsAsnsWrap .account-list {
  border-top: 1px solid #C3C3C3;
}

#newsAsns .newsAsnsWrap .account-list li {
  border-bottom: 1px solid #C3C3C3;
}

#newsAsns .newsAsnsWrap .account-list a {
  padding: 20px 8px;
	position: relative;
  text-decoration: none;
	display: grid;
  grid-template-columns: auto 1fr;
	align-items: center;
  gap: 0 20px;
}

#newsAsns .newsAsnsWrap #instagram .account-list .ico {
	content: url("../img/common/Instagram.svg");
	width: 36px;
	grid-row: 1 / 3;
}

#newsAsns .newsAsnsWrap #x .account-list .ico {
	content: url("../img/common/x2.svg");
	width: 30px;
	grid-row: 1 / 3;
}

#newsAsns .newsAsnsWrap #youtube .account-list .ico {
	content: url("../img/common/youtube2.svg");
	width: 30px;
	grid-row: 1 / 3;
}

#newsAsns .newsAsnsWrap #tiktok .account-list .ico {
	content: url("../img/common/tiktok.svg");
	width: 30px;
	grid-row: 1 / 3;
}

#newsAsns .newsAsnsWrap .account-list .name {
  display: block;
	font-size: 16px;
  font-weight: 500;
	line-height: 20px;
	transition: .3s;
}

#newsAsns .newsAsnsWrap .account-list .desc {
  display: block;
  font-size: 13px;
  color: #777;
	transition: .3s;
}

#newsAsns .newsWrap{
	width: min(calc(100vw * 578 / 1200), 578px);
}

#newsAsns .snsWrap{
	width: min(calc(100vw * 578 / 1200), 578px);
	margin-right: -40px;
	padding-right: 40px;
}


@media ( min-width : 840px ) {
#newsAsns .newsAsnsWrap .newsBox .newsOne:hover .date{
	color: #0096e1;
}
#newsAsns .newsAsnsWrap .newsBox .newsOne:hover .tit{
	color: #0096e1;
}
#newsAsns .newsAsnsWrap .newsBox .newsOne:hover .tit .pdf{
	background: #0096e1;
}
#newsAsns .newsAsnsWrap .newsBox .newsOne:hover .desc{
	color: #0096e1;
}

#newsAsns .newsAsnsWrap .account-list li a:hover .name{
	color: #0096e1;
}

#newsAsns .newsAsnsWrap .account-list li a:hover .desc{
	color: #0096e1;
}
}

@media ( max-width : 840px ) {
#newsAsns{
	padding: 0 calc(100vw * 20 / 390);
	margin-bottom: calc(100vw * 60 / 390);
}

#newsAsns .newsAsnsWrap{
	grid-template-columns: 1fr;
	gap: calc(100vw * 65 / 390);
  }

#newsAsns .newsAsnsWrap .commonTit{
	font-size: calc(100vw * 38 / 390);
	text-align: center;
	margin-bottom: calc(100vw * 18 / 390);
}

#newsAsns .newsAsnsWrap .newsBox{
	padding:calc(100vw * 15 / 390) calc(100vw * 20 / 390) calc(100vw * 10 / 390);
	height: calc(100vw * 400 / 390);
}

#newsAsns .newsAsnsWrap .newsBox .newsOne{
	gap:calc(100vw * 6 / 390) 0;
	padding: calc(100vw * 15 / 390) 0;
}

#newsAsns .newsAsnsWrap .newsBox .newsOne .date{
	font-size: calc(100vw * 14 / 390);
	width: calc(100vw * 130 / 390);
}

#newsAsns .newsAsnsWrap .newsBox .newsOne .cat{
	font-size: calc(100vw * 13 / 390);
	padding: calc(100vw * 2 / 390) calc(100vw * 12 / 390);
}

#newsAsns .newsAsnsWrap .newsBox .newsOne .tit{
	font-size: calc(100vw * 16 / 390);
	line-height: calc(100vw * 23 / 390);
	gap:0 calc(100vw * 10 / 390);
}

#newsAsns .newsAsnsWrap .newsBox .newsOne .tit .pdf{
	width: calc(100vw * 22 / 390);
	height: calc(100vw * 23 / 390);
	mask-size:cover;
}

#newsAsns .newsAsnsWrap .newsBox .newsOne .desc{
	font-size: calc(100vw * 13 / 390);
	line-height: calc(100vw * 23 / 390);
	gap:0 calc(100vw * 10 / 390);
}

#newsAsns .newsAsnsWrap .sns-tabs {
	padding: calc(100vw * 30 / 390);
	height: calc(100vw * 466 / 390);
}

#newsAsns .newsAsnsWrap .tab-buttons {
  gap: calc(100vw * 22 / 390);
  margin-bottom: calc(100vw * 20 / 390);
}

#newsAsns .newsAsnsWrap .tab-buttons li span{
	width: calc(100vw * 55 / 390);
	height: calc(100vw * 55 / 390);
}

#newsAsns .newsAsnsWrap .account-list a {
  padding: calc(100vw * 20 / 390) calc(100vw * 8 / 390);
  gap: 0 calc(100vw * 20 / 390);
}

#newsAsns .newsAsnsWrap #instagram .account-list .ico {
	width: calc(100vw * 36 / 390);
}

#newsAsns .newsAsnsWrap #x .account-list .ico {
	width: calc(100vw * 30 / 390);
}

#newsAsns .newsAsnsWrap #youtube .account-list .ico {
	width: calc(100vw * 30 / 390);
}

#newsAsns .newsAsnsWrap #tiktok .account-list .ico {
	width: calc(100vw * 30 / 390);
}

#newsAsns .newsAsnsWrap .account-list .name {
	font-size: calc(100vw * 16 / 390);
	line-height: calc(100vw * 20 / 390);
}

#newsAsns .newsAsnsWrap .account-list .desc {
  font-size: calc(100vw * 13 / 390);
}

#newsAsns .newsWrap{
	width: calc(100vw * 350 / 390);
}

#newsAsns .snsWrap{
	width: calc(100vw * 350 / 390);
	margin-right: 0px;
	padding-right: 0px;
}
}




/*海と日本プロジェクト*/
#uminihi{
	width: 100%;
	border-top: solid 35px #DFF4FF;
	border-bottom: solid 35px #DFF4FF;
}

#uminihi iframe{
	width: 100%;
  height: 630px;
  margin-bottom: -6px;
}
@media ( max-width : 744px ) {
#uminihi{
	border-top: none;
	border-bottom:none;
	padding: 0 calc(100vw * 25 / 390);
}

#uminihi iframe{
  height: calc(100vw * 400 / 390);
  margin-bottom: 0;
}
}


/*バナーB*/
#bnB{
	width: 100%;
	padding: 50px 0;
}

#bnB .swiper-slide {
  width: 480px;
}

#bnB .swiper-slide .imgBox {
  width: 480px;
  height: 180px;
  overflow: hidden;
}

#bnB .swiper-slide .imgBox img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .4s;
}

@media ( min-width : 840px ) {
#bnB .swiper-slide a:hover .imgBox img{
	transform: scale(1.07);
}
}

@media ( max-width : 840px ) {
#bnB{
	padding: calc(100vw * 40 / 390) calc(100vw * 10 / 390) 0;
	margin-bottom: calc(100vw * 40 / 390);
}

#bnB .swiper-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap:calc(100vw * 12 / 390) calc(100vw * 8 / 390);
}

#bnB .swiper-slide {
  width:calc(100vw * 181 / 390);
}

#bnB .swiper-slide .imgBox {
  width: calc(100vw * 181 / 390);
  height: calc(100vw * 68 / 390);
}
}

/*バナーC*/
#bnC{
	width: 100%;
	padding: 0 20px;
}

#bnC .bnWrap{
	width: 100%;
	max-width: 1200px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(232px, 1fr));
	gap:10px;
	margin: 0 auto;
	justify-content: center;
}

#bnC .bnWrap a{
	display: block;
	overflow: hidden;
}

#bnC .bnWrap a img{
	width: 100%;
	height: 100%;
	max-width: 277px;
	object-fit: cover;
	transition: .4s;
}

@media ( min-width : 840px ) {
#bnC .bnWrap a:hover img{
	transform: scale(1.07);
}
}

@media ( max-width : 840px ) {
#bnC{
	padding: 0 calc(100vw * 10 / 390);
}

#bnC .bnWrap{
	grid-template-columns: repeat(2, 1fr);
	gap:calc(100vw * 10 / 390);
}
}

/*フッター*/
#footer{
	width: 100%;
	padding: 140px 20px 30px;
	position: relative;
	z-index: 1;
}

#footer .bg{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #0096E1;
	clip-path: ellipse(90% 100% at 50% 100%);
	z-index: -1;
}

#footer .object{
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	content: url("../img/common/footer_object.svg");
	z-index: -1;
	transform: translateX(258px);
}

#footer .footerWrap{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

#footer .footerWrap .menuList{
	width: 100%;
	max-width: 958px;
	margin: 0 auto;
	display: grid;
	grid-auto-flow: column; 
  grid-auto-rows: auto;    
  grid-template-rows: repeat(3, auto);
	gap:20px 0;
	justify-content: space-between;
	margin-bottom: 56px;
}

#footer .footerWrap .menuList li{
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	transition: .3s;
}

#footer .footerWrap .footerBox{
	border-top: 1px solid #FFFFFF;
	padding-top: 64px;
	display: grid;
	grid-template-columns: 2.4fr 1fr;
	justify-content: space-between;
	margin-bottom: 150px;
}

#footer .footerWrap .footerBox .companyBox h1{
	font-size: 0;
	content: url("../img/common/logo.svg");
	width: 320px;
	margin-bottom: 30px;
}

#footer .footerWrap .footerBox .companyBox .name{
	font-size: 19px;
	font-weight: 600;
	margin-bottom: 15px;
	color: #fff;
}

#footer .footerWrap .footerBox .companyBox .address{
	font-size: 16px;
	font-weight: 400;
	line-height: 160%;
	margin-bottom: 28px;
	color: #fff;
}

#footer .footerWrap .footerBox .companyBox .link{
	font-size: 14px;
	font-weight: 500;
	color: #fff;
	transition: .3s;
}

#footer .footerWrap .footerBox .linkBox{
	margin-top: 24px;
	display: flex;
  gap: 20px;
  flex-direction: column;
}

#footer .footerWrap .footerBox .linkBox a{
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff;
	border-radius: 5px;
	color: #0055AF;
	font-size: 18px;
	font-weight: 700;
	width: 272px;
	height: 55px;
	letter-spacing: 0.04em;
	position: relative;
	transition: .3s;
}

#footer .footerWrap .footerBox .linkBox a span{
	mask-image: url("../img/common/contact.svg");
	width: 20px;
	height: 20px;
	background: #0055AF;
	position: absolute;
	right: 30px;
	mask-size:cover;
	mask-repeat: no-repeat;
	transition: .3s;
}

#footer small{
	font-size: 12px;
	font-weight: 400;
	display: block;
	color: #fff;
	text-align: center;
}


@media ( min-width : 840px ) {
#footer .footerWrap .menuList li:hover{
	opacity: .7;
}

#footer .footerWrap .footerBox .companyBox .link:hover{
	opacity: .7;
}

#footer .footerWrap .footerBox .linkBox a:hover{
	background: #0055AF;
	color: #fff;
}

#footer .footerWrap .footerBox .linkBox a:hover span{
	background: #fff;
}
}

@media ( max-width : 840px ) {
#footer{
	padding: calc(100vw * 90 / 390) calc(100vw * 32 / 390) calc(100vw * 16 / 390);
	overflow: hidden;
}

#footer .bg{
	clip-path: ellipse(200% 100% at 50% 100%);
}

#footer .object{
	bottom: calc(100vw * -7 / 390);
	width: calc(100vw * 426 / 390);
	transform: translateX(calc(100vw * -30 / 390));
}

#footer .footerWrap .menuList{
	display: none;
}

#footer .footerWrap .footerBox{
	border-top: none;
	padding-top: 0;
	grid-template-columns: 1fr;
	justify-content: flex-start;
	margin-bottom: calc(100vw * 53 / 390);
}

#footer .footerWrap .footerBox .companyBox{
	margin-bottom: calc(100vw * 43 / 390);
}

#footer .footerWrap .footerBox .companyBox h1{
	width: calc(100vw * 320 / 390);
	margin-bottom: calc(100vw * 30 / 390);
}

#footer .footerWrap .footerBox .companyBox .name{
	font-size: calc(100vw * 19 / 390);
	margin-bottom: calc(100vw * 15 / 390);
}

#footer .footerWrap .footerBox .companyBox .address{
	font-size: calc(100vw * 16 / 390);
	margin-bottom: calc(100vw * 14 / 390);
}

#footer .footerWrap .footerBox .companyBox .link{
	font-size: calc(100vw * 16 / 390);
}

#footer .footerWrap .footerBox .linkBox{
	margin-top: 0;
  gap: calc(100vw * 20 / 390);
	align-items: center;
}

#footer .footerWrap .footerBox .linkBox a{
	font-size: calc(100vw * 18 / 390);
	width: calc(100vw * 320 / 390);
	height: calc(100vw * 55 / 390);
}

#footer .footerWrap .footerBox .linkBox a span{
	width: calc(100vw * 20 / 390);
	height: calc(100vw * 20 / 390);
	right: calc(100vw * 30 / 390);
}

#footer small{
	font-size: calc(100vw * 12 / 390);
}
}


.topBtn{
  position: sticky;
  right: 25px;
  bottom: 160px;
  z-index: 3;
	opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
	text-align: right;
	height: 0;
}

.topBtn span{
  content: url("../img/common/top2.png");
	width: 171px;
}

.topBtn.is-show{
  opacity: 1;
  pointer-events: auto;
}

.topBtn.is-stop{
  position: sticky;
	/*bottom: -250px;*/
}

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

#overWrap{
  position: relative;
	margin-bottom: 100px;
}
@media ( max-width : 840px ) {
.topBtn{
  right: calc(100vw * -20 / 390);
  bottom: calc(100vw * 130 / 390);
}

.topBtn span{
	width: calc(100vw * 130 / 390);
}

.topBtn.is-stop{
  /*bottom: calc(100vw * -170 / 390);*/
}

#overWrap{
	margin-bottom: calc(100vw * 76 / 390);
}
}


.scroll__inner {
  -ms-overflow-style: none;
  /* IE, Edge 対応 */
  scrollbar-width: none;
  /* Firefox 対応 */
}
.scroll__inner::-webkit-scrollbar {
  /* Chrome, Safari 対応 */
  display: none;
}
.simplebar-scrollbar::before {
  background: #0055AF;
  border-radius: 0;
  width: 11px;
	margin-left: -2px;
  margin-top: -2px;
	border-radius: 20px;
}
.simplebar-scrollbar.simplebar-visible::before {
  opacity: 1;
}
.simplebar-track {
  background: #EEEEEE;
  width: 12px !important;
}

.simplebar-track.simplebar-vertical {
  top: 0;
  width: 11px;
  right: 0;
}
@media ( max-width : 840px ) {
.simplebar-scrollbar::before {
  width: calc(100vw * 8 / 390);
}
.simplebar-track {
  background: #EEEEEE;
  width: calc(100vw * 9 / 390) !important;
}

.simplebar-track.simplebar-vertical {
  width: calc(100vw * 8 / 390);
}
}

#slider .nowOnAir .buppy {
	position: absolute;
	content: url("../img/common/buppy2.png");
	width: 124px;
	top: -56px;
	left: 7px;
}
@media ( max-width : 840px ) {
#slider .nowOnAir .buppy {
	width: calc(100vw * 128 / 390);
	top: calc(100vw * -56 / 390);
	left: 0;
	right: 0;
	margin: auto;
}
}