* {
  margin: 0px;
  padding: 0px;
}

a {
  text-decoration: none;
}

body {
  text-align: left;
  font-size: 15px;
  overflow-wrap: break-word;
  font-family: 'Noto Sans JP', sans-serif;
  color:#2E2E2E;
}

header {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
}

footer {
  display: block;
  font: normal normal 800 23px/23px Noto Sans JP;
  letter-spacing: 0px;
  font-style: normal;
}

main{
  margin-top:60px;
}

@media screen and (min-width:768px) {
  main{
      margin-top:167px;
  }
}
@media screen and (min-width:1059px) {
  main{
      margin-top:96px;
  }
}

/* PCヘッダー */
.top-header{
  width: 100%;
}

.header-wrapper{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  height:100%;
  padding-bottom:30px;
  background: #FFF;
}

.header-logo {
  display: block;
  width:345px;
  height:35px;
  margin-top: 31px;
  margin-left: 25px;
}

.header-logo img{
  width:100%;
}

.header-menu{
  display: block;
  position: relative;
  margin-left: 10px;
  margin-right: 15px;
  text-align: center;
}
.header-menu li{
  list-style: none;
}

.top-ul {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: flex-start;
  align-items: flex-end;
  font: normal normal 700 16px/38px Noto Sans JP;
  margin-top: 33px;
}

.top-ul > li {
  display: inline-block;
}

.top-ul li > a {
  padding: 10px 16px;
  display: block;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0em;
  text-decoration: none;
  color: #3E3E3E;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all  0.3s ease;
}

.top-ul li > a:hover {
  color: #FFAF00;
}

.block-list{
  background-color:#FFFFFF
  color:#3E3E3E;
  text-align:left;
  padding-inline-start:0px;
  margin-left: 1em;
}

.block-list li {
  background-color:#FFFFFF;
  margin-top:0px;
}

.block-list li img{
  margin-top: 0px;
  height: 1.2em;
  margin-left: 1.5em;
}

.header-menu ul li ul{
  visibility: hidden;
  position: absolute;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all  0.3s ease;
}

.header-menu ul li:hover ul{
  visibility: visible;
  opacity: 1;
}

.header-menu ul li ul li{
  background-color:#FFAF00;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all  0.1s ease;
  opacity: 1;
}

.header-menu ul li ul li:hover{
  background-color:#FF9100;
  opacity: 1;
}

.header-menu ul li ul li a{
  color:#FFF;
  opacity: 1;
}

.header-menu ul li ul li a:hover{
  color:#FFF;
  opacity: 1;
}

.header-menu ul li ul .block-list-head{
  background-color:rgba(0,0,0,0);
  margin-bottom:-5px;
}

.header-menu ul li ul .block-list-head:hover{
  background-color:rgba(0,0,0,0);
}

.header-menu-triangle {
  display:block;
  margin-left:25px;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 11px solid transparent;
  border-left: 11px solid transparent;
  border-bottom: 19px solid #f9b419;
  border-top: 0;
}

.block-list-head img{
  opacity: 1;
}
/* PCヘッダーEND */

/* SPヘッダー */
.top-header-sp{
  width: 100%;
}

.header-wrapper-sp{
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  height:100%;
  background: #FFF;
}

.header-logo-sp {
  display: block;
  width:71px;
  margin-top: 13px;
  margin-left: 14px;
}

.header-logo-sp img{
  width:100%;
}

.menu-btn {
  display: flex;
  justify-content: center;
  margin-top: 19px;
  margin-right: 15px;
  height: 23px;
  width: 23px;
  align-items: center;
  z-index: 90;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  position: absolute;
  content: '';
  display: block;
  height: 3px;
  width: 23px;
  border-radius: 3px;
  background-color: #000;
}

.menu-btn span:before {
  bottom: 9px;
}

.menu-btn span:after {
  top: 9px;
}

#menu-btn-check {
  display: none;
}

#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0);
}
#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}

.menu-content {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 52px;
  left: 0;
  width: 100%;
  height:calc(100vh - 52px);
  color: #FFF;
  background-color: #FF9100;
  text-align: center;
  overflow-y: scroll;
  z-index: 80;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all  0.3s ease;
}

#menu-btn-check:checked ~ .menu-content{
  visibility: visible;
  opacity: 1;
}

.menu-list {
  padding-top:90px;
  padding-bottom:150px;
  font: normal normal 800 15px/18px Noto Sans JP;
  letter-spacing: 0px;
}

.menu-link{
  margin-top:30px;
}

.menu-link a{
  color: #FFFFFF;
  font-size:18px;
  letter-spacing:3px;
}

.menu-footer{
  text-align: center;
  font-weight:bold;
}

.menu-footer-committee{
  font-size:19px;
}

.menu-footer-address{
  margin-top:10px;
  font: normal normal 800 9px/11px Noto Sans JP;
  letter-spacing: 0px;
}

.menu-footer-tel-wrapper{
  display: flex;
  justify-content: center;
  position: relative;
  margin-top:10px;
}

.menu-footer-tel-btn{
  display: block;
  margin-top:-3px;
  padding:5px 10px 5px 10px;
  color: #FF9100;
  background: #FFF;
  font: normal normal 800 10px/12px Noto Sans JP;
  letter-spacing: 0px;
  border:0px;
  border-radius: 15px;
}

.menu-footer-tel-number{
  margin-left:5px;
  font: normal normal 800 25px/28px Noto Sans JP;
  letter-spacing: 0px;
}

.menu-footer-tel-number a{
  color: #FFFFFF;
}

.menu-footer-sns-wrapper{
  display: flex;
  justify-content: center;
  position: relative;
  margin-top:30px;
  padding-bottom:50px;
}

.menu-footer-sns-link{
  margin-right:15px;
  width:40px;
}

.menu-footer-sns-link img{
  width:100%;
}
/* SPヘッダーEND */

/* PCフッター */
.footer-wrapper {
  padding-top:50px;
  padding-bottom:50px;
  padding-left:30px;
  padding-right:30px;
  background: #FF9100;
}

.footer-container{
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width:1200px;
}

.footer-left{
  color: #FFFFFF;
  text-align: left;
}

.footer-committee{
  font-size:21px;
}

.footer-address{
  margin-top:4px;
  font: normal normal 800 11px/15px Noto Sans JP;
  letter-spacing: 0px;
  text-align: left;
}

.footer-tel-wrapper{
  display: flex;
  position: relative;
  margin-top:4px;
}

.footer-tel-btn{
  display: block;
  margin-top:8px;
  padding:0px 10px 0px 10px;
  height:21px;
  color: #FF9100;
  background: #FFF;
  font: normal normal 800 10px/16px Noto Sans JP;
  letter-spacing: 0px;
  border:0px;
  border-radius: 14px;
}

.footer-tel-number{
  margin-left:5px;
  font: normal normal 900 30px/30px Noto Sans JP;
}

.footer-tel-number a{
  color: #FFFFFF;
}

.footer-sns-wrapper{
  display: flex;
  position: relative;
  margin-top:15px;
}

.footer-sns-link{
  margin-right:15px;
  width:40px;
}

.footer-sns-link img{
  width:100%;
}

.footer-right{
  text-align: center;
}

.footer-right-btn{
  display: block;
  margin-bottom:15px;
  padding:14px 0px 14px 0px;
  width:256px;
  color: #FF9100;
  background: #FFF;
  font: normal normal 800 15px/17px Noto Sans JP;
  letter-spacing: 0px;
  border:0px;
  border-radius: 24px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all  0.3s ease;
}

.footer-right-btn:hover{
  opacity: 0.8;
}

/* PCフッターEND */


/* SPフッター */
.footer-sp{
  text-align: center;
  color: #FFFFFF;
}

.footer-sp-center-btn-wrapper{
  margin-top: -15px;
}

.footer-sp-center-btn{
  display:block;
  margin-top: 15px;
  margin-left:auto;
  margin-right:auto;
  padding: 14px 0px 16px 0px;
  width: 256px;
  color: #FF9100;
  background: #FFF;
  font: normal normal 800 15px/18px Noto Sans JP;
  letter-spacing: 0px;
  border: 0px;
  border-radius: 24px;
  cursor: pointer;
}

.footer-sp-committee{
  margin-top:40px;
  font-size:19px;
}

.footer-sp-address{
  margin-top:10px;
  font-size:9px;
}

.footer-sp-tel-wrapper{
  display: flex;
  justify-content: center;
  position: relative;
  margin-top:10px;
}

.footer-sp-tel-btn{
  display: block;
  margin-top:8px;
  height:19px;
  padding:0px 10px 0px 10px;
  background: #FFF;
  font: normal normal 800 10px/12px Noto Sans JP;
  letter-spacing: 0px;
  color: #FF9100;
  background: #FFF;
  border:0px;
  border-radius: 15px;
}

.footer-sp-tel-number{
  margin-left:5px;
  font: normal normal 900 25px/28px Noto Sans JP;
  letter-spacing: 0px;
}

.footer-sp-tel-number a{
  color: #FFFFFF;
}

.footer-sp-sns-wrapper{
  display: flex;
  justify-content: center;
  position: relative;
  margin-top:30px;
  padding-bottom:0px;
}

.footer-sp-sns-link{
  margin-right:15px;
  width:40px;
}

.footer-sp-sns-link img{
  width:100%;
}
/* SPフッターEND */
