@charset "UTF-8";
.inner {
  width: 1160px;
  text-align: center;
  padding: 80px 20px;
  margin: auto;
  box-sizing: border-box;
  position: relative;
  z-index: 100;
}
.inner-s{
  width: 600px;
}
.inner-ex{
  padding: 0;
}
.wrap{
  width: 1000px;
  background: #fff;
  padding: 40px 60px;
  margin: auto;
  box-sizing: border-box;
}
.wrap-gray{
  width: 800px;
  background: #DDDDDD;
  padding: 30px 100px 40px;
  margin: 50px auto 0;
  box-sizing: border-box;
}
.header{
  width: 100%;
  height: 65px;
  position: fixed;
  z-index: 300;
  top: 0;
  background-color: #FFFFFF;
}
.logo_box{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo_box .btn{
  margin: 0;
}
.copy{
  padding: 20px 0;
  font-size: 10px;
  text-align: center;
}
main{
  background: #414141;
  padding-bottom: 120px;
}
.btn{
  width: 240px;
  height: 50px;
  display: block;
  padding: 15px;
  text-align: center;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  margin: auto;
}
.btn-g{
  color: #fff;
  background: #666666;
}
.btn-g::before{
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-bottom: solid 3px #fff;
  border-right: solid 3px #fff;
  transform: rotate(-45deg);
  top: 40%;
  right: 12px;
  z-index: 100;
}
.btn-g:hover{
  background: #000;
}
.btn-y{
  color: #fff;
  background: #000;
}
.btn-y span{
  position: relative;
  z-index: 100;
}
.btn-y::before{
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-bottom: solid 3px #fff;
  border-right: solid 3px #fff;
  transform: rotate(-45deg);
  top: 40%;
  right: 12px;
  z-index: 100;
}
.btn-y:hover::before{
  border-bottom: solid 3px #000;
  border-right: solid 3px #000;
}
.btn-y::after{
  position: absolute;
  top: 0;
  left: 70px;
  width: 150%;
  height: 500%;
  content: '';
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  -webkit-transform: translateX(-98%) translateY(-70%) rotate(135deg);
  transform: translateX(-98%) translateY(-70%) rotate(135deg);
  background: #fff100;
  z-index: 1;
}
.btn-y:hover{
  color: #000;
}
.btn-y:hover::after{
  left: 0;
  -webkit-transform: translateX(-9%) translateY(-25%) rotate(135deg);
  transform: translateX(-9%) translateY(-25%) rotate(135deg);
}
.btn-last{
  margin-top: 30px;
}
.bg_title{
  background: url("../img/bg_title.png");
  padding: 86px 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  text-align: center;
}
.title {
  font-size: 30px;
  font-weight: bold;
  color: #fff;
}
.title_second{
  font-size: 24px;
  font-weight: bold;
  color: #666666;
  line-height: 1.5;
  margin-bottom: 46px;
}
.title_third{
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
}
.title_line{
  font-weight: bold;
  padding-bottom: 6px;
  margin-bottom: 20px;
  border-bottom: 1px solid #000;
}
.breadcrumb{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 0 50px;
  box-sizing: border-box;
}
.breadcrumb--item{
  position: relative;
  padding-right: 22px;
}
.breadcrumb--item::after{
  position: absolute;
  display: inline-block;
  top: 2px;
  right: 4px;
  content: ">";
}
.breadcrumb--item:last-of-type::after{
  content: none;
}
.breadcrumb--link{
  display: block;
  font-size: 14px;
  line-height: 1.5;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.breadcrumb--link:hover{
  opacity:0.8;
}
.event_list{
  display: flex;
  flex-wrap:wrap;
}
.event_list--item{
  width: 350px;
  margin-right: 35px;
  margin-bottom: 60px;
}
.event_list--item:nth-of-type(3n){
  margin-right: 0;
}
.event_list--link{
  display: block;
}
.event_list--link:hover .event_list--img_box .event_list--img{
  opacity: 0.8;
  transition: 0.3s all;
}
.event_list--img_box{
  width: 100%;
  height: 200px;
  position: relative;
}
.event_list--img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event_list--tag{
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFF100;
  font-size: 14px;
}
.event_list--tag-list{
  width: 90px;
  height: 20px;
  position: absolute;
  top: 10px;
  right: 10px;
}
.event_list--tag-detail{
  width: 100px;
  height: 30px;
  margin-bottom: 10px;
}
.event_box{
  padding: 20px 18px;
  background: #000;
}
.event_box--title{
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  line-height: 1.6;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.event_box--date{
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #FFF100;
  margin-top: 10px;
}
.pagination{
  padding-top: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination--item{
  margin-right: 24px;
}
.pagination--item:last-of-type{
  margin-right: 0;
}
.pagination--link{
  display: block;
  font-size: 16px;
  font-weight: bold;
  line-height: 24px;
}
.pagination--item.current .pagination--link{
  color: #989898;
}
.pagination--link-prev,
.pagination--link-next{
  width: 50px;
  height: 50px;
  background: #000;
  position: relative;
  display: inline-block;
}
.pagination--link-prev::before{
  left: 3px;
  width: 10px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.pagination--link-prev::after{
  left: 3px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.pagination--link-next::before{
  left: 3px;
  width: 10px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.pagination--link-next::after{
  left: 3px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.event_img{
  display: block;
  max-width: 100%;
  margin: auto;
}
.event_text{
  line-height: 2;
  padding: 20px 0 40px;
}
.table_box{
  display: flex;
}
.table_box--title{
  width: 100px;
  padding: 14px 10px;
  background: #000;
  color: #fff;
  font-weight: bold;
  margin-bottom: 2px;
  margin-right: 10px;
  box-sizing: border-box;
}
.table_box--text{
  flex: 1;
  width: calc(100% - 100px);
  padding: 13px 10px;
  border-bottom: 2px solid #E3E3E3;
}
.table_box--text-first{
  border-top: 2px solid #E3E3E3;
}
.table_box--detail{
  display: flex;
}
.table_box--detail p span{
  font-weight: bold;
  color: #A4A4A4;
  padding-right: 10px;
}
.table_box--detail p{
  margin-right: 40px;
}
.table_box--detail p:last-of-type{
  margin-right: 0;
}
.policy{
  margin: 60px auto 40px;
  padding: 20px;
  border: 1px solid #DDDDDD;
  box-sizing: border-box;
  background: #fff;
  height: 180px;
  overflow: scroll;
}
.policy--title{
  font-size: 14px;
  margin-bottom: 10px;
}
.policy--text{
  font-size: 14px;
  color: #666666;
  line-height: 2;
}
.event_btn{
  margin-top: 80px;
}
.form_box{
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.form_box-b{
  display: block;
}
.form_box-number{
  margin-bottom: 0;
}
.form_box-c{
  justify-content: center;
}
.form_box--flex{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.form_box--start{
  display: flex;
  align-items: center;
}
.form_box--title{
  width: 140px;
  font-weight: bold;
  color: #666666;
}
.form_box--title-b{
  width: auto;
  margin-bottom: 15px;
}
.form_box--title-s{
  width: auto;
}
.form_box--title-blue{
  color: #304283;
}
.form_box--title_sub{
  font-size: 14px;
}
.form_box--input{
  flex: 1;
  height: 40px;
  padding: 0 8px;
  border:2px solid #E6E6E6;
  background: #fff;
  box-sizing: border-box;
}
.form_box--input-s{
  flex: 0;
  width: 180px;
}
.form_box--input-xs{
  flex: 0;
  width: 100px;
  margin-right: 10px;
}
.form_box--label{
  cursor: pointer;
}
.form_box--checkbox{
  display: none;
}
.form_box--btn{
  display: flex;
  align-items: center;
  position: relative;
  font-size: 14px;
}
.form_box--btn::before{
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background-color: #fff;
  background-position: 50% 0;
  margin-right: 20px;
  border: 2px solid #E6E6E6;
  border-radius: 5px;
}
.form_box--btn::after{
  content: '';
  display: block;
  height: 10px;
  left: 10px;
  border-right: 3px solid #666666;
  border-bottom: 3px solid #666666;
  margin-top: -7px;
  position: absolute;
  top: 46%;
  transform: rotate(45deg);
  width: 6px;
  opacity: 0;
}
.form_box--checkbox:checked + .form_box--btn::after {
  opacity: 1;
}
.form_box--select_box{
  position: relative;
  width: 100px;
  background-color: #fff;
  margin-left: 10px;
}
.form_box--select_box::after{
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-bottom: solid 2px #3A4E97;
  border-left: solid 2px #3A4E97;
  transform: rotate(-45deg);
  top: 34%;
  right: 12px;
}
.form_box--select_box-first{
  margin-left: 0;
}
.form_box--select{
  height: 40px;
  padding: 0 16px;
  background-color: #fff;
  color: #000;
}
.form_box--radio{
  display: none;
}
.form_box--btn_radio{
  display: flex;
  align-items: center;
  position: relative;
  font-size: 14px;
  margin-right: 50px;
}
.form_box--btn_radio-last{
  margin-right: 0;
}
.form_box--btn_radio::before{
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background-color: #fff;
  background-position: 50% 0;
  margin-right: 10px;
  border: 2px solid #E6E6E6;
  border-radius: 5px;
}
.form_box--btn_radio::after{
  content: '';
  display: block;
  height: 10px;
  left: 10px;
  border-right: 3px solid #666666;
  border-bottom: 3px solid #666666;
  margin-top: -7px;
  position: absolute;
  top: 46%;
  transform: rotate(45deg);
  width: 6px;
  opacity: 0;
}
.form_box--radio:checked + .form_box--btn_radio::after {
  opacity: 1;
}
.form_box--textarea{
  width: 100%;
  height: 80px;
  background-color: #fff;
  border: 2px solid #E6E6E6;
  padding: 8px;
  line-height: 1.5;
  cursor: pointer;
  box-sizing: border-box;
}
.mypage_list{
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.mypage_list--item:first-of-type{
  margin-right: 40px;
}
.mypage_list--link{
  width: 350px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  color: #FFF100;
  line-height: 1.4;
  position: relative;
}
.mypage_list--link span{
  position: relative;
  z-index: 100;
}
.mypage_list--link::before{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0,0,0,0.5);
}
.mypage_list--link:hover::before{
  background-color: rgba(0,0,0,0.1);
  transition: 0.3s all;
}
.mypage_list--link::after{
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-bottom: solid 3px #FFF100;
  border-right: solid 3px #FFF100;
  transform: rotate(-45deg);
  top: 50%;
  right: 20px;
  z-index: 100;
}
.mypage_list--link-a{
  background: url("../img/mypage_list--link-a.png");
  background-size: cover;
}
.mypage_list--link-b{
  background: url("../img/mypage_list--link-b.png");
  background-size: cover;
}
.mypage_list--link-c{
  background: url("../img/mypage_list--link-c.png");
  background-size: cover;
}
.mypage_list--link-d{
  background: url("../img/mypage_list--link-d.png");
  background-size: cover;
}

@media screen and (max-width:767px){
  main{
    padding-bottom: 80px;
  }
  .inner {
    width: 100%;
  }
  .inner-s{
    width: 100%;
  }
  .wrap{
    width: 100%;
    padding: 30px 20px;
    box-sizing: border-box;
  }
  .wrap-gray{
    width: 100%;
    padding: 30px 10px;
    margin-top: 30px;
  }
  .header{
    height: 50px;
  }
  .logo_box--link{
    width: 50%;
  }
  .logo_box--link img{
    width: 100%;
  }
  .logo_box .btn{
    width: 150px;
    font-size: 14px;
  }
  .bg_title{
    padding: 40px 0;
  }
  .title {
    font-size: 18px;
  }
  .title_second{
    font-size: 16px;
    margin-bottom: 30px;
  }
  .breadcrumb{
    padding: 20px 0;
  }
  .breadcrumb--link{
    font-size: 12px;
  }
  .event_list{
    flex-direction: column;
  }
  .event_list--item{
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }
  .event_box--title{
    font-size: 14px;
  }
  .event_box--date{
    font-size: 12px;
  }
  .event_text{
    font-size: 14px;
  }
  .table_box--title{
    font-size: 14px;
  }
  .table_box--text{
    font-size: 14px;
  }
  .table_box--detail{
    flex-direction: column;
  }
  .table_box--detail p{
    margin-right: 0;
    margin-bottom: 8px;
  }
  .table_box--detail p:last-of-type{
    margin-bottom: 0;
  }
  .policy{
    padding: 20px 10px;
  }
  .form_box--title{
    font-size: 14px;
    width: 80px;
  }
  .form_box--title-b{
    width: auto;
    line-height: 1.5;
  }
  .form_box--flex{
    flex-direction: column;
    align-items: flex-start;
  }
  .form_box-number{
    margin-bottom: 10px;
  }
  .form_box--start-sp{
    flex-direction: column;
    align-items: flex-start;
  }
  .form_box--select_box{
    width: 80px;
  }
  .form_box--btn_radio{
    margin-right: 0;
    margin-bottom: 10px;
  }
  .form_box--btn{
    font-size: 12px;
  }
  .form_box--btn::before{
    margin-right: 8px;
  }
  .mypage_list{
    flex-direction: column;
  }
  .mypage_list--item:first-of-type{
    margin-right: 0;
  }
  .mypage_list--item{
    margin-bottom: 20px;
  }
  .mypage_list--link{
    width: 100%;
    font-size: 20px;
  }
  
}
