
.single_sec01{
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 20px 40px;
    box-sizing: border-box;
}
.single_sec01 h2{
    width: 100%;
    font-size: 24px;
    font-weight: bold;
    padding-bottom: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #000;
}
.single_sec01 p{
    font-size: 12px;
}

.single_sec02{
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px 40px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.single_sec02 .left{
    width: 40%;
}
.single_sec02 .left .wrapper {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
@media screen and (max-width: 1000px) {
    .wrapper {
        margin-right: 4.375%;
        margin-left: 4.375%;
    }
}
.single_sec02 .left .wrapper .swiper {
      width: min(100%, 500px);
      margin-inline: auto;
}
.single_sec02 .left .wrapper .swiper .swiper-wrapper .swiper-slide img{
    width: 100%;
    height: auto;
    object-fit: cover;
}
.single_sec02 .left .wrapper .swiper-thumb {
      margin-top: 5px;
}
.single_sec02 .left .wrapper .swiper-thumb .swiper-slide {
      opacity: .5;
      transition: opacity .5s ease;
      cursor: pointer;
}
.single_sec02 .left .wrapper .swiper-thumb .swiper-slide.swiper-slide-thumb-active {
      opacity: 1;
}

.single_sec02 .right{
    width: 55%;
}
.single_sec02 .right > h1{
    display: inline;
    padding-right: 20px;
    font-size: 24px;
    font-family: serif;
    font-weight: bold;
    margin-bottom: 20px;
}
.single_sec02 .right > a{
    font-size: 12px;
    letter-spacing: 1px;
    font-family: serif;
    line-height: 24px;
    padding: 10px 15px;
    color: #fff;
    background-color: #000;
}
.single_sec02 .right > p{
    font-size: 12px;
    font-family: sans-serif;
    line-height: 28px;
    color: #989898;
    margin-bottom: 20px;
}
.single_sec02 .right .table01 {
    width: 100%;
    text-align: left;
    border-collapse: collapse;
    border-spacing: 0;
}
.single_sec02 .right .table01 th {
    padding: 10px;
    background: #e9faf9;
    border: solid 1px #000;
}
.single_sec02 .right .table01 td {
    font-size: 12px;
    padding: 10px;
    border: solid 1px #000;
}

.single_sec02 .right .ac_area {
    width: 100%;
    margin-top: 30px;
}
.single_sec02 .right .ac_area li {
    margin: 10px 0;
}
.single_sec02 .right .ac_area section {
    border: 1px solid #8a8a8a;
}
.single_sec02 .right .ac_area .title_btn {
    position: relative;
    cursor: pointer;
    font-size: 14px;
    text-align: center;
    line-height: 22px;
    color: #fff;
    background-color: #8a8a8a;
    padding: 6px 40px 6px 40px;
    transition: all 0.5s ease;
}
.single_sec02 .right .ac_area .text_box {
    display: none;
    font-family: sans-serif;
    font-size: 12px;
    line-height: 20px;
    padding: 20px;
}
.single_sec02 .right .ac_area .title_btn::after {
    content: "";
    position: absolute;
    top: 36%;
    right: 20px;
    width: 13px;
    height: 13px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    transition: all 0.3s;
}
.single_sec02 .right .ac_area .title_btn.open::after {
    transform: rotate(135deg);
}
.single_sec02 .right .contact h3{
    position: relative;
    cursor: pointer;
    font-size: 14px;
    text-align: center;
    line-height: 22px;
    color: #fff;
    background-color: #000;
    padding: 6px 40px 6px 40px;
}
.single_sec02 .right .contact .text_box{
    font-size: 12px;
    line-height: 20px;
    padding: 20px;
    border: 1px solid #000;
}
.single_sec02 .right .contact .text_box p{
    font-family: sans-serif;
    margin-bottom: 15px;
}
.single_sec02 .right .contact .text_box .contact_btn{
    text-align: center;
}
.single_sec02 .right .contact .text_box .contact_btn a{
    display: inline-block;
    position: relative;
    font-size: 12px;
    padding: 8px 105px;
    border: 1px solid #000;
    border-radius: 50px;
}
.single_sec02 .right .contact .text_box .contact_btn a:before{
    content: "";
    position: absolute;
    background: url(./assets/img/contact.png) 0 0/18px 16px no-repeat;
    width: 18px;
    height: 16px;
    left: 90px;
    top: calc(50% - 8px);
}
.single_sec02 .right .contact .text_box .contact_btn a:hover{
    transition:0.5s;
    background-color: rgba(210,210,210,0.4);
}
.back_btn{
    width: 100%;
    text-align: center;
    margin-bottom: 80px;
}
.back_btn a{
    font-size: 12px;
    color: #fff;
    background-color: #000;
    padding: 10px 50px;
}

.pr_button{
    font-size: 12px;
    letter-spacing: 1px;
    font-family: serif;
    padding: 5px 15px;
    color: #fff;
    background-color: #000;
}
.modal {
    display: none; /* 初期状態では非表示 */
    position: fixed; /* 画面に固定 */
    z-index: 1; /* 最前面に表示 */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* スクロールバーを表示 */
    background-color: rgba(0,0,0,0.9); /* オーバーレイの背景色 */
  }
  .modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 500px;
    padding: 20px;
    background-color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); /* 画面の中央に配置 */
    border-radius: 8px;
  }
  .close {
    color: #414141;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    z-index: 1;
  }
  .modal-content video{
    width: 100%;
  }

@media screen and (max-width:768px){
    .single_sec01 {
        padding: 40px 20px 20px;
    }
    .single_sec01 h2 {
        padding-bottom: 8px;
        margin-bottom: 8px;
    }
    .single_sec02 {
        padding: 0 20px 30px;
    }
    .single_sec02 .right > h3 {
        margin-top: 15px;
        margin-bottom: 5px;
    }
    .single_sec02 .right > p {
        font-size: 11px;
        line-height: 22px;
        margin-bottom: 12px;
    }
    .single_sec02 .right .ac_area .title_btn::after {
        top: 34%;
        width: 10px;
        height: 10px;
        border-top: 1px solid #fff;
        border-right: 1px solid #fff;
    }
    .single_sec02 .right .ac_area .text_box {
        font-size: 11px;
        line-height: 20px;
        padding: 12px;
    }
    .single_sec02 .right .contact h3 {
        font-family: sans-serif;
        font-weight: bold;
        font-size: 11px;
        padding: 3px 40px 3px 40px;
    }
    .single_sec02 .right .contact .text_box {
        font-size: 11px;
        padding: 12px;
    }
    .single_sec02 .right .ac_area .title_btn {
        font-family: sans-serif;
        font-weight: bold;
        font-size: 11px;
        padding: 3px 40px 3px 40px;
    }
    .single_sec02 .right .contact .text_box .contact_btn a {
        padding: 4px 105px;
    }
    .single_sec02 .right .ac_area {
        margin-top: 15px;
    }
    .single_sec02 .right .table01 td {
        padding: 5px 10px;
    }
    .single_sec02 .left {
        width: 100%;
    }
    .single_sec02 .right {
        width: 100%;
    }
    .back_btn {
        margin-bottom: 40px;
    }
    .back_btn a {
        font-size: 11px;
    }
}