@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP&display=swap');
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Color+Emoji&display=swap');

*{
    box-sizing:border-box;
    padding:0;
    margin:0;
    font-family:'Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','游ゴシック Medium','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
}

body {
    font-size:15px;
    line-height:1.5em;
    -webkit-overflow-scrolling: touch;
    color:#444;
}

/*PCモバイル*/
.mobileonly {display:none;}
.tabletonly {display:none;}
.pconly {display:block;}

/*リンク*/
a {color:#0070C0;}
a:hover {color:#eec44f;}

/*注意書き*/
.attention{color:#f33;}
.attentionb{font-weight:bold;color:#f33;}

.small{font-size:12px;}

/*配置fixedのためアンカー位置がずれる対策*/
a.anchor{
    display: block;
    padding-top: 93px;
    margin-top: -93px;
}

/*Android Chrome フォントサイズが大きくなってしまう対策*/
/*モーダルの文字が重なってしまうので一旦コメントします！他の方法で対策ないか検討
#contents main *{
    max-height: 100%;
}*/


/*フロートボタン*/
/*-------------------------------------*/
#pagetotop,
#pagetofooter {
    position:fixed;
    display:block;
    z-index:6;
    border-radius:5px;
    text-align:center;
    text-decoration:none;
    font-size:11px;
    color:#fff;
}
#pagetotop {
    bottom:130px;
    right:40px;
    padding:3px 13px 23px;
    background:#5682BB;
    line-height:10px;
}
#pagetotop i {font-size:30px;line-height:44px;color:#fff;}
#pagetofooter {
    bottom:40px;
    right:40px;
    padding:10px 12px 15px;
    background:#a55353;
    line-height:20px;
}
#pagetofooter i {font-size:30px;line-height:32px;color:#fff;}
#pagetotop:hover,#pagetofooter:hover{opacity:0.85;}
/*max-width: 540px*/
/*-------------------------------------*/
@media only screen and (max-width: 540px){
    #pagetotop,
    #pagetofooter {
        bottom:0;
        right:0;
        border-radius:0;
        padding:5px;
        line-height:1;
        width:50%;
    }   
    #pagetofooter {
        right:50%;
    }    
    #pagetotop i,
    #pagetofooter i {font-size:20px;line-height:1.5;}
    #pagetotop:hover,#pagetofooter:hover{opacity:1;}
}


/*ヘッダー*/
/*-------------------------------------*/
header {
    position:fixed;
    z-index:10;
    top:0;
    left:0;
    width:100%;
    height:93px;
    background:#014099;
    box-shadow: 0px 5px 5px rgb(0, 0, 0, .4);
}
.menu-btn{
    display:none;
}
header section {
    width:1080px;
    margin:0 auto;
    overflow: auto;
}
header #toplogo {
    background: #000;
    overflow: auto;
}
header #toplogo h1 a {
    float:left;
    padding:0 20px;
    font-size:15px;
    color:#fff;
    margin:10px;
    font-family:'M PLUS 1p';
    text-decoration:none;
}
header #toplogo .awaji {
    float:right;
    margin:10px;
}
header #toplogo .awaji img {
    width:17px;
}
header #toplogo .awaji span {
    font-size:15px;
    color:#fff;
    display:inline-block;
}
header #toplogo a:hover{
    opacity:.6;
}
header #account {
    color:#fff;
    float:right;
    margin-right:15px;
    padding:5px;
}
header nav {
    clear: both;
    display:flex; /*中揃え*/
    justify-content: center; /*中揃え*/
}
header nav ul li {
    display:block;
    text-decoration:none;
    text-align:center;
    float:left;
    padding:10px;
    height:50px;
    width:150px;
}
header nav ul li a {
    display:block;
    font-size:19px;
    line-height:1.6em;
    color:#fff;
    text-decoration:none;
    font-weight: bold;
}
header nav ul li:hover{
    background: rgba(0,0,0,0.6);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
header nav ul li a:hover,
header nav ul li a:hover i {
    color:#fff;
    text-decoration: none;
}


/*トップ画像*/
/*-------------------------------------*/
#topimage {
    position:relative;
    top:93px;
    width:100%;
    background:url(top_image.png) no-repeat 50% 50%;
    background-size:cover;
    padding: 30px 0;
}
#topimage h1 {
    width: 1080px;
    font-size:32px;
    line-height:2em;
    padding:0;
    margin:0 auto;
    text-align: center;
}
#topimage section {
    width: 1080px;
    font-size:15px;
    line-height:22px;
    padding:25px;
    margin: 0 auto;
    text-shadow:0 0 4px #fff;
}


/*メインコンテンツ*/
/*-------------------------------------*/
#contents main {
    position:relative;
    top:93px;
    background:#fff;
    overflow:auto;
    border:1px #fff solid; /*これ入れると謎のぞき穴が無くなるので*/
}

#contents main article {
    margin:10px 0 30px;
}

#contents main section {
    width: 1080px;
    margin:0 auto 50px;
    overflow:auto;
    background: rgba(255,255,255,0.3);
    background:#fff;
    padding:15px 25px;
}

#contents main h3 {
    font-size:32px;
    line-height:1.5em;
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
}


/*箇条書き*/
#contents main ul.disc li {
    list-style:disc;
    margin:3px 0 3px 25px;
}
#contents main ul.kome li {
    list-style:none;
    margin: 0;
    padding-left: 1em;
    text-indent: -1em;
}
#contents main ul.kome li:before {
  content: "※";
}

/*ごあいさつ*/
#greetings .greetings-header{
    margin-top:60px;
    margin-bottom:20px;
    border-bottom:1px solid #eee;
    overflow: auto;
}
#greetings h4{
    font-size:26px;
    line-height:1.3;
    margin:10px 0;
    float: left;
}
#greetings .planner{
    padding:0 20px;
    text-align:right;
    float: right;
}
#greetings .planner span{
    font-size:26px;
    font-weight: bold;
    line-height:1.5;
}
#greetings p{clear: both;}

/*開催概要*/
#outline table{
    width:100%;
	border-collapse: collapse;
}
#outline table td,
#outline table th{
    border-top:1px solid #eee;
    border-bottom:1px solid #eee;
    padding:20px;
    text-align:left;
}

/*プログラム*/
#program .box h4{
    font-size:20px;
    margin:10px 0;
}
#program .box {
  position: relative;
  z-index: 1;
  background:#f6faff;
  padding:10px;
  border-radius:20px;
  text-align:center;
  margin:0 auto 50px;
}
#program .box::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -40px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 30px solid #014099;
  z-index: 0;
}
#program .box:last-child::after {
  content: none;
}
#program .handson-row {
    display:flex;
    justify-content:center;
}
#program .handson-col {
    flex:1;
    margin:10px;
    padding:20px;
    border:#eee 1px solid;
    border-radius:5px;
    background:#fff;
    text-align: center;
    box-shadow:1px 1px 4px #eee;
}
#program .handson-col h4 {
    display:inline-block;
    background: #187027;
    width:70px;
    height:70px;
    border-radius:50%;
    padding:15px 0;
    color:#fff;
    font-size:18px;
}
#program .handson-col .fukubu {background: #c98d0b;}
#program .handson-col .kekkan {background: #990fac;}
#program .handson-col p {
    text-align:left;
    margin-top:15px;
}

/*お申込み*/
#entry p{
    width:fit-content;
    margin:0 auto;
}
#entry a {
    display:block;
    width:fit-content;
    margin:20px auto;
    padding:15px;
    color:#ffffff;
    text-decoration:none;
    font-weight:bold;
    font-size:20px;
    border-radius:2px;
    background:#083388;
}
#entry a i{
    color:#ffffff;
}
#entry a:hover {
    opacity:0.7;
}
#entry a.close,
#entry a.close:hover {
    opacity:1;
    background:#ccc;
}


/*フッター*/
/*-------------------------------------*/
footer {
    position:relative;
    top:93px;
    background:#014099;
    padding:30px 0;
    z-index:5;
}

footer section {
    width:1080px;
    margin:0 auto;
    padding:15px;
    font-size:13px;
    overflow:auto;
}
footer h3 {
    font-size:18px;
    color:#fff;
}
footer p,
footer a,
footer i{
    text-decoration:none;
    color:#fff;
}
footer #copyright{
    font-size:11px;
    line-height:1.3em;
    text-align:right;
}


/*max-width: 1199px*/
/*-------------------------------------*/
@media only screen and (max-width: 1199px){
header section {
    width:100%;
}
#topimage h1 {
    width:100%;
}
#topimage{
    width:100%;
}
#topimage section {
    width:100%;
}
#contents #base {
    width:100%;
}
#contents main section {
    width:100%;
}
footer section {
    width:100%;
}
}


/*max-width: 890px*/
/*-------------------------------------*/
@media only screen and (max-width: 890px){
#topimage img{
    width:90%;
}
}


/*max-width: 765px*/
/*-------------------------------------*/
@media only screen and (max-width: 765px){
.mobileonly {display:block;}
.pconly {display:none;}
header {
    height:55px;
}
header #toplogo {
    height:55px;
}
header #toplogo h1 a {
    margin:17px 0 0 0;
}
header #toplogo .awaji {
    display:none;
}
#topimage {
    top:55px;
    padding:20px 0;
}
#topimage h1 {
    font-size:28px;
    line-height:38px;
}
#contents main {
    top:55px;
}
#outline table th{
    width:95px;
}
#program .handson-row {
    display:block;
}
a.regist {
    margin:0 0 10px 0;
    width:100%;
    text-align:left;
    float:none;
}
footer {
    top:55px;
}
footer #copyright{
    text-align: center;
}

/*サイドメニュー スマホ用*/
/*-------------------------------------*/
.menu-btn{
    position: fixed;
    z-index:99;
    top: 7px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #333;
}
.menu-btn p {
    font-size:10px;
    color:#fff;
    margin:0px;
    padding:0px;
    position: absolute;
    top:0;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
    transition: all .3s;
    margin-top:10px;
}
.menu-btn span:before {
    bottom: 6px;
}
.menu-btn span:after {
    top:-4px;
}
.side-open .menu-btn p {
    display:none;
}
.side-open .menu-btn span {
    background-color: rgba(255, 255, 255, 0);
    margin-top:0;
}
.side-open .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
.side-open .menu-btn span::after {
    top: -10px;
    transform: rotate(-45deg);
}
header nav {
    position: fixed;
    z-index:3;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #083388;
    /* アニメーション前のメニューの状態 */
    pointer-events: none;
    opacity: 0;
    transition: opacity .3s linear;
}
.side-open header nav{
    /* アニメーション後のメニューの状態 */
    pointer-events: auto;
    opacity: 1;
}
header nav ul{
    width: 100%;
    margin:0;
}
header nav ul li {
    width: 100%;
    margin:0;
    border-radius:0;
    padding-top:10px;
    border-top:1px solid #ccc;
    background-color: #083388;
}
header nav ul#signinmenu {
    width: 100%;
}
header nav ul#signinmenu li:last-child {
    border-bottom:1px solid #ccc;
}
header nav ul li a {
    font-size:20px;
}
header nav ul li a i {
    margin:0 5px;
}
header nav br {
    display:none;
}

}