@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Color+Emoji&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400&display=swap');

:root {
	--swiper-navigation-size: 30px !important;
	--swiper-theme-color: #fff !important;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-size: 15px;
	line-height: 20px;
}
img, video {
	max-width: 100%;
	max-height: 100%;
}
img.zoom, video.zoom {
	cursor: pointer;
}
img.load {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
input, textarea, select, button {
	font-family: inherit;
	font-size: inherit;
}
input, textarea, select {
	padding: 6px 10px;
	max-width: 100%;
	border: 1px solid #ddd;
	border-radius: 3px;
	outline: none;
}
input::placeholder {
	font-size: 13px;
}
textarea {
	resize: vertical;
}
ul {
	list-style: none;
}
a {
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}
a[target="_blank"]:hover, a[target="_self"]:hover {
	font-weight: 600;
}
body {
	background: var(--background);
	color: var(--color);
}
h1 {
	font-weight: 300;
	font-size: min(36px, 7vw);
	line-height: 1em;
	color: var(--content-color-large);
}
h2 {
	font-weight: 300;
	font-size: min(32px, 6vw);
	line-height: 1em;
	color: var(--content-color-medium);
}
h3 {
	font-weight: 300;
	font-size: min(28px, 5vw);
	line-height: 1em;
	color: var(--content-color-small);
}
h1 span, h2 span, h3 span {
	margin-left: 20px;
	font-size: 0.7em;
}
div.map {
	padding-top: 36%;
	width: 100%;
	position: relative;
}
div.map iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.tb, .sp {
	display: none!important;
}
.emoji {
	font-family: "Noto Color Emoji", sans-serif;
	font-weight: 400;
	font-style: normal;
}
.flex {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.post input {
	width: 80px;
}
.post + input {
	max-width: 600px;
}
.post + input + input {
	max-width: 600px;
}
a.link {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 15px 30px;
	width: 200px;
	border: var(--content-button-border);
	background: var(--content-button-back);
	color: var(--content-button-color);
	transition: 0.3s;
	cursor: pointer;
}
a.link:hover {
	opacity: 0.8;
}
div.share {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 35px;
}
a.x {
	width: 35px;
	height: 35px;
	background: #000 url(../image/resource/logo_x.svg) no-repeat center / 60%;
}
a.facebook {
	width: 45px;
	height: 45px;
	background: url(../image/resource/logo_facebook.svg) no-repeat center / 100%;
}
a.instagram {
	display: inline-block;
	width: 45px;
	height: 45px;
	background: url(../image/resource/logo_instagram.svg) no-repeat center / 100%;
}
div.sns {
	display: flex;
	align-items: center;
	justify-content: space-around;
}
div.sns span {
	display: block;
	color: #888;
	font-size: 13px;
	word-break: break-all;
}
div.sns span:last-child {
	color: #fff;
}
div.sns a {
	display: flex;
	align-items: center;
	padding: 0 20px;
	width: 300px;
	max-width: 33.33%;
	height: 100px;
	background: #000;
}
div.sns a::before {
	display: block;
	content: "";
	margin: 0 25px 0 10px;
	width: 45px;
	height: 45px;
}
div.sns a.x::before {
	background: url(../image/resource/logo_x.svg) no-repeat center / 60%;
}
div.sns a.facebook::before {
	display: block;
	content: "";
	mask-image: url(../image/resource/logo_facebook.svg);
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
	-webkit-mask-image: url(../image/resource/logo_facebook.svg);
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: #fff;
}
div.sns a.instagram::before {
	display: block;
	content: "";
	background: url(../image/resource/logo_instagram.svg) no-repeat center / 100%;
}
body > div.cover {
	display: block;
	width: 100%;
	height: 100dvh;
	padding: 50px;
	background: #00000099;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
}
body > div.cover > a {
	display: block;
	width: 30px;
	height: 30px;
	background: url(../image/resource/close.svg) no-repeat center / 100%;
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
}
body > div.cover .swiper-slide {
	object-fit: scale-down;
	opacity: 0.2;
}
body > div.cover .swiper-slide-active {
	opacity: 1;
}
body > div.cover .swiper-pagination-bullets {
	bottom: 15px !important;
}
body > div.cover .swiper-button-next {
	right: 13px !important;
}
body > div.cover .swiper-button-prev {
	left: 13px !important;
}
header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 100px;
	padding: 20px 50px;
	width: 100%;
	height: 100px;
	background: var(--header-back);
	color: var(--header-color);
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 400;
	font-size: 30px;
	position: relative;
}
header > div a {
	display: flex;
	align-items: center;
	gap: 20px;
}
header > div a img {
	display: block;
	height: 60px;
}
header > div a span {
	font-size: 20px;
	white-space: nowrap;
}
header menu > ul {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
header menu ul li {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5px 10px;
	min-width: 100px;
	border-radius: 3px;
	color: var(--header-color);
	font-size: 15px;
	line-height: 20px;
	text-align: center;
	word-break: keep-all;
	position: relative;
}
header menu ul li a {
	width: 100%;
	height: 100%;
}
header menu ul li ul {
	display: flex;
	flex-direction: column;
	gap: 0;
	padding: 0 10px;
	background: var(--header-menu-back);
	border-radius: 3px;
	box-shadow: 0 0 3px 0 var(--header-menu-color);
	position: absolute;
	top: 40px;
	left: 0;
	z-index: 1;
}
header menu ul li:last-child ul {
	left: initial;
	right: 0;
}
header menu ul ul li {
	justify-content: flex-start;
	min-width: 200px;
	padding: 10px 0;
	font-size: 13px;
}
header menu ul ul li:nth-child(n+2) {
	border-top: 1px solid var(--header-menu-color);
}
footer {
	display: flex;
	justify-content: space-between;
	padding: 30px 50px;
	width: 100%;
	min-height: 300px;
	background: var(--footer-back);
	color: var(--footer-color);
	position: relative;
}
footer > div {
	display: flex;
	flex-direction: column;
}
footer > div:first-child {
	justify-content: space-between;
}
footer > div:first-child img {
	display: block;
	height: 60px;
}
footer > div:first-child > span {
	margin-bottom: 10px;
	font-size: 16px;
}
footer address {
	font-style: normal;
	font-size: 12px;
}
footer address > span {
	display: block;
	font-size: 18px;
	line-height: 30px;
}
footer address span:nth-child(n+2) {
	margin-left: 10px;
}
footer menu {
	padding: 20px;
}
footer menu ul {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 20px;
}
footer menu ul li {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	min-width: 150px;
	color: var(--footer-menu-color);
	font-size: 13px;
	line-height: 20px;
	word-break: keep-all;
	position: relative;
}
footer menu ul li ul {
	display: flex !important;
	flex-direction: column;
	gap: 10px;
	margin-top: 10px;
	padding-top: 20px;
	border-top: 1px solid var(--footer-menu-color);
}
footer menu ul li ul li {
	font-size: 12px;
}
body > div {
	display: flex;
	width: 100%;
	min-height: calc(100dvh - 400px);
}
aside {
	display: none;
}
main {
	display: flex;
	width: 100%;
	position: relative;
}
main > section {
	width: 100%;
}
mian > nav {
	width: 0;
}
.part_slide {
	overflow: hidden;
}
.slider.fade img {
	width: 100%;
}
.slider.slide img {
	width: 100%;
}
.part_rect {
	background: var(--content-back);
}
.part_image {
	background: var(--content-back);
}
.part_image > div {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 50px;
	height: 100%;
}
.part_image > div.left {
	flex-direction: row;
	align-items: flex-start;
}
.part_image > div.right {
	flex-direction: row-reverse;
	align-items: flex-start;
}
.part_image > div.bottom {
	flex-direction: column-reverse;
	align-items: center;
}
.part_image > div > div {
	flex: 1;
}
.part_image > div > a, .part_image picture, .part_image video {
	flex: 1;
	height: 100%;
}
.part_image picture img {
	width: 100%;
}
.part_image h1, .part_image h2, .part_image h3 {
	margin: 0 0 50px;
	line-height: 1.2;
}
.part_text {
	padding: 50px;
	background: var(--content-back);
	color: var(--content-color-small);
}
.part_media {
	overflow: hidden;
}
.part_media > div {
	margin: 0 -15px 0;
}
.part_media .slick-dotted.slick-slider {
	margin-bottom: 60px;
}
.part_media .slick-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60px;
	bottom: -60px;
}
.part_media div.media {
	display: flex;
	flex-direction: row;
	gap: 20px;
	margin: 0 16px;
	padding: 30px;
	height: 500px;
	background: var(--content-back);
}
.part_media div.media > a {
	flex: 1;
	display: flex;
}
.part_media div.media > a img {
	object-fit: cover;
}
.part_media div.media > div {
	flex: 1;
	word-break: break-all;
}
.part_flexbox {
	overflow: hidden;
}
.part_flexbox div.row {
	display: flex;
	flex-direction: row;
	gap: 10px;
	align-items: center;
	flex-wrap: wrap;
}
.part_flexbox div.column {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
}
.part_flexbox div.box {
	display: flex;
	flex-direction: column;
	padding: 10px;
	width: 300px;
	height: auto;
	border: var(--content-border);
	gap: 10px;
}
.part_flexbox div.slider div.box {
	margin-right: 10px;
}
.part_flexbox h1, .part_flexbox h2, .part_flexbox h3 {
	margin: 0 0 10px;
	line-height: 1.2;
}
.part_flexbox h1 {
	font-size: min(24px, 6vw);
}
.part_flexbox h2 {
	font-size: min(20px, 5vw);
}
.part_flexbox h3 {
	font-size: 16px;
}
.part_flexbox div.box.bottom {
	flex-direction: column-reverse;
	justify-content: flex-end;
}
.part_flexbox div.box.left {
	flex-direction: row;
	align-items: flex-start;
}
.part_flexbox div.box.right {
	flex-direction: row-reverse;
	align-items: flex-start;
}
.part_flexbox div.box.left > img {
	max-width: calc((100% - 10px) / 2);
}
.part_flexbox div.box.right > img {
	max-width: calc((100% - 10px) / 2);
}
.part_dllist {
	padding: 10px;
}
.part_dllist > div {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.part_dllist dl {
	display: flex;
	gap: 10px;
}
.part_dllist dl dt {
	padding: 10px;
	width: 20%;
	border: 1px solid var(--content-button-back);
	background: var(--content-button-back);
	color: var(--content-button-color);
}
.part_dllist dl dd {
	padding: 10px;
	width: 80%;
	border: var(--content-border);
	background: var(--content-back);
	color: var(--color);
}
.part_form {
	padding: 10px;
}
.part_form h3 {
	margin-bottom: 20px;
}
.part_form > div {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.part_form dl {
	display: flex;
	gap: 10px;
}
.part_form dl dt {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px;
	width: 20%;
	border: 1px solid var(--accent-color);
	background: var(--accent-color);
	color: #fff;
}
.part_form dl dt span {
	font-size: 13px;
	color: #ff0000;
	white-space: nowrap;
}
.part_form dl dd {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 10px;
	padding: 10px;
	width: 80%;
	border: var(--content-border);
	background: var(--content-back);
	color: var(--color);
}
.part_form dl dd > div {
	display: flex;
	align-items: center;
	gap: 10px;
}
.part_form dl dd > div.selector {
	flex-wrap: wrap;
	gap: 20px;
	margin: 10px;
}
.part_form dl dd > div.selector + input {
	min-width: 200px;
}
.part_form dl dd label {
	max-width: 100%;
}
.part_form dl dd label input {
	margin-right: 10px;
	position: relative;
	top: 0.5px;
}
.part_form dl dd p {
	font-size: 13px;
}
html.confirm form {
	margin: 0 auto;
	max-width: calc(100% - 100px);
}
html.confirm .part_form dl dd p {
	color: #ff0000;
}
.part_submit {
	display: flex;
	align-items: center;
	justify-content: space-around;
	margin: 50px 0;
}
.part_submit button {
	padding: 15px 30px;
	min-width: 200px;
	max-width: calc(100% - 20px);
	box-shadow: 2px 2px 2px 0 rgb(0 0 0 / 15%);
	border-radius: 6px;
	border: var(--content-button-border);
	background: var(--content-button-back);
	color: var(--content-button-color);
	transition: 0.3s;
	cursor: pointer;
}
.part_submit button:hover {
	opacity: 0.8;
}
.part_submit a {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 15px 30px;
	min-width: 200px;
	max-width: calc(100% - 20px);
	box-shadow: 2px 2px 2px 0 rgb(0 0 0 / 15%);
	border-radius: 6px;
	border: var(--content-border);
	background: var(--content-back);
	transition: 0.3s;
	cursor: pointer;
}
.part_submit a:hover {
	opacity: 0.8;
	text-decoration: none;
}
div.complete {
	margin: 50px auto;
	padding: 60px 160px;
	max-width: calc(100% - 30px);
	width: 800px;
	border: var(--content-border);
	background: var(--content-back);
}
div.complete ul li:first-child {
	padding: 20px 0;
	font-size: 20px;
}
div.complete a.button {
	display: block;
	margin: 50px auto 30px;
	padding: 15px 30px;
	width: 200px;
	max-width: calc(100% - 20px);
	box-shadow: 2px 2px 2px 0 rgb(0 0 0 / 15%);
	border-radius: 6px;
	border: var(--content-button-border);
	background: var(--content-button-back);
	color: var(--content-button-color);
	transition: 0.3s;
	cursor: pointer;
}
div.complete a.button:hover {
	opacity: 0.8;
	text-decoration: none;
}
div.complete span {
	font-size: 13px;
}
html.blog aside {
	display: block;
	padding: 50px 0 50px 50px;
	min-width: 400px;
}
html.blog main {
	width: calc(100% - 400px);
}
aside > div {
	background: var(--header-back);
	color: var(--header-color);
	padding: 10px 20px;
}
aside > div:nth-of-type(n+2) {
	margin-top: 20px;
}
aside > div.search {
	padding: 0;
	background: none;
	position: relative;
}
aside > div.search input {
	padding-right: 42px;
	width: 100%;
	height: 40px;
	border-radius: 8px;
}
aside > div.search input + a {
	display: block;
	width: 30px;
	height: 30px;
	mask-image: url(../image/resource/search.svg);
	mask-size: 24px;
	mask-repeat: no-repeat;
	mask-position: center;
	-webkit-mask-image: url(../image/resource/search.svg);
	-webkit-mask-size: 24px;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--header-color);
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
}
aside ul li {
	padding: 10px 20px;
	background: var(--content-back);
	border-bottom: var(--content-border);
	border-bottom-style: dashed;
}
aside ul li a {
	text-decoration: underline;
	color: var(--link-color);
}
aside ul li:last-child {
	border: none;
	font-size: 0.8em;
}
aside ul li:last-child a {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
aside ul li:last-child a::before {
	display: block;
	content: "";
	width: 20px;
	height: 20px;
	mask-image: url(../image/resource/next.svg);
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
	-webkit-mask-image: url(../image/resource/next.svg);
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--header-color);
	position: relative;
	top: 1px;
}
aside ul li span:first-child {
	display: block;
	font-size: 0.85em;
}
aside ul.pages li span:last-child {
	font-family: "Noto Color Emoji", sans-serif;
	font-weight: 400;
	font-style: normal;
}
div.notfound {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--content-back);
	padding: 30px 50px;
	height: 200px;
}
html.blog article.blog {
	margin: 50px;
}
html.blog.article article.blog {
	padding: 50px;
	background: var(--content-back);
}
article.blog div.title {
	padding: 20px;
	background: var(--header-back);
}
article.blog time {
	display: block;
	margin-bottom: 15px;
	color: var(--header-menu-color);
}
article.blog h1, article.blog h2 {
	color: var(--header-color);
	font-size: min(30px, 7vw);
	font-family: "Noto Color Emoji", sans-serif;
	font-weight: 400;
	font-style: normal;
}
article.blog div.tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 30px;
}
article.blog div.tags a {
	padding: 5px;
	background: var(--content-button-back);
	color: var(--content-button-color);
	border-radius: 6px;
	line-height: 1em;
	font-size: 12px;
}
article.blog div.detail {
	padding-top: 30px;
	line-height: 2.5em;
	font-size: 16px;
	font-family: "Noto Color Emoji", sans-serif;
	font-weight: 400;
	font-style: normal;
}
article.blog div.share {
	margin-top: 30px;
}
article.blog div.image > div:not(.slide, .thumb) {
	display: flex;
}
article.blog div.image img {
	width: 100%;
	max-height: 500px;
	object-fit: cover;
}
article.blog div.slide img {
	width: 100%;
}
article.blog div.thumb {
	margin: 20px 10px;
}
article.blog div.thumb .slick-slide {
	margin: 0 10px;
	cursor: pointer;
}
article.blog div.thumb .slick-track {
	margin-left: initial;
}
article.blog article {
	padding: 30px;
	background: var(--content-back);
}
article.blog article div.detail {
	display: flex;
	gap: 30px;
	font-family: "Noto Color Emoji", sans-serif;
	font-weight: 400;
	font-style: normal;
}
article.blog article div.detail div.image {
	min-width: 360px;
}
article.blog article div.detail div.image a {
	display: flex;
}
article.blog article div.link {
	display: flex;
	justify-content: flex-end;
	margin-top: 30px;
}
article.blog article div.link a {
	display: flex;
	align-items: center;
	padding: 10px 20px;
	background: var(--content-button-back);
	color: var(--content-button-color);
	border-radius: 6px;
	transition: 0.3s;
}
article.blog article div.link a:hover {
	opacity: 0.8;
}
article.blog article div.link a::after {
	display: block;
	content: "";
	width: 20px;
	height: 20px;
	mask-image: url(../image/resource/next.svg);
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
	-webkit-mask-image: url(../image/resource/next.svg);
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--content-button-color);
	position: relative;
	top: 1px;
}
div.pager {
	display: flex;
	justify-content: space-between;
	background: var(--content-back);
	padding: 30px;
}
div.pager > div {
	display: flex;
	align-items: flex-end;
	gap: 10px;
}
div.pager span {
	color: var(--content-button-back);
}
div.pager a {
	display: flex;
	align-items: center;
	padding: 8px 13px;
	background: var(--content-button-back);
	color: var(--content-button-color);
	border-radius: 6px;
	transition: 0.3s;
}
div.pager a.current {
	background: var(--content-button-color);
	color: var(--content-button-back);
	border: 1px solid var(--content-button-back);
}
div.pager a:hover {
	opacity: 0.8;
}
div.pager a.prev::before {
	display: block;
	content: "";
	width: 20px;
	height: 20px;
	mask-image: url(../image/resource/prev.svg);
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
	-webkit-mask-image: url(../image/resource/prev.svg);
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--content-button-color);
	position: relative;
	top: 1px;
}
div.pager a.next::after {
	display: block;
	content: "";
	width: 20px;
	height: 20px;
	mask-image: url(../image/resource/next.svg);
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
	-webkit-mask-image: url(../image/resource/next.svg);
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--content-button-color);
	position: relative;
	top: 1px;
}

@media screen and (min-width: 641px) and (max-width: 834px) {
	img, video {
		min-width: initial!important;
		max-width: 100%;
	}
	.tb {
		display: block!important;
	}
	.tb + .pc {
		display: none!important;
	}
	div.sns {
		justify-content: space-between;
	}
	header {
		flex-direction: column;
		gap: 10px;
		height: auto;
		min-height: 100px;
	}
	footer {
		flex-direction: column-reverse;
	}
	footer > div {
		flex-direction: row;
	}
	footer menu ul {
		gap: 15px;
	}
	footer menu ul li {
		min-width: 140px;
	}
	body > div {
		min-height: calc(100dvh - 430px);
	}
	html.blog body > div {
		flex-direction: column-reverse;
	}
	html.blog aside {
		padding: 0 50px 50px;
	}
	html.blog main {
		width: 100%;
	}
}

@media screen and (max-width: 640px) {
	html {
		line-height: 1.7em;
	}
	img, video {
		min-width: initial!important;
		max-width: 100%;
	}
	div.map {
		padding-top: 100%;
	}
	.sp {
		display: block!important;
	}
	.sp + .tb, .sp + .pc, .tb + .pc {
		display: none!important;
	}
	.flex {
		flex-direction: column;
		align-items: center;
	}
	a.link {
		width: 100%;
	}
	div.sns {
		flex-direction: column;
		gap: 20px;
	}
	div.sns a {
		width: 100%;
		max-width: initial;
	}
	body > div.cover {
		padding: 50px 0;
	}
	body > div.cover .swiper-slide {

	}
	body > div.cover .swiper-button-next, body > div.cover .swiper-button-prev {
		display: none;
	}
	header {
		gap: 0;
		padding: 0 10px;
		height: 50px;
		position: fixed;
		z-index: 1;
	}
	header > div a {
		gap: 5px;
	}
	header > div a img {
		height: 30px;
	}
	header > div a span {
		font-size: 15px;
	}
	header menu a.icon.menu {
		display: block;
		width: 30px;
		height: 30px;
		mask-image: url(../image/resource/menu.svg);
		mask-size: contain;
		mask-repeat: no-repeat;
		mask-position: center;
		-webkit-mask-image: url(../image/resource/menu.svg);
		-webkit-mask-size: contain;
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-position: center;
		background-color: var(--header-color);
		cursor: pointer;
	}
	header menu > ul {
		display: none;
	}
	body > menu {
		display: none;
		padding: 50px 20px 20px;
		background: var(--header-menu-back);
		min-width: 300px;
		max-width: 100%;
		min-height: 100dvh;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 1;
	}
	body > menu a.icon.menu {
		display: block;
		width: 30px;
		height: 30px;
		mask-image: url(../image/resource/menu_close.svg);
		mask-size: contain;
		mask-repeat: no-repeat;
		mask-position: center;
		-webkit-mask-image: url(../image/resource/menu_close.svg);
		-webkit-mask-size: contain;
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-position: center;
		background-color: var(--header-menu-color);
		cursor: pointer;
		position: absolute;
		top: 10px;
		right: 10px;
	}
	body > menu > ul {
		display: flex;
		flex-direction: column;
		gap: 30px;
	}
	body > menu > ul li {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		width: 100%;
		background: var(--header-menu-back);
		color: var(--header-menu-color);
		font-size: 13px;
		line-height: 20px;
		word-break: keep-all;
		position: relative;
	}
	body > menu > ul li ul {
		display: flex !important;
		flex-direction: column;
		gap: 20px;
		margin-top: 10px;
		padding-top: 20px;
		width: 100%;
		border-top: 1px solid var(--header-menu-color);
	}
	body > menu > ul li ul li {
		padding: 0 0 0 10px;
		font-size: 12px;
	}
	footer {
		flex-direction: column-reverse;
		padding: 20px;
	}
	footer > div:first-child {
		align-items: center;
		justify-content: initial;
	}
	footer address {
		margin-top: 30px;
	}
	footer address > span {
		margin-bottom: 20px;
	}
	footer menu {
		margin-bottom: 10px;
		padding: 20px 0;
	}
	footer menu ul {
		flex-direction: column;
		gap: 30px;
	}
	footer menu ul li {
		width: 100%;
	}
	footer menu ul li ul {
		width: 100%;
	}
	footer menu ul li ul li {
		padding: 0 0 0 10px;
	}
	body > div {
		min-height: calc(100dvh - 780px);
	}
	main {
		padding-top: 50px;
	}
	.part_slide img {
		height: calc(100dvh - 50px);
		object-fit: cover;
		object-position: center;
	}
	.part_image > div.left {
		flex-direction: column;
		align-items: center;
	}
	.part_image > div.right {
		flex-direction: column-reverse;
		align-items: center;
	}
	.part_image > div > div {
		width: 100%;
	}
	.part_text {
		padding: 20px;
	}
	.part_flexbox div.box.left {
		flex-direction: column;
		align-items: initial;
	}
	.part_flexbox div.box.right {
		flex-direction: column-reverse;
		align-items: initial;
	}
	.part_flexbox div.box.left > img {
		max-width: 100%;
	}
	.part_flexbox div.box.right > img {
		max-width: 100%;
	}
	.part_dllist dl {
		flex-direction: column;
	}
	.part_dllist dl dt {
		width: 100%;
	}
	.part_dllist dl dd {
		width: 100%;
	}
	.part_form dl {
		flex-direction: column;
	}
	.part_form dl dt {
		width: 100%;
	}
	.part_form dl dd {
		width: 100%;
		min-height: 50px;
	}
	html.confirm form {
		margin: 0 auto;
		max-width: calc(100% - 40px);
	}
	.part_submit {
		flex-wrap: wrap;
		gap: 20px;
	}
	div.complete {
		padding: 20px;
	}
	html.blog body > div {
		flex-direction: column-reverse;
	}
	html.blog aside {
		padding: 0;
		min-width: initial;
	}
	html.blog main {
		width: 100%;
	}
	aside > div:nth-of-type(n+2) {
		margin-top: 0;
	}
	aside > div.search {
		margin: 50px auto;
		width: calc(100% - 40px);
	}
	article.blog {
		margin: 0;
		padding: 0;
	}
	html.blog.article article.blog {
		padding: 20px;
	}
	article.blog article div.detail {
		flex-direction: column;
	}
	div.pager {
		padding-top: 110px;
		position: relative;
	}
	div.pager > div {
		position: absolute;
		top: 30px;
	}
}
