@charset "UTF-8";
/* 共通 */
html {
	font-size: 100%;
}
body {
	position: relative;
	font-family: fot-tsukuardgothic-std, sans-serif;
	font-weight: 700;
	color: #5C0E00;
	font-size: 16px;
	background: #FFFFF4;
	-webkit-font-smoothing: antialiased; /*アンチエイリアスを滑らかに*/
	-moz-osx-font-smoothing: grayscale;
	letter-spacing: 0.1em;
	line-height: 1.9;
	overflow: auto;
}
.hamopen {
	overflow: hidden;
	width: 100vw;
	height: 100vh;
}
a {
	text-decoration: none;
	transition: .4s;
}
/*=====ウェブアクセシビリティ=====*/
a:focus-visible {
	outline: 4px solid blue !important;
	outline-offset: -1px;
	box-shadow: 0 0 0 4px white;
}
button:focus-visible {
	outline: 4px solid blue !important;
	outline-offset: -1px;
	box-shadow: 0 0 0 4px white;
}
ul, ol {
	list-style: none;
	padding: 0;
}
main {
	display: block;
	position: relative;
	overflow: hidden;
}
main section {
	padding: 75px 0 115px;
	position: relative;
}
main section.stb {
	padding: 120px 0;
}
@media (max-width: 550px) {
	main section {
		padding: 50px 0 70px;
	}
	main section.stb {
		padding: 65px 0;
	}
}
/* 画像 */
img {
	line-height: 1;
	vertical-align: top;
	max-width: 100%;
	transition: .4s;
}
/* テキスト */
p {
	margin-bottom: 10px;
}
.marker {
	text-decoration: underline;
	text-decoration-thickness: 0.45em;
	text-decoration-color: rgba(255, 239, 135, 0.5);
	text-underline-offset: -0.05em;
	text-decoration-skip-ink: none;
}
/*見出し01*/
.maintitle {
	margin-bottom: 55px;
	display: block;
	text-align: center;
	line-height: 0.95;
	position: relative;
	font-size: clamp(1.9rem, 1.15rem + 2.4vw, 2.5rem);
	font-weight: 700;
}
.maintitle .mf {
	font-weight: 400;
	font-family: 'Homemade Apple', cursive;
	color: #f59faf; /*#f2a7b5*/
	text-transform: capitalize;
	white-space: nowrap;
	letter-spacing: 0.025em;
	position: relative;
}
.maintitle .sf {
	font-size: 48%;
}
.maintitle.mtleft {
	text-align: left;
}
.txtmgb {
	margin-bottom: 33px !important;
}
.twhite, .twhite p, .twhite span {
	color: #fff !important;
}
@media (max-width: 550px) {
	.maintitle {
		margin-bottom: 35px;
	}
	.txtmgb {
		margin-bottom: 25px !important;
	}
}
/*見出し02*/
.mtitle {
	font-weight: 700;
	position: relative;
	border-radius: 3px;
	margin-bottom: 15px;
	letter-spacing: 0.1em;
	font-size: clamp(1.15rem, 0.9625rem + 0.6vw, 1.3rem);
	line-height: 1.7;
	background: #f59faf;
	color: #fff;
	padding: 6px 9px 9px;
	border-left: 6px solid #dd3647;
}
.mtitle::after {
	content: '';
	width: 20px;
	height: 2px;
	border-radius: 3px;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	background: #fff;
	pointer-events: none;
}
@media (max-width: 550px) {
	.mtitle {
		margin-bottom: 15px;
	}
}
/*見出し03*/
.stitle {
	font-weight: 700;
	border-bottom: 2px dotted #f59faf;
	padding-bottom: 7px;
	font-size: clamp(1.15rem, 0.9625rem + 0.6vw, 1.3rem);
	margin-bottom: 15px;
}
/*ボタン*/
.mainbtn a {
	position: relative;
	vertical-align: middle;
	margin: 0 auto;
	padding: 21px;
	display: inline-block;
	width: 280px;
	text-align: center;
	color: #fff;
	background: #f59faf;
	border: 2px solid #f59faf;
	z-index: 1;
	overflow: hidden;
	border-radius: 40px;
	transition: .4s;
}
.mainbtn a:hover {
	color: #f59faf;
	background: #fff;
	transition: .4s;
}
/*点線*/
.mainbtn a::after {
	content: '';
	width: calc(100% - 4px);
	height: calc(100% - 4px);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border: 1px dashed #fff;
	pointer-events: none;
	border-radius: 40px;
}
.mainbtn a:hover::after {
	border: 1px dashed #f59faf;
}
/**/
section .mainbtn a::before {
	position: absolute;
	top: 50%;
	right: 15px;
	font-family: "Font Awesome 6 Free";
	content: "\f138";
	font-weight: bold;
	line-height: 1;
	transform: translate(0, -50%);
	color: #fff;
	transition: .4s;
}
.mainbtn a:hover::before {
	color: #f59faf;
	transition: .4s;
}
@media (max-width: 550px) {
	.mainbtn {
		margin: auto;
	}
	.mainbtn a {
		width: 210px;
		padding: 12px;
	}
	section .mainbtn a::before {
		font-size: 90%;
	}
}
/*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%;
	}
}
.reverse {
	flex-direction: row-reverse;
}
/*幅*/
.inner {
	width: 91%;
	max-width: 1200px;
	margin: 0 auto;
}
@media (min-width: 2000px) {
	.inner02 {
		max-width: 1500px;
		width: 92%;
		margin: 0 auto;
	}
}
@media (max-width: 1999px) {
	.inner02 {
		max-width: 100%;
		width: 100%;
	}
	.mauto {
		margin-left: auto;
		margin-right: auto;
	}
	.mauto.w48 {
		width: 42%;
	}
	.mauto.w43 {
		width: 37%;
	}
}
@media (max-width: 750px) {
	.inner02 {
		width: 91%;
		margin: 0 auto;
	}
	.mauto.w48, .mauto.w43 {
		width: 100%;
	}
}
.w65 {
	width: 65%;
}
.w52 {
	width: 52%;
}
.w49 {
	width: 49%;
}
.w48 {
	width: 48%;
}
.w43 {
	width: 43%;
}
.w32 {
	width: 32%;
}
/*background*/
.bg_cream::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #fff4db;
	z-index: -100;
}
/*=== 共通部分ここまで ===*/
/* header ================================*/
.header_sticky {
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: transparent;
}
.header {
	transition: all .5s;
	width: 100%;
	z-index: 100;
	position: relative;
}
.hwrap {
	padding-top: 20px;
	display: flex;
	align-items: center;
	justify-content: space-around;
	position: relative;
	max-width: 1350px;
	width: 93%;
	margin: 0 auto;
}
/*logo*/
.header h1 {
	transition: .3s;
	z-index: 110;
}
.header_title a:hover img {
	opacity: 0.6;
	transition: .3s;
}
.header_title a {
	display: block;
}
.header_title a img {
	width: 210px;
}
/*menu*/
.header ul {
	display: flex;
	text-align: center;
}
.header ul li {
	width: fit-content;
	margin-right: 30px;
	position: relative;
	line-height: 1.6;
}
.header ul li:last-child {
	margin-right: 0;
}
.header ul li a {
	display: block;
	width: 100%;
	transition: all .3s;
	position: relative;
	top: 0;
	padding: 5px 0;
	color: #5C0E00;
	line-height: 1.5;
	font-size: 1.06rem;
}
.header ul li a:hover {
	color: #f59faf;
}
.hflex {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.hnav {
	width: fit-content;
	border-radius: 50px;
	padding: 20px 40px 23px;
	background: #fff;
	box-shadow: rgb(0 0 0 / 5%) 0px 2px 8px 0px;
}
/* dropdown ドロップダウンメニュー */
/* sub-menu */
.menu-item-has-children-dropdown {
	position: relative;
}
.sub-menu {
	position: absolute;
	top: 45px;
	left: 50%;
	transform: translateX(-50%);
	width: 170px;
	opacity: 0;
	visibility: hidden;
	transition: .1s;
	z-index: 4;
	flex-direction: column;
	background: #FFFFF4;
	border: 2px solid #f7dda1;
	padding: 3px 7px;
	border-radius: 10px;
}
.sub-menu::before {
	content: '';
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	left: 50%;
	transform: translateX(-50%);
	top: -15px;
	border-right: 15px solid transparent;
	border-bottom: 15px solid #f7dda1;
	border-left: 15px solid transparent;
	z-index: -1;
}
.sub-menu::after {
	content: '';
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	left: 50%;
	transform: translateX(-50%);
	top: -12px;
	border-right: 15px solid transparent;
	border-bottom: 15px solid #FFFFF4;
	border-left: 15px solid transparent;
	z-index: -1;
}
.sub-menu li {
	margin: 0 !important;
	width: 100% !important;
	border-bottom: 2px dotted #f7dda1;
}
.sub-menu li:last-child {
	border-bottom: none;
}
.sub-menu a {
	font-size: 0.9rem !important;
	padding: 10px 0 !important;
}
/* ホバー＆フォーカスで子メニュー表示 */
/* Display sub menu by hover & focus */
.menu-item-has-children-dropdown:hover ul, .menu-item-has-children-dropdown ul.focused {
	opacity: 1;
	visibility: visible;
}
/**/
.header_item .mainbtn {
	margin: -5px 3.5px 0;
}
.header_item .mainbtn a {
	text-align: center;
	width: 235px;
	line-height: 1.55;
	padding: 12px;
	font-size: 0.9rem;
	color: #fff;
	background: #f59faf;
	border-radius: 0 0 20px 20px;
	border: 2px solid #f59faf;
}
.header_item .mainbtn a:hover {
	color: #f59faf;
	background: #fff;
	transform: scale(1, 1);
}
.telbtn a {
	color: #f59faf !important;
	background: #fff !important;
}
.telbtn a:hover {
	color: #fff !important;
	background: #f59faf !important;
}
.header_item .mainbtn a:after {
	content: none;
}
/* header_links */
/*大きいアイコン*/
.header_links {
	display: flex;
	align-items: center;
}
.wicon a i {
	font-size: 1.07rem;
	display: block;
	margin-bottom: 2px;
}
.wicon a {
	margin: 0 4.5px;
	text-align: center;
	color: #f59faf;
	font-size: 0.77rem;
	border-radius: 50%;
	aspect-ratio: 1 / 1;
	width: 102px;
	height: 102px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	background: #fff;
	position: relative;
}
.wicon a::after {
	content: '';
	width: calc(100% - 6px);
	height: calc(100% - 6px);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border: 1px dashed #fff;
	pointer-events: none;
	border-radius: 50%;
	aspect-ratio: 1 / 1;
}
.wicon a:hover {
	opacity: 0.6;
}
/*小さいアイコン*/
.wicon a:last-child {
	color: #fff;
	background: #f59faf;
}
.header_links .iconbtn a {
	width: 40px;
	height: 40px;
	font-size: 1.4rem;
	margin: 4px 0;
}
/* hamburger ================================= */
.header__inner {
	display: none;
}
.hamburger {
	position: fixed;
	display: block;
	top: 31px;
	right: 23px;
	z-index: 9999;
	width: 60px;
	height: 35px;
	border: none;
	background-color: transparent;
}
.hamburger::before {
	content: '';
	width: 69px;
	height: 77px;
	position: absolute;
	top: 55%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #5C0E00;
	z-index: -1;
	mask-image: url(../img/eggmask.png);
	mask-repeat: no-repeat;
	mask-size: 100% 100%;
	-webkit-mask-image: url(../img/eggmask.png);
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: 100% 100%;
}
.hamburger.-active::before {
	transform: translate(-50%, -50%) rotate(23deg);
}
.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__line {
	display: block;
	height: 3px;
	position: absolute;
	top: 15px;
	left: 50%;
	transform: translateX(-50%);
	width: 35px;
	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: #fff;
}
.hamburger__line:before {
	top: -8.5px;
}
.hamburger__line:after {
	top: 8.5px;
}
/**/
.hamburger__text {
	position: absolute;
	bottom: -14px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
}
.hamburger__text::before {
	content: "menu";
	text-align: center;
	color: #fff;
	font-size: 0.67rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: capitalize;
}
.hamburger.-active .hamburger__text {
	bottom: -16px;
}
.hamburger.-active .hamburger__text::before {
	content: 'close';
}
/*メニュー中身*/
.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: #FFFFF4;
	overflow: hidden;
}
.header__nav-area a {
	color: #5C0E00;
}
.header__nav-area.-active {
	opacity: 1;
	visibility: visible;
}
.global-navigation {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	height: fit-content;
	width: 85%;
	max-width: 600px;
}
.global-navigation__list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	position: relative;
	top: -20px;
}
.global-navigation__list > li {
	width: 49%;
	margin: 3px 0;
	font-size: 1.15rem;
	transition: .35s;
	display: block;
	padding: 15px 5px 17px;
	border-bottom: 2px dotted #f7dda1;
}
.global-navigation__list > li a {
	display: inline-block;
	width: 100%;
	position: relative;
	padding-left: 18px;
}
.global-navigation__list > li a::before {
	font-family: "Font Awesome 6 Free";
	content: "\f138";
	font-weight: bold;
	color: #f59faf;
	font-size: 75%;
	position: absolute;
	top: 0.3em;
	left: 0;
}
.global-navigation__list > li a span {
	margin-left: 8px;
	font-size: 58%;
	color: #f59faf;
	transition: all .3s;
	text-transform: capitalize;
	white-space: nowrap;
	font-family: 'Homemade Apple', cursive;
	font-weight: 400;
}
/* sub menu */
.widemenu {
	width: 100% !important;
}
.wide_sub_menu {
	margin-top: 6px;
	display: flex;
	font-size: 88% !important;
}
.wide_sub_menu li {
	margin-right: 15px;
}
.wide_sub_menu li a::before {
	content: "\f068";
}
/* btn */
.ham_btns {
	width: fit-content;
	margin: auto;
}
.ham_btns .mainbtn {
	margin-bottom: 7px;
}
/* hamburger menu icon */
.ham_btns {
	display: flex;
}
.ham_btns div a {
	display: block;
	width: 32%;
	line-height: 1.5;
}
.ham_btns div a i {
	font-size: 1.07rem;
	display: block;
}
.ham_btns div a .fa-phone {
	font-size: 0.9rem;
	margin-bottom: 1.5px;
}
.ham_btns div a .fa-external-link {
	font-size: 99%;
	margin-bottom: 1px;
}
.ham_btns div a {
	margin: 0 4.5px;
	text-align: center;
	color: #fff;
	font-size: 0.77rem;
	border-radius: 50%;
	aspect-ratio: 1 / 1;
	width: 93px;
	height: 93px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	background: #f59faf;
	position: relative;
}
.ham_btns div a::after {
	content: '';
	width: calc(100% - 6px);
	height: calc(100% - 6px);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border: 1px dashed #fff;
	pointer-events: none;
	border-radius: 50%;
	aspect-ratio: 1 / 1;
}
/* accordion menu */
.accordion__list li {
	font-size: 1rem;
}
.accordion__list li + li {
	margin-top: 11px;
}
.accordion__list li a::before {
	display: inline-block;
	font-family: "Font Awesome 6 Free";
	content: "\f105";
	font-weight: bold;
	margin-right: 7px;
	font-size: 0.6rem;
	transform: translateY(-2px);
	color: #4c5434;
}
.accordion__link {
	opacity: 0.85;
}
.accordion {
	height: 0;
	overflow: hidden;
	visibility: hidden;
	transition: 0.4s;
}
.accordion.-active {
	height: auto;
	padding-top: 17px;
	visibility: visible;
}
.global-navigation__link.-accordion {
	position: relative;
	background: none;
	border: none;
	appearance: none;
	width: 100%;
	padding: 0;
	text-align: left;
	color: #fff;
}
.global-navigation__link.-accordion::after {
	content: '';
	display: block;
	height: 12px;
	position: absolute;
	top: 50%;
	right: 5px;
	width: 2px;
	background-color: #4c5434;
	transform: translateY(-50%);
	transition: transform 0.4s;
}
.global-navigation__link.-accordion::before {
	content: '';
	display: block;
	height: 2px;
	position: absolute;
	top: 50%;
	right: 0;
	width: 12px;
	background-color: #4c5434;
	transform: translateY(-50%);
}
.global-navigation__link.-active::after {
	transform: translateY(-50%) rotate(-90deg);
}
@media (max-width: 1430px) {
	.hwrap {
		width: 97%;
		max-width: 100%;
	}
}
@media (max-width: 1355px) {
	.hwrap {
		max-width: 1060px;
	}
	.header_title a img {
		width: 170px;
	}
	.hnav {
		padding: 15px 25px 17px;
	}
	.header ul li a {
		font-size: 0.87rem;
	}
	.header ul li {
		margin-right: 20px;
	}
	.header_links {
		display: flex;
		align-items: center;
	}
	.wicon a i {
		font-size: 0.8rem;
	}
	.wicon a {
		margin: 0 3px;
		font-size: 0.6rem;
		width: 86px;
		height: 86px;
	}
	.header_links .iconbtn a {
		font-size: 1.2rem;
		width: 36px;
		height: 36px;
		margin: 3.5px 0;
	}
	.sub-menu {
		width: 140px;
		top: 40px;
	}
	.sub-menu a {
		font-size: 0.75rem !important;
	}
}
@media (max-width: 1065px) {
	.header_sticky {
		height: 0;
	}
	.hwrap {
		width: 95.5%;
	}
	.header {
		padding: 0;
	}
	.header_title a {
		position: fixed;
		top: 9px;
		left: 17px;
	}
	.header_title a img {
		width: 175px;
	}
	.header_links {
		display: none;
	}
	.header_nav {
		display: none;
	}
	.header .inner {
		display: none;
	}
	.hnav {
		display: none;
	}
	.header_inner {
		margin: 0;
	}
	.header__inner {
		display: block;
	}
}
@media (max-width: 670px) {
	.global-navigation__list > li {
		font-size: 0.87rem;
		padding: 3px 5px 5px;
		line-height: 2.1;
	}
	.global-navigation__list > li a {
		padding-left: 15px;
	}
	.global-navigation__list > li a span {
		display: block;
		margin-left: 0;
	}
	.ham_btns div a {
		margin: 0 4.5px;
		font-size: 0.57rem;
		width: 76px;
		height: 76px;
	}
	.widemenu {
		line-height: 1.95 !important;
		padding-bottom: 7px !important;
	}
	.wide_sub_menu {
		margin-top: 0;
	}
	.wide_sub_menu {
		font-size: 91% !important;
	}
	.ham_btns div a .fa-external-link {
		font-size: 135%;
		margin-bottom: 3px;
	}
}
@media (max-width: 550px) {
	.header_title a {
		top: 8px;
		left: 7px;
	}
	.header_title a img {
		width: 150px;
	}
	.hamburger {
		top: 22px;
		right: 10px;
	}
	.hamburger::before {
		width: 59px;
		height: 67px;
		top: 58%;
	}
	.ham_btns .mainbtn a {
		font-size: 0.87rem;
	}
	.ham_btns .mainbtn {
		margin-bottom: 4px;
	}
}
/* footer =======================================*/
/**/
.footer_contact {
	position: relative;
	background: #ffd6dd; /*#ffccd5*/
	padding: 40px 0;
	clip-path: ellipse(100% 100% at bottom);
}
.footer_contact .inner {
	max-width: 930px;
}
/*logo*/
.flogo {
	display: block;
	width: 100%;
	max-width: 220px;
	margin-bottom: 10px;
}
a.flogo:hover {
	orphans: 0.6;
}
.footer_address {
	width: 66%;
}
.footer_address h3 {
	position: relative;
	padding-left: 20px;
	font-size: 1.15rem;
	border-bottom: 2px dotted #fff;
	padding-bottom: 1px;
	margin-bottom: 10px;
}
.footer_address h3::before {
	font-family: "Font Awesome 6 Free";
	content: "\f138";
	font-weight: bold;
	font-size: 75%;
	position: absolute;
	top: 49%;
	transform: translateY(-50%);
	left: 0;
}
.footer_address p {
	line-height: 1.6;
	font-size: 90%;
}
/*お問い合わせリンクボタン*/
.footer_btns {
	display: block;
	width: 30%;
}
.footer_btns .mainbtn {
	width: 100%;
	margin-bottom: 7px;
}
.footer_btns .mainbtn a {
	font-size: 100%;
	width: 100%;
	white-space: nowrap;
}
.ftelbtn a {
	color: #f59faf !important;
	background: #fff !important;
}
.ftelbtn a::after {
	border: 1px dashed #f59faf;
}
.ftelbtn a:hover {
	color: #fff !important;
	background: #f59faf !important;
}
.ftelbtn a:hover::after {
	border: 1px dashed #fff;
}
/*アイコンボタン*/
.iconflex {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 13px;
}
.iconbtn {
	margin: 0 3.7px;
}
.iconbtn a {
	border: 2px solid #f59faf;
	color: #f59faf;
	font-size: 1.4rem;
	border-radius: 50px;
	width: 38px;
	height: 38px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff;
	padding-left: 2px;
}
.iconbtn a:hover {
	opacity: 0.6;
}
@media (max-width: 950px) {
	.fblex .mainbtn a {
		font-size: 0.85rem;
	}
}
@media (max-width:1025px) {
	.footer_btns .mainbtn a {
		font-size: 90%;
	}
}
@media (max-width:750px) {
	.footer_contact {
		clip-path: ellipse(170% 100% at bottom);
	}
	.iconflex {
		margin-top: 5px;
		justify-content: center;
	}
	.footer_address {
		margin-bottom: 27px;
	}
	.footer_address .flexbox .w48 {
		margin-bottom: 20px;
	}
	.footer_btns {
		margin: auto;
		margin-top: 33px;
		max-width: 320px;
	}
	.footer_contact .iconflex {
		margin-top: 20px;
	}
}
@media (max-width:550px) {
	.footer_contact {
		padding: 33px 0 30px;
	}
	.flogo {
		max-width: 160px;
		margin-bottom: 7px;
	}
	.footer_address h3 {
		font-size: 1.05rem;
	}
	.footer_btns {
		max-width: 210px;
	}
	.iconbtn {
		margin: 0 3.5px;
	}
	.iconbtn a {
		width: 34px;
		height: 34px;
		font-size: 1.2rem;
	}
}
/*フッター修正 ===============================*/
.footer_contact {
	padding: 65px 0 53px;
}
.footer_contact .inner {
	max-width: 1100px;
}
.footer_contact .flexbox {
	flex-wrap: nowrap;
	margin-bottom: 13px;
}
.flogo {
	margin-right: 115px;
}
.footer_address {
	width: 100%;
}
.footer_btns {
	display: flex;
	justify-content: space-between;
	width: 100%;
}
.footer_btns .mainbtn {
	width: 24%;
}
@media (max-width: 1020px) {
	.flogo {
		max-width: 195px;
	}
}
@media (max-width: 750px) {
	.footer_contact {
		padding: 35px 0;
	}
	.flogo {
		margin: auto;
		margin-bottom: 10px;
	}
	.footer_btns {
		flex-wrap: wrap;
		max-width: 550px;
	}
	.footer_btns .mainbtn {
		width: 49%;
	}
}
@media (max-width: 550px) {
	.flogo {
		max-width: 170px;
	}
	.footer_address {
		margin-bottom: 20px;
	}
	.footer_btns .mainbtn a {
		font-size: 87%;
	}
	.footer_contact .flexbox {
		margin-bottom: 10px;
	}
}
@media (max-width: 320px) {
	.footer_btns {
		display: block;
		max-width: 230px;
	}
	.footer_btns .mainbtn {
		width: 100%;
	}
	.footer_btns .mainbtn a {
		padding: 17px 0;
		font-size: 100%;
	}
}
/*copyright*/
.copyright {
	text-align: center;
	padding: 10px 0px 13px;
	color: #fff;
	background: #f59faf;
	font-size: 0.95rem;
}
@media (max-width: 550px) {
	.copyright {
		font-size: 0.7rem;
		padding: 8px 0px 11px;
	}
}
/*ページ上に戻るボタン*/
.go_top {
	display: block;
	width: 61px;
	height: 61px;
	box-sizing: border-box;
	background: #f59faf;
	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 {
	overflow: hidden;
	position: relative;
	clip-path: ellipse(130% 100% at top);
}
/**/
.slide_items {
	position: relative;
	width: 100%;
}
.slide_items img {
	width: 100%;
	height: calc(100vh - 150px);
	min-height: 620px;
	object-fit: cover;
}
/* === text ===*/
.slide_text {
	white-space: nowrap;
	position: absolute;
	bottom: 100px;
	left: 3%;
	font-size: 3rem;
	color: #fff;
	z-index: 2;
	line-height: 1.35;
	letter-spacing: 0.02em;
	text-shadow: 2px 2px 0 #f59faf, -2px -2px 0 #f59faf, -2px 2px 0 #f59faf, 2px -2px 0 #f59faf, 0px 2px 0 #f59faf, 0 -2px 0 #f59faf, -2px 0 0 #f59faf, 2px 0 0 #f59faf;
}
.slide_text .eggtext {
	font-size: 135%;
	color: #fff1bf;
	text-shadow: 2px 2px 0 #f3981d, -2px -2px 0 #f3981d, -2px 2px 0 #f3981d, 2px -2px 0 #f3981d, 0px 2px 0 #f3981d, 0 -2px 0 #f3981d, -2px 0 0 #f3981d, 2px 0 0 #f3981d;
}
/*アニメーション*/
/*見出しアニメーション*/
.slide_text .eggtext span {
	display: inline-block;
	opacity: 0;
}
.slide_text .eggtext.inview span {
	animation: textfadein 0.8s ease 1.5s 1 forwards;
}
.slide_text .eggtext.inview span:nth-child(1) {
	animation-delay: 0.55s;
}
.slide_text .eggtext.inview span:nth-child(2) {
	animation-delay: 0.7s;
}
.slide_text .eggtext.inview span:nth-child(3) {
	animation-delay: 0.85s;
}
@keyframes textfadein {
	0% {
		top: 20px;
		transform: scale(1.0, 1.0) translate(0%, 0%);
		opacity: 0;
	}
	40% {
		transform: scale(0.95, 1.1) translate(0%, -10%);
	}
	60% {
		top: -2px;
		opacity: 1;
	}
	70% {
		top: 0;
		transform: scale(1.05, 0.95) translate(0%, 3%);
	}
	100% {
		transform: scale(1.0, 1.0) translate(0%, 0%);
		opacity: 1;
	}
}
/*スライドアニメーション*/
@keyframes fadezoom {
	0% {
		transform: scale(1.15);
	}
	100% {
		transform: scale(1);
	}
}
.slick-animation {
	animation: fadezoom 14s linear 0s normal both;
}
@media (max-width: 1170px) {
	.slide_text {
		bottom: 70px;
		font-size: 2.3rem;
	}
	.slide_items img {
		min-height: auto;
		height: 650px;
	}
}
@media (max-width:750px) {
	.topslide {
		clip-path: ellipse(170% 100% at top);
	}
	.slide_text {
		bottom: 30px;
		font-size: 1.65rem;
		text-shadow: 1px 1px 0 #f59faf, -1px -1px 0 #f59faf, -1px 1px 0 #f59faf, 1px -1px 0 #f59faf, 0px 1px 0 #f59faf, 0 -1px 0 #f59faf, -1px 0 0 #f59faf, 1px 0 0 #f59faf;
	}
	.slide_text .eggtext {
		text-shadow: 1px 1px 0 #f3981d, -1px -1px 0 #f3981d, -1px 1px 0 #f3981d, 1px -1px 0 #f3981d, 0px 1px 0 #f3981d, 0 -1px 0 #f3981d, -1px 0 0 #f3981d, 1px 0 0 #f3981d;
	}
	.slide_items img {
		height: 480px;
	}
}
@media (max-width:550px) {
	.slide_text {
		font-size: 6.7vw;
	}
}
/*============*/
.pdb {
	padding-bottom: 55px !important;
}
.pdb0 {
	padding-bottom: 1px !important;
}
@media (max-width: 550px) {
	.pdb {
		padding-bottom: 20px !important;
	}
}
.center {
	text-align: center;
}
@media (max-width:750px) {
	.spcenter {
		text-align: center !important;
	}
}
.fitc {
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
}
.tbtn {
	margin-top: 45px;
}
@media (max-width: 550px) {
	.tbtn {
		margin-top: 33px;
	}
}
.aic {
	align-items: center;
}
/*flowup*/
.flowup {
	opacity: 0;
	transform: translateY(15px);
	transition: opacity 0.8s, transform 1.2s;
	transition-delay: 0.25s;
}
.flowup.inview {
	opacity: 1;
	transform: translateY(0);
}
/*mask*/
.masked {
	mask-image: url(../img/mask.svg);
	mask-repeat: no-repeat;
	-webkit-mask-image: url(../img/mask.svg);
	-webkit-mask-repeat: no-repeat;
}
/*egg*/
.eggmask {
	mask-image: url(../img/eggmask.png);
	mask-repeat: no-repeat;
	mask-size: 100% 100%;
	-webkit-mask-image: url(../img/eggmask.png);
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: 100% 100%;
}
/* 新着情報 ========================*/
.news {
	padding: 80px 0;
}
.nflex {
	display: flex;
}
.nft {
	margin-right: 45px;
}
.nfwrap {
	width: 100%;
}
@media (max-width: 750px) {
	.nflex {
		display: block;
	}
	.nft {
		margin-right: 0;
	}
	.nft .maintitle {
		margin-bottom: 15px;
	}
}
@media (max-width: 550px) {
	.news {
		padding: 45px 0 55px;
	}
}
/* 営業日カレンダー ========================*/
.calendarbg {
	position: relative;
	padding: 20px;
	background: #f59faf;
	border-radius: 20px;
}
.calendarbg::before, .calendarbg::after {
	content: '';
	display: block;
	border-radius: 50%;
	background-color: #fff4db;
	position: absolute;
	width: 10px;
	height: 10px;
	top: 15px;
}
.calendarbg::before {
	left: 15px;
}
.calendarbg::after {
	right: 15px;
}
.calendarbg h3 {
	font-size: clamp(1rem, 0.5rem + 1.6vw, 1.4rem);
	color: #fff;
	text-align: center;
	margin-bottom: 15px;
}
.whitebox {
	padding: 20px;
	background: #fff;
	border-radius: 20px;
}
.whitebox iframe {
	width: 100%;
	height: 320px;
}
@media (max-width: 1080px) {
	.whitebox {
		padding: 17px;
	}
}
@media (max-width: 750px) {
	.calendarbg, .whitebox {
		border-radius: 15px;
	}
	.calendarbg::before, .calendarbg::after {
		width: 6px;
		height: 6px;
		top: 13px;
	}
	.calendarbg::before {
		left: 13px;
	}
	.calendarbg::after {
		right: 13px;
	}
	.calendarbg {
		padding: 12px;
		margin-bottom: 20px;
	}
	.calendarbg:last-child {
		margin-bottom: 0;
	}
	.calendarbg h3 {
		margin-bottom: 10px;
	}
	.whitebox {
		padding: 13px;
	}
}
/* について ========================*/
.aboutimgs {
	display: flex;
	justify-content: center;
	position: relative;
}
.aboutimgs div {
	width: 50%;
	position: relative;
}
.aboutimgs div:nth-child(1) {
	right: -20px;
}
.aboutimgs div:nth-child(2) {
	left: -20px;
	top: 30px;
}
/*text*/
.abouttext {
	position: relative;
	max-width: 900px;
	margin: auto;
	margin-bottom: 45px;
}
.abouttext p {
	text-shadow: 1px 1px 0 #FFFFF4, -1px -1px 0 #FFFFF4, -1px 1px 0 #FFFFF4, 1px -1px 0 #FFFFF4, 0px 1px 0 #FFFFF4, 0 -1px 0 #FFFFF4, -1px 0 0 #FFFFF4, 1px 0 0 #FFFFF4;
}
@media (max-width: 550px) {
	.aboutimgs {
		display: block;
	}
	.aboutimgs div {
		width: 86%;
	}
	.aboutimgs div:nth-child(1) {
		right: 0;
	}
	.aboutimgs div:nth-child(2) {
		left: 0;
		top: 0;
		margin-left: auto;
		margin-top: 5px;
	}
}
/*eggs*/
.abdeco {
	position: absolute;
	width: 15%;
	z-index: -1;
}
.abdeco::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	bottom: -5px;
	left: 7px;
	background: #fac3cd;
	z-index: -1;
	mask-image: url(../img/eggmask.png);
	mask-repeat: no-repeat;
	mask-size: 100% 100%;
	-webkit-mask-image: url(../img/eggmask.png);
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: 100% 100%;
}
.abdeco:nth-of-type(2) {
	top: 0;
	right: -18%;
	transform: rotate(17deg);
}
.abdeco:nth-of-type(3) {
	top: 50%;
	left: -19.5%;
	transform: translateY(-50%) rotate(-17deg);
}
.abdeco:nth-of-type(3)::before {
	left: auto;
	right: 7px;
}
.abdeco:nth-of-type(4) {
	bottom: 0;
	right: -18%;
	transform: rotate(17deg);
}
@media (max-width: 1175px) {
	.abdeco:nth-of-type(2) {
		top: -140px;
		right: -35px;
	}
	.abdeco:nth-of-type(3) {
		top: -10%;
		left: -35px;
		transform: translateY(0) rotate(-17deg);
	}
	.abdeco:nth-of-type(4) {
		bottom: -10%;
		right: -35px;
	}
}
@media (max-width: 550px) {
	.abouttext {
		position: initial;
	}
	.abdeco {
		width: 60px;
	}
	.abdeco::before {
		bottom: -3px;
		left: 5px;
	}
	.abdeco:nth-of-type(3)::before, .abdeco:nth-of-type(4)::before {
		left: auto;
		right: 5px;
	}
	.abdeco:nth-of-type(2) {
		top: -40px;
		right: -1.5%;
	}
	.abdeco:nth-of-type(3) {
		top: -70px;
		left: -1.5%;
	}
	.abdeco:nth-of-type(4) {
		bottom: -75px;
		left: 0.5%;
		right: auto;
		transform: rotate(-17deg);
	}
}
/* 人気メニュー ========================*/
.pickup .tbtn {
	margin-top: 30px;
}
@media (max-width: 550px) {
	.pickup .tbtn {
		margin-top: 20px;
	}
}
/*枠*/
.introduction {
	width: 100%;
	margin: auto;
}
.introduction .inner {
	overflow: hidden;
	margin: 0 15px 15px;
	border: 3px solid #e8dbac;
	border-radius: 20px;
	padding: 25px;
	position: relative;
}
.introduction .inner::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #FFFFF4;
	z-index: -100;
}
/*見出し*/
.introduction h3 {
	position: relative;
	z-index: 1;
	top: -15px;
	text-align: center;
	font-size: 1.35rem;
	color: #c79d0e;
	line-height: 1.5;
	padding: 7px 10px 40px;
}
.introduction h3::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;
}
/*装飾英語*/
.pickup_en {
	position: absolute;
	bottom: -0.4%;
	left: 50%;
	transform: translateX(-50%) rotate(-10deg);
	font-size: 90%;
	color: #f59faf;
	font-family: 'Homemade Apple', cursive;
	font-weight: 400;
}
/*スライド要素*/
.introduction_wrap {
	width: calc(100% - 100px);
	margin: auto;
}
.introduction .slick-track {
	display: flex;
}
.introduction .slick-slide {
	height: auto !important;
}
.introduction .slick-next {
	right: -35px;
	z-index: 50;
}
.introduction .slick-prev {
	left: -35px;
	z-index: 50;
}
.introduction .slick-prev:before, .introduction .slick-next::before {
	font-size: 1.25rem;
	color: #f59faf;
}
@media (max-width:550px) {
	.introduction_wrap {
		width: calc(100% - 20px);
	}
	.introduction .inner {
		padding: 17px;
	}
	.introduction h3 {
		padding: 7px 10px 30px;
		top: -10px;
		font-size: 1.15rem;
	}
	.introduction .slick-next {
		right: -9px;
	}
	.introduction .slick-prev {
		left: -9px;
	}
}
/* メニュー ========================*/
.menus .inner {
	max-width: 1400px;
}
.menus .maintitle {
	margin-bottom: 30px;
}
.menulink {
	position: relative;
	width: 23.5%;
	height: 440px;
	border: 2px solid #fff;
}
.menulink:nth-child(2) {
	top: 20px;
}
.menulink:nth-child(3) {
	top: 40px;
}
.menulink:nth-child(4) {
	top: 60px;
}
.menulink a {
	border-radius: 300px 300px 5px 5px;
	display: block;
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100%;
}
.menulink a::before {
	content: '';
	width: calc(100% - 8px);
	height: calc(100% - 8px);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 300px 300px 5px 5px;
	border: 2px solid #fff;
	opacity: 0.5;
}
.menulink img {
	overflow: hidden;
	object-fit: cover;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition: .6s;
	z-index: -2;
}
.menulink a:hover img {
	transform: scale(1.07, 1.07);
	transition: .9s;
}
/*title*/
.menulinktitle h3 {
	font-weight: 700;
	padding: 2px 35px 5px 15px;
	color: #fff;
	background: #f59faf;
	font-size: 1.25rem;
	clip-path: polygon(100% 0, 90% 50%, 100% 100%, 0 100%, 0 0);
}
.menulinktitle {
	pointer-events: none;
	position: absolute;
	bottom: 35px;
	left: -10px;
}
.menulinktitle::after {
	position: absolute;
	content: '';
	bottom: -10px;
	left: 0;
	border: none;
	border-bottom: solid 10px transparent;
	border-right: solid 10px #e88e9e;
}
@media (max-width:1140px) {
	.menulink {
		height: 400px;
	}
	.menulinktitle h3 {
		font-size: 1.05rem;
	}
}
@media (max-width:1010px) {
	.menus .maintitle {
		margin-bottom: 50px;
	}
	.menulink {
		width: 48.5%;
		height: 55vw;
	}
	.menulinktitle h3 {
		font-size: 1.15rem;
	}
}
@media (max-width:750px) {
	.menus {
		padding-bottom: 20px;
	}
	.menus .inner {
		width: 75%;
	}
	.menulink {
		top: 0 !important;
		height: 85vw;
		margin-bottom: 30px;
	}
	.menulink:last-child {
		margin-bottom: 0 !important;
	}
	.menulinktitle {
		bottom: 20px;
	}
	.menulinktitle h3 {
		width: fit-content;
		font-size: 1.05rem;
	}
}
@media (max-width:550px) {
	.menus .maintitle {
		margin-bottom: 37px;
	}
}
/* ネットショップ ========================*/
.shop_banner {
	background: #fff;
	border-radius: 20px;
	border: 3px solid #ffc7d0;
	overflow: hidden;
}
.shop_banner .tbtn {
	margin-top: 35px;
}
/*text*/
.shop_banner h2 {
	font-weight: 700;
	border-bottom: 2px dotted #f59faf;
	padding-bottom: 7px;
	font-size: 1.5rem;
	margin-bottom: 15px;
}
.sbtext {
	margin: auto;
	padding: 60px 20px;
}
/*img*/
.sbimgs {
	display: flex;
	justify-content: space-between;
	clip-path: ellipse(100% 100% at right);
}
.sbimgs img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
@media (max-width:750px) {
	.sbtext h2, .sbtext p {
		width: fit-content;
		margin-left: auto;
		margin-right: auto;
	}
	.sbimgs {
		clip-path: ellipse(100% 100% at top);
	}
}
@media (max-width:550px) {
	.shop_banner .tbtn {
		margin-top: 25px;
	}
	.sbtext {
		margin: auto;
		padding: 20px 17px 30px;
	}
	.shop_banner h2 {
		padding-bottom: 5px;
		font-size: 1.25rem;
		margin-bottom: 20px;
	}
}
/*装飾*/
.shop_banner_wrap {
	position: relative;
}
/*装飾text*/
.ostext {
	position: absolute;
	top: -27px;
	left: -11px;
	font-weight: 400;
	font-size: clamp(1.6rem, 0.475rem + 3.6vw, 2.5rem);
	font-family: 'Homemade Apple', cursive;
	color: #f59faf; /*dd3647*/
	transform: rotate(-7deg);
	text-transform: capitalize;
	white-space: nowrap;
	letter-spacing: 0.025em;
	z-index: 1;
}
/**/
.shop_banner_wrap::before {
	content: "";
	width: 60px;
	height: 100%;
	position: absolute;
	right: -43px;
	top: -43px;
	background: url(../img/deco.svg) top center;
	background-size: contain;
	background-repeat: no-repeat;
	z-index: 1;
}
@media (max-width:1015px) {
	.shop_banner_wrap::before {
		width: 6%;
		right: -4%;
		top: -7%;
	}
}
@media (max-width:750px) {
	.shop_banner_wrap::before {
		top: -2.5%;
	}
}
@media (max-width:450px) {
	.shop_banner_wrap::before {
		width: 10.5%;
		top: -5%;
		right: -4.5%;
	}
}
/* 下層ページトップ ================================================================================================================*/
.fv {
	padding: 110px 0 90px;
	width: 100%;
	display: flex;
	align-items: center;
	position: relative;
	clip-path: ellipse(100% 100% at top);
}
.fv .inner {
	width: 97%;
}
.fv::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: url(../img/fv.jpg);
	background-size: cover;
	background-position: 50% 60%;
	z-index: -1;
}
.fv::before {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: #6b523b;
	opacity: 0.8;
}
.fv h2 {
	text-align: center;
	margin-bottom: 16px;
	font-size: clamp(1.7rem, 0.825rem + 2.8vw, 2.4rem);
	font-weight: 700;
	line-height: 1;
	z-index: 1;
	position: relative;
	color: #fff;
}
@media(max-width:1065px) {
	.fv {
		clip-path: ellipse(130% 100% at top);
		padding: 120px 0 90px;
	}
}
@media(max-width:550px) {
	.fv h2 {
		margin-bottom: 12px;
	}
	.fv {
		padding: 110px 0 45px;
	}
}
/* breadcrumb */
.binner {
	line-height: 1.6;
	width: 97%;
	font-size: 1.05rem;
	font-weight: 700;
	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: '';
}
.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:750px) {
	.binner {
		font-size: 0.9rem;
	}
}
@media(max-width:550px) {
	.binner {
		font-size: 0.85rem;
	}
}
/**/
.if_lineheight {
	line-height: 1.35;
}
/**/
.fbg_cream {
	background: #fff4db;
}
/* 焼き菓子／スイーツ／ジェラート・贈答品ページ ======================================================================================*/
.menuflex {
	justify-content: center;
}
.menubox {
	width: 29%;
	margin: 0 2% 35px;
}
.menubox h3 {
	overflow: hidden;
	position: relative;
	padding: 8px 5px 10px 5px;
	margin: 10px 0;
	font-size: clamp(1rem, 0.8125rem + 0.6vw, 1.15rem);
	clip-path: polygon(100% 0%, 97% 50%, 100% 100%, 0 100%, 0 0);
	background: #f59faf;
	color: #fff;
}
.menubox h3::before {
	content: '';
	width: calc(100% + 10px);
	height: calc(100% - 7px);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border: 1px solid #ffe8b3;
	z-index: 1;
	pointer-events: none;
}
.menubox h3 span {
	display: block;
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
}
.menubox p {
	margin-top: 10px;
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
}
@media(max-width:1150px) {
	.menuflex .menubox {
		width: 44%;
	}
}
@media(max-width:750px) {
	.menuflex .menubox {
		margin: 0 0 35px !important;
		width: 100% !important;
	}
	.menuflex .menubox:last-child {
		margin-bottom: 0 !important;
	}
}
/* bakedgoods */
.bakedgoods .inner {
	max-width: 1275px;
}
/* dessert */
/*
.dessert .inner {
	max-width: 1000px;
}
.dessert .menuflex .menubox {
	width: 44%;
}
*/
.dessert .menuflex .menubox h3 {
	background: #f2c55c;
}
/* ネットショップページ =======================================================================================================*/
.orderpage .mtitle {
	font-size: clamp(1.2rem, 0.8875rem + 1vw, 1.45rem);
}
.order_form_in {
	max-width: 1100px;
	margin: auto;
}
/*==注文フォーム==*/
/*商品欄のレイアウト*/
.order .flex {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	position: relative;
}
.order .flex::after {
	content: "";
	display: block;
	width: 48%;
}
.order .flex .box {
	width: 48%;
	margin-bottom: 70px;
}
.order .box .image {
	margin: 0 auto;
	max-width: 500px;
	margin-bottom: 5px;
}
.order .box .info h3 {
	margin-bottom: 7px;
}
.order .box .info p {
	margin-bottom: 17px;
}
.info .c_table {
	font-size: 95%;
}
.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 select {
	padding: 0 2px;
	margin-right: .5em;
	cursor: pointer;
	width: 100px;
	background: #fff;
	border: 1px solid #c2c2c2;
	border-radius: 3px;
	color: #5C0E00;
}
.order .box .count .cell::after {
	font-family: "Font Awesome 6 Free";
	content: "\f107";
	display: block;
	font-weight: bold;
	font-size: 12px;
	line-height: 1;
	position: absolute;
	top: 40%;
	right: 15px;
	transform: translateY(-50%);
	z-index: 1;
	pointer-events: none;
	color: #5C0E00;
}
@media (max-width: 750px) {
	.order .flex .box {
		width: 100%;
		margin-bottom: 55px;
	}
}
/*合計金額とリセットボタン*/
.order .total {
	text-align: center;
	margin: 50px 0 95px;
	padding: 20px 0;
	background: #fdfdfa;
	border: 3px solid #f5e7c6;
	border-radius: 10px;
}
.order .total .mfp {
	display: inline-block;
}
.order .total .total_main {
	font-size: clamp(1.05rem, 0.8625rem + 0.6vw, 1.2rem);
	margin-bottom: 5px;
}
@media (max-width: 550px) {
	.order .total {
		margin: 10px 0 60px;
	}
	.order .total .total_main {
		margin-bottom: 0;
	}
	.total_sub {
		font-size: 92%;
	}
}
.order .button_wrap button::before {
	display: none;
}
.order .button_wrap .reset {
	font-size: 0.8rem;
	border-radius: 40px;
	color: #f59faf;
	background: #fff;
	border: 1px solid #f59faf;
	margin-top: 13px;
	width: 200px;
	padding: 18px 0;
}
.order .button_wrap .reset:hover {
	color: #fff;
	background: #f59faf;
}
.ordernote {
	margin-top: 30px;
}
@media (max-width: 450px) {
	.order .button_wrap .reset {
		width: 180px;
		padding: 12px;
	}
	.ordernote {
		font-size: 90%;
	}
}
/*===メールフォーム(共通)==============================*/
.mailform {
	margin: 0 auto;
	max-width: 960px;
}
.mailform .row {
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
}
.mailform .row:not(.last) {
	border-bottom: 1px dotted #cccccc;
}
.mailform .row div:nth-child(1) {
	width: 28%;
	font-size: 0.9rem;
}
.mailform .row div:nth-child(2) {
	width: 70%;
	line-height: 1.5;
}
.mailform .row span {
	color: #fff;
	background: #f59faf;
	padding: 5px;
	margin-right: 5px;
	font-size: 11px;
	border-radius: 2px;
	vertical-align: middle;
}
.mailform .row small {
	display: block;
	margin-top: 3px;
}
.mailsp {
	background: #fff !important;
	border: 1px solid #f59faf;
	color: #f59faf !important;
}
.mailform .box, .mailform textarea {
	border: 1px solid #ddd;
	padding: 5px;
	width: 100% !important;
	border-radius: 0;
	-webkit-appearance: none;
	margin-bottom: 5px;
	background: #fff;
	max-width: 100%;
	color: #5C0E00;
}
.mailform .postal_btn {
	padding: 2px 10px;
	background: #f59faf;
	color: #fff;
	border-radius: 2px;
	margin-top: 5px;
	border: 1px solid #f59faf;
}
.mailform .postal_btn:hover {
	background: #f59faf;
	opacity: 0.9;
}
.mailform button {
	display: block;
	text-align: center;
	transition: .6s;
	font-size: 1rem;
	padding: 8px 5px;
	margin: 0 auto;
	width: 250px;
	background: #f59faf;
	border: 1px solid #f59faf;
	border-radius: 10px;
	color: #fff;
}
.mailform button:hover {
	background: #fff;
	color: #f59faf;
}
.mailform button::before {
	font-family: "Font Awesome 6 Free";
	content: "\f0e0";
	font-weight: 700;
	margin-right: 10px;
}
@media (max-width: 750px) {
	.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%;
	}
}
/*チェックボックス*/
input[type=checkbox] {
	display: none;
}
input[type=checkbox] + label {
	display: inline-block;
	padding-left: 20px;
	position: relative;
	margin-right: 20px;
	margin-bottom: 10px;
	cursor: pointer;
}
input[type=checkbox] + label::before {
	background: #fff;
	border: 1px solid #999;
	content: '';
	display: block;
	position: absolute;
	top: 55%;
	transform: translate(0, -50%);
	left: 0;
	width: 15px;
	height: 15px;
	border-radius: 3px;
}
input[type=checkbox] + label::after {
	border-right: 3px solid #f59faf;
	border-bottom: 3px solid #f59faf;
	content: '';
	display: block;
	height: 15px;
	left: 8px;
	margin-top: -7px;
	opacity: 0;
	position: absolute;
	top: 36%;
	width: 5px;
	transform: rotate(45deg) translate3d(0, 2px, 0) scale3d(.7, .7, 1);
	transition: transform .2s ease-in-out, opacity .2s ease-in-out;
}
input[type=checkbox]:checked + label::after {
	opacity: 1;
	transform: rotate(45deg) scale3d(1, 1, 1);
}
@media (max-width: 750px) {
	input[type=checkbox] + label {
		display: block;
	}
}
/*ラジオボタン*/
input[type=radio] {
	display: none;
}
input[type=radio] + label {
	display: inline-block;
	padding-left: 20px;
	position: relative;
	margin-right: 20px;
	margin-bottom: 10px;
	cursor: pointer;
}
input[type=radio] + label::before {
	content: "";
	display: block;
	position: absolute;
	top: 55%;
	transform: translate(0, -50%);
	left: 0;
	width: 15px;
	height: 15px;
	background: #f4f4f4;
	border-radius: 100%;
	border: 1px solid #b4b4b4;
	cursor: pointer;
	text-align: center;
	transition: all 250ms ease;
}
input[type=radio]:checked + label::before {
	background-color: #f59faf;
	box-shadow: inset 0 0 0 2px #f4f4f4;
}
input[type=radio]:focus + label::before {
	outline: none;
	border-color: #f59faf;
}
input[type=radio]:disabled + label::before {
	box-shadow: inset 0 0 0 2px #f4f4f4;
	border-color: #b4b4b4;
	background: #b4b4b4;
}
input[type=radio] + label:empty::before {
	margin-right: 0;
}
@media (max-width: 750px) {
	input[type=radio] + label {
		display: block;
	}
}
/*特定商取引法に基づく表記*/
.nomgb {
	margin-bottom: 65px;
}
@media(max-width:1100px) {
	.nomgb {
		margin-bottom: 50px;
	}
}
@media(max-width:550px) {
	.nomgb {
		margin-bottom: 40px;
	}
}
/*table*/
.c_table {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
}
.c_table tr {
	border: 2px solid #f5e7c9;
}
.c_table th, .c_table td {
	padding: 15px 5px;
}
.c_table th {
	font-weight: 700;
	background: #f2c55c;
	color: #fff;
	width: 30%;
	border-right: 2px solid #f5e7c9;
}
.c_table td {
	padding-left: 10px;
	background: #fff;
	width: 70%;
	border-right: 2px solid #f5e7c9;
	border-left: 2px solid #f5e7c9;
}
/*list*/
.acheck li {
	padding-left: 20px;
	position: relative;
	padding-bottom: 3px;
	margin-bottom: 3px;
}
.acheck li::before {
	font-family: "Font Awesome 6 Free";
	content: "\f14a";
	font-weight: bold;
	display: inline-block;
	color: #f59faf;
	font-size: .9em;
	position: absolute;
	top: 0.15em;
	left: 0;
}
/* 送料一覧 */
.slist .inner {
	max-width: 1650px;
}
.s_table {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
}
.s_table span {
	display: inline-block;
}
.s_table tr {
	border: 2px solid #f5f5f5;
}
.s_table th, .s_table td {
	padding: 14px 0;
	text-align: center;
	font-size: 0.87rem;
}
.s_table th {
	padding: 0 3px;
	background: #f59faf;
	color: #fff;
	width: 33%;
	border-right: 2px solid #f5f5f5;
	font-weight: 700;
}
.s_table td {
	font-weight: 700;
	padding-left: 10px;
	padding-right: 10px;
	background: #fff;
	width: 67%;
	border-right: 2px solid #f5f5f5;
	border-left: 2px solid #f5f5f5;
}
.s_text {
	width: fit-content;
	font-size: 0.9rem;
	margin-left: auto;
}
/* table sp*/
.spsctext {
	display: none;
}
@media (max-width:1780px) {
	.spsctext {
		display: block;
	}
	.ct_wrap .s_table {
		width: 2367px;
	}
	.ct_wrap {
		padding-bottom: 5px;
		overflow-x: scroll;
	}
	.spnone {
		display: none;
	}
}
@media (max-width:550px) {
	.spsctext {
		font-size: 0.95rem;
	}
	.ct_wrap .s_table {
		width: 1657px;
	}
}
/* うっふについてページ ================================================================================================================*/
/* うっふについて */
.features::after {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-image: url(../img/egg_l.svg), url(../img/egg_r.svg);
	background-size: 17%;
	background-position: top left, top right;
	background-repeat: repeat-y;
	z-index: -1;
}
@media (max-width: 750px) {
	.features::after {
		background-size: 32%;
		background-position: top left -14%, top right -14%;
		opacity: 0.6;
	}
}
.features_text {
	max-width: 922px;
	margin: auto;
	margin-bottom: 85px;
}
.feastr {
	font-size: 130%;
	margin-bottom: 25px;
}
.feastr span {
	font-size: 120%;
}
/*img*/
.feaeggs {
	overflow: hidden;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	width: 120%;
	display: flex;
	justify-content: space-between;
}
.feaeggs div {
	width: 30%;
	margin: 0 1%;
}
.feaeggs div:nth-child(2n+1) {
	transform: rotate(25deg);
}
.feaeggs div:first-child {
	transform: rotate(0);
}
@media(max-width:1065px) {
	.feaeggs {
		width: 170%;
	}
}
@media(max-width:550px) {
	.features_text {
		margin-bottom: 45px;
	}
	.feastr {
		font-size: 107%;
		margin-bottom: 15px;
	}
	.feaeggs {
		width: 205%;
	}
}
/* 店舗概要 */
/* table */
.info_table {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
	font-weight: normal;
}
.info_table tr {
	border-bottom: 2px dotted #edafbb;
}
.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;
}
.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 #edafbb;
		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;
	}
}
/* アクセスマップ */
.mapbox {
	margin-bottom: 95px;
}
.mapbox:last-child {
	margin-bottom: 0 !important;
}
.mapbox iframe {
	width: 100%;
	height: 450px;
	border-radius: 10px;
}
/*img*/
.mapbimgs {
	margin-top: 20px;
	display: flex;
	justify-content: center;
	position: relative;
}
.mapbimgs div {
	width: 50%;
	position: relative;
}
.mapbimgs div:nth-child(1) {
	right: -20px;
}
.mapbimgs div:nth-child(2) {
	left: -20px;
	top: 30px;
}
@media(max-width: 550px) {
	.mapbox {
		margin-bottom: 55px;
	}
	.mapbox iframe {
		height: 230px;
	}
	.mapbimgs {
		margin-top: 7px;
	}
	.mapbimgs div:nth-child(1) {
		right: -7px;
	}
	.mapbimgs div:nth-child(2) {
		left: -7px;
		top: 15px;
	}
}
/* お問い合わせ ===================================================*/
.contact_sec .inner {
	max-width: 1070px;
}
.contact_top_text {
	margin-top: 10px;
	margin-bottom: 70px;
	max-width: 600px;
}
.contact_bottom_text {
	margin-top: 20px;
	margin-bottom: 0;
}
@media(max-width:550px) {
	.contact_top_text {
		font-size: 90%;
		margin-bottom: 35px;
	}
	.contact_bottom_text {
		font-size: 90%;
		margin-top: 10px;
	}
}
.contactp {
	padding-bottom: 0;
}
.contactp .rtext {
	margin-bottom: 45px;
}
@media (max-width: 750px) {
	.contactp .rtext {
		margin-bottom: 30px;
	}
}
.contact_wrap {
	position: relative;
	background: #fdfdfa;
	border: 3px solid #f7e2b2;
	margin: auto;
	padding: 30px 10px;
	border-radius: 15px;
}
.rcheck p::before {
	font-family: "Font Awesome 6 Free";
	content: "\f14a";
	font-weight: bold;
	display: inline-block;
	color: #f59faf;
	margin-right: 0.4em;
	font-size: 0.93em;
	text-decoration: none;
}
.tel_contact i {
	color: #f59faf;
}
.tel_contact {
	font-size: clamp(1.35rem, 0.725rem + 2vw, 1.85rem);
	white-space: nowrap;
	color: #5C0E00;
	z-index: 1;
	position: relative;
	font-weight: 700;
}
.tel_contact:hover {
	color: #5C0E00;
	opacity: 0.6;
}
.telflex {
	max-width: 1055px;
	margin: auto;
	align-items: flex-start;
}
.telflex .contact_wrap {
	margin: 0;
}
.tel_text {
	font-size: 0.95rem;
	margin-top: 7px;
	margin-bottom: 5px;
}
.te.tel_text {
	margin-top: 5px !important;
}
@media (max-width: 750px) {
	.te.tel_text {
		margin-bottom: 30px;
	}
}
.faxlist {
	display: flex;
	justify-content: center;
}
.faxlist p {
	margin-right: 25px;
	font-size: 0.9rem;
	margin-bottom: 0;
	white-space: nowrap;
}
.faxlist p:last-child {
	margin-right: 0 !important;
}
@media (max-width: 760px) {
	.faxlist p {
		margin-right: 20px;
	}
}
.telmini {
	position: relative;
	margin-bottom: 3px;
	letter-spacing: 0.1em;
	font-size: clamp(0.9rem, 0.65rem + 0.8vw, 1.1rem);
	line-height: 1.5;
	font-weight: 700;
}
.spb {
	margin-bottom: 60px;
}
@media (max-width: 1210px) {
	.tel_text {
		text-align: left;
	}
}
@media (max-width: 750px) {
	.faxlist p {
		margin-right: 30px;
	}
	.tel_text {
		text-align: center;
	}
	.telflex .contact_wrap {
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 3px;
	}
	.contact_wrap.fax {
		margin-bottom: 0;
	}
}
@media (max-width: 570px) {
	.tel_text {
		margin-bottom: 2.5px;
		text-align: left;
	}
}
@media (max-width: 490px) {
	.telmini {
		margin-bottom: 0;
	}
	.spb {
		margin-bottom: 13px;
		font-size: 1.1rem;
	}
}
@media (max-width: 365px) {
	.tel_text {
		margin-bottom: 7px;
	}
	.faxlist {
		display: block;
		width: fit-content !important;
		margin-right: auto;
	}
	.faxlist p {
		margin-right: 0;
	}
}
.tmgb {
	margin-bottom: 25px;
}
.fpdt {
	padding-top: 60px;
}
@media (max-width: 950px) {
	.fpdt {
		padding-top: 20px;
	}
}
@media (max-width: 550px) {
	.fpdt {
		padding-top: 50px;
	}
}
.tl_text {
	margin-top: 13px;
	font-size: clamp(1rem, 0.94rem + 0.2133vw, 1.1rem);
}
@media (max-width: 450px) {
	.tmgb {
		margin-bottom: 15px;
	}
	.contact_wrap {
		border-radius: 10px;
		max-width: 100%;
		padding: 17px 0;
	}
	.tl_text {
		margin-top: 7px;
	}
}
/* メール */
.mnote {
	max-width: 920px;
	margin: auto;
	margin-top: 60px;
}
.mpdb {
	padding-bottom: 70px !important;
	margin-bottom: 0 !important;
}
@media(max-width:450px) {
	.mnote {
		margin-top: 40px;
	}
	.mpdb {
		padding-bottom: 30px !important;
	}
}
.formsel p:last-child {
	margin-bottom: 0;
}
.mailform {
	max-width: 1100px;
	margin: 0 auto 0;
}
.mailform .row {
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
}
.mailform .row:not(.last) {
	border-bottom: 0.9px dotted #5C0E00;
}
.mailform .row div {
	text-align: left;
}
.mailform .row div:nth-child(1) {
	width: 28%;
	font-size: 0.95rem;
}
.mailform .row div:nth-child(2) {
	width: 70%;
	line-height: 1.5;
}
.mailform .row span {
	color: #fff;
	background: #f59faf;
	padding: 5px;
	margin-right: 5px;
	font-size: 12px;
	border-radius: 3px;
}
.mailsp {
	background: #fff !important;
	border: 1px solid #f59faf;
	color: #f59faf !important;
}
.mailform .row small {
	display: block;
	margin-top: 3px;
}
.mailform label {
	color: #5C0E00;
}
.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 .postal_btn {
	padding: 2px 10px;
	background: #f59faf;
	color: white;
	border-radius: 2px;
	margin-top: 5px;
	font-size: 90%;
}
@media (max-width: 450px) {
	.mailform .postal_btn {
		font-size: 80%;
	}
}
/*ラジオボタン*/
input[type=radio] {
	display: none;
}
input[type=radio] + label {
	cursor: pointer;
	padding-left: 23px;
	position: relative;
}
input[type=radio] + label::before {
	content: "";
	display: block;
	position: absolute;
	top: 53%;
	transform: translate(0, -50%);
	left: 0;
	width: 15px;
	height: 15px;
	background: #fff;
	border-radius: 100%;
	border: 1px solid #b4b4b4;
	cursor: pointer;
	text-align: center;
}
input[type=radio]:checked + label::before {
	background-color: #f59faf;
	box-shadow: inset 0 0 0 2px #f4f4f4;
}
input[type=radio]:focus + label::before {
	outline: none;
	border-color: #f59faf;
}
input[type=radio]:disabled + label::before {
	box-shadow: inset 0 0 0 2px #f4f4f4;
	border-color: #b4b4b4;
	background: #b4b4b4;
}
input[type=radio] + label:empty::before {
	margin-right: 0;
}
/* sp時 縦に並べる */
@media (max-width: 550px) {
	input[type=radio] + label {
		display: block;
		margin-bottom: 5px;
	}
}
.mailform button {
	display: block;
	text-align: center;
	margin: 0 auto;
	white-space: nowrap;
	border: 1px solid transparent;
	color: #fff;
	background: #f59faf;
	padding: 21px;
	width: 270px;
	transition: .4s;
	border-radius: 40px;
	position: relative;
}
.mailform button:hover {
	background-color: #fff;
	color: #f59faf;
	border: 1px solid #f59faf;
}
.mailform button::before {
	font-family: "Font Awesome 6 Free";
	content: "\f0e0";
	font-weight: bold;
	margin-right: 10px;
}
.mailform button::after {
	content: '';
	width: calc(100% - 4px);
	height: calc(100% - 4px);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border: 1px dashed #fff;
	pointer-events: none;
	border-radius: 40px;
	transition: .4s;
}
.mailform button:hover::after {
	border: 1px dashed #f59faf;
}
.formsel p {
	margin-bottom: 4px;
}
@media (max-width: 450px) {
	.mailform button {
		width: 200px;
		padding: 12px;
	}
	.formsel label, .selection small {
		font-size: 0.8rem;
	}
}
@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%;
	}
}
/*個人情報の取り扱いについて*/
.privacy {
	padding-top: 0 !important;
}
.privacy_wrap {
	font-size: clamp(1rem, 0.862rem + 0.4907vw, 1.23rem);
	color: #5C0E00;
	margin: 0 auto;
	max-width: 1100px;
	border-bottom: 2px dotted #edafbb;
}
.privacy_item {
	position: relative;
	width: 100%;
	margin: 0 auto;
	cursor: pointer;
	padding: 0 10px;
}
.privacy_header {
	transition: ease-in-out 100ms;
}
.privacy_text {
	width: 100%;
	display: none;
	padding: 20px 35px 30px;
	line-height: 1.7;
	font-size: 0.95rem;
}
.privacy_text span {
	font-size: 103%;
}
@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 {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(-50%, -50%);
	color: #f59faf;
}
.privacy_gold, .privacy_header .fa-lock {
	color: #f59faf;
}