@charset "utf-8";

/* ==========================================
カスタムプロパティ
========================================== */

:root {
	/* base color */
	--base-font-color: #4A4A4A;
	--white: #fff;
	--black: #4A4A4A;

	/* ui color */
	--ui-border-color: #555;
	--ui-focus-color: #333;

	/* site color */
	--primary: #C5C56A;
	--secondary: #DEDEB8;
	/* --tertiary: #0f0;
	--tertiary-hover: #5f5;
	--quaternary: #f0f;
	--quaternary-hover: #f5f;
	--fifth: #ff0;
	--fifth-hover: #ff5;
	--sixth: #0ff;
	--sixth-hover: #5ff; */

	/* btn color */
	/* --btn-primary: var(--primary);
	--btn-primary-hover: var(--primary-hover);
	--btn-secondary: var(--secondary);
	--btn-secondary-hover: var(--secondary-hover);
	--btn-tertiary: var(--tertiary);
	--btn-tertiary-hover: var(--tertiary-hover);
	--btn-quaternary: var(--quaternary);
	--btn-quaternary-hover: var(--quaternary-hover);
	--btn-fifth: var(--fifth);
	--btn-fifth-hover: var(--fifth-hover);
	--btn-sixth: var(--sixth);
	--btn-sixth-hover: var(--sixth-hover); */

	/* font family */
	/* --base-font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif; */
	--base-font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
	--font-family01: "Hina Mincho", serif;
	/* --font-family02: ; */
	/* --font-family03: ; */

	/* other */
	--text-shadow-primary: 0px 3px 4px rgba(0, 0, 0, .25);
	--text-shadow-secondary: 0px 3px 5px rgba(0, 0, 0, .25);
	--mask-primary: rgba(51, 51, 51, .3);
	--mask-secondary: rgba(175, 175, 175, .55);
	--mask-tertiary: rgba(112, 112, 112, .42);
	--mask-quaternary: rgba(51, 51, 51, .45);
	--mask-gradation: linear-gradient(180deg, rgba(222, 222, 184, 0) 0%, rgba(222, 222, 184, 0.6) 70%, rgba(222, 222, 184, 1) 85%, rgba(222, 222, 184, 1) 100%);
	--in-mask-primary: rgba(51, 51, 51, .5);
}

/* ==========================================
共通
========================================== */

html {
	/* font-size: var(--root-font-size); */
	font-size: 62.5%;
}

body {
	margin: 0 auto;
	max-width: 192rem;
	width: 100%;
	line-height: 1.6;
	font-size: 1.6rem;
	font-weight: 500;
	font-family: var(--base-font-family);
	color: var(--base-font-color);
	background: var(--secondary);
}

input {
	appearance: auto;
	border: 1px solid var(--ui-border-color);
}

input:focus-visible {
	outline: 1px solid var(--ui-focus-color);
	border-color: var(--ui-focus-color);
}

textarea {
	border: 1px solid var(--ui-border-color);
}

textarea:focus-visible {
	outline: 1px solid var(--ui-focus-color);
	border-color: var(--ui-focus-color);
}

img {
	max-width: 100%;
	height: auto;
}

a {
	transition: all .3s;
}

a:hover {
	transition: all .3s;
}

.display-none {
	display: none;
}

.pc-block {
	display: block;
}

.tb-block {
	display: none;
}

.sp-block {
	display: none;
}

.padding-x-01 {
	padding: 0 1.5rem;
}

.sp-text-br-none br  {
	display: block;
}

.frame01 {
	max-width: 124rem;
	width: 100%;
	margin: 0 auto;
	position: relative;
}

.frame03 {
	max-width: 105rem;
	width: 100%;
	margin: 0 auto;
	position: relative;
}

/* ==========================================
タイトル・テキスト
========================================== */

.title01 {
    font-size: 3.5rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.text01 {
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1.81em;
}

.text02 {
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.81em;
}

/* ==========================================
色
========================================== */

.white {
	color: var(--white);
}

.text-shadow-primary {
	text-shadow: var(--text-shadow-primary);
}

.text-shadow-secondary {
	text-shadow: var(--text-shadow-secondary);
}

/* ==========================================
ボタン
========================================== */

.btn01 {
    max-width: 28.6rem;
	width: 100%;
	text-align: center;
	position: relative;
}

.btn01 a {
	display: block;
    max-width: 28.6rem;
    padding: 1.5rem 1.5rem 1.8rem;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.1em;
	position: relative;
}

.btn01.btn-white a {
	color: var(--base-font-color);
    background: var(--white);
}

.btn01.btn-white a:hover {
	color: var(--base-font-color);
    background: var(--primary);
}

.btn01.btn01-deco.btn-white:after {
    content: "";
    position: absolute;
    top: 0;
    right: -25%;
	bottom: 0;
    margin: auto;
    background: url(../../../../uploads/2025/05/btn_deco_black.svg) no-repeat, center;
    background-size: contain;
	max-width: 14.2rem;
    width: 49.65%;
    height: 2.9rem;
    z-index: 2;
}

.btn01.btn-black a {
	color: var(--base-font-color);
	border: .1rem solid var(--black);
}

.btn01.btn-black a:hover {
	color: var(--base-font-color);
    background: var(--white);
	border: .1rem solid var(--white);
}

.btn01.btn01-deco.btn-black:after {
    content: "";
    position: absolute;
    top: 0;
    right: -25%;
	bottom: 0;
    margin: auto;
    background: url(../../../../uploads/2025/05/btn_deco_black.svg) no-repeat, center;
    background-size: contain;
	max-width: 14.2rem;
    width: 49.65%;
    height: 2.9rem;
    z-index: 2;
}


.btn01.btn-clear a {
	color: var(--white);
	border: .1rem solid var(--white);
}

.btn01.btn-clear a:hover {
	color: var(--white);
    background: rgba(255, 255, 255, .35);
}

.btn01.btn01-deco.btn-clear:after {
    content: "";
    position: absolute;
    top: 0;
    right: -25%;
	bottom: 0;
    margin: auto;
    background: url(../../../../uploads/2025/05/btn_deco_white.png) no-repeat, center;
    background-size: contain;
	max-width: 14.2rem;
    width: 49.65%;
    height: 2.9rem;
    z-index: 2;
}

/* ==========================================
ヘッダー
========================================== */

header {
	position: relative;
}

.header-logo {
	display: none;
	max-width: 9.6rem;
	width: 7%;
    position: absolute;
    top: 5rem;
    left: 5rem;
    z-index: 9;
}

.has-in01 .header-logo {
	display: block;
}


/* ==========================================
スマホ固定ヘッダー
========================================== */

.sp-header {
	width: 100%;
	height: 8rem;
	display: none;
	padding: 0 0 0;
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 99;
}

.sp-header-block {
	width: 100%;
	height: 100%;
	flex: 1;
	border-right: solid 1px;
}

.sp-header-block-color {
	background: var(--primary);
	border-color: var(--black);
	color: var(--black);
}

.sp-header-link {
	width: 100%;
	height: 100%;
}

.sp-header-link {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.sp-header-link:before {
	content: "";
	display: inline-block;
	max-width: 2.5rem;
	width: 100%;
	height: 3rem;
	font-size: 2.5rem;
	font-weight: 900;
	text-align: center;
}

.sp-header-link-ec:before {
	content: "\f290";
	font-family: "Font Awesome 5 Free";
}

.sp-header-link-tel:before {
	content: "\f095";
	font-family: "Font Awesome 5 Free";
}

.sp-header-link-rsv:before {
	content: "\f073";
	font-family: "Font Awesome 5 Free";
}

.sp-header-link-insta:before {
	content: "\f16d";
	font-family: "Font Awesome 5 Brands";
}

.sp-header-link-text {
	font-size: 1.4rem;
	margin: .8rem 0 0;
}

/* ---------- ハンバーガーボタン ---------- */

.sp-nav-btn {
	width: 5.5rem;
	height: 5.5rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	position: fixed;
	top: 5rem;
	right: 5rem;
	z-index: 9999;
}

.sp-nav-btn-color {
	background: rgba(255, 255, 255, .6);
	transition: all .3s;
}

.sp-nav-btn-color:hover {
	background: rgba(255, 255, 255, .8);
	transition: all .3s;
}

.sp-nav-btn-bar-box {
	max-width: 3.2rem;
	width: 100%;
	height: 2.6rem;
	display: flex;
	position: relative;
}

.sp-nav-btn-bar {
	display: block;
	width: 100%;
	height: 3px;
	background: rgba(0, 0, 0, .6);
	position: absolute;
	left: 0;
	margin: auto;
	transition: .3s;
}

.sp-nav-btn-bar-top {
	top: 0;
	width: 100%;
}

.sp-nav-btn-bar-center {
	top: 50%;
	width: 80%;
	transform: translateY(-50%);
}

.sp-nav-btn-bar-bottom {
	bottom: 0;
	width: 60%;
	/* transform: translateY(-100%); */
}

.sp-nav-btn-text {
	font-size: 1.4rem;
	margin: .7rem 0 0;
}

.js-open .sp-nav-btn-bar-top {
	width: 100%;
	top: 45%;
	transform: rotate(45deg) translateY(0);
}

.js-open .sp-nav-btn-bar-center {
	opacity: 0;
}

.js-open .sp-nav-btn-bar-bottom {
	width: 100%;
	bottom: 45%;
	transform: rotate(-45deg) translateY(0%);
}

/* ---------- ハンバーガーメニュー ---------- */

.js-sp-nav {
	display: block;
	max-width: 1920px;
	width: 100%;
	margin: auto;
	padding: 0;
	position: fixed;
	top: 0;
	bottom: 0;
	right: -100%;
	transition: ease .5s;
	z-index: 999;
}

.sp-nav.js-open {
	right: 0;
}

.sp-nav-bg {
	background: var(--secondary);
}

.sp-nav-area {
	width: 100%;
	height: 100%;
	overflow: auto;
	padding: 10rem 1.5rem;
}

.sp-nav-list {
    /* padding: 10rem 0; */
    width: 100%;
    /* height: 100%; */
    display: flex;
    padding: 0 0 5rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    writing-mode: vertical-rl;
    /* overflow-y: scroll;
    -ms-overflow-style: none; */
}

.sp-nav-list::-webkit-scrollbar {
	display:none;
}

.sp-nav-list-item {
	display: block;
	font-weight: bold;
	line-height: 1.5em;
	letter-spacing: 0.05em;
	position: relative;
	padding: 0 0 0 7rem;
}

.sp-nav-list-item:last-child {
	padding: 0;
}

.sp-nav-list-item a{
	display: block;
	padding: 1.5rem 0;
	font-size: 2.2rem;
	font-weight: 500;
    letter-spacing: .5em;
	transition: .3s;
}

.sp-nav-list-item a:hover{
	opacity: .6;
}

.sp-nav-list-item-color{
	border-bottom-color: var(--sp-border-color);
}

/* ---------- ハンバーガーメニュー内 ---------- */

.sp-nav-frame {
	max-width: 91.4rem;
	width: 100%;
	margin: 0 auto;
    padding: 4rem 0;
    height: 100%;
}

.ham-contact-area {
	padding: 5rem 0;
    border-top: .1rem solid;
    border-bottom: .1rem solid;
}

.ham-contact-block {
	max-width: 30rem;
	width: 100%;
	margin: 0 auto;
}

.ham-tel-btn-row {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 0 .65rem 0;
	margin: 2rem auto 0;
    max-width: 21.4rem;
    width: 100%;
    border-bottom: .1rem solid;
}

.ham-contact-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
    text-align: center;
}

.ham-tel-btn-row .tel-num {
    font-size: 2.1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.45em;
}

.ham-tel-btn-row figure {
    max-width: 2.2rem;
    margin: 0 0.5rem 0 0;
}

.ham-contact-block .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 3rem 0 0;
    position: relative;
    font-weight: 700;
    z-index: 2;
}

.ham-rsv-link a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.9rem;
    letter-spacing: 0.05rem;
    color: var(--black);
    border: .1rem solid;
    cursor: pointer;
}

.ham-ec-link a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.9rem;
    letter-spacing: 0.05rem;
    color: var(--white);
    background: var(--black);
    cursor: pointer;
}

.btn a:hover {
	color: var(--black);
	background: var(--white);
}

.ham-text-link {
    margin: 3rem 0 0;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.ham-text-link a:hover {
    text-decoration: underline;
}

.ham-sns {
    display: block;
    margin: 2.6rem auto 0;
    max-width: 30px;
    width: 100%;
}


/* ==========================================
下層共通
========================================== */

.in-cover {
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.in-cover:before {
    content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: var(--in-mask-primary);
	z-index: 2;
}

.in-cover-img {
	width: 100%;
    height: 100%;
    margin: 0 0 0 auto;
	object-fit: cover;
}

.in-cover-img img {
	object-fit: cover;
	width: 100%;
	height: 100% !important;
}

.in-cover-text-area {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
	z-index: 3;
}

.in-cover-title-block {
	text-align: center;
}

.in-cover-title {
    font-size: 4rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.45;
}

.in-cover-deco {
	max-width: 14.3rem;
	width: 30%;
	margin: 2.54rem auto 0;
}

.single-post .in-cover-deco, .archive .in-cover-deco {
	max-width: 14.3rem;
	width: 100%;
	margin: 2.54rem auto 0;
}

.frame02 {
	max-width: 101.7rem;
	width: 100%;
	margin: 0 auto;
	position: relative;
	padding: 0 1.5rem;
}

.frame02:after {
    content: "";
    position: absolute;
    top: 5rem;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 105%;
    border: .1rem solid;
	padding: 0 1.5rem;
    z-index: 1;
}

.frame02-common-content {
	max-width: 96rem;
	width: 94.4%;
	margin: 0 auto;
	position: relative;
	padding: 7rem 1.5rem 3.8rem;
	background: rgba(255, 255, 255, .55);
    z-index: 2;
}

.frame02-common-content:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    background: url(../../../../uploads/menu_textBox05.png) no-repeat center;
    background-size: cover;
    z-index: 3;
}

.frame02-common-text-box {
	max-width: 69.2rem;
	width: 100%;
	margin: 0 auto;
	text-align: center;
	position: relative;
    z-index: 5;
}

/*========= カテゴリー =========*/

.category-area {
    max-width: 120rem;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin: 4rem auto 0;
}

.category-box {
    max-width: 16rem;
    width: 49%;
    position: relative;
}

.category-box:nth-child(n+2) {
    margin: 0 0 0 2%;
}

.category-list-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    font-weight: bold;
    /* border: solid 1px var(--gray01); */
    padding: .5rem 1rem;
    /* color: var(--white); */
    background: var(--white);
    cursor: pointer;
    transition: .3s;
}

.category-list-title:hover {
    color: var(--black);
    background: var(--primary);
}

.category-list-title.active:after {
    transform: scale(1,-1);
}

.category-list, .archive-list{
    background: var(--white);
    /* border: solid 1px #eee; */
    width: 100%;
    margin: auto;
    position: absolute;
    bottom: calc(100% + 3px);
    right: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.active + .category-list {
    opacity: 1;
    visibility: visible;
}

.active + .archive-list{
    opacity: 1;
    visibility: visible;
}

.category-list > li:not(:last-child) {
    border-bottom: solid 1px #eee;
}

.archive-list > li:not(:last-child) {
    border-bottom: solid 1px #eee;
}

.category-list > li > a {
    display: block;
    padding: 8px 10px;
    position: relative;
    color: var(--black);
}

.archive-list > li > a {
    display: block;
    padding: 8px 10px;
    position: relative;
    color: var(--black);
}

.category-list > li > a:hover {
    background: var(--primary);
}

.archive-list > li > a:hover {
    background: var(--primary);
}

.category-list-title:after {
    font-family: "FontAwesome";
    font-weight: 600;
    content: '\f107';
    display: block;
    font-size: 12px;
    padding-left: 10px;
    transition: transform .3s;
}

/* ==========================================
ページャー
========================================== */

.wp-pagenavi {
	margin: 8rem auto 0;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
}

.pagination-page {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 4rem;
	height: 4rem;
	text-align: center;
}

.pagination-current-color {
	background: var(--white);
	color: var(--black);
}

.pagination-page-color {
	color: var(--black);
}

.pagination-page-color:hover {
	background: var(--primary);
	color: var(--black);
}

.pagination-first, .pagination-last {
	font-size: 1.2rem;
	border-style: solid;
	border-width: 1px;
	padding: 0.4rem 0.5rem 0.2rem;
}

.pagination-first-color, .pagination-last-color {
	border-color: var(--primary);
	color: var(--primary);
}

.pagination-first-color:hover, .pagination-last-color:hover {
	background: var(--primary);
	color: var(--black);
}


/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 1920px) {

	html {
		/* 10px */
		font-size: 0.52083vw;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 1550px) {

	html {
		/* 10px */
		font-size: 0.64516vw;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 1024px) {

	html {
		/* 10px */
		font-size: 0.97656vw;
	}

	.in-cover {
        height: 30rem;
    }

	.header-logo {
		top: 3rem;
		left: 3rem;
	}

	.sp-nav-btn{
		top: 3rem;
		right: 3rem;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 768px) {

	html {
		/* 10px */
		font-size: 1.30208vw;
	}

	.pc-block {
		display: none;
	}

	.tb-block {
		display: block;
	}
	
	/* ==========================================
	スマホ固定ヘッダー
	========================================== */

	.sp-header {
		display: flex;
	}

	/* ---------- ハンバーガーボタン ---------- */

	.sp-nav-btn {
		display: flex;
	}

	.js-sp-nav {
		display: block;
	}

	.sp-nav-list {
		display: block;
		writing-mode: unset;
	}

	.sp-nav-list-item {
		padding: 0;
		text-align: center;
	}

	.sp-nav-frame {
	    padding: 1rem 0 5rem;
	    width: 100%;
		/* height: 100%; */
		overflow-y: scroll;
		-ms-overflow-style: none;
	}

	::-webkit-scrollbar {
		display: none; /* スクロールバーを非表示にする */
	}

	.sp-nav-list {
    	padding: 0 0 3rem;
	}

	.ham-contact-area {
		padding: 3rem 0;
	}

	.ham-contact-title {
		font-size: 1.6rem;
	}

	.ham-tel-btn-row figure {	
    	width: 8%;
	}

	.ham-tel-btn-row .tel-num {
		font-size: 1.8rem;
	}


	/* ==========================================
	下層共通
	========================================== */

	.in-cover {
        height: 28rem;
    }

	.in-cover-title {
		font-size: 3.8rem;
	}

	.frame02-common-text-box {
		text-align: left;
	}


}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 576px) {

	html {
		/* 12px */
		font-size: 2.08333vw;
	}

	.sp-block {
		display: block;
	}


	.title01 {
    	font-size: 3rem;
	}

	.sp-text-br-none br  {
		display: none;
	}

	.btn01.btn01-deco.btn-white:after,
	.btn01.btn01-deco.btn-black:after,
	.btn01.btn01-deco.btn-clear:after {
		right: -15%;
		width: 40%;
	}

	.header-logo {
		width: 10%;
		top: 2rem;
		left: 2rem;
	}

	/* ==========================================
	スマホ固定ヘッダー
	========================================== */
	.sp-header{
		height: 6rem;
		padding: 0 0 0;
	}

	.sp-header-link > a:before{
		font-size: 2rem;
	}

	.sp-header-link-text{
		font-size: 1rem;
		margin: .5rem auto 0;
	}

	/* ---------- ハンバーガーボタン ---------- */

	.sp-nav-btn{
		top: 2rem;
		right: 2rem;
	}

	.sp-nav-btn-bar-box{
		max-width: 3rem;
	}

	.sp-nav-btn-text{
		font-size: 1rem;
	}

	.sp-nav-btn-text{
		margin: 0;
	}

	/* ---------- ハンバーガーメニュー ---------- */

	.sp-nav-list-item a{
		padding: 1.2rem 0;
		font-size: 1.6rem;
	}


	/* ==========================================
	下層共通
	========================================== */

	.in-cover-title {
		font-size: 2.8rem;
	}

	.frame02-common-content {
		width: 100%;
	}

	.wp-pagenavi {
		margin: 5rem auto 0;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 414px) {

	.text01 {
		font-size: 1.5rem;
	}

	html {
		/* 14px */
		font-size: 2.43055vw;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */