﻿/* ------------- my css ------------- */

@import url('https://fonts.googleapis.com/css2?family=Mrs+Saint+Delafield&family=Shippori+Mincho&display=swap');

/* color */
.txt_color_nomal, .hvr_txt_color_nomal:hover{color: var(--black);}
:root{
    --color1: #bfa660; 
    --color2: #e2d9c0; 
    --color3: #1c1c1c; 
    --color4: #efefef; 
    --black: #151a1e; 
    --en: "Mrs Saint Delafield", "游ゴシック体",cursive;
    --jp:"Shippori Mincho", "游明朝","Yu Mincho",serif;
}

.txt_red, .hvr_txt_red:hover{color: #C12326;}
.txt_gray, .hvr_txt_gray:hover{color: #ccc}
.txt_color1, .hvr_txt_color1:hover{color: var(--color1)} /* メインカラー */
.txt_color2, .hvr_txt_color2:hover{color: var(--color2)} /* サブカラー */
.txt_color3, .hvr_txt_color3:hover{color: var(--color3)} /* アクセントカラー1 */
.txt_color4, .hvr_txt_color4:hover{color: var(--color4)} /* アクセントカラー2 */

/* background-color */
.bg_black, .hvr_bg_black:hover{background-color: var(--black)} /* 黒背景 */
.bg_gray, .hvr_bg_gray:hover{background-color: #ccc}
.bg_color1, .hvr_bg_color1:hover{background-color: var(--color1)} /* メインカラー */
.bg_color2, .hvr_bg_color2:hover{background-color: var(--color2)} /* サブカラー */
.bg_color3, .hvr_bg_color3:hover{background-color: var(--color3)} /* アクセントカラー1 */
.bg_color4, .hvr_bg_color4:hover{background-color: var(--color4)} /* アクセントカラー2 */
.bg_color_clear, .hvr_bg_color_clear:hover{background-color: transparent!important}

/* border-color ※!important */
.border_black, .hvr_border_black:hover{border-color: var(--black)}
.border_gray, .hvr_border_gray:hover{border-color: #ccc}
.border_color1, .hvr_border_color1:hover{border-color: var(--color1)}
.border_color2, .hvr_border_color2:hover{border-color: var(--color2)}
.border_color3, .hvr_border_color3:hover{border-color: var(--color3)}
.border_color4, .hvr_border_color4:hover{border-color: var(--color4)}


/*自動リンク設定*/
.linkStyle{
    color:var(--color1);
}
.linkStyle:hover{
	opacity:0.7
}


.bg_img {
  background: url('/Files/img/bg.jpg') center center / cover no-repeat;
  background-attachment: fixed;
}


@media screen and (max-width: 768px) {
    .pd_l-r5per_tb {
        padding-left: 8%;
         padding-right: 8%;
    }
}


/*------------- 全体 -------------*/
#wrap{
    min-width: 1200px;
}

@media screen and (max-width: 768px) {
    #wrap{
    min-width: auto;
}
}
/*------------- loader -------------*/
@media screen and (max-width: 667px) {
#loader .logo {
    max-width: 150px;
    
}
}

/*------------- header -------------*/
.sc_nav .logo .width_300-max{
    max-width: 140px;
}
@media screen and (max-width: 667px) {
#menu_wrap ul li {
    text-align: center;
}
}

#main_nav li a:hover,.sc_nav li a:hover{text-shadow: none;}


.index #menu_bt > div span, #menu_bt.scroll > div span {
    background-color: #000;
}


/*------------- FV -------------*/
#bg_video{
    position: relative;
    z-index: 2;
}



.fv_img img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

/*#main_img {
    margin-right: 14%;
}*/

#main_img .logo{
    z-index: 2;
    max-width: 500px;
    margin-left: 20px;
}


.main_txt {
  width: 60%;
  max-width: 600px;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.main_txt img{
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.5));
}

@media screen and (max-width: 768px) {
     .top_header #main_img {
        height: 88vw;
    }
    .main_txt{
    }
}

@media screen and (max-width: 667px) {
     .main_txt {
    width: 80%;
}
.top_header #main_img {
        height: 100vw;
    }
}


/*------------- video -------------*/


.video_wrap {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 70vh;
}
video {
	max-width: 1000px;
    min-width: auto;
    min-height: auto;
	z-index: 1;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	vertical-align: bottom;
}

@media screen and (max-width: 768px){
.video_wrap {
	position: static;
	overflow: hidden;
	width: 100%;
	height: auto;
	min-width: 100%;
}
video {   
	min-width: auto;
	min-height: auto;
	width: 100%;
	z-index: 1;
	position: static;
	top: 0%;
	left: 0%;
	-webkit-transform: translate(0%, 0%); 
	-ms-transform: translate(0%, 0%);
	transform: translate(0%, 0%); 
}
}

/*------------- TOP -------------*/



.intro_no{
    font-size: 120px;
}

.con_no{
    font-size: 80px;
}

.con_no,.en{
    font-family: var(--en);
}

.con3 .more.width_200-max{
    max-width: 350px;
}

.con3 .more_h {
    position: relative;
    overflow: hidden;
    transition: ease 0.3s;
}


.con3 .more_h::before {
    background-color: white;
    width: 30px;
    transition: width 0.5s;
    mix-blend-mode: exclusion;
}

.con3 .more_h::after{display: none;}

.con3 .more_h:hover::before{width: 40px;}

.con3 .more_h span{position: relative;z-index: 2;}
.con3 .more_h:hover span{opacity: 1;}
.con3 .more_h span.on{
	position: absolute;
	top: 0;
	left: 2px;
	width: 100%;
	height: 100%;
	z-index: 1;
	transform: translateX(100%);
	animation-name: more;
	animation-duration: 0.3s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
}
.con3 .more_h:hover span.on{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	animation-name: more_hover;
	animation-duration: 0.3s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
}


    .con3 .more{
        margin-left:0;
    }
#top_gallery .cate_box .en{
    font-size: 75px;
}



@media screen and (max-width: 768px) {
    #top_contents .con_img {
        height: 60vw;
    }
}
@media screen and (max-width: 667px) {
.intro_no {
    font-size: 60px;
}
.con_no {
    font-size: 50px;
}
#top_gallery .cate_box .en {
    font-size: 55px;
}
.top_cms_box .cms_5-f .mg_t-30px{
    margin: 0;
}
    #cms_5-f .cate_box .box_item, .cms_5-f .cate_box .box_item {
        padding-right: 0;
    }
}

/*------------- footer -------------*/

.bg_img h2.pd_20px.txt_center{
    width: 80%;
}



#footer_txt .linehight_2-h{
    line-height: 2;
}

@media screen and (max-width: 768px) {
    #footer_txt{
          padding-left: 50px;
          padding-right: 50px;
    }

}

@media screen and (max-width: 667px) {
#footer_txt{
    padding: 20px 60px;
    }
}

/*-------------下層---------------*/
@media screen and (max-width: 667px) {
#page_title .font_28_sp{
    font-size: 20px;
}

.pan:not(.sp_hide) > div:before {
    display: none;
}

.pan.pc_hide .pd_l-50px{
    padding-left: 10px;
}

}


/*-------------撮影風景---------------*/

#cms_2-c .grid_5{
    width: 48.5% !important;
}

@media screen and (max-width: 667px) {
    #cms_2-c .grid_5{
    width: 100% !important;
}
}
/*-------------サイトマップ---------------*/

#page10 ul li a {
    transition: ease 0.7s;
}

/*------------- cursor -------------*/

.cursor, .follower{
	border-radius: 50%;
	position: fixed;
	top: 0;
	left: 0;
	pointer-events: none;
	z-index: 100;
	transition: 0.3s;
	transition-property: opacity,background,width,height,transform
}
.cursor {
	width: 8px;
	height: 8px;
	z-index: 101;
	background-color: #333;
}
.cursor.is-active{
	background-color: #9b744d;
}
.follower {
	width: 40px;
	height: 40px;
	border: solid 1px #333;
}
.follower.is-active{
	transform: scale(1.8,1.8);
	border: solid 1px #9b744d;
}



