@charset "UTF-8";
/* CSS Document */

.disp_pc{
    display: block;
}
.disp_sp{
    display: none;
}

#contents{
    background: url("../shared/images/mv_bg_pc.png") no-repeat top center / 100% auto;
    position: relative;
}
#contents::after{
    content: url('../shared/images/body_bg.png');
    position: absolute;
    top: 1200px;
    left: 0;
    z-index: -1;
}
#contents .mv{
   padding-top: 50px;
}
#contents .mv .mv_img{
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 781px;
    margin-bottom: 40px;
}
#contents .mv .mv_img img{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
#contents .mv .mv_txt{
    text-align: center;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.5);
    margin-bottom: 80px;
}
#contents .mv .mv_txt h2{
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
}
#contents .mv .mv_txt p{
    line-height: 1.8;
}

#contents .nav_btn{
    width: 900px;
    margin: 0 auto 80px;
}
#contents .nav_btn ul{
    display: flex;
    justify-content: center;
}
#contents .nav_btn ul li{
    margin: 0 10px;
}
#contents .nav_btn ul li:hover img{
    opacity: 0.7;
}

#contents section{
    width: 900px;
    margin: 0 auto 120px;
}
#contents section h2{
    text-align: center;
    font-size: 32px;
    color: #00a7ac;
    font-weight: bolder;
    padding: 28px 0;
    position: relative;
}
#contents #operate h2::before,
#contents #shoot h2::before{
    content: "";
    position: absolute;
    height: 3px;
    width: 100%;
    background: #fff;
    left: 0;
    right: 0;
    top: 0;
}
#contents #operate h2::after,
#contents #shoot h2::after{
    content: "";
    position: absolute;
    height: 3px;
    background: #00a7ac;
    width: 80px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
#contents section table{
    background: #fff;
    border-collapse: collapse;
    margin-bottom: 50px;
}
#contents section table tr{
    border-bottom: 1px solid #b3b3b3;
}
#contents section table tr:last-of-type{
    border-bottom: none;
}
#contents section table th,
#contents section table td{
    padding: 12px 18px;
}
#contents section table th{
    background: #00a7ac;
    width: 130px;
    text-align: left;
}
#contents section table td{
    color: #000;
}
#contents section table td span{
    margin-left: 10px;
}
#contents section table td span img{
    vertical-align: baseline;
}
#contents section .modal_btn{
    width: 640px;
    height: 60px;
    margin: 0 auto;
    font-size: 18px;
    background: #00a7ac;
    cursor: pointer;
}
#contents section .modal_btn:hover{
    background: #028484;
}
#contents section .modal_btn p{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
#contents section .modal_btn p span{
    margin-left: 15px;
}
#contents section .modal_btn p span img{
    vertical-align: middle;
}

/*ポップアップ*/
#contents section .popup{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    transition: 0.4s;
  opacity: 0;
  visibility: hidden;
}
#contents section .popup.open{
      opacity: 1;
  visibility: visible;
}
#contents section .popup .popup_bg{
    background: rgba(0,0,0,0.6);
    width: 100%;
    height: 100%;
}
#contents section .popup .popup_inner{
    background: #fff;
    width: 1080px;
    color: #000;
    border-radius: 5px;
    padding: 70px 140px 80px;
    box-sizing: border-box;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    box-shadow: 3px 3px 0px rgba(0,0,0,0.3);
}
#contents section .popup .close_btn{
    width: 40px;
    height: 40px;
    position: relative;
    display: flex;
    margin-left: auto;
    transform: rotate(45deg);
    margin-bottom: 10px;
    cursor: pointer;
}
#contents section .popup .close_btn:hover{
    opacity: 0.7;
}
#contents section .popup .close_btn::before{
    content: "";
    width: 100%;
    height: 1px;
    background: #ccc;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}
#contents section .popup .close_btn::after{
    content: "";
    width: 1px;
    height: 100%;
    background: #ccc;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

#contents section .popup .policy{
    border:1px solid #ccc;
    height: 560px;
    overflow-y: scroll;
    padding: 18px;
}
#contents section .popup .policy div{
    margin-bottom: 20px;
}
#contents section .popup .policy div:last-of-type{
    margin-bottom: 0;
}
#contents section .popup .policy h5{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}
#contents section .popup input[type="checkbox"]{
    display: none;
}
#contents section .popup label.check{
    font-size: 16px;
    font-weight: 600;
    position: relative;
    display: flex;
    justify-content: center;
    margin: 30px 0;
}
#contents section .popup label.check p{
    position: relative;
    padding-left: 35px;
}
#contents section .popup label.check p::before{
    content: "";
    width: 22px;
    height: 22px;
    border: 1px solid #ccc;
    margin-right: 13px;
    position: absolute;
    left: 0;
}
#contents section .popup label.check p::after{
    content: "";
    width: 6px;
    height: 11px;
    border-right: 3px solid #00a7ac;
    border-bottom: 3px solid #00a7ac;
    transform: rotate(45deg);
    position: absolute;
    left: 8px;
    top:3px;
    display: none;
}
#contents section .popup input[type="checkbox"]:checked ~ p::after{
    display: block;
}
#contents section .popup .form_btn{
    width: 480px;
    margin: 0 auto;
    background: #ccc;
    height: 60px;
    position: relative;
}
#contents section .popup .form_btn.on{
    background: #00a7ac;
}
#contents section .popup .form_btn.on:hover{
    background: #028484;
}
#contents section .popup .form_btn a{
    text-decoration: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}
#contents section .popup .form_btn.on a{
    display: block;
}
#contents section .popup .form_btn p{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #fff;
    font-size: 16px;
}
#contents section .popup .form_btn p span{
    margin-left: 15px;
}
#contents section .popup .form_btn p span img{
    vertical-align: middle;
}

#contents section.link_menu h2{
    padding-top: 0;
}
#contents section.link_menu ul{
    width: 800px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#contents section.link_menu ul li{
    width: 390px;
    border: 1px solid #00a7ac;
    height: 62px;
    margin-bottom: 15px;
}
#contents section.link_menu ul li:hover{
    background: rgba(0,167,172,0.4);
}
#contents section.link_menu ul li a{
    display: flex;
    align-items: center;
    height: 100%;
    padding-left: 24px;
    text-decoration: none;
}
#contents section.link_menu ul li span{
    margin-right: 15px;
}