@charset "UTF-8";
/* CSS Document */


html {
    font-size: 62.5%;
} /* 10px */
body {
    font-size: 1.6rem;
    overscroll-behavior-y: none;
} /* 16px */
p {
    font-size: 1.6rem;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 180%;
	color: #333333;
} /* 16px */
li {
    font-size: 1.6rem;
} /* 16px */
li p {
    font-size: 1.6rem;
} /* 16px */
*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

@media screen and (min-width: 769px) {.pcNone {display: none!important}}
@media screen and (max-width: 768px) {.spNone {display: none!important}}
@media screen and (min-width: 930px) {.pcNav {display: none!important}}
@media screen and (max-width: 929px) {.spNav {display: none!important}}

/*====================================================================

  HEADER&NAV

====================================================================*/

header {
    width: 100%;
    position: fixed;
	top: 0px;
	left: 0px;
    background-color: hsla(0,0%,100%,0.80);
    padding: 10px;
	border-top: 10px solid #1F9C00;
    border-bottom: 1px solid #ECECEC;
    z-index: 999;
}
header nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header nav ul li:first-child {
	border-right: none;
    margin-right: auto;
}

header nav ul li:nth-child(6) {
	border-right: none;
}
header nav ul li a {
    font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.5rem;
    font-weight: 700;
    color: #333333;
    text-decoration: none;
    padding: 8px;
}
.headerLogo {
    width: 230px;
}
.headerBar {
    width: 25px
}

@media screen and (min-width: 930px) {
header nav ul li {
	border-right: 1px solid #CCCCCC;
}
}

@media screen and (max-width: 929px) {
}

.menu-btn {
    cursor: pointer;
    z-index: 1;
}
.menu-btn span {
    color: #ccc;
}
.menu-btn span:after {
    content: attr(data-txt-menu);
}
/* 開閉用ボタンがクリックされた時のスタイル */
.open .menu-btn span:after {
    content: attr(data-txt-close);
}
.menu {
    position: fixed;
    display: table;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.92);
    -webkit-transition: all .5s;
    transition: all .5s;
    visibility: hidden;
    opacity: 0;
}
.menu ul {
    display: table-cell;
    vertical-align: middle;
}
.menu li {
    width: 300px;
    height: 40px;
    line-height: 40px;
    margin: 0 auto;
    text-align: center;
}
.menu li a {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #333333;
	margin: 8px;
	display: block;
    text-decoration: none;
    -webkit-transition: all .5s;
    transition: all .5s;
}
.menu li a i {
    margin-right: 5px;
}
.menu li a:hover {
    color: #999;
}
/* 開閉用ボタンがクリックされた時のスタイル */
.open .menu {
    -webkit-transition: all .5s;
    transition: all .5s;
    visibility: visible;
    opacity: 1;
}

/*====================================================================

  Main Images

====================================================================*/

#mainImages {
    position: relative;
    z-index: 0;
}

@media screen and (min-width: 769px) {
#copy {
    width: 220px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 0;
}
}

@media screen and (max-width: 768px) {
#copy {
    width: 150px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 0;
}
}


#copy img {
    width: 100%;
}
#mainImages a {
    position: absolute;
    bottom: 100px;
    left: 50%;
    display: inline-block;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    text-decoration: none;
    z-index: 0;
}
#mainImages a span {
    position: absolute;
    top: 0;
    left: 50%;
    width: 46px;
    height: 46px;
    margin-left: -23px;
    border: 1px solid #fff;
    border-radius: 100%;
    box-sizing: border-box;
}
#mainImages a span::after {
    position: absolute;
    top: 50%;
    left: 50%;
    content: '';
    width: 16px;
    height: 16px;
    margin: -12px 0 0 -8px;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    box-sizing: border-box;
}
#mainImages a span::before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 44px;
    height: 44px;
    box-shadow: 0 0 0 0 rgba(255,255,255,.1);
    border-radius: 100%;
    opacity: 0;
    -webkit-animation: sdb 3s infinite;
    animation: sdb 3s infinite;
    box-sizing: border-box;
}
@-webkit-keyframes sdb {
 0% {
 opacity: 0;
}
 30% {
 opacity: 1;
}
 60% {
 box-shadow: 0 0 0 60px rgba(255,255,255,.1);
 opacity: 0;
}
 100% {
 opacity: 0;
}
}
@keyframes sdb {
 0% {
 opacity: 0;
}
 30% {
 opacity: 1;
}
 60% {
 box-shadow: 0 0 0 60px rgba(255,255,255,.1);
 opacity: 0;
}
 100% {
 opacity: 0;
}
}

/*====================================================================

   Common

====================================================================*/

@media screen and (min-width: 769px) {

main {
    width: 100%;
    margin: 0px auto;
    background-color: #FFFFFF;
}

/*== ページヘッダー ==*/

.contentsHeader {
    text-align: center;
	padding-top: 86px;
}
.contentsHeader img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.contentsHeader h1 {
    font-size: 3.2rem;
    font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	padding-bottom: 50px;
    color: #333333;
    letter-spacing: 0.3rem;
    padding-top: 50px;
    border-bottom: 1px solid #D1D1D1;
    display: inline-block;
	line-height: 120%;
}
.contentsHeader .en {
    font-size: 1.2rem;
	color: #CCCCCC;
    display: block;
}
.contentsHeader .price {
    font-size: 2.2rem;
    display: block;
}
.contentsHeader p {
    width: 700px;
    margin-left: auto;
    margin-right: auto;
}


/*====================================================================

   トップページ

====================================================================*/

/*== トップページコンセプト ==*/

#concept {
    width: 100%;
    margin: 0px auto;
    max-width: 1000px;
	padding-top: 100px;
}


#concept h1 {
    text-align: center;
	font-size: 2.6rem;
    color: #333333;
    line-height: 160%;
    font-family: 'Noto Serif JP', serif;
	font-weight: 700;
    letter-spacing: 0.2rem;
}
	
#concept img {
    width: 100%;
    margin-bottom: 10px;
    margin-top: 30px;
}
#concept p {
	font-weight: 400;
    margin: 10px 0px;
    line-height: 220%;
    font-size: 1.8rem;
    color: #333333;
}

   #concept.delighter {transition: all 1s ease-out;transform: translateY(10%); opacity: 0;}
   #concept.delighter.started {transform: none;opacity: 1;}
   #concept.delighter.started.ended {}

}

@media screen and (max-width: 768px) {
	
main {
    width: 100%;
    margin: 0px auto;
    background-color: #FFFFFF;
}

/*== ページヘッダー ==*/

.contentsHeader {
    text-align: center;
}
.contentsHeader img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.contentsHeader h1 {
    font-size: 2.2rem;
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
	padding-bottom: 50px;
    color: #333333;
    letter-spacing: 0.3rem;
    padding-top: 50px;
    border-bottom: 1px solid #D1D1D1;
    display: inline-block;
	line-height: 180%;
}
.contentsHeader .en {
    font-size: 1rem;
	color: #CCCCCC;
    display: block;
}
.contentsHeader .price {
    font-size: 1.8rem;
    display: block;
}
.contentsHeader p {
    width: 700px;
    margin-left: auto;
    margin-right: auto;
}


/*====================================================================

   トップページ

====================================================================*/

/*== トップページコンセプト ==*/

#concept {
    width: 100%;
    text-align: center;
    margin: 0px auto;
    max-width: 1000px;
	padding-top: 30px;
}

#concept h1 {
    font-size: 2rem;
    color: #333333;
	margin: 20px;
    line-height: 160%;
    font-family: 'Noto Serif JP', serif;
    font-weight: 700;
    letter-spacing: 0.2rem;
}
	
#concept img {
    width: 100%;
    margin-top: 30px;
}
#concept p {
	font-weight: 400;
    margin: 20px;
    line-height: 220%;
    font-size: 1.5rem;
    color: #333333;
}

   #concept.delighter {transition: all 1s ease-out;transform: translateY(10%); opacity: 0;}
   #concept.delighter.started {transform: none;opacity: 1;}
   #concept.delighter.started.ended {}

}
	

/*====================================================================

  Form

====================================================================*/
.formH2 {
	font-size: 2rem;
	color: #AC3435;
	text-decoration: underline;
	text-align: center;
	width: 80%;
	margin: 20px auto;	
}
.formP {
	width: 80%;
	max-width: 1000px;
	margin: 30px auto;
}

#contactForm {
    max-width: 800px;
    padding: 0px;
    margin: 50px auto;
}

#contactForm h3 {
    display: inline-block;
    font-size: 2rem;
	font-weight: bold;
	color: #333;
	margin: 20px 0px 10px;
}

.contactTel {
    padding: 30px;
    border: 1px solid #ECECEC;
    display: block;
    text-decoration: none;
    color: #555555;
    font-size: 1.6rem;
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 180%;
    width: 100%;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 50px;
    background-color: #F0F0F0;
}

.contactTel strong {
    font-family: 'Noto Serif SC', serif;
	font-size: 3rem;
}

.contactTel img {
	width: 160px;
}

#contactForm dl {
    width: 100%;
    float: left;
    margin-bottom: 20px;
}

#contactForm dl dt {
    margin: 10px 0px;
    text-align: left;
    font-size: 1.8rem;
}

#contactForm dl dt span {
    font-weight: bold;
    padding-top: 2px;
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 2px;
    font-size: 77%;
    color: #AC3435;
    margin: 0 0 0 10px;
    border: 1px solid #AC3435;
}

#contactForm dl dd input[type="text"], #contactForm dl dd input[type="Email"] {
    padding: 20px;
    font-size: 2rem;
    color: #333;
    border-radius: 3px;
    border: 1px solid #DDD;
}

#contactForm dl dd textarea {
    width: 100%;
    height: 150px;
	padding: 20px;
    font-size: 2rem;
    color: #333;
    border-radius: 3px;
    border: 1px solid #DDD;
}

#contactForm dl dd input {
    width: 100%;
}

#contactForm dl dd {
	display: flex;
	align-items:baseline;
}

#contactForm dl dd span {
	display: inline-block;
	margin: 0px 10px;
}

select{
    outline: none;
    text-indent: 0.01px;
    text-overflow: '';
    background: none transparent;
    vertical-align: middle;
    font-size: inherit;
    color: inherit;
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
select option{
  background-color: #fff;
  color: #333;
}
select::-ms-expand {
  display: none;
}
select:-moz-focusring { 
  color: transparent; 
  text-shadow: 0 0 0 #828c9a;
}

.select-wrap {
    position: relative;
}
.select-wrap:before {
    z-index: 1;
    position: absolute;
    right: 15px;
    top: 0;
    content: "\f123";
    font-family: "IonIcons";
    line-height: 43px;
    color: #7F878C;
    pointer-events: none;
}
select{
    outline:none;
    -moz-appearance: none;
    text-indent: 0.01px;
    text-overflow: '';
    background: none transparent;
    vertical-align: middle;
    font-size: inherit;
    color: inherit;
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 40px;
    padding: 8px 12px;
    border:1px solid #ddd;
    color:#828c9a;
    width:100%;
    border-radius:3px;
}
select option{
  background-color: #fff;
  color: #333;
}
select::-ms-expand {
  display: none;
}
select:-moz-focusring { 
  color: transparent; 
  text-shadow: 0 0 0 #828c9a;
}


.formBtnCont {
    width: 100%;
    text-align: center;
}

.formBtnCont input[type="submit"] {
    padding-top: 20px;
    padding-right: 40px;
    padding-left: 40px;
    padding-bottom: 20px;
    background-color: #AC3435;
    color: #FFFFFF;
    font-size: 110%;
    border-radius: 50px;
    border-style: none;
}


/*== FormPrivacy ==*/

#formPrivacy {
    width: 100%;
    float: left;
    padding-top: 10px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 20px;
    font-size: 80%;
    height: 200px;
    overflow-x: hidden;
    overflow-y: scroll;
    border: 1px solid #CCCCCC;
    margin-bottom: 30px;
}

#formPrivacy li h4 {
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 10px;
}


/*====================================================================

  ページメニュー

====================================================================*/

@media screen and (min-width: 769px) {
#pageMenu {
	width: 100%;
	margin: 0px auto;
	display: flex;
	border-left: 1px solid #ECECEC;
}

#pageMenu section {
    width: 50%;
    padding: 30px 1.5%;
    border-right: 1px solid #ECECEC;
	display: flex;
    flex-direction: column;
}

#pageMenu section img {
	width: 100%;
}

#pageMenu section h1 {
	font-family: 'Noto Serif JP', serif;
    font-weight: 700;
	font-size: 2rem;
	line-height: 100%;
	color: #333333;
	text-align: center;
	margin: 20px 0px 10px;
}

#pageMenu section h1 span {
	font-size: 1rem;
	font-weight: 200;
	color: #CCCCCC;
}

#pageMenu section p {
    font-weight: 200;
    font-size: 1.6rem;
	color: #333333;
	padding: 0px 10px 10px;
}

#pageMenu section a {
	width: 80%;
    font-weight: 700;
    font-size: 1.4rem;
	color: #333333;
    text-decoration: none;
    text-align: center;
    margin-top: auto;
    margin-left: auto;
    margin-bottom: 1.5%;
    margin-right: auto;
    padding: 10px 10px;
    border-top: 1px solid #CCCCCC;
    border-bottom: 1px solid #CCCCCC;
}

   #pageMenu section.delighter {transition: all 1s ease-out;transform: translateY(10%); opacity: 0;}
   #pageMenu section.delighter.started {transform: none;opacity: 1;}
   #pageMenu section.delighter.started.ended {}
}

@media screen and (max-width: 768px) {
#pageMenu {
	width: 100%;
	margin: 0px auto;
	padding-bottom: 30px;
	display: flex;
	flex-wrap: wrap;
	border-left: 1px solid #ECECEC;
}

#pageMenu section {
    width: 50%;
    padding: 3%;
    border-right: 1px solid #ECECEC;
	display: flex;
    flex-direction: column;
}

#pageMenu section img {
	width: 100%;
}

#pageMenu section h1 {
	font-family: 'Noto Serif JP', serif;
    font-weight: 600;
	font-size: 2rem;
	line-height: 100%;
	color: #333333;
	text-align: center;
	margin: 20px 0px 10px;
}

#pageMenu section h1 span {
	font-size: 1rem;
	font-weight: 200;
	color: #CCCCCC;
}

#pageMenu section p {
    font-weight: 400;
    font-size: 1.4rem;
	color: #333333;
	padding: 0px 10px 10px;
}

#pageMenu section a {
	width: 80%;
    font-weight: 700;
    font-size: 1.4rem;
	color: #333333;
    text-decoration: none;
    text-align: center;
    margin-top: auto;
    margin-left: auto;
    margin-bottom: 1.5%;
    margin-right: auto;
    padding: 10px 10px;
    border-top: 1px solid #CCCCCC;
    border-bottom: 1px solid #CCCCCC;
}

   #pageMenu section.delighter {transition: all 1s ease-out;transform: translateY(10%); opacity: 0;}
   #pageMenu section.delighter.started {transform: none;opacity: 1;}
   #pageMenu section.delighter.started.ended {}
}

/*====================================================================

  Footer

====================================================================*/


footer {
	background-color: #FFFFFF;
    color: #333333;
    font-size: 1.4rem;
    padding-top: 0px;
    text-align: center;
}

.pageTop {
    width: 100%;
    display: block;
    background-color: #FFFFFF;
    text-align: center;
    color: #FFFFFF;
}

.pageTop img {
    width: 40px;
    top: -20px;
    position: relative;
}

/*====================================================================

  フッター

====================================================================*/

.footerInfo{
    width: 100%;
    text-align: center;
    margin: 0px;
    padding: 0px;
}

.footerInfo h2 {
    font-family: 'Noto Serif JP', sans-serif;
    font-size: 2.3rem;
    color: #FFFFFF;
    margin: 0px 0px 20px;
    padding: 20px;
    border-bottom: 1px solid #F1F1F1;
    background-image: -webkit-linear-gradient(0deg,rgba(25,136,0,1.00) 0%,rgba(31,156,0,1.00) 15%,rgba(31,156,0,1.00) 85%,rgba(25,136,0,1.00) 100%);
    background-image: -moz-linear-gradient(0deg,rgba(25,136,0,1.00) 0%,rgba(31,156,0,1.00) 15%,rgba(31,156,0,1.00) 85%,rgba(25,136,0,1.00) 100%);
    background-image: -o-linear-gradient(0deg,rgba(25,136,0,1.00) 0%,rgba(31,156,0,1.00) 15%,rgba(31,156,0,1.00) 85%,rgba(25,136,0,1.00) 100%);
    background-image: linear-gradient(90deg,rgba(25,136,0,1.00) 0%,rgba(31,156,0,1.00) 15%,rgba(31,156,0,1.00) 85%,rgba(25,136,0,1.00) 100%);
}

.footerInfo p {
    font-size: 1.6rem;
	line-height: 180%;
    margin-bottom: 20px;
}

.footerInfo img {
    float: left;
	height: 300px;
    object-fit: cover;
}

#viewAndMap {
	width: 100%;
	max-width: 1000px;
	display: flex;
	margin: 0px auto;
}

#viewAndMap img {
	width: 50%;
}

#viewAndMap iframe {
	width: 50%;
}

.copyright {
    font-size: 1.4rem;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	color: #333333;
    display: block;
    margin: 30px 0px;
	padding: 30px 0px 0px;
	border-top: 1px solid #1F9C00;
}



.mainTxt {
		max-width: 850px;
	padding: 30px 0px;
	margin: 10px auto;

}

.txtPick span {
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	display: block;
	font-size: 1.8rem;
	background-color: #F2F2F2;
	text-align: center;
	max-width: 850px;
	padding: 30px 0px;
	margin: 10px auto;
	border: 1px solid #EEEEEE;
}


.otherHealth {
		max-width: 900px;
	margin: 10px auto;
	padding: 20px 0px;
}

.otherHealth h2 {
	font-family: 'Noto Serif JP', serif;
	font-size: 2rem;
	font-weight: 700;
    border-bottom: 1px solid #ECECEC;
    padding: 10px;
}

.otherHealth p {
    padding: 10px 10px 30px;
}

#facility {
	max-width: 900px;
	margin: 10px auto;
}

#facility tr th {
	width: 25%;
	border-bottom: 1px solid #CCCCCC;
	padding: 30px 10px;
}

#facility tr td {
	border-bottom: 1px solid #CCCCCC;
	padding: 30px;
}


/*====================================================================

  QandA

====================================================================*/

#QandA {
		max-width: 900px;
	margin: 10px auto;

}

#QandA dt {
	font-size: 2rem;
	font-weight: 700;
    font-family: 'Noto Serif JP', sans-serif;
	padding: 20px;
	border-top: 2px solid #ECECEC;
	border-bottom: 2px solid #CCCCCC;
}

#QandA dt span {
	font-weight: 700;
	padding: 0px 10px 0px;
}

#QandA dd {
	font-size: 1.8rem;
	line-height: 180%;
	padding: 30px;
	margin: 0px 0px 30px;
}





/*====================================================================

  NEW

====================================================================*/

.priceList {
	width: 100%;
	padding: 20px 0px;
	margin: 30px 0px;
	border-collapse: collapse;
}

.priceList th {
	font-size: 1.4rem;
	background-color: #ECECEC;
	padding: 6px;
	border: 1px solid #CCCCCC;
}

.priceList td {
	font-size: 1.6rem;
	line-height: 160%;
	padding: 12px;
	margin: 0px;
	border: 1px solid #CCCCCC;
}


