@charset "UTF-8";
/******************************
   LOADING
******************************/
.loading {
	width: 100%;
	height: 100%;
	background: #34495e;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 20000;
}
.loading img {
  display: block;
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -20px;
	margin-left: -20px;
}

h1{
  margin: 0;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #111;
  background-color: #FFF;
  margin: 0;
  padding: 85px 0 0;
}
@media screen and (max-width: 767px){
  body {
    font-size: 16px;
    padding: 110px 0 0;
  }
}

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

*, *:before, *:after {
  margin: 0;
  padding: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
a{
  color: #111;
  text-decoration: none;
  transition: .4s;
}
a:hover{
  opacity: .7;
}
a img{
  transition: .4s;
}
a img:hover{
  opacity: .7;
}

.pcOnly{
  display: block;
}
.spOnly{
  display: none;
}
@media screen and (max-width: 767px){
  .pcOnly{
    display: none;
  }
  .spOnly{
    display: block;
  }
}

.md_para{
  font-size: 18px;
  line-height: 1.75;
}
@media screen and (max-width: 767px){
  .md_para{
    font-size: 16px;
  }
}

.header{
  width: 100%;
  height: 85px;
  position: fixed;
  top: 0;
  left: 0;
  padding: 15px 35px;
  background-color: rgba(255,255,255,1);
  box-shadow: 0 32px 30px -30px rgba(0, 0, 0, 0.2);
  z-index: 999;
}
.headerNav{
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 99;
}
.headerNav_logo{
  width: 120px;
}
.headerNav_logo img{
  width: 100%;
  height: auto;
}
.headerNav_list{
  display: flex;
  align-items: center;
  list-style: none;
}
.headerNav_list li{
  margin-right: 20px;
}
.headerNav_list li a{
  font-size: 18px;
  position: relative;
}
.headerNav_list li a::after{
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 5px;
  background-color: #2680dc;
  transition: .2s;
}
.headerNav_list li a:hover::after{
  width: 100%;
}
@media screen and (max-width: 767px){
  .header{
    height: 110px;
    padding: 0;
    background: none;
  }
  .headerNav{
    flex-wrap: wrap;
  }
  .headerNav_logo{
    width: 100%;
    margin: auto;
    padding: 15px 10px;
    background-color: #FFF;
  }
  .headerNav_logo img{
    width: 100px;
    height: auto;
    display: block;
    margin: auto;
  }
  .headerNav_list{
    width: 100%;
    padding-top: 10px;
    display: inline;
    text-align: center;
    background-color: #F3F3F3;
  }
  .headerNav_list li{
    display: inline-block;
    margin: 0 10px 10px;
  }
  .headerNav_list li a{
    font-size: 14px;
  }
}
@media screen and (max-width: 374px){
  .headerNav_list li a{
    font-size: 12px;
  }
}

.md_topMainVisual{
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  width: 100%;
  height: calc(100vh - 85px);
  background-image: url(../images/43137801.jpg);/*https://pixta.jp/photo/43137801*/
  background-size: cover;
  background-position: center bottom;
  z-index: -1;
}
.md_topMainVisual_ttl{
  width: 100%;
  text-align: center;
  font-size: 60px;
  color: #FFF;
}
.md_topMainVisual_txt{
  max-width: 80%;
  margin: 40px auto 0;
  padding: 20px 40px;
  text-align: center;
  font-size: 20px;
  color: #FFF;
  line-height: 2;
  border-left: 2px solid #FFF;
  border-right: 2px solid #FFF;
}
.md_topMainVisual_txt span{
  background-color: rgba(0,0,0,.1);
}
@media screen and (max-width: 767px){
  .md_topMainVisual{
    height: auto;
    padding: 60px 0;
  }
  .md_topMainVisual_ttl{
    font-size: 44px;
  }
  .md_topMainVisual_txt{
    max-width: 86%;
    margin: 40px auto 0;
    padding: 15px 20px;
    text-align: left;
    font-size: 15px;
  }
}
@media screen and (max-width: 374px){
  .md_topMainVisual_ttl{
    font-size: 40px;
  }
}

.md_topEvent{
  padding: 60px 0;
  background-color: #F3F3F3;
}
.md_topEvent_ttl{
  text-align: center;
  font-size: 40px;
}
.md_topEvent_ttl span{
  display: block;
  font-size: 30px;
}
.md_topEvent_list{
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
.md_topEvent_list li{
  width: 40%;
  margin: 0 2%;
  list-style: none;
  position: relative;
}
.md_topEvent_list li img{
  width: 100%;
  height: auto;
}
.md_topEvent_info{
  position: absolute;
  bottom: 1px;
  left: 0;
  width: 100%;
  padding: 15px;
  background-color: rgba(0,0,0,.6);
}
.md_topEvent_name{
  font-size: 30px;
  color: #FFF;
}
.md_topEvent_read{
  margin-top: 10px;
  line-height: 1.6;
  color: #FFF;
}
.md_topEvent_txt{
  max-width: 700px;
  margin: 60px auto 0;
  line-height: 1.6;
}
@media screen and (max-width: 767px){
  .md_topEvent{
    padding: 40px 15px;
    background-color: #F3F3F3;
  }
  .md_topEvent_ttl{
    font-size: 32px;
  }
  .md_topEvent_ttl span{
    font-size: 28px;
  }
  .md_topEvent_list{
    flex-wrap: wrap;
    margin-top: 40px;
  }
  .md_topEvent_list li{
    width: 100%;
    margin: 0 0 20px;
  }
  .md_topEvent_list li a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #FFF;
  }
  .md_topEvent_list li img{
    width: 30%;
  }
  .md_topEvent_info{
    position: relative;
    bottom: 0;
    width: 65%;
    padding: 0;
    background: none;
  }
  .md_topEvent_name{
    font-size: 20px;
    color: #333;
  }
  .md_topEvent_read{
    margin-top: 5px;
    color: #333;
  }
  .md_topEvent_txt{
    max-width: 100%;
    margin: 10px auto 0;
    padding: 0 10px;
  }
}

.stdBtn_wrp{
  margin: 0px auto 60px;
  text-align: center;
}
.stdBtn{
  display: block;
  border: none;
  padding: 20px;
  width: 300px;
  margin: auto;
  font-size: 18px;
  color: #FFF;
  background: #1e4baf;
  cursor: pointer;
  transition: .4s;
}
.stdBtn:hover{
  opacity: .95;
}
@media screen and (max-width: 767px){
  .stdBtn_wrp{
    margin-top: 40px;
  }
}

footer{
  padding: 40px 4% 30px 4%;
  background: #222;
  color: #FFF;
}
.footerLogo{
  text-align: center;
}
.footerLogo img{
  width: 240px;
  height: auto;
}
.footerLink{
  max-width: 1000px;
  margin: 40px auto 0;
  text-align: center;
}
.footerLink li{
  list-style: none;
  display: inline-block;
  margin: 0 10px 10px;
}
.footerLink li a{
  color: #FFF;
}
.copyright{
  max-width: 1000px;
  margin: 40px auto auto auto;
  padding: 40px 20px 0 20px;
  text-align: center;
  font-size: 9px;
  font-style: italic;
  color: #FFF;
  border-top: 1px solid #333;
}


.pageKvWrp{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}

.headerTtl{
  width: 40%;
  height: 500px;
  position: absolute;
  top: 50px;
  left: 0;
  padding: 40px 30px;
  background-color: #132d44;
  z-index: 2;
}
.headerTtl h1{
  font-size: 55px;
  font-weight: 900;
  color: #FFF;
}
.header_dsc{
  margin-top: 20px;
  color: #FFF;
  line-height: 1.6;
}
.pageKv{
  width: 70%;
  height: 500px;
  margin-left: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px){
  .pageKvWrp{
  }
  .headerTtl{
    width: 100%;
    height: auto;
    position: relative;
    top: 0;
    padding: 20px 15px;
  }
  .headerTtl h1{
    font-size: 32px;
    line-height: 1.4;
  }
  .header_dsc{
    margin-top: 10px;
  }
  .pageKv{
    width: 100%;
    height: 250px;
    margin-left: auto;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
}

/* sec_whats */
.sec_whats{
  padding: 100px 0 80px 0;
}
.sec_whats_ttl{
  text-align: center;
  font-size: 46px;
  font-weight: bold;
  line-height: 1.3;
}
.sec_whats_para{
  width: 800px;
  margin: 60px auto 0;
}
@media screen and (max-width: 767px){
  .sec_whats{
    padding: 40px 15px;
  }
  .sec_whats_ttl{
    font-size: 26px;
  }
  .sec_whats_para{
    width: 92%;
    margin: 30px auto 0;
  }
}

/* sec_slide */
.sec_slide{
  font-size: 0;
}
.sec_slide img {
  width: 100%;
}

/* sec_plan */
.sec_plan{
  padding: 80px 0;
  background-color: #F3F3F3;
}
.sec_plan_ttl{
  text-align: center;
  font-size: 46px;
  font-weight: bold;
  line-height: 1.3;
}
.sec_plan_inr{
  display: flex;
  justify-content: space-between;
  width: 60%;
  margin: 60px auto 0;
}
.sec_plan_item{
  width: 100%;
}
.sec_plan_item dl{
}
.sec_plan_item dt{
  padding: 20px;
  font-size: 24px;
  text-align: center;
  color: #FFF;
  font-weight: 900;
  background-color: #0d67c4;
}
.sec_plan_item:nth-child(2) dt{
  background-color: #0e82af;
}
.sec_plan_item dt span{
  display: block;
  width: 100%;
  margin-top: 10px;
  font-size: 18px;
  font-weight: 400;
}
.sec_plan_item dd table{
  width: 100%;
  border-collapse: collapse;
}
.sec_plan_item dd table th{
  width: 20%;
  padding: 15px 20px;
  background-color: #FFF;
  border-right: 2px solid #F3F3F3;
  border-bottom: 2px solid #F3F3F3;
}
.sec_plan_item dd table td{
  padding: 15px 20px;
  background-color: #FFF;
  border-bottom: 2px solid #F3F3F3;
}
.sec_plan_timeTable{
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid #F3F3F3;
}
.sec_plan_timeTable:first-of-type{
  padding-top: 10px;
}
.sec_plan_timeTable:last-of-type{
  padding-bottom: 10px;
  border-bottom: none;
}
.sec_plan_timeTable_time{
  flex-shrink: 0;
  width: 40%;
}
.sec_plan_timeTable_ocnt{
  flex-shrink: 0;
  width: 60%;
}
@media screen and (max-width: 767px){
  .sec_plan{
    padding: 40px 0;
  }
  .sec_plan_ttl{
    font-size: 26px;
  }
  .sec_plan_inr{
    flex-wrap: wrap;
    width: 92%;
    margin: 30px auto 0;
  }
  .sec_plan_item{
    width: 100%;
  }
  .sec_plan_item:nth-child(2){
    margin-top: 20px;
  }
  .sec_plan_item dt{
    padding: 20px;
    font-size: 24px;
  }
  .sec_plan_item dd table th{
    width: 30%;
    padding: 15px 5px;
  }
  .sec_plan_item dd table td{
    padding: 10px 20px;
    background-color: #FFF;
    border-bottom: 2px solid #F3F3F3;
  }
  .sec_plan_timeTable{
    flex-wrap: wrap;
  }
  /* .sec_plan_timeTable_time{
    flex-shrink: 0;
    width: 100%;
    padding: 5px;
    text-align: center;
    font-size: 15px;
    font-weight: 900;
    background-color: #F3F3F3;
  } */
  .sec_plan_timeTable_ocnt{
    width: 100%;
    margin-top: 10px;
  }
}

/* sec_howToAdd */
.w50{
  width: 50% !important
}
.w70{
  width: 70% !important;
}
.sec_add input,
.sec_add textarea,
.sec_add number,
.sec_add button{
  outline: none;
}
.sec_add input[type="text"],
.sec_add input[type="email"],
.sec_add input[type="tel"],
.sec_add input[type="number"],
.sec_add select{
  width: 100%;
  padding: 20px;
  font-size: 18px;
  background: #FFF;
  border: 1px solid #CCC;
  border-radius: 0;
}
.sec_add{
  margin: auto;
  padding: 60px 10% 60px;
  background-color: #F3F3F3;
}
.sec_add_ttl{
  text-align: center;
  font-size: 40px;
}
.sec_add_dsc{
  margin-top: 20px;
  text-align: center;
}
.sec_add_dsc a{
  color: #1e4baf;
  text-decoration: underline;
}
.sec_add_dsc a:hover{
  text-decoration: none;
}
.sec_add_form{
  margin-top: 60px;
}
.sec_add_form table{
  width: 80%;
  margin: auto;
}
.sec_add_form table th{
  width: 30%;
  padding: 15px 0;
  text-align: left;
}
.sec_add_form table td{
  width: 70%;
  padding: 15px 0;
}
.sec_add_form .btn_add{
  margin-top: 60px;
  text-align: center;
}
.sec_add_form .btn_add .btnSubmit{
  border: none;
  padding: 20px;
  width: 300px;
  font-size: 18px;
  color: #FFF;
  background: #1e4baf;
  cursor: pointer;
  transition: .4s;
}
.sec_add_form .btn_add btnSubmit:hover{
  opacity: .95;
}
@media screen and (max-width: 767px){
  .w50{
    width: 100% !important
  }
  .w70{
    width: 100% !important;
  }
  .sec_add input[type="text"],
  .sec_add input[type="email"],
  .sec_add input[type="tel"],
  .sec_add input[type="number"],
  .sec_add select{
    padding: 15px;
    font-size: 16px;
  }
  .sec_add{
    padding: 40px 15px;
  }
  .sec_add_ttl{
    font-size: 26px;
  }
  .sec_add_dsc{
    line-height: 1.4;
  }
  .sec_add_form{
    margin-top: 30px;
  }
  .sec_add_form table{
    display: block;
    width: 100%;
  }
  .sec_add_form table tbody,
  .sec_add_form table tr{
    display: block;
    width: 100%;
  }
  .sec_add_form table th{
    display: block;
    width: 100%;
    padding: 10px 0;
    text-align: left;
  }
  .sec_add_form table td{
    display: block;
    width: 100%;
    padding: 10px 0 20px 0;
  }
  .sec_add_form .btn_add{
    margin-top: 20px;
  }
}

/* sec_note */
.sec_note{
  padding: 60px 0;
  background-color: #F3F3F3;
}
.sec_note_ttl{
  text-align: center;
  font-size: 40px;
}
.sec_note_ttl .sec_note_subttl{
  display: block;
  margin-top: 5px;
  font-size: 20px;
}
.sec_note_inr{
  display: flex;
  justify-content: space-between;
  width: 80%;
  max-width: 1140px;
  margin: 60px auto 0;
  padding: 60px 60px;
  background-color: #FFF;
}
.sec_note table{
  width: 100%;
  border-collapse: collapse;
}
.sec_note table th{
  width: 20%;
  padding: 20px 10px;
  text-align: left;
  font-size: 15px;
  border: 1px solid #CCC;
}
.sec_note table td{
  width: 80%;
  padding: 20px 10px;
  text-align: left;
  vertical-align: top;
  border: 1px solid #CCC;
}
.sec_note table td ul{
  margin-left: 1.5em;
}
.sec_note table td ul li{
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.4;
}
.sec_note table td ul li:last-of-type{
  margin-bottom: 0;
}
@media screen and (max-width: 767px){
  .sec_note{
    padding: 40px 0;
  }
  .sec_note_ttl{
    font-size: 26px;
  }
  .sec_note_inr{
    width: 92%;
    margin: 30px auto 0;
    padding: 30px 4%;
  }
  .sec_note table{
    display: block;
    width: 100%;
  }
  .sec_note table tbody,
  .sec_note table tr{
    display: block;
    width: 100%;
  }
  .sec_note table th{
    display: block;
    width: 100%;
    margin-top: 10px;
  }
  .sec_note table td{
    display: block;
    width: 100%;
    border-top: none;
  }
}

.md_profile{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.md_profile dt{
  width: 20%;
  padding: 20px 10px;
  font-weight: bold;
  border-bottom: 1px solid #CCC;
}
.md_profile dd{
  width: 80%;
  padding: 20px 10px;
  border-bottom: 1px solid #CCC;
}
.md_profile dd ul li{
  margin-bottom: .5em;
}
.md_profile dd ul li:last-child{
  margin-bottom: 0;
}
.sec_note_inr_profileText{
  display: block;
  padding: 0;
  background: none;
}
.sec_note_inr_profileText .sec_note_inr_profileText_text{
  margin: 10px 0;
  line-height: 1.8em;
  text-align: center;
}
.sec_note_inr_profileText img{
  width: 100%;
  height: auto;
}
.sec_note_inr_profileImgText{
  align-items: center;
}
.sec_note_inr_profileImgText .box_img{
  width: 50%;
}
.sec_note_inr_profileImgText .box_img img{
  width: 100%;
  height: auto
}
.sec_note_inr_profileImgText .box_text{
  width: 50%;
  padding: 0 0 0 5%;
  line-height: 1.8em;
  font-weight: bold;
}
.sec_note_inr_profileImgText .box_name{
  text-align: center;
  margin-bottom: 20px;
  padding-block: 10px;
  font-size: 24px;
  border-bottom: 1px solid #ccc;
}
.sec_note_inr_profileImgText .box_name span.en{
  padding-left: 1em;
  font-size: 18px;
}
.sec_note_inr_profileImgText .box_text .box_info span{
  display: inline-block;
  width: 100px;
  padding: 0 10px 0 0;
  font-weight: normal;
}
@media screen and (max-width: 767px){
  .md_profile dt{
    width: 100%;
    padding: 20px 0 0;
    border-bottom: none;
  }
  .md_profile dt:first-child{
    padding: 0;
  }
  .md_profile dd{
    width: 100%;
    padding: 10px 10px 20px 20px;
  }
  .md_profile dd:last-child{
    border-bottom: none;
  }
  .sec_note_inr_profileText{
    display: block;
    padding: 0;
    background: none;
  }
  .sec_note_inr_profileText .sec_note_inr_profileText_text{
    text-align: left;
  }
  .sec_note_inr_profileText .sec_note_inr_profileText_text br{
    display: none;
  }
  .sec_note_inr_profileImgText{
    flex-wrap: wrap;
    align-items: center;
  }
  .sec_note_inr_profileImgText .box_img{
    width: 100%;
  }
  .sec_note_inr_profileImgText .box_text{
    width: 100%;
    padding: 0;
  }
  /* .sec_note_inr_profileImgText .box_name span.en{
    padding-left: 1em;
    font-size: 18px;
  }
  .sec_note_inr_profileImgText .box_text .box_info span{
    display: inline-block;
    width: 100px;
    padding: 0 10px 0 0;
    font-weight: normal;
  } */
}