@charset 'utf-8';
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
    margin: 0;
    padding: 0;
	overflow-x: hidden;
}
body {
	display: block;
	width: 100%;
	background-color: #FFF;
	font-family: "Noto Serif JP", serif;
    font-weight: 600;
	font-size: 13px;
	color: #000;
	text-align: left;
	line-height: 1.5em;
	letter-spacing: .3em;
	list-style-type: none;
	margin: 0;
	padding: 0;
	clear: both;
	overflow-x: hidden;
	-webkit-animation: fadeIn 1.5s ease 0s 1 normal;
    animation: fadeIn 2.5s ease 0s 1 normal;
}
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
.wrapper {
	overflow-x: hidden;
	overflow-y: visible;
}
a {text-decoration: none; }
a:link { color: #000; }
a:visited { color: #000; }
a:active { color: #000; }
a:hover { opacity: 0.5; transition: 0.5s ;}
body a:hover img {
	opacity: 0.5;
	filter: alpha(opacity=50);
	-ms-filter: "alpha(opacity=50)";
	transition: 0.5s ;
}
body img,
body video{
	border-style:none;
	width: 100%;
	display: block;
}
body a img{
	border-style:none; 
}
ul,li{
	list-style-type:none;
	margin:0;
	padding:0;
}
.scrollanime {
  opacity: 0;
  transform: translateY(30px);
}
.fadeInDown {
	animation-name: fadeInDown;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
}
@keyframes fadeInDown {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}
	100% {
	opacity: 1;
	transform: translateY(0);
	}
}
.downup {
	transform: translateY(30px);
}
.updown {
  transform: translateY(-30px);
}
.slide-right {
	transform: translateX(100px);
}
.slide-left {
	transform: translateX(-100px);
}





.scrollanime2 {
	opacity: 0;
}
.fadeInDown {
	animation-name: fadeInDown;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
}
@keyframes fadeInDown {
	0% {
		opacity: 0;			
	}
	100% {
	opacity: 1;
	transform: translate(0);
	}
}
.downup {
	transform: translateY(70px);
}
.slide-right {
	transform: translateX(100px);
}
.slide-left {
	transform: translateX(-100px);
}
/*======================================================================================
HEADER
======================================================================================*/
/* NAVIGATION */
.menu-trigger {
	z-index: 400;
	position: fixed;
	top: 10px;
	right: 10px;
	display: inline-block;
	width: 40px;
	height: 22px;
	vertical-align: middle;
	cursor: pointer;
}
.menu-trigger span {
	z-index: 400;
	position: absolute;
	right: 0;
	display: inline-block;
	box-sizing: border-box;
	width: 40px;
	height: 2px;
	background-color: #3F2C19;
	transition: all .5s;
}
.menu-trigger.active span {
	background-color: #FFF;
}
.menu-trigger span:nth-of-type(1) {
	top: 15px;
}
/*
.menu-trigger.active span:nth-of-type(1) {
	z-index: 400;
	position: absolute;
	transform: translateY(9px) rotate(-45deg);
}
*/
.menu-trigger span:nth-of-type(2) {
	top: 24px;
}
/*
.menu-trigger.active span:nth-of-type(2) {
	opacity: 0;
}
*/
.menu-trigger span:nth-of-type(3) {
	bottom: 15px;
}
/*
.menu-trigger.active span:nth-of-type(3) {
	z-index: 400;
	position: absolute;
	transform: translateY(-9px) rotate(45deg);
}
*/
a.menu-trigger:hover {
	opacity: 1;
}
.menu{
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	background-color: #3F2C19;
	width: 60px;
	height: auto;
	z-index: 99;
}
.menu ul{
	position: relative;
	width: 19px;
	margin: 50px auto 0 auto;
}
.menu ul li{
	border-bottom: 1px solid #fff;
	width:100%;
}
.menu ul li:last-child{
	border-bottom: none;
}
.menu ul li a{
	writing-mode: vertical-rl;
	letter-spacing: .5em;
	display: block;
	text-align: center;
	color: #fff;
	padding: 15px 0;
}

/* UNDER PAGE */
header{
	background-image: url("images/bg_header.png");
	background-repeat: repeat-x;
	background-position: center bottom;
	width: 100%;
	height: 80px;
}

/*======================================================================================
FOOTER
======================================================================================*/
footer{
    width: 100%;
    display: block;
    clear: both;
    overflow: hidden;
}
.banner{
	padding: 10px;
	display: flex;
	justify-content: space-between;
}
.footer_top{
	background-color: #A07A4B;
	padding: 30px 0;
}
h1{
	width: 161px;
	margin: 0 auto;
}
.address{
	color: #FFF;
	font-size: 13px;
	text-align: center;
	margin-top: 25px;
}
.tel {
	margin-top: 15px;
	text-align: center;
}
.tel a{
	color: #FFF;
	font-size: 20px;
	text-align: center;
}
.tel a span {
	font-size: 13px;
	margin-right: 10px;
}
.menu1box{
	height: 60px;
	display: flex;
	border-bottom: 1px #FFF solid;
	padding-bottom: 15px;
}
.menu1box li{
	width: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
}
.menu1box > li:first-of-type{
	border-right: 1px #FFF solid;
}
.menu1box > li:first-of-type a{
	color: #FFF;
	font-size: 13px;
}
.sns{
	/* width: 115px; */
	display: flex;
	justify-content: space-between;
}
.sns li{
	width: 30px;
}
.menu2box {
	display: flex;
	flex-wrap: wrap;
}
.menu2box li {
	margin-top: 40px;
	margin-right: 50px;
}
.menu2box li a {
	color: #FFF;
	font-size: 13px;
	position: relative;
	padding-left: 15px;
}
.menu2box li a::before{
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	background-color: #FFF;
	border-radius: 50%;
	top: 27%;
	left: 0;
}
.copyright{
	color: #FFF;
	background-color: #B79976;
	text-align: center;
	padding: 15px 0
}
@media screen and (max-width:1099px){
	.banner {
		flex-wrap: wrap;
	}
	.banner li{
		width: 48.5%;
	}
	.banner li:nth-of-type(3),
	.banner li:nth-of-type(4) {
		margin-top: 15px;
	}
	.footer_info,
	.footer_menu {
		width: 96%;
		margin: 0 2%;
	}
	.footer_info {
		border-bottom: 1px #FFF solid;
		padding-bottom: 30px;
		margin-bottom: 15px;
	}
	.menu2box {
		padding: 0 5%;
	}
	.copyright{
		font-size: 12px;
	}
}
@media screen and (min-width:1100px){
	.banner {
		width: 1100px;
		margin: 0 auto;
	}
	.banner li{
		width: 24%;
	}
	.footer_top{
		display: flex;
	}
	.footer_info{
		width: 50%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		border-right: 1px #FFF solid;
	}
	.footer_menu{
		width: 550px;
		padding-left: 20px;
	}
	.menu2box{
		padding: 0 35px;
	}
	.copyright{
		font-size: 13px;
	}
}

/*======================================================================================
COMMON
======================================================================================*/
main{
	display: block;
	clear: both;
	width: 100%;
	overflow: hidden;
}
h2.jp,
h2 .jp{
	letter-spacing: .5em;
	text-align: center;
}
h2.en,
h2 .en{
	letter-spacing: .5em;
	text-align: center;
	line-height: 1.2;
}
@media screen and (max-width:699px){
	br.pc{
		display: none;
	}
	h2.jp,
	h2 .jp{
		font-size: 16px;
	}
	h2.en,
	h2 .en{
		font-size: 20px;
	}
	.contents{
		width: 96%;
		margin: 0 2%;
		display: block;
		clear: both;
		overflow: hidden;
		padding: 0 10px;
	}
}
@media screen and (min-width:700px) and (max-width:1099px){
	br.sp{
		display: none;
	}
	h2.jp,
	h2 .jp{
		font-size: 18px;
	}
	h2.en,
	h2 .en{
		font-size: 22px;
	}
	.contents{
		width: 96%;
		margin: 0 2%;
		display: block;
		clear: both;
		overflow: hidden;
	}
}
@media screen and (min-width:1100px){
	br.sp{
		display: none;
	}
	h2.jp,
	h2 .jp{
		font-size: 20px;
	}
	h2.en,
	h2 .en{
		font-size: 24px;
	}
	.contents{
		max-width: 1140px;
		width: 100%;
		padding: 0 20px;
		margin: 0 auto;
		display: block;
		clear: both;
		overflow: hidden;
	}
}

/*======================================================================================
TOP PAGR
======================================================================================*/
/*COVER*/
section.cover{
	width: 100%;
	height: 100vh;
	background-repeat: no-repeat;
	background-position: center top;
	color: #3F2C19;
	line-height: 1.3;
	letter-spacing: 0;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	padding-bottom: 75px;
}
.copy1,
.copy2{
	font-weight: 600;
	text-shadow:0px 0px 20px #fff,0px 0px 20px #ffff,0px 0px 20px #fff;

}
.intro_txt,
.intro_ttl {
	letter-spacing: .5em;
}
@media screen and (max-width:699px){
	section.cover{
		background-image: url("images/cover_sp.jpg");
		background-size: 100vh;
	}
	.copy1{
		font-size: 40px;

	}
	.copy2{
		font-size: 45px;

	}
	.copy3{
		font-size: 36px;
		margin-top: 5px;
	}
	.intro_ttl{
		text-align: center;
		font-size: 20px;
		line-height: 2;
		margin-top: 80px;
	}
	.intro_txt{
		font-size: 14px;
		line-height: 2.2;
		margin-top: 60px;
		padding: 0 15px;
		letter-spacing: .2.5em;
	}
}
@media screen and (min-width:700px){
	section.cover{
		background-image: url("images/cover.jpg");
		background-size: contain;
	}
	.copy1{
		font-size: 55px;
		font-weight: 600;
		text-shadow:0px 0px 20px #fff,0px 0px 20px #ffff,0px 0px 20px #fff
	}
	.copy2{
		font-size: 64px;
	}
	.copy3{
		font-size: 48px;
		margin-top: 10px;
		font-weight: 600;
		text-shadow:0px 0px 20px #fff,0px 0px 20px #ffff,0px 0px 20px #fff
	}
	.intro_ttl{
		text-align: center;
		font-size: 24px;
		margin-top: 95px;
		line-height: 2;
	}
	.intro_txt{
		text-align: center;
		font-size: 16px;
		line-height: 2.8;
		margin-top: 80px;
	}
}
section.story{
	width: 100%;
	position: relative;
	margin-top: 13px;
}
.story-inner {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	background-image: url("images/bg_01.jpg");
	background-repeat: repeat-y;
	background-position: center top;
	/*background-attachment: fixed;*/
}
.story-inner.is-fixed {
	position: fixed;
}
.story-inner.is-fixed::after{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
    height: 140px;
    background-image: linear-gradient(180deg, rgba(255,255,255,0) 0, #E7E1D7 50%);
}
.story-border-top{
	width: 100%;
	height: 29px;
	display: block;
	background-image: url("images/bg_01_top.png");
	background-repeat: no-repeat;
	background-position: center bottom;
	position: absolute;
	top: -29px;
	left: 0;
	z-index: 2;
}
.story-border-bottom{
	width: 100%;
	height: 25px;
	display: block;
	background-image: url("images/bg_01_bottom.png");
	background-repeat: no-repeat;
	background-position: center top;
	position: absolute;
	bottom: -25px;
	left: 0;
	z-index: 2;
}
.story-inner.is-fixed .story-border-top {
	position: fixed;
	top: -29px;
}
.story-inner.is-fixed .story-border-bottom {
	position: fixed;
	bottom: -25px;
}
section.story .contents {
	position: relative;
	will-change: transform;
	padding: 0 20px;
}
.logo{
	width: 160px;
	margin: 65px auto 0 auto;
}
section.story h2{
	position: relative;
	margin-top: 170px;
}
section.story h2::before{
	position: absolute;
	content: "";
	width: 1px;
	height: 100px;
	background-color: #3F2C19;
	top: -140px;
	left: 50%;
}
section.story .image {
	margin: 50px auto 0 auto;
}
section.story .imagetxt {
	letter-spacing: .5em;
}
section.story ul + p {
	letter-spacing: .5em;
	line-height: 2;
	margin-bottom: 120px;
}
/* 両側の水玉模様 */
.particle {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1000;
    opacity: 0.9;
    will-change: transform, opacity, background-color;
    transition: background-color 1s ease, opacity 1s ease;
 }

@media screen and (max-width:699px){
.particle {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1000;
    opacity: 0.9;
    will-change: transform, opacity, background-color;
    transition: background-color 1s ease, opacity 1s ease;
 transform: scale(0.1);
 }
}
@media screen and (max-width:699px){
	section.story ul li:nth-of-type(2),
	section.story ul li:nth-of-type(3) {
		margin-top: 60px;
	}
	section.story .imagetxt {
		font-size: 13px;
		line-height: 2.2;
		margin-top: 15px;
		letter-spacing: .2em;
	}
	section.story ul + p {
		font-size: 17px;
		text-align: center;
		margin-top: 70px;
	}
}
@media screen and (min-width:700px) and (max-width:1099px){
	section.story ul li:nth-of-type(2),
	section.story ul li:nth-of-type(3) {
		margin-top: 90px;
	}
	section.story .imagetxt {
		font-size: 15px;
		line-height: 2.4;
		text-align: center;
		margin-top: 25px;
	}
	section.story ul + p {
		font-size: 22px;
		text-align: center;
		margin-top: 80px;
	}
}
@media screen and (min-width:1100px){
	section.story ul li:nth-of-type(2),
	section.story ul li:nth-of-type(3) {
		margin-top: 130px;
	}
	section.story .image {
		width: 800px;
		margin: 50px auto 0 auto;
	}
	section.story .imagetxt {
		font-size: 16px;
		line-height: 2.8;
		text-align: center;
		margin-top: 35px;
	}
	section.story ul + p {
		font-size: 24px;
		text-align: center;
		margin-top: 100px;
	}
}
section.about {
	position: relative;
	width: 100%;
}
section.about h2 span,
section.facilities h2 span {
	display: block;
	position: relative;
	margin-top: 45px;
}
section.about h2 span::before,
section.facilities h2 span::before {
	content: "";
	position: absolute;
	top: -36px;
	left: calc(50% + 8px);
	width: 1px;
	height: 32px;
	background: #000;
	transform: rotate(30deg);
	transform-origin: top;
}
section.about p {
	line-height: 2.7;
	margin-top: 50px;
}
.hyogo {
	margin: 30px auto 0;
}
.about_img02,
.about_img04 {
	z-index: 1;
}
@media screen and (max-width:699px){
	section.about {
		padding-bottom: 50px;
	}
	.about_inner {
		width: 96%;
		margin: 0 2%;
	}
	section.about h2 {
		margin-top: -65vw;
	}
	section.about p {
		font-size: 12px;
		padding:0 15px;
	}
	.hyogo{
		width: 280px;
	}
	.about_img01,
	.about_img02,
	.about_img03,
	.about_img04,
	.about_img05 {
		position: relative;
	}
	.about_img01 {
		width: 35%;
		top: 20vw;
		left: -24px;
	}
	.about_img02 {
		width: 50%;
		top: 16vw;
		left: -26px;
	}
	.about_img03 {
		width: 55%;
		top: -77vw;
		right: -52%;
	}
	.about_img04 {
		width: 55%;
		top: -80vw;
		right: -65%;
	}
	.about_img05 {
		width: 50%;
		top: -85vw;
		right: -53%;
	}
}
@media screen and (min-width:700px){
	section.about {
		padding-bottom: 15vw;
	}
	.about_inner {
		max-width: 1100px;
		width: 45%;
		margin: 0 auto;
	}
	section.about h2 {
		margin-top: 120px;
	}
	section.about p {
		text-align: center;
	}
	.hyogo{
		width: 303px;
	}
	.about_img01,
	.about_img02,
	.about_img03,
	.about_img04,
	.about_img05 {
		position: absolute;
	}
	.about_img01 {
		width: 19.4%;
		top: 4vw;
		left: -1.6%;
	}
	.about_img02 {
		width: 22.9%;
		top: 30vw;
		left: -1.8%;
	}
	.about_img03 {
		width: 25%;
		top: 2vw;
		right: -1.4%;
	}
	.about_img04 {
		width: 25%;
		top: 18vw;
		right: -7.5%;
	}
	.about_img05 {
		width: 25%;
		top: 33vw;
		right: -3.1%;
	}
}
section.slider1 {
	width: 100%;
	background-image: url("images/bg_02.jpg");
	background-repeat: repeat-y;
	background-position: center top;
	position: relative;
	padding: 90px 0;
	margin: 0 auto;
}
section.slider1::before{
	content: "";
	position: absolute;
	background-image: url("images/bg_02_top.png");
	background-repeat: no-repeat;
	background-position: center top;
	width: 100%;
	height: 33px;
	top: -33px;
	left: 0;
}
section.slider1::after{
	content: "";
	position: absolute;
	background-image: url("images/bg_02_bottom.png");
	background-repeat: no-repeat;
	background-position: center top;
	width: 100%;
	height: 28px;
	bottom: -28px;
	left: 0;
}
.slide1 {
	flex-wrap: nowrap !important;
}
.slide1 li {
	display: flex !important;
	justify-content: space-between !important;
	align-items: center;
	aspect-ratio: 25 / 49;
	position: relative;
}
.slide1 li:nth-of-type(odd) {
	flex-direction: column;
}
.slide1 li:nth-of-type(even) {
	flex-direction: column-reverse;
}
.slide1_ttl{
	writing-mode: vertical-rl;
	letter-spacing: .5em;
}
.slide1 img {
	transition: opacity 0.6s ease;
	max-width: 80%;
	aspect-ratio: 11 / 16 !important;

z-index: 99999;
}
.slide1 .slide1_text {
	max-width: 100%;
	width: 80%;
	writing-mode: vertical-rl;
	letter-spacing: .2em;
	line-height: 2.3;
	display: flex;
	align-items: center;
	position: absolute;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	transition: opacity 0.6s ease;
	pointer-events: none;
}
/*
.slide1 .slick-center {
	animation: fadeInOut 0.6s ease;
}
@keyframes fadeInOut {
	0% { opacity: 1; }
	50% { opacity: 0; }
	100% { opacity: 1; }
}
*/
.slide1 .slick-center{
	justify-content: space-between !important;
}
.slide1 .slick-center img {
	opacity: 0;
	transition: opacity 0.6s ease 1s; /* ← 消える時のみ1秒後に開始 */
}
.slide1 .slick-center .slide1_text {
	opacity: 1;
	aspect-ratio: 11 / 16 !important;
	transition-delay: 1s; /* ← 画像と同じタイミングで開始 */
}
.slide1 .slick-center:nth-of-type(odd) .slide1_text {
	top: 30%;
}
.slide1 .slick-center:nth-of-type(even) .slide1_text {
	top: 60%;
}
@media screen and (max-width:895px){
	.slide1 li{
		margin: 0 20px;
	}
	.slide1_ttl {
		font-size: 26px;
	}
	.slide1 img{
		border-radius: 20px;
	}
	/*
	.slide1 li:nth-of-type(odd) .slide1_ttl{
		margin-top: 20px;
	}
	.slide1 li:nth-of-type(even) img {
		margin-top: 5px;
	}
	*/
	.slide1 .slide1_text {
		font-size: 13px;
	}
}
@media screen and (min-width:896px) and (max-width:1099px){
	.slide1 li{
		margin: 0 20px;
	}
	.slide1_ttl {
		font-size: 23px;
	}
	.slide1 img{
		border-radius: 30px;
	}
	.slide1 li:nth-of-type(odd) .slide1_ttl{
		margin-top: 30px;
	}
	.slide1 li:nth-of-type(even) img {
		margin-top: 10px;
	}
	.slide1 .slide1_text {
		font-size: 15px;
	}
	.slide1 .slick-center:nth-of-type(odd) .slide1_ttl {
		
	}
	.slide1 .slick-center:nth-of-type(even) .slide1_ttl{
		
	}
}
@media screen and (min-width:1100px){
	.slide1 li{
		margin: 0 35px;
	}
	.slide1_ttl {
		font-size: 36px;
	}
	.slide1 img{
		border-radius: 40px;
	}
	.slide1 li:nth-of-type(odd) .slide1_ttl{
		margin-top: 30px;
	}
	.slide1 li:nth-of-type(even) img {
		margin-top: 10px;
	}
	.slide1 .slide1_text {
		font-size: 18px;
	}
	.slide1 .slick-center:nth-of-type(odd) .slide1_ttl {
		
	}
	.slide1 .slick-center:nth-of-type(even) .slide1_ttl{
		
	}
}
section.facilities h2 {
	margin-top: 110px;
}
.map{
	width: 100%;
	position: relative;
	margin-top: 40px;
}
.map iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
}
.facilities_info {
	margin: 100px 0;
}
.facilities_ttl {
	letter-spacing: .5em;
	display: flex;
	align-items: center;
}
.facilities_ttl span {
	background-color: #333F6E;
	color: #FFF;
	letter-spacing: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
}
.map + .facilities_info .facilities_ttl span {
	margin-right: 18px;
}
.facilities_info + .facilities_info  .facilities_ttl span {
	margin-left: 18px;
}
.facilities_info p{
	margin-top: 20px;
}
.category {
	display: flex;
	flex-wrap: wrap;
	margin-top: 15px;
}
.category span {
	font-size: 11px;
	color: #FFF;
	background-color: #A07A4B;
	text-align: center;
	padding: 4px 15px;
	border-radius: 50px;
	margin-right: 10px;
	margin-top: 12px;
}
@media screen and (max-width:699px){
	.map{
		height: 300px;
	}
	.map iframe {
		border-radius: 20px;
	}
	.facilities_ttl {
		font-size: 18px;
	}
	.facilities_ttl span {
		width: 50px;
	}
	.facilities_info + .facilities_info .facilities_ttl,
	.facilities_info + .facilities_info .category {
		justify-content: flex-end;
	}
	.facilities_info p{
		line-height: 2.4;
		font-size: 12px;
		text-align: left;
	}
	.facilities_img {
		margin-top: 30px;
	}
}
@media screen and (min-width:700px) and (max-width:1099px){
	.map{
		height: 420px;
	}
	.map iframe {
		border-radius: 25px;
	}
	.facilities_info{
		width: 100%;
		height: 420px;
		background-repeat: no-repeat;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
	.map + .facilities_info{
		background-image: url("images/facilities_img01.jpg");
		background-position: right top;
	}
	.facilities_info + .facilities_info{
		background-image: url("images/facilities_img02.jpg");
		background-position: left top;
		text-align: right;
	}
	.facilities_img{
		display: none;
	}
	.facilities_info .txtbox {
		width: 51%;
	}
	.facilities_info + .facilities_info .txtbox {
		margin-left: 49%;
	}
	.facilities_ttl {
		font-size: 20px;
	}
	.facilities_ttl span {
		width: 60px;
	}
	.facilities_info + .facilities_info .facilities_ttl,
	.facilities_info + .facilities_info .category {
		justify-content: flex-end;
	}
	.facilities_info p{
		line-height: 2.6;
	}
}
@media screen and (min-width:1100px){
	.map{
		height: 460px;
	}
	.map iframe {
		border-radius: 30px;
	}
	.facilities_info{
		width: 100%;
		height: 420px;
		background-repeat: no-repeat;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
	.map + .facilities_info{
		background-image: url("images/facilities_img01.jpg");
		background-position: right top;
	}
	.facilities_info + .facilities_info{
		background-image: url("images/facilities_img02.jpg");
		background-position: left top;
		text-align: right;
	}
	.facilities_img{
		display: none;
	}
	.facilities_info .txtbox {
		width: 560px;
	}
	.facilities_info + .facilities_info .txtbox {
		margin-left: calc(100% - 560px);
	}
	.facilities_ttl {
		font-size: 20px;
	}
	.facilities_ttl span {
		width: 60px;
	}
	.facilities_info + .facilities_info .facilities_ttl,
	.facilities_info + .facilities_info .category {
		justify-content: flex-end;
	}
	.facilities_info p{
		line-height: 2.8;
	}
}
section.slider2 {
	background-color: #F7F3F0;
	padding: 100px 0 85px 0;
}
.slider2_inner {
	overflow: hidden;
}
.slide2 {
	overflow: visible;
}
.slider2_inner h2.jp {
	line-height: 1.8;
	text-align: left;
}
.slider2_inner h2.jp span {
	font-size: 14px;
}
.slide2 .swiper-slide {
	transform: scale(0.85) !important;
	transform-origin: top center !important;
	transition: transform 0.3s ease !important;
}
.slide2 .swiper-slide-active {
	transform: scale(1) !important;
	z-index: 10 !important;
}

.slide2 li img,
.slide2 li video {
	vertical-align: top !important;
}
@media screen and (max-width:699px){
	.slider2_inner{
		width: 96%;
		margin-left: 4%;
		overflow: hidden;
	}
	.slider2_inner h2.jp{
		flex-shrink: 0;
	}
	.slide2{
		width: 100%;
		overflow: hidden;
		margin-top: 30px;
	}
	/*
	.slide2 .swiper-slide-active {
		margin-right: 5% !important;
	}
	*/
	.slide2 .swiper-slide img,
	.slide2 .swiper-slide video {
		border-radius: 20px;
	}
}
@media screen and (min-width:700px) and (max-width:1099px){
	.slider2_inner{
		width: 96%;
		margin-left: 4%;
		display: flex;
		align-items: center;
		overflow: hidden;
	}
	.slider2_inner h2.jp{
		width: 27%;
		flex-shrink: 0;
	}
	.slide2{
		width: 73%;
		overflow: hidden;
	}
	.slide2 .swiper-slide-active {
		margin-right: 4% !important;
	}
	.slide2 .swiper-slide img,
	.slide2 .swiper-slide video {
		border-radius: 20px;
	}
}
@media screen and (min-width:1100px){
	.slider2_inner{
		width: calc(100% - (100% - 1100px) / 2);
		margin-left: calc((100% - 1100px) / 2);
		display: flex;
		align-items: center;
		overflow: hidden;
	}
	.slider2_inner h2.jp{
		width: 245px;
		flex-shrink: 0;
	}
	.slide2{
		width: calc(100% - 245px);
		overflow: hidden;
	}
	.slide2 .swiper-slide-active {
		margin-right: 2.5% !important;
	}
	.slide2 .swiper-slide img,
	.slide2 .swiper-slide video {
		border-radius: 40px;
	}
}
section.news {
	background-color: #F2EBE6;
	padding: 45px 0;
}
.news_list{
	display: flex;
}
.news_list h2 {
	text-align-last: left;
	line-height: 1.8;
	margin-top: 20px;
}
.news_list h2 span {
	letter-spacing: .15em;
}
.news_link{
	margin-top: 40px;
}
.news_link a {
	position: relative;
}
.news_link a::after{
	content: "";
	background-image: url("images/arrow_right.png");
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	width: 7px;
	height: 9px;
	position: absolute;
	top: 60%;
	transform: translateY(-60%);
	right: -15px;
}
.news_list li:first-of-type {
	display: flex;
    flex-direction: column;
    justify-content: center;
}
@media screen and (max-width:699px){
	.news_list h2 span {
		font-size: 13px;
	}
	.news_link a {
		font-size: 13px;
	}
	.news_list {
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.news_list li {
		width: 48%;
	}
	.news_list li:first-of-type{
		/*align-items: center; */
		justify-content: flex-start;
	}
	.news_list li:nth-of-type(3),
	.news_list li:nth-of-type(4) {
		margin-top: 40px;
	}
	.news_list li img{
		border-radius: 25px;
	}
}
@media screen and (min-width:700px) and (max-width:1099px){
	.news_list h2 span {
		font-size: 14px;
	}
	.news_link a {
		font-size: 14px;
	}
	.news_list li {
		width: 23.6%;
		margin-right: 3.566666%;
	}
	.news_list li:first-of-type{
		width: 18.5%;
	}
	.news_list li img{
		border-radius: 35px;
	}
}
@media screen and (min-width:1100px){
	.news_list h2 span {
		font-size: 14px;
	}
	.news_link a {
		font-size: 14px;
	}
	.news_list li {
		width: 260px;
		margin-right: 38.666px;
	}
	.news_list li:first-of-type{
		width: 204px;
	}
	.news_list li:last-of-type{
		margin-right: 0;
	}
	.news_list li img{
		border-radius: 40px;
	}
}

/*======================================================================================
NEWS PAGR
======================================================================================*/
/* LIST PAGE */
#list .particle,
#detail .particle{
	display: none;
}
#list h2,
#detail h2{
	color: #3f2c19;
	letter-spacing: .2em;
	text-align: center;
	line-height: 1.4;
	margin-top: 100px;
}
#list h2 span,
#detail h2 span {
	color: #000;
	letter-spacing: .3em;
}
#list h2 + p {
	text-align: center;
	line-height: 2.8;
	margin-top: 100px;
}

.news_date {
	text-align: center;
	margin-top: 20px;
}
.news_date span {
	font-size: 11px;
	color: #FFF;
	background-color: #A07A4B;
	padding: 3px 10px;
	border-radius: 50px;
}
.news_ttl{
	font-size: 12px;
	text-align: center;
	margin-top: 10px;
	padding-bottom: 20px;
	position: relative;
}
.news_ttl::before{
	content: "";
	background-image: url("images/arrow_under.png");
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	width: 9px;
	height: 7px;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
.list {
	display: flex;
	flex-wrap: wrap;
	margin-top: 80px;
	margin-bottom: 100px;
}
@media screen and (max-width:699px){
	#list h2,
	#detail h2 {
		font-size: 25px;
	}
	#list h2 span,
	#detail h2 span {
		font-size: 14px;
	}
	#list h2 + p{
		font-size: 14px;
	}
	.list {
		justify-content: space-between;
	}
	.list li {
		width: 48%;
		margin-top: 50px;
	}
	.list li:nth-child(1),
	.list li:nth-child(2) {
		margin-top: 0;
	}
	.list li img{
		border-radius: 25px;
	}
}
@media screen and (min-width:700px){
	#list h2,
	#detail h2 {
		font-size: 30px;
	}
	#list h2 span,
	#detail h2 span {
		font-size: 17px;
	}
	#list h2 + p{
		font-size: 16px;
	}
	.list li {
		width: 30%;
		margin-right: 5%;
		margin-top: 60px;
	}
	.list li:nth-child(3n) {
		margin-right: 0;
	}
	.list li:nth-child(1),
	.list li:nth-child(2),
	.list li:nth-child(3){
		margin-top: 0;
	}
	.list li img{
		border-radius: 40px;
	}
}

/* DETAIL PAGE */
.detail_contents{
	margin-top: 80px;
}
#detail .news_date{
	text-align: left;
}
#detail h3 {
	line-height: 1.8;
	border-bottom: #a07a4b 1px solid;
	padding-bottom: 15px;
	margin-top: 15px;
}
#detail p {
	line-height: 2.8;
}
#detail img {
	max-width: 800px !important;
	width: 100% !important;
	margin: 60px auto 0 !important;
}
.prev_next{
	margin: 120px 0;
	display: block;
	clear: both;
	overflow: hidden;
}
.prev a,
.next a {
	position: relative;
}
.prev a {
	padding-left: 20px;
}
.next a {
	padding-right: 20px;
}
.prev a::before,
.next a::before {
	content: "";
	position: absolute;
	width: 10px;
	height: 13px;
	background-repeat: no-repeat;
	background-size: cover;
	top: 23%;
}
.prev a::before {
	background-image: url("images/detail_arrow_left.png");
	left: 0;
}
.next a::before {
	background-image: url("images/detail_arrow_right.png");
	right: 0;
}
@media screen and (max-width:699px){
	#detail h3{
		font-size: 16px;
	}
	#detail p{
		font-size: 14px;
		margin-top: 45px;
	}
	.prev_next{
		text-align: center;
	}
	.next{
		margin-top: 30px;
	}
	.prev a,
	.next a {
		font-size: 14px;
	}
}
@media screen and (min-width:700px){
	#detail h3{
		font-size: 18px;
	}
	#detail p{
		font-size: 16px;
		margin-top: 60px;
	}
	.prev {
		float: left;
	}
	.next{
		float: right;
	}
	.prev a,
	.next a {
		font-size: 15px;
	}
}



/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
 PAGER
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
.pagination {
	/*font-family: var(--en-font);*/
	font-size: 1.1em;
	overflow: hidden;
	display: flex;
	justify-content: center;
	margin-bottom: 60px;
	clear: both;
}
.pagination span, .pagination a {
	display: block;
	float: left;
	width: auto;
	margin-right: 0.5em;
	padding: 0.4em 0.9em;
	background-color: #F2EBE6;
	color: #A07A4B;
	text-decoration: none;
	font-size:15px;
}
.pagination a:hover {
	background-color: #A07A4B;
	color:#FFFFFF;
}
.pagination .current{
	background-color: #A07A4B;
	color:#FFFFFF;
}
.pagination .pc_page_navi{display: none;}
@media screen and (min-width:700px) {
	.pagination .mb_page_navi{ display: none; }
	.pagination .pc_page_navi{ display: block; }
}















.loading {
  /*ローディング画面の縦横幅を画面いっぱいになるように指定*/
  width: 100vw;
  height: 100vh;
  /*ローディング画面の表示位置を固定*/
  position: fixed;
  top: 0;
  left: 0;
  background: #3F2C19;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /*ローディング画面を0.5秒かけて非表示にする*/
  transition: all 0.5s linear;
 z-index: 9999;
}


/*ローディング画面を非表示にする*/
.loading.loaded {
  /*0.5秒かけてopacityを0にする*/
  opacity: 0;
  visibility: hidden;
}



.circle-area {
      position: relative;
      width: 230px;
      
	margin: 150px auto 230px auto;
  animation-fill-mode: forwards;
animation-delay: 1s;  /* ← ここを追加 */
transform: scale(0.7);
opacity: 0;            /* ← 最初は非表示 */
  animation: fade-in 2.5s forwards;
  animation-delay: 1s;   /* ← 3秒後に開始 */
    }

    .circle {
      position: absolute;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      opacity: 0;
      animation: smoothFloat 5s linear infinite;
    }

    /* 丸の色を白と#E8E2D7で交互に設定 */
    .circle1 { left: 70px; top: 130px; background: #FFFFFF; animation-delay: 0s; }
    .circle2 { left: 100px; top: 150px; background: #E8E2D7; animation-delay: 1s; }
    .circle3 { left: 130px; top: 110px; background: #FFFFFF; animation-delay: 2s; }
    .circle4 { left: 120px; top: 140px; background: #E8E2D7; animation-delay: 3s; }
    .circle5 { left: 90px; top: 90px; background: #FFFFFF; animation-delay: 4s; }

    @keyframes smoothFloat {
      0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
      }
      20% {
        transform: translateY(-20px) translateX(3px);
        opacity: 1;
      }
      50% {
        transform: translateY(-50px) translateX(-3px);
        opacity: 0.9;
      }
      80% {
        transform: translateY(-80px) translateX(2px);
        opacity: 0.7;
      }
      100% {
        transform: translateY(-100px) translateX(0);
        opacity: 0; /* フェードアウトで消える */
      }
    }

 .open_logo {
      
      width: 100px;
      margin: 170px auto 0 auto;
     animation: fade-in 2.5s;
  animation-fill-mode: forwards;
    }
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.open_logo img {
      
      width: 100px;
      


    }




