@charset "utf-8";
/* reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
word-break: break-all;
word-wrap: break-word;
}
html {
font-family: sans-serif;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
font-size: 16px;
line-height: 1.3;
}
body {
padding: 0;
margin: 0;
background: #fff;
color: var(--base_c);
font-size: 1rem;
font-family: 'Noto Sans JP', sans-serif;
font-weight: normal;
width: 100%;
height: 100%;
}
li{
list-style: none;
}
#wrap *::before,
#wrap *::after {
visibility: inherit;
}
*::before,
*::after,
ul::before,
ul::after,
ol::before,
ol::after,
dl::before,
dl::after {
display: none;
}
#wrap .box {
margin-top: 0;
}
img {
max-width: 100%;
vertical-align: top;
}
a {
color: var(--link_c);
}
/* reset end */

/* wrap */
	@media screen and (max-width: 768px) {
	html {
	font-size: 14px;
	}
	}
#wrap {
min-width: 320px;
padding-top: 80px;
overflow: hidden;
background: var(--wrap_bg_c);
}
/*
	@media screen and (max-width: 1200px) {
	#wrap {
	background-size: auto 100%;
	}
	}
	@media screen and (max-width: 768px) {
	#wrap {
	padding-top: 60px!important;
	}
	}
	*/
#wrap * {
box-sizing: border-box;
}
#wrap img {
vertical-align: top;
}
#wrap .area {
position: relative;
clear: both;
display: block;
z-index: 10;
padding: 50px 0 0;
}
	@media screen and (max-width: 768px) {
	#wrap {
	padding-top: 60px;
	}
	#wrap .area {
	padding: 40px 0 0;
	}
	}
#wrap .area_in {
display: grid;
row-gap: 50px;
position: relative;
clear: both;
margin: 0 auto;
padding: 0 20px;
width: 100%;
max-width: 1040px;
}
.pc {
display: block;
}
.sp {
display: none;
}
	@media screen and (max-width: 768px) {
	.pc {
	display: none;
	}
	.sp {
	display: block;
	}
	#wrap .area_in {
	row-gap: 30px;
	}
	}
.contents {
position: relative;
background: none;
}
/* wrap end */

/* header */
#header {
position: fixed;
position: absolute;
top: 0;
left: 0;
min-width: 320px;
width: 100%;
height: 80px;
z-index: 1;
z-index: 999;
background: #000;
box-shadow: 0 2px 10px rgba(0,0,0,0.0);
transition: 0.2s;
}
#header * {
transition: 0.2s;
}
#header .area_in {
height: 100%;
max-width: 100%;
display: flex;
flex-flow: row nowrap;
justify-content: flex-start;
align-items: stretch;
padding: 0;
}
#header .btn_box {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
}
#header .btn_box .btn {
display: flex;
gap: 0 10px;
justify-content: center;
align-items: center;
padding: 5px 30px;
position: relative;
background: #fff;
height: 50px;
border-radius: 30px;
text-align: center;
font-weight: bold;
box-shadow: 0 5px 0 #ccc;
text-decoration: none;
color: #000;
transform: translate(0,-3px);
}
#header .btn_box .btn:hover {
box-shadow: none;
transform: translate(0,3px);
opacity: 0.9;
}
#header .btn_box .btn::before {
content: "";
width: 40px;
height: 40px;
display: inline-block;
background: url("../images/icon.png") center / contain;
}
	@media screen and (max-width: 768px) {
	#header {
	height: 60px;
	}
	#header .btn_box .btn {
	height: 40px;
	}
	}
	@media screen and (max-width: 500px) {
	}
/* header end */

/* menu * /
#menubtn {
display: none;
position: absolute;
width: 50px;
height: 100%;
right: 0;
top: 0;
cursor: pointer;
transition: .3s;
background: var(--burger_icon);
z-index: 99999;
}
#menubtn.active {
background: var(--cross_icon);
}
	@media screen and (max-width: 768px) {
	#menubtn {
	display: block;
	}
	}
.menu li a {
display: inline-block;
text-decoration: none;
font-weight: bold;
text-align: center;
}
	@media screen and (min-width: 768px) {
	#menu {
	flex: 1 0 0%;
	display: flex;
	column-gap: 20px;
	align-items: center;
	padding: 0 20px;
	}
	#menu ul.menu {
	flex: 1 0 0%;
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-end;
	align-items: center;
	font-size: 0.9rem;
	font-size: 1rem;
	gap: 5px 30px;
	}
	#menu ul.menu li a {
	width: 100%;
	height: 100%;
	padding: 0;
	color: var(--menu_txt_c);
	}
	#menu ul.menu li a:hover {
	color: var(--menu_txt_hover_c);
	}
	}
	@media screen and (min-width: 768px) and (max-width: 1000px) {
	#menu {
	padding: 0 10px;
	}
	#menu ul.menu  {
	font-size: 0.8rem;
	gap: 5px 20px;
	}
	}
	@media screen and (max-width: 768px) {
	#menu {
	position: fixed;
	left: 100%;
	top: 0;
	height: 100%;
	width: 100%;
	padding: 60px 0 0 0;
	padding: 60px 20px 0;
	background: var(--menu_sp_bg_c);
	transition: all 0.3s linear;
	z-index: 100;
	border-right: none;
	height: 100%;
	display: flex;
	flex-flow: column nowrap;
	row-gap: 20px;
	}
	#menu.active {
	left: 0;
	}
	#menu ul.menu {
	display: block;
	}
	#menu ul.menu li a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	text-align: center;
	padding: 10px;
	color: var(--menu_sp_link_c);
	}
	}
#menu .sns {
display: flex;
justify-content: center;
column-gap: 20px;
}
#menu .sns a span {
display: inline-block;
text-indent: -9999px;
width: 30px;
height: 30px;
}
#menu .sns .fb span {
background: var(--fb_icon);
}
#menu .sns .x span {
background: var(--x_icon);
}
	@media screen and (max-width: 768px) {
	#menu .sns .fb span {
	background: var(--fb_icon_w);
	}
	#menu .sns .x span {
	background: var(--x_icon_w);
	}
	}
#button .button_box > a.comp {
text-decoration: none;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 40px;
border-radius: 20px;
border-radius: 5px;
padding: 5px;
font-weight: 600;
}
	@media screen and (min-width: 768px) {
	#button {
	flex: 0 1 150px;
	height: 100%;
	}
	#button .button_box {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	}
	#button .button_box > a.comp {
	background: var(--btn_bg_c);
	color: var(--btn_txt_c);
	transition: .3s;
	}
	#button .button_box > a.comp:hover {
	opacity: 0.7;
	}
	}
	@media screen and (max-width: 768px) {
	#button .button_box > a.comp {
	background: var(--menu_sp_btn_bg_c);
	color: var(--menu_sp_btn_txt_c);
	}
	}
#button .button_box > a.comp.contact_end {
background: #999!important;
}
/* menu end */

/* visual */
#visual {
width: 100%;
height: auto;
padding: 0!important;
background: #F7E595;
}
#visual .area_in {
justify-content: center;
background: url("../images/visual_1400x380.jpg") no-repeat center top / auto 100%;
height: 380px;
width: 1400px;
max-width: 100%;
padding: 0;
}
#visual .area_in img {
opacity: 0;
height: 380px;
width: 1400px;
max-width: 100%;
}
	@media screen and (min-width: 1400px) {
	#visual .area_in {
	width: 100%;
	background-image: url("../images/visual_2400x380.jpg");
	}
	}
	@media screen and (min-width: 768px) and (max-width: 1400px) {
	#visual .area_in {
	width: 100%;
	max-width: 100%;
	height: calc(100vw * (380 / 1400));
	}
	#visual .area_in img {
	width: 100%;
	max-width: 100%;
	height: calc(100vw * (380 / 1400));
	}
	}
	@media screen and (max-width: 768px) {
	#visual {
	background: #fff;
	}
	#visual .area_in,
	#visual .area_in img {
	max-width: 100%;
	width: 100%;
	height: calc(100vw * (630 / 1200));
	}
	#visual .area_in {
	background-image:  url("../images/visual.jpg");
	background-size: auto 100%;
	}
	}
/* visual end */

/* list_area */
#wrap #list_area {
background: var(--base_c);
padding: 20px 0;
overflow: hidden;
max-height: 180px;
}
#list_area.area {
padding: 20px 0;
}
#list_area li {
margin: 0 10px;
}
#list_area li a.slider_link {
display: block;
aspect-ratio: 5 / 3;
overflow: hidden;
transition: .3s;
}
#list_area li a.slider_link:hover {
opacity: 0.8;
}
	@media screen and (max-width: 768px) {
	#wrap #list_area {
	padding: 10px 0;
	}
	#list_area.area {
	padding: 10px 0;
	}
	#list_area li {
	margin: 0 5px;
	}
	}
/* list_area end */

/* contact * /
.contact_area {
}
.contact_area {
background: var(--contact_bg_c);
}
.contact_btn {
position: relative;
display: flex;
width: 100%;
height: 100px;
max-width: 600px;
margin: 0 auto;
align-items: center;
justify-content: center;
font-weight: 500;
text-decoration: none;
text-align: center;
color: var(--btn_txt_c);
font-size: 1.8rem;
border-radius: 50px;
border-radius: 10px;
transition: .3s;
background: var(--btn_bg_c);
box-shadow: 0 0 10px rgba(0,0,0,0.0);
}
.contact_btn span {
display: inline-block;
}
.contact_btn::before {
content: "";
display: block;
position: absolute;
right: 10px;
top: 50%;
width: 50px;
height: 50px;
background: var(--btn_icon_arrow);
transform: translate(0,-50%);
}
.contact_btn::after {
content: "";
display: block;
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
display: block;
background: rgba(255,255,255,0.0);
border-radius: 50px;
border-radius: 10px;
transition: .3s;
visibility: inherit;
}
.contact_btn:hover {
}
.contact_btn:hover::after {
background: rgba(255,255,255,0.2);
}
.contact_btn.contact_end {
background: #999;
}
	@media screen and (max-width: 768px) {
	.contact_btn {
	width: 100%;
	height: 80px;
	font-size: 1.5rem;
	}
	.contact_btn::before {
	width: 40px;
	height: 40px;
	}
	.contact_btn::after {
	border-radius: 40px;
	}
	}
	@media screen and (max-width: 520px) {
	.contact_btn {
	height: 60px;
	font-size: 1.3rem;
	}
	.contact_btn::before {
	width: 30px;
	height: 30px;
	}
	.contact_btn::after {
	border-radius: 30px;
	}
	}
/* contact end */

/* footer */
#footer.area {
padding: 70px 0 100px;
}
.footer_sns {
display: flex;
flex-flow: row nowrap;
align-items: center;
justify-content: center;
}
.footer_sns li {
margin: 0 5px;
}
.footer_sns li img {
max-width: 50px;
}
#footer #nav a {
color: #000;
}
#footer .btn {
display: flex;
align-items: center;
justify-content: center;
background: #000;
color: #fff;
width: 300px;
max-width: 100%;
height: 60px;
border-radius: 40px;
text-decoration: none;
font-size: 1.2rem;
box-shadow: 0 5px 0 rgba(0,0,0,0.5);
transition: .3s;
position: relative;
margin: 0 auto;
}
#footer .btn::after {
position: absolute;
display: block;
content: "";
right: 20px;
width: 10px;
height: 10px;
border-top: 2px solid #fff;
border-right: 2px solid #fff;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
}
#footer .btn:hover {
opacity: 0.9;
transform: translate(0,5px);
box-shadow: none;
}
#footer .copy {
text-align: center;
font-size: 0.8rem;
color: #000;
}
#nav {
display: flex;
flex-flow: row nowrap;
justify-content: center;
align-items: stretch;
line-height: 1;
gap: 40px;
}
#nav li {
position: relative;
}
#nav li:not(:last-child)::before {
content: "";
display: block;
width: 1px;
height: 100%;
background: #000;
position: absolute;
right: -20px;
top: 50%;
transform: translate(0,-50%);
}
#nav li a {
display: inline-block;
text-decoration: none;
color: var(--footer_link_c);
}
#nav li a:hover {
text-decoration: underline;
}
	@media screen and (max-width: 768px) {
	#footer.area {
	padding: 40px 0 50px;
	}
	.footer_sns li img {
	max-width: 40px;
	}
	#footer .btn {
	width: 300px;
	height: 50px;
	}
	}
	@media screen and (max-width: 768px) {
	}

/* footer end */

/* pagetop */
#pagetop {
position: fixed;
right: 10px;
bottom: -100px;
transition: all 0.3s linear;
opacity: 0;
z-index: 100;
}
#pagetop.active {
bottom: 10px;
opacity: 0.9;
}
#pagetop:hover {
opacity: 0.6;
}
#pagetop a {
display: block;
width: 60px;
height: 60px;
border-radius: 30px;
background: var(--pagetop_bg_C);
text-indent: -9999px;
}
#pagetop a:before {
display: block!important;
content: "";
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%,-50%);
width: 80%;
height: 80%;
background: var(--top_arrow_w);
}
	@media screen and (max-width: 768px) {
	#pagetop.active,
	#pagetop:hover {
	opacity: 0.8;
	}
	#pagetop a {
	width: 40px;
	height: 40px;
	border-radius: 20px;
	}
	}
/* pagetop end */

/* title */
/*
.base_tit {
text-align: center;
display: flex;
flex-flow: column nowrap;
align-items: center;
gap: 20px;
}
.base_tit b::before {
content: "";
display: block;
width: 60px;
height: 3px;
background: #b6000d;
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
}
.base_tit b {
position: relative;
font-size: 1.1rem;
font-size: 1.5rem;
font-weight: 500;
}
.base_tit span {
position: relative;
line-height: 1.1;
font-weight: 500;
line-height: 1.2;
font-family: var(--font_en);
}
	@media screen and (max-width: 768px) {
	.base_tit b {
	}
	.base_tit span {
	}
	}
	@media screen and (max-width: 520px) {
	.base_tit span {
	}
	}
*/
.area_tit {
text-align: center;
margin: 0 auto;
}
/* title end */

/* lead_area * /
#lead_area {
}
#lead_area::before {
content: "";
position: absolute;
left: 0;
top: 0;
display: block;
width: 100%;
height: 100%;
background: rgba(255,255,255,0);
transition: .3s;
}
#lead_area .area_in {
}
.lead_box {
position: relative;
z-index: 2;
display: flex;
justify-content: center;
}
.lead_box .txt,
.lead_box .lead_txt {
font-size: 1rem;
line-height: 2;
}
	@media screen and (max-width: 1200px) {
	#lead_area::before {
	background: rgba(255,255,255,0.7);
	}
	}
	@media screen and (max-width: 768px) {
	#lead_area {
	position: relative;
	background-size: 40% auto;
	background-position: 110% center;
	}
	}
/* lead_area end */

/* nav_area */
#nav_area {
padding-bottom: 0!important;
}
.nav_list {
display: flex;
flex-flow: row wrap;
justify-content: space-between;
gap: 20px;
}
.nav_list > * {
flex: 0 1 calc(25% - 20px);
}
.nav_list > * a {
display: block;
border-radius: 10px;
box-shadow: 0 10px 0 #973A3A;
transition: .3s;
}
.nav_list > * a:hover {
opacity: 0.9;
transform: translate(0,10px);
box-shadow: none;
}
	@media screen and (max-width: 768px) {
	.nav_list {
	gap: 10px;
	}
	.nav_list > * {
	flex: 0 1 calc(25% - 8px);
	}
	.nav_list > * a {
	box-shadow: 0 5px 0 #973A3A;
	}
	.nav_list > * a:hover {
	transform: translate(0,5px);
	}
	}
	@media screen and (max-width: 520px) {
	.nav_list > * {
	flex: 0 1 calc(50% - 8px);
	display: flex;
	justify-content: center;
	}
	}
/* nav_area end */
.area_layout {
display: flex;
gap: 20px 40px;
align-items: center;
}
.area_layout .info {
flex: 0 1 calc(50% - 40px);
display: flex;
flex-flow: column;
gap: 20px;
}
.area_layout .info .txt {
font-size: 1.3rem;
font-weight: bold;
line-height: 1.6;
}
.area_layout .info .txt .marker {
background: var(--area01_c);
font-style: normal;
}
#area01 .area_layout .info .txt .marker {
background: var(--area01_c);
}
#area02 .area_layout .info .txt .marker {
background: var(--area02_c);
}
#area03 .area_layout .info .txt .marker {
background: var(--area03_c);
}
#area04 .area_layout .info .txt .marker {
background: var(--area04_c);
}
.area_layout .info .txt small {
font-size: 1rem;
font-weight: normal;
}
.area_layout .info .btn_box {
display: flex;
flex-flow: column;
justify-content: center;
align-items: center;
}
.area_layout .info .btn_box .btn {
display: flex;
align-items: center;
justify-content: center;
background: var(--area01_c2);
color: #fff;
max-width: 400px;
width: 100%;
height: 80px;
border-radius: 40px;
border: 2px solid var(--base_c);
text-decoration: none;
font-size: 1.6rem;
box-shadow: 0 10px 0 #973A3A;
transition: .3s;
position: relative;
}
#area01 .area_layout .info .btn_box .btn {
background: var(--area01_c2);
}
#area02 .area_layout .info .btn_box .btn {
background: var(--area02_c2);
}
#area03 .area_layout .info .btn_box .btn {
background: var(--area03_c2);
}
#area04 .area_layout .info .btn_box .btn {
background: var(--area04_c2);
}
.area_layout .info .btn_box .btn::after {
position: absolute;
display: block;
content: "";
right: 20px;
width: 13px;
height: 13px;
border-top: 2px solid #fff;
border-right: 2px solid #fff;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
}
.area_layout .info .btn_box .btn:hover {
opacity: 0.9;
transform: translate(0,10px);
box-shadow: none;
}
.area_layout .info .btn_box small {
font-size: 1rem;
font-weight: normal;
display: block;
text-align: center;
margin-top: 20px;
}
.area_layout .image {
flex: 0 1 50%;
max-width: 100%;
border-radius: 30px;
overflow: hidden;
background: var(--base_c);
border: 2px solid var(--base_c);
box-shadow: 5px 5px 0 rgba(0,0,0,0.2);
align-self: flex-start;
}
	@media screen and (max-width: 768px) {
	.area_layout {
	flex-flow: column;
	gap: 20px;
	}
	.area_layout .info {
	flex: auto;
	}
	.area_layout .image {
	flex: auto;
	}
	.area_layout .info .btn_box .btn {
	box-shadow: 0 5px 0 #973A3A;
	}
	.area_layout .info .btn_box .btn:hover {
	transform: translate(0,5px);
	}
	}
	@media screen and (max-width: 520px) {
	.area_layout .info .txt {
	font-size: 1.1rem;
	}
	.area_layout .info .btn_box .btn {
	max-width: 100%;
	width: 100%;
	height: 60px;
	border-radius: 30px;
	font-size: 1.4rem;
	}
	}

.area_box {
border: 2px solid #4a1b1b;
background: #fff;
border-radius: 30px;
box-shadow: 5px 5px 0 rgba(0,0,0,0.2);
}
.area_box .area_box_tit {
background: var(--area01_c);
text-align: center;
display: flex;
align-items: center;
justify-content: center;
height: 100px;
line-height: 1.2;
border-radius: 28px 28px 0 0;
}
#area01 .area_box .area_box_tit {
background: var(--area01_c);
}
#area02 .area_box .area_box_tit {
background: var(--area02_c);
}
#area03 .area_box .area_box_tit {
background: var(--area03_c);
}
#area04 .area_box .area_box_tit {
background: var(--area04_c);
}
.area_box .area_box_tit b {
color: #4a1b1b;
font-size: 2.2rem;
font-weight: 600;
}
.area_box_in {
padding: 20px 30px 30px;
display: flex;
flex-flow: column;
gap: 20px;
}
	@media screen and (max-width: 768px) {
	.area_box .area_box_tit {
	height: auto;
	padding: 30px 5px;
	}
	.area_box .area_box_tit b {
	font-size: 1.8rem;
	}
	}
	@media screen and (max-width: 520px) {
	.area_box .area_box_tit {
	padding: 20px;
	}
	.area_box .area_box_tit b {
	font-size: 1.6rem;
	}
	.area_box_in {
	padding: 20px;
	}
	}
#area02 .area_box_tit + .area_box_in {
padding-bottom: 0;
}
.area_box_in .bar_box .bar {
display: flex;
flex-flow: row wrap;
justify-content: center;
align-items: center;
row-gap: 5px;
}
.area_box_in .bar > span {
font-weight: bold;
display: flex;
align-items: center;
padding: 0 0 0 10px;
column-gap: 10px;
}
.area_box_in .bar b {
display: flex;
align-items: center;
justify-content: center;
height: 40px;
padding: 0 20px;
border-radius: 20px;
background: #F5DF7C;
border: 2px solid #F5DF7C;
}
.area_box_in .bar b.sub {
background: #fff;
border: 2px solid var(--base_c);
}
	@media screen and (max-width: 768px) {
	.area_box_in .bar {
	column-gap: 0;
	}
	.area_box_in .bar > span {
padding: 0 0 0 2px;
column-gap: 2px;
	}
	.area_box_in .bar b {
	font-size: 0.9rem;
	height: 30px;
	padding: 0 10px;
	border-radius: 15px;
	}
	}
hr.line {
display: block;
height: 10px;
background: url("../images/line.png") repeat-x center / auto;
border: none;
width: 100%;
}
.area_box_in hr.line {
max-width: 860px;
margin: 0 auto;
}
.area_box_layout {
display: flex;
flex-flow: row wrap;
gap: 20px 40px;
max-width: 860px;
margin: 0 auto;
padding: 30px 0;
}
.area_box_layout.typeR {
flex-flow: row-reverse wrap;
}
.area_box_layout .info {
flex: 0 1 calc(50% - 20px);
display: flex;
flex-flow: column;
gap: 10px;
}
.area_box_layout .info .tit {
display: flex;
justify-content: center;
}
.area_box_layout .info .tit b {
display: flex;
align-items: center;
justify-content: center;
height: 60px;
padding: 0 20px;
border-radius: 30px;
background: var(--area01_c);
border: 2px solid var(--area01_c);
font-size: 1.3rem;
}
#area01 .area_box_layout .info .tit b  {
background: var(--area01_c);
border-color: var(--area01_c);
}
#area02 .area_box_layout .info .tit b  {
background: var(--area02_c);
border-color: var(--area02_c);
}
#area03 .area_box_layout .info .tit b  {
background: var(--area03_c);
border-color: var(--area03_c);
}
#area04 .area_box_layout .info .tit b  {
background: var(--area04_c);
border-color: var(--area04_c);
}
.area_box_layout .info .price {
text-align: center;
line-height: 1;
margin-bottom: 0.3rem;
}
.area_box_layout .info .price b {
font-weight: bold;
font-size: 2rem;
color: var(--area01_c2);
}
#area01 .area_box_layout .info .price b {
color: var(--area01_c2);
}
#area02 .area_box_layout .info .price b {
color: var(--area02_c2);
}
#area03 .area_box_layout .info .price b {
color: var(--area03_c2);
}
#area04 .area_box_layout .info .price b {
color: var(--area04_c2);
}
.area_box_layout .info .price span {
font-weight: bold;
}
.area_box_layout .info .bar {
display: flex;
justify-content: center;
align-items: center;
flex-flow: row wrap;
row-gap: 5px;
}

.area_box_layout .info .bar.type2 {
column-gap: 5px;
}
.area_box_layout .info .bar.type2 > *:first-child {
flex: 1 0 100%;
text-align: center;
justify-content: center;
height: auto;
font-weight: bold;
}
.area_box_layout .info .bar.type2 > * {
font-size: 0.9rem;
height: 30px;
padding: 0 10px;
border-radius: 15px;
}
.area_box_layout .info .qty {
font-weight: bold;
display: flex;
justify-content: center;
margin-top: 0.3rem;
}
.area_box_layout .info .qty b {
display: flex;
align-items: center;
justify-content: center;
height: 40px;
padding: 0 20px;
border-radius: 20px;
background: #F5DF7C;
border: 2px solid #F5DF7C;
}
.area_box_layout .info .txt {
text-align: center;
line-height: 1.6;
}
.area_box_layout .image {
flex: 0 1 calc(50% - 20px);
align-self: center;
}
.area_box_layout .image img {
transform: scale(1.5);
}
	@media screen and (min-width: 768px) {
	#area01 .area_box_layout.typeR .image img {
	transform: translate(-20px,0) scale(1.5);
	}
	#area03 .area_box_layout:not(.typeR) .image img {
	transform: translate(20px,0) scale(1.4);
	}
	}
.area_box_img img {
border-radius: 20px;
}
#area02 .area_box .area_box_tit {
border-radius: 0;
}
	@media screen and (max-width: 768px) {
	.area_box_layout {
	flex-flow: column wrap;
	padding: 0;
	}
	.area_box_layout.typeR {
	flex-flow: column wrap;
	}
	.area_box_layout .info {
	flex: auto;
	}
	.area_box_layout .info .tit b {
	width: 100%;
	}
	.area_box_layout .image {
	flex: auto;
	}
	#area03 .area_box_layout:not(.typeR) .image img,
	.area_box_layout .image img {
	transform: scale(1.1);
	margin-top: 20px;
	}
	}

@media screen and (max-width: 768px) {
}

.price_table {
display: flex;
flex-flow: column;
gap: 10px;
margin: 0 auto;
max-width: 600px;
width: 100%;
}
.price_table + hr {
transform: translate(0,50%);
}
.price_txt {
display: flex;
flex-flow: row wrap;
justify-content: space-between;
gap: 0 10px;
font-size: 1.1rem;
}
.price_txt.main {
color: var(--area02_c2);
}
.price_txt .txt {
order: 1;
}
.price_txt .price {
order: 3;
width: 100px;
flex: 0 1 120px;
}
.price_txt .price b {
font-size: 1.1em;
}
.price_txt .price span {
font-weight: bold;
font-size: 0.9rem;
}
.price_txt::before {
content: "";
display: block;
flex: 1 0 0%;
order: 2;
height: 1px;
background: #000;
align-self: center;
}
.price_txt em {
order: 4;
flex: 1 0 100%;
font-style: normal;
font-size: 0.9rem;
font-weight: bold;
padding-left: 1rem;
}
.price_bottom {
background: #D1F0CA;
border-radius: 0 0 28px 28px;
padding-bottom: 30px;
gap: 10px;
}
.price_bottom > .txt {
text-align: center;
}
.price_box {
display: flex;
justify-content: center;
align-items: center;
gap: 10px;
font-weight: bold;
}
.price_box .total span {
font-size: 1.1rem;
}
.price_box .total b {
font-size: 1.8rem;
font-weight: 600;
}
.price_box .arrow {
font-size: 1.1rem;
}
.price_box .indiv {
display: flex;
align-items: center;
justify-content: center;
background: #fff;
border-radius: 35px;
padding: 0 20px;
height: 70px;
}
.price_box .indiv span {
font-size: 1.5rem;
transform: translate(0,0.3rem);
font-weight: 600;
}
.price_box .indiv b {
font-size: 2.5rem;
color: var(--area02_c2);
font-weight: 600;
}
	@media screen and (max-width: 768px) {
	.price_box {
	flex-flow: column;
	}
	.price_txt .price {
	width: auto;
	flex: 0 1 auto;
	}
	.price_box .arrow span {
	transform: rotate(90deg);
	display: block;
	}
	.price_box .indiv {
	height: auto;
	width: 100%;
	}
	}
	@media screen and (max-width: 520px) {
	.price_txt .price {
	flex: 1 0 100%;
	text-align: center;
	}
	.price_txt em {
	order: 2;
	}

	}
.area_list_box .tit {
display: flex;
justify-self: center;
text-align: center;
margin: 0 auto;
}
.area_list {
background: var(--base_c);
padding: 50px 0;
overflow: hidden;
max-height: 350px;
}
.area_list li {
margin: 0 10px;
}
	@media screen and (max-width: 1400px) {
	.area_list {
	padding: 20px 0;
	}
	}
	@media screen and (max-width: 768px) {
	.area_list {
	padding: 10px 0;
	}
	.area_list li {
	margin: 0 5px;
}
}

/* review_area */
#review_area .area_in {
gap: 0;
}
#review_area .area_tit span {
position: relative;
display: block;
}
#review_area .area_tit span::after {
position: absolute;
display: block;
content: "";
background: url(../images/review_icon01.png) no-repeat center / contain;
width: 169px;
height: 169px;
right: 0;
top: 50%;
transform: translate(40%,-50%);
}
.review_area_box {
background: #fcf1c2;
border: 2px solid var(--base_c);
border-radius: 30px;
box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.2);
padding: 30px;
}
.review_area_box ul {
display: grid;
gap: 30px;
max-width: 800px;
margin: 0 auto;
}
.review_area_box ul li {
background: #fff;
border-radius: 20px;
}
.review_area_box ul li a {
display: flex;
flex-flow: row wrap;
align-items: center;
justify-content: space-between;
padding: 30px;
text-decoration: none;
gap: 20px 40px;
}
.review_area_box .btn:hover {
opacity: 0.9;
transform: translate(0,5px);
box-shadow: none;
}
.review_area_box ul li .info {
flex: 1 0 0%;
align-items: center;
text-align: center;
display: flex;
flex-flow: column nowrap;
gap: 20px;
}
.review_area_box ul li .info .txt {
font-size: 2rem;
color: var(--link_c);
}
.review_area_box ul li .image {
flex: 0 1 304px;
}
	@media screen and (max-width: 800px) {
	.review_area_box ul li a {
	gap: 20px;
	padding: 20px;
	}
	.review_area_box ul li .image {
	flex: 0 1 calc(50% - 10px);
	}
	}
.review_area_box .image img {
border-radius: 10px;
border: 2px solid var(--base_c);
}
.review_area_box .btn {
display: flex;
align-items: center;
justify-content: center;
background: var(--area01_c2);
color: #fff;
width: 250px;
max-width: 100%;
height: 50px;
border-radius: 40px;
border: 2px solid var(--base_c);
text-decoration: none;
font-size: 1.2rem;
box-shadow: 0 5px 0 #973A3A;
transition: .3s;
position: relative;
margin: 0 auto;
}
.review_area_box a:hover {
opacity: 0.8;
}
.review_area_box a:hover .btn {
transform: translate(0,5px);
box-shadow: none;
}
	@media screen and (max-width: 768px) {
	.review_area_box {
	padding: 20px;
	}
	.review_area_box ul {
	gap: 20px;
	}
	.review_area_box ul li a {
	flex-flow: column-reverse wrap;
	}
	.review_area_box ul li .image {
	flex: 0 1 100%;
	text-align: center;
	}
	.review_area_box ul li .info {
	flex: 0 1 100%;
	width: 100%;
	}
	.review_area_box ul li .info .txt {
	font-size: 1.5rem;
	}
	}
	@media screen and (max-width: 520px) {
	#review_area .area_tit span {
	width: 80%;
	margin: 0 auto;
	}
	#review_area .area_tit span::after {
	width: 35%;
	transform: translate(15%,-50%);
	}
	.review_area_box .btn {
	width: 100%;
	}
	}

/* kodawari_area */
.kodawari_box {
display: flex;
flex-flow: column;
gap: 30px;
}
.kodawari_box .kodawari_item {
background: #fff;
border: 2px solid  var(--base_c);
box-shadow: 5px 5px 0 #c4b263;
padding: 30px;
border-radius: 30px;
box-sizing: border-box;
}
.kodawari_box .kodawari_item .layout {
display: flex;
flex-flow: row wrap;
gap: 20px 30px;
}
.kodawari_box .kodawari_item .image {
flex: 0 1 40%;
text-align: center;
}
.kodawari_box .kodawari_item img {
width: 100%;
max-width: 400px;
border-radius: 20px;
}
.kodawari_box .kodawari_item .info {
flex: 1 0 0%;
align-self: center;
display: flex;
flex-flow: column;
gap: 10px;
}
.kodawari_box .kodawari_item .tit {
font-size: 1.6rem;
font-weight: 700;
}
	@media screen and (max-width: 768px) {
	.kodawari_box .kodawari_item .image {
	flex: 0 1 100%;
	}
	.kodawari_box .kodawari_item .info {
	flex: 0 1 100%;
	}
	.kodawari_box .kodawari_item img {
	width: 100%;
	}
	.kodawari_box .kodawari_item .tit {
	font-size: 1.4rem;
	text-align: center;
	}
	}
	@media screen and (max-width: 520px) {
.kodawari_box {
gap: 20px;
}
.kodawari_box .kodawari_item {
padding: 20px;
}

}

/* popup
.mfp-bg {
opacity: 0.9;
background: #000;
}
.popup_contents {
display: none;
}
.mfp-content {
max-width: 700px!important;
max-width: inherit!important;
padding: 50px 50px;
height: 100%;
}
.mfp-close {
position: fixed!important;
top: 10px!important;
right: 10px!important;
width: 50px!important;
height: 50px!important;
opacity: 1!important;
text-indent: -9999px;
position: relative;
}
.mfp-close:before {
content: "";
display: block;
position: absolute;
left: 0;
top: 0;
width: 50px;
height: 50px;
background: var(--cross_icon);
}
.pop_prev,
.pop_next {
position: fixed;
top: 50%;
z-index: 100;
display: block;
width: 50px;
height: 50px;
cursor: pointer;
text-indent: -9999px;
transition: .3s;
}
.pop_prev {
left: 10px;
background: var(--prev_arrow);
}
.pop_next {
right: 10px;
background: var(--next_arrow);
}
	@media screen and (max-width: 768px) {
	.mfp-content {
	padding: 40px;
	}
	.mfp-close {
	top: 0!important;
	right: 0!important;
	}
	.pop_prev {
	left: 0;
	}
	.pop_next {
	right: 0;
	}
	}
.pop_prev:hover,
.pop_next:hover {
opacity: 0.7;
}
.popup_box {
display: flex;
align-items: center;
height: 100%;
}
.popup_box_in {
margin: 60px 10px 10px 10px;
background: #fff;
padding: 30px;
box-shadow: 0 0 10px rgba(0,0,0,0.2);
max-width: 900px;
margin: 0 auto;
max-height: 100%;
overflow-y: scroll;
font-weight: 400;
width: 100%;
border-radius: 10px;
display: grid;
gap: 20px;
}
	@media screen and (max-width: 768px) {
	.popup_box_in {
	padding: 20px;
	}
	}

.popup_box_in .date {
display: flex;
flex-flow: row wrap;
column-gap: 10px;
}
.popup_box_in .date .t {
font-weight: normal;
font-size: 1.2rem;
font-family: var(--font_en);
}
.popup_box_in .date .i {
background: #053A5D;
color: #fff;
font-size: 1.1rem;
font-weight: bold;
border-radius: 4px;
padding: 6px 10px 4px 10px;
line-height: 1;
}
.popup_box_in .date .s {
background: #F4F4F4;
color: #053A5D;
font-size: 1.1rem;
font-weight: bold;
border-radius: 4px;
padding: 6px 10px 4px 10px;
line-height: 1;
}
.popup_box_in .title b {
font-weight: normal;
font-size: 1.5rem;
}
.popup_box_in .tag {
display: flex;
flex-flow: row wrap;
gap: 10px;
}
.popup_box_in .tag * {
display: inline-block;
font-size: 0.8rem;
font-weight: 700;
line-height: 1.4444444444;
padding: 4px 18px 3px 18px;
border: 1px solid #053A5D;
border-radius: 100rem;
color: #053A5D;
}
.popup_box_in .txt.gaiyou {
padding: 20px 0;
border-top: 1px solid #ccc;
border-bottom: 1px solid #ccc;
}
.popup_box_in .photo_logo img {
height: 48px;
width: auto;
}
	@media screen and (max-width: 768px) {
	.popup_box_in .photo_logo {
	text-align: center;
	}
	}
.popup_box_in .layout_box {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
gap: 20px;
}
.popup_box_in .layout {
display: flex;
gap: 20px;
}
.popup_box_in .layout .photo {
text-align: center;
flex: 0 1 200px;
}
.popup_box_in .layout .photo img {
flex: 1 0 0%;
border-radius: 10px;
max-width: 200px;
}
.popup_box_in .layout .photo img {
width: 200px;
height: 200px;
object-fit: cover;
object-position: 50% 50%;
border-radius: 5px;
}
.popup_box_in .layout .info {
display: flex;
flex-flow: column nowrap;
gap: 20px;
}
.popup_box_in .layout .info .txt:not(.prof) {
display: flex;
flex-flow: column nowrap;
line-height: 1.3;
gap: 5px;
}
.popup_box_in .com {
font-size: 1rem;
order: 1;
}
.popup_box_in .job {
font-size: 1rem;
order: 2;
}
.popup_box_in .name {
font-size: 1rem;
font-weight: normal;
order: 3;
}
.popup_box_in .txt.prof {
font-size: 0.9rem;
padding: 20px;
background: #f4f4f4;

}
	@media screen and (max-width: 768px) {
	.popup_box_in .layout_box {
	grid-template-columns: auto;
	gap: 40px;
	}
	.popup_box_in .layout {
	position: relative;
	flex-flow: column nowrap;
	}
	.popup_box_in .layout + .layout::before {
	content: "";
	position: absolute;
	left: 0;
	top: -20px;
	display: block;
	width: 100%;
	height: 1px;
	background: #ddd;
	}
	.popup_box_in .layout .photo {
	flex: 1 0 0%;
	}
	.popup_box_in .layout .photo img {
	flex: 1 0 0%;
	border-radius: 10px;
	max-width: 200px;
	}
	}
popup end */
@media screen and (min-width: 768px) {
body #visual .area_in {
opacity: 0;
transition: .6s;
}
body #list_area {
opacity: 0;
transition: .6s;
transition-delay: 0.4s;
transform: translate(100px,0);
}
body.effect_active #list_area,
body.effect_active #visual .area_in {
opacity: 1;
transform: translate(0,0);
}
#area01,
#area02,
#area03,
#area04,
#review_area,
#kodawari_area {
opacity: 0;
transform: translate(0,100px);
transition: .6s;
}
.effectdelay {
opacity: 0;
transform: translate(0,100px);
transition: .3s;
}
#area01.effect_active,
#area02.effect_active,
#area03.effect_active,
#area04.effect_active,
#review_area.effect_active,
#kodawari_area.effect_active {
opacity: 1;
transform: translate(0,0);
}
.effectdelay.effect_active {
opacity: 1;
transform: translate(0,0);
}

.effect {
opacity: 1;
transform: scale(0.8);
transition: .6s;
}
.effect.effect_active {
opacity: 1;
transform: scale(1);
}
}
/* root */
:root {
/*
--font_en: 'Figtree','Noto Sans JP', sans-serif;
--font_en: 'Barlow','Noto Sans JP', sans-serif;
*/
--font_en:'Noto Sans JP', sans-serif;

--wrap_bg_c: url("../images/bg01.jpg") repeat-y center top / 100% auto;
--link_c: #4a1b1b;
--base_c: #4a1b1b;

--contact_bg_c: none;
--btn_bg_c: linear-gradient(to right, #5d0a0a, #5d0a0a);
--btn_txt_c: #fff;
--btn_icon_arrow: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100"%3E%3Cpath d="M60.61 42.93 39.39 21.72 32.32 28.79 53.54 50 32.32 71.21 39.39 78.28 67.68 50 60.61 42.93z" fill="%23ffffff" /%3E%3C/svg%3E') no-repeat center / contain;
--btn_icon_arrow: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100"%3E%3Cpath d="M34.44 24.54 37.27 21.72 62.73 47.17 65.56 50 62.73 52.83 62.73 52.83 37.27 78.28 34.44 75.46 59.9 50 34.44 24.54Z" fill="%23fff"  /%3E%3C/svg%3E') no-repeat center / contain;

--menu_txt_c: #000;
--menu_txt_hover_c: #C9010F;
--menu_sp_bg_c: var(--base_c);
--menu_sp_btn_bg_c: #fff;
--menu_sp_btn_txt_c: var(--base_c);
--menu_sp_link_c: #fff;

--footer_bg_c: #fff;
--footer_txt_c: var(--base_c);
--footer_link_c: var(--base_c);
--pagetop_bg_C: rgba(0,0,0,0.9);

--area01_c: #edab9d;
--area02_c: #A3E196;
--area03_c: #FFC59A;
--area04_c: #E5B9FF;

--area01_c2: #E05854;
--area02_c2: #66B157;
--area03_c2: #FF903F;
--area04_c2: #B16CD9;


--fb_icon_w: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100"%3E%3Cpath d="M73.09,55.83l2.75-17.96h-17.23v-11.66c0-4.91,2.41-9.7,10.13-9.7h7.84V1.21s-7.11-1.21-13.91-1.21c-14.19,0-23.47,8.6-23.47,24.17v13.69h-15.78v17.96h15.78v44.17h19.42v-44.17h14.48Z" fill="%23ffffff" /%3E%3C/svg%3E') no-repeat center / contain;
--x_icon_w: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100"%3E%3Cpath d="M59.31,42.34L95.74,0h-8.63l-31.63,36.77L30.21,0H1.08l38.2,55.6L1.08,100h8.63l33.4-38.83,26.68,38.83h29.14l-39.62-57.66h0ZM47.49,56.09l-3.87-5.54L12.82,6.5h13.26l24.85,35.55,3.87,5.54,32.31,46.21h-13.26l-26.36-37.71h0Z" fill="%23ffffff"  /%3E%3C/svg%3E') no-repeat center / contain;
--fb_icon: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100"%3E%3Cpath d="M73.09,55.83l2.75-17.96h-17.23v-11.66c0-4.91,2.41-9.7,10.13-9.7h7.84V1.21s-7.11-1.21-13.91-1.21c-14.19,0-23.47,8.6-23.47,24.17v13.69h-15.78v17.96h15.78v44.17h19.42v-44.17h14.48Z" fill="%23021D40" /%3E%3C/svg%3E') no-repeat center / contain;
--x_icon: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100"%3E%3Cpath d="M59.31,42.34L95.74,0h-8.63l-31.63,36.77L30.21,0H1.08l38.2,55.6L1.08,100h8.63l33.4-38.83,26.68,38.83h29.14l-39.62-57.66h0ZM47.49,56.09l-3.87-5.54L12.82,6.5h13.26l24.85,35.55,3.87,5.54,32.31,46.21h-13.26l-26.36-37.71h0Z" fill="%23021D40"  /%3E%3C/svg%3E') no-repeat center / contain;

--prev_arrow: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100"%3E%3Cpath d="M65.6 24.57 62.77 21.75 37.32 47.2 34.49 50.03 37.32 52.86 37.32 52.86 62.77 78.31 65.6 75.49 40.14 50.03 65.6 24.57Z" fill="%23cccccc"  /%3E%3C/svg%3E') no-repeat center / contain;
--next_arrow: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100"%3E%3Cpath d="M34.44 24.54 37.27 21.72 62.73 47.17 65.56 50 62.73 52.83 62.73 52.83 37.27 78.28 34.44 75.46 59.9 50 34.44 24.54Z" fill="%23cccccc"  /%3E%3C/svg%3E') no-repeat center / contain;
--prev_arrow_w: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100"%3E%3Cpath d="M65.6 24.57 62.77 21.75 37.32 47.2 34.49 50.03 37.32 52.86 37.32 52.86 62.77 78.31 65.6 75.49 40.14 50.03 65.6 24.57Z" fill="%23fff"  /%3E%3C/svg%3E') no-repeat center / contain;
--next_arrow_w: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100"%3E%3Cpath d="M34.44 24.54 37.27 21.72 62.73 47.17 65.56 50 62.73 52.83 62.73 52.83 37.27 78.28 34.44 75.46 59.9 50 34.44 24.54Z" fill="%23fff"  /%3E%3C/svg%3E') no-repeat center / contain;
--top_arrow_w: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100"%3E%3Cpath d="M24.54 65.56 21.72 62.73 47.17 37.27 50 34.44 52.83 37.27 52.83 37.27 78.28 62.73 75.46 65.56 50 40.1 24.54 65.56Z" fill="%23fff"  /%3E%3C/svg%3E') no-repeat center / contain;

--cross_icon: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100"%3E%3Cpath d="M70.55 32.35 67.72 29.52 50.04 47.2 32.37 29.52 29.54 32.35 47.22 50.03 29.54 67.71 32.37 70.54 50.04 52.86 67.72 70.54 70.55 67.71 52.87 50.03 70.55 32.35z" fill="%23fff"  /%3E%3C/svg%3E') no-repeat center / contain;
--burger_icon: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100"%3E%3Cpath d="M72,32H28v-4h44v4ZM72,48H28v4h44v-4ZM72,68H28v4h44v-4Z" fill="%23ddd"  /%3E%3C/svg%3E') no-repeat center / contain;


｝
/* root end */