/*
Theme Name: Cocoon Child
Theme URI: https://wp-cocoon.com/
Template: cocoon-master
Author: わいひら
Author URI: https://nelog.jp/
Description: SEO・高速化・モバイルファースト最適化済みの無料テーマ。
Tags: two-columns,left-sidebar,right-sidebar
Version: 2.8.5.1.1743271230
Updated: 2025-03-30 03:00:30

*/

/*--------------共通--------------*/
.gt_switcher_wrapper {
	top: 5px !important;
    right: 10px !important;
}
.flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.flex figure {
    width: 50%;
}

@media screen and (max-width: 500px) {
    .flex {
        flex-direction: column;
    }

    .flex figure {
        width: 100%;
    }
}

.popup {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 20px;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.popup-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
}

.popup-close {
    position: absolute;
    top: 7%;
    right: 20%;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.home .entry-header,
.entry-footer,
.date-tags,
.admin-pv {
    display: none;
}

.content {
    overflow: hidden;
}

.content,
.article,
.main,
.entry-content {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
}

.main {
    background: transparent !important
}

.main_title {
    display: none;
}

.wrap {
    width: 100%;
}

img {
    width: 100%;
}

.red {
    font-weight: bold;
    color: red;
}

.video-container,
.instagram-container,
.facebook-container {
    max-width: none !important;
}

.center {
    text-align: center;
}

.article h2,
.article h3,
.article h4,
.article h5,
.article h6 {
    background: transparent;
    border: 0;
}

.sp_on {
    display: none;
}

@media screen and (max-width: 900px) {
    .popup-close {
        right: 2%;
    }

    .popup {
        top: 40px;
    }
}

@media screen and (max-width: 600px) {
    .sp_on {
        display: block;
    }

    .pc_off {
        display: none;
    }

    .popup-close {
        top: 2%;
        right: 6%;
    }
}

.mb-50 {
    margin-bottom: 50px !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

/*----------------------------ハンバーガーメニュー-----------------------------------*/
/* hamburger(ハンバーガーアイコン)
=================================== */
.nav-wrapper {
    position: relative;
    display: none;
    align-items: center;
}

.sp_reserve {
    padding: 2px 25px !important;
    background: #f7f7f7;
    color: #3b3b3b;
    border-radius: 20px;
    font-size: 16px !important;
    display: flex;
    align-items: center;
    margin-right: 16px;
}

.sp_reserve a {
    text-decoration: none;
    color: #3b3b3b !important;
}

.hamburger {
    position: relative;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 9999;
    padding: 20px;
}

.hamburger__line {
    position: absolute;
    width: 35px;
    height: 1px;
    right: 10px;
    background-color: #000;
    transition: all 0.5s;
}

.hamburger__line--1 {
    top: 13px;
}

.hamburger__line--2 {
    top: 25px;
}

.hamburger__line--3 {
    top: 37px;
}

.sp_inner {
    margin-top: 80px;
    padding: 10px;
    text-align: center;
    position: relative;
}

.sp_reserve.hamburger_reserve {
    position: absolute;
    top: -50px;
    left: 35px;
    background: #795a4f;
}

.sp_reserve.hamburger_reserve a {
    color: #fff !important;
}

.sp_inner img {
    max-width: 400px;
    width: 80%;
}

.sp_inner ul {
    list-style: none;
    padding-left: 20px;
    text-align: left !important;
    margin-top: 50px;
}

.sp_menu_list li {
    font-size: 20px;
    margin: 10px;
}

.sp_inner ul li a {
    text-decoration: none;
    color: #000;
}

.sp_inner ul .header_contact {
    margin-top: 30px;
    padding: 0;
    text-align: center;
}

/*ハンバーガーがクリックされたら*/
.open .hamburger__line--1 {
    transform: rotate(-45deg);
    top: 25px;
    background: #795a4f;
}

.open .hamburger__line--2 {
    opacity: 0;
}

.open .hamburger__line--3 {
    transform: rotate(45deg);
    top: 25px;
    background: #795a4f;
}

/* 
sp-nav(ナビ)
=================================== */
.sp-nav {
    position: fixed;
    right: -100%;
    /*ハンバーガーがクリックされる前はWindow右側に隠す*/
    top: 0;
    width: 70%;
    /* 出てくるスライドメニューの幅 */
    height: 100vh;
    background-color: #fff;
    transition: all 0.5s;
    z-index: 999;
    overflow-y: auto;
    /* メニューが多くなったらスクロールできるように */
}

/*ハンバーガーがクリックされたら右からスライド*/
.open .sp-nav {
    right: 0;
}


/* black-bg(ハンバーガーメニュー解除用bg)
=================================== */
.black-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 5;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 100;
}

/*ハンバーガーメニューが開いたら表示*/
.open .black-bg {
    opacity: 0.3;
    visibility: visible;
}

/*-----------------------------header-----------------------------------*/
.sp_menu {
    display: none;
}

.sub_sp_menu {
    padding-left: 30px !important;
    line-height: 2.2;
    margin-top: 30px !important;
}

.sub_sp_menu li {
    font-size: 15px !important;
}

.sp_inner .sns_link {
    justify-content: left !important;
}

.header-container {
    position: fixed;
    top: 0;
    z-index: 9;
    width: 100%;
}

.main_title {
    display: none;
}

.header_inner {
    display: flex;
	justify-content: start;
    align-items: center;
    padding: 5px;
}

.header-in p {
margin: 0;
    background: #000;
    color: #fff;
    padding: 5px 50px;
}

.header_logo {
    width: 300px;
}

.header_contact a {
    padding: 10px 20px;
    color: #fff !important;
    background: #000;
    text-decoration: none;
}

.header_menu {
width: auto;
    list-style: none;
    display: flex;
    justify-content: start;
    gap: 20px;
    font-size: 16px;
}

.header_menu li {
    margin: 0 0 0 10px;
    padding: 0 0 0 10px;
}

.header_menu li a {
    text-decoration: none;
    color: #000;
}

.top_text_area {
    position: absolute;
    bottom: 0;
    right: 0;
    text-align: center;
}

.top_link {
    position: absolute;
    top: 15%;
    left: 2%;
    font-size: clamp(20px, 4vw, 40px);
    font-weight: bold;
    line-height: 1.3;
    text-shadow: 5px 7px 9px rgba(255, 255, 255, 0.2);
	color: #f2f0f0;
}

.gglobe {
	height: 40px !important;
    width: 40px !important;
}

.lang_text {
	position: absolute;
    top: 41px;
    right: 4px;
    background: transparent !important;
    color: #000 !important;
    font-size: 10px;
    font-weight: bold;
}
/*-----------------------------VEGAS-----------------------------------*/
#test_slider {
    width: 100%;
    height: 100vh;
    /*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    position: relative;
    margin: 0;
}

#slider {
    width: 100%;
    height: 100vh;
    /*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    position: relative;
    margin: 0;
}

.wrapper {
    position: relative;
    margin-bottom: 0 !important;
}

.vegas-timer {
    display: none;
}

.top_text_area_sp {
    display: none;
}

/*-----------------------------main-----------------------------------*/
.main_inner {
    margin: 50px auto;
    max-width: 1000px;
    position: relative;
    z-index: 1;
    padding: 15px;
}

.main_inner h2 {
	margin-bottom: 0 !important;
}
.main_tit {
    font-family: Impact, sans-serif;
    font-size: 60px;
	margin: 80px auto 0 !important;
}

.link_banner_area {
	display: flex;
    justify-content: center;
	align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.link_content {
	width: 32.333333%;
}
.main_tit_under {
    margin: 0 0 100px !important;
}

.sub_tit {
    font-family: Impact, sans-serif;
    color: #666;
    font-size: 90px !important;
    position: absolute;
    top: 400px;
    left: 0;
    opacity: 0.2;
    z-index: -1;
    padding: 0 !important;
    margin: 0 !important;
}

._01 {
    background: #000;
    padding: 50px 10px;
    color: #fff;
    margin: 0;
}

._01 .sub_tit {
    top: 80px;
    opacity: 0.4;
}

._01 h2 {
    margin: 0 0 50px !important;
}

._01 h4 {
    margin: 0 !important;
    font-size: 26px;
}

._02 {
    background: url(/wp-content/uploads/2021/05/bg2.png) center/cover no-repeat;
    margin: 0;
    padding: 50px 0;
    color: #fff;
	position: relative;
}

._02:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4);
	z-index: 2;
}

._02_inner {
	position: relative;
	z-index: 2;
}

._02 p {
    font-weight: bold;
    text-shadow: 5px 7px 9px rgba(0, 0, 0, 0.7);
	margin-bottom: 10px;
}

.footer,
.footer-bottom {
    margin: 0;
}

@media screen and (max-width: 600px) {
    .nav-wrapper {
        display: block;
        position: absolute;
        right: 10px;
    }

    .pc_off {
        display: none;
    }
	
	.main_tit {
    margin: 35px auto 0 !important;
	}

    ._01 {
        padding: 5px 10px;
    }

    #test_slider {
        height: 30vh;
		margin-top: 80px;
    }

    .top_text_area {
        display: none;
    }

    .top_link {
        top: 4%;
    }

    .top_text_area_sp {
        display: block;
    }
	
	.gt_switcher_wrapper {
		top: auto !important;
		right: 10px !important;
		bottom: 10px !important;
	}
	
	.go-to-top {
		right: auto !important;
		left: 10px !important;
	}
	
	.link_content {
		width: 47.333333%;
	}
	.main_inner {
		margin: 0px auto;
	}
	
	.sub_tit {
		font-size: 80px !important;
	}
	.lang_text {
		top: auto;
		right: 4px;
		bottom: 0px;
		position: fixed;
		color: #666 !important;
	}
}

@media screen and (max-width: 380px) {
    .main_tit {
        font-size: 46px;
    }

    .sub_tit {
        top: 156px;
    }

    ._01 h4 {
        font-size: 20px;
    }
	
	.link_content {
		width: 100%;
	}
}