@charset "utf-8";

:root {
	--white: #fff;
	--black: #333333;
	--yellow: #FFFF66;
	--main: #272B76;
	--pharmacy: #009933;
	--food: #FF9966;
	--f-large: 16px;
	--f-normal: 13px;
	--f-small: 12px;

	--sab: #E3F7FF;
}

/* 背景 --------*/
main {
	background: var(--sab);
	overflow: hidden;
}

section {
	margin: auto;
	max-width: 980px;
	width: 92%;
}

/*-------- hタグ --------*/
h2,h3,h4,h5 {letter-spacing: 0.05em;}

h2 {
	margin: 0 auto 40px;
	color: var(--main);
	font-size: 13px;
	text-align: center;
	line-height: 1.3;
}

h2 span {
	display: block;
	font-size: 28px;
	letter-spacing: 4px;
}

h3 {
	margin-bottom: 20px;
	font-size: 130%;
	color: var(--main);
}

h4 {
	font-size: 130%;
	color: var(--black);
	margin-bottom: 20px;
}

h5 {
    margin-bottom: 5px;
    padding-bottom: 10px;
    color: #999;
    border-bottom: 1px solid #ccc;
}

@media all and (-ms-high-contrast:none){
h4 {
	padding: 15px 25px 10px 25px;
}
}

/*-------- パンくず --------*/
#sec1 {
	background: #f0f3f5;
	color: var(--black);
	padding: 10px 0;
	max-width: 100%;
	width: 100%;
	position: relative;
	z-index: 10;
}


#question:before {  /* 矢印 */
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -15px;
	border: 15px solid transparent;
	border-top: 15px solid var(--white);

}

/* ------------------------------------
#sec2 タイトル
------------------------------------*/
#sec2 {
	background: var(--white);
	padding: 120px 90px;
	box-shadow: 10px 10px 40px #BAE8FA;
	border-radius: 0 0 0 100px;
	margin-bottom: 120px;
	max-width: calc(100% - (50% - (980px / 2)));
	width: calc(100% - 4%);
	margin-left: auto;
	margin-right: 0;
	position: relative;
}


#sec2 h2 {
	color: var(--main);
	font-size: 13px;
	line-height: 1.5;
	margin: auto;
	color: var(--main);
	text-align: left;
	max-width: 100%;
}

#sec2 h2 span {
	letter-spacing: 0.1em;
}

#sec2 .img {
    content: "";
    display: flex;
    padding-top: 0;
    position: absolute;
    top: 0;
	left: 50%;
    transform: translateX(calc(-50% - 10px));
    align-items: flex-start;
    gap: 30px;
    justify-content: end;
	max-width: 980px;
    width: 100%;
}

#sec2 .img img {
	border-radius: 25px;
	box-shadow: 5px 5px 30px #BAE8FA;
}

#sec2 .img img:nth-child(1) {
	margin-top: 8%;
	width: 30%;
}

#sec2 .img img:nth-child(2) {
	width: 25%;
	border-radius: 0 0 25px 25px;
}

/* ------------------------------------
#sec3 動画
------------------------------------*/
#sec3 {
margin: auto;
margin-bottom: 150px;
}

#sec3 iframe { /* YouTube */
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	max-width: 560px;
	margin: auto;
	display: block;
	box-shadow: 10px 10px 40px #BAE8FA;
	border-radius: 30px;
}

/* ------------------------------------
#sec4 メッセージ
------------------------------------*/
#sec4 {
	background: var(--white);
	width: 100%;
	max-width: 100% !important;
	padding: 100px 0 200px;
	border-radius: 0 100px 0 0;
	box-shadow: 10px 10px 40px #BAE8FA;
}

#sec4 ul {
	width: 92%;
	max-width: 980px;
	margin: auto;
	display: flex;
	justify-content: space-between;
	gap: 60px;
}

#sec4 ul li.img {
	width: 50%;
	position: relative;
}

#sec4 ul li.img:before {
    content: "";
    display: block;
    padding-top: 50%; /* 1:1 */
}

#sec4 ul li.img img {
	border-radius: 25px;
	box-shadow: 5px 5px 30px #BAE8FA;
	position: absolute;
}

#sec4 ul li.img img:nth-child(1) {
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 42%;
}
#sec4 ul li.img img:nth-child(2) {
	top: -70%;
	left: 48%;
	width: 42%;
}
#sec4 ul li.img img:nth-child(3) {
	bottom: -22%;
	left: 48%;
	width: 52.5%;
}

#sec4 ul li {
	width: 47%;
	margin: auto;
	color: var(--main);
	font-weight: 500;
	line-height: 2em;
	text-align: justify;
	
}

/* ------------------------------------
#sec5 スタッフコメント
------------------------------------*/
#sec5 {
	background: var(--sab);
	width: 100%;
	max-width: 100%;
	padding: 100px 0 200px;
	border-radius: 100px 0 0 0;
	box-shadow: 10px 10px 40px #BAE8FA;
	margin-top: -100px;
}

#sec5 ul {
	width: 92%;
	max-width: 980px;
	margin: auto;
}

#sec5 ul li {
    display: flex;
	justify-content: space-between;
	margin-bottom: 60px;
	gap: 30px;
}

#sec5 ul li:last-child {
	margin-bottom: 0;
}

#sec5 ul li .text {
    position: relative;
    padding: 40px;
    background-color: var(--white);
	border-radius: 30px;
	width: 75%;
}

/* 吹き出し */
#sec5 ul li .text::before {
    content: '';
    position: absolute;
	top: 40px;
    right: -15px;
    width: 15px;
    height: 30px;
    background-color: var(--white);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

/* 似顔絵 */
#sec5 ul li img {
	width: 18%;
	min-width: 70px;
	height: 100%;
}

/* 吹き出し 反転 */
#sec5 ul li:nth-child(even) {
	flex-direction: row-reverse;
}

#sec5 ul li:nth-child(even) .text::before {
    left: -15px;
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
}

/* ------------------------------------
#sec6 製品紹介
------------------------------------*/
#sec6 {
	padding: 100px 0 200px;
	background: var(--white);
	margin-top: -100px;
	width: 100%;
	max-width: 100%;
	box-shadow: 10px 10px 40px #BAE8FA;
}

#sec6 p {
	margin-bottom: 20px;
}

#sec6 .btn {
	display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}

#sec6 .btn a {
	margin: 0;
}

#sec6 .item {
	width: 92%;
	max-width: 980px;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 60px;
}

#sec6 .item .box_01 {
	width: 50%;
}

#sec6 .item .box_02 {
	width: calc(50% - 60px);
}

#sec6 .item .box_03 {
	width: 100%;
}

#sec6 .mb {
	margin-bottom: 80px;
}

#sec6 .splide__slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#sec6 .splide__slide {
	opacity: 0.6;
}

#sec6 .splide__slide.is-active {
	opacity: 1;
}

#sec6 #main .splide__slide,
#sec6 #main_02 .splide__slide { /* 背景の比率 */
	padding-top: 97%;
}

#sec6 button { /* 矢印 */
	border: none;
	position: absolute;
	z-index: 10;
	top: 50%;
	transform: translateY(-50%);
    margin: 0 20px;
}

.splide__arrow--prev { /* 前の矢印 */
	left: 0;
	display: flex;
    align-items: center;
}

.splide__arrow--prev::before {
	transform: rotate(-135deg);
    width: 15px;
    height: 15px;
    border-top: 2px solid var(--main);
    border-right: 2px solid var(--main);
    content: '';
}

.splide__arrow--next { /* 次の矢印 */
	right: 0;
	display: flex;
    align-items: center;
}

.splide__arrow--next::before {
	transform: rotate(45deg);
    width: 15px;
    height: 15px;
    border-top: 2px solid var(--main);
    border-right: 2px solid var(--main);
    content: '';
}

/* ------------------------------------
#sec7 お申し込み
------------------------------------*/
#sec7 {
	box-shadow: 10px 10px 30px #BAE8FA;
	background: var(--sab);
    border-top-left-radius: 45%;
    border-top-right-radius: 45%;
    margin-top: -100px;
    padding-top: 100px;
    width: 150%;
    max-width: none;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
} 

#sec7 .btn {
	background: var(--main);
	border: 1px solid var(--main);
	color: var(--white);
}

#sec7 .btn:hover {
	background: var(--white);
	color: var(--main);
}

/* contact お問い合わせ */
#contact {
	width: 62%;
	margin: auto;
}

#contact p {
	margin: 40px;
	text-align: center;
	color: var(--main);
	font-weight: bold;
}

/* ------------------------------------
#kome 注釈
------------------------------------*/
#kome {
	border-top: 1px solid var(--main);
	color: var(--main);
	width: 62%;
}

#kome img {
	filter: invert(12%) sepia(36%) saturate(5473%) hue-rotate(233deg) brightness(93%) contrast(91%);
}

/** middle
===================================*/
@media screen and (max-width: 990px){
	/* ------------------------------------
	#sec2 タイトル
	------------------------------------*/
	#sec2 {
		padding: 60px 60px 120px;
		border-radius: 0 0 0 60px;
		margin-bottom: 25%;
		max-width: 100%;
		width: 100%;
	}

	#sec2 .img {
		padding-top: 80px;
		left: auto;
		right: 0;
		transform: translateX(0);
	}

	#sec2 .img img:nth-child(2) {
		width: 25%;
		border-radius: 25px 0 0 25px;
	}

	/* ------------------------------------
	#sec4 メッセージ
	------------------------------------*/
	#sec4 {
		padding: 60px 0 160px;
		border-radius: 0 60px 0 0;
	}

	/* ------------------------------------
	#sec5 スタッフコメント
	------------------------------------*/
	#sec5 {
		padding: 60px 0 160px;
		border-radius: 60px 0 0 0;
	}

	/* ------------------------------------
	#sec6 製品紹介
	------------------------------------*/
	#sec6 {
		padding-top: 60px;
	}

	#sec6 .item {
		flex-direction: column;
		gap: 25px;
	}

	#sec6 .item .box_01 {
		width: 100%;
		order: 0;
	}
	
	#sec6 .item .box_02 {
		width: 100%;
		order: 2;
	}
	
	#sec6 .item .box_03 {
		width: 100%;
		order: 1;
	}

}

/** mobile
===================================*/
@media screen and (max-width: 768px){
	/* ------------------------------------
	#sec2 タイトル
	------------------------------------*/
	#sec2 {
		padding: 60px 40px 17%;
		margin-bottom: 35%;
		max-width: 100%;
		width: 100%;
	}

	#sec2 .img {
		padding-top: 120px;
		gap: 20px;
		border-radius: 15px;
	}

	#sec2 .img img:nth-child(2) {
		width: 25%;
		border-radius: 15px 0 0 15px;
	}

	/* ------------------------------------
	#sec3 動画
	------------------------------------*/
	#sec3 {
		margin-bottom: 60px;
	}

	/* ------------------------------------
	#sec4 メッセージ
	------------------------------------*/
	#sec4 {
		padding: 60px 0 160px;
		border-radius: 0 60px 0 0;
	}

	#sec4 ul {
		flex-direction: column-reverse;
		gap: 30px;
	}

	#sec4 ul li.img {
		width: 100%;
		position: relative;
	}

	#sec4 ul li.img:before {
		content: "";
		display: block;
		padding-top: 100%; /* 1:1 */
	}

	#sec4 ul li.img img {
		border-radius: 20px;
		position: absolute;
	}

	#sec4 ul li.img img:nth-child(1) {
		top: 50%;
		left: -5%;
		border-radius: 0 20px 20px 0;
	}

	#sec4 ul li.img img:nth-child(2) {
		top: 0;
		left: 45%;
	}
	#sec4 ul li.img img:nth-child(3) {
		bottom: 0;
		right: -5%;
		left: auto;
		width: 55%;
		border-radius: 20px 0 0 20px;
	}

	#sec4 ul li {
		width: 100%;
		margin: auto;
	}

	/* ------------------------------------
	#sec5 スタッフコメント
	------------------------------------*/
	#sec5 ul li .text {
		padding: 30px;
	}

	/* ------------------------------------
	#sec7 お申し込み
	------------------------------------*/
	#sec7 {
		border-top-left-radius: 40%;
		border-top-right-radius: 40%;
		padding-top: 80px;
	} 

}



