@charset "UTF-8";
/* 共通 */
html {
	font-size: 100%;
}
body {
	position: relative;
	font-family: fot-tsukuardgothic-std, sans-serif;
	font-weight: 700;
	color: #333;
	font-size: 16px;
	background: #fff;
	-webkit-font-smoothing: antialiased; /*アンチエイリアスを滑らかに*/
	-moz-osx-font-smoothing: grayscale;
	letter-spacing: 0.1em;
	line-height: 1.9;
}
.bg_dots {
	position: relative;
}
.bg_dots::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: url(../img/_illust/bg/bg_dots.svg);
	opacity: 0.3;
	background-position: top;
	z-index: -2;
	background-repeat: repeat;
	background-size: 100%;
}
@media (max-width: 1230px) {
	.bg_dots::before {
		background-size: 115%;
	}
}
@media (max-width: 550px) {
	.bg_dots::before {
		background-size: 155%;
	}
}
.hamopen {
	overflow: hidden;
	width: 100vw;
	height: 100vh;
}
a {
	text-decoration: none;
	color: #26a67d;
	transition: .4s;
}
a:focus-visible {
	outline: 5px solid red !important;
	outline-offset: -3px;
	box-shadow: 0 0 0 4px white;
}
ul, ol {
	list-style: none;
	padding: 0;
}
main {
	display: block;
	position: relative;
	overflow: hidden;
}
main section {
	padding: 80px 0 130px;
	position: relative;
}
@media (max-width: 550px) {
	main section {
		padding: 55px 0 65px;
	}
}
/* 画像 */
img {
	line-height: 1;
	vertical-align: top;
	max-width: 100%;
	transition: .4s;
}
/* テキスト */
p {
	margin-bottom: 10px;
}
.marker {
	text-decoration: underline;
	text-decoration-thickness: 0.4em;
	text-decoration-color: #D9F4E1;
	text-underline-offset: -0.05em;
	text-decoration-skip-ink: none;
}
/*見出し01*/
.maintitle {
	margin-bottom: 65px;
	display: block;
	text-align: center;
	line-height: 1.35;
	font-weight: 700;
	color: #15b6c2;
	font-size: clamp(1.6rem, 0.725rem + 2.8vw, 2.3rem);
}
.deco {
	position: absolute;
	top: 15px;
	left: 50%;
	transform: translateX(-50%);
	display: block;
	width: 120px;
	filter: invert(71%) sepia(100%) saturate(3246%) hue-rotate(140deg) brightness(94%) contrast(83%);
}
.sugarcane {
	position: absolute;
	top: -40px;
	left: 50%;
	transform: translateX(-50%);
	display: block;
	width: 157px;
}
.maintitle.mtleft {
	text-align: left;
}
.txtmgb {
	margin-bottom: 35px;
}
@media (max-width: 550px) {
	.sugarcane {
		top: -24px;
		width: 105px;
	}
	.deco {
		width: 80px;
	}
	.maintitle {
		margin-bottom: 40px;
	}
	.txtmgb {
		margin-bottom: 27px;
	}
	.maintitle .mf {
		font-size: 50%;
	}
}
/*見出し02*/
.stitle {
	font-weight: 700;
	position: relative;
	font-size: clamp(1.25rem, 0.8125rem + 1.4vw, 1.6rem);
	padding-left: 2px;
	line-height: 1.75;
	padding-bottom: 17px;
	margin-bottom: 17px;
}
.stitle::after {
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	width: 100%;
	height: 13px;
	background: radial-gradient(#15b6c2 16%, transparent 16%) 0 0 / 13px 13px;
}
.stitle .en {
	font-size: 76%;
	text-transform: capitalize;
	display: block;
	color: #15b6c2;
}
@media (max-width: 550px) {
	.stitle {
		margin-bottom: 12px;
	}
}
/*見出し03*/
.mtitle {
	font-weight: 700;
	font-size: clamp(1.45rem, 0.8875rem + 1.8vw, 1.9rem);
	margin-bottom: 10px;
}
.mtitle:first-letter {
	font-size: 120%;
	color: #26a67d;
}
/*ボタン*/
.mainbtn a {
	position: relative;
	vertical-align: middle;
	margin: 0 auto;
	padding: 18px;
	transition: .4s;
	display: inline-block;
	width: 270px;
	text-align: center;
	color: #fff;
	background: #15b6c2;
	border: 2px solid rgba(255, 255, 255, 0.5);
	z-index: 1;
	overflow: hidden;
	border-radius: 50px;
}
.mainbtn a:hover {
	color: #15b6c2;
	background: #fff;
	border: 2px solid #15b6c2;
	transition: .4s;
}
@media (max-width: 550px) {
	.mainbtn {
		margin: auto;
	}
	.mainbtn a {
		width: 200px;
		padding: 9px;
	}
}
/*flex要素*/
.flexbox {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
@media (max-width: 750px) {
	.flexbox {
		display: block;
	}
	.flexbox img {
		width: 100%;
	}
	.flexbox div {
		width: 100%;
	}
	.spmgb0, .spmgb0 img {
		margin-bottom: 0px !important;
	}
}
.reverse {
	flex-direction: row-reverse;
}
.aic {
	align-items: center;
}
/*幅*/
.inner {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}
.w60 {
	width: 60%;
}
.w52 {
	width: 52%;
}
.w49 {
	width: 49%;
}
.w48 {
	width: 48%;
}
.w44 {
	width: 44%;
}
.w36 {
	width: 36%;
}
.w32 {
	width: 32%;
}
/* 背景 ====*/
.bg_cream::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #fff4db;
	z-index: -100;
}
.bg_blue::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #15b6c2;
	z-index: -100;
}
.bg_blue .maintitle {
	color: #fff;
}
.bg_blue .deco {
	filter: brightness(0) invert(1);
}
.bg_blue p, .bg_blue .mtitle {
	text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 0px 1px 0 #fff, 0 -1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;
}
/* wave */
.wave::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	bottom: -1px;
	left: 0;
	background: url(../img/_illust/bg/wave.svg) repeat-x;
	background-size: 2500px !important;
	background-position: bottom center !important;
	filter: brightness(0) invert(1);
	pointer-events: none;
	z-index: -4;
}
.wave.cream::before {
	background: url(../img/_illust/bg/wave_cream.svg) repeat-x;
	filter: none;
}
.wave.blue::before {
	background: url(../img/_illust/bg/wave_blue.svg) repeat-x;
	filter: none;
}
@media (max-width: 750px) {
	.wave::before {
		background-size: 655px !important;
	}
}
/* 中央の円 */
.c_circle::before {
	content: '';
	width: 350px;
	height: 350px;
	border-radius: 50%;
	position: absolute;
	top: -75px;
	left: 50%;
	transform: translateX(-50%);
	background: #fff;
	z-index: -5;
}
.bg_cream.c_circle::before {
	background: #fff4db;
}
@media (max-width: 550px) {
	.c_circle::before {
		width: 200px;
		height: 200px;
		top: -45px;
	}
}
/*=== 共通部分ここまで ===*/
/* header ======================*/
.header_sticky {
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
}
.header_sticky::before {
	content: "";
	width: 100%;
	height: 55px;
	position: absolute;
	left: 0;
	bottom: -10.5px;
	background: url(../img/_illust/bg/wave.svg) repeat-x;
	background-position: top center;
	background-size: 500px;
	transition: .3s;
	transform: scaleY(-1);
	filter: brightness(0) invert(1);
}
.change.header_sticky::before {
	filter: brightness(0) invert(1) drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.12));
}
.header {
	transition: all .5s;
	width: 100%;
	z-index: 100;
	position: relative;
	background: #fff;
}
.header_inner {
	padding: 15px 0 17px;
	max-width: 1400px;
	width: 97%;
	margin: auto;
	align-items: center;
	display: flex;
	position: relative;
}
.header_nav {
	width: 100%;
	max-width: fit-content;
	margin-left: auto;
	margin-right: 205px; /* 購入はこちらボタン分のmargin */
}
.header_btn {
	position: absolute;
	top: -2.5px;
	right: 0;
}
.header_btn a {
	background: #15b6c2;
	border: 2px solid #15b6c2;
	padding: 25px 0;
	font-size: 0.95rem;
	border-radius: 0 0 20px 20px;
	width: 180px;
}
.header_btn a:hover {
	border: 2px solid #15b6c2;
	color: #15b6c2;
}
.header_title {
	width: fit-content;
}
.header_title a {
	display: flex;
	align-items: center;
}
.header_logo {
	width: 265px;
}
.header h1 {
	transition: .3s;
	z-index: 110;
}
.header_title:hover h1 {
	opacity: 0.6;
	transition: .3s;
}
.header ul {
	display: flex;
	text-align: center;
}
.header ul li {
	width: fit-content;
	position: relative;
	line-height: 1.6;
	border-left: 2px dotted #ddd;
}
.header ul li:last-child {
	border-right: 2px dotted #ddd;
}
.header ul li:last-child {
	margin-right: 0;
}
.header ul li a {
	display: block;
	width: 100%;
	transition: all .3s;
	position: relative;
	top: 0;
	padding: 3px 16px;
	color: #333;
	line-height: 1.65;
	font-size: 1.03rem;
	font-weight: 700;
}
.header ul li a span {
	display: block;
	font-size: 130%;
}
.header ul li a:hover {
	color: #26a67d;
}
.header_item {
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	margin-bottom: 13px;
}
.header_item > div {
	margin: 0 8.5px;
}
.header_item .mainbtn a {
	width: 14rem;
	line-height: 1.55;
	padding: 7px;
	font-size: 0.87rem;
}
.header_item .mainbtn a:after {
	content: none;
}
/*icon*/
.ficons {
	display: flex;
	width: fit-content !important;
	margin: auto;
	position: absolute;
	top: 13%;
	right: 5%;
}
.ficons div {
	margin: 0 4px;
	width: fit-content !important;
}
.ficons a {
	font-size: 1.23rem;
	color: #fff;
	position: relative;
	background: #26a67d;
	border-radius: 50px;
	width: 38px;
	height: 38px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-left: 2px;
}
.ficons div:last-child a {
	color: #26a67d;
	background: #fff;
	border: 2px solid #26a67d;
}
.ficons a .fa-line {
	font-size: 95%;
	position: relative;
	top: -1px;
}
.ficons a:hover {
	opacity: 0.6;
}
/* hamburger ================================= */
.header__inner {
	display: none;
}
.hamburger {
	position: fixed;
	display: block;
	top: 21px;
	right: 14px;
	z-index: 9999;
	width: 60px;
	height: 35px;
	border: none;
	background-color: transparent;
}
.hamburger.-active .hamburger__line {
	background-color: transparent;
}
.hamburger.-active .hamburger__line::before {
	top: 0;
	transform: rotate(45deg);
}
.hamburger.-active .hamburger__line::after {
	top: 0;
	transform: rotate(-45deg);
}
/*
.hamburger.-active .hamburger__text::before {
	content: 'close';
}
*/
.hamburger__line {
	display: block;
	height: 3px;
	position: absolute;
	top: 15px;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	transition: 0.4s;
	border-radius: 10px;
}
.hamburger__line:before, .hamburger__line:after {
	content: "";
	display: block;
	height: 100%;
	position: absolute;
	width: 100%;
	transition: inherit;
	border-radius: 10px;
}
.hamburger__line, .hamburger__line:before, .hamburger__line:after {
	background-color: #26a67d;
}
.hamburger.-active .hamburger__line:before, .hamburger.-active .hamburger__line:after {
	background-color: #fff;
}
.hamburger__line:before {
	top: -8.5px;
}
.hamburger__line:after {
	top: 8.5px;
}
.hamburger__text {
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
}
/*
.hamburger__text::before {
	content: "menu";
	text-align: center;
	color: #333;
	font-size: 19px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}
*/
.header__nav-area {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	height: 100vh;
	width: 100%;
	visibility: hidden;
	opacity: 0;
	transition: 0.4s;
	overflow-y: scroll;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #26a67d;
	overflow: hidden;
}
.header__nav-area.-active {
	opacity: 1;
	visibility: visible;
}
.global-navigation {
	margin: auto;
	height: fit-content;
	width: 85%;
	max-width: 600px;
}
.global-navigation__list {
	padding: 10px 20px 25px;
	background: #fff;
	border-radius: 10px;
	position: relative;
}
.global-navigation__list > li {
	margin: 3px 0;
	font-weight: 700;
	font-size: 1.15rem;
	transition: .35s;
	line-height: 1.7;
	display: block;
	padding: 15px 5px 17px;
	border-bottom: 2px dotted #ddd;
}
.global-navigation__list > li a {
	display: inline-block;
	width: 100%;
	position: relative;
	font-weight: 700;
	color: #333;
}
.global-navigation__list > li a::after {
	font-family: "Font Awesome 6 Free";
	content: "\f061";
	font-weight: bold;
	position: absolute;
	top: 0.4em;
	right: 0;
	font-size: .8em;
	color: #15b6c2;
}
.global-navigation__list > li a span {
	display: block;
	font-size: 115%;
	transition: all .3s;
	text-transform: uppercase;
	white-space: nowrap;
}
/*btn*/
.global-navigation .mainbtn {
	margin-top: 17px;
}
@media (max-width: 1245px) {
	.header_nav {
		margin-right: 170px;
	}
	.header ul li a {
		font-size: 0.9rem;
	}
	.header_btn a {
		width: 150px;
		font-size: 0.9rem;
	}
	.header_logo {
		width: 245px;
	}
}
@media (max-width: 1110px) {
	.header_logo {
		width: 235px;
	}
	.header_btn {
		display: none;
	}
	.header_title {
		margin-left: 0;
		margin-bottom: 0;
	}
	.header {
		padding: 14px 13px;
	}
	.hwrap {
		width: 100%;
	}
	.header_nav, .hnav {
		display: none;
	}
	.header .inner {
		display: none;
	}
	.ficons {
		display: none;
	}
	.header_inner {
		margin: 0;
		padding: 0;
	}
	.header__inner {
		display: block;
	}
}
@media (max-width: 550px) {
	.header_title {
		width: 195px;
	}
	.header {
		padding: 10px;
	}
	.hamburger {
		top: 13px;
		right: 3px;
	}
	.hamburger::before {
		width: 51px;
		height: 51px;
	}
	.global-navigation__list > li {
		font-size: 0.95rem;
	}
}
/* footer ==========================*/
.footerbg {
	position: relative;
	padding: 60px 0 30px;
	color: #fff;
}
.footerbg::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #26a67d;
	z-index: -100;
}
.footerbg::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: -45px;
	left: 0;
	background: url(../img/_illust/bg/wave_green.svg) repeat-x;
	background-size: 2500px;
	background-position: top center;
	pointer-events: none;
}
/**/
.footerbg .flexbox {
	max-width: 700px;
	margin: auto;
}
/* logo */
.flogo {
	display: block;
	width: 100%;
	max-width: 310px;
	margin: auto;
	filter: brightness(0) invert(1);
}
/* btn */
.footerbg .mainbtn {
	margin-top: 20px;
}
.footerbg .mainbtn a {
	background: #fff;
	color: #26a67d;
}
.footerbg .mainbtn a:hover {
	background: #26a67d;
	border: 2px solid #fff;
	color: #fff;
}
/* copyright */
.copyright {
	margin-top: 30px;
	text-align: center;
}
@media (max-width: 750px) {
	.footerbg .flexbox h3 {
		width: 100%;
		margin-bottom: 15px;
	}
	.footerbg {
		text-align: center;
	}
	.footerbg::before {
		top: -15px;
		background-size: 655px;
	}
}
@media (max-width: 550px) {
	.footerbg {
		padding: 40px 0 30px;
	}
	.footerbg .flexbox p {
		font-size: 90%;
	}
	.flogo {
		max-width: 245px;
	}
	.copyright {
		font-size: 0.85rem;
	}
}
/*ページ上に戻るボタン =====================*/
.go_top {
	display: block;
	width: 61px;
	height: 61px;
	box-sizing: border-box;
	background: #26a67d;
	border: 2px solid rgba(255, 255, 255, 0.4);
	padding-top: 30px;
	text-align: center;
	letter-spacing: -1px;
	font-size: 85%;
	text-decoration: none;
	position: fixed;
	bottom: 20px;
	right: 30px;
	z-index: 9;
	border-radius: 50px;
}
.go_top::before {
	font-family: "Font Awesome 6 Free";
	content: "\f077";
	font-weight: bold;
	color: #fff;
	font-size: 1.4rem;
	position: absolute;
	top: 47%;
	left: 49.5%;
	transform: translate(-50%, -50%);
}
.go_top:hover {
	opacity: 0.6;
}
.tfade {
	position: relative;
	z-index: 9;
}
@media(max-width:550px) {
	.go_top {
		width: 53px;
		height: 53px;
		right: 12px;
	}
	.go_top::before {
		font-size: 1.2rem;
	}
}
/*メインビジュアル =========================*/
.topslide .illust img {
	width: 100%;
	animation: movinganime 2.35s cubic-bezier(0.7, 0.02, 0, 0.97) infinite;
}
@keyframes movinganime {
	0% {
		transform: rotate(0deg)
	}
	20% {
		transform: rotate(0deg)
	}
	30% {
		transform: rotate(-4deg)
	}
	80% {
		transform: rotate(-4deg)
	}
	83% {
		transform: rotate(0deg)
	}
}
/**/
.topslide {
	position: relative;
	max-width: 1400px;
	width: 95%;
	margin: 20px auto;
}
.slide_items {
	overflow: hidden;
	position: relative;
}
.masked {
	border-radius: 50% 40% 58% 42% / 51% 60% 45% 70%;
}
.slide_items img {
	width: 100%;
	height: 760px;
	object-fit: cover;
}
/*スライドアニメーション*/
@keyframes fadezoom {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.15);
	}
}
.slick-animation {
	animation: fadezoom 10s linear 0s normal both;
}
/* text */
.slide_text {
	z-index: 7;
	position: absolute;
	top: 50%;
	left: 3.5%;
	transform: translateY(-50%);
	text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 0px 1px 0 #fff, 0 -1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;
}
.slide_text p {
	margin-bottom: 0;
	white-space: nowrap;
	line-height: 1.5;
	font-size: 2.5rem;
	letter-spacing: 0.13em;
}
.slide_text p span {
	display: inline-block;
}
/* 商品の切り取り */
.slide_product {
	position: absolute;
	top: 50%;
	right: 4%;
	transform: translateY(-50%);
	z-index: 1;
	width: 50%;
	max-width: 590px;
}
.slide_product img {
	object-fit: contain;
	width: 100% !important;
	height: 100% !important;
	min-height: auto !important;
}
@media (max-width: 1170px) {
	.slide_items img {
		height: 60vw;
	}
	.slide_text p {
		font-size: 2.1rem;
	}
}
@media (max-width: 1040px) {
	.slide_product {
		top: 45%;
		right: auto;
		left: 49%;
		transform: translate(-50%, -50%);
	}
	.slide_text {
		top: auto;
		transform: translateY(0);
		bottom: 20px;
	}
}
@media (max-width: 750px) {
	.slide_text p {
		line-height: 1.55;
		font-size: 1.8rem;
	}
}
@media (max-width: 550px) {
	.slide_items img {
		height: 300px;
	}
	.slide_product {
		width: 67%;
	}
	.slide_text p {
		font-size: 1.2rem;
	}
	.slide_text {
		left: 13px;
		bottom: 4px;
	}
}
/*==========================*/
.pdb {
	padding-bottom: 35px !important;
}
.center {
	text-align: center;
}
.fitc {
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
}
.tbtn {
	margin-top: 40px;
}
@media (max-width: 550px) {
	.tbtn {
		margin-top: 30px;
	}
}
/* 画像 角丸 */
.bimg {
	position: relative;
}
.bimg img {
	border-radius: 10px;
}
/* 画像上 イラスト ======================*/
.illust {
	width: fit-content !important;
}
.illust img {
	width: auto !important;
	height: 130px !important;
	border-radius: 0 !important;
}
.iwide img {
	height: 80px !important;
}
@media (max-width:1230px) {
	.illust img {
		height: 90px !important;
	}
	.iwide img {
		height: 40px !important;
	}
}
@media (max-width: 750px) {
	.illust img {
		height: 75px !important;
	}
	.iwide img {
		height: 37px !important;
	}
}
/*右上*/
.tr.illust {
	position: absolute;
	top: -10px;
	right: -10px;
	z-index: 2;
}
/*右下*/
.br.illust {
	position: absolute;
	bottom: -10px;
	right: -10px;
	z-index: 2;
}
/*左上*/
.tl.illust {
	position: absolute;
	top: -10px;
	left: -10px;
	z-index: 2;
}
/*左下*/
.bl.illust {
	position: absolute;
	bottom: -10px;
	left: -10px;
	z-index: 2;
}
/* section illust =====*/
/*右上*/
.tr.illust.sec {
	position: absolute;
	top: 4%;
	right: 4%;
	z-index: 2;
}
/*右下*/
.br.illust.sec {
	position: absolute;
	bottom: 4%;
	right: 4%;
	z-index: 2;
}
/*左上*/
.tl.illust.sec {
	position: absolute;
	top: 4%;
	left: 4%;
	z-index: 2;
}
/*左下*/
.bl.illust.sec {
	position: absolute;
	bottom: 4%;
	left: 4%;
	z-index: 2;
}
/*中央*/
.i_topcenter {
	position: absolute !important;
	top: -70px;
	left: 50% !important;
	right: auto !important;
	transform: translateX(-50%) !important;
}
@media (max-width: 1230px) {
	.i_topcenter {
		top: -35px;
	}
}
@media (max-width: 750px) {
	.tr.illust.sec, .tl.illust.sec {
		top: -1%;
	}
	.br.illust.sec, .bl.illust.sec {
		bottom: -1%;
	}
	/*中央*/
	.ispcenter {
		position: absolute !important;
		left: 50% !important;
		right: auto !important;
		transform: translateX(-50%) !important;
	}
}
/* 画像 */
.circle img {
	clip-path: circle(50% at 50% 50%);
}
.round img {
	border-radius: 10px;
}
/* アニメーション ======================*/
.flowup {
	opacity: 0;
	transform: scale(0.9);
	transition: opacity 0.3s, transform 0.6s;
	transition-delay: 0.25s;
}
.flowup.inview {
	opacity: 1;
	transform: scale(1);
}
/*について ==================================*/
.welillust {
	width: 70%;
	max-width: 360px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	margin-top: 35px;
}
@media (max-width: 750px) {
	.welillust {
		margin-top: 25px;
	}
}
/**/
.welcome::before {
	z-index: -10;
}
.welcome {
	overflow: hidden;
}
.welcomebg::before {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: url(../img/welcome.jpg);
	background-size: cover;
	background-position: bottom;
	z-index: -30;
}
.welcome::after {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: linear-gradient(0deg, rgba(16, 19, 21, 0) 1%, #fff);
	z-index: -30;
}
.welcome .inner {
	max-width: 1043px;
	position: relative;
	z-index: 1;
	padding-bottom: 425px;
}
@media (max-width: 1800px) {
	.welcome .inner {
		padding-bottom: 21vw;
	}
}
@media (max-width: 750px) {
	.welcome .inner {
		padding-bottom: 285px;
	}
}
/*こだわり ==================================*/
.features .maintitle {
	margin-bottom: 70px;
}
.feabox {
	padding: 30px;
	position: relative;
}
.feabox::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	border: 3px solid rgba(255, 255, 255, 0.4);
	background: #fff4db;
	border-radius: 10px;
	z-index: -1;
}
/*numbering*/
.ribbon {
	width: 100%;
	position: absolute;
	z-index: 1;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	font-size: 1.1rem;
	color: #fff;
	line-height: 1;
	padding: 13px 3px 15px;
}
.ribbon span {
	display: block;
	transform: rotate(10deg);
}
.ribbon::before {
	position: absolute;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: url(../img/ribbon.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	z-index: -1;
	filter: invert(52%) sepia(13%) saturate(2073%) hue-rotate(110deg) brightness(101%) contrast(87%);
}
/*img*/
.feabox .circle {
	position: relative;
	width: 80%;
	margin: auto;
	margin-bottom: 7px;
}
/*title*/
.feabox h3 {
	font-size: 1.35rem;
	margin-bottom: 10px;
	font-weight: 700;
	color: #26a67d;
}
@media (max-width: 980px) {
	.feabox h3 {
		font-size: 1.17rem;
	}
	.ribbon {
		font-size: 0.95rem;
	}
	.feabox .circle {
		width: 100%;
	}
}
@media (max-width: 750px) {
	.feabox {
		margin-bottom: 45px;
	}
	.feabox:last-child {
		margin-bottom: 0;
	}
}
@media (max-width:550px) {
	.features .maintitle {
		margin-bottom: 53px;
	}
	.feabox {
		padding: 25px 20px;
	}
	.feabox .circle {
		width: 87%;
	}
}
/*商品紹介 ==================================*/
/*illust*/
.intr_tr {
	position: absolute;
	top: -15%;
	right: -10px;
	z-index: 2;
}
.intr_bl {
	position: absolute;
	bottom: -15%;
	left: -10px;
	z-index: 2;
}
@media (max-width:1230px) {
	.intr_tr {
		top: -30%;
	}
	.intr_bl {
		bottom: -30%;
	}
}
@media (max-width:750px) {
	.intr_tr, .intr_bl {
		top: auto;
		right: auto;
		bottom: -87px;
		left: 50%;
		transform: translateX(-50%);
	}
}
/**/
.introduction .flexbox {
	position: relative;
	margin-bottom: 145px;
}
.introduction .tbtn {
	margin-top: -82px;
}
.introduction .shape::before {
	width: 130%;
	height: 130%;
	position: absolute;
	top: 50%;
	right: -18%;
	transform: translateY(-50%);
	content: "";
	background: url(../img/_illust/bg/shape01.svg) no-repeat;
	background-position: right center;
	background-size: contain !important;
	z-index: -1;
	filter: brightness(0) invert(1);
}
.introduction .flexbox.reverse .shape::before {
	left: -10%;
	right: auto;
	background: url(../img/_illust/bg/shape02.svg) no-repeat !important;
	background-position: left center;
}
@media (max-width:750px) {
	.introduction .tbtn {
		margin-top: 90px;
	}
	.introduction .inner::after {
		display: block;
		content: "";
		position: absolute;
		top: 50%;
		left: 0%;
		transform: translateY(-50%);
		width: 100%;
		height: 95%;
		z-index: -10;
		background-image: url(../img/_illust/bg/bg.svg);
		background-repeat: no-repeat;
		background-size: cover;
		background-position: top center;
		filter: brightness(0) invert(1);
		opacity: 0.85;
	}
	.introduction .shape {
		margin-top: 10px;
	}
	.introduction .shape::before, .introduction .flexbox.reverse .shape::before {
		content: none;
	}
}
@media (max-width:550px) {
	.introduction .tbtn {
		margin-top: 40px;
	}
	.introduction .flexbox {
		margin-bottom: 105px;
	}
}
/*お知らせ ==================================*/
/*
.news::before {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -100;
  background-image: url(../img/bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}
*/
/*
.news::before {
	position: absolute;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: url(../img/_illust/bg/nbg_a.svg), url(../img/_illust/bg/nbg_b.svg);
	background-repeat: no-repeat;
	background-position: top 2% left 1%, bottom 2% right 1%;
	background-size: 12%, 17%;
	z-index: -1;
}
@media (max-width:750px) {
	.news::before {
		background-position: top 1.7% right 4%, top 0.5% left;
		background-size: 55px, 90px;
	}
}
*/
/* 下層ページトップ ===========================================================================================================*/
.fv {
	padding: 80px 0 120px;
	width: 100%;
	display: flex;
	align-items: center;
	position: relative;
	background: url(../img/fv.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 83%;
}
.fv::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #15b6c2;
	opacity: 0.7;
}
.fv::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	bottom: -1px;
	left: 0;
	background: url(../img/_illust/bg/wave.svg) repeat-x;
	background-size: 2500px;
	background-position: bottom center;
	filter: brightness(0) invert(1);
	pointer-events: none;
	z-index: 1;
}
.fv h2 {
	text-align: center;
	margin-bottom: 10px !important;
	font-size: clamp(1.35rem, 0.0375rem + 4.2vw, 2.4rem);
	font-weight: 700;
	line-height: 1.5;
	z-index: 2;
	position: relative;
	text-transform: capitalize;
	color: #fff;
}
.fv h2 br {
	display: none;
}
@media(max-width:1200px) {
	.fv {
		padding: 60px 0 100px;
	}
}
@media(max-width:750px) {
	.fv {
		padding: 40px 0;
	}
	.fv::before {
		content: "";
		width: 100%;
		height: 55px;
		position: absolute;
		left: 0;
		bottom: -43.5px;
		background: url(../img/_illust/bg/wave.svg) repeat-x;
		background-position: top center;
		background-size: 500px;
		transition: .3s;
		filter: brightness(0) invert(1);
		pointer-events: none;
		z-index: 1;
	}
	.fv h2 {
		margin-bottom: 8px !important;
	}
	.fv h2 br {
		display: block;
	}
}
/* breadcrumb */
.binner {
	line-height: 1.6;
	width: 97%;
	font-size: 1.05rem;
	position: relative;
	color: #fff;
}
.breadcrumb {
	z-index: 1;
	background: transparent;
	position: relative;
	top: -6px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	text-align: center;
}
.breadcrumb li {
	display: inline;
	list-style: none;
}
.breadcrumb li:after {
	content: '>';
	padding: 0 0.2em;
	position: relative;
	top: -0.1em;
}
.breadcrumb li:last-child:after {
	content: none;
}
.breadcrumb li a {
	text-decoration: none;
	color: #fff;
}
.breadcrumb li:first-child a::before {
	font-family: "Font Awesome 6 Free";
	content: '\f015';
	font-weight: bold;
	font-size: 90%;
	position: relative;
	top: -0.05em;
}
@media(max-width:850px) {
	.binner {
		font-size: 0.9rem;
	}
}
@media(max-width:650px) {
	.binner {
		font-size: 0.75rem;
	}
}
/* こだわりページ ===========================================================================================================*/
.feasmgb {
	margin-bottom: 90px;
}
.feasbox {
	margin-bottom: 70px;
	padding: 40px;
	background: #fff4db;
	position: relative;
	border-radius: 15px;
	border: 2px solid rgba(255, 255, 255, 0.8);
}
.feasbox .ribbon {
	top: -35px;
	font-size: clamp(0.9rem, 0.4rem + 1.6vw, 1.3rem);
}
.introduction .inner::after {
	opacity: 1;
}
@media(max-width:750px) {
	.feasbox img {
		margin-bottom: 7px;
	}
	.feasbox {
		margin-bottom: 45px;
	}
	.feasbox:last-child {
		margin-bottom: 0 !important;
	}
	.feasbox .ribbon {
		top: -27px;
	}
	.sbtl {
		left: 0.5px !important;
		top: 0 !important;
	}
}
@media(max-width:550px) {
	.feasmgb {
		margin-bottom: 55px;
	}
	.feasbox {
		padding: 20px 15px 25px;
	}
}
/* 商品紹介ページ ===========================================================================================================*/
.products .flexbox {
	margin-bottom: 60px;
}
.products .flexbox .round {
	border-radius: 0;
	position: relative;
}
.products .flexbox .round::before {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	content: "";
	background: url(../img/_illust/bg/shape01.svg) no-repeat;
	background-position: center !important;
	background-size: contain !important;
	z-index: -1;
	filter: invert(97%) sepia(45%) saturate(581%) hue-rotate(307deg) brightness(102%) contrast(103%);
}
.products .flexbox.reverse .round::before {
	width: 110%;
	height: 110%;
	left: 66%;
	background: url(../img/_illust/bg/shape02.svg) no-repeat !important;
}
@media(max-width:750px) {
	.products .flexbox .mtitle {
		width: fit-content;
		margin-left: auto;
		margin-right: auto;
	}
	.products .flexbox .round {
		margin-bottom: 13px;
	}
}
@media(max-width:550px) {
	.products .flexbox {
		margin-bottom: 50px;
	}
	.products .flexbox:last-child {
		margin-bottom: 0;
	}
}
/*list*/
.acheck li {
	padding-left: 20px;
	position: relative;
}
.acheck li::before {
	font-family: "Font Awesome 6 Free";
	content: "\f14a";
	font-weight: bold;
	display: inline-block;
	color: #26a67d;
	font-size: .9em;
	position: absolute;
	top: 0.15em;
	left: 0;
}
/**/
.bicheck li {
	background: #fff;
	border-radius: 5px;
	margin-bottom: 7px;
	padding: 10px;
}
.bicheck li span {
	font-size: clamp(1rem, 0.875rem + 0.4vw, 1.1rem);
	padding-left: 20px;
	position: relative;
	display: inline-block;
}
.bicheck li span::before {
	font-family: "Font Awesome 6 Free";
	content: "\f14a";
	font-weight: bold;
	display: inline-block;
	color: #26a67d;
	font-size: .9em;
	position: absolute;
	top: 0.15em;
	left: 0;
}
@media (max-width: 750px) {
	.bicheck.flexbox li, .acheck.flexbox li {
		width: 100%;
	}
}
/* オンラインストアページ ===========================================================================================================*/
/*赤文字*/
.red {
	color: #ff674d;
}

.order_lede{
	text-align: center;
	margin-bottom: 40px;
	color: #ff674d;
	background-color: #f5f5f5;
	padding: 20px 15px;
	border-radius: 5px;
}
.order_lede p{
	margin-bottom: 0;
}
@media (max-width: 750px){
	.order_lede{
		text-align: left;
	}
	.order_lede p br{
		display: none;
	}
}



/*商品画像の背景*/
.order .round {
	border-radius: 10px;
	margin-bottom: 10px;
	background: url(../img/bg_wood.jpg) no-repeat;
	background-size: cover;
	background-position: center;
}
.order .round img {
	border-radius: 0;
}
/*==注文フォームページ==*/
/*商品欄のレイアウト*/
.order .flex {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	position: relative;
}
.order .flex::after {
	content: "";
	display: block;
	width: 44%;
}
.order .flex .box {
	width: 44%;
	margin-bottom: 70px;
}
.order .box .image {
	margin: 0 auto;
	max-width: 500px;
	margin-bottom: 5px;
}
.order .box .info h3 {
	margin-bottom: 20px;
}
.info .c_table {
	font-size: 0.95rem;
}
.info .c_table td, .info .c_table th {
	padding-top: 7px;
	padding-bottom: 7px;
}
.order .box .count {
	display: flex;
	justify-content: center;
	width: fit-content;
}
.order .box .count .cell {
	position: relative;
}
.order .box .count .cell input {
	padding: 0 2px;
	margin-right: .5em;
	cursor: pointer;
	width: 100px;
	background: #fff;
	border: 1px solid #c2c2c2;
	border-radius: 3px;
}
/*
.order .box .count .cell::after {
	font-family: "Font Awesome 5 Free";
	content: "\f107";
	display: block;
	font-weight: bold;
	font-size: 14px;
	line-height: 1;
	position: absolute;
	top: 40%;
	right: 15px;
	transform: translateY(-50%);
	z-index: 1;
	pointer-events: none;
	color: #333;
}
*/
@media (max-width: 750px) {
	.order .flex .box {
		width: 100%;
		margin-bottom: 55px;
	}
}
/*table*/
.c_table {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
	font-weight: 700;
}
.c_table tr {
	border: 2px solid #e8e8e8;
}
.c_table th, .c_table td {
	padding: 15px 5px;
}
.c_table th {
	background: #15b6c2;
	color: #fff;
	width: 35%;
	border-right: 2px solid #e8e8e8;
}
.c_table td {
	padding-left: 10px;
	background: #fff;
	width: 65%;
	border-right: 2px solid #e8e8e8;
	border-left: 2px solid #e8e8e8;
}
@media(max-width:1155px) {
	.c_table th {
		text-align: left;
		padding-left: 20px;
		padding-right: 15px;
	}
}
@media (max-width: 620px) {
	.c_table {
		border-collapse: collapse;
	}
	.c_table td, .c_table th {
		width: 100%;
		padding: 8px 10px;
		display: block;
		border: none;
		text-align: left;
	}
	.c_table th {
		border-bottom: 2px solid #e8e8e8;
	}
	.c_table td {
		padding-bottom: 10px !important;
	}
}
/*合計金額*/
.order .total {
	position: relative;
	text-align: center;
	margin: 0 0 95px;
	padding: 20px 0;
	border-radius: 10px;
	background: #fff4db;
	border: 2px solid rgba(255, 255, 255, 0.8);
}
.total_illust {
	width: 70%;
	max-width: 360px;
	margin: 45px auto -10px;
	z-index: 1;
	position: relative;
}
.total .red {
	font-size: 95%;
	margin-top: 5px;
	text-align: left !important;
	padding: 0 10px;
}
@media (max-width: 550px) {
	.order .total {
		margin: 0 0 50px;
	}
	.total_illust {
		margin-top: 0;
	}
}
.order .total .mfp {
	display: inline-block;
}
.order .total .total_main {
	font-weight: bold;
	font-size: 1.2rem;
	margin-bottom: 5px;
}
.order .button_wrap button::before {
	display: none;
}
/*ボタン*/
.order .button_wrap button.mfp_element_submit:hover {
	background: #fff !important;
	box-shadow: none !important;
}
/*リセットボタン*/
.order .button_wrap .reset {
	font-size: 0.8rem;
	border-radius: 50px;
	color: #15b6c2;
	background: #fff;
	border: 2px solid #15b6c2;
	margin-top: 13px;
	width: 200px;
}
.order .button_wrap .reset:hover {
	color: #fff;
	background: #15b6c2;
	box-shadow: none !important;
}
/*送料一覧*/
.fee {
	padding: 30px 50px 40px;
	border-radius: 10px;
	border: 3px solid #27c290;
	margin-bottom: 90px;
}
.fee .stitle {
	text-align: center;
}
.fee .acheck li {
	border-bottom: 2px dotted #ddd;
	padding-bottom: 3px;
	margin-bottom: 3px;
}
@media (max-width:750px) {
	.fee {
		padding: 20px 17px 25px;
	}
}
@media (max-width:550px) {
	.fee {
		margin-bottom: 50px;
	}
}
/*特定商取引法に基づく表記*/
.spblock {
	display: none;
}
@media (max-width: 550px) {
	.spblock {
		display: block;
	}
}
/*list*/
.dotslist li {
	position: relative;
	padding-left: 19px;
}
.dotslist li::before {
	content: "・";
	font-size: .9em;
	position: absolute;
	top: 0.15em;
	left: 0;
	display: inline-block;
	color: #26a67d;
}
/* 会社案内ページ ===========================================================================================================*/
.greeting p {
	max-width: 830px;
	margin-left: auto;
	margin-right: auto;
}
.glast {
	text-align: center;
	margin-top: 23px;
}
/* img */
.twflex {
	position: relative;
	display: flex;
	justify-content: space-between;
	margin-top: 95px;
}
.twflex .twimg {
	width: 50%;
	position: relative;
}
.twflex .twimg img {
	border-radius: 50% 40% 58% 42% / 51% 60% 45% 70%;
}
.twflex .twimg:first-child {
	top: -35px;
	left: 15px;
}
.twflex .twimg:nth-child(2) {
	right: 15px;
}
.twflex .br.illust, .twflex .bl.illust {
	bottom: 5% !important;
}
@media(max-width: 750px) {
	.twflex {
		margin-top: 45px;
	}
	.twflex .illust img {
		height: 45px !important;
	}
	.twflex .twimg:first-child {
		top: -15px;
		left: 5px;
	}
	.twflex .twimg:nth-child(2) {
		right: 5px;
	}
}
/* table */
.info_table {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
	font-weight: normal;
}
.info_table tr {
	border-bottom: 2px dotted #26a67d;
}
.info_table th {
	background: transparent;
	width: 35%;
}
.info_table th, .info_table td {
	font-weight: 700;
	padding: 15px 0;
}
.info_table td {
	padding-left: 10px;
	padding-right: 10px;
	width: 65%;
	background: transparent;
	word-break: break-all;
}
.ib {
	display: inline-block;
}
@media(max-width: 750px) {
	.info_table {
		border-collapse: collapse;
	}
	.info_table tr {
		border-bottom: none;
	}
	.info_table td {
		border-bottom: 2px dotted #26a67d;
		margin-bottom: 0;
	}
	.info_table td, .info_table th {
		width: 100%;
		padding: 8px 8px 13px;
		display: block;
	}
	.info_table th {
		text-align: left;
		padding-bottom: 0;
	}
	.info_table td {
		padding-top: 5px;
	}
}
/* お問い合わせページ ===========================================================================================================*/
.context {
	font-size: 110%;
	margin-bottom: 65px;
}
@media (max-width: 855px) {
	.context.center {
		text-align: left;
	}
	.context.center br {
		display: none;
	}
}
@media (max-width: 550px) {
	.context {
		font-size: 90%;
		margin-bottom: 27px;
	}
}
.tels {
	padding-bottom: 160px;
}
@media (max-width: 750px) {
	.tels {
		padding-bottom: 90px;
	}
}
@media (max-width: 550px) {
	.tels {
		padding: 40px 0 60px;
	}
}
.tl_mini {
	font-size: 1.1rem;
	margin-top: 5px;
}
.contact_wrap {
	padding: 20px 15px 25px;
	background: #fff4db;
	max-width: 600px;
	margin: auto;
	border-radius: 15px;
	border: 2px solid rgba(255, 255, 255, 0.8);
}
.tels .tel_contact i {
	color: #26a67d;
}
.tels .tel_contact {
	font-size: clamp(1.5rem, 0.5rem + 3.2vw, 2.3rem);
	letter-spacing: 0.1em;
	margin-bottom: 3px;
	white-space: nowrap;
	color: #333;
}
.tels .tel_contact:hover {
	color: #333;
	opacity: 0.6;
}
@media (max-width: 750px) {
	.contact_wrap {
		margin-bottom: 7px;
	}
	.contact_wrap:last-child {
		margin-bottom: 0 !important;
	}
}
@media (max-width: 550px) {
	.contact_wrap {
		max-width: 100%;
		padding: 17px;
	}
	.contact_wrap:last-child {
		margin-bottom: 0;
	}
	.tl_mini {
		font-size: 0.85rem;
	}
}
.cotm {
	margin-bottom: 35px;
}
.cotop {
	line-height: 2.3;
	margin-bottom: 50px;
}
@media (max-width:930px) {
	.cotm {
		margin-bottom: 25px !important;
	}
	.cotop {
		text-align: left;
		margin-bottom: 30px;
	}
}
.telmgb {
	margin-bottom: 25px;
}
.famgb {
	margin-bottom: 30px;
}
.tels .tl_text {
	font-size: clamp(1rem, 0.94rem + 0.2133vw, 1.1rem);
	margin-bottom: 30px;
}
.faxs {
	padding-top: 70px;
}
@media (max-width: 550px) {
	.telmgb {
		margin-bottom: 17px;
	}
	.tels .tl_text {
		margin-bottom: 13px;
	}
	.faxs {
		padding-top: 40px;
	}
}
/* メール */
.mnote {
	max-width: 920px;
	margin: auto;
	margin-top: 50px;
}
.mpdb {
	padding-bottom: 45px !important;
	margin-bottom: 0 !important;
}
@media(max-width:450px) {
	.mnote {
		margin-top: 30px;
	}
	.mpdb {
		padding-bottom: 35px !important;
	}
}
.formsel p {
	display: inline-block;
	margin-right: 10px;
	font-size: 0.95rem;
}
.formsel p:last-child {
	margin-bottom: 0;
}
@media (max-width: 450px) {
	.formsel p {
		display: block;
		margin-right: 0;
	}
}
.mailform {
	max-width: 1100px;
	margin: 40px auto 0;
}
@media (max-width: 850px) {
	.mailform {
		margin: 50px auto 0;
	}
}
@media (max-width: 450px) {
	.mailform {
		margin-top: 0;
	}
}
.mailform .row {
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
}
.mailform .row:not(.last) {
	border-bottom: 0.9px dotted #333;
}
.mailform .row div {
	text-align: left;
}
.mailform .row div:nth-child(1) {
	width: 28%;
	font-size: 97%;
}
.mailform .row div:nth-child(2) {
	width: 70%;
	line-height: 1.5;
}
.mailform .row span {
	color: #fff;
	background: #26a67d;
	padding: 5px;
	margin-right: 5px;
	font-size: 12px;
	border-radius: 3px;
}
.mailsp {
	background: #fff !important;
	border: 1px solid #26a67d;
	color: #26a67d !important;
}
.mailform .row small {
	display: block;
	margin-top: 3px;
}
.mailform label {
	color: #333;
}
.mailform .box, .mailform textarea {
	border: 1px solid #ddd;
	padding: 5px;
	width: 100% !important;
	border-radius: 0;
	-webkit-appearance: none;
	margin-bottom: 5px;
	background: #fff;
}
.mailform button {
	display: block;
	text-align: center;
	margin: 0 auto;
	white-space: nowrap;
	border: 2px solid rgba(255, 255, 255, 0.5);
	color: #fff;
	background: #26a67d;
	width: 270px;
	padding: 22px 0;
	transition: .4s;
	border-radius: 50px;
}
.mailform button:hover {
	background-color: #fff;
	color: #26a67d;
	border: 2px solid #26a67d;
	opacity: 1;
}
.mailform button::before {
	font-family: "Font Awesome 6 Free";
	content: "\f0e0";
	font-weight: bold;
	margin-right: 10px;
}
.mail_s {
	padding-bottom: 90px;
}
@media (max-width: 800px) {
	.mailform .row {
		padding: 20px 0;
		flex-direction: column;
	}
	.mailform .row div:nth-child(1) {
		width: 100%;
		margin-bottom: 20px;
	}
	.mailform .row div:nth-child(2) {
		width: 100%;
	}
}
@media (max-width: 550px) {
	.mail_s {
		padding: 55px 0 35px;
	}
	.mailform button {
		width: 230px;
		padding: 14px 0;
	}
	.selection small {
		font-size: 0.8rem;
	}
}
/*個人情報の取り扱いについて*/
.privacy {
	padding-top: 0 !important;
}
.privacy::after {
	height: 150%;
}
.privacy_wrap {
	color: #333;
	margin: 0 auto;
	max-width: 1100px;
	border-bottom: 2px dotted #15b6c2;
}
.privacy_item {
	position: relative;
	width: 100%;
	margin: 0 auto;
	cursor: pointer;
	padding: 0 10px;
}
.privacy_header {
	font-weight: 700;
	font-size: clamp(1.15rem, 0.775rem + 1.2vw, 1.45rem);
	transition: ease-in-out 100ms;
}
.privacy_header .fa-lock {
	color: #15b6c2;
}
.privacy_text {
	width: 100%;
	display: none;
	padding: 20px 35px 30px;
	line-height: 1.7;
	font-size: 0.97rem;
}
@media(max-width:750px) {
	.privacy_text {
		padding: 20px 15px 30px;
	}
}
.privacy_text p {
	margin-bottom: 17px;
}
.arrow {
	transition: ease-in-out 300ms;
}
.rotate-fa {
	transform: rotate(180deg);
}
.privacy_header span {
	font-size: 80%;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(-50%, -50%);
}
.privacy_gold {
	color: #15b6c2;
}

.coution{
	width: 60%;
	font-size: 1.5rem;
	color:red;
	margin: auto;
		
}
.out_cover{
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 10;
   
}
.out_cover::after{
	content: "";
	position: absolute;
	background:rgba(53,52,52,0.10);
	backdrop-filter: blur(8px);
	z-index: 11;
	TOP:0;
	left:0;
	right: 0;
	bottom:0;
}
.out_txt{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 12;
	color: red;
	font-size: 2vw;
}
@media(max-width:750px) {
	.coution{
		width: 90%;
		font-size: 0.8rem
	}
}