@charset "utf-8";

/*
 * style.css
 *
 *  version --- 1.0
 *  updated --- 2017/11/30
 */

/* !HTML5 elements
---------------------------------------------------------- */
header, 
footer, 
nav, 
section, 
aside, 
article {
    display: block;
}

/* !Reseting
---------------------------------------------------------- */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

fieldset {
  border: none;
}

ul,
ol,
li {
	list-style: none;
}

img {
	max-width: 100%;
	vertical-align: top;
}

table {
	border-collapse: collapse;
}

button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
}

select::-ms-expand {
	display: none;
}

input[type=radio]::-ms-check,
input[type=checkbox]::-ms-check{
	display: none;
}

select,
input[type=radio],
input[type=checkbox],
input[type=text],
input[type=password],
input[type=email],
input[type=tel],
input[type=number],
input[type=reset],
input[type=button],
input[type=submit],
textarea {
	appearance: none;
	border-radius: 0;
	font-family: 'Noto Serif JP', serif;
}

input[type=text]::-ms-clear,
input[type=tel]::-ms-clear,
input[type=number]::-ms-clear{
	display: none;
}

input[type=reset],
input[type=button],
input[type=submit]  {
	font-family: 'Noto Serif JP', serif;
	cursor: pointer;
}

*,
*:before,
*::after {
	box-sizing: border-box;
}
/* !Clearfix
---------------------------------------------------------- */
.clearfix {
    display: block;
    min-height: 1%;
}

.clearfix:after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    visibility: hidden;
}

* html .clearfix {
    height: 1%;
}

/* !Layout
---------------------------------------------------------- */
html {
    overflow-y: scroll;
    font-size: 62.5%;
}
/*** タブレット 768x ~ 1100px***/
@media screen and (max-width: 1100px) {	
	html {
	    overflow-y: scroll;
	    font-size: 0.78vw;
	}
}
/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {
	html {
	    overflow-y: scroll;
	    font-size: 62.5%;
	}
}

body {
	font-family: 'Noto Serif JP', serif;
    font-size: 1.6rem;
    -webkit-text-size-adjust: none;
    line-height: 1.5;
    color: #000;
} 
.en-font01 {
	font-family: 'Alegreya', serif;
}
.en-font02 {
	font-family: 'Shippori Mincho',"Sawarabi Mincho", serif !important;
}
.en-font03 {
	font-family: 'Shippori Mincho B1', serif;
}
/* !Base Fonts -------------------------------------------------------------- */
a {
    color: #000000;
    text-decoration: none;
    transition: all 0.5s;
}

a:hover {
    text-decoration: underline;
    transition: all 0.5s;
}

.op img, .op input , .op a {
    transition: opacity 0.5s ease-out;
}

.op:hover img, .op:hover input , .op:hover a {
    opacity: .7;
    transition: opacity 0.5s ease-out;
}

.pc {
    display: block !important;
}

.sp {
    display: none !important;
}

@media screen and (max-width: 767px) {
    .pc {
        display: none !important;
    }

    .sp {
        display: block !important;
    }

}

/* !wrapper
---------------------------------------------------------- */
#wrapper {
	overflow: hidden;
	padding-top: 15.3rem;
}
/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {
	.home #wrapper {
		padding-top: 0;
	}
	#wrapper {
		padding-top: 8.8rem;
	}
}
/* !header
---------------------------------------------------------- */
#header {
	width: 100%;
	height: 15.3rem;
	background: transparent;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
}

.header-inner {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

/* .header-logo {
	padding-top: 4.9rem;
	width: 21rem;
}
.header-logo img {
	width: 100%;
} */
.header-logo {
	width: auto;
	padding: 1.8rem;
	background: #fff;
	border-radius: 1rem;
	margin-top: 2.4rem;
}
.header-logo a {
	display: block;
	width: 21.9rem;
}
.header-logo img {
	width: 100%;
}
.btn-menu {
	background: #fff;
	margin-top: 1.9rem;
	padding-top: 0;
	z-index: 999;
	cursor: pointer;
	position: relative;
	width: 9rem;
	height: 9rem;
	border-radius: 100%;
}
.btn-menu::before {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 1.1rem;
	z-index: 3;
	background: url('../img/common/icon-menu.svg') center no-repeat;
	width: 4.1rem;
	height: 0.9rem;
	background-size: 100%;
	transform: translate(-50%,-50%);
}
.btn-menu a {
	display: block;
	position: absolute;
	left: 50%;
	top: 4rem;
	transform: translate(-50%,-50%);
}
.btn-menu a span {
	z-index: 3;
	display: block;
    background: #000000;
    width: 4.5rem;
    height: 0.1rem;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
}
.btn-menu a span:nth-child(2) {
    opacity: 0;
}
.btn-menu a span+span {
    margin-top: 0.6rem;
}

.btn-menu.is-active a span:first-child {
    -webkit-transform: translateY(0.7rem) rotate(45deg);
    -moz-transform: translateY(0.7rem) rotate(45deg);
    -ms-transform: translateY(0.7rem) rotate(45deg);
    transform: translateY(0.7rem) rotate(45deg);
}


.btn-menu.is-active a span:last-child {
    -webkit-transform: translateY(-0.7rem) rotate(-45deg);
    -moz-transform: translateY(-0.7rem) rotate(-45deg);
    -ms-transform: translateY(-0.7rem) rotate(-45deg);
    transform: translateY(-0.7rem) rotate(-45deg);
}
/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {
	#header {
		width: 100%;
		height: 8.8rem;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 100;
	}
	
	.header-inner {
		width: 100%;
		display: flex;
		justify-content: space-between;
	}
	
	.header-logo {
		width: auto;
		padding: 1.2rem;
		background: #fff;
		border-radius: 1rem;
		margin-top: 2.4rem;
	}
	.header-logo a {
		display: block;
		width: 10.6rem;
	}
	.btn-menu {
		background: #fff;
		margin-top: 1.9rem;
		padding-top: 0;
		z-index: 999;
		cursor: pointer;
		position: relative;
		width: 5rem;
		height: 5rem;
		border-radius: 100%;
	}
	.btn-menu::before {
		content: '';
		position: absolute;
		left: 50%;
		bottom: 0rem;
		z-index: 3;
		background: url('../img/common/icon-menu.svg') center no-repeat;
		width: 2rem;
		height: 0.9rem;
		background-size: 100%;
		transform: translate(-50%,-100%);
	}
	.btn-menu a {
		display: block;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%,-80%);
	}
	.btn-menu a span {
		z-index: 3;
		display: block;
	    background: #000000;
	    width: 2rem;
	    height: 0.1rem;
		transition: all 0.4s;
		-webkit-transition: all 0.4s;
		-moz-transition: all 0.4s;
	}
	.btn-menu a span:nth-child(2) {
	    opacity: 0;
	}
	.btn-menu a span+span {
	    margin-top: 0.3rem;
	}
	
	.btn-menu.is-active a span:first-child {
	    -webkit-transform: translateY(0.3rem) rotate(45deg);
	    -moz-transform: translateY(0.3rem) rotate(45deg);
	    -ms-transform: translateY(0.3rem) rotate(45deg);
	    transform: translateY(0.3rem) rotate(45deg);
	}
	
	
	.btn-menu.is-active a span:last-child {
	    -webkit-transform: translateY(-0.5rem) rotate(-45deg);
	    -moz-transform: translateY(-0.5rem) rotate(-45deg);
	    -ms-transform: translateY(0.5remx=) rotate(-45deg);
	    transform: translateY(-0.5rem) rotate(-45deg);
	}
}

/* !global navigation
---------------------------------------------------------- */
#g-navi {
	position: fixed;
	right: 0;
	top: 0;
	z-index: 100;
	background: #fff;
	/* display: none; */
	width: 60.4rem;
	height: 100vh;
	padding: 13.5rem 5.9rem 11.6rem;
	transform: translateX(100%);
	transition: all 0.5s;
}

#g-navi.is-active {
	transform: translateX(0%);
}
.navi-logo {
	width: 16.9rem;
}
.navi-logo img {
	width: 100%;
}
#g-navi ul {
	margin-top: 6.9rem;
}
#g-navi li a {
	font-size: 1.8rem;
	line-height: 1.75;
	font-weight: 400;
	letter-spacing: 0.08em;
	padding-left: 3.3rem;
	position: relative;
	text-decoration: none;
}
#g-navi li a::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	z-index: 3;
	background: url('../img/common/icon-nav.svg')left center no-repeat;
	width: 2rem;
	height: 100%;
	background-size: 100% auto;
}
#g-navi li a:hover::before {
	background: url('../img/common/icon-nav-active.svg')left center no-repeat;
	width: 2rem;
	height: 100%;
	background-size: 100% auto;
}
#g-navi li+li {
	margin-top: 3.3rem;
}
/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {
	#g-navi {
		position: fixed;
		right: 0;
		top: 0;
		z-index: 100;
		background: #fff;
		display: none;
		width: 100%;
		height: 100vh;
		padding: 3.4rem 2.8rem 16.4rem;
		transform: translateX(0);
	}
	#g-navi.is-active {
		display: block;
	}
	.navi-logo {
		width: 16.4rem;
	}
	.navi-logo img {
		width: 100%;
	}
	#g-navi ul {
		margin-top: 10.8rem;
	}
	#g-navi li a {
		font-size: 1.7rem;
		line-height: 1.75;
		padding-left: 4rem;
	}
	#g-navi li+li {
		margin-top: 3rem;
	}
	.contact {
		margin-top: 5rem !important;
	}
}

/* !main Visual
---------------------------------------------------------- */
#main-visual {
	max-width: 108rem;
	width: 100%;
	margin: 0 auto;
}
.main-slider .slider-img img {
	border-radius: 3.4rem;
}
/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {
	#main-visual {
		max-width: unset;
	}
	.main-slider .slider-img img {
		border-radius: 0;
	}
}

/* !teaser
---------------------------------------------------------- */
#teaser {}

/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {}

/* !contents
---------------------------------------------------------- */
#contents {}

#main {}

#side {}

.inner,
.inner02,
.inner03 {
	max-width: 104.5rem;
	width: 100%;
	padding: 0 2rem;
	margin: 0 auto;
}
.inner02 {
	max-width: 124rem;
}
.inner03 {
	max-width: 114rem;
}
/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {
	.inner,
	.inner02,
	.inner03 {
		max-width: unset;
		width: 100%;
		padding: 0 2rem;
		margin: 0 auto;
	}
	.inner02 {
		max-width: unset;
	}
	.inner03 {
		max-width: unset;
	}
	
		
}



/* !musubi-area
---------------------------------------------------------- */
.musubi-area {
	display: flex;
}
.left-musubi,
.right-musubi {
	width: 50%;
	
}
.left-musubi a,
.right-musubi a{
	display: block;
	position: relative;
}
.left-musubi a::before,
.right-musubi a::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background: rgba(179, 179, 179,.86);
	mix-blend-mode: multiply;
}
.musubi-area img {
	width: 100%;
}
.musubi-area .tit-p {
	position: absolute;
	top: 50%;
	left: 5rem;
	z-index: 3;
	color: #fff;
	font-size: 1.75rem;
	letter-spacing: 0.08em;
	line-height: 1.75;
	text-align: left;
}
.musubi-area .tit-p span:first-child {
	display: block;
	font-size: 3.6rem;
	letter-spacing: 0.02em;
	line-height: 1.13;
}
.btn-more {
	position: absolute;
	right: 6.5rem;
	z-index: 3;
	bottom: 3.8rem;
	font-size: 2.7rem;
	padding: 0.1rem 3.4rem 0.7rem;
	color: #fff;
	border: 0.12rem solid #fff;
	border-radius: 5rem;
}
/*** スマ��320px ~ 767px***/
@media screen and (max-width: 767px) {
	.musubi-area {
		display: block;
	}
	.left-musubi,
	.right-musubi {
		width: auto;;
	}
	.left-musubi a,
	.right-musubi a{
		display: block;
		position: relative;
	}
	.left-musubi a::before,
	.right-musubi a::before {
		content: '';
		position: absolute;
		left: 0;
		top: 0;
		z-index: 1;
		width: 100%;
		height: 100%;
		background: rgba(179, 179, 179,.86);
		mix-blend-mode: multiply;
	}
	.musubi-area img {
		width: 100%;
	}
	.musubi-area .tit-p {
		width: 100%;
		position: absolute;
		top: auto;
		bottom: 1.3rem;
		left: 2rem;
		z-index: 3;
		color: #fff;
		font-size: 1.6rem;
		line-height: 1.78;
	}
	.musubi-area .tit-p span:first-child {
		display: block;
		font-size: 3rem;
		line-height: 1.19;
	}
	.left-musubi span:last-child {
		position: absolute;
		left: 50%;
		margin-left: 2.9rem;
		bottom: 1.3rem;
		transform: translateY(50%);
		z-index: 3;
	}
}


/* !footer
---------------------------------------------------------- */
#footer {
	background: #7EBEB7;
	padding: 8rem 0 0.8rem;
}

.footer-inner {
	display: flex;
}
.footer-left {
	width: 84.5rem;
}
.footer-inner ul {
	color: #fff;
	display: flex;
	margin-left: -5.8rem;
}
.footer-inner li {
	width: calc(33.33% - 5.8rem);
	margin-left: 5.8rem;
}
.footer-tit span {
	display: block;
	width: 19rem;
}
.footer-tit img {
	width: 100%;
}
.footer-info {
	margin-top: 1.8rem;
}
.footer-info .txt-p {
	color: #fff;
	font-size: 1.6rem;
	line-height: 1.5;
	font-weight: 300;
	font-family: 'Shippori Mincho',"Sawarabi Mincho", serif !important;
}
.footer-info .tel-p {
	margin-top: 2.6rem;
}
.footer-info .tel-p,
.footer-info .tel-p a {
	color: #fff;
	font-size: 1.6rem;
	line-height: 1.75;
	margin-top: 2.5rem;
	font-weight: 400;
	pointer-events: none;
}

.footer-right {
	width: calc(100% - 84.5rem);
}
.footer-btn+.footer-btn {
	margin-top: 2.6rem;
}
.footer-btn a {
	text-decoration: none;
	display: block;
	max-width: 25.6rem;
	width: 100%;
	border-radius: 1.3rem;
	white-space: nowrap;
	line-height: 1.9rem;
	padding: 1.6rem 0 1.6rem;
	text-align: center;
	font-size: 1.4rem;
	font-weight: 400;
	letter-spacing: 0.08em;
	font-family: 'Shippori Mincho',"Sawarabi Mincho", serif !important;
	color: #666;
	background: #fff;
}
.footer-btn.last a {
	background: #F5B5B7;
	color: #fff;
}
#copyright {
	margin-top: 3.6rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.75;
	color: #fff;
	text-align: center;
}

/*** スマホ 320px ~ 900px***/
@media screen and (max-width: 900px) {
	.footer-left {
		width: 80rem;
	}
	.footer-inner ul {
		color: #fff;
		display: flex;
		margin-left: -7.5rem;
	}
	.footer-inner li {
		width: calc(33.33% - 1rem);
		margin-left: 1rem;
	}
	.footer-right {
		width: calc(100% - 80rem);
	}
	.footer-btn {
		width: 100%;
	}
	.footer-btn a {
		font-size: 1.1rem;
		max-width: 100%;
	}
}
/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {
	#footer {
		padding: 5rem 0 1.3rem;
	}
	
	.footer-inner {
		display: block;
	}
	.footer-left {
		max-width: 32.1rem;
		width: 100%;
		margin: 0 auto;
	}
	.footer-inner ul {
		display: block;
		margin-left: 0;
	}
	.footer-inner li {
		width: auto;
		margin-left: 0;
		display: flex;
		align-items: center;
	}
	.footer-inner li+li {
		margin-top: 5rem;
	}
	.footer-tit span {
		display: block;
		width: 13.2rem;
		margin-right: 2.5rem;
	}
	.footer-tit img {
		width: 100%;
	}
	.footer-info {
		width: calc(100% - 15.7rem);
		margin-top: 0;
	}
	.footer-info .txt-p {
		color: #fff;
		font-size: 1rem;
		line-height: 1.75;
		height: unset; 
		white-space: nowrap;
	}
	.footer-info .tel-p {
		margin-top: 1.35rem;
	}
	.footer-info .tel-p,
	.footer-info .tel-p a {
		color: #fff;
		font-size: 1.8rem;
		line-height: 1;
		pointer-events: all;
	}
	
	.footer-right {
		max-width: 32.1rem;
		width: 100%;
		margin: 0 auto;
		margin-top: 4.45rem;
	}
	.footer-btn {
		text-align: left;
		width: 100%;
	}
	.footer-btn+.footer-btn {
		margin-top: 2.5rem;
	}
	.footer-btn a {
		max-width: 25.8rem;
		margin: 0 auto;
		line-height: 1.75rem;
		padding: 1.4rem 0;
	}
	.footer-btn.last a {
		background: #F5B5B7;
		color: #fff;
	}
	#copyright {
		margin-top: 4.3rem;
		font-weight: 400;
		line-height: 1.7;
	}
}

/* !title
---------------------------------------------------------- */
.area-tit span {
	display: inline-block;
	font-size: 2.6rem;
	line-height: 1.75;
	letter-spacing: 0.08em;
	padding-left: 5.5rem;
	font-weight: 400;
	position: relative;
}
.area-tit span::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	z-index: 3;
	background: url('../img/common/icon-flower.svg')left center no-repeat;
	width: 3.7rem;
	height: 100%;
	background-size: 100% auto;
}

#single-txts{
	padding-bottom: 100px;
}

#single-txts div{
	padding-top: 20px;
}

#single-txts div img{
	max-width: 100%;
	width: auto;
}

#single-txts p a{
	border: 2px solid #7ebeb7;
	display: block;
	width: 250px;
	line-height: 50px;
	color:#7ebeb7;
	text-decoration: none;
	margin: 50px auto 0px;
	text-align: center;
}

#single-txts p a:hover{
	background-color: #7ebeb7;
	color:#fff;
}

.single-left{
	float: left;
	width: 700px;
	    font-family: 'Shippori Mincho',"Sawarabi Mincho", serif !important;
}

.single-right{
	float: right;
	width: 250px;
	    font-family: 'Shippori Mincho',"Sawarabi Mincho", serif !important;
}

.single-right h3{
	border-bottom: 2px dashed #7ebeb7;
	color:#000;
	text-align: left;
	padding-bottom: 10px;
	margin-bottom: 20px;
}

.single-right div{
	padding-bottom: 20px;
	font-size: 14px;
}

.single-right div a{
	display: block;
	margin-top: 5px;
	color:#000;
	text-decoration: none;
}

.single-right div a:hover{
	text-decoration: none;
	color:#7ebeb7;
}

p.about-facility{
	line-height: 1.6em;
}

#single-txts h2{
	font-size: 24px;
	font-weight: 400;
}

h2.ttl{
	text-align: center;
	padding-bottom: 55px;
    font-size: 26px;
    letter-spacing: 0.1em;
    font-weight: 400;
    line-height: 1.4em;
        font-family: 'Shippori Mincho',"Sawarabi Mincho", serif !important;
}

/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {
	.area-tit span {
		display: inline-block;
		font-size: 1.7rem;
		line-height: 1.74;
		letter-spacing: 0.08em;
		padding-left: 3.2rem;
		position: relative;
	}
	.area-tit span::before {
		content: '';
		position: absolute;
		left: 0;
		top: 0;
		z-index: 3;
		background: url('../img/common/icon-flower.svg')left center no-repeat;
		width: 2.2rem;
		height: 100%;
		background-size: 100% auto;
	}
}
