﻿@charset "UTF-8";

/***********************************
transition
************************************/
img,
h1,
h2,
h3,
p,
a,
strong,
div,
li,
dl,
dt,
dd,
span,
article,
footer,
footer small {
  transition: all 1s;
}

header {
  transition: all .4s;
}

/*All Media CSS*/
/***********************************
html&body
************************************/
html {
	overflow-y:scroll;
}

body {
	font-feature-settings:"palt";
  color: #231815;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}

/*スマホの文字サイズ自動変更無効*/
html,body {
	-webkit-text-size-adjust:100%;
	height:auto;
}


/***********************************
Link Setting
************************************/
a:link,a:visited,a:active {
}

/*ページトップコントローラー*/
#topcontrol {
  display: block;
  background-image: url("../images/scrollTopControl_arrow.svg");
  background-position: center center;
  background-size: 40% auto;
  background-repeat: no-repeat;
  background-color: #000;  
	border-radius: 100px;
	 -moz-border-radius: 100px;
	 -webkit-border-radius: 100px;
	 -khtml-border-radius: 100px;	
  height: 60px;
  width: 60px;
	position:relative;
  transition: all 1s ease-out;
}

@media print,screen and (min-width:769px) {
  
	a.tel {
		pointer-events:none;
		text-decoration:none;
	}
  
  a:hover {
    opacity:.5;
  }
  
  /*ページトップコントローラー*/
  #topcontrol:hover {
    opacity: .5 !important;
  }  
  
}

@media screen and (max-width:768px) {
  
	a:hover {
		opacity:1;
	}
	
	a.tel {
		text-decoration:none !important;
	}
  
  /*ページトップコントローラー*/
  #topcontrol {
    height: 45px;
    width: 45px;
  }    
  
}


/***********************************
main container
************************************/
#mainContainer {
}

#mainContainer img {
  width: 100%;
}

#mainContainer #eye_catch-box {
  padding: 0 !important;
}

#mainContainer section h1,
#mainContainer section h2 {
  font-family: 'Anton', sans-serif;
  display: block;
  text-align: center;
  font-size: 0;
  line-height: 0;
  margin-bottom: 40px;
}

#mainContainer section h1 img,
#mainContainer section h2 img {
  height: 28px;
  width: auto;
}

#mainContainer #page_title-box {
  padding-bottom: 60px;
  padding-top: 60px;
}

#mainContainer #page_title-box h1 {
  margin-bottom: 0;
}

#mainContainer #page_title-box span {
  display: inline-block;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  font-weight: 600;
  font-size: 34px;
  position: relative;
  top: -4px;
  padding-left: 7px;
}

#mainContainer .in-box,
#mainContainer .in-sbox {
	margin-left:auto;
	margin-right:auto;
	width:95%;
}

#mainContainer .in-box {
	max-width:1000px;
	position: relative;
}

#mainContainer .in-sbox {
	max-width:800px;
}


@media print,screen and (min-width:769px) {
  
	#mainContainer {
	}	
	
	#mainContainer .pc {
		display:block;
	}

	#mainContainer .sp {
		display:none;
	}
  
}


@media screen and (max-width:768px) {
  
	#mainContainer {
    padding-top: 60px;
	}
  
  #mainContainer section h1,
  #mainContainer section h2 {
    margin-bottom: 20px;
  }  
  
  #mainContainer section h1 img,
  #mainContainer section h2 img {
    height: 26px;
    width: auto;
  }
  
  #mainContainer #page_title-box {
    padding-bottom: 30px;
    padding-top: 30px;
  }
  
  #mainContainer #page_title-box span {
    font-size: 24px;
    top: -2px;
  }    
	
	#mainContainer .pc {
		display:none;
	}

	#mainContainer .sp {
		display:block;
	}
  
}


/***********************************
header
************************************/
header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #fff;
  height: 100px;
  z-index: 3;
}

header h1 {
  display: block;
  max-width: 136px;
  margin-top: 14px;
  position: absolute;
  width: 15%;
}

header ul {
  position: relative;
  /* overflow: hidden; */
}

header ul li {
  float: left;
}

header ul li a {
  display: block;
  font-weight: 600;
  text-decoration: none;
  color: #000;
  text-align: center;
  font-size: 13px;
  border-right: 1px solid #eee;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}

header ul li:last-child {
  /* display: none !important; */
}

header ul li:nth-child(4) {
  display: none !important;
}


@media print,screen and (min-width:769px) {
  
	header {
    top: 0 !important;
    position: relative;
    /* overflow: hidden; */
 }
  
  header h1 {
    /* float: left; */
  }
  
  header ul {
    max-width: 995px;
    width: 83% !important;
    float: right;
    margin-top: 20px;
    position: absolute;
    right: 0;
  }
  
  header ul li {
    width: 16.65%;
  }
  
  header ul li a {
    line-height: 55px;
  }
  
  header ul li:first-child a {
    border-left: 1px solid #eee;
  }
  
}


@media screen and (min-width:769px) and (max-width:1024px) {
  
	header ul li a {
    font-size: 11px;
  }
  
}


@media screen and (max-width:768px) {
  
	header {
    height: 60px;
    box-shadow: 0 0 8px gray;
  }
  
  header h1 {
    margin-top: 8px;
    width: 80px;
  }
  
  header ul li {
    width: 100%;
  }  
  
  header ul li a {
    /* color: #fff; */
    line-height: 55px;
    border-bottom: 1px solid #000;
    border-right: none;
    text-align: left;
    padding-left: 2.5%;
    padding-right: 2.5%;
  }
  
  header ul li:nth-child(2n) a {
    border-right: none;
  }
  
}


/***********************************
content
************************************/
article#content {
}


@media print,screen and (min-width:769px) {
  
	article#content {
	}
  
}


@media screen and (min-width:769px) and (max-width:1024px) {
  
	article#content {
	}
  
}


@media screen and (max-width:768px) {
  
	article#content {
	}
  
}


/***********************************
partner
************************************/
#partner {
  max-width: 800px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

#partner p {
  display: block;
  text-align: center;
  font-size: 20px;
  margin-bottom: 50px;
}

#partner ul {
  position: relative;
  overflow: hidden;
}

#partner ul li {
  width: 48%;
  float: left;
  /* margin-left: auto; */
  /* margin-right: auto; */
}

#partner ul li:last-child {
  float: right;
  /* display: none; */
}

#partner ul li span.logo-box {
  display: block;
  margin-bottom: 30px;
}

#partner ul li span.link-box {
  display: block;  
}

#partner ul li span.link-box a {
  display: block;
  text-align: center;
  color: #fff;
  background-color: #009ae2;
  text-decoration: none;
  /* font-size: 28px; */
  /* letter-spacing: 2px; */
  font-weight: 600;
  /* padding-bottom: 65px; */
  /* padding-top: 40px; */
  /* background-image: url("../images/partner_arrow.svg"); */
  /* background-position: center bottom 20px; */
  background-repeat: no-repeat;
  /* background-size: auto 18px; */
}


@media screen and (max-width:768px) {
  
  #partner p {
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 20px;
  }

  #partner ul li {
    width: 100%;
  }

  #partner ul li:first-child {
    margin-bottom: 30px;
  }

  #partner ul li span.logo-box {
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    width: 60%;
  }
  
  #partner ul li span.link-box a {
    /* font-size: 15px; */
    /* padding-bottom: 35px; */
    /* padding-top: 20px; */
    /* background-position: center bottom 15px; */
    /* background-size: auto 9px; */
  }
  
}



/***********************************
footer
************************************/
footer {
  font-weight: 600;
  background-image: url("../images/footer_line_bg.png");
  background-repeat: repeat-x;
  background-position: top center;
  display: block;
  background-color: #f2f2f2;
  position: relative;
  overflow: hidden;
  padding-top: 12px;
}

footer a {  
  color: #231815;
  text-decoration: none;
}

footer dl {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  width: 95%;
}

footer dl dt,
footer dl dd {
  font-size: 16px;
}

/*committee-box*/
footer dl.committee-box {
  text-align: center;
  margin-bottom: 20px;
  margin-top: 50px;
}

footer dl.committee-box dt {
  display: block;
  margin-bottom: 20px;
}

footer dl.committee-box dd {
  display: block;
  font-size: 25px;
}

footer .contact_btn {
  color: #fff;
  background-color: rgba(0,0,0,1.00);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
  font-size: 20px;
  height: 72px;
  width: 90%;
}

/**/
footer dl.contact-box {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
  display: none !important;
}

footer dl.contact-box dt,
footer dl.contact-box dd {
  float: left;
  display: none !important;
}

footer dl.contact-box dt {
  width: 35%;
  padding-left: 3%;
}

footer dl.contact-box dd {
  width: 60%;
}

footer dl.contact-box dt.contact_title-box {
  border-bottom: 1px solid #231815;
  width: 97%;
  margin-bottom: 10px;
}

footer .privacy_link-box a {  
  background-color: #fff;
}

footer small.copyright-box {  
  background-color: #000;
  color: #fff;
}

footer .privacy_link-box a,
footer small {
  line-height: 55px;
  font-size: 14px;
  text-align: center;
  display: block;
}

footer small {
  font-weight: 100;
}

/*非表示ページ*/
#issue footer dl,
#issue footer span {
  display: none;
}


@media screen and (max-width:768px) {
  
  footer {
    padding-top: 6px;
    background-size: auto 6px;
  }  

  footer .contact_btn {
    margin-bottom: 0;
  }  
  
  footer dl dt,
  footer dl dd {
    font-size: 16px;  
  }
  
  /*committee-box*/
  footer dl.committee-box {
    margin-top: 25px;
  }
  
  footer dl.committee-box dd {
    font-size: 20px;
  }
    
  /*contact-box*/
  footer dl.contact-box {
    margin-bottom: 25px;
  }
  
  footer dl.contact-box dt,
  footer dl.contact-box dd {
    width: 100%;
    padding-left: 0;
    text-align: center;
  }
  
  footer dl.contact-box dt {
    margin-bottom: 5px;
  }

  footer .privacy_link-box a,
	footer small {
    line-height: 40px;
	}
  
}


