/**font**/
@import url(https://fonts.googleapis.com/css2?family=Arvo:ital,wght@0,400;0,700;1,700&family=Noto+Sans+JP:wght@500&display=swap);

/*reset*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
vertical-align: bottom;
box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
display: block;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
body {
  font-family: sans-serif;
}


/******共通******/

body , html {
  background:#FFCC00;
}

/******ヘッダー******/

header {
  width: 100%;
  display: flex;
}

header h1 {
  width: 30%;
  margin: 10px auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
header h1 img {
  width: 40%;
}
header .photo-area {
  width: 70%;
}
header .photo-area img {
  width: 100%;
}

/*hamburger*/
.jrYouth_menu {
  width: 60px;
  height: 60px;
  padding: 13px;
  background: #000;
  border: solid 2px #FFCC00;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99;
  cursor: pointer;
}
.jrYouth_menu span {
  display: block;
  width: 30px;
  height: 30px;
  border-top: solid 6px #FFCC00;
  border-bottom: solid 6px #FFCC00;
  position: relative;
}
.jrYouth_menu span:before {
  content: "";
  display: block;
  width: 30px;
  height: 6px;
  background: #FFCC00;
  position: absolute;
  top: 6px;
  left: 0;
}

.jrYouth_fixnav {
  width: 380px;
  max-width: 90%;
  background: #000;
  border-left: solid 2px #FFCC00;
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 100;
}
.jrYouth_navClose {
  padding: 30px;
}
.jrYouth_navClose span {
  width: 40px;
  height: 40px;
  background: #000;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: end;
  font-weight: bold;
  font-style: normal;
  font-size: 38px;
  color: #FFCC00;
  line-height: 1;
  border: solid 2px #FFCC00;
  border-radius: 3px;
}
.jrYouth_fixnav ul {
  width: 100%;
  height: 100vh;
  overflow-y:auto;
}
.jrYouth_fixnav ul li {
  width: 100%;
  padding: 0 30px 0;
}
.jrYouth_fixnav ul li a {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 15px;
  font-weight: bold;
  font-style: normal;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.3rem;
  transition: .3s;
  position: relative;
}
.jrYouth_fixnav ul li a:before {
  content:"";
  display: block;
  width: 100%;
  height: 2px;
  background: #FFCC00;
  position: absolute;
  bottom: 0;
  left: 0;
}
.jrYouth_fixnav ul li:first-child a:after {
  content:"";
  display: block;
  width: 100%;
  height: 2px;
  background: #FFCC00;
  position: absolute;
  top: 0;
  left: 0;
}
.jrYouth_fixnav ul a:hover {
  color: #FFCC00 !important;
}


/****contents****/

main > section {
  padding: 80px 15px !important;
}
main > section:nth-child(odd) {
  background: #000;
}

main > section .temp_innerWrap {
  padding: 25px !important;
  background: #FFF !important;
  border-radius: 10px;
}
main > section h3.temp_h3 {
  background: #FFCC00 !important;
  color: #000 !important;
}
main > section h2.temp_h2 {
  max-width: 1010px;
  margin: 0 auto 15px;
  font-size: 16px !important;
  padding: 0 15px;
  text-align: center;
  background: transparent !important;
}
main > section h2.temp_h2 b {
  font-family: "Arvo", serif;
  font-size: 38px !important;
}
main > section:nth-child(odd) h2.temp_h2 {
  color: #FFCC00 !important;
}

.temp_innerWrap table {
  width: 100%;
}
.temp_innerWrap table th, .temp_innerWrap table td {
  border: solid 1px #000 !important;
  vertical-align: middle;
}


/******footer******/

footer {
  padding: 50px 0 50px;
  margin: 80px 0 0;
  text-align: center;
}

footer .logo_home {
  width: 150px;
  margin: 0 auto 25px;
}

footer small {
  font-size: 12px;
  color: #000;
}

/***SP***/

@media screen and (max-width: 767px) {
  header {
    display: block;
    padding: 10px 0 0 !important;
  }

  header h1 {
    width: 100px;
    margin: 0 auto 10px;
    display: block;
  }
  header h1 img {
    width: 100%;
  }
  header .photo-area {
    width: 100%;
  }

  main > .temp_innerWrap {
    padding: 15px !important;
  }
}