﻿@charset "utf-8";
/* CSS Document */

/***　font　***/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Infant:wght@500&family=Shippori+Mincho+B1:wght@500&display=swap');

body, .font_sans-seri{
	font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic",  sans-serif;
}
.font_jp{
	font-family: 'Shippori Mincho B1', "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho","ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", "serif";
}
.font_en{
	font-family: 'Cormorant Infant', 'Shippori Mincho B1', "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho","ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", "serif";
}
body{
	line-height: 2
}
h2, h3, h4, h5, h6{
	line-height: 1.5
}

/***　全ページ　***/

*:focus {
	outline:none;
}
html, body{
	font-size: 16px;
}
body{
	-webkit-text-size-adjust: 100%;
}

input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

textarea{overflow: auto}

.shadow-h{
	box-shadow: 10px 40px 30px rgba(0,0,0,0.1);
}


/**** cursor ****/

.cursor{
    position: fixed;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    z-index: 10001;
    transition: 0.3s;
    transition-property: opacity, transform;
    pointer-events: none;
}
.cursor.active{
    transform: scale(6);
    opacity: 0.2!important;
}

/**** fade ****/

.fadein .fade_box{
	opacity: 0;
	filter: blur(5px);
	transition-property: opacity, filter, transform;
	transition-timing-function: linear, cubic-bezier(0,.7,.4,1), cubic-bezier(0,.7,.4,1);
	transition-duration: 0.5s, 1s, 1s;
}
.fadein .fade_box.fade-left{
	transform: translateX(-20px)
}
.fadein .fade_box.fade-right{
	transform: translateX(20px)
}
.fadein .fade_box.fade-bottom{
	transform: translateY(20px)
}
.fadein .fade_box.active{
	opacity: 1;
	filter: blur(0px);
	transform: none
}

/***　ヘッダー　***/

#header{
	top: 0;
	left: 0;
	z-index: 2;
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
}

#menu_bt{
	width: 50px;
	height: 50px;
	cursor: pointer;
	z-index: 3
}
#menu_bt .close_txt{
	pointer-events: none;
	transform: rotate(90deg);
	transform-origin: left;
	top: 40px;
	left: 50%;
}
#menu_bt.active .close_txt{
	top: 50px;
	opacity: 1
}
#menu_bt span{
	width: 30px;
	height: 1px;
	transition-timing-function: cubic-bezier(0,.43,.1,1);
	transition-property: width, top, transform, background-color;
}
#menu_bt:hover span{
	width: 30px
}
#menu_bt span.top{
	top: 42%
}
#menu_bt span.bottom{
	top: 57%
}
#menu_bt.active span{
	background-color: #fff!important;
	top: 50%
}
#menu_bt.active span.top{
	transform: translate(-50%, -50%) rotate(30deg)
}
#menu_bt.active span.bottom{
	transform: translate(-50%, -50%) rotate(-30deg)
}

#menu_nav{
	top: 0;
	left: 0;
	pointer-events: none;
	transform: scale(0.95);
	transition-property: opacity, transform;
	z-index: 2;
	-webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}
#menu_nav > div{
	overflow-y: auto
}
#menu_nav.active{
	pointer-events: auto;
	opacity: 1;
	transform: scale(1);
}
#menu_nav #nav_logo{
	top: 50px;
	left: 50px
}
#menu_nav .main_page_link li{
	transform: translateX(-20px);
	opacity: 0;
	filter: blur(5px);
	transition: 0.5s;
	transition-property: transform, opacity, filter
}
#menu_nav .main_page_link li.active{
	transform: none;
	opacity: 1;
	filter: none
}
#menu_nav .sns_links li a{
	padding-left: 10px;
	padding-right: 10px;
}

/***　フッター　***/

footer{
	border-radius: 100px 100px 0 0;
}
footer li:last-of-type{
	margin-right: 0;
}

#page_top{
	bottom: 30px;
	right: 30px;
	z-index: 1;
	background-color: rgba(255,255,255,0.8);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	transition: transform 0.3s;
}
#page_top:hover{
	transform: scale(1.1);
}
#page_top a{
	width: 50px;
	height: 50px;
}
#page_top a::before{
	position: absolute;
	content: "";
	width: 8px;
	height: 8px;
	top: 5px;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	border-left: solid 2px currentColor;
	border-top: solid 2px currentColor;
	transform: rotate(45deg);
}

.bottom_contact{
	right: 20px;
	bottom: 20px;
	box-shadow: 0 0 10px rgba(255,255,255,0.4);
	z-index: 1;
}

/***　index　***/

#loading{
	top: 0;
	left: 0;
	z-index: 4;
}
#loading .load_logo img{
	transition: 1s;
	transition-property: opacity, transform, filter;
}
#loading .load_logo.active img{
	opacity: 0;
	transform: scale(1.1);
	filter: blur(5px);
}
#loading .load_bg_wrap span{
	transition: height 1s cubic-bezier(.6,0,0,1);
}
#loading .load_bg_wrap span.active{
	height: 0;
}

.modal_bt{
	cursor: pointer;
}
.modal_box{
	top: 0;
	left: 0;
	pointer-events: none;
	transform: scale(0.95);
	transition-property: opacity, transform;
	z-index: 3;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}
.modal_box > div{
	overflow-y: auto
}
.modal_box.active{
	pointer-events: auto;
	opacity: 1;
	transform: scale(1);
}
.modal_box .close{
	top: 30px;
	right: 30px;
	cursor: pointer
}

#main_img{
	box-sizing: border-box;
	min-height: 800px;
	background-image: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
	background-size: 100% 200px;
	background-repeat: no-repeat;
	background-position: left bottom;
}
#main_img .slider{
	border-radius: 1000px 1000px 0 0;
}
#main_img .catch{
    bottom: calc(100px + 3vw);
    z-index: 1;
    opacity: 0;
    transform: scale(1.05);
    filter: blur(10px);
    transition: 2s;
    transition-property: opacity, transform, filter;
}
#main_img .catch.active{
    opacity: 1;
    transform: scale(1);
    filter: blur(0px);
}

#top_intro .intro_title1{
	background-image: linear-gradient(to bottom, currentColor, currentColor);
	background-position: top left;
	background-repeat: no-repeat;
	background-size: 40px 5px;
}
#top_intro .intro_img2{
	margin-top: -100px;
}

#top_cms1 .top_cms1_title{
	margin-bottom: -0.7em;
	z-index: 1;
}

.more1 a::before, .more1 a::after{
	position: absolute;
	content: "";
	width: 5px;
	height: 100%;
	top: 0;
	border-top: solid 1px currentColor;
	border-bottom: solid 1px currentColor;
}
.more1 a::before{
	border-left: solid 1px currentColor;
	left: 0;
}
.more1 a::after{
	border-right: solid 1px currentColor;
	right: 0;
}

.more2 > div{
	cursor: pointer;
}
.more2 > div::before, .more2 > div::after{
	position: absolute;
	content: "";
	width: 20px;
	height: 1px;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	background-color: currentColor;
}
.more2 > div::after{
	transform: rotate(90deg);
}

#top_con .top_con_wrap{
	margin-top: -50px;
}
#top_con .con_no{
	font-size: 100px;
	z-index: 1;
}
#top_con .con_img{
	height: 600px;
	border-radius: 1000px 1000px 0 0;
}
#top_con .con_img2{
	height: 400px;
}

#top_cms{
	z-index: 0;
}

#footer_info .contact_txt::before, #footer_info .contact_txt::after{
	position: absolute;
	content: "";
	background-color: currentColor;
	height: 1px;
	bottom: 0;
}
#footer_info .contact_txt::before{
	width: 140px;
	left: calc(50% - 70px);
	margin: auto;
	transition: width 0.5s cubic-bezier(0,.7,.4,1);
}
#footer_info .contact_txt::after{
	width: 15px;
	right: calc(50% - 70px);
	transform: rotate(45deg);
	transform-origin: right bottom;
	transition: right 0.5s cubic-bezier(0,.7,.4,1);
}
#footer_info a:hover .contact_txt::before{
	width: 150px;
}
#footer_info a:hover .contact_txt::after{
	right: calc(50% - 80px);
}
#footer_info .contact_bg_img{
	transform: translate(-50%, -50%) scale(1);
	transition: 1s cubic-bezier(0,.7,.4,1);
}
#footer_info a:hover .contact_bg_img{
	transform: translate(-50%, -50%) scale(1.1);
	opacity: 0.2;
}
#footer_info .info_txt .info_title1{
	background-image: linear-gradient(to bottom, currentColor, currentColor);
	background-position: left bottom;
	background-repeat: no-repeat;
	background-size: 40px 3px
}

/***　under_page　***/

#page_title{
	border-radius: 0 0 100px 100px;
}
#page_title h2 span{
	transition: 1s;
	opacity: 0;
	filter: blur(5px);
	transform: translate(-5px, 20px) skewY(10deg);
	transform-origin: top left;
	transition-property: opacity, filter, transform;
}
#page_title h2 span.active{
	opacity: 1;
	filter: blur(0px);
	transform: translate(0, 0) skewY(0deg);
}

#page_list .home_icon .icon_line{
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-miterlimit: 10;
	stroke-width: 5px;
}

#page_list li:not(:last-of-type){
	padding-right: 20px;
}
#page_list li:not(:last-of-type)::before{
	position: absolute;
	content: "";
	width: 5px;
	height: 5px;
	border-top: solid 1px;
	border-right: solid 1px;
	top: 0;
	bottom: 0;
	right: 8px;
	margin: auto;
	transform: rotate(45deg);
	opacity: 0.4;
}
#page_list .home_icon .icon_line{
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-miterlimit: 10;
	stroke-width: 5px;
}

.cate_list li, .cate_list li a{
	max-width: 100%;
	box-sizing: border-box
}
.cate_list li a{
	transition-property: background-color, color;
}

.pager li{
	margin: 0!important
}

/***　page07　***/

#page07 #map iframe{
	display: block;
	width: 100%;
	height: 450px;
}

/***　page08　***/

#page08 input, #page08 textarea{
	transition: border-color 0.3s;
}
#page08 input:focus, #page08 textarea:focus{
	border-color: var(--color1);
}

/***　page10　***/


/*ここからタブレット用（780px以下）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media screen and (max-width: 768px){
	#main_img{
		min-height: inherit;
		height: 750px;
	}
	#top_intro .intro_img2 {
		margin-top: -50px;
	}
	.pager li:not(.prev):not(.next){
		display: none;
	}
	#page_top{
		right: 20px;
		bottom: 90px;
	}
}

/*ここからスマホ用（750px以下）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media screen and (max-width: 667px){
	.shadow-h{
		box-shadow: 10px 20px 20px rgba(0,0,0,0.1);
	}
	footer{
		border-radius: 1000px 1000px 0 0;
	}
	.modal_box .close{
		top: 20px;
		right: 10px;
	}
	#main_img .catch{
		bottom: calc(100px + 10vw);
	}
	#top_cms1 .top_cms1_title{
		margin-bottom: 30px;
	}
	#top_con .con_no{
		font-size: 70px;
	}
	#top_con .con_img{
		height: 400px;
	}
	#top_con .con_img2{
		height: 250px;
	}
	#page_title{
		border-radius: 0 0 1000px 1000px;
	}
	.bottom_contact{
		left: 20px;
	}
}