@charset "utf-8";



/*リセットCSS（sanitize.css）の読み込み
---------------------------------------------------------------------------*/
@import url("https://unpkg.com/sanitize.css");

/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css");

/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1+Code:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');

/*slick.cssの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css");

/*テンプレート専用cssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("animation.css");
@import url("inview.css");



/*全体の設定
---------------------------------------------------------------------------*/
html,body {
	margin: 0;padding: 0;
	font-size: 13px;	/*基準となるフォントサイズ。下の方にある「画面幅900px以上」で基準を大きなサイズに再設定しています。*/
	overflow-x: hidden;
}
html {
    scroll-behavior: smooth; /**/
    height: 100%;
    width: 100%;
    font-size: 62.5%;
    background: url(../images/bg.png) no-repeat top center ;	/*背景色、背景画像の読み込み、最後の100%は画像幅。*/
    background-size: cover;
}
p#vw {
    font-size: 5vw;
}
p#vh {
    font-size: 5vh;
}
body {
	font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", "Osaka", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;	/*フォント種類*/
	-webkit-text-size-adjust: none;
	background-color: linear-gradient(139.76deg, #B3E0F3 10.11%, #E1ECCF 88.43%);	/*背景色*/
	color: #000000;		/*全体の文字色*/
	line-height: 2;		/*行間*/
    padding-bottom: 200px;
    background: url(../images/bg.png) no-repeat top center ;	/*背景色、背景画像の読み込み、最後の100%は画像幅。*/
    background-size: cover;
}

/*リセット*/
figure {margin: 0;}
dd {margin: 0;}
nav {margin: 0;padding: 0;}

/*table全般の設定*/
table {border-collapse:collapse;}

/*画像全般の設定*/
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}

/*ul,olタグ*/
ul, ol {margin-bottom: 30px;}

.pc-none{display:none;}
.br-sp{display: none;}

/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: #000;	/*文字色*/
	transition: 0.3s;
}
a:hover {
	color: #4B71CB;	/*文字色*/
	transition: 0.3s;
}

/*フローティング
---------------------------------------------------------------------------*/
.floating_banner {
position: fixed;
right: 10px;
/* ページ右下に表示の場合 */
bottom: 70px;
z-index: 101;
block-size: fit-content;
inline-size: fit-content;
cursor:pointer;
}

.floating_banner>a,
.floating_banner>a>img {
display: block;
width: 280px;
cursor:pointer;
}
.floating_contact{
position: fixed;
bottom:0px;
}
.floating_banner a:hover{
opacity: 0.8;
}
.floating_sp{display: none;}
.floating_pc{display: block;}

@media screen and (max-width:768px) {
.floating_banner>a,
.floating_banner>a>img {
width: 180px;
}
.floating_banner {
bottom: 50px;
right: 5px;
}
.floating_contact{
bottom:0px;
}
.floating_pc{display: none;}
.floating_sp{display: block;}
}
/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {display: block;}

/*ボタンの設定*/
.pagetop a {
	display: none;
    text-decoration: none;text-align: center;z-index: 99;
	position: fixed;	/*スクロールに追従しない(固定で表示)為の設定*/
	right: 20px;		/*右からの配置場所指定*/
	bottom: 20px;		/*下からの配置場所指定*/
	color: #fff;		/*文字色*/
	font-size: 1.5em;	/*文字サイズ*/
	background: rgba(0,161,226,0.8);	/*背景色。0,0,0は黒の事で0.2は色が20%出た状態。*/
	width: 60px;		/*幅*/
	line-height: 60px;	/*高さ*/
	border-radius: 50%;	/*円形にする*/
}
/*header（ロゴなどが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	display: flex;					/*flexボックスを使う指定*/
	justify-content: flex-start;	/*並びかたの種類の指定*/
	align-items: center;			/*垂直揃えの指定。天地中央に配置されるように。*/
	background: rgba(255, 255, 255, 0.5);			/*背景色*/
	position: fixed;
    z-index: 1;	/*スクロールしても動かないようにする指定*/
	width: 100%;
	padding: 0 1%;					/*上下、左右へのヘッダー内の余白*/
	height: 60px;					/*ヘッダーの高さ。変更する場合、数行下にある#mainimgのtopの数値も合わせて変更して下さい。*/
    /*box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, .10);*/
}
/*ヘッダーのリンクテキストの文字色*/
header a {
    text-decoration:underline;
}
header.scrolled {
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/*ロゴ画像*/
header #logo img {display: block;}
header #logo {
	margin: 0;
	width: 250px;	/*幅*/
}

/*menubarブロック初期設定
---------------------------------------------------------------------------*/
#menubar ul {list-style: none;margin: 0;padding: 0; z-index: 100;}
#menubar li {flex: 1;}
#menubar{display: flex; width: 100%; font-size: 0.9vw!important;}

/*メニューを非表示にしておく*/
#menubar {display: none;}

/*開閉用のスタイル*/
#menubar.db {display: block;}
#menubar.dn {display: none;}

/*メニュー１個あたりの設定*/
#menubar a {
	display: block;
    text-decoration: none;
	text-align: center;		/*テキストを中央に*/
	padding: 10px;			/*メニュー内の余白*/
}
/*@media screen and (max-width:1366px) {
    #menubar ul li{display: none;}
}*/
@media screen and (max-width:1279px) {
    #menubar ul li{display: block; font-size: 15px;}
    #menubar img{float: left; width: 80px; display: inline; margin-top:50px;}
    #menubar.db a{display:inline-block!important; font-weight: bold;}
    #menubar.db a:hover{opacity: 0.3;background-color: rgba(0,0,0,0.5);}
}

/*小さな端末用の設定（開閉ブロック）
---------------------------------------------------------------------------*/
/*メニューブロック設定*/
.s #menubar.db {
	position: fixed;overflow: auto;
    z-index: 100;
	left: 0px;top: 0px;
	width: 100%;
	height: 100%;
	padding: 50px 20px;	/*上下、左右へのブロック内の余白*/
	background: rgba(0,25,39,0.9);		/*背景色。0,0,0は黒の事で0.9は色が90%出た状態の事。*/
	animation: animation1 0.2s both;	/*animation.cssの、animation1を実行する。0.2sは0.2秒の事。*/
	text-align: center;	/*内容をセンタリング*/
	color: #fff;		/*文字色*/
}
.s #menubar.db a {
	display: block;
	color: #fff;	/*リンクテキストの文字色*/
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*開閉用のスタイル*/
#menubar_hdr.db {display: flex;}
#menubar_hdr.dn {display: none;}

/*３本バーを囲むブロック*/
#menubar_hdr {
	position: fixed;z-index: 101;
	cursor: pointer;
	right: 10px;			/*右からの配置場所指定*/
	top: 5px;			/*上からの配置場所指定*/
	padding: 16px 14px;	/*上下、左右への余白*/
	width: 50px;		/*幅（３本バーが出ている場合の幅になります）*/
	height: 50px;		/*高さ*/
	display: flex;					/*flexボックスを使う指定*/
	flex-direction: column;			/*子要素（３本バー）を縦並びにする*/
	justify-content: space-between;	/*並びかたの種類の指定*/
    border-radius: 25px;
	background: linear-gradient(139.76deg, #2EA8FF 10.11%, #15D2E3 88.43%);	/*背景色*/
}

/*バー１本あたりの設定*/
#menubar_hdr span {
	display: block;
	transition: 0.3s;	/*アニメーションにかける時間。0.3秒。*/
	border-top: 2px solid #fff;	/*線の幅、線種、色*/
}

/*×印が出ている状態の設定。※１本目および２本目のバーの共通設定。*/
#menubar_hdr.ham span:nth-of-type(1),
#menubar_hdr.ham span:nth-of-type(3) {
	transform-origin: center center;	/*変形の起点。センターに。*/
	width: 35px;						/*バーの幅*/
}

/*×印が出ている状態の設定。※１本目のバー。*/
#menubar_hdr.ham span:nth-of-type(1){
	transform: rotate(45deg) translate(2px, 10px);	/*回転45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※３本目のバー。*/
#menubar_hdr.ham span:nth-of-type(3){
	transform: rotate(-45deg) translate(2px, -10px);	/*回転-45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※２本目のバー。*/
#menubar_hdr.ham span:nth-of-type(2){
	display: none;	/*２本目は使わないので非表示にする*/
}


/*トップページのメイン画像
---------------------------------------------------------------------------*/
/*全体を囲むブロック*/
#mainimg {
	width: 95%;
	height: 0;
	margin: 0 auto;
    padding-top: 57.25%;
    position: relative;
    top: 90px;
    overflow: hidden;
    background: url(../images/main.png) no-repeat top center/ 100%;	/*背景色、背景画像の読み込み、最後の100%は画像幅。*/
	color: #fff;	/*文字色*/
}

/*テキストブロック*/
#mainimg #text {
	width: 50%;		/*幅*/
}

@media screen and (max-width:480px) {
#mainimg {
    padding-top: 115%;
    background: url(../images/main-sp.png) no-repeat top center/ 100%;
}
}


/*トップページのメイン文字
---------------------------------------------------------------------------*/
h1{color: #000; font-weight: bold; font-size: 7.5vw; line-height: 10vw; margin: 0 0; overflow: hidden;}
h1 .lead{font-size: 3vw; float: left; display: flex; line-height: 65px;}
h1 .point{background: #2EA8FF; padding: 0 0; border-radius: 25px; font-size: 1.2vw; text-align: center; color: #fff; height: 46px; line-height: 46px; margin:5px 10px; padding: 0 20px;}
h1 .text{clear: both;}
h1 .ttl{vertical-align: middle; font-size: 3.5vw;}
.sp-point{display: none; margin:5px 0px;}

@media screen and (max-width:1280px) {
h1 .text{padding-top: 0px;}
h1 .lead{font-size: 4vw;  margin-top: 20px; height: 80px; line-height: 55px;}
h1 .point{border-radius: 25px; font-size: 2vw; width: auto; margin:0px 10px; float: left; padding: 0 20px;}
h1{font-size: 10vw;  overflow: hidden;}
}
@media screen and (max-width:1024px) {
h1 .lead{font-size: 3.5vw; line-height: 40px; margin-top: 50px; height: 50px;}
h1 .point{border-radius: 25px; font-size: 2vw; width: auto; height: 36px; line-height: 36px; margin:0px 5px; float: left; padding: 0 20px;}
h1{font-size: 10vw;  overflow: hidden;}
}
@media screen and (max-width:768px) {
h1 .text{font-size: 10vw; padding-top: 5px;}
h1 .lead{font-size: 3.5vw; line-height: 30px; margin-top: 10px; height: 40px;}
h1 .point{border-radius: 25px; font-size: 3vw; height: 36px; margin-right: 5px; float: left; padding: 0 10px; width: 140px;}
h1{font-size: 10vw;}
@media screen and (max-width:480px) {
h1 .point{border-radius: 25px; font-size: 4vw; height: 36px; margin-right: 5px; float: left; padding: 0 10px; width: 140px;}
h1 .ttl{vertical-align: middle; font-size: 6vw;}
}
main {margin: 50px 2% 0!important;}
.sp-point{display: block; padding-top: 0px; padding-bottom: 50px;}
.pc-point{display: none;}
}

/*日付ブロック
---------------------------------------------------------------------------*/
#date-block {
	margin: 0 auto 0;
	display: block;		/*flexボックスを使う指定*/
	flex-wrap: wrap;	/*折り返す指定*/
	padding: 0 0;	/*上下、左右へのボックス内の余白*/
    font-weight: bold;
}
.card {
    width:fit-content;
    block-size: fit-content;
    margin: 0px 0;
    color: #000;	
    padding: 0 0 25px 0;
    float: left;
    width: auto;
}
.card:last-child {
        padding: 0 0 0 30px;
}

.card .card-txt{
    font-size: 1.5vw;
    color: #000;
}
.card .card-txt .spot{
    padding: 5px;
    background: linear-gradient(139.76deg, #2EA8FF 10.11%, #15D2E3 88.43%);
    box-shadow: 0px 0px 27.6245px rgba(0, 0, 0, 0.15);
    color: #fff;
    margin-right: 10px;
}
.card .date{
    font-size: 4.5vw;
    line-height: 4.5vw;
    color: #000;
}
.card .date-s{
    font-size: 2vw;
    line-height: 2vw;
    color: #000;
}
@media screen and (max-width:768px) {
#date-block {
    padding: 10px 0 0 0;
}
.card:last-child {
}
.card{
    padding: 0 0 0px 0;
}
.card .card-txt .spot {
    padding: 5px;
}
.card .card-txt {
    font-size: 4vw;
    line-height: 7vw;
}
.card:last-child {
    padding: 5px 0 0px 0;
}
.card .date {
    font-size: 9vw;
    line-height: 11vw;
}
.card-txt{width: 50%; float: none;}
}

/*画像
---------------------------------------------------------------------------*/
.photo {
}
.photo-box{
    position: absolute;
    top: 80px;
    right: 0px;
    width: 50%;
    padding-left: 1%;
}
.photo-box2{
    position: absolute;
    top: 80px;
    left: 0px;
    width: 50%;
    padding-right: 1%;
}
.photo-box .photo-right{
    float:right;
}
.photo-box .photo-left{
    float:left;
}
#block {
	margin: 100px auto;
	flex-wrap: wrap;	/*折り返す指定*/
	padding: 0 0px;	/*上下、左右へのボックス内の余白*/
    font-size: 1.2vw;
    text-align: left;
	font-family: 'Lato';	/*GoogleFontsの指定*/
    position: relative;
    clear: both;
    overflow: hidden;
    width: 90%;
}
.txt{width: 50%; float: left;}
.txt-w{width: 100%; float: left;}
.txt-r{width: 50%; float: right;}

.school-bnr{
    display: flow-root;
    justify-content: left;
	flex-wrap: wrap;
    width: 100%;
    padding-top: 20px;
}
.sub-txt{font-size: 2vw; margin-top: 20px; width: auto; margin-bottom: 15px; text-align: left; line-height: 1.4;font-weight: bold;}
.ttl{
    font-weight: bold;
    color: #000;
    font-size: 3.5vw;
    line-height: 3.8vw;
    padding: 80px 0 20px 0;
    background: linear-gradient(270.6deg, #1D909A 1.58%, #556AD6 48.23%, #11B3BD 95.79%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ttl-cen{
    font-weight: bold;
    color: #000;
    font-size: 4vw;
    line-height: 3.8vw;
    padding: 80px 0 20px 0;
    background: linear-gradient(270.6deg, #1D909A 1.58%, #556AD6 48.23%, #11B3BD 95.79%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}
.ttl-cen-s{
    font-weight: bold;
    color: #3E5A6D;
    font-size: 3vw;
    line-height: 3.8vw;
    padding: 50px 0 0px 0;
    text-align: center;
}
.box-txt{padding-top: 10px; line-height: 2vw;}
.box-txt-cen{padding-top: 10px; text-align: center;}
.school-bnr img{
    width: 30%;
    margin: 5px 10px 0 0px;
}
.school-bnr .cen{
    text-align: center;
}
.school-bnr img:hover{
    opacity: 0.3;
}
.photo4{
    width: 100%;
    padding: 1% 0;
    display: flex;
}
.photo4 .img{
    padding-left: 1%;
}
.photo5{
    width: 100%;
    padding: 1% 0;
    display: flex;
}
.photo5 .img{
    padding-left: 1%;
}
.photo3{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 1% 0;
}
.photo3 .img{
    padding-left: 1%;
    width: 33%;
    font-size: 1.2vw;
    padding-bottom: 1%;
    line-height: 35px;
}
.photo3 .img .cen{
    text-align: center;
}
.sup{
    font-size: 0.8vw;
    line-height: 1.2vw;
    padding-top: 10px;
}
.graph-pc{
    display: block;
    margin: 40px auto;
    width: 60%;
}
.graph-pc img{
    margin: 0px auto;
    display: flex;
    justify-content: center;
}
.graph-sp{
    display: none;
}
.sub-ttl2{
    font-weight: bold;
    color: #000;
    font-size: 1.4vw;
    line-height: 2vw;
    padding: 0 0 20px 0;
}
@media screen and (max-width:1280px) {
#block {
    width: 100%;
}
}
@media screen and (max-width:1024px) {
.school-bnr img{
    width: 40%;
    margin: 5px 5px;
}
#block {
	margin: 75px auto;
    font-size: 2vw;
    line-height: 3vw;
}
#block:last-child {
	margin: 75px auto 30px;
}
.photo3 .img{
    font-size: 1.7vw;
    line-height: 20px;
}
.box-txt{line-height: 3vw;}
}
@media screen and (max-width:480px) {
.school-bnr img{
    width: 45%;
    margin: 3px 5px;
}
.txt{width: 100%; float: left;}
.photo-box {
    position:inherit;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    padding: 10px 0 10px 0;
}
.photo-box2 {
    position:inherit;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    padding: 10px 0 10px 0;
}
#block {
    font-size: 4.5vw;
    line-height: 7vw;
}
.ttl {
    font-size: 8vw;
    line-height: 8vw;
    padding: 20px 0 10px 0;
}
.ttl-cen {
    font-size: 8vw;
    line-height: 9vw;
    padding: 20px 0 10px 0;
}
.ttl-cen-s {
    font-size: 6vw;
    line-height: 8vw;
    padding: 20px 0 10px 0;
}
.photo3 .img{
    font-size: 4vw;
    line-height: 20px;
    width: 100%;
    padding-bottom: 20px;
}
.photo5{
    width: 100%;
    padding: 1% 0;
    display: flex;
    flex-wrap: wrap; 
    gap: 5px;
}
.photo5 .img{
    width: calc(48% - 0px);
}
.photo4{
    width: 100%;
    padding: 1% 0;
    display: flex;
    flex-wrap: wrap; 
    gap: 5px;
}
.photo4 .img{
    width: calc(48% - 0px);
}
.sup{
    font-size: 3.5vw;
    line-height: 5vw;
}
.graph-sp{
    display: block;
    margin: 0px auto 40px;
    width: 100%;
}
.graph-sp img{
    margin: 0px auto;
    display: flex;
    justify-content: center;
}
.graph-pc{
    display: none;
}
.br-sp{
    display: block;
}
.box-txt{line-height: 6.8vw;}
.sub-ttl2 {
    font-size: 6vw;
    line-height: 7vw;
    padding: 0 0 20px 0;
}
}

/*確認ください
---------------------------------------------------------------------------*/
.attention-ttl{
    font-size: 3vw;
    text-align: center;
    background: linear-gradient(90deg, #FF9500 0%, #E70000 100%) ;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    padding-bottom: 20px;
    line-height: 50px;
}
.attention{
    background: linear-gradient(231.06deg, #D9EEC3 0%, #FFD936 95.53%);
    color: #000;
    text-align: left;
    padding: 20px 20px  0 40px!important;
    margin: 0px auto;
    width: 100%;
    font-size: 1vw;
    line-height: 30px;
    border-radius: 30px;
    margin-bottom: 10px!important;
}
.attention li {
  padding-left: 1em;
}
.attention li::marker {
    content: "・";
    font-size: 1em;
    color: #000;
}
.attention img{
    width: 50px;
    vertical-align:text-top;
}
@media screen and (max-width:480px) {
.attention-ttl{
    font-size: 5vw;
    line-height: 50px;
    padding-bottom: 5px;
}
.attention{
    padding: 10px 20px  0 20px!important;
    font-size: 0.8vw;
}
.attention li {
  padding-left: 0em;
  font-size: 4vw;
}
}
/*mainブロック設定
---------------------------------------------------------------------------*/
/*mainブロック*/
main {
    margin: 0 2%;
}

/*mainブロック内のh2タグ*/
main h2 {
	font-size: 44px;			/*文字サイズ。3倍。*/
	text-align: center;		/*文字をセンタリング*/
	color: #000;			/*文字色*/
	font-family: 'Lato';	/*GoogleFontsの指定*/
	font-weight: 400;		/*文字の太さ*/
}

/*mainブロック内のh3タグ*/
main h3 {
	margin: 0;		/*上、左右、下へのタグの外にとるスペース*/
}

/*アクセス
---------------------------------------------------------------------------*/
.map{
    float: left;
    width: 50%;
    padding-right: 2%;
    height: 500px;
}
.map-r{
    float: right;
    width: 50%;
    padding-right: 2%;
    height: 500px;
    margin-top: -150px;
}
.map iframe{
    border-radius: 30px;
}
.map-r iframe{
    border-radius: 30px;
}
.map-box{
    overflow: hidden;
}
.access{
    text-align: left;
    line-height: 40px;
    width: 100%;
}
.access-l{
    text-align: left;
    line-height: 40px;
    float: left;
    width: 50%;
    padding-top: 100px;
    padding-left: 50px;
}
.access-spot{
    width: 108px;
    height: 108px;
    background: linear-gradient(139.76deg, #2EA8FF 10.11%, #15D2E3 88.43%);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
    border-radius: 54px;
    float: left;
    color: #fff;
    font-weight: bold;
    text-align: center;
    display: flex;
    align-items: center; /* 垂直方向中央 */
    justify-content: center; /* 水平方向中央（必要であれば） */
    margin-bottom: 100px;
    margin-right: 1%;
    line-height: 35px;
    font-size: 1.8vw;
}
.f-s{font-size: 1vw;}
.l-90{padding-left: 95px;}
.f-m{font-size: 1.5vw; font-weight: bold;}
.f-l{font-size: 2.5vw; font-weight: bold;}

@media screen and (max-width:1280px) {
.access{
    text-align: left;
    line-height: 30px;
    width: 100%;
    font-size: 1.5vw;
}
.access-spot{
    line-height: 25px;
    font-size: 2vw;
}
.f-s{font-size: 1.2vw;}
.l-90{padding-left: 70px;}
.f-m{font-size: 1.5vw; font-weight: bold;}
.f-l{font-size: 2.5vw; font-weight: bold;}
}
@media screen and (max-width:768px) {
.map{
    float: none;
    width: 100%;
    padding-right: 2%;
    height: 250px;
    padding-top: 10px;
}
.map-r{
    float: none;
    width: 100%;
    padding-right: 2%;
    height: 250px;
    margin-top: 0px;
    overflow: hidden;
}
.access-l{
    text-align: left;
    line-height: 40px;
    float: none;
    width: 100%;
    padding-top: 10px;
    padding-left: 0px;
    overflow: hidden;
}
.access{
    text-align: left;
    line-height: 30px;
    float: none;
    width: 100%;
    padding-top: 10px;
    padding-left: 0px;
    padding-bottom: 20px;
    font-size: 3vw;
}
.access-spot{
    width: 54px;
    height: 54px;
    border-radius: 27px;
    margin-right: 1%;
    line-height: 20px;
    font-size: 2vw;
    margin-bottom: 100px;
}
.f-s{font-size: 3vw;}
.l-90{padding-left: 20%;}
.f-m{font-size: 4vw; font-weight: bold;}
.f-l{font-size: 6vw; font-weight: bold;}
}
@media screen and (max-width:480px) {
.map{
    float: none;
    width: 100%;
    padding-right: 2%;
    height: 250px;
    padding-top: 10px;
}
.map-r{
    float: none;
    width: 100%;
    padding-right: 2%;
    height: 250px;
    margin-top: 0px;
    overflow: hidden;
}
.access-l{
    text-align: left;
    line-height: 40px;
    float: none;
    width: 100%;
    padding-top: 10px;
    padding-left: 0px;
    overflow: hidden;
}
.access{
    text-align: left;
    line-height: 20px;
    float: none;
    width: 100%;
    padding-top: 10px;
    padding-left: 0px;
    padding-bottom: 20px;
}
.access-spot{
    width: 54px;
    height: 54px;
    border-radius: 27px;
    margin-right: 1%;
    line-height: 20px;
    font-size: 4vw;
    margin-bottom: 50px;
}
.f-s{font-size: 4vw;}
.l-90{padding-left: 70px;}
.f-m{font-size: 4vw; font-weight: bold;}
.f-l{font-size: 6vw; font-weight: bold;}
}
.block06-box .box{
    width: 49%;
    text-align: center;
    margin-right: 1%;
}
.block06-box .spot{
    width: auto;
    text-align: center;
    padding: 5px 10px;
    font-size: 1.6vw;
    font-weight: bold;
    margin: 30px 0 10px;
}
.block06-box .map{
    width: auto;
    margin: 10px 0;
    background-color: antiquewhite;
    height: 500px;
}
.block07-box{margin: 200px 0 200px; text-align: center; padding-top: 200px; border-top: 1px solid #000;}
.block07-box .sub-ttl{
    font-size: 2vw;
    color: #000;
    padding: 0;
}
.block07-box .ttl{
    font-size: 7vw;
    line-height: 9vw;
    font-weight: bold;
}
.block08-box{margin: 0px 0 100px; text-align: center; padding-top: 0px;}
.block08-box .sub-ttl{
    font-size: 2vw;
    color: #000;
    padding: 0;
}
.block08-box .ttl{
    font-size: 7vw;
    line-height: 9vw;
    font-weight: bold;
}
/*フッター設定
---------------------------------------------------------------------------*/
footer small {font-size: 100%;}

footer {
	font-size: 0.7rem;		/*文字サイズ*/
	text-align: center;		/*内容をセンタリング*/
	padding: 20px;			/*ボックス内の余白*/
	background: #111;		/*背景色*/
	color: #fff;			/*文字色*/
    margin-top: 50px;
}

/*リンクテキスト*/
footer a {text-decoration: none;color: #fff;}

/*著作部分*/
footer .pr {display: block;}


/*フッターメニュー設定
---------------------------------------------------------------------------*/
/*ボックス全体の設定*/
#footermenu {
	background: #333;	/*背景色*/
	color: #999;		/*文字色*/
	font-size: 0.7em;	/*文字サイズ*/
	padding: 20px;		/*ボックス内の余白*/
	display: flex;		/*flexボックスを使う指定*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	align-items: flex-start;		/*垂直揃えの指定。上に配置されるように。*/
}

/*ボックス内のリンクテキスト設定*/
#footermenu a {
	text-decoration: none;
	color: #999;	/*文字色*/
}

/*リンクテキストのマウスオン時*/
#footermenu a:hover {
	color: #ccc;	/*文字色*/
}

/*ulタグ（メニューの列単位）*/
#footermenu ul {
	margin: 0;
	padding: 0 2px;
	flex: 1;
	list-style: none;
}

/*title*/
#footermenu .title {
	font-weight: bold;		/*太字にする*/
	color: #ccc;			/*文字色*/
	padding-bottom: 5px;	/*下に空けるスペース*/
}


/*ブロック
---------------------------------------------------------------------------*/

#block-r {
	margin: 100px auto;
	display: flex;		/*flexボックスを使う指定*/
	flex-wrap: wrap;	/*折り返す指定*/
	padding: 0 20px;	/*上下、左右へのボックス内の余白*/
    width: 100%;
    font-size: 1.1vw;
    text-align: left;
	font-family: 'Lato';	/*GoogleFontsの指定*/
    position: relative;
    margin-left: 3%;
    height: fit-;
}

.sub-ttl{
    font-weight: bold;
    color: #AAAAAA;
    font-size: 1.1vw;
    line-height: 3vw;
    padding: 0 0 20px 0;
}



.box-txt-r{padding-top: 10px; font-size: 2.5vw; line-height: 3.5vw; font-weight: bold;}
.p-txt{margin: 10% 0 5px 0; font-size: 1.4vw;line-height: 2vw; font-weight: bold; color:#00A1E2; border-bottom: 1px solid #AAAAAA; width:fit-content;block-size: fit-content;}
.p-line{padding: 0 0 0 10px;  border-left: 1px solid #AAAAAA; margin-left: 10px;}

.br {display: none;}

.box50{
    justify-content:left;
	flex-wrap: wrap;
    width: 100%;
}
.box50 .box{
    width: 100%;
    margin: 0px 0px;
    text-align: left;
    font-size: 1.4vw;
}
.box50 .box .p-list{
    border-bottom: 1px dotted #AAAAAA;
    overflow: hidden;
}
.box50 .box .p-listl {
    border-bottom: 1px solid #AAAAAA;
    overflow: hidden;
}
.time{
    margin-right: 10px;
    margin-bottom: 3px;
    height: auto;
    line-height: 1.8;
    float: left;
    text-align: center;
    box-sizing: border-box;
    font-weight: bold;
    color: #fff;
}
.program{
    margin-right: 10px;
    margin-bottom: 3px;
    width: 75%;
    height: auto;
    float: left;
    line-height: 1.8;
    padding: 0 10px;
    box-sizing: border-box;
    font-weight: normal;
}
@media screen and (max-width:480px) {
.box50 .box{
    font-size:4vw;
}
.sub-txt{font-size: 5vw;}

}
#footer{
    width:90%;
    overflow: hidden;
    padding: 0px;
    margin: 0 auto;
}
.footer-box{
    width:100%;
    margin: 0 auto;
}
.footer-cen{
    width: 100%;
    text-align: right;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 100px;
}
.footer-cen img{
    float: left;
    width:70px;
    padding-left: 5%;
}
.footer-cen img:hover{
    opacity: 0.3;
    transition: 0.3s;
}
.sponsorship{font-size: 2vw; color: #00A1E2; clear: both; margin: 150px 0; font-weight: bold; padding-top: 50px; height: auto;
    background: linear-gradient(128.88deg, #1C6599 6.87%, #85D8A0 84.67%);
    overflow: hidden;
    color: #fff;
    padding: 2%;
    border-radius: 30px;
}
.sponsorship .txt{float: left; width: 55%; padding-left: 2%;  font-size: 2vw; line-height: 4vw;}
.sponsorship .organization{font-size: 1vw; line-height: 2vw; color: #fff;  font-weight: normal; float: left; width: 45%;}




@media screen and (max-width:480px) {
.footer-cen img{
    width: 60px;
}
.sponsorship{font-size: 3vw; clear: both; margin: 50px 0; font-weight: bold; padding-top: 50px; height: auto;
    padding: 4%;
    border-radius: 30px;
}
.sponsorship .txt{float: none; width: 100%; padding-left: 2%;  font-size: 4vw; line-height: 6vw;}
.sponsorship .organization{font-size: 3vw; line-height: 5vw; color: #fff;  font-weight: normal; float: left; width: 100%;}
.sponsorship .txt {padding-left: 0%; padding-top: 10px;}
}



/*listブロック
---------------------------------------------------------------------------*/
.list-container .list {
	margin-bottom: 30px;	/*ボックス同士の上下間に空けるスペース*/
	padding: 20px;			/*ボックス内の余白*/
	background: #fff;		/*背景色*/
	color: #999;			/*文字色*/
	box-shadow: 5px 5px 20px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態。*/
	position: relative;
}

/*ボックス内のh4タグ*/
.list-container .list h4 {
	margin: 0;
	color: #666;	/*文字色*/
}
.list-container .list h4 a {
	color: #666;	/*リンクテキストの文字色*/
}

/*ボックス内のpタグ*/
.list-container .list p {
	margin: 0;
	font-size: 0.8em;	/*文字サイズを80%に*/
}

/*list内のNEWマーク*/
.list-container .list .new {
	font-size: 0.6em;		/*文字サイズ*/
	background: #ff0000;	/*背景色*/
	color: #fff;			/*文字色*/
	width: 50px;			/*幅*/
	line-height: 50px;		/*高さ*/
	border-radius: 50%;		/*角丸のサイズ。円形になります。*/
	text-align: center;		/*テキストをセンタリング*/
	position: absolute;
	left: -10px;			/*listブロックに対して左からの配置場所の指定*/
	top: -10px;				/*listブロックに対して上からの配置場所の指定*/
	transform: rotate(-30deg);	/*回転。まっすぐ表示させたいならこの１行を削除。*/
}



/*サムネイルスライドショー
---------------------------------------------------------------------------*/
/*画像１枚あたりの設定*/
.list-slide .list {
	margin: 10px;	/*画像の外側に空けるスペース*/
}




/*btnの設定
---------------------------------------------------------------------------*/
.btn1, .btn2 {
	border-radius: 3px;
	padding: 5px 30px;
    align-content: center;
}
.btn1 a, .btn2 a {
    display: block;
    text-decoration: none;
    color: #fff;
    cursor:pointer;
}
.btn1:hover, .btn2:hover {
    opacity: 0.3;
}
.btn1 {
	color: #fff;
    height:120px;
    width: 40%;
    min-width:300px; 
    margin: 0px auto 10px;
	border-radius: 10px;
    display: block;
    padding: 4px;
    position: relative;
    text-align: center;
    text-decoration-line: 5px !important;
	font-size: 1.8vw!important;
    background: linear-gradient(139.76deg, #2EA8FF 10.11%, #15D2E3 88.43%);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
}
.btn1::after{
    content: '';
    border: 0;
    border-top: solid 4px #fff;
    border-right: solid 4px #fff;
    display: inline-block;
    width: 15px;
    height: 15px;
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%) rotate(45deg);
}

.btn-box{
    display: flex;
    justify-content: center;
	flex-wrap: wrap;
    width: 90%;
    margin: 100px auto;
}
.ul{text-decoration: underline;}
@media screen and (max-width:1279px) {
.btn1 {
    height:80px;
}
}
@media screen and (max-width:480px) {
.btn1 {
	color: #fff;
    height:60px;
    width: 40%;
    min-width:300px; 
    margin: 0px auto 10px;
	border-radius: 10px;
    display: block;
    padding: 4px;
    position: relative;
    text-align: center;
    text-decoration-line: 5px !important;
	font-size:3vw!important;
    background: linear-gradient(139.76deg, #2EA8FF 10.11%, #15D2E3 88.43%);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
    font-weight: bold;
}
.btn1::after{
    content: '';
    border: 0;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    display: inline-block;
    width: 15px;
    height: 15px;
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%) rotate(45deg);
}
}


/*ポップアップ*/
.mfp-close-btn-in .mfp-close {
    color: #fff;
}
---------------------------------------------------------------------------*/

/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-theme, .color-theme a {color: #56a5b7 !important;}
.color-check, .color-check a {color: #f00 !important;}
.c {text-align: center !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.mb30 {margin-bottom: 30px !important;}
.mt30 {margin-top: 30px !important;}
.look {display: inline-block;padding: 0px 10px;background: #eee; border: 1px solid #ccc; border-radius: 3px;margin: 2px 0; word-break: break-all;}
.small {font-size: 0.8em; letter-spacing: normal !important; line-height: 1.2!important; font-weight: normal; padding: 20px 0;}
.large {font-size: 1.8em !important;}
.block {display: block !important;}
.sh {display: block;}
.pc {display: none;}
.hidden {position: absolute; top: -9999px; left: -9999px;}



/*---------------------------------------------------------------------------
ここから下は画面幅900px以上の追加指定
---------------------------------------------------------------------------*/
@media screen and (min-width:1279px) {


/*全体の設定
---------------------------------------------------------------------------*/
html, body {
	font-size: 15px;	/*基準となるフォントサイズの上書き*/
}


/*menubarブロック設定
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
#menubar {
	font-size: 1.1vw;	/*文字サイズを少し小さくする*/
}
#menubar ul {
	display: flex;	/*flexボックスを使う指定*/
}

/*メニュー１個あたりの設定*/
#menubar li a {
	padding: 15px 25px;	/*上下、左右への余白*/
}
 
#menubar a img{
	width: 50px;
}

#menubar img:hover{
    opacity: 0.3;
}
    
/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*ハンバーガーメニューを非表示にする*/
#menubar_hdr {display: none;}



/*その他
---------------------------------------------------------------------------*/
.ws {width: 48%;display: inline;}
.sh {display: none;}
.pc {display: inline-block;}


}


/*---------------------------------------------------------------------------
ここから下は画面幅768px以下の追加指定
---------------------------------------------------------------------------*/
@media screen and (max-width:1024px) {
}
/*---------------------------------------------------------------------------
ここから下は画面幅400px以下の追加指定
---------------------------------------------------------------------------*/
@media screen and (max-width:1024px) {
.br-pc{display: none;}
}