@charset "utf-8";
/* CSS Document */

/*2026開催告知*/
.archives2024box{
background:#FFC4C5;
padding: 20px 10px;
text-align: center;
}
.archives2024box img{
max-width: 800px;
width: 100%;
}

/*common*/
body {
  margin: 0;
  font-family: 'YakuHanJP','Roboto','Noto Sans JP',"Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Sans", "メイリオ","Noto Sans JP", Meiryo, sans-serif;
	line-height: 1.5;
  font-weight: normal;
	letter-spacing: 1px;
  font-size: 16px;
	color:#374248;
}
.mincho {
  font-family:YakuHanMP, "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 500;
}
img {
  vertical-align: bottom;
}

a{
	transition: all.2s;
}

a:link, a:visited {
  color: #2747A0;
  text-decoration: underline;
}
a:hover, a:active {
  color: #6080DB;
}
a:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
}
/* For modern browsers */
.cf:before, .cf:after {
  content: "";
  display: table;
}
.cf:after {
  clear: both;
}
/* For IE 6/7 (trigger hasLayout) */
.cf {
  zoom: 1;
}
#headline {
  font-size: 0.8em;
  text-align: right;
  padding: 3px 1em;
  color: #989898;
  background: #BC9845;
}
#headline ol li {
  display: inline-block;
}
#headline ol li a {
  color: #989898;
  text-decoration: underline;
}
#headline ol li:after {
  content: '>';
}

#headline ol li:last-child{
	max-width: 10em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: bottom;
}

#headline ol li:last-child:after {
  content: normal;
}

/*google aicon*/
.material-symbols-rounded{
	vertical-align: -7px;
}


.sp {
  display: none;
}
.pc {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 90%;
  }
  .sp {
    display: inline-block;
  }
  .pc {
    display: none;
  }
}
/*
contents
*/
#teaser_header{
	background: url("../images/title2_bk.jpg") no-repeat;
	background-size: cover;
	background-position: center center;
}

h1.teaser_hero{
  text-align: center;
	padding: 3% 0;
}

h1.teaser_hero img{
	width:90%;
	max-width: 900px;
}

h1.teaser_hero .hero_text{
	text-shadow: 0 1px 0 #FFF;
}

h1.teaser_hero .jp_ttl{
	display: block;
}

@media screen and (max-width: 768px) {
	h1.teaser_hero{
	padding: 8% 0;
}
}

h2.common_headline_l{
	text-align: center;
	/*padding-top: 8%;*/
	padding-top: 3%;
}

h2.common_headline_l img{
	max-width: 200px;
	width:35%;
}

.common_headline_m_wrap{
		text-align: center;
	padding: 5% 0 4%;
	width: 90%;
	margin: 0 auto;
}

h3.common_headline_m{
	font-size: 1.5em;
	font-weight: bold;
	  position: relative;
  display: inline-block;
  padding: 0 55px;

}

h3.common_headline_m:before, h3.common_headline_m:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 20px;
  height: 3px;
  background-color: #657CBC;
}

h3.common_headline_m:before {
  left:0;
}
h3.common_headline_m:after {
  right: 0;
}

.common_area{
	max-width: 1000px;
	margin: 0 auto 5%;
	width: 95%;
}

.default_read{
	font-size: 1.1em;
	font-weight: bold;
}

.default_text{
	margin-top:.5em;
}

.strong_txt{
	font-weight: bold;
	font-size: 1.1em;
	margin-top: 1em;
}

.small_txt{
	font-size: .8em;
	margin-top: .5em;
}


.common_line{
      height: 1px;
  border: none;
  border-top: 1px #C6C6C1 solid;
	width: 95%;
	max-width: 1200px;
	margin: 5% auto 0;
	box-shadow: 0 1px 0 #FFF;
}

.common_gradeline_gray{
	    height: 1px;
    background: linear-gradient(to right, #FFFFFF,#D0D0D0,#FFFFFF);
    border: none;
    width: 90%;
    margin: 2em auto 3em;
}

.common_dotted_gray{
	border: 1px dotted #D0D0D0;
    width: 90%;
    margin: 2em auto 0;
}



.gradient_blue{
    /*ボタンの形状*/
	text-align: center;
	margin:0;
    display: inline-block;
    color:#fff;
    padding:1em;
	text-decoration: none!important;
	font-weight: bold;
    border-radius:50px;
    outline: none;
    /*背景の色と形状*/
    background: linear-gradient(270deg, rgba(82,168,222,.90) 0%, rgba(0,96,217,.90) 25%, rgba(35,87,192,0.90) 51%, rgba(58,137,204,.90) 100%);
    background-position: 1% 50%;
    background-size: 200% auto;
    /*アニメーションの指定*/
    transition: all 0.3s ease-out;
	font-size: 1.1em;
	box-sizing: border-box;
	max-width: 500px;
	min-width: 250px;
}
.gradient_blue:hover {
    color: #fff;
    background-position: 99% 50%;
}
.gradient_blue:hover img{
	opacity: 1;
}
.gradient_blue span{
	color: #FDFF5B;
}


.gradient_pink{
    /*ボタンの形状*/
	text-align: center;
	margin:0;
    display: inline-block;
    color:#fff;
    padding:1em;
	text-decoration: none!important;
	font-weight: bold;
    border-radius:50px;
    outline: none;
    /*背景の色と形状*/
    background: linear-gradient(93deg, rgba(196,107,166,1) 0%, rgba(176,89,129,1) 43%, rgba(196,107,166,1) 59%, rgba(255,166,207,1) 100%);
    background-position: 1% 50%;
    background-size: 200% auto;
    /*アニメーションの指定*/
    transition: all 0.3s ease-out;
	font-size: 1.1em;
	box-sizing: border-box;
	max-width: 500px;
	min-width: 250px;
}
.gradient_pink:hover {
    color: #fff;
    background-position: 99% 50%;
}
.gradient_pink:hover img{
	opacity: 1;
}
.gradient_pink span{
	color: #FDFF5B;
}


/*共通使用フレックスボックス*/
.container-flex{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
	max-width: 1000px;
	margin:10px auto;
}
.block-half{
width: 48.5% !important;
}
.block-half img{
width: 100%;
}

@media only screen and (max-width: 768px) {
.block-half{
width: 98% !important;
}
}


/*ボタン横ならびflex*/
ul.btn_list_flex{
	display:-webkit-box;
	display:-moz-box;
	display:-ms-box;
	display:-webkit-flexbox;
	display:-moz-flexbox;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:-moz-flex;
	display:-ms-flex;
	display:flex;
	-webkit-box-lines:multiple;
	-moz-box-lines:multiple;
	justify-content:center;
	align-items: center;
	flex-wrap: wrap;
	max-width: 800px;
	margin:20px auto 0;
}
ul.btn_list_flex li{
margin:10px 3px;
width: 350px;
}

/*シンプルaボタン*/
.btn--white,
a.btn--white {
  color: #000000;
  background-color: #FFFFFF;
  border: 1px solid #ACACAC;
  font-size: 13px;
  text-decoration: none;
padding: 10px 15px;
}
.btn--white:hover,
a.btn--white:hover {
  color: #000000;
  background:#F1F1F1;
}

a.btn--blue{
background: #004FAF;
display: block;
color: #FFFFFF;
font-size: 13px;
text-decoration: none;
padding: 10px 0;
}
a.btn--blue:hover {
  color: #ffffff;
  background:#286fc7;
}

span.nolink{
background: #CFCFCF;
color: #FFFFFF;
display: block;
border-radius: 100vh;
font-size: 17px;
max-width: 350px;
    width: 100%;
	margin: auto;
padding: 15px 0;
}

a.btn--radius {
   border-radius: 100vh;
}
a.btn--large{
font-size: 17px;
max-width: 350px;
    width: 100%;
	margin: auto;
padding: 15px 0;
	}


/*矢印aボタン*/
a.arrow-button{
    background-color:#fffff;
	border:1px solid #878787;
    /*border-radius: 100vh;*/
    /*box-shadow: 0 4px 0 #c2c2c2;*/
    /*color: #000000;*/
    display: block;
    padding: 15px 0;
    position: relative;
    text-align: center;
    text-decoration: none;
    width: 100%;
}

a.arrow-button::after{
    content: '';
    border: 0;
    border-top: solid 2px #D9D9D9;
    border-right: solid 2px #D9D9D9;
    display: inline-block;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(45deg);
}
a.arrow-button:hover{
background:#DFF5FF;
color: #000000;
}

.headline_grade_navy_wh{
	/*background: linear-gradient(right );*/
	background: linear-gradient(to right ,#657CBC , #7867A9);
	mix-blend-mode: multiply;
	color: #FFF;
	font-weight: bold;
	font-size: 1.2em;
	padding: .2em 1em;
	border-radius: 3px;
}

.headline_grade_navy{
	/*background: linear-gradient(right );*/
	background: linear-gradient(to right ,#D7DEF4 , #DBD6E8);
	mix-blend-mode: multiply;
	color: #374248;
	font-weight: bold;
	font-size: 1.2em;
	padding: .2em 1em;
	border-radius: 3px;
	text-shadow: 0 1px 0 #FFF;
}

.headline_navy{
	font-weight: bold;
	font-size: 1em;
	color: #657CBC;
	margin-top: .5em;
}



section.section_grade{
	padding: 0 0 4%;
	/*background: linear-gradient(#FFFFF6 , #EFEFE9);*/
	background: rgba(255,255,255,.9);
}

section.section_grade:nth-child(even){
	background: rgba(255,255,255,.75);
	position: relative;
}

section.section_grade:nth-child(even)::before {
    content:"";
    display:block;
    position:fixed;
    top:0;
    left:0;
    z-index:-1;
    width:100%;
    height:100vh;
    background-repeat: no-repeat;
    background-position: center center;
    background-image:url('../images/title2_bk.jpg');
    background-size: cover;
}


ul.flex_topics_wrap {
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 95%;
  max-width: 1200px;
  /*margin: 5% auto 0;*/
  margin: 1% auto 0;
}
ul.flex_topics_wrap li {
  display: inline-block;
  width: calc((100% - 6%) / 3);
  /*width: calc((100% - 3%) / 2);*/
  margin-right: 3%;
  margin-bottom: 3%;
  box-sizing: border-box;
	border-bottom: 1px solid #E1E1E1;
	padding-bottom: 1em;
	position: relative;
}



ul.flex_topics_wrap li::after{
	content: 'expand_circle_right';
	font-family: 'Material Symbols Rounded';
	position: absolute;
	color: #CBCBCB;
	bottom: 0;
	right: 0;
	font-size: 18px;
}




ul.flex_topics_wrap li:nth-child(3n) {
  margin-right: 0;
}

ul.flex_topics_wrap li dl.topics_inner dt img{
	width: 100%;
	border-radius: 3px;
}

ul.flex_topics_wrap li a{
	text-decoration: none;
}
@media screen and (max-width: 768px) {
  ul.flex_topics_wrap li {
    display: inline-block;
    width: calc((100% - 3%) / 2);
    margin-right: 3%;
    margin-bottom: 3%;
  }
	
ul.flex_topics_wrap li:nth-child(3n) {
    margin-right: 3%;
  }	
	
  ul.flex_topics_wrap li:nth-child(2n) {
    margin-right: 0;
  }
}

.topics_inner dd{
	margin-top: .5em;
}

.topics_date{
	color: #A0A0A0;
	font-size: .9em;
	letter-spacing: 0;
}

.topics_ttl{
	margin-top: .5em;
	display: inline-block;
	font-weight: bold;
}

.topics_ic_m,.topics_ic_a,.topics_ic_d,.topics_ic_s,.topics_ic_e{
	font-size: .8em;
	background: #52A8DE;
	color: #FFF;
	font-weight: bold;
	padding: 3px 1em;
	margin-right: .5em;
	border-radius: 3px;
	display: inline-block;
}

.topics_ic_a{
	background: #F8BA10;
}

.topics_ic_d{
	background: #9E78B2;
}

.topics_ic_s{
	background: #AAC92E;
}

.topics_ic_e{
	background: #E277AA;
}



/*------SNSエリア------*/
.sns_area{
    padding-top: 40px;
    padding-bottom: 40px;
}
.sns_btn{
    display: flex;
	flex-wrap: wrap;
    justify-content: space-between;
	max-width: 320px;
    width: 98%;
    margin: auto;
}
.sns_btn li{
    width: 50px;
}
.sns_btn li a{
    display: block;
    line-height: 0;
}
.sns_btn li a:hover{
	transform: translateY(-5px);
}
.sns_btn li a img{
    max-width: 50px;
}


/*--------NEWS--------*/

.top_news_box{
	width: 90%;
	height: 300px;/*200*/
	overflow-y: scroll;
	border-radius: 3px;
	max-width: 900px;/*800*/
	border:1px solid  #dddab1;
	margin: 2em auto 0;
}
.top_news_box::-webkit-scrollbar{
   width:10px;
}
.top_news_box::-webkit-scrollbar-track{
   background-color: #ffee7c;
}
.top_news_box::-webkit-scrollbar-thumb{
   background-color: #f7df40;
}



.news_box{
	width: 90%;
	height: 200px;
	overflow-y: scroll;
	border-radius: 3px;
	max-width: 800px;
	border:1px solid  #dddab1;
	margin: 2em auto 0;
}

.news_box::-webkit-scrollbar{
   width:10px;
}
.news_box::-webkit-scrollbar-track{
   background-color: #ffee7c;
}
.news_box::-webkit-scrollbar-thumb{
   background-color: #f7df40;
}

dl.news_txt{
	text-align: left;
	padding: 2em;
	box-sizing: border-box;
	display:flex;-webkit-box-lines:multiple;-moz-box-lines:multiple;flex-wrap:wrap;
}

dl.news_txt dt{
	display: inline-block;
	width: 8em;
	font-size: .9em;
	border-bottom: 1px solid #f7df40;
	margin-bottom: 10px;
}

dl.news_txt dd{
	display: inline-block;
	width: calc(100% - 8em);
	border-bottom: 1px solid #d8d3ae;
	margin-bottom: 10px;
}


@media only screen and (max-width:768px){
dl.news_txt dt,dl.news_txt dd{
		width: 100%;
	}
	
	dl.news_txt dt{
		margin-bottom: 0;
		border: 0;
	}
}

/*--------後援--------*/
.auspices_area {
	background-color: #fff;
	padding: 8% 0;
}
.auspices_area dl{
	max-width: 1200px;
	width: 95%;
	margin: 0 auto;
}
.auspices_area dt{
	text-align: center;
	font-size: 1.6em;
	font-weight: bold;
	border-bottom: 1px solid #9C9C9C;
}
.auspices_area dd{
	margin-top: .5em;
	font-size:1em;
}


/*------連携イベント------*/
ul.flex_collabo_event_wrap {
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 5% auto 0;
}
ul.flex_collabo_event_wrap li {
  display: inline-block;
  /*width: calc((100% - 6%) / 3);*/
  width: calc((100% - 3%) / 2);
  margin-right: 3%;
  margin-bottom: 3%;
  box-sizing: border-box;
	padding-bottom: 1em;
	position: relative;
}

ul.flex_collabo_event_wrap li:nth-child(2n){
	margin-right: 0;
}


ul.flex_collabo_event_wrap li > .gradient_pink{
	width: 100%;
	max-width: 100%;
	min-width: 100%;
}

@media screen and (max-width: 768px) {
	ul.flex_collabo_event_wrap li {
  width: 100%;
  margin-right: 0%;
  margin-bottom: 3%;
}
}

/*------about------*/
.message_flex_wrap{
	margin: 0 auto 5%;
	max-width: 1200px;
	width: 95%;
}


.message_flex_wrap {
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 95%;
  max-width: 1200px;
  margin: 0 auto 5%;
}
.message_flex_l {
  display: inline-block;
  width: calc((100% - 3%) / 2);
  margin-right: 3%;
  margin-bottom: 3%;
  box-sizing: border-box;
}

.message_flex_l img{
	width: 100%;
}

.message_flex_r{
	  display: inline-block;
  width: calc((100% - 3%) / 2);
  margin-right:0;
  margin-bottom: 3%;
  box-sizing: border-box;
}

.message_name{
	text-align: right;
	font-size: .8em;
	margin-top: .5em;
}

@media screen and (max-width: 768px) {
	.message_flex_l,.message_flex_r{
		width: 100%;
		margin-right: 0;
	}
}

.overview_wrap{
	width: 95%;
	max-width:1000px;
	margin: 0 auto 5%;
}

.overview_wrap dt{
	margin-top: 0;
}

.overview_wrap dd{
	margin-top: .5em;
	padding: 0 1em 1em;
	box-sizing: border-box;
}

.overview_flex_wrap{  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  justify-content: space-between;
  flex-wrap: wrap;}

.overview_flex_l{
	width: 70%;
}

.overview_flex_r{
	width: 28%;
	text-align: center;
}

.overview_flex_r img{
	max-width: 170px;
	width: 70%;
	margin-top: .5em;
}

.overview_flex_l.hasshi_l{
	width: 65%;
}

.overview_flex_r.hasshi_r{
	width: 33%;
}

.overview_flex_r.hasshi_r img{
	max-width: 400px;
	width: 100%;
}

.gaiyozu{
	width: 100%;
	max-width: 450px;
	margin-top: .5rem;
}

@media screen and (max-width: 768px) {
	.overview_flex_l,.overview_flex_r{
	width: 100%;
}
	
	.overview_flex_l.hasshi_l,.overview_flex_r.hasshi_r{
	width: 100%;
}

.overview_flex_r.hasshi_r img{
	width: 80%;
}


}

 dl.pro-di_flex_wrap {
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 95%;
  max-width: 1000px;
  margin: 0 auto;
}


 dl.pro-di_flex_wrap dt{
	  display: inline-block;
  width:15%;
  margin-right:3%;
  margin-bottom: 2%;
  box-sizing: border-box;
}

 dl.pro-di_flex_wrap dd{
	  display: inline-block;
  width: 72%;
  box-sizing: border-box;
}
/*松井市長挨拶*/
 dl.pro-di_flex_wrap dt.matui{
	  display: inline-block;
  width:30%;
  margin-right:3%;
  margin-bottom: 2%;
  box-sizing: border-box;
}
 dl.pro-di_flex_wrap dd.matsui_txt{
	  display: inline-block;
  width: 65%;
  box-sizing: border-box;
}

dl.pro-di_flex_wrap dt img{
	width: 100%;
}




 dl.award-kettei_flex_wrap {
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 95%;
  max-width: 1000px;
  margin: 0 auto;
}

 dl.award-kettei_flex_wrap dt{
	  display: inline-block;
  width:30%;
  margin-right:3%;
  margin-bottom: 2%;
  box-sizing: border-box;
}

 dl.award-kettei_flex_wrap dd{
	  display: inline-block;
  width: 67%;
  box-sizing: border-box;
}

dl.award-kettei_flex_wrap dt img{
	width: 100%;
}

.pro-di_name{
	/*border-bottom: 3px solid #657CBC;*/
	border-bottom: 2px solid;
	 border-image: linear-gradient(to right, #657CBC,#657CBC, rgba(255,255,255,0.00)) 1;
	font-size: 1.3em;
	font-weight: bold;
}

.pro-di_name span.pro-di_position{
	font-size: .8em;
	margin-right: 1em;
}

.pro-di_text{
	margin-top: 1em;
}

@media screen and (max-width: 768px) {
	 dl.pro-di_flex_wrap dt,dl.pro-di_flex_wrap dd{
		width: 100%;
		margin-right: 0;
	}
	
	dl.pro-di_flex_wrap dt{
		text-align: center;
	}
	
	dl.pro-di_flex_wrap dt img{
		width: 80%;
		max-width:150px;
	}
	
	
	
		 dl.award-kettei_flex_wrap dt,dl.award-kettei_flex_wrap dd{
		width: 100%;
		margin-right: 0;
	}
	
	dl.award-kettei_flex_wrap dt{
		text-align: center;
	}
	
	dl.award-kettei_flex_wrap dt img{
		width: 80%;
		max-width:300px;
	}
}

/*
Google Material Symbols
*/

.material-symbols-rounded {
  font-variation-settings:
  'FILL' 1,
  'wght' 500,
  'GRAD' 0,
  'opsz' 24
}


/*
move
*/
.fadeInUpTrigger, .fadeInTrigger {
  opacity: 0;
}

#page-top {
  font-size: 77%;
  position: fixed;
  right: 20px;
  bottom: 20px;
}
#page-top a {
  margin: 0 auto;
  padding: 10px;
  background: rgba(120,103,169,.80);
  border-radius: 5px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  display: block;
  font-size: 2em;
  line-height: 0;
}
#page-top a:hover {
  background: rgba(120,103,169,1);
  text-decoration: none;
}
footer {
  padding:5% 0;
  box-sizing: border-box;
	background: #FFFFFF;
}
footer ul.footer_bt {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
footer ul.footer_bt li {
  display: inline-block;
  margin: .5em 1em;
}
footer ul.footer_bt li a:link, footer ul.footer_bt li a:visited {
  display: inline-block;
  width: 250px;
  background: #E4E4E4;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 6px;
	text-decoration: none;
}
footer ul.footer_bt li a:hover, footer ul.footer_bt li a:active {
  background: #9B9B9B;
  color: #FFF;
}
footer p.copy {
  font-size:.8em;
  text-align: center;
}

.footer_logo{
	text-align: center;
}

.footer_logo img{
	max-width:250px;
	width: 100%;
}

#footer-info{
	margin: 1em auto;
	max-width: 385px;
	list-style: none;
	
}

#footer_link{
	margin: 0 auto;
	max-width: 385px;
	width: 100%;
	list-style: none;
	text-align: center;
	margin-top: 1em;
}

#footer_link li{
	display: inline-block;
}

#footer_link li:nth-child(1){
	padding-right: 1em;
	border-right: 1px solid #374248;
}

#footer_link li:nth-child(2){
	padding-left: 1em;
}



/*モーダルを開くボタン*/
.modal-open{
cursor: pointer;
}
/*ボタンスタイル*/
.award-philosophy-btn{
display: block;
border: 1px solid #0E5AA2;
border-radius: 10px;
width: 300px;
margin: auto;
}

/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	background: rgba(0,0,0,50%);
	padding: 40px 20px;
	overflow: auto;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
    box-sizing: border-box;
}
/*モーダル本体の擬似要素の指定*/
.modal-container:before{
	content: "";
	display: inline-block;
	vertical-align: middle;
	height: 100%;
}
/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active{
	opacity: 1;
	visibility: visible;
	z-index: 9999;
}
/*モーダル枠の指定*/
.modal-body{
	position: relative;
	display: inline-block;
	vertical-align: middle;
	width: 90%;
}
/*モーダルを閉じるボタンの指定*/
.modal-close{
    align-items: center;
	font-size: 2rem;
	color: #FFFFFF;
	cursor: pointer;
	background: #C50003;
	border-radius: 10px;
	width: 5em;
	margin: 15px auto 0;
	text-align: center;
}
/*モーダル内のコンテンツの指定*/
.modal-content{
	/*background: #fff;*/
	text-align: center;
	width: 100%;
}

.modal-content img{
	width: 100%;
}

/*アワード　award.php*/
a.award-philosophy-btn{
    border: 1px solid #657CBC;
    border-radius: 100vh;
    box-shadow: 0 4px 0 #DAD6E8;
    color: #2747A0;
    display: block;
    padding: 15px 0;
    position: relative;
    text-align: center;
    text-decoration: none;
	max-width: 350px;
    width: 100%;
	
}

a.award-philosophy-btn:hover{
	background: #F0EAFF;
}


a.award-philosophy-btn::after {
    content: '';
    border: 0;
    border-top: solid 2px #657CBC;
    border-right: solid 2px #657CBC;
    display: inline-block;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(45deg);
}

.award-bumon-midashi{
border-bottom: 1px solid #D1D1D1;
border-left:  7px solid #D1D1D1;
margin: 10px;
padding:5px 5px 5px 10px;
}

.award-judge{
margin: 15px auto 30px;
border: 1px solid #C5C5C5;
padding: 5px;
text-align: center;
}
@media only screen and (max-width:768px) {
.award-judge{
text-align: left;
}
}




/*アクセス*/
.top_access_map{
max-width: 1200px;
width: 95%;
text-align: center;
margin: auto;
}
.top_access_wrap{
max-width: 910px;
border: 1px solid #F1E323;
margin:15px auto;
}

.top_access{
max-width: 900px;
width: 95%;
margin:20px auto;
}
.top_access h3{
font-size: 1.5em;
border-bottom: 6px solid rgba(241,227,35,1.00);
margin-bottom: 12px;
}
.top_access h4{
margin: 0 10px;
}
.top_access p{
font-size: 0.9em;
padding:2px 25px 10px;
}

/*おしらせ*/
.notice{
border: 1px solid #000000;
border-radius: 15px;
max-width: 900px;
width: 98%;
margin:30px auto;
}
.notice h2{
border-radius: 15px 15px 0 0;
background: #FF1519;
color: #FFFFFF;
padding: 5px;
text-align: center;
}
.notice h2 span{
font-size: 15px;
}
.notice p{
padding: 15px;
font-size: 1.5em;
}


/*メッセージ*/
.mayor-message{
border: 1px solid #000000;
border-radius: 15px;
max-width: 900px;
width: 98%;
margin:30px auto;
}
.mayor-message h2{
border-radius: 15px 15px 0 0;
background:#D1F7FF;
font-size: 2em;
padding: 5px;
text-align: center;
}
.mayor-message h2 span{
font-size: 15px;
}
.mayor-message p{
padding: 15px;
font-size: 1.1em;
}