﻿@charset "utf-8";
/* CSS Document */

/*----------------------------
★スクリーンショット時
①「Dup > img」フォルダに「main_img.jpg」を登録。
②下記CSSのコメントアウトを解除。
③各ページ一番下までスクロールをして、画像やテキストが全て表示された状態にしてから
　スクリーンショットを実行してください。
----------------------------*/
/*
body:before{
	content: "";
	display: block;
	background-image: url("../Dup/img/main_img.jpg");
	background-size: 100%;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
}
*/

/*----------------------------
フォント
----------------------------*/
/*
@import url("https://use.typekit.net/urt0hhi.css");
@font-face {
font-family: "patrima_outline";
  src: url("../Dup/img/patrima_outline.otf") format("otf"),url("../Dup/img/patrima_outline.woff") format("woff"),url("../Dup/img/patrima_outline.woff2") format("woff2");
}
@font-face {
font-family: "hgs";
  src: url("../Dup/img/hgs.ttf") format("ttf"),url("../Dup/img/hgs.eot") format("eot"),url("../Dup/img/hgs.woff") format("woff"),url("../Dup/img/hgs.woff2") format("woff2");
}
.liana{
font-family: liana,script;
font-weight: 400;
font-style: normal;
letter-spacing: 0;
}
.patrima{
font-family: "patrima_outline","serif";
line-height: 1;
}
.hgs{
font-family: "hgs","sans-serif";
}
*/

.sm-slider{min-height: 800px!important;}

/*----------------------------
全体
----------------------------*/
html{font-size: 100%;}
body{overflow: hidden;word-wrap: break-word;}
.z-1{z-index: -1;}
.z0{z-index: 0;}
.z1{z-index: 1;}
.z2{z-index: 2;}
.br:before{
	content: "\A";
	white-space: pre;
}
/* ローディング */
#wrap{
    opacity: 0;
}

#loading {
position: fixed;
top: 0;
left: 0;
bottom: 0;
width: 100%;
height: 100%;
z-index: 99999;
text-align: center;
}
#loading_logo {
max-width: 300px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
#loading .kvArea {
width: 100%;
}
#loading .kvArea .img_box {
text-align: center;
}
#loading .kvArea .img_box img {
max-width: 100%;
height: auto;
}
#loading #loading_text .progressbar-text{top: 70%;}
.fadeUp {
animation-name: fadeUpAnime;
animation-duration: 1.5s;
animation-delay: 1.8s;
animation-fill-mode: forwards;
opacity: 1;
}
/*
@keyframes fadeUpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}
*/
@keyframes fadeUpAnime {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.5);
  }
}
@media (max-width: 1023px) {
  #loading_text .progressbar-text {
    font-size: 0.8rem !important;
  }
}

/* SNS LINKS */
.sns_links{
	max-width: 250px;
	width: 100%;
	box-sizing: border-box;
	bottom: 50px;
	left: 50px;
}
.sns_links li{
	width: 16%;
	margin-right: 5%;
	box-sizing: border-box;
}
.sns_links li:last-of-type{
	margin-right: 0;
}
/* 画像トリミング */
.portrait_img{
	display: block;
	overflow: hidden;
	position: relative;
	width: 100%;
}
.portrait_img img{
	width: 100%;
    height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
/* more */
.more{z-index: 2;}
.more .more_item{
	background: none;
	position: relative;
	cursor: pointer;
	outline: none;
	z-index: 2;
	transition: 0.01s 0.23s ease-out all;
	overflow: hidden;
}
.more .more_item:before{
	content: "";
	position: absolute;
	display: block;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	z-index: -1;
	transition: 0.3s ease-in all;
}
.more .more_item:after{
	content: "";
	position: absolute;
	left: -5%;
	top: 5%;
	height: 90%;
	width: 5%;
	background: white;
	z-index: -1;
	transition: 0.4s 0.02s ease-in all;
}
.more .more_item:hover{
	color: transparent;
}
.more .more_item:hover:before{
	left: 100%;
	width: 25%;
}
.more .more_item:hover:after {
  left: 100%;
  width: 70%;
}
.more .more_item:hover .icon-right.after:after {
  left: -135px;
  color: white;
  transition: 0.2s 0.2s ease all;
}
.more .more_item:hover .icon-right.after:before {
  left: -145px;
  top: 10px;
  opacity: 0.2;
  color: white;
}

.icon-right{
	position: absolute;
	top: 0;
	right: 0;
}
.icon-right:after{
	font-family: "FontAwesome";
	content: "→";
	font-size: 24px;
	display: inline-block;
	position: relative;
	top: 26px;
	right: 30px;
	transform: translate3D(0, -50%, 0);
}
.icon-right.after:after{
  left: -300px;
  transition: 0.15s 0.25s ease left, 0.5s 0.05s ease color;
}
.icon-right.after:before{
  content: "more";
  position: absolute;
  left: -230px;
  top: 14px;
  opacity: 0;
  transition: 0.2s ease-in all;
}
.cate_list .icon-right.after:before{content: "";}

/* ぼかし */
.blur{
background: rgba(0,0,0,0.7);
backdrop-filter: blur( 10px );
-webkit-backdrop-filter: blur( 10px );
}

/*map*/
.map{height: 400px;}
.map iframe{
	width: 100%;
	height: 100%;
}
/*header*/
header{z-index: 10;}
/* nav */
#pc_nav li a,#footer_nav li a{
	position: relative;
	display: inline-block;
	text-decoration: none;
}
#pc_nav li a::after,#footer_nav li a::after{
	position: absolute;
	left: 0;
	content: "";
	width: 100%;
	height: 1px;
	background: #fff;
	bottom: -4px;
	transform: scale(0, 1);
	transition: transform 0.3s;
	transform-origin: center top;
}
#pc_nav li a:hover::after,#footer_nav li a:hover::after{
	transform: scale(1, 1);
}

/*footer*/
footer{position: relative;margin-top: -5px;}
footer .info_btn_wrap p{width: calc(50% - 20px);}
/* footer nav */
#footer_nav li{padding: 0 20px;}


/* スクロール */
.scroll_d{
	width: 1px;
	height: 150px;
	margin: auto;
}
.scroll_d > span{
	width: 1px;
	height: 100%;
	background-color: rgba(255,255,255,0.5);
}

/* メイン画像・ページタイトル　スクロール */
#main_img .scroll,#page_title_img .scroll{
	z-index: 1;
	bottom: -50px;
	right: 5px;
}
#main_img .scr,#page_title_img .scr{
	display: inline-block;
	line-height: 0.8;
	margin-bottom: 50px;
    margin-left: 5px;
	-ms-transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}
#main_img .scroll_d > span::before,#page_title_img .scroll_d > span::before{
	position:absolute;
	content: "";
	display: block;
	width: 100%;
	background-color: rgba(255,255,255,0.7);
	animation: line1 4s ease 0s infinite;
}
@keyframes line1{
	0% {
		bottom: 150px;
		height: 0;
	}
	20% {
		bottom: 0;
		height: 150px;
	}
	40% {
		bottom: 0;
		height: 0;
	}
	100% {
		bottom: 0;
		height: 0;
	}
}
/* TOPへ戻る */
footer .scroll{
	top: -80px;
	right: 0;
}
footer .scr{
	display: inline-block;
	margin-top: 50px;
	-ms-transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}
footer .scroll_d > span::before{
	position:absolute;
	content: "";
	display: block;
	width: 100%;
	background-color: rgba(255,255,255,0.7);
	animation: line2 4s ease 0s infinite;
}
@keyframes line2{
	0% {
		top: 150px;
		height: 0;
	}
	20% {
		top: 0;
		height: 150px;
	}
	40% {
		top: 0;
		height: 0;
	}
	100% {
		top: 0;
		height: 0;
	}
}
/*----------------------------
TOP
----------------------------*/
.top header{top: 0;left: 0;z-index: 1;}

/* モーダル */
html.modalset{
	overflow: hidden;
}
.modal{
	display: none;
	width: 100%;
	height: 100vh;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 9999;
}
.modal-wrap {
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	text-align: center;
	padding: 20px;
	overflow: hidden;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: none;
	overflow: -moz-scrollbars-none;
}
.modal-wrap::-webkit-scrollbar {
	display: none;
}
.modal-wrap:after {
	content: '';
	display: inline-block;
	vertical-align: middle;
	width: 1px;
	height: 100%;
}
.modal-bg{
	position: absolute;
	left: 0;
	top: 0;
	background: rgba(0,0,0,0.3);
	width: 100%;
	height: 100%;
}
.modal-box{
	width: 90%;
	box-sizing: border-box;
	display: inline-block;
	vertical-align: middle;
	position: relative;
}
.modal-box:before{
	content: "";
	display: block;
	background-color: #fff;
	box-sizing: border-box;
	width: 100%;
	height: 10%;
	position: absolute;
	bottom: 0;
	left: 50%;
	-ms-transform: translate(-50%,0);
	-webkit-transform: translate(-50%,0);
	transform: translate(-50%,0);
	z-index: 1;
}
.modal-box .inner{
	background: #fff;
	max-height: 500px;
	overflow: auto;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.modal-box .inner::-webkit-scrollbar {
	display:none;
}
.modal-box .inner > :first-child {
	margin-top: 0;
}

.modal-box .modal-close{
	cursor: pointer;
	position: absolute;
    top: 0;
    right: 0;
}
.modal-box .modal-close span{
	display: block;
	width: 50px;/*枠の大きさ*/
	height: 50px;/*枠の大きさ*/
	position: relative;
}

.modal-box .modal-close span::before, .modal-box .modal-close span::after{
	content: "";
	display: block;
	width: 100%;/*バツ線の長さ*/
	height: 2px;/*バツ線の太さ*/
	background: #000;
	transform: rotate(45deg);
	transform-origin:0% 50%;
	position: absolute;
	top: calc(14% - 1px);
	left: 14%;
}

.modal-box .modal-close span::after{
	transform: rotate(-45deg);
	transform-origin:100% 50%;
	left: auto;
	right: 14%;
}
.modal-open span{cursor: pointer;}

.modal_title_wrap{
	top: 0;
	left: 0;
}
.modal_title1{padding-top: 60px;}
.modal_title1:before{
	content: "";
	display: block;
	background-color: #666; 
	width: 1px;
	height: 50px;
	position: absolute;
	top: 0;
	left: 2px;
}
.modal_title1 span{
	transform: rotate(90deg);
	display: block;
	line-height: 1;
}

/* スクロールアニメーション */
.filter{
top: 0;
right: 0;
width: 100%;
}
.filter1{z-index: 2;}
.filter2{z-index: 1;}

/* main_img */
#main_img:before{
	content: "";
	display: block;
	background-color: rgba(0,0,0,0.15);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/* intro */
#intro .intro_photo{width: calc(50% - 50px);}
#intro .intro_right{width: calc(50% - 50px);}
#intro .intro_photo h2{
	font-size: 90px;
	z-index: 3;
	top: -85px;
	left: -30px;
}
#intro .rotate_txt span{
	transform: rotate(90deg);
	display: block;
	line-height: 0.8;
}


/* top_title */
.top_title{
	height: 500px;
}
.top_title h2{
	font-size: 100px;
	top: 100px;
}
.top_title h2 > span{
	padding-top: 100px;
    display: block;
}
.top_title h2 > span:before{
	content: "";
	display: block;
	background-color: #fff; 
	width: 5px;
	height: 100px;
	position: absolute;
	top: 0;
}

/* top_title left */
.top_title h2.left{left: 60px;}
.top_title .left > span:before{left: 40px;}
/* top_title right */
.top_title h2.right{right: 60px;}
.top_title .right > span:before{right: 40px;}

.top_title .rotate_txt span{
	transform: rotate(90deg);
	display: block;
	line-height: 0.8;
}

/* contents */
#contents .con_title{font-size: 70px;}
#contents .con_box:last-of-type{margin-bottom: 0;}

/* TOP CMS */
.top_cms_box:last-of-type{margin-bottom: 0;}
/*----------------------------
下層
----------------------------*/
#page_title_img{height: 500px;}
#page_title_img:before{
	content: "";
	display: block;
	background-color: rgba(0,0,0,0.15);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
#page_title .en{
	font-size: 100px;
	top: -50px;
    left: 5%;
	padding-left: 50px;
}
#page_title .en:before{
	content: "";
	display: block;
	background-color: #fff; 
	width: 5px;
	height: 100%;
	position: absolute;
	top: 0;
}
#page_title .jp{
	display: inline-block;
	font-size: 12px;
	top: 150px;
	left: -3px;
}
#page_title .jp span{
	transform: rotate(90deg);
	display: block;
	line-height: 3;
}

/*cate_list*/
.cate_list li{
	width: 21.25%;
	margin-right: 5%;
	margin-bottom: 20px;
	box-sizing: border-box;
}
.cate_list li:nth-of-type(4n){margin-right: 0;}
.cate_list li a:before{
	font-family: "Font Awesome 5 Free";
	content: "\f061";
	font-weight: 900;
	display: block;
	position: absolute;
	top:50%;
	right: 15px;
	-ms-transform: translate(0,-50%);
	-webkit-transform: translate(0,-50%);
	transform: translate(0,-50%);
}


/* page8 */
#page8 #mail_contact li:before{
	content: "■";
	font-weight: 900;
	position: absolute;
	top: 0;
	left: 5px;
}
#page8 #form_box .box input::-webkit-input-placeholder,#page8 #form_box .box textarea::-webkit-input-placeholder{
	font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic",  sans-serif;
	opacity: 0.8;
	color: #000;
}
#page8 #form_box .box input:-moz-placeholder,#page8 #form_box .box textarea:-moz-placeholder{
	font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic",  sans-serif;
	opacity: 0.8;
	color: #000;
}
#page8 #form_box .box input:-ms-input-placeholder,#page8 #form_box .box textarea:-ms-input-placeholder{
	font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic",  sans-serif;
	opacity: 0.8;
	color: #000;
}
#page8 #form_box .box input,#page8 #form_box .box textarea{
	outline: none;
	border-style: none;
	border-radius: 0;
	-webkit-appearance: none;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	color: #000;
}
#page8 #form_box .box:last-of-type{
	border-bottom: none;
}
#page8 #form_box .box input{height: 35px;}
#page8 #form_box .box textarea{height: 150px;}
#page8 #form_box input,#page8 #form_box textarea{background-color: rgba(255,255,255,0.7);}
#page8 input[type="submit"].btn,
#page8 input[type="reset"].btn{
	-webkit-appearance: none;
	border-radius: 0;
	outline: none;
	cursor: pointer;
}
#page8 input[type="reset"].btn{background-color: transparent;}
#page8 input[type="submit"].btn:disabled{
    cursor: default;
}
.g-recaptcha > div{
	margin: 0 auto;
}





/* 1280px以下 */
@media screen and (max-width: 1280px){
	/*----------------------------
	全体
	----------------------------*/
	#pc_nav{display: none;}
	#nav_menu{display: block;}
}
/* 1100px以下 */
@media screen and (max-width: 1100px){
	/*----------------------------
	全体
	----------------------------*/
	/*footer*/
	footer .info_btn_wrap p{width: 100%;margin-bottom: 10px;}
}
/*ここからタブレット用（768px以下）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media screen and (max-width: 768px){
	/*----------------------------
	全体
	----------------------------*/
	/* ローディング */
	#loading #loading_text .progressbar-text{top: 60%;}
	
	/*----------------------------
	TOP
	----------------------------*/
	/* モーダル */
	.modal_title_wrap{left: -35px;}
	
	/* intro */
	#intro .intro_photo{width: calc(40% - 20px);}
	#intro .intro_right{width: calc(60% - 20px);}
	#intro .intro_photo h2{
		top: -50px;
    	left: -50px;
	}
	/* top_title */
	.top_title{height: 300px;}
	.top_title h2{
		font-size: 70px;
	}
	/* top_title left */
	.top_title h2.left{left: 0;}
	.top_title .left > span:before{left: 20px;}
	/* top_title right */
	.top_title h2.right{right: 0;}
	.top_title .right > span:before{right: 25px;}
	
	/* contents */
	#contents .con_title{font-size: 50px;}
	
	/*----------------------------
	下層
	----------------------------*/
	/*ページタイトル*/
	#page_title .en{
		font-size: 70px;
		top: -40px;
	}
	#page_title .jp{
		top: 110px;
	}
	/*カテゴリーリスト*/
	.cate_list li{width: 30%;}
	.cate_list li:nth-of-type(4n){margin-right: 5%;}
	.cate_list li:nth-of-type(3n){margin-right: 0;}
	.cate_list .icon-right:after{
		top: 24px;
    	right: 10px;
	}
}
/*ここからスマホ用（667px以下）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media screen and (max-width: 667px){
	/*----------------------------
	全体
	----------------------------*/
	/* ローディング */
	#loading #loading_text .progressbar-text{top: 63%;}
	/* メイン画像・ページタイトル　スクロール */
	#main_img .scroll,#page_title_img .scroll{right: -15px;}
	#main_img .scr, #page_title_img .scr{margin-bottom: 30px;}
	#main_img .scroll_d,#page_title_img .scroll_d{height: 100px;}
	/*map*/
	.map{height: 300px;}
	/* TOPへ戻る */
	footer .scroll{
		top: 320px;
		right: -10px;
	}
	footer .scr{margin-top: 40px;margin-left: 5px;}
	footer .scroll_d{height: 100px;}
	/*----------------------------
	TOP
	----------------------------*/
	/* SNS */
	.sns_links{
		bottom: 20px;
	    left: 20px;
	}
	/* モーダル */
	.modal-box .inner{
		max-height:450px;
	}
	.modal-box{width: 100%;top: 5%;}
	.modal-box:before{
		height: 5%;
	}
	.modal_title_wrap{left: -20px;}
	/* intro */
	#intro .intro_right{width: 100%;}

	/* top_title */
	.top_title{height: 300px;}
	.top_title h2{font-size: 50px;}
	.top_title h2 > span{padding-top: 80px;}
	.top_title h2 > span:before{
		width: 3px;
		height: 70px;
	}
	/* top_title left */
	.top_title h2.left{left: 0;}
	.top_title .left > span:before{left: 15px;}
	/* top_title right */
	.top_title h2.right{right: 0;}
	.top_title .right > span:before{right: 20px;}
	
	/*----------------------------
	下層
	----------------------------*/
	/*ページタイトル*/
	#page_title_img{height: 300px;}
	#page_title .en{
		font-size: 40px;
		letter-spacing: -2px;
		top: -25px;
		padding-left: 25px;
	}
	#page_title .jp{
		left: -13px;
		top: 70px;
		letter-spacing: 20px;
	}
	/*カテゴリーリスト*/
	.cate_list li{width: 100%;margin-right: 0;}
	.cate_list li:nth-of-type(3n){margin-right: 0;}
	.cate_list li:nth-of-type(4n){margin-right: 0;}
}

@keyframes line1{
	0% {
		bottom: 100px;
		height: 0;
	}
	20% {
		bottom: 0;
		height: 100px;
	}
	40% {
		bottom: 0;
		height: 0;
	}
	100% {
		bottom: 0;
		height: 0;
	}
}
@keyframes line2{
	0% {
		top: 100px;
		height: 0;
	}
	20% {
		top: 0;
		height: 100px;
	}
	40% {
		top: 0;
		height: 0;
	}
	100% {
		top: 0;
		height: 0;
	}
}

/*IEのみ
---------------------------------------------------------------------------*/
@media all and (-ms-high-contrast: none) {
    .more .more_item{
        padding-top: 13px;
        padding-bottom: 7px;
    }
    .icon-right:after {
        top: 22px;
    }
    .cate_list li a{
        padding-top: 13px;
        padding-bottom: 7px;
    }
	/* page8 */
	.contact_tel a{padding-bottom: 24px;}
	#tel_txt h3{padding-bottom: 0;}
	#tel_txt p{padding-bottom: 15px;}
	/* page9 */
	#page9 .box a{padding-bottom: 0;}
}