@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

/* 共通部分 */
body{
    margin: 0;
}

*{
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", sans-serif;
    box-sizing: border-box;
    letter-spacing: 0.08em;
    scroll-behavior: smooth;
}

ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

a{
    text-decoration: none;
    display: inline-block;
    height: 100%;
    color: #1b5e62;
}

p{
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 2em;
    margin: 0;
}

i{
    color: #1b5e62;
}


h2{
    font-family: 'Noto Serif JP', serif;
    font-size: 24px;
    line-height: 1.6em;
    font-weight: 400;
}

h3{
    font-family: 'Noto Serif JP', serif;
    font-size: 24px;
    line-height: 1.6em;
    font-weight: 400;
}

h4{
    font-size: 16px;
}

button{
    border: none;
    display: block;
}

img {
    width: 100%;
    height: auto;
}

.flex{
    display: flex;
    align-items: center;
}

.flex-between{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-around{
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.flex-wrap{
    display: flex;
    flex-wrap: wrap;
}

.flex-center{
    display: flex;
    justify-content: center;
    align-items: center;
}

.main {
    padding: 100px 0 0;
}

.container{
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}


/* ヘッダー（固定） */
header{
    position: fixed;
    top: 0;
    z-index: 9999;
    background-color: #fff;
    width: 100vw;
    height: 100px;
    color: #1b5e62;
    padding: 0;

}

header a{
    font-family: 'Noto Serif JP', serif;
    font-weight: bold;
    color: #32a9b1;
}
.header-flex{
    max-width: 1920px;
    margin: 0 auto;
    height: 100%;
}

.header-flexL{
    height: 64%;
    width: 200px;
    text-align: left;
}

.header-flexL img{
    height: 100%;
    width: auto;
}

.header-flexR li{
    margin-left: 40px;
}

.openbtn{
    display: none;
    position: relative;
	cursor: pointer;
    width: 50px;
    height:50px;
	border-radius: 5px;
    z-index: 99999;
}

.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background: #1b5e62;
  	width: 50%;
}

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.open span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 50%;
}

.openbtn.open span:nth-of-type(2) {
	opacity: 0;/*真ん中の線は透過*/
}

.openbtn.open span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 50%;
}
.g-nav{
    position:fixed;
	z-index: -2;
	opacity: 0;
	top:0;
	width:100%;
    height: 100vh;
	background:#999;
    /*動き*/
	transition: all 0.3s;
}

.g-nav.panelactive{
	opacity: 1;
	z-index:999;
}

.g-nav{
    position:fixed;
	z-index: -1;
	opacity: 0;
	top:0;
	width:100%;
    height: 100vh;
	background:#1b5e62;
    /*動き*/
	transition: all 0.3s;
}

.g-nav.panelactive{
	opacity: 1;
	z-index:999;
}

.g-nav ul {
    display: none;
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

.g-nav.panelactive ul {
    display: block;
}
.g-nav li{
	list-style: none;
    text-align: center; 
}

.g-nav li a{
	color: #F7F4EA;
	text-decoration: none;
	padding: 20px 40px;
	display: block;
	letter-spacing: 0.1em;
    font-family: 'Noto Serif JP', serif;
}


/* SNS（固定） */
.sns-fixed{
    position: fixed;
    bottom: 40px;
    left: 10%;
    width: 212px;
    z-index: 9999;
    transition: all 0.4s;
}

.fadeOut{
    opacity: 0;
}

.fadeIn{
    opacity: 1;
}

.sns-icon{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #32a9b1;
    background-color: #F7F4EA;
    text-align: center;
}

.sns-icon a{
    width: 100%;
    padding: 16px;
}

.sns-icon i{
    color: #32a9b1;
    font-size: 24px;
    line-height: 26px;
}


/* リンクボタン */
.link-btn{
    display: block;
    width: 264px;
    height: 64px;
    line-height: 52px;
    background-color: #32a9b1;
    border-radius: 9px;
    padding: 4px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    transition: background .3s;
    color: #fff;
}

.link-btn-line{
    width: 100%;
    height: 100%;
    border-radius: 5px;
    border: 1px solid #fff;
    padding: 0 12px 0 0;
    font-family: 'Noto Serif JP', serif;
    font-size: 18px;
    font-weight: 700;
}

.link-btn:hover{
    background: #2b939a;
}

.link-btn::before {
    position: absolute;
    top: 7px;
    right: 18px;
    content: "\f0a9";
    font-family: "Font Awesome 6 Free";
    color: #fff;
    font-weight: 900;
    font-size: 16px;
    pointer-events: none;
}

.archive-link-btn {
    margin-top: 60px !important;
}

/* 動画コンテンツ */

.main-movie{
    position: relative;
    margin-bottom: 40px;
}

.movie-btn-items{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    gap: 40px;
}

.movie-contents{
    margin-top: 48px;
}


.movie-btn{
    width: 200px;
    height: 50px;
    border-radius: 30px;
    background-color: #1b5e62;
    padding: 14px 10px 14px 0;
    text-align: center;
    color: #fff;
    font-size: 18px;    
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    position: relative;
    transition: background .3s;
}

.movie-btn img{
    height: 100%;
    object-fit: contain;
}

.movie-btn.hulu{
    background-color: #040405;
}

.movie-btn.unext{
    background-color: #232d3a;
}

.movie-btn.amazon, .movie-btn.fod{
    background-color: #1a1c22;
}

.movie-btn.hulu:hover {
    background: #292933;
}
.movie-btn:hover .unext{
    background: #38495e;
}

.movie-btn.amazon:hover, .movie-btn.fod:hover{
    background-color: #353945;
}

.movie-btn::before {
    position: absolute;
    top: 16px;
    right: 16px;
    content: "\f144";
    font-family: "Font Awesome 6 Free";
    color: #fff;
    font-weight: 400;
    font-size: 18px;
    pointer-events: none;
}

.sub-movie p{
    margin-bottom: 14px;
}

.sub-movie-item{
    width: 30%;
}

.sub-movie-item a{
    display: block;
}

.movie-thumb{
    width: 100%;
    height: 240px;
    position: relative;
    margin-bottom: 12px;
    overflow: hidden;
}

.movie-thumb img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.thumb-hover{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(112,112,112,0.7);
    transition: all 0.4s;
    opacity: 0;
}

.thumb-hover i{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 3em;
}

.sub-movie-item:hover .thumb-hover{
    /* display: block; */
    opacity: 1;
}

.sub-movie-title{
    text-align: center;
}

/* フッター */
footer{
    width: 100%;
    background-color: #fff;
    padding-top: 72px;
    padding-bottom: 16px;
    position: relative;
}

footer .container{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.footer-left-area {
    width: calc( 100% - 320px );
}

.footer-right-area {
    width: 320px;
}

.footer-menu{
    margin-bottom: 32px;
}

.footer-menu li{
    margin-right: 40px;
    color: #1b5e62;
}



.footer-menu a{
    font-family: 'Noto Serif JP', serif;
    font-weight: bold;
    color: #32a9b1;
}

.footer-menu img{
    height: 24px;
    /* object-fit: contain; */
    width: auto;
}

.footer-sns-text{
    margin: 0;
    margin-bottom: 16px;
    padding-left: 8px;
    color: #1b5e62;
}

.footer-sns{
    width: 212px;
}

.footer-logo img{
    max-width: 320px;
    height: auto;
    margin-right: 5%;
}

.footer-company{
    width: 100%;
    font-family: 'Noto Serif JP', serif;
    font-size: 14px;
    text-align: center;
    margin-top: 20px;
    background-color: #fff;
    color: #5a5a5a;
}

/* 固定ページ */

/* タイトル */
.page-title{
    color: #1b5e62;
    font-size: 30px;
    text-align: center;
    margin: 60px auto 50px;
    padding: 0;
}



/* CONTACT
---------------------------------*/
input[type="text"],
input[type="email"],
input[type="submit"],
select,
input[type="tel"] {
    -webkit-appearance: none;
    appearance: none;
    color: #000;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="submit"]:focus,
select:focus,
input[type="tel"]:focus,
textarea:focus {
  outline: solid 1px #32a9b1;
}

.wpcf7-form {
    margin-bottom: 40px;
}
.contact_from {
    margin-top: 32px;

}
.contact_from dd + dt {
    margin-top: 24px;
}
.contact_from dd {
    margin: 8px 0 0 0;
}
.contact_from dt label {
    color: #1b5e62;
    font-family: 'Noto Serif JP', serif;
    font-weight: 700;
}
.contact_from dt .en {
    font-size: 12px;
    font-weight: 400;
    display: block;
    color: #707070;
    font-family: 'Noto Serif JP', serif;
}

.contact_from .wpcf7-form-control {
    border: none;
    padding: 12px 16px;
    border-radius: 2px;
    width: 100%;
    background: #F7F4EA;
    font-size: 16px;
}
.select_wrapper {
    position: relative;
}
.select_wrapper::after {
    content: "";
    position: absolute;
    top: 12px;
    right: 14px;
    bottom: 0;
    height: 12px;
    width: 12px;
    border-left: 1px solid #1b5e62;
    border-bottom: 1px solid #1b5e62;
    transform: rotate(-45deg);
    transition: transform .3s;
    z-index: 6;
    pointer-events: none;
}
.contact_from .wpcf7-form-control {
    padding-right: 50px;
}
.required {
    color: #f45a5d;
}
.contact_send_btn {
    position: relative;
    margin: 48px auto 0;
    max-width: 264px;
}
.contact_send_btn::before {
    position: absolute;
    top: 18px;
    right: 18px;
    content: "\f0a9";
    font-family: "Font Awesome 6 Free";
    color: #fff;
    font-weight: 900;
    font-size: 16px;
    pointer-events: none;
    z-index: 1;
}
.contact_send_btn input {
    display: block;
    border: none;
    width: 100%;
    cursor: pointer;
    background-color: #32a9b1;
    border-radius: 9px;
    padding: 16px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    transition: background .3s;
    color: #fff;
    font-size: 16px;
}
.contact_send_btn span {
    position: absolute;
}
.contact_from .wpcf7-not-valid-tip {
    color: #f45a5d;
    margin-top: 4px;
    font-size: 14px;
}
div.wpcf7 .wpcf7-spinner {
    left: 16px;
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: #1b5e62;
}
.wpcf7 form.invalid .wpcf7-response-output {
    border: none;
    padding: 0;
    margin: 32px 0 0;
    color: #f45a5d;
}
.wpcf7 form.sent .wpcf7-response-output {
    border: none;
    padding: 0;
    margin: 32px 0 0;
    color: #32a9b1;
}












@media (hover: none){    
    .thumb-hover{
        opacity: 1;
    } 
}

@media screen and (max-width:1920px){
    header{
        padding: 0 3%;
    }
}

@media screen and (max-width:1024px){

    .main {
        padding: 50px 0 0;
    }
    
    header{
        width: 100%;
        height: 50px;
        padding: 0;
    }

    .header-flexR{
        display: none;
    }
    
    .header-flex{
        max-width: 87%;
    }
    
    .openbtn{
        display: block;
    }

    .sns-fixed {
        bottom: 20px;
        left: 0;
        width: 56px;
        flex-direction: column;
    }

    .sns-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 8px;
    }
    
    .sns-icon a{
        padding: 4px;

    }

    .sns-icon i{
        font-size: 15px;
    }
    

    .movie-thumb{
        height: calc(100vw / 4);
    }


    footer{
        padding-top: 30px;
        padding-bottom: 16px;
    }
    
    
    footer .container{
        display: flex;
        flex-wrap: wrap;
    }

    .footer-left-area {
        width: 100%;
    }

    .footer-right-area {
        display: none;
    }
    

    .footer-menu{
        flex-direction: column;
        align-items: flex-start;
        height: auto;
    }

    .footer-menu li{
        margin-bottom: 12px;
        margin-right: 0;
    }

    .footer-menu img{
        /* object-fit: none; */
        width: auto;
    }


    .footer-sns {
        width: 136px;
        justify-content: space-between;
    }

    .footer-logo{
        display: none;
    }
    
}

@media screen and (max-width:600px){
    

    .container{
        padding: 0 5%;
    }

    .page-title{
        margin: 30px auto 24px;
        font-size: 22px;
    }

    
    .link-btn{
        width: 100%;
    }

    .link-btn::before {
        font-size: 18px;
    }

    .movie-contents{
        margin-top: 30px;
    }

    .main-movie.flex{
        flex-direction: column;
    }

    .main-movie.flex p{
        margin: 0 auto 0 0;
    }

    .movie-btn-items{
        position: static;
        flex-direction: column;
        gap: 0;
        margin-top: 14px;
        transform: none;
    }

    .movie-btn + .movie-btn {
        margin: 8px 0 0;
    }
    
    .sub-movie p{
        font-size: 12px;
    }

    .sub-movie-items{
        flex-wrap: wrap;
    }

    .sub-movie-item {
        width: 45%;
        margin-bottom: 16px;
    }

    .movie-thumb{
        margin-bottom: 8px;
        height: calc(100vw / 3);
    }
    
    footer{
        padding-top: 30px;
        padding-bottom: 16px;
    }
    
    
    footer .container{
        display: flex;
        flex-wrap: wrap;
    }

    .footer-left-area {
        width: 100%;
    }

    .footer-right-area {
        display: none;
    }
    

    .footer-menu{
        flex-direction: column;
        align-items: flex-start;
        height: auto;
    }

    .footer-menu li{
        margin-bottom: 12px;
        margin-right: 0;
    }

    .footer-menu img{
        /* object-fit: none; */
        width: auto;
    }


    .footer-sns {
        width: 136px;
        justify-content: space-between;
    }

    .footer-logo{
        display: none;
    }
}


/* THEATER
---------------------------------*/

.theater {
    background: #edf5f5;
}

.theater-content {
    padding: 0 0 80px;
}

.theater-content h3 {
    color: #8B7C2E;
    font-size: 24px;
    letter-spacing: 0.2em;
    margin: 0 0 20px 0;
    font-weight: 700;
    font-family: initial;
}

.theater-content .wp-block-table td, .theater-content .wp-block-table th {
    border: none;
    padding: 0;
}

.theater-content .wp-block-table table {
    width: 100%;
    border-radius: 10px;
    border-spacing: 0;
    border-collapse: separate;
}

.theater-content .wp-block-table + h3 {
    margin-top: 40px;
}

.theater-content .wp-block-table table thead th:first-child {
    border-radius: 7px 0 0 0;
}
.theater-content .wp-block-table table thead th:last-child {
    border-radius: 0 7px 0 0;
}
.theater-content .wp-block-table table tr:last-child td:first-child {
    border-radius: 0 0 0 7px;
}
.theater-content .wp-block-table table tr:last-child td:last-child {
    border-radius: 0 0 7px 0;
}

.theater-content .wp-block-table table tr {
    background: rgba(255, 255, 255, 0.6);
    color: #333;
    position: relative;
}

.theater-content .wp-block-table table tr::after {
    content: '';
    background: rgba(50, 169, 177, 0.4);
    width: 90%;
    height: 1px;
    border-radius: 9999px;
    position: absolute;
    top: -1;
    left: 5%;
}

.theater-content .wp-block-table table thead tr {
    background: #32A9B1;
    color: #fff;
    height: 40px;
}

.theater-content .wp-block-table table thead tr::after,
.theater-content .wp-block-table table tr:first-child::after {
    content: none;
}



.theater-content .wp-block-table table th {
    text-align: center;
    line-height: 40px;
    font-size: 18px;
    letter-spacing: 0.1em;
    font-family: 'Noto Serif JP';
    font-weight: 100;
    letter-spacing: 0.1em;
}

.theater-content .wp-block-table table td {
    padding: 24px 0;
}

.theater-content .wp-block-table table tr td:first-child {
    text-align: center;
    font-size: 20px;
    width: 30%;
}

.theater-content .wp-block-table table tr td:last-child {
    font-size: 16px;
    line-height: 2.5em;
    text-align: left;
    width: 70%;
}

.theater-content .wp-block-table table tr td:last-child a {
    font-size: inherit;
    line-height: inherit;
    color: #333;
    text-decoration: underline #333;
}

.theater-content .wp-block-table table thead td {
    text-align: center;
}



@media screen and (max-width:600px){
    .theater-content {
        padding: 0 0 40px;
    }

    .theater-content h3 {
        font-size: 18px;
        margin: 0 0 8px 0;
    }

    .theater-content .wp-block-table table th {
        font-size: 16px;
    }

    .theater-content .wp-block-table table td {
        padding: 16px 0;
    }

    .theater-content .wp-block-table table tr td:first-child {
        font-size: 16px;
    }

    .theater-content .wp-block-table table tr td:last-child {
        font-size: 14px;
    }
    .theater-content .wp-block-table table tr td:last-child a {
        font-size: 14px;
    }

}

/* 202501 add */

.white-box {
    background-color: #fff;
    position: relative;
}

.white-box img {
    width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.white-box iframe {
    width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

/* 202504 MV改修 */
.header-flexL {
    height: auto;
    width: 180px;
}
.header-flexL a:has(img) {
    display: flex;
    align-items: center;
}
.header-flexL a img {
    width: 100%;
}

@media screen and (min-width: 1025px) {
    .header-flexL {
        width: min(25%, 280px);
    }
}
@media screen and (max-width: 1024px) {
    .header-flex {
        max-width: 94%;
    }
}