@charset "utf-8";
/*=================================
1: reset-CSS
2: setting
3: header
4: gnav
5: contents
6: footer
=================================*/


/* 1: reset-CSS
================================== */
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/

html,
body,
div,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  font-weight: normal;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}

li {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/* 2: setting
================================== */
*,
*:before,
*:after {
  box-sizing: border-box;
}

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

.clear {
  clear: both;
}

/* var(color) */

:root{
  --main-bl: #1c6b7f;
  --bl-light: #c8d6d3;
  --green: #25aa21;
  --mainbk-yellow: #faf9e7;

}


html {
  overflow: auto;
  font-size: 62.5%;
}

body {
  font-family: 'Noto Sans JP', sans-serif, 'Yu Gothic', '游ゴシック', '游ゴシック体', YuGothic, Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
  font-feature-settings: "palt";
  font-weight: 500;
  color: #000;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.7;
  -webkit-print-color-adjust: exact;
  /* baskground_print */
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  /* safari_textBold*/
  -webkit-text-size-adjust: 100%;
  /* safari_textBold*/
  overflow-x: hidden;
}

@media all and (-ms-high-contrast:none) {
  body {
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  }
}

img {
  display: block;
  line-height: 0;
}

input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

a {
  color: #0a75b8;
}

a img {
  -webkit-transition: all .2s;
  transition: all .2s;
}

a img:hover {
  opacity: .7;
}


/* icon */
.blank {
  background: url(../img/icn_blank.svg) right center no-repeat;
  background-size: 16px;
  padding-right: 20px;
}

.pdf {
  background: url(../img/pdf.svg) right center no-repeat;
  background-size: 18px;
  padding-right: 23px;
}

/* flexbox */
.flexbox_wap {
  /* 折り返しのみ */
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
}

.flexbox_sbwap {
  /* 折り返し・水平方向端揃え */
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: space-between;
  /* Safari */
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
}

.flexbox_sb {
  /* 折り返しなし・水平方向端揃え */
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: space-between;
  /* Safari */
  justify-content: space-between;
}

.flexbox_c {
  /* 折り返しなし・水平中央揃え */
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: center;
  /* Safari */
  justify-content: center;
}

.flexbox_cwap {
  /* 折り返し・水平中央揃え */
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: center;
  /* Safari */
  justify-content: center;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
}



.flexbox_atc {
  /* 垂直方向中央揃え */
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  /* Safari */
  align-items: center;
}

.flexreverse {
  flex-direction: row-reverse;
}

/* text-decoration */
.fB {
  font-weight: bold;
}

.fBig {
  font-size: 120%;
}

.fS {
  font-size:80%;
}

.fR {
  float: right;
}

.tC {
  text-align: center;
}

	.tC a {
		display:inline-block;
	}
	.tC img {
		margin:0 auto;
		border:solid 5px black;
		max-width:200px;
	}

.mT1em {
  margin-top: 1em;
}

@media all and (max-width: 768px) {
	.mT1em_sp {
		margin-top: 1em;
	}
}
.mT2em {
  margin-top: 2em;
}

.mT4em {
  margin-top: 4em;
}

.mB1em {
  margin-bottom: 1em;
}

.mB0 {
  margin-bottom: 0 !important;
}

.p0 {
  padding-bottom: 0 !important;
}

.pB1em {
  padding-bottom:1em;
}

.tR {
  text-align: right;
}

	.w50on {
		width:50%;
	}
	
@media all and (max-width: 768px) {
	.w50on {
		width:100%;
	}
}

.link_blank {
  background: url(../img/icn_blank.svg) no-repeat right center;
  background-size: 14px;
  padding-right: 20px;
}
.link_movie {
	background:url(../img/icn_movie.svg) no-repeat 0 center;
    background-size: 25px;
	padding-left:30px;
}
.red {
  color:red;
}

/* media query -> pc
=======================*/
@media all and (min-width: 768px) {
  html {
    min-width: 1000px;
  }

  body {
    font-size: 16px;
    font-size: 1.6rem;
  }
}


/* 3: header
================================== */
#header {
  background: #fff;
  position: relative;
}


#header .flexbox_sb {
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  margin-left: 5px;
}

@media all and (max-width: 768px) {
  #header .flexbox_sb {
    display:block;
  }
}

@media all and (min-width: 768px) {

  #header .inr {
    -webkit-align-items: center;
    /* Safari */
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }

  #header .flexbox_sb {
    justify-content: space-between;
    -webkit-justify-content: space-between;
    margin: 0 auto;
  }
}

.logo {
  margin: 5px 0 0 0;
}

.logo a {
  display:block;
}

.logo img {
  max-width: 250px;
  height: auto;
  margin:0 auto;
  width:100%;
}
.logo li {
  width: calc(100%/2 - 20px);
}

.logo.three li {
  width: calc(100%/3 - 20px);
}

.w40 {width:70%;}


.logo .flexbox_wap{
  justify-content: center;
  margin-bottom: 10px;
}

@media all and (min-width: 768px) {
  .logo img {
    max-width: 250px;
  }
  .logo .flexbox_wap{
    justify-content: space-between;
  }
.w40 {width:35%; margin-right:5%;}
.w60 {width:55%;}

}


.mainimg_bg {
  text-align:center;
  position:relative;
}

@media only screen and (min-width: 768px) {
  .mainimg_bg::after {
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:555px;
    background:var(--mainbk-yellow);
    background-image: url(../img/main_bk.png);
    z-index:-1;
  }
}

.mainimg_bg img {
  margin:0 auto;
  max-width:100%;
  height:auto;
}


/* 4: gnav
================================== */
.menu {
	display: none;
	position: absolute;
	top: 65px;
	right: 0;
	left: 0;
	width: 90%;
	margin: 0 auto;
	padding: 5px 0;
	z-index: 999;
  text-align:center;
  }
  
  .menu a {
	display: block;
	padding: 20px;
	color: #FFF;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
  }
  
  .menu_trigger {
	position: absolute;
	top: 5px;
	right: 15px;
	background: var(--main-bl);
	border-radius: 15px;
	border: none;
	width: 110px;
	height: 36px;
	text-indent: -900em;
	overflow: hidden;
	cursor: pointer;
	outline: none;
	z-index: 999;
	-webkit-transition: .35s ease-in-out;
	-moz-transition: .35s ease-in-out;
	transition: .35s ease-in-out;
  }
  
  .menu_trigger img {
	position: absolute;
	top: 13px;
	left: 0;
	right: 0;
	width: 60px;
	height: auto;
	margin: 0 auto;
	padding-left: 20px;
  }
  
  .menu_trigger span {
	display: inline-block;
	transition: all .4s;
  }
  
  .menu_trigger span {
	position: absolute;
	left: 20px;
	width: 16px;
	height: 3px;
	background-color: #FFF;
  }
  
  .menu_trigger span:nth-of-type(1) {
	top: 13px;
  }
  
  .menu_trigger span:nth-of-type(2) {
	top: 21px;
  }
  
  .menu_trigger.active span {
	background-color: #FFF;
  }
  
  .menu_trigger.active span:nth-of-type(1) {
	-webkit-transform: translateY(4px) rotate(-45deg);
	transform: translateY(4px) rotate(-45deg);
  }
  
  .menu_trigger.active span:nth-of-type(2) {
	-webkit-transform: translateY(-4px) rotate(45deg);
	transform: translateY(-4px) rotate(45deg);
  }
  
  .layer {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--main-bl);
	-ms-filter: "alpha(opacity=50)";
	/* ie 8 */
	opacity: 0.8;
	z-index: 8;
  }
  
  /* media query -> pc
  =======================*/

  @media all and (min-width: 768px) {
	.menu_trigger {
	  display: none;
	}

	#nav {
		background: var(--main-bl);
	}
  
	.menu {
	  display: block;
	  position: static;
	  width: 100%;
	  margin: 0 30px;
	  padding: 10px 0;
	  background: none;
	  font-size: 0;
	}
  
	.menu a {
	  position: relative;
	  display: block;
	  padding: 0;
	  color: #fff;
	  font-weight: bold;
	  text-align: center;
	  text-decoration: none;
	}
  
	.menu a:hover {
	  color: var(--mainbk-yellow);
	}
  
	.menu a::after {
	  position: absolute;
	  bottom: -5px;
	  left: 0;
	  content: '';
	  width: 0;
	  height: 3px;
	  background-color: var(--mainbk-yellow);
	  transition: .3s;
	}
  
	.menu a:hover::after {
	  width: 100%;
	}
  
	.menu li {
	  display: inline-block;
	  padding-left: 20px;
	  font-size: 1.6rem;
    width:calc(100%/4)
	}
  
	.menu li:first-child {
	  padding-left: 0;
	}
  }

/* 5: contents
================================== */
.sp_none {
  display: none;
}

@media only screen and (min-width: 768px) {
  .sp_none {
    display: block;
  }

  .pc_none {
    display: none;
  }
}

@media only screen and (min-width: 768px) {
  .section_inr {
    max-width: 1200px;
    margin: 0 auto;
  }
}

#news .section_inr h2 {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  position: relative;

}
@media only screen and (min-width: 768px) {
  #news .section_inr h2 {
    width: 525px;
    font-size: 3rem;
    margin: 0 auto 40px;
  }
}

#flyer .section_inr {
	background:url(../img/back_flyer.png) no-repeat center bottom;
	background-size:contain;
}

  /* 20230907 #flyer .section_inr h2 {
	font-size: 2.5rem;
	font-weight: bold;
	color: #000;
	text-align: center;
	position: relative;
	background: url(../img/h2_flyer.png) no-repeat center left;
	margin: 0 auto 20px auto;
	width:250px;
	padding-left:60px;
	min-height:60px;
	line-height:60px;
  }*/

#flyer .section_inr h2 {
	font-size: 2.5rem;
	font-weight: bold;
	color: #000;
	text-align: left;
	position: relative;
	background: url(../img/h2_flyer.png) no-repeat center left;
	margin: 0 auto 20px auto;
	width:260px;
	padding-left:80px;
	min-height:60px;
	line-height:60px;
  }

#program .section_inr h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #000;
  text-align: center;
  position: relative;
  background: url(../img/h2_program.png) no-repeat center left;
  margin: 0 auto 20px auto;
  width:250px;
  padding-left:60px;
  min-height:60px;
  line-height:60px;
}

#toudan .section_inr h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #000;
  text-align: center;
  position: relative;
  background: url(../img/h2_toudan.png) no-repeat center left;
  margin: 0 auto 20px auto;
  width:280px;
  padding-left:70px;
}

#contact .section_inr h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #000;
  text-align: center;
  position: relative;
  background: url(../img/h2_contact.png) no-repeat center left;
  margin: 0 auto 20px auto;
  width:220px;
  padding-left:70px;
  height:60px;
}

@media only screen and (min-width: 768px) {
  #program .section_inr h2,
  #toudan .section_inr h2,
  #contact .section_inr h2 
   {
    font-size: 3rem;
  }
  #toudan .section_inr h2 {
  margin-bottom: 50px;
  }

}

#contact .section_inr h2::after {
    content:"";
    width:95px;
    height:115px;
    position:absolute;
    top:0;
    right:-150px;


  }

  @media only screen and (min-width: 768px) {
    #contact .section_inr h2::after {
    background:url(../img/contact_ico.png) no-repeat;
   }
  }


#outline {
  padding-top:50px;
  position:relative;
  background: #aee0b1;
  margin-top: 60px;
}

  #outline::before {
    content:"";
    width:100%;
    height:50px;
    background:url(../img/outline_up.svg) no-repeat;
    background-size:cover;
    position:absolute;
    top:-50px;
    left:0;
  }

  #outline::after {
    content:"";
    width:100%;
    height:50px;
    background:url(../img/outline_bottom.svg) no-repeat;
    background-size:cover;
    position:absolute;
    bottom:-50px;
    left:0;
    z-index:5;
  }
  #outline .section_inr{
    margin-top: -40px;
    }



#outline .section_inr h2 {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  position: relative;
  background: url(../img/h2_outline.png) no-repeat left center;
  margin:  0 auto 20px auto;
  width:200px;
  padding-left:60px;
}

@media only screen and (min-width: 768px) {
  #outline .section_inr h2 {
  font-size: 3rem;
  margin: 0 auto 50px auto;
  }
}

#gaiyo h2 {
  text-align:center;
}

@media only screen and (min-width: 768px) {

  #gaiyo h2 {
   margin-bottom: 50px;
  }

}


  #gaiyo h2 img {
    margin:0 auto 1em auto;
    max-width:100%;
  }

  .section_inr {
    padding: 0 24px 0px;
  }

  @media only screen and (min-width: 768px) {
    .section_inr {
      padding: 0 24px 50px;
    }
  }

    @media only screen and (min-width: 768px) {

    }



#nav .section_inr {
	padding:0;
}


#news {
  padding-top:50px;
}


.newsmds {
  position: relative;
  padding: 5px;
  color: #000;
  font-weight: bold;
  }
  .newsmds::before,
  .newsmds::after {
  position: absolute;
  width: 100%;
  height: 110%;
  content: "";
  z-index: -1;
  transform: skew(15deg);
  }
  .newsmds::before {
  top: -5px;
  left: -10px;
  background-color: #ffff60;
  }
  .newsmds::after {
  top: 5px;
  left: 5px;
  border: 2px solid;
  }



.txt {
  margin-bottom: 40px;
}


@media only screen and (min-width: 768px) {
  #news dt {
    width:10em;
  }

  #news dd {
    width:calc(100% - 11em)
  }

  #news dl {
    display:flex;
    border-bottom:dashed 1px #d8dce3;
    padding-bottom:0.5em;
    padding-top:0.5em;
  }

  .outlineflex {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}


#news dl {
  border-bottom:dashed 1px #d8dce3;
  padding-bottom:0.5em;
  padding-top:0.5em;
}


#outline dt {
  width: 100%;
  padding: 8px;
  background: #fff;
  color: var(--main-bl);
  margin-right: 2em;
  text-align: center;
  font-weight: bold;
  border-radius: 3px;
  clear:both;
}

@media all and (min-width: 768px) {
  #outline dt {
    width: 9em;
    margin-bottom: 8px
  }
  #outline dl {
	  display:flex;
    align-items: normal;
  }
}

#outline dd {
  width: 100%;
  padding: 8px;
  margin-bottom:0.5em;
}

	.indent {
		letter-spacing:0.8em;
		margin-right:0.2em;
	}

@media all and (min-width: 768px) {
  #outline dd {
    width: calc(100% - 10em);
    margin-bottom: 8px;
  }
}

#outline .btn a {
  display: block;
  background: #419BCC;
  border: solid 1px #419BCC;
  color: white;
  font-weight: bold;
  font-size: 1.8rem;
  text-align: center;
  width: 15em;
  padding: 0.5em;
  border-radius: 10px;
  margin: 1em auto;
  box-shadow: 0px 0px 15px -5px #777777;
  text-decoration: none;
  -webkit-transition: all .2s;
  transition: all .2s;
}

#outline .btn a:hover {
  background: white;
  color: #419BCC;
}

@media all and (min-width: 768px) {
  .btn a {
    width: 100%;
    font-size: 1.3rem;
  }
}

.outlineimg img {
  width: 200px;
  height: auto;
  margin: 24px auto 0;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 40%);
}

.map {
  width:100%;
  height:400px;
}

@media only screen and (min-width: 768px) {
  .outlineimg img {
    margin: 0 auto;
  }

  .map {
    width:500px;
    height:400px;
  }

  #outline dl {
    width:600px;
  }

  .outlineimg {
    width: calc(100% - 800px);
    text-align: center;
  }
}

#gaiyo {
  padding:100px 0 20px 0;
  position:relative;
  background: var(--mainbk-yellow) url(../img/back_gaiyo.png) no-repeat center bottom;
  background-size: contain;
}

@media only screen and (min-width: 1200px) {
  #gaiyo {
    background-size: auto;
  }
}

#gaiyo p {
  text-align:left;
}

@media print {
    #gaiyo p {
      text-align:center;
    }
}

.spnone{display:none;}

@media only screen and (min-width: 768px) {
  #gaiyo p {
    text-align:center;
    position:relative;
  }
  .spnone{display: block;}
}


.baloon {
  background:url(../img/baloon.png) no-repeat center center;
  background-size:contain;
  font-weight:bold;
  /* height:200px; */
  margin:2em auto;
  color:white;
  /* padding:60px 0 0 60px; */
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 3 / 1;
}

.baloon br{
  display: none;
}

#gaiyo .baloon span{
  margin: 0 auto;
  text-align: left;
  width: auto;
  display: block;
  transform: scale(50vw);
  max-width: 40vw;

}

  .baloon{
    transform: scale(50vw);
    max-width: 450px;
  }

  .baloon span{

  }
  @media only screen and (max-width: 500px) {
    .baloon {
      font-size: 3vw;
    }
  }



@media only screen and (min-width: 768px) {
	.baloon {
		width:450px;
		background:url(../img/baloon.png) no-repeat center center;
    transform: scale(1);
    font-size: 1em;
	}
  .baloon br{
    display: block;
  }

}

.button {
  background:var(--main-bl);
  color:white;
  text-decoration:none;
  width:300px;
  height:120px;
  display:block;
  margin:0 10px 10px 0;
  text-align:center;
  font-size:2.1rem;
  padding-top:20px;
  position:relative;
  line-height:1.2;
}

  .button:after {
    content:"";
    border-left: 20px solid transparent;
    border-bottom: 20px solid white;
    position:absolute;
    right:10px;
    bottom:10px;
  }

  a.button:hover {
    background:white;
    color:var(--main-bl);
  }

.deadline {
	min-width:300px;
	text-align:center;
	margin-right:1em;
}

.deadline dl {
	display:flex;
}
	.deadline dt {
		width:8em;
		text-align:right;
		margin-right:1em;
		font-weight:bold;
	}

	.deadline dd {
		font-weight:bold;
	}

.flexbox_wap dl {
	width:50%;
}

#program {
  background: var(--mainbk-yellow);
  padding:2em 0 60px 0;
  position:relative;
}

#flyer {
  background: #fff;
  padding:2em 0 60px 0;
  position:relative;
}

#program .section_inr {
  background:white;
  border:solid 3px #000;
  position:relative;
  padding-top:20px;
  margin:1em;
}
@media only screen and (min-width: 768px) {
  #program {
    padding:2em 0 100px 0;
  }

  #program .section_inr {
    margin:0 auto;
  }
}

#program .section_inr::before {
  content:"";
  position:absolute;
  bottom:-300px;
  left:0;
  width:100%;
  height:510px;
  background:url(../img/back_program.png) no-repeat;
  z-index:5;
}

#program .section_inr::before {
  background: url(../img/back_program.png) no-repeat;
  width: 1250px;
  max-width: 100%;
  bottom: -480px;
  left: auto;
  right: auto;
  background-size: contain;
  pointer-events: none;
}

@media only screen and (min-width: 768px) {
  #program .section_inr::before {
    background: url(../img/back_program.png) no-repeat;
    background-size: auto;
    height: 430px;
    bottom: -220px;
    left: auto;
    background-size: contain;
    right: auto;
  }
}

@media only screen and (max-width: 375px) {
  #program .section_inr::before {
    bottom: -500px;
  }
}

#program dl {
  padding: 8px;
  font-size: 1.8rem;
  border-bottom:dashed #d8dce3 1px;
}

@media only screen and (min-width: 768px) {
  #program dl {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    width: 1000px;
    margin: 0 auto;
  }
}

@media only screen and (min-width: 768px) {
  #program dl {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    width: 95%;
    margin: 0 auto;
  }
}

#program dt {
  padding:0 30px 0 0 ;
  font-weight: bold;
  color: #333;
  position:relative;
  margin-right:10px;
}

#program dt::after {
  content:"";
  width:25px;
  height:100%;
  background:url(../img/icn.png) no-repeat center center;
  position:absolute;
  top:0;
  right:0;
}


@media only screen and (max-width: 768px) {
  #program dt::after {
    background:url(../img/icn.png) no-repeat center center;
    position:absolute;
    top:0;
    left:0;
  }
  #program dt {
    padding:0 0 0 30px ;
  }
}

#program h3 {
  border: 2px solid #000;
  position: relative;
  padding: 5px 5px;
  z-index: 2;
}
#program h3::before{
  content: "";
  background: #ffff60;
  width: 100%;
  height: 100%;
  position: absolute;
  top: -3px;
  left: -3px;
  z-index: -1;
  mix-blend-mode: multiply;
}


#toudan h3{
  position: relative;
  font-size: 1.6rem;
  font-weight: bold;
  color: black;
  width: 95%; /* 幅 */

}

@media only screen and (max-width: 375px) {
  #toudan h3{
    font-size: 0.95em;
 }
}


#toudan h3::after{
  position: absolute;
  content: "";
  width: 105%; /* 幅 */
	height: 100%;
	border-bottom: 40px solid #ffff60; /* 高さ */
	border-left: 0px solid transparent; /* 左側下辺の伸び */
	border-right: 10px solid transparent; /* 右側下辺の伸び */
	box-sizing: border-box;
  left: 0;
  top: -5px;
  left: -3px;
  z-index: -1;
  display: block;

}

#toudan h3 span{
  border-top: 2px solid #000;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
  display: block;
  width: 100%; /* 幅 */
  height: 100%;
  padding: 0px 10px;

}

#toudan h3 span::after{
  content: "";
  top: 0;
  left: 20px;
  width: 100%; /* 幅 */

  height: 100%;
  padding: 0px 10px;
  /* position: absolute; */
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: skew(15deg);
  display: block;
  position: absolute;
}


#program h3 span {
  margin-top: 8px;
  padding: 8px;
}

@media only screen and (min-width: 768px) {

  #toudan h3::after{
    width: 420px;
    height: 40px;

  }
  
#toudan h3 span,#toudan h3 span::after{
  width: 400px;
  height: 40px;

}

  #program h3 span {
    float: right;
    text-align: right;
    margin-top: 0;
    padding: 0 16px;
  }
}

#toudan {
  background:repeating-linear-gradient(120deg, #f2f2f2, #f2f2f2 8px, #f9f9f9 8px, #f9f9f9 35px);
  padding-top:60px;
  position:relative;
  z-index:0;
}

@media only screen and (min-width: 768px) {
  #toudan {
    padding-top:100px; 
  } 

#toudan .banner li {
  width:40%;
  border: 2px solid #ccc;
}
 
 .booth li {
 	line-height:80px;
 }

}

#toudan li {
  background:white;
  margin:10px;
  padding:10px;
  border:solid 2px #000;
}

.banner li {
	width:100%;
}

  .banner li img {
    max-width:80%;
    height:auto;
    margin:0 auto;
  }


@media only screen and (min-width: 768px) {

  #toudan .banner li {
    width:calc(100%/3 - 20px);
  }

}

#toudan .flexbox_sbwap li {
  width:100%;
}

@media only screen and (min-width: 768px) {
  #toudan .flexbox_sbwap li {
    width:calc(100%/2 - 20px);
  }
}

@media only screen and (max-width: 400px) {
  #toudan .box_txt.flexbox_wap{
    flex-direction: column;
  }
  
  #toudan .banner li,
  .banner li {
  	width:100%;
  	line-height:auto!important;
  }

}




h4 {
  background:url(../img/icn_p.png) no-repeat center left;
  font-weight:bold;
  font-size:1.8rem;
  padding-left:43px;
  border-bottom:solid 1px #ccc;
  padding-bottom:5px;
  margin-bottom:10px;
  line-height:1.4;
}

  h4 span{
    display:block;
    font-weight:normal;
    font-size:1.6rem;
    line-height:1.2;


  }

  h4 span.fB{
    display: block;
    width: 100%;
    background: #efefef;
    padding: 5px;
    margin: -10px -52px;
      margin-bottom: -10px;
    margin-bottom: 5px; 
    text-align: left;
  }

  h4.fusen {
    background: #a6d3c8;
    font-weight: bold!important; 
    text-align: left;
    margin-bottom: 20px;
    padding-left:0.5em;
    margin-top:20px;
    position:relative;
  }

  h4.fusen::before {
    position: absolute;
    content: '';
    top: 100%;
    left: 0;
    border: none;
    border-bottom: solid 15px transparent;
    border-right: solid 20px rgb(149, 158, 155);
  }

  @media only screen and (max-width: 768px) {
    h4 {
      clear:both;
    }
  }

  @media only screen and (min-width: 768px) {
    h4 span.fB {
      text-align: center;
    }
  }

  @media only screen and (max-width: 400px) {
    h4 span.fB {
      text-align: center;
      margin: 0;
      margin-bottom: .5em;
      margin-top:1.5em;
      width: 100%;
      font-size: 90%;
    }
  }


  
/* #toudan .section_inr {
    padding: 0 0px 50px;
  } */

#toudan .flexbox_wap figure {
  width:120px;
  margin-right:20px;
}

#toudan .flexbox_wap figure img {
  width:100%;
  height:auto;
}

#toudan .flexbox_wap p {
  width: calc(100% - 140px);
}

@media only screen and (min-width: 768px) {
  #toudan .flexbox_wap figure img {
      max-width:100px;
  }
  #toudan .flexbox_wap p {
    width: calc(100% - 120px);
  }
  #toudan .flexbox_wap figure {
      margin-right:0;
  }
}
@media only screen and (max-width: 400px) {
#toudan .flexbox_wap p{
  width: 100%;
  }
  #toudan .flexbox_wap figure {
    width:50%;
    margin: 0 auto 0.5em auto;
  }

}

.box_txt img {
  display:inline-block;
  vertical-align:middle;
  margin-right:5px;
}


.cate {
float: right;
background: var(--green);
color: white;
font-weight: bold;
width: 8.5em;
text-align: center;
margin: -10px -10px 0 0;
  margin-right: -10px;
font-size: 1.6rem;
position: absolute;
right: 6px;
margin-right: 30px;
}


@media only screen and (min-width: 768px) {
  .cate {
    font-weight:bold;
    padding:0.5em;
    width:9em;
    text-align:center;
    margin:-10px -10px 0 0;
    font-size:1.6rem;
    position: relative;
    right: 0px;
  }

}


#contact {
  background:var(--mainbk-yellow);
  padding-top:50px;
}

#contact .section_inr {
  position:relative;
}


  #contact .section_inr::before {
    content:"";
    width:100%;
    height:34vw;
    position:absolute;
    top:auto;
    bottom:0px;
    left:auto;
    right: -80%;
    background:url(../img/contact_p.png) no-repeat;
    background-size: contain;
  }

  /* @media only screen and (max-width: 1000px) {
    #contact .section_inr::before {
    bottom:200px;
    }
  } */


  @media only screen and (min-width: 768px) {
    #contact .section_inr::before {
      height:380px;
      top:0;
      bottom:auto;
      position:absolute;
      top:auto;
      bottom:380px;
      left:0;
    }
    
  }


#contact p {
  text-align: center;
}

.contact {
  border:solid 3px var(--main-bl);
  padding:20px 50px 20px 20px;
  border-radius:15px;
  background:white;
  margin-top:50px;
}



  .contact_tit {
    font-size:2.5rem;
    font-weight:bold;
    background:url(../img/icn_mail.png) no-repeat center left;
    padding-left:70px;
    margin-right:30px;
  }

  @media only screen and (min-width: 768px) {
    .contact_tit {
      font-size:3.6rem;
      font-weight:bold;
      background:url(../img/icn_mail.png) no-repeat center left;
      padding-left:70px;
      margin-right:30px;
    }
  }

  .contact li {
    text-align:left;
  }

  
  .contact .flexbox_wap {
    align-items:center;
  }


.flexbox_cwap li {
  margin: 0.5em;
}




.footer_menu .flexbox_cwap li a {
  position: relative;
  padding-left: 15px;
}

.footer_menu .flexbox_cwap li a::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 5px;
  position: absolute;
  left: 0;
  top: 35%;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* 6: footer
================================== */
#footer {
  padding: 30px 20px;
  background:#c8d6d3;
}

.copy {
  text-align: center;
  font-size: 1.4rem;
  color: black;
}

/* go topボタン */
#page-top {
  position: fixed;
  bottom: 20px;
  right: 10px;
  font-weight: bold;
  font-size: 80%;
  z-index: 5;
  text-align: center;
}

#page-top a {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  background: var(--main-bl);
  color: #fff;
  opacity: 0.7;
  text-indent:-9999px;
}

#page-top a:hover {
  opacity: 0.7;
}

#page-top a:active {
  opacity: 1;
}

#page-top a:after {
  position: absolute;
  right: 15px;
  top: 40%;
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.attention {
	margin-top:2em;
	border:solid 2px #000;
	padding:1em;
	text-align:left;
}

	#contact .attention p {
		text-align:left;
	}

	.attention h3 {
		font-weight:bold;
	}


/* media query -> sp
=======================*/
@media all and (min-width: 768px) {

  /* go topボタン */
  #page-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
  }

  #page-top a {
    width: 60px;
    height: 60px;
  }

  #page-top a:after {
    position: absolute;
    right: 21px;
    width: 17px;
    height: 17px;
  }

}


.ate{
  background: #d1ecd2;
  padding: 2px 5px;
  border-radius: 5px;
}

.stpdfbtn,
a.stpdfbtn,
button.stpdfbtn {
  border: 2px solid #000;
  font-size: 2.4rem;
  color: #6fc4b5;
  padding: 50px 20px;
  margin:0px;
  display: block;
  background: #fff;
  color: #000;
  margin: 10px;
}

.stpdf_icon{
  height: 3.6rem;
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
}


#grp {
  background: #ebebe89e;
  /* border: 5px #ccc solid; */
  padding: 20px 20px;
  margin-top: 20px;
  border-radius: 30px;
  z-index: 1;
  position: relative;
}

#toudan #grp > h3.fusen-1::after{
 border-bottom: 0px solid #fff;
}



.fusen-1 {
  display: inline-block;
  position: relative;
  padding: .5em 1.3em .5em 1em;
  background-color: #254ca0;
  color: #fff;
  max-width: 600px;
  margin-left: -30px;
}

.fusen-1::before {
  position: absolute;
  bottom: -1px;
  right: 9px;
  z-index: -1;
  transform: rotate(5deg);
  width: 20%;
  height: 50%;
  background-color: #d0d0d0;
  content: "";
  filter: blur(4px);
}

.drop{
  display: none;
  position: absolute;
  background: var(--main-bl);
}

.menu .drop li{
  width:max-content;
  width:-ms-max-content;
  width:-moz-max-content;
  width:-webkit-max-content;
  width:-o-max-content;
  margin:0px auto;
  white-space: nowrap;
  display: block;
  padding: 10px 20px;
  text-align: center;
  /* margin-left: -20px; */
  top: 37px;  
}

.dropparent{
  position: relative;
}


#toudan p.sp_only{
  background: var(--green);
  color: white;
  margin:10px;
  padding: 10px;
  position: relative;
  font-weight: bold;
  z-index: 99;
}

.aco .aco_child{
  display: none;
}

.aco_child .cate{
  display: none;
}


#toudan p.sp_only:before,
#toudan p.sp_only:after {
  background-color: #fff;
  position: absolute;
  width: 20px;
  height: 2px;
  top: 49%;
  right: 20px;
  z-index: 9999;
  content: '';
}

#toudan p.sp_only:before {
transform: translateY(-50%) rotate(90deg);
top: 50%;
}

#toudan p.sp_only.active:before {
transform: rotate(180deg);
transition: .2s
}

#toudan p.sp_only.active:after {
opacity: 0;
transition: .1s
}


@media only screen and (min-width: 768px) {
  #toudan p.sp_only{
    display: none;
  }

  .aco .aco_child{
    display: block;
  }
  .aco_child .cate{
    display: block;
  }
}


@media only screen and (max-width: 768px) {
  .drop {
    display: none;
    position: relative;
    background: #254ca0;
  }
  }

