@charset "UTF-8";

/* base */

html {
    font-size: 15px;
    line-height: 0;
    overflow-x: hidden;
    height: 100%;
}


@media screen and (max-width: 1100px) {
    html {
        font-size: 1.45vw;
    }
}
@media screen and (max-width: 767px) {
    html {
        font-size: 3.6vw;
    }
}


body {
    color: #252525;
    font-family: 'Noto Sans JP', "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", sans-serif;
    line-height: 1.7;
    letter-spacing: 0.04rem;
    font-weight: 400;
    margin: auto;
}
/* スクロールを無効にするためのCSS */
body.no-scroll {
    overflow: hidden;
}
@media screen and (max-width: 767px) {
    body {
        line-height: 1.8;
        letter-spacing: 0.01rem;
    }
}


*{
    box-sizing:border-box;
}
a{
    color:#335e80;
    text-decoration:none;
    transition: 0.3s;
}
a:hover{
    color:#467aa2;
}
ul, ol{
    list-style:none;
}
img{
    max-width: 100%;
    max-height: 100%;
}
.mincho{
    font-family: "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    font-weight: normal;
}

.text_color_orange{
    color: #e9440a;
}
.text_color_white{
    color: #fff;
}
.text_color_dark_gold{
    color: #936e57;
}
.text_color_light_gold{
    color: #d0b78d;
}

.bg_color_white{
    background: #fff;
}
.bg_color_beige{
    background: #f7f2e6;
}
.bg_color_white{
    background: #fff;
}
.bg_color_navy{
    background: #303844;
}
.bg_color_gray{
    background: #666;
}

.sp{
    display:none !important;
}
@media screen and (max-width: 767px){
    .pc{
        display:none !important;
    }
    .sp{
        display:inherit !important;
    }
}



.normal_title{
    font-size: 2.1rem;
    text-align: center;
}
.normal_title.ja_size{
    font-size: 1.8rem;
}
@media screen and (max-width: 767px){
    .normal_title{
        font-size: 1.6rem;
    }
    .normal_title.ja_size{
        font-size: 1.4rem;
    }
}



.common_black_btn{
    text-align: center;
}
.common_black_btn .one_btn {
    background-color: #000;
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.5;
    display: inline-block;
    padding: 1.3rem 2.5rem;
    border-radius: 0.1rem;
    cursor: pointer;
    position: relative;
    margin-left: 0.4rem;
    margin-bottom: 0.4rem;
    transition: all .3s;
}
.common_black_btn .one_btn:first-child{
    margin-left: 0;
}
.common_black_btn .one_btn:hover{
    opacity: 0.65;
}
.common_black_btn .one_btn span {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
}
@media screen and (max-width: 767px){
    .common_black_btn .one_btn {
        font-size: 1.1rem;
        padding: 1.2rem 2.7rem;
    }
}



.page_top_title{
    height: 15rem;
}
.page_top_title .black_bg{
    background: rgba(0,0,0,0.7);
    height: 15rem;
    color: #fff;
    display: flex; /* Flexboxを有効にする */
    flex-direction: column; /* 子要素を縦に並べる */
    justify-content: center; /* 子要素を上下中央に揃える */
    align-items: center; /* 子要素を左右中央に揃える */
}
.page_top_title .black_bg .en_title{
    font-size: 2.5rem;
    letter-spacing: 0.2rem;
    line-height: 1.1em;
}
.page_top_title .black_bg .ja_title{
    font-size: 0.85rem;
    letter-spacing: 0.08rem;
}
@media screen and (max-width: 767px){
    .page_top_title{
        height: 10rem;
    }
    .page_top_title .black_bg{
        height: 10rem;
    }
    .page_top_title .black_bg .en_title.view_360_page_title{
        font-size: 2rem;
        letter-spacing: 0.05rem;
    }
}



.normal_list_3_block{
    display: flex;
    justify-content: space-between;
    gap: 2.5rem;
    padding: 1rem 5rem 5rem 5rem;
}
.normal_list_3_block .one {
    flex: 1;
}
.normal_list_3_block .one .title{
    font-weight: bold;
}
@media screen and (max-width: 767px){
    .normal_list_3_block{
        display: block;
        padding: 1rem 1.5rem 2rem 1.5rem;
    }
    .normal_list_3_block .one{
        margin-bottom: 3rem;
    }
    .normal_list_3_block .one .title{
        font-size: 1.2rem;
    }
}










/* -------------------- header.php -------------------- */

/*ヘッダーPC用*/
@media screen and (min-width: 768px){
    .header{
        position: fixed;
        z-index: 999;
        top: 0;
        left: 0;
        width: 100%;
        background: #fff;
        height: 4rem;
    }
    body{
        padding-top: 4rem;
    }
    .header .logo_link{
        position: absolute;
        left: 2rem;
        top: 0.7rem;
        height: 2.6rem;
    }
    .header .logo_link:hover{
        opacity: 0.7;
    }

    .header .nav-overlay__list{
        display: block;
        text-align: right;
        padding-right: 3rem;
    }
    .header .nav-overlay__list .nav-overlay__item{
        display: inline-block;
        margin-left: 3rem;
        font-size: 0.87rem;
        font-weight: bold;
        letter-spacing: 0;
    }
    .header .nav-overlay__list .nav-overlay__item a{
        color: #000;
    }
    .header .nav-overlay__list .nav-overlay__item a:hover{
        color: #888;
    }
}


/*ヘッダースマホ用*/
@media screen and (max-width: 767px){
    .header{
        position: fixed;
        z-index: 900;
        top: 0;
        left: 0;
        width: 100%;
        background: #fff;
        height: 4rem;
    }
    body{
        padding-top: 4rem;
    }

    .header .logo_link{
        position: absolute;
        z-index: 999;
        left: 0.8rem;
        top: 0.7rem;
        height: 2.6rem;
    }
    .header .hamburger-overlay {
        position: absolute;
        right: 0.6rem;
        top: 0.5rem;
        height: 2.6rem;
        width: 2.6rem;
        z-index: 999;
        border: none;
        background: transparent;
    }

    .header .hamburger-overlay__line {
        position: absolute;
        left: 0;
        width: 2rem;
        height: 0.1rem;
        background-color: #333;
        transition: all .6s;
    }

    .header .hamburger-overlay__line:nth-of-type(1) {
        top: 0.8rem;
    }
    .header .hamburger-overlay__line:nth-of-type(2) {
        top: 1.5rem;
    }
    .header .hamburger-overlay__line:nth-of-type(3) {
        top: 2.2rem;
    }

    .header .hamburger-overlay.active .hamburger-overlay__line {
        background-color: #fff;
    }

    .header .hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
        transform: translateY(0.7rem) rotate(-45deg);
    }
    .header .hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
        opacity: 0;
    }
    .header .hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
        transform: translateY(-0.7rem) rotate(45deg);
    }

    .header .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95);
        visibility: hidden;
        opacity: 0;
        transition: all .6s;
        z-index: 901;
    }

    .header .nav-overlay.active {
        visibility: visible;
        opacity: 1;
    }

    .header .nav-overlay__content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        text-align: center;
    }

    .header .nav-overlay__list {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .header .nav-overlay__item {
        opacity: 0;
        transform: translateY(20px);
        transition: all .6s;
    }

    .header .nav-overlay.active .nav-overlay__item {
        opacity: 1;
        transform: translateY(0);
    }

    /*    .header .nav-overlay.active .nav-overlay__item:nth-child(1) {
            transition-delay: 0.1s;
        }
        .header .nav-overlay.active .nav-overlay__item:nth-child(2) {
            transition-delay: 0.2s;
        }
        .header .nav-overlay.active .nav-overlay__item:nth-child(3) {
            transition-delay: 0.3s;
        }
        .header .nav-overlay.active .nav-overlay__item:nth-child(4) {
            transition-delay: 0.4s;
        }
        .header .nav-overlay.active .nav-overlay__item:nth-child(5) {
            transition-delay: 0.5s;
        }
        .header .nav-overlay.active .nav-overlay__item:nth-child(6) {
            transition-delay: 0.6s;
        }*/
    /*↓jsを使って自動で加算・減算させる*/
    .header .nav-overlay.active .nav-overlay__item {
        /* ここでカスタムプロパティ --i の値がJavaScriptによって設定されます */
        transition-delay: calc(var(--i) * 0.1s);
    }

    .header .nav-overlay__link {
        display: inline-block;
        color: #fff;
        font-size: 1.5rem;
        text-decoration: none;
        margin: 1rem 0;
    }
}


/*ページのトップにスクロールボタン*/
.pagetop {
    position: fixed;
    z-index: 800;
    right: 1.5rem;
    bottom: 1.5rem;
    width: 3.8rem;
    height: 3.8rem;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.pagetop .caret-up {
    position: relative;
    width: 1rem;
    height: 1rem;
}
.pagetop .caret-up::before {
    content: "";
    position: absolute;
    top: 65%;
    left: 50%;
    width: 0.6rem;
    height: 0.6rem;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translate(-50%, -50%) rotate(-45deg);
}
@media screen and (max-width: 767px){
    .pagetop {
        right: 1rem;
        bottom: 1rem;
        width: 3.2rem;
        height: 3.2rem;
    }
}









/* -------------------- footer.php -------------------- */

.footer{
    /*padding-top: 3rem;*/
    background: #fff;
}

.footer .contact_block{
    background: #e5e3de;
    padding: 5rem 0;
}
.footer .contact_block .common_black_btn{
    margin: 2.2rem auto;
}
.footer .contact_block .tel_block{
    text-align: center;
    margin-top: 3rem;
}
.footer .contact_block .tel_block .title{
    font-size: 1.3rem;
}
.footer .contact_block .tel_block .tel{
    font-size: 1.9rem;
    margin: 0.5rem auto;
}
.footer .contact_block .tel_block .time{
    font-size: 0.9rem;
}

.footer .company_block{
    background: #666;
    color: #fff;
    text-align: center;
    padding: 2rem 0 1.5rem 0;
}
.footer .company_block .logo{
    width: 20rem;
}
.footer .company_block .text{
    font-size: 0.9rem;
    margin-top: 1rem;
}

.footer .copy_block{
    background: #000;
    color: #fff;
    text-align: center;
    line-height: 3rem;
    font-size: 0.7rem;
}

@media screen and (max-width: 767px){
    .footer .contact_block{
        padding: 4rem 0;
    }
    .footer .contact_block .common_black_btn{
        margin: 1.5rem auto;
    }
    .footer .contact_block .tel_block{
        margin-top: 3rem;
    }
    .footer .contact_block .tel_block .title{
        font-size: 1.3rem;
    }
    .footer .contact_block .tel_block .tel{
        font-size: 1.7rem;
        margin: 0.3rem auto;
    }
    .footer .contact_block .tel_block .time{
        font-size: 0.9rem;
    }

    .footer .company_block .logo{
        width: 17rem;
    }
    .footer .company_block .text{
        font-size: 0.9rem;
        margin-top: 1.3rem;
    }

}







/* -------------------- index.php -------------------- */

/* 背景スライダーの設定 */
.index_background {
    position: fixed; /* 画面に固定 */
    top: 4rem;/*固定ヘッダー用*/
    left: 0;
    width: 100%;
    height: calc(100vh - 4rem);
    z-index: -1; /* コンテンツの下に配置 */
    overflow: hidden; /* 画像がはみ出ないように */
}

.index_background .top_bg_slide {
    position: relative;
    width: 100%;
    height: 100vh; /* ビューポートの高さに合わせて調整 */
    overflow: hidden;
}
.index_background .top_bg_slide .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1); /* ズームインした状態で開始 */
    transition: opacity 1.5s ease-in-out, transform 4s ease-in-out; /* トランジションを追加 */
}
.index_background .top_bg_slide .slide.active {
    opacity: 1; /* activeクラスが付いたスライドを表示 */
    transform: scale(1.1); /* ズームアウトして通常サイズに戻る */
}

/*.index_background .top_bg_slide .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;  最初は非表示 
    background-size: cover;
    background-position: center;
    animation: slide-animation 18s infinite;  アニメーションの適用 
}
 アニメーションのキーフレーム 
@keyframes slide-animation {
    0% {
        opacity: 0;
        transform: scale(1.1);  少しズームした状態から開始 
    }
    4% {  1秒かけてフェードイン (4%は 1s / 24s) 
        opacity: 1;
    }
    16% {  4秒間表示 (4s / 24s) 
        opacity: 1;
        transform: scale(1);
    }
    20% {  次のスライドとクロスフェード (5s / 24s) 
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}*/
.index_background .top_bg_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0; /* 最初は非表示 */
    background-size: cover;
    background-position: center;
}


/* コンテンツの設定 */
.index_content .top_cover_block {
    position: relative;
    z-index: 1;
    height: calc(100vh - 4rem);
    min-height: 800px;
}


.index_content .top_cover_block .btn_360{
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 2;
    width: 11rem;
}
.index_content .top_cover_block .btn_360:hover{
    opacity: 0.7;
}
.index_content .top_cover_block .logo_block{
    text-align: center;
    width: 100%;
    position: absolute;
    top: 33%;
    left: 0;
}
.index_content .top_cover_block .logo_block .logo_bg{
    display: inline-block;
    width: 20rem;
    height: 18rem;
    background: rgba(48, 56, 68, 0);
    border-radius: 3px;
}
.index_content .top_cover_block .logo_block .logo_bg img{
    width: 78%;
    margin-top: 6.2rem;
    filter: drop-shadow(0 0 7px rgba(0, 0, 0, 0.8));
}
.index_content .top_cover_block .logo_block h1{
    font-size: 2.3rem;
    color: #fff;
    margin-top: 9rem;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.9);
}

@media screen and (max-width: 767px){
    .index_content .top_cover_block .btn_360{
        top: 1.5rem;
        right: 1.5rem;
        width: 7rem;
    }
    .index_content .top_cover_block .logo_block{
        bottom: 3rem;
        top: 25%;
    }
    .index_content .top_cover_block .logo_block .logo_bg{
        width: 17rem;
        height: 15rem;
    }
    .index_content .top_cover_block .logo_block .logo_bg img{
        width: 80%;
        margin-top: 5.3rem;
        filter: drop-shadow(0 0 0.2rem rgba(0, 0, 0, 0.7));
    }
    .index_content .top_cover_block .logo_block h1{
        font-size: 1.6rem;
        margin-top: 1rem;
        text-shadow: 0 0 5px rgba(0, 0, 0, 0.9);
    }
}


.slide_full_block{
    padding: 5rem;
    text-align: center;
}
.slide_full_block img{
    max-width: 1000px;
}
@media screen and (max-width: 767px){
    .slide_full_block{
        padding: 1rem;
    }
    .slide_full_block img{
        max-width: 100%;
        display: block;
    }
}


.index_content .LR_block{
    padding: 4rem 0;
}
.index_content .LR_block .normal_title.ja_size{
    margin-bottom: 2rem;
}
.index_content .LR_block .LR_block_inner {
    display: flex; /* Flexboxを有効にする */
    align-items: center; /* 子要素を上下中央に揃える */
    justify-content: center; /* 子要素全体を中央に配置する（任意） */
    width: 100%;
    padding-right: 4rem;
}
.index_content .LR_block .LR_block_inner.add_margin_top{
    margin-top: 6rem;
}
.index_content .LR_block .LR_block_inner > .media {
    margin-right: 4rem;
}
.index_content .LR_block .LR_block_inner .media,
.index_content .LR_block .LR_block_inner .content {
    flex: 1; /* 親要素の利用可能なスペースを均等に分割 */
    width: 50%; /* 古いブラウザ向けにfallbackとして幅を指定 */
}
.index_content .LR_block .LR_block_inner .content .title{
    font-size: 1.5rem;
    border-bottom: 1px #555 solid;
}
.index_content .LR_block .LR_block_inner .content.text_color_white .title{
    border-bottom: 1px #fff solid;
}
.index_content .LR_block .LR_block_inner .content .text{
    margin: 2rem auto 3rem auto;
    line-height: 1.8em;
}
.index_content .LR_block .LR_block_inner .content .common_black_btn .one_btn{
    padding-left: 7rem;
    padding-right: 7rem;
}
@media screen and (max-width: 1100px){
    .index_content .LR_block .LR_block_inner{
        padding-right: 3rem;
    }
    .index_content .LR_block .LR_block_inner .media{
        flex: 4;
        width: 40%;
        margin-right: 3rem;
    }
    .index_content .LR_block .LR_block_inner .content {
        flex: 6;
        width: 60%;
    }
    .index_content .LR_block .LR_block_inner .content .title{
        font-size: 1.4rem;
    }
    .index_content .LR_block .LR_block_inner .content .text{
        margin: 1rem auto 2rem auto;
        line-height: 1.7em;
    }
    .index_content .LR_block .LR_block_inner .content .text .w-1100_no{
        display: none;
    }
}
@media screen and (max-width: 767px){
    .index_content .LR_block{
        padding: 4rem 0;
    }
    .index_content .LR_block .normal_title.ja_size{
        margin-bottom: 1rem;
    }
    .index_content .LR_block .LR_block_inner {
        display: block;
        padding-right: 0;
    }
    .index_content .LR_block .LR_block_inner.add_margin_top{
        margin-top: 6rem;
    }
    .index_content .LR_block .LR_block_inner > .media {
        margin-right: 0;
    }
    .index_content .LR_block .LR_block_inner .media,
    .index_content .LR_block .LR_block_inner .content {
        width: 94%;
        margin: 0 auto;
    }
    .index_content .LR_block .LR_block_inner .content .title{
        font-size: 1.3rem;
        margin-top: 1rem;
    }
    .index_content .LR_block .LR_block_inner .content .text{
        margin: 1rem auto 1.8rem auto;
    }
}


.index_content .block_after_img{
    width: 100%;
    height: calc(100vh - 4rem);
    background-size: cover;
    background-position: center;
}


.index_content .pickup_block{
    padding: 5rem 0 3rem 0;
}










/* -------------------- design.php -------------------- */
.design_common_block{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 6rem 0;
}
.design_common_block .left_block{
    flex: 5;
    width: 50%;
    padding-right: 2rem;
}
.design_common_block .right_block{
    flex: 5;
    width: 50%;
    padding-left: 2rem;
}
.design_common_block .title,
.design_common_block .text{
    padding: 0 4rem;
}
.design_common_block .title{
    font-size: 1.8rem;
}
.design_common_block .title.min{
    font-size: 1rem;
    font-weight: bolder;
    margin-top: 2rem;
}
.design_common_block .text{
    margin: 1.4rem auto 3rem auto;
    line-height: 1.9em;
}
@media screen and (max-width: 1200px){
    .design_common_block .left_block{
        padding-right: 1rem;
    }
    .design_common_block .right_block{
        padding-left: 1rem;
    }
    .design_common_block .title,
    .design_common_block .text{
        padding: 0 2rem;
    }
    .design_common_block .common_black_btn .one_btn {
        font-size: 1.1vw;
        padding: 1.5vw 2.5vw;
    }
}
@media screen and (max-width: 767px){
    .design_common_block{
        display: block;
        padding: 4rem 0;
    }
    .design_common_block .left_block{
        width: 100%;
        padding-right: 0;
    }
    .design_common_block .right_block{
        width: 100%;
        padding-left: 0;
    }
    .design_common_block .title,
    .design_common_block .text{
        padding: 0 1rem;
    }
    .design_common_block .title{
        font-size: 1.6rem;
    }
    .design_common_block .title.min{
        font-size: 1.1rem;
        margin-top: 1.5rem;
    }
    .design_common_block .text{
        margin: 1rem auto 2rem auto;
        line-height: 1.7em;
    }
    .design_common_block .right_block img{
        width: 90%;
        display: block;
        margin: 2.5rem auto 0 auto;
    }
    .design_common_block .common_black_btn .one_btn {
        font-size: 1.02rem;
        padding: 1.2rem 0;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
}







/* -------------------- aboutus.php -------------------- */
.about_intro_block{
    max-width: 800px;
    padding: 5rem 0;
    margin: 0 auto;
}
.about_intro_block .title{
    font-size: 1.7rem;
    margin: 1.5rem auto;
    text-align: center;
}
.about_intro_block .intro_video{
    width: 100%;
}

.aboutus_img3{
    text-align: center;
    padding: 5.5rem 0;
    margin-bottom: 4.5rem;
}
.aboutus_img3 img{
    max-width: 1000px;
    width: 100%;
}

.aboutus_company_block{
    margin: 0 auto;
    padding: 3rem 0;
}
.aboutus_company_block table{
    margin: 1.3rem auto;
}
.aboutus_company_block table th{
    width: 10em;
    text-align: left;
    vertical-align: top;
    padding: 0.7rem 0;
}
.aboutus_company_block table td{
    padding: 0.7rem 0;
}
.aboutus_company_block .common_black_btn .one_btn{
    padding-left: 7rem;
    padding-right: 7rem;
}

.aboutus_g_map{
    display: block;
    height: 35rem;
    width: 100%;
    max-width: 1200px;
    margin: 4rem auto 5rem auto;
}

@media screen and (max-width: 767px){
    .about_intro_block{
        margin: 0 auto;
        width: 90%;
    }
    .about_intro_block .title{
        font-size: 1.5rem;
        margin: 1rem auto;
    }

    .aboutus_img3{
        padding: 4rem 0;
        margin-bottom: 4rem;
    }

    .aboutus_company_block{
        background: #f7f2e6;
        margin: 0 auto;
        padding: 4rem 1rem;
    }
    .aboutus_company_block table th,
    .aboutus_company_block table td{
        width: 100%;
        display: block;
        padding: 0;
    }
    .aboutus_company_block table td{
        padding: 0.3rem 0 1.2rem 0;
    }

    .aboutus_g_map{
        height: 25rem;
        margin: 0 auto 4rem auto;
    }

}





.about_anthology_block{
    padding: 5rem 0 0.1rem 0;
}
.about_anthology_block .anthology_link_block{
    padding: 0 2rem 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}
.about_anthology_block .anthology_link_block .one{
    display: inline-block;
    transition: 0.3s;
    flex: 1 1 calc((100% - 2rem * 2) / 3);
}
.about_anthology_block .anthology_link_block .one:hover{
    opacity: 0.7;
}
.about_anthology_block .anthology_link_block .one .img{
    position: relative;
    display: block;
    width: 100%;
    height: 15rem;
}
.about_anthology_block .anthology_link_block .one .img span{
    position: absolute;
    bottom: 0.1rem;
    right: 1rem;
    color: #fff;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.9);
}
.about_anthology_block .anthology_link_block .one .title{
    text-align: left;
    padding: 0.5rem 0;
}
@media screen and (max-width: 767px){
    .about_anthology_block .anthology_link_block{
        padding: 2rem 1.5rem 4rem 1.5rem;
        gap: 1.5rem;
    }
    .about_anthology_block .anthology_link_block .one{
        flex: 1 1 calc((100% - 1.5rem * 2) / 2);
    }
    .about_anthology_block .anthology_link_block .one .img{
        height: 9rem;
    }
    .about_anthology_block .anthology_link_block .one .img span{
        bottom: 0.1rem;
        right: 0.7rem;
        text-shadow: 0 0 5px rgba(0, 0, 0, 1);
        font-size: 0.8em;
    }
}


.about_anthology_block .anthology_slider_block{
    opacity: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
    left: 0;
    top: 0;
    padding-top: 15vh;
}
.about_anthology_block .anthology_slider_block .bg_black{
    background: rgba(0,0,0,0.7);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 990;
    left: 0;
    top: 0;
}
.about_anthology_block .anthology_slider_block .anthology_slider_close{
    position: absolute;
    z-index: 999;
    right: 10rem;
    top: 4.5rem;
    background: rgba(266,266,266,1);
    border-radius: 100px;
    color: #000;
    font-weight: bold;
    width: 3.5rem;
    height: 3.5rem;
    line-height: 3.5rem;
    text-align: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
}
@media screen and (max-width: 767px){
    .about_anthology_block .anthology_slider_block .anthology_slider_close{
        right: 2rem;
        top: 2rem;
    }
}
.about_anthology_block .anthology_slider_block .anthology_slider_close:hover{
    background: rgba(266,266,266,0.8);
}
.about_anthology_block .anthology_slider_block .anthology_slider{
    display: none;
}
.about_anthology_block .anthology_slider_block .anthology_slider.is-open{
    display: block;
}
.about_anthology_block .anthology_slider_block .anthology_slider div{
    width:100%;
    height:70vh;
    background-repeat:no-repeat;
    background-size:contain;
    background-position: center;
    position: relative;
    background-color: #fff;
    z-index: 998;
}
/* ドット全体の位置を調整 */
.about_anthology_block .anthology_slider_block .slick-dots {
    /*bottom: -2.3rem;  スライダー下からの位置を調整 */
    z-index: 999;
}
@media screen and (max-width: 767px){
    .about_anthology_block .anthology_slider_block .slick-dots {
        bottom: -4.5rem; /* スライダー下からの位置を調整 */
    }
}
/* 各ドットのスタイル */
.about_anthology_block .anthology_slider_block .slick-dots li {
    margin: 0 5px; /* ドット間のスペースを調整 */
}
/* ドットのボタン部分 */
.about_anthology_block .anthology_slider_block .slick-dots li button:before {
    background-color: #bbb; /* 通常時のドットの色 */
    color: #bbb;
    opacity: 0.8;
    border-radius: 100px;
}
/* アクティブなドット */
.about_anthology_block .anthology_slider_block .slick-dots li.slick-active button:before {
    background-color: #d0b78d; /* アクティブ時のドットの色 */
    color: #d0b78d;
    opacity: 1;
    cursor: default;
}









/* -------------------- works.php -------------------- */
.works_copy_text{
    text-align: center;
    padding: 3rem 0;
    font-size: 2rem;
}





.works_link_block{
    text-align: center;
}
.works_link_block .one{
    display: inline-block;
    margin: 1rem;
    transition: 0.3s;
}
.works_link_block .one:hover{
    opacity: 0.7;
}
.works_link_block .one .img{
    width: 30rem;
    height: calc(30rem * 0.65);
}
.works_link_block .one .img .play_btn{
    width: 4rem;
    margin-top: 25%;
}
.works_link_block .one .title{
    text-align: left;
    padding: 0.5rem 0;
}
@media screen and (max-width: 767px){
    .works_link_block{
        padding: 0 8% 2rem 8%;
    }
    .works_link_block .one{
        display: block;
        margin: 0 0 2rem 0;
    }
    .works_link_block .one .img{
        width: 100%;
        height: 14rem;
    }
    .works_link_block .one .img .play_btn{
        margin-top: 20%;
    }
}

/* モーダル（オーバーレイ）のスタイル */
#works_video_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none; /* 初期状態では非表示 */
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

/* モーダルコンテンツ（動画と閉じるボタン）のスタイル */
#works_video_modal .modal_content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

/* 閉じるボタンのスタイル */
#works_video_modal .modal_content .close_btn {
    position: absolute;
    top: -25px;
    right: -25px;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    background-color: #000;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}

/* 動画要素のスタイル */
#works_video {
    width: 100%;
    height: auto;
}

/* 画像モーダル（オーバーレイ）のスタイル */
#works_image_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

/* 画像モーダルコンテンツのスタイル */
#works_image_modal .image_modal_content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

/* 閉じるボタンのスタイル */
#works_image_modal .image_modal_content .close_btn {
    position: absolute;
    top: -25px;
    right: -25px;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    background-color: #000;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    z-index: 1001;
}

/* 画像スライダーのスタイル */
.image_slider {
    position: relative;
    text-align: center;
}

/* スライダー内の画像のスタイル */
#image_modal_img {
    width: 100%;
    height: auto;
    max-height: 80vh; /* ビューポートの高さに合わせる */
    object-fit: contain;
}

/* 前後ボタンのスタイル */
.slider_btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.5);
    color: #000;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 2rem;
    z-index: 1001;
    border-radius: 5px;
}

.prev_btn {
    left: 10px;
}

.next_btn {
    right: 10px;
}

/* ドットナビゲーションのスタイル */
.dot_navigation {
    text-align: center;
    padding-top: 10px;
}

.dot {
    height: 12px;
    width: 12px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
}

.dot.active {
    background-color: #717171;
}
















/* -------------------- 360view.php -------------------- */
.view_link_block{
    margin: 5rem auto;
    text-align: center;
}
.view_link_block .one{
    display: inline-block;
    margin: 1rem;
}
.view_link_block .one:hover{
    opacity: 0.7;
}
.view_link_block .one img{
    width: 32rem;
}

@media screen and (max-width: 767px){
    .view_link_block{
        margin: 3rem auto;
        width: 90%;
    }
    .view_link_block .one{
        margin: 0.5rem 0;
    }
    .view_link_block .one img{
        width: 100%;
    }
}









/* -------------------- contact.php -------------------- */
.contact_form_block{
    max-width: 700px;
    margin: 0 auto;
    padding: 5rem 1rem;
}
.contact_form_block .form_attention_text{
    margin-bottom: 4rem;
}
.contact_form_block .one{
    margin-bottom: 2.5rem;
}
.contact_form_block .one .title{
    font-weight: bold;
    margin-bottom: 0.3rem;
}
.contact_form_block .one .title .ja{
    font-weight: normal;
    color: #888;
    padding: 0 0.5em 0 0.5em;
}
.contact_form_block .one .title .required{
    background: #d50000;
    color: #fff;
    padding: 0.4rem 0.7rem;
    font-size: 0.8rem;
    font-weight: normal;
    border-radius: 0.3rem;
}
.contact_form_block .one .input_block input,
.contact_form_block .one .input_block textarea{
    background: #f7f2e6;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    width: 100%;
    font-size: 1.1rem;
}
.contact_form_block .one .input_block .length_70{
    width: 70%;
}

.contact_form_block .pp_text{
    font-size: 0.8rem;
    margin-bottom: 1rem;
}
.contact_form_block .submit_btn{
    background: #666;
    color: #fff;
    padding: 1rem 5rem;
    margin: 0 auto;
    display: block;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    font-size: 1.1rem;
    letter-spacing: 0.3rem;
    transition: 0.3s;
}
.contact_form_block .submit_btn:hover{
    background: #000;
}

@media screen and (max-width: 767px){
    .contact_form_block{
        padding: 3rem 1rem;
    }
    .contact_form_block .form_attention_text{
        margin-bottom: 2.5rem;
        font-size: 0.92rem;
    }
    .contact_form_block .one .input_block .length_70{
        width: 100%;
    }
}

