@charset "UTF-8";

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box
}

html {
	scroll-behavior: smooth
}

body {
	color: #333;
	font-family: "Noto Sans JP", serif;
	background: #fff;
	line-height: 1.8
}

body.is-menu-open {
	overflow: hidden
}

img {
	display: block;
	width: 100%;
	height: auto
}

a {
	color: inherit;
	text-decoration: none
}

ul {
	list-style: none
}

button {
	padding: 0;
	border: 0;
	background: none;
	color: inherit;
	font: inherit;
	cursor: pointer
}

.header {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1000;
	width: 100%;
	height: 150px;
	transition: height .4s ease, background .4s ease, box-shadow .4s ease, transform .4s ease
}

.header__inner {
	position: relative;
	display: flex;
	align-items: flex-start;
	width: 100%;
	height: 100%;
	padding: 15px 34px
}

.header__logo {
	position: relative;
	z-index: 3;
	flex-shrink: 0;
	width: 150px;
	transition: width .4s ease
}

.header__logo img {
	width: 100%
}

.header__nav {
	position: absolute;
	top: 50px;
	right: 14px;
	width: min(900px, calc(100% - 250px));
	padding: 0 20px;
	background: #fff;
	border-radius: 50px;
	box-shadow: 0 4px 7px rgba(0, 0, 0, .24);
	transition: top .4s ease, width .4s ease, border-radius .4s ease, box-shadow .4s ease
}

.header__list {
	display: flex;
	align-items: center;
	justify-content: space-between
}

.header__item {
	flex: 1;
	text-align: center
}

.header__item a {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 3px 8px;
	line-height: 1.35
}

.header__item a::after {
	position: absolute;
	right: 18%;
	bottom: 3px;
	left: 18%;
	height: 2px;
	background: #11b9c8;
	content: "";
	transform: scaleX(0);
	transform-origin: center;
	transition: transform .3s ease
}

.header__item a:hover::after {
	transform: scaleX(1)
}

.header__en {
	color: #FA9648;
	font-size: 14px
}

.header__ja {
	color: #18BFD2;
	font-size: 16px;
	font-weight: 600;
	white-space: nowrap
}

.header__contact {
	position: absolute;
	top: 4px;
	right: 28px;
	display: flex;
	align-items: center;
	gap: 13px;
	color: #fff
}

.header__tel {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 26px;
	line-height: 1;
	text-shadow: 0 2px 5px rgba(0, 0, 0, .5)
}

.header__tel-icon {
	display: block;
	width: 22px;
	height: 22px;
	background: url("../images/i-tel.png") no-repeat center/contain;
	margin-right: 5px;
}

.header.is-fixed .header__tel-icon {
	background-image: url("../images/i-tel02.png");
}

.header__sns {
	width: 31px
}

.hamburger {
	display: none
}

.header.is-fixed,
.subpage .header {
	position: fixed;
	height: 100px;
	background: #fff;
	box-shadow: 0 3px 12px rgba(0, 0, 0, .12)
}

.header.is-fixed .header__inner,
.subpage .header__inner {
	align-items: center;
	padding: 8px 30px
}

.header.is-fixed .header__logo,
.subpage .header__logo {
	width: 105px
}

.header.is-fixed .header__nav,
.subpage .header__nav {
	position: static;
	width: auto;
	margin: 0 auto;
	padding: 0;
	background: transparent;
	border-radius: 0;
	box-shadow: none
}

.header.is-fixed .header__item a,
.subpage .header__item a {
	min-width: 128px;
	min-height: 65px
}

.header.is-fixed .header__contact,
.subpage .header__contact {
	position: static;
	color: #e96e43
}

.header.is-fixed .header__tel,
.subpage .header__tel {
	text-shadow: none
}

.mv {
	position: relative;
	height: 1234px;
	background: linear-gradient(73.83deg, #D2FFFA 22.34%, #70CAC0 91.06%);
}

.mv::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 510px;
	background: #fff;
	content: "";
	z-index: 1
}

.mv::after {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 42%;
	height: 875px;
	background-color: #fff;
	background-image: radial-gradient(#9dddec 4px, transparent 4px);
	background-size: 16px 16px;
	content: "";
	pointer-events: none;
	z-index: 1;
}

.mv__slides {
	position: absolute;
	top: 0;
	right: 0;
	width: min(1245px, 80vw);
	aspect-ratio: 16 / 9;
	height: auto;
	overflow: hidden;
	z-index: 2;
}

.mv__slide {
	position: absolute;
	inset: 0;
	z-index: 1;
	visibility: hidden;
	opacity: 0
}

.mv__slide picture,
.mv__slide img {
	display: block;
	width: 100%;
	height: 100%
}

.mv__slide img {
	width: 100%;
	max-height: 708px;
}

.mv__slide.is-active {
	z-index: 2;
	visibility: visible;
	animation: mvFadeIn 1.8s ease forwards
}

.mv__slide.is-prev {
	z-index: 1;
	visibility: visible;
	animation: mvFadeOut 1.8s ease forwards
}

@keyframes mvFadeIn {
	0% {
		opacity: 0
	}

	100% {
		opacity: 1
	}
}

@keyframes mvFadeOut {
	0% {
		opacity: 1
	}

	100% {
		opacity: 0
	}
}

.mv__content {
	position: absolute;
	top: 195px;
	left: 5.5%;
	z-index: 4;
	width: 530px
}

.mv__catch {
	color: #009AAB;
	font-family: "Caveat", cursive;
	font-size: 70px;
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: .06em;
	text-shadow: 2px 2px 0 #fff, -1px -1px 0 #fff
}

.mv__lead {
	margin-top: 18px;
	color: #333;
	font-size: 20px;
	font-family: "Noto Serif JP", serif;
	font-weight: 600;
	line-height: 2;
	text-shadow: 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff
}

.pickup {
	position: absolute;
	bottom: 30%;
	left: 5%;
	z-index: 6;
	width: 58%;
	height: 285px;
	padding: 0;
	background: transparent
}

.pickup::before {
	position: absolute;
	bottom: 0;
	right: -60px;
	width: 108px;
	height: 109px;
	background: url("../images/watercolor-orange.png") center/contain no-repeat;
	content: "";
	pointer-events: none
}

.pickup::after {
	position: absolute;
	bottom: -200px;
	left: -8%;
	width: 239px;
	height: 219px;
	background: url("../images/watercolor-blue.png") center/contain no-repeat;
	content: "";
	pointer-events: none
}

.pickup__inner {
	position: relative;
	width: 100%;
	height: 100%
}

.pickup__title {
	position: absolute;
	top: 15px;
	left: 11%;
	z-index: 3;
	color: #DA5F3D;
	font-family: "Caveat", cursive;
	font-size: 43px;
	font-weight: 600;
	line-height: 1;
	transform: rotate(-3deg)
}

.pickup__slider {
	position: absolute;
	top: 45px;
	left: 9%;
	width: 452px
}

.pickup__viewport {
	overflow: hidden;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 4px 7px rgba(0, 0, 0, .25)
}

.pickup__track {
	display: flex;
	transition: transform .6s cubic-bezier(.22, .61, .36, 1)
}

.pickup__item {
	flex: 0 0 100%;
	min-width: 0
}

.pickup__item a {
	display: flex;
	align-items: center;
	min-height: 145px;
	padding: 17px
}

.pickup__image {
	flex-shrink: 0;
	width: 120px;
	height: 110px;
	overflow: hidden;
	background: #ddd
}

.pickup__image img {
	width: 100%;
	height: 100%;
	object-fit: cover
}

.pickup__body {
	min-width: 0;
	padding-left: 18px
}

.pickup__meta {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #05abc0;
	font-family: sans-serif;
	font-size: 14px;
	font-weight: 700
}

.pickup__category {
	padding: 1px 8px;
	border-radius: 20px;
	background: #12bccc;
	color: #fff;
	font-weight: 400;
	line-height: 1.5
}

.pickup__heading {
	margin-top: 11px;
	font-size: 15px;
	font-weight: 500
}

.pickup__arrow {
	position: absolute;
	top: 50%;
	z-index: 5;
	display: grid;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	background: #18BFD2;
	color: #fff;
	font-size: 24px;
	line-height: 1;
	place-items: center;
	transform: translateY(-50%);
	transition: transform .3s ease
}

.pickup__arrow:hover {
	transform: translateY(-50%) scale(1.08)
}

.pickup__arrow--prev {
	left: -25px
}

.pickup__arrow--next {
	right: -25px
}

.pickup__dots {
	position: absolute;
	top: 213px;
	left: 270px;
	display: flex;
	gap: 7px
}

.pickup__dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .95)
}

.pickup__dot.is-active {
	background: #25bec8
}

.pickup__decoration {
	display: none
}

.first-visual {
	position: relative;
	z-index: 8;
	width: 74%;
	margin: -370px 0 0 auto
}

.first-visual::before {
	position: absolute;
	top: -65%;
	right: 0;
	width: 145px;
	height: 216px;
	background: url("../images/watercolor-blue02.png") center/contain no-repeat;
	content: "";
	pointer-events: none
}

.first-visual__image {
	overflow: hidden;
}

.first-visual__image img {
	max-width: 900px;
	margin-left: auto;
}

.fade-up {
	opacity: 0;
	transform: translateY(45px);
	transition: opacity .9s ease, transform .9s ease
}

.fade-up.is-show {
	opacity: 1;
	transform: translateY(0)
}

.section-heading {
	text-align: center
}

.section-heading--left {
	text-align: left
}

.section-heading__en {
	color: #70CAC0;
	font-family: "Caveat", cursive;
	font-size: 128px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: .06em
}

.section-heading__ja {
	margin-top: 5px;
	color: #70CAC0;
	font-size: 24px;
	letter-spacing: .06em;
	font-weight: 700;
	font-family: "Noto Serif JP", serif;
}

.about {
	position: relative;
	padding: 75px 20px 120px;
	overflow: hidden;
	background: #fff;
	margin-top: -135px;
}

.about::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 70%;
	height: 440px;
	background-image: radial-gradient(rgba(145, 218, 235, .25) 4px, transparent 4px);
	background-size: 16px 16px;
	content: "";
	pointer-events: none
}

.about__inner {
	position: relative;
	z-index: 2;
	width: min(1030px, 90%);
	margin: auto
}

.about__content {
	margin-top: 28px;
	font-size: 16px;
	font-weight: 500;
	line-height: 2.2
}

.about__content p+p {
	margin-top: 8px
}

.about__decoration {
	position: absolute;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	pointer-events: none
}

.about__decoration--right {
	right: 5%;
	bottom: 40px;
	width: 243px;
	height: 249px;
	background-image: url("../images/watercolor-red.png");
}

.service {
	position: relative;
	padding: 100px 0 130px;
	overflow: hidden;
	background: #fff
}

.service__inner {
	position: relative;
	z-index: 2;
	width: min(1280px, 92%);
	margin: auto
}

.service__intro {
	width: 60%;
	margin: 35px auto 0;
	font-size: 16px;
	font-weight: 500;
	line-height: 2
}

.service__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 73px;
	margin-top: 48px
}

.service-card a {
	display: block
}

.service-card__image {
	position: relative;
	height: 340px;
	overflow: hidden;
	background: #ddd
}

.service-card__image::after {
	position: absolute;
	inset: 0;
	border: 1px solid rgba(255, 255, 255, .45);
	content: "";
	pointer-events: none
}

.service-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .6s ease
}

.service-card a:hover .service-card__image img {
	transform: scale(1.06)
}

.service-card__title {
	margin-top: 16px;
	text-align: center;
	font-size: 24px;
	font-weight: 500;
}

.service-card__more {
	display: none
}

.service__button {
	display: flex;
	justify-content: center;
	margin-top: 80px
}

.more-button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 330px;
	min-height: 70px;
	padding: 7px 8px 7px 50px;
	border-radius: 50px;
	background: #FA9648;
	color: #fff;
	font-family: sans-serif;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: .06em;
	transition: transform .3s ease, box-shadow .3s ease
}

.more-button i {
	position: relative;
	display: block;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #fff;
}

.more-button i::before {
	position: absolute;
	top: 50%;
	left: 13px;
	width: 30px;
	height: 2px;
	background: #FA9648;
	content: "";
	transform: translateY(-50%)
}

.more-button i::after {
	position: absolute;
	top: 50%;
	right: 12px;
	width: 8px;
	height: 8px;
	border-top: 2px solid #FA9648;
	border-right: 2px solid #FA9648;
	content: "";
	transform: translateY(-50%) rotate(45deg)
}

.more-button:hover {
	box-shadow: 0 6px 15px rgba(255, 145, 77, .35);
	transform: translateY(-3px)
}

.service__decoration {
	position: absolute;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	pointer-events: none
}

.service__decoration--left {
	top: 150px;
	left: 0;
	width: 215px;
	height: 215px;
	background-image: url("../images/watercolor-blue03.png");
}

.feature {
	position: relative;
	min-height: 640px;
	padding: 40px 0 0;
	background: #fff;
	overflow-x: clip;
}

.feature__inner {
	position: relative;
	z-index: 2;
	width: 100%;
	margin: auto
}

.feature__dot {
	position: absolute;
	top: 0;
	right: 0;
	width: 75%;
	height: 442px;
	background-image: radial-gradient(rgba(145, 218, 235, .25) 4px, transparent 4px);
	background-size: 16px 16px;
	pointer-events: none
}

.feature__deco {
	position: absolute;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	pointer-events: none
}

.feature__deco--red {
	top: 125px;
	left: 4%;
	width: 107px;
	height: 111px;
	background-image: url("../images/watercolor-red02.png");
}

.feature__deco--blue {
	top: -10%;
	right: -50px;
	width: 239px;
	height: 219px;
	background-image: url("../images/watercolor-blue.png");
}

.feature__content {
	width: 43%;
	margin: 0 auto;
}

.feature__text {
	margin-top: 50px;
	font-size: 16px;
	font-weight: 500;
	line-height: 2;
}

.feature__text p+p {
	margin-top: 3px
}

.feature__bottom {
	position: relative;
	display: flex;
	align-items: center;
	margin-top: 50px
}

.feature__image {
	overflow: hidden;
	border-radius: 0 10px 10px 0;
	max-width: 861px;
	width: 95%;
}

.feature__image img {
	display: block;
}

.feature .service__button {
	margin-left: 83px;
}

.information {
	position: relative;
	padding: 140px 20px;
	overflow: hidden;
}

.information::before {
	position: absolute;
	top: 0;
	right: 40%;
	width: 274px;
	height: 248px;
	background: url("../images/watercolor-orang03.png") center/contain no-repeat;
	content: "";
	pointer-events: none
}

.information .section-heading__ja {
	text-align: right;
}

.information__inner {
	position: relative;
	z-index: 2;
	width: min(1280px, 92%);
	margin: auto
}

.information__content {
	display: grid;
	grid-template-columns: minmax(0, 48%) minmax(0, 52%);
	align-items: center
}

.information__body {
	position: relative;
	z-index: 3;
	padding: 130px 0 20px 0
}

.information__text {
	margin-top: 50px;
	font-size: 16px;
	font-weight: 500;
	line-height: 2;
}

.information__text p+p {
	margin-top: 10px
}

.information__body .more-button {
	margin: 50px auto 0;
}

.information__visual {
	position: relative;
	min-height: 570px
}

.information__image {
	position: absolute;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 5px 16px rgba(0, 0, 0, .1)
}

.information__image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	background: #fff
}

.information__image::after {
	position: absolute;
	inset: 0;
	content: "";
	pointer-events: none
}

.information__image--01 {
	top: 115px;
	left: 60px;
	z-index: 2;
	width: auto;
	height: 280px;
}

.information__image--02 {
	top: 0;
	right: 2%;
	z-index: 1;
	width: auto;
	height: 280px;
}

.information__image--03 {
	right: -4%;
	bottom: 0;
	z-index: 3;
	width: auto;
	height: 280px;
}

.gallery {
	position: relative;
	padding: 110px 0 140px;
	overflow: hidden;
	background: #fff
}

.gallery::before {
	position: absolute;
	bottom: 5%;
	left: 0;
	width: 100%;
	height: 546px;
	background-color: #fff;
	background-image: radial-gradient(rgba(145, 218, 235, .25) 4px, transparent 4px);
	background-size: 16px 16px;
	content: "";
	pointer-events: none
}

.gallery__inner {
	position: relative;
	z-index: 2;
	width: min(926px, 92%);
	margin: auto
}

.gallery__intro {
	width: 78%;
	margin: 32px auto 0;
	font-size: 16px;
	font-weight: 500;
	line-height: 2;
}

.gallery__intro p+p {
	margin-top: 5px
}

.gallery__list {
	display: flex;
	justify-content: space-between;
	margin-top: 110px;
}

.gallery-card {
	text-align: center
}

.gallery-card a {
	margin: 44px auto 0;
}

.gallery-card__image {
	position: relative;
	overflow: hidden;
}

.gallery-card__body {
	padding-top: 18px
}

.gallery-card__button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 230px;
	min-height: 48px;
	margin: 14px auto 0;
	padding: 6px 7px 6px 28px;
	border-radius: 30px;
	background: #ff914d;
	color: #fff;
	font-family: sans-serif;
	font-size: 13px;
	letter-spacing: .06em;
	transition: transform .3s ease, box-shadow .3s ease
}

.gallery-card__button i {
	position: relative;
	display: block;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #fff
}

.gallery-card__button i::before {
	position: absolute;
	top: 50%;
	left: 9px;
	width: 12px;
	height: 1px;
	background: #ff914d;
	content: "";
	transform: translateY(-50%)
}

.gallery-card__button i::after {
	position: absolute;
	top: 50%;
	right: 9px;
	width: 6px;
	height: 6px;
	border-top: 1px solid #ff914d;
	border-right: 1px solid #ff914d;
	content: "";
	transform: translateY(-50%) rotate(45deg)
}

.gallery-card a:hover .gallery-card__button {
	box-shadow: 0 6px 16px rgba(255, 145, 77, .35);
	transform: translateY(-3px)
}

.gallery__decoration {
	position: absolute;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	pointer-events: none
}

.gallery__decoration--left {
	top: 60px;
	left: 0;
	width: 183px;
	height: 235px;
	background-image: url("../images/watercolor-orang02.png");
}

.online-shop {
	position: relative;
	padding: 200px 20px;
	overflow: hidden;
	background: #fff
}

.online-shop__inner {
	position: relative;
	z-index: 2;
	width: min(960px, 92%);
	margin: auto
}

.online-shop__intro {
	width: 60%;
	margin: 60px auto;
	font-size: 16px;
	font-weight: 500;
	line-height: 2;
}

.online-shop__intro p+p {
	margin-top: 5px
}

.online-shop__banner {
	position: relative;
	display: block;
	max-width: 945px;
	margin: 55px auto 0
}

.online-shop__image {
	position: relative;
}

.online-shop__image::after {
	position: absolute;
	inset: 0;
	content: "";
	pointer-events: none
}

.online-shop__image img {
	transition: transform .8s ease
}

.online-shop__banner:hover .online-shop__image img {
	transform: scale(1.04)
}

.online-shop__button {
	position: absolute;
	right: 20px;
	bottom: 18px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 384px;
	min-height: 70px;
	padding: 7px 7px 7px 24px;
	border-radius: 50px;
	background: #FA9648;
	color: #fff;
	font-weight: 500;
	font-size: 20px;
	letter-spacing: .06em;
	transition: transform .3s ease, box-shadow .3s ease
}

.online-shop__button i {
	position: relative;
	display: block;
	flex-shrink: 0;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #fff
}

.online-shop__button i::before {
	position: absolute;
	top: 50%;
	left: 13px;
	width: 30px;
	height: 2px;
	background: #FA9648;
	content: "";
	transform: translateY(-50%)
}

.online-shop__button i::after {
	position: absolute;
	top: 50%;
	right: 12px;
	width: 8px;
	height: 8px;
	border-top: 2px solid #FA9648;
	border-right: 2px solid #FA9648;
	content: "";
	transform: translateY(-50%) rotate(45deg)
}

.online-shop__banner:hover .online-shop__button {
	box-shadow: 0 7px 18px rgba(255, 145, 77, .38);
	transform: translateY(-3px)
}

.online-shop__decoration {
	position: absolute;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	pointer-events: none
}

.online-shop__decoration--right {
	top: 100px;
	right: 0;
	width: 200px;
	height: 227px;
	background-image: url("../images/watercolor-green.png");
}

.contact {
	position: relative;
	padding: 105px 20px 115px;
	background: #70CAC033;
	overflow-x: clip;
}

.contact__inner {
	position: relative;
	z-index: 2;
	width: min(920px, 92%);
	margin: auto;
	text-align: center
}

.contact__text {
	margin-top: 30px;
	font-size: 16px;
	font-weight: 500;
	line-height: 2;
}

.contact__text p+p {
	margin-top: 5px
}

.contact__buttons {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 74px;
	margin-top: 70px
}

.contact-button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-width: 282px;
	min-height: 58px;
	padding: 8px 24px;
	border-radius: 30px;
	background: #FA9648;
	color: #fff;
	font-family: "Noto Serif JP", serif;
	font-size: 24px;
	letter-spacing: .06em;
	box-shadow: 0 5px 14px rgba(255, 145, 77, .25);
	transition: transform .3s ease, box-shadow .3s ease
}

.contact-button:hover {
	box-shadow: 0 8px 20px rgba(255, 145, 77, .4);
	transform: translateY(-3px)
}

.contact-button__icon-tel {
	display: block;
	width: 22px;
	height: 22px;
	background: url("../images/i-tel.png") no-repeat center/contain;
	margin-right: 5px;
}

.contact-button__icon-mail {
	display: block;
	width: 29px;
	height: 21px;
	background: url("../images/i-mail.png") no-repeat center/contain;
	margin-right: 5px;
}

.contact__decoration {
	position: absolute;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	pointer-events: none
}

.contact__decoration--left {
	top: -70px;
	left: 10%;
	width: 182px;
	height: 188px;
	background-image: url("../images/watercolor-red02.png");
}

.contact__decoration--right {
	right: 0;
	bottom: 0;
	width: 255px;
	height: 287px;
	background-image: url("../images/watercolor-blue04.png");
}

.footer {
	position: relative;
	padding: 70px 0 0;
	background: #fff;
	background-image: radial-gradient(rgba(145, 218, 235, .25) 4px, transparent 4px);
	background-size: 16px 16px;
}

.footer__inner {
	width: min(1100px, 92%);
	margin: auto;
	text-align: center;
	position: relative;
}

.footer__logo img {
	width: 212px;
	margin: 0 auto;
}

.footer__address {
	margin-top: 35px;
	font-size: 16px;
	font-weight: 500;
}

.footer__tel {
	margin-top: 8px;
	font-size: 16px;
	font-weight: 500;
}

.footer__sns {
	display: flex;
	justify-content: center;
	gap: 14px;
	margin-top: 18px;
}

.footer__sns img {
	width: 34px;
}

.footer__nav {
	margin-top: 65px;
}

.footer__nav ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	max-width: 960px;
	width: 100%;
	background: #fff;
	border-radius: 30px;
	margin: 0 auto;
	box-shadow: 0 6px 18px rgba(0, 0, 0, .15);
}

.footer__nav li {
	flex: 1;
}

.footer__nav a {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 3px 8px;
	line-height: 1.35;
	font-size: 14px;
	color: #FA9648;
}

.footer__nav a::after {
	position: absolute;
	right: 18%;
	bottom: 3px;
	left: 18%;
	height: 2px;
	background: #11b9c8;
	content: "";
	transform: scaleX(0);
	transform-origin: center;
	transition: transform .3s ease
}

.footer__nav a:hover::after {
	transform: scaleX(1)
}

.footer__nav span {
	display: block;
	font-size: 16px;
	font-weight: 600;
	color: #18BFD2;
}

.footer__copy {
	text-align: center;
	margin-top: 70px;
	padding: 24px;
	background: #70CAC0;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
}

.page-top {
	position: fixed;
	right: 40px;
	bottom: 40px;
	width: 92px;
	height: 92px;
	border-radius: 50%;
	background: #18BFD2;
	box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: .35s;
	z-index: 999;
}

.page-top.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.page-top::before,
.page-top::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 24px;
	height: 6px;
	background: #fff;
	border-radius: 10px;
}

.page-top::before {
	transform: translate(-80%, -50%) rotate(-45deg);
}

.page-top::after {
	transform: translate(-20%, -50%) rotate(45deg);
}

.page-top:hover {
	transform: translateY(-6px);
	background: #22bdd1;
	box-shadow: 0 12px 26px rgba(0, 0, 0, .18);
}

.sp {
	display: none;
}

.sp-fixed-banner {
	display: none
}

@media(max-width:1200px) {
	.mv {
		height: 900px
	}

	.mv::before {
		height: 420px;
	}

	.mv::after {
		height: 700px;
	}

	.mv__content {
		top: 140px;
		left: 4%;
	}

	.mv__catch {
		font-size: 54px
	}

	.pickup {
		bottom: 150px;
		width: 63%
	}

	.pickup__slider {
		left: 8%;
		width: 440px
	}

	.pickup__title {
		left: 10%
	}

	.pickup::after {
		width: 150px;
		bottom: -150px;
	}

	.first-visual {
		margin-top: -150px
	}

	.about {
		margin-top: -190px;
		padding-top: 110px;
	}
}

@media(max-width:1100px) {

	.header.is-fixed .header__inner,
	.subpage .header__inner {
		padding: 10px 20px
	}

	.header__logo {
		width: 119px
	}

	.header__ja {
		font-size: 12px
	}

	.header__en {
		font-size: 12px
	}

	.header__contact {
		right: 20px
	}

	.header__tel {
		font-size: 20px
	}

	.header.is-fixed .header__item a,
	.subpage .header__item a {
		min-width: 100px
	}

	.header.is-fixed .header__tel,
	.subpage .header__tel {
		font-size: 19px
	}

	.footer__nav a {
		font-size: 12px;
	}

	.footer__nav span {
		font-size: 12px;
	}

	.section-heading__en {
		font-size: 96px;
	}

	.feature {
		padding-right: 20px;
	}

	.feature__content {
		width: 70%;
	}

	.feature__button {
		margin-left: 35px
	}

	.information__content {
		grid-template-columns: 44% 56%
	}

	.information__image--back {
		width: 62%;
		height: 280px
	}

	.information__image--front {
		width: 66%;
		height: 300px
	}
}

@media(max-width:820px) {
	.mv {
		height: 760px;
	}

	.mv::before {
		height: 325px;
	}

	.mv__catch {
		font-size: 45px;
	}

	.mv__lead {
		font-size: 16px;
		margin-top: 0;
	}

	.pickup__slider {
		left: 2%;
		width: 335px;
	}

	.pickup__title {
		font-size: 36px;
	}

	.pickup__heading {
		font-size: 14px;
	}

	.pickup__dots {
		left: 150px;
	}

	.mv::after {
		background-image: radial-gradient(#9dddec 3px, transparent 3px);
	}

	.first-visual::before {
		width: 100px;
		top: -250px;
	}

	.about::before,
	.feature__dot,
	.gallery::before,
	.footer {
		background-image: radial-gradient(rgba(145, 218, 235, .25) 3px, transparent 3px)
	}

	.header__inner,
	.header.is-fixed .header__inner,
	.subpage .header__inner {
		padding: 10px;
	}

	.header__contact {
		display: none;
	}

	.header__tel {
		display: none
	}

	.header__sns {
		width: 25px
	}

	.header__nav,
	.header.is-fixed .header__nav,
	.subpage .header__nav {
		position: fixed;
		top: 0;
		right: -100%;
		width: 100%;
		height: 100vh;
		margin: 0;
		padding: 100px;
		overflow-y: auto;
		border-radius: 0;
		background: rgba(255, 255, 255, .98);
		box-shadow: none;
		transition: right .4s ease;
		z-index: 9;
	}

	.header__nav.is-open,
	.header.is-fixed .header__nav.is-open,
	.subpage .header__nav.is-open {
		right: 0;
	}

	.header__list {
		display: block
	}

	.header__item {
		border-bottom: 1px solid #bde8eb
	}

	.header__item a,
	.header.is-fixed .header__item a,
	.subpage .header__item a {
		min-width: 0;
		min-height: 68px
	}

	.hamburger {
		position: fixed;
		top: 14px;
		right: 13px;
		display: block;
		width: 41px;
		height: 41px;
		background: #70CAC0;
		z-index: 1002;
	}

	.hamburger span {
		position: absolute;
		left: 9px;
		width: 22px;
		height: 2px;
		background: #fff;
		transition: top .3s ease, transform .3s ease, opacity .3s ease
	}

	.hamburger span:nth-child(1) {
		top: 12px
	}

	.hamburger span:nth-child(2) {
		top: 19px
	}

	.hamburger span:nth-child(3) {
		top: 26px
	}

	.hamburger.is-active span:nth-child(1) {
		top: 19px;
		transform: rotate(45deg)
	}

	.hamburger.is-active span:nth-child(2) {
		opacity: 0
	}

	.hamburger.is-active span:nth-child(3) {
		top: 19px;
		transform: rotate(-45deg)
	}

	.service {
		padding-top: 50px;
	}

	.service__list {
		gap: 10px;
	}

	.service-card__title {
		font-size: 18px;
	}

	.service-card__image {
		height: 300px;
	}

	.about__decoration--right {
		width: 150px;
	}

	.feature {
		padding-right: 0;
	}

	.feature__deco {
		width: 150px;
	}

	.feature__bottom {
		flex-wrap: wrap;
	}

	.feature .service__button {
		margin: 80px auto 0;
	}

	.information__content {
		display: flex;
		flex-direction: column-reverse;
	}

	.information__visual {
		width: 100%;
	}

	.information__body {
		padding-top: 50px;
	}

	.information__image--01 {
		left: 0;
	}

	.information__image--02 {
		right: 7%;
	}

	.information__image--03 {
		right: 0;
	}

	.section-heading__en {
		text-align: center;
	}

	.information .section-heading__ja {
		text-align: center;
	}

	.information::before {
		right: 60%;
	}

	.gallery__decoration--left {
		width: 130px;
	}

	.online-shop__decoration--right {
		width: 150px;
	}

	.online-shop {
		padding: 100px 0 200px;
	}

	.contact__decoration--left {
		width: 138px;
	}

	.contact__decoration--right {
		width: 180px;
	}

	.footer__nav a {
		padding: 3px;
	}

	.header.is-fixed,
	.subpage .header {
		position: relative;
		height: 100px;
		background: inherit;
		box-shadow: none;
	}
}

@media(max-width:767px) {
	.sp {
		display: block;
	}

	.pc {
		display: none;
	}

	.mv {
		height: 1100px;
	}

	.mv::before {
		top: 0;
		width: 34%;
		height: 500px
	}

	.mv::after {
		right: 0;
		bottom: 0;
		width: 25%;
		height: 400px;
	}

	.mv__slides {
		top: 0;
		right: 0;
		width: 332px;
		height: 100%;
	}

	.mv__slide img {
		max-height: 720px;
	}

	.mv__content {
		top: 172px;
		left: 15px;
		width: 92%
	}

	.mv__catch {
		line-height: 1;
	}

	.mv__lead {
		margin-top: 10px;
		line-height: 1.9
	}

	.pickup {
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 360px;
		z-index: 99;
	}

	.pickup::before {
		top: -10px;
		right: 16px;
		width: 65px;
		height: 65px
	}

	.pickup::after {
		content: none;
	}

	.pickup__slider {
		top: 37px;
		left: 50%;
		transform: translateX(-50%)
	}

	.pickup__item a {
		padding: 18px
	}

	.pickup__image {
		width: 120px;
		height: 108px
	}

	.pickup__body {
		padding-left: 10px
	}

	.pickup__category {
		padding: 1px 5px
	}

	.pickup__heading {
		margin-top: 6px;
		line-height: 1.6
	}

	.pickup__arrow {
		width: 29px;
		height: 29px;
		font-size: 17px
	}

	.pickup__arrow--prev {
		left: -14px
	}

	.pickup__arrow--next {
		right: -14px
	}

	.pickup__dots {
		top: 195px;
		left: 50%;
		gap: 6px;
		transform: translateX(-50%)
	}

	.pickup__dot {
		width: 7px;
		height: 7px
	}

	.first-visual {
		width: 95%;
		margin-top: -140px;
	}

	.first-visual__image {
		border-radius: 12px 0 0 12px
	}

	.first-visual::before {
		width: 70px;
		top: -170px;
	}

	.section-heading__ja {
		text-align: left;
	}

	.section-heading--left {
		text-align: center
	}

	.about {
		margin-top: 0;
		padding-top: 40px;
	}

	.about::before {
		top: 0;
		left: 0;
		width: 100%;
		height: 606px;
	}

	.about__inner {
		width: 100%
	}

	.about__content {
		width: 100%;
		margin-top: 25px;
		line-height: 2;
	}

	.about__decoration--right {
		right: -50px;
		bottom: 0;
	}

	.service__inner {
		width: 100%
	}

	.service__intro {
		width: 100%;
		margin-top: 25px;
		text-align: left;
		line-height: 2
	}

	.service__list {
		display: block;
		margin-top: 35px
	}

	.service-card+.service-card {
		margin-top: 32px
	}

	.service-card__image {
		height: 230px
	}

	.service-card__title {
		font-size: 24px
	}

	.service-card__more {
		display: none
	}

	.service__button {
		margin-top: 38px
	}

	.service {
		padding: 50px 20px 0;
		margin-bottom: 80px;
	}

	.service__decoration--left {
		top: -50px;
		left: -35px;
		width: 150px;
	}

	.feature {
		padding: 65px 15px 75px
	}

	.feature__inner {
		width: 100%
	}

	.feature__deco--red {
		left: -45px;
	}

	.feature__deco--blue {
		top: -90px;
		right: -20px;
		width: 150px;
	}

	.feature__content {
		width: 100%;
		margin: 0;
		padding: 0 20px
	}

	.feature__text {
		margin-top: 34px;
	}

	.feature__bottom {
		display: block;
		margin-top: 32px
	}

	.feature__image {
		width: calc(100% + 15px);
		margin-left: -15px;
		border-radius: 0 8px 8px 0
	}

	.feature__image img {
		height: 230px
	}

	.feature__button {
		width: 210px;
		min-height: 45px;
		margin: 30px auto 0;
		padding-left: 26px;
		font-size: 12px
	}

	.feature__button i {
		width: 31px;
		height: 31px
	}

	.information {
		padding: 70px 0 90px
	}

	.information__body {
		width: 100%;
		padding: 0
	}

	.information .section-heading {
		display: block;
		text-align: center
	}

	.information .section-heading__en {
		font-size: 60px;
	}

	.information::before {
		width: 180px;
		right: 50%;
		top: -7%;
	}

	.information__visual {
		width: 100%;
		min-height: 340px;
		margin-bottom: 50px;
	}

	.information__image--01 {
		top: 65px;
		left: 0;
		width: 60%;
		height: auto
	}

	.information__image--02 {
		top: 15px;
		right: 20px;
		width: 58%;
		height: auto
	}

	.information__image--03 {
		right: 0;
		bottom: 0;
		width: 61%;
		height: auto
	}

	.information__text {
		margin-top: 24px;
	}

	.information__text p+p {
		margin-top: 8px
	}

	.information__body .more-button {
		margin: 30px auto 0
	}

	.gallery {
		padding: 70px 0 95px
	}

	.gallery .section-heading__ja {
		text-align: center;
	}

	.gallery::before {
		height: 780px;
	}

	.gallery__inner {
		width: 100%
	}

	.gallery__intro {
		width: 100%;
		margin-top: 24px;
	}

	.gallery__list {
		display: block;
		margin-top: 38px;
		padding: 0 18px
	}

	.gallery-card+.gallery-card {
		margin-top: 42px
	}

	.gallery-card__image img {
		height: 210px
	}

	.gallery-card__body {
		padding-top: 14px
	}

	.gallery-card__title {
		font-size: 15px
	}

	.gallery-card__button {
		width: 210px;
		min-height: 45px;
		margin-top: 11px;
		padding-left: 24px;
		font-size: 12px
	}

	.gallery-card__button i {
		width: 31px;
		height: 31px
	}

	.gallery__decoration--left {
		top: -50px;
		left: -10px;
		width: 100px;
	}

	.online-shop {
		padding: 70px 15px 95px
	}

	.online-shop .section-heading__en {
		font-size: 60px;
	}

	.online-shop .section-heading__ja {
		text-align: center;
	}

	.online-shop__inner {
		width: 100%
	}

	.online-shop__intro {
		width: 100%;
		margin-top: 24px;
	}

	.online-shop__banner {
		width: 100%;
		margin-top: 35px
	}

	.online-shop__image {
		border-width: 2px
	}

	.online-shop__button {
		right: 10px;
		bottom: 10px;
		width: 245px;
		min-height: 44px;
		padding: 6px 6px 6px 18px;
		font-size: 11px
	}

	.online-shop__button i {
		width: 31px;
		height: 31px
	}

	.online-shop__button i::before {
		width: 16px;
		left: 7px;
	}

	.online-shop__button i::after {
		right: 7px;
	}

	.online-shop__decoration--right {
		top: -50px;
		right: 0;
		width: 100px;
	}

	.contact {
		padding: 70px 15px 85px;
		z-index: 99;
	}

	.contact .section-heading__ja {
		text-align: center;
	}

	.contact__inner {
		width: 100%
	}

	.contact__text {
		margin-top: 24px;
	}

	.contact__buttons {
		flex-direction: column;
		gap: 12px;
		margin-top: 32px
	}

	.contact__decoration--left {
		top: -80px;
		left: 15px;
		width: 114px;
	}

	.contact__decoration--right {
		right: 0;
		bottom: -140px;
		width: 160px;
	}

	.footer {
		padding-top: 100px;
	}

	.footer__nav {
		display: none;
	}

	.footer__copy {
		margin-top: 45px;
	}

	.sp-fixed-banner {
		position: fixed;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 99;
		display: grid;
		grid-template-columns: minmax(145px, 1.8fr) 76px 76px 76px;
		width: 100%;
		height: 76px;
		margin: auto;
		background: #fff;
		box-shadow: 0 -3px 12px rgba(0, 0, 0, .12)
	}

	.sp-fixed-banner a {
		min-width: 0;
		height: 76px;
		font-size: 18px;
		font-family: "Noto Serif JP", serif;
		font-weight: 700;
	}

	.sp-fixed-banner__tel {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		background: #18BFD2;
		color: #fff
	}

	.sp-fixed-banner__tel-icon {
		display: block;
		width: 36px;
		height: 36px;
		background: url("../images/sp/i-tel.png") no-repeat center/contain;
		margin-right: 5px;
	}

	.sp-fixed-banner__sns {
		padding: 1px;
	}

	.page-top {
		width: 76px;
		height: 76px;
		right: 0;
		bottom: 0;
	}

	.page-top.show {
		transform: none;
	}

	body {
		padding-bottom: 76px
	}
}

.news-single {
	background: #f8fcfb;
}

.sub-mv {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 430px;
	padding: 160px 20px 80px;
	overflow: hidden;
	background: #b9f2eb;
}

.sub-mv::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(255, 255, 255, .75) 2px, transparent 2px);
	background-size: 22px 22px;
	opacity: .65;
}

.sub-mv__inner {
	position: relative;
	z-index: 1;
	text-align: center;
}

.sub-mv__en {
	margin: 0 0 10px;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: .25em;
	color: #268f86;
}

.sub-mv__title {
	margin: 0;
	font-size: 48px;
	font-weight: 700;
	letter-spacing: .12em;
	color: #333;
}

.news-single__section {
	position: relative;
	padding: 100px 20px 140px;
}

.news-single__inner {
	width: min(100%, 960px);
	margin: 0 auto;
}

.news-article {
	padding: 70px 80px 80px;
	background: #fff;
	border-radius: 32px;
	box-shadow: 0 18px 50px rgba(58, 119, 112, .1);
}

.news-article__header {
	padding-bottom: 35px;
	border-bottom: 1px solid #dce9e7;
}

.news-article__meta {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-bottom: 22px;
}

.news-article__date {
	font-size: 14px;
	letter-spacing: .12em;
	color: #777;
}

.news-article__label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 84px;
	padding: 7px 16px;
	border-radius: 50px;
	background: #49bdb3;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .12em;
	color: #fff;
}

.news-article__title {
	margin: 0;
	font-size: 34px;
	line-height: 1.6;
	letter-spacing: .06em;
	color: #333;
}

.news-article__thumbnail {
	margin-top: 45px;
	overflow: hidden;
	border-radius: 24px;
}

.news-article__thumbnail img {
	display: block;
	width: 100%;
	height: auto;
}

.news-article__content {
	margin-top: 50px;
	font-size: 16px;
	line-height: 2.1;
	letter-spacing: .04em;
	color: #444;
}

.news-article__content>*:first-child {
	margin-top: 0;
}

.news-article__content>*:last-child {
	margin-bottom: 0;
}

.news-article__content p {
	margin: 0 0 2em;
}

.news-article__content h2 {
	position: relative;
	margin: 70px 0 30px;
	padding: 18px 24px 18px 30px;
	border-radius: 12px;
	background: #e8f8f5;
	font-size: 25px;
	line-height: 1.6;
	color: #333;
}

.news-article__content h2::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 7px;
	height: 100%;
	border-radius: 12px 0 0 12px;
	background: #49bdb3;
}

.news-article__content h3 {
	margin: 55px 0 25px;
	padding-bottom: 14px;
	border-bottom: 2px solid #49bdb3;
	font-size: 21px;
	line-height: 1.6;
	color: #333;
}

.news-article__content ul,
.news-article__content ol {
	margin: 0 0 2em;
	padding-left: 1.5em;
}

.news-article__content li {
	margin-bottom: .7em;
}

.news-article__content a {
	color: #268f86;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.news-article__content img {
	max-width: 100%;
	height: auto;
	border-radius: 18px;
}

.news-article__content blockquote {
	margin: 40px 0;
	padding: 30px 35px;
	border-left: 5px solid #49bdb3;
	background: #f1faf8;
	color: #555;
}

.news-pagination {
	display: grid;
	/*grid-template-columns: 1fr auto 1fr; 一覧ページ作成時*/
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 35px;
	margin-top: 60px;
}

.news-pagination__item a {
	display: flex;
	flex-direction: column;
	gap: 8px;
	color: #333;
	transition: opacity .3s ease;
}

.news-pagination__item a:hover {
	opacity: .6;
}

.news-pagination__item--next {
	text-align: right;
}

.news-pagination__en {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .2em;
	color: #49bdb3;
}

.news-pagination__title {
	display: -webkit-box;
	overflow: hidden;
	font-size: 16px;
	line-height: 1.6;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.news-pagination__back {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 180px;
	height: 58px;
	border: 1px solid #49bdb3;
	border-radius: 50px;
	background: #fff;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .1em;
	color: #268f86;
	transition: background .3s ease, color .3s ease;
}

.news-pagination__back:hover {
	background: #49bdb3;
	color: #fff;
}

@media(max-width:820px) {
	.sub-mv {
		min-height: 300px;
		padding: 120px 20px 60px;
	}

	.sub-mv__title {
		font-size: 36px;
	}

	.news-single__section {
		padding: 60px 15px 90px;
	}

	.news-article {
		padding: 40px 24px 50px;
		border-radius: 22px;
	}

	.news-article__meta {
		gap: 12px;
		margin-bottom: 18px;
	}

	.news-article__title {
		font-size: 25px;
	}

	.news-article__thumbnail {
		margin-top: 30px;
		border-radius: 16px;
	}

	.news-article__content {
		margin-top: 35px;
		font-size: 15px;
		line-height: 2;
	}

	.news-article__content h2 {
		margin: 50px 0 24px;
		padding: 15px 18px 15px 23px;
		font-size: 21px;
	}

	.news-article__content h3 {
		margin: 40px 0 20px;
		font-size: 19px;
	}

	.news-pagination {
		grid-template-columns: 1fr 1fr;
		gap: 25px 15px;
	}

	.news-pagination__back {
		grid-column: 1/3;
		grid-row: 2;
		width: 170px;
		margin: 10px auto 0;
	}

	.news-pagination__title {
		font-size: 12px;
	}
}

@media(max-width:425px) {
	.sub-mv {
		min-height: 250px;
	}

	.sub-mv__en {
		font-size: 13px;
	}

	.sub-mv__title {
		font-size: 30px;
	}

	.news-article {
		padding: 35px 18px 40px;
		border-radius: 18px;
	}

	.news-article__title {
		font-size: 22px;
	}

	.news-article__label {
		min-width: 72px;
		padding: 6px 12px;
	}
}