html,
body {
/*
    font-family: 'Noto Sans JP', sans-serif;
	font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
*/
	font-family: "Kiwi Maru", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1em;
	line-height: 1.5;
	letter-spacing: 0.05em;
}

html {
	scroll-behavior: smooth;
	transition: 0.5s;
	
}
.overflow-h {
	overflow: hidden;
}
a { 
	text-decoration: none;
	color:black;
	transition: transform .3s;
}

h2 {
	margin: 1rem;
}
.sp-br {
	display: none;
}

.ps-br {
	display: table-cell;
}

.fd-in {
	opacity: 0;
    transform: translate(0, 60px);
    -webkit-transform: translate(0, 60px);
}

.fd-done {
    opacity: 1.0;
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
}

section {
    overflow: hidden;
    -webkit-transition: .8s;
    transition: .8s;
	position: relative;
	margin-top: 10%;
}

@media (max-width: 600px) {
	section {
		margin-top: 40%;
	}
}

section .image {
	width: 100%;
	max-width: 1000px;
	text-align: center;
}
.flex {
	display: flex;
	justify-content: center;	
	margin-bottom: 50px;
}
.flex-image {
    object-fit: cover;
    object-position: 50% 60%;
    height: 350px;
    width: 100%;
}

.section__title {
    font-size: 28px;
    text-align: center;
	margin: 125px auto 2.5%;
}
.section__info {
	text-align: center;
	font-size: 18px;
/*	font-weight: bold;*/
	margin: 0 auto 2.5%;
	width: 100%;
	max-width: 900px;
}
.marker {
	text-decoration: underline; /* 下線 */
	text-decoration-thickness: 0.5em; /* 線の太さ */
	text-decoration-color: rgba(255, 228, 0, 0.6); /* 線の色 */
	text-underline-offset: -0.2em; /* 線の位置。テキストに重なるようにやや上部にする */
	text-decoration-skip-ink: none;
	font-size: 1.175em;
}
.about, .point, .gallery, .price, .cta {
    padding: 50px 8% 100px;
}
@media (max-width: 600px) {
	.flex-image {
		height: 150px;
	}
	.section__info {
		font-size: 16px;
	}
}

@media (max-width: 768px) {
	.section__title {
		font-size: 1.25rem;
	}
	.about, .gallery, .price, .cta {
		padding: 50px 5%;
	}
	.point {
		padding: 50px 0%;
	}
}

.section__title--discription {
    font-size: 18px;
    text-align: center;
    margin: 0 10px 50px;
	font-weight: bold;
}

.hero {
	position: relative;
	/*padding: 180px 10% 350px;
	background-image: url("../images/header.jpg");
	background-position: center;
	background-size: cover;*/
	height: 100vh;
    /*background-image: linear-gradient(-45deg, #FFC796 0%, #FF6B95 100%);*/
    color: deeppink;
	text-shadow: 
    white 3px 0px 3px, white -3px 0px 3px,
    white 0px -3px 3px, white -3px 0px 3px,
    white 3px 3px 3px, white -3px 3px 3px,
    white 3px -3px 3px, white -3px -3px 3px,
    white 1px 3px 3px, white -1px 3px 3px,
    white 1px -3px 3px, white -1px -3px 3px,
    white 3px 1px 3px, white -3px 1px 3px,
    white 3px -1px 3px, white -3px -1px 3px,
    white 1px 1px 3px, white -1px 1px 3px,
    white 1px -1px 3px, white -1px -1px 3px;
}
.hero img {
	width: 100%;
	height: auto;
}
.hero img:nth-child(3) {
	/*max-width: 1200px;*/
	max-width: 900px;
	height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	margin:0;
	padding:0;
}

@media (max-width: 768px) {
	.hero {
		margin-top: 0vh;
		height: 50vh;
	}
	.hero img:nth-child(3) {
		max-width: 100%;
		height: auto;
		position: absolute;
		top: 50%;
		left: 50%;
		-ms-transform: translate(-50%,-50%);
		-webkit-transform: translate(-50%,-50%);
		transform: translate(-50%,-50%);
		margin:0;
		padding:0;
	}
}

.hero h1 {
	position: absolute;
	top: 40%;
	left: 50%;
	-ms-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	margin:0;
	padding:0;
    font-size: 3.5em;
    line-height: 1;
    font-weight: 900;
	max-width: 1000px;
}

.hero p {
	position: absolute;
	top: 50%;
	left: 40%;
	-ms-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	margin:0;
	padding:0;
    font-size: 1.5rem;
    line-height: 1.5;
    font-weight: bold;
	color: hotpink;
}

@media (max-width: 768px) {
    .hero p {
        line-height: 1.5;
    }
}

.hero a {
	position: absolute;
	top: 70%;
	left: 65%;
    background: #fff;
    padding: 15px 40px 15px 20px;
    margin: 40px 0 0;
    font-size: 1.6rem;
    font-weight: 900;
    color: #FF6B95;
    text-decoration: none;
    -webkit-transition: .5s;
    transition: .5s;
    border: 2px solid #fff;
	text-shadow: none;
}

@media (max-width: 768px) {
    .hero a {
		display: block;
        left: 0%;
		top:75%;
    }
}

.hero a::after {
    position: absolute;
    content: "";
    right: 20px;
    width: 10px;
    height: 10px;
    top: calc(50% - 4px);
    border-top: 2px solid #FF6B95;
    border-right: 2px solid #FF6B95;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

.hero a:hover {
    background: #FF6B95;
    color: #fff;
}

.hero a:hover::after {
    border-color: #fff;
}
.about {
	margin: 0;
}

.about__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.about__image {
    width: 50%;
	text-align: center;
}
.about__image h2 {
	text-align: center;
}
.about__image img {
    width: 80%;
   /* height: 90%;
	object-fit: cover;
	object-position: bottom center;*/
}
.about__text ul li {
	font-size: 1rem;
}
.about__text ul li span {
	font-size: 1.25rem;
	font-weight: bold;
}
@media (max-width: 768px) {
    .about__image {
        width: 100%;
    }
	.about__image img {
		width: 100%;
	}
}

.about__text {
    width: 50%;
}
.about__text span {
	font-size: 1rem;
}
.about__text li {
	margin-left: 70px;
	font-size: 1.125rem;
}
.about__text h2:nth-child(2)
+

ul {
	list-style-type: square;
}

@media (max-width: 768px) {
    .about__text {
        width: 100%;
    }
}

.about__text p {
    line-height: 2;
    margin-left: 50px;
	margin-bottom: 2rem;
    font-size: 1rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .about__text p {
        margin: 20px 10px 0;
    }
}

.gallery__list {
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.gallery__item {
    width: calc(33% - 10px);
	margin-left: 10px;
}

/*.gallery__item:not(:nth-child(-n+2)) {
    margin-top: 20px;
}*/

/*.gallery__item:nth-child(2n) {
    margin-left: 20px;
}*/

.gallery__item img {
    width: 100%;
	max-height: 250px; 
	object-fit: cover;
	object-position: center;
    height: auto;
}
@media (max-width: 768px) {
	.gallery__item img {
		max-height: auto;
	}
}


.gallery__item a {
    -webkit-transition: .5s;
    transition: .5s;
}

.gallery__item a:hover {
    opacity: .7;
}

.gallery__item a:hover img {
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
                    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
	.gallery__item {
		width: calc(50% - 10px);
		margin: 5px;
	}	
}


.price {
    background: #f7f7f7;
}

.price__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    list-style-type: none;
}

.price__item {
    background: #fff;
    text-align: center;
    -webkit-box-shadow: 0 px 10px rgba(0, 0, 0, 0.15);
                    box-shadow: 0 px 10px rgba(0, 0, 0, 0.15);
    padding: 50px 30px;
	margin-bottom: 15px;
    width: calc(33% - 15px);
	min-width: 300px;
}
.price__item span {
	font-size: 1rem;
	color: grey;
}
.price__item:nth-child(2n),.price__item1:nth-child(2n){
    margin-left: 30px;
}
.price__item1 {
    background: #fff;
    text-align: center;
    -webkit-box-shadow: 0 px 10px rgba(0, 0, 0, 0.15);
                    box-shadow: 0 px 10px rgba(0, 0, 0, 0.15);
    padding: 50px 30px;
	margin-bottom: 15px;
    width: calc(66% - 15px);
}
.price__item2 {
    background: #fff;
	display: flex;
    text-align: center;
    -webkit-box-shadow: 0 px 10px rgba(0, 0, 0, 0.15);
                    box-shadow: 0 px 10px rgba(0, 0, 0, 0.15);
	margin-top: 30px;
    padding: 50px 30px;
    width: calc(100% - 15px);
	font-size: 1.375rem;
}
.price__item2 div {
	width: 30%;
	font-size: 1rem;
	text-align: left;
	margin: 0 10px;
}
.price__item2 p {
	padding-left:1em;
	text-indent:-0.7em;
	margin-bottom: 1rem;
}
.price__item2 .kiyaku {
	padding-left:1em;
	text-indent:-1em;
	margin-bottom: 1rem;
}
.price__item2 span {
	font-weight: bold;
	font-size: 1.125rem;
}
.price__item2 .red {
	color: red;
}
@media (max-width: 768px) {
	.price__item2 {
		display: block;
		padding: 50px 15px;
	}
	.price__item2 div {
		width: 100%;
	}
}


@media (max-width: 768px) {
    .price__item,.price__item1 {
        width: 100%;
    }
    .price__item:not(:first-child) {
        margin: 30px 0;
    }
	.price__item:nth-child(2n),.price__item1:nth-child(2n){
		margin-left: 0px;
	}
}

.price__item h3 {
    font-size: 24px;
    line-height: 1;
    margin-bottom: 15px;
}

.price__item .yen {
	width: 70%;
	margin: 0 auto;
    font-size: 64px;
    font-weight: 100;
    line-height: 1;
	background:linear-gradient(transparent 80%, #FFC6E4 0%);
}

.price__item .yen span {
    font-size: 30px;
}

.price__item .cando {
    margin: 40px 0 0;
}

.price__item .cando ol {
    list-style-type: none;
}

.price__item .cando li {
    background: #f7f7f7;
    padding: 10px;
    font-size: 18px;
    border-radius: 6px;
	text-align: left;
}

.price__item .cando li:not(:first-child) {
    margin: 15px 0 0;
}

.yoyaku {
	display:inline-block;
	margin-top: 2rem;
	padding:11px 50px;
	line-height:1.4;
	border-radius:4px;
	background-color:#0073d9;
	font-family:Meiryo,'Hiragino Kaku Gothic Pro','MS PGothic';
	font-size:16px;
	text-align:center;
	color:#ffffff;
	text-decoration:none;
}


.cta__btn {
    text-align: center;
	margin-bottom: 3%;
}

.cta__btn a {
    display: inline-block;
    background: #FF6B95;
    padding: 15px 40px 15px 20px;
    margin: 0px 0 0;
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    -webkit-transition: .5s;
    transition: .5s;
    border: 2px solid #fff;
    position: relative;
}
.section__title--discription span {
	font-size: 0.65rem;
}

@media (max-width: 768px) {
	.cta__btn {
		margin-bottom: 10%;
	}
    .cta__btn a {
        display: block;
    }
	.sp-br {
		display: block;
	}
	.ps-br {
		display: none;
	} 
}

.cta__btn a::after {
    position: absolute;
    content: "";
    right: 20px;
    width: 8px;
    height: 8px;
    top: calc(50% - 4px);
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.cta__btn a:hover {
    border-color: #FF6B95;
    background: #fff;
    color: #FF6B95;
}

.cta__btn a:hover::after {
    border-color: #FF6B95;
}

footer {
    padding: 15px 0;
    background: #444;
    text-align: center;
    color: #fff;
}

footer small {
    font-size: 14px;
    line-height: 1;
}




.page_top{
  width: 50px;
  height: 50px;
  position: fixed;
  right: 20px;
  bottom: 50px;
  background: #3f98ef;
  opacity: 0.6;
  border-radius: 50%;
}
.page_top a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
.page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -15px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
.grid {
	display: grid;
	grid-template-columns: 1fr 1.5fr 1fr 1.5fr;
	grid-template-rows: auto
	grid-column-gap: 0px;
	grid-row-gap: 20px; 
	margin: 3rem auto 1rem;
	align-content: center;
	max-width: 1000px;
}
.grid h3 {
	margin-left: 2rem;
	background-clip: padding-box;
	border-left: solid 5px rgba(207,207,207,.5);
	border-bottom: solid 1px #c0c0c0;
	padding: 1rem 0 1rem 1rem;
}
.grid p {
	border-bottom: solid 1px #c0c0c0;
	font-weight: bold;
	padding: 1rem 0 1rem 1rem;
}
@media (max-width: 768px) {
	.grid {
		margin: 1rem;
		grid-template-columns: 1fr 1.5fr;
		grid-template-rows: repeat(6, 1fr);
	}
	.grid h3 {
		margin: 0;
		padding: 1rem 0 0 1rem;
	}
	.grid p {
		padding: 1rem 0 0 1rem; 
	}
	.grid h3 span {
		font-size: 75%;
	}
}

/*grid2*/
.grid2 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 50vw));
	grid-template-rows: repeat(auto-fit, minmax(200px, 50vw));
	max-width: 100vw;
	margin: 0 auto;
}
.grid-end {
	grid-row: 3 / 4;
	grid-column: 1 / 3;	
}
.grid2 section {
	height: auto;
	max-height: auto;
}
.grid2 img {
	width: 100%;
}

@media (max-width: 768px) {
	.grid2 {
	}
}


.cta__btn {
    text-align: center;
	margin-bottom: 10%;
}

.cta__btn a {
    display: inline-block;
    background: #FF6B95;
    padding: 15px 40px 15px 20px;
    margin: 0px 0 0;
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    -webkit-transition: .5s;
    transition: .5s;
    border: 2px solid #fff;
    position: relative;
}

.point__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    row-gap: 10px;
    column-gap: 10px;
    margin-top: 0.3em;
	margin-bottom: 0.3em;
	font-size: 1.3rem;
}
.contact_form {
	border: 2px solid black;
}

.contact_area {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items:center;
	padding: 10px;
	width: 20%;
	text-align: center;
	line-height: 1.3;
}
.contact_area1 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items:center;
	padding: 10px;
	width: 33%;
	text-align: center;
	line-height: 1.3;
}
.contact_area i,.contact_area1 i {
	padding-bottom: 1rem;
}
@media (max-width: 768px) {
	.contact_area {
		width: 35%;
	}
	.contact_area1 {
		width: 45%;
	}
}

.border1 {
	border: 2px solid forestgreen;
	border-radius: 5px;
}
.border2 {
	border: 2px solid #AC6B22;
	border-radius: 5px;
}
.border3 {
	border: 2px solid #2100A8;
	border-radius: 5px;
}
.border4 {
	border: 2px solid black;
	border-radius: 5px;
}

.color_green {
	color: forestgreen;
}
.color_ochre {
	color: #d59f62;
}
.color_ultramarine {
	color: #4c6cb3;
}

.box {
    margin: 2em 0;
	padding: 0.5em 0;
    background: rgba(241,241,241,.3);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.22);
}
.box .box-title {
    font-size: 1.375em;
    background: #FFE6E7;
    padding: 4px;
    text-align: center;
    color: black;
    font-weight: bold;
    letter-spacing: 0.05em;
	border: 1px solid gray;
	border-top: 1px solid gray;
	/*text-shadow:
    white 1px 1px 2px, white -1px 1px 2px,
    white 1px -1px 2px, white -1px -1px 2px;*/
}
.box p {
    padding: 15px 20px;
    margin: 0;
}
.info-box {
	position: relative;
	background-image:url("../images/title2.jpg");
	background-color:rgba(0,0,0,0.5);
	background-blend-mode:darken;
	background-size: cover;
}
/*モーダルW*/
/*infoエリアをはじめは非表示*/
#info1,#info2,#info3 {
	display: none;
}
.modaal-wrapper img {
	width: 100%;
}

/*モーダルの横幅を変更したい場合*/
.modaal-container{
    max-width: 600px;
}

/*モーダルのボタンの色を変更したい場合*/
.modaal-close:after, 
.modaal-close:before{
	background:#ccc;	
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before{
	background:#666;
}
.modaal-inner-wrapper {
    padding: 80px 10px;
}
.modaal-content-container {
    padding: 10px;
}
.qr-area {
	max-width: 1100px;
	margin: 0 auto;
}