/*
 Theme Name: chanpontei
*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Yantramanav:wght@900&display=swap');
*,*::before,*::after {
  box-sizing: border-box;
}
[data-aos="fade-up"] {
  transform: translate3d(0, 40px, 0); /* ここで距離を調整 */
}

[data-aos="fade-up"].aos-animate {
  transform: translate3d(0, 0, 0); /* 最終位置 */
}
html {
	overflow-x: hidden;
}
body {
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	margin: 0;
	padding: 0;
	background: #f5f5f5;
	width: 100vw;
	overflow-x: hidden;
}
a {
	color: #000;
}
.en {
	font-family: "Yantramanav", sans-serif;
	font-weight: 900;
	letter-spacing: 2px;
}
header {
	position: sticky;
	top: 0;
	z-index: 100;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
}

.hamburger {
	position: relative;
	z-index: 100;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 90px;
	height: 90px;
	background: #000;
	border-radius: 45px;
	box-shadow: 5px 5px 10px rgba(0, 0, 0, .2);
}
.hamburger .bar {
	display: block;
	width: 30px;
	height: 2px;
	background: #fff;
	transition: 0.5s;
}
.hamburger .bar-2 {
	margin: 7px 0;
}
.hamburger.close .bar-1 {
	transform: translate(0,9px) rotate(225deg);
}
.hamburger.close .bar-2 {
	opacity: 0;
	transform: translate(-100%,0);
}
.hamburger.close .bar-3 {
	transform: translate(0,-9px) rotate(-225deg);
}

.nav-menu {
	position: fixed;
	overflow-y: scroll;
	right: -100%;
	top: 0;
	z-index: 99;
	width: fit-content;
	height: 100%;
	background-color: #fff;
	color: #fff;
	transition: right 0.5s;
	display: flex;
	flex-direction: column;
	padding-top: 60px;
	padding-bottom: 60px;
}
.nav-menu + .nav-bg {
	display: none;
	transition: 0.5s;
}
.nav-menu.active + .nav-bg {
	position: fixed;
	display: block;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, .2);
	top: 0;
	left: 0;
	z-index: 98;
}

.nav-menu ul {
	list-style-type: none;
	padding: 0 100px 0 60px;
}

.nav-menu ul li {
	padding: 10px 20px;
}

.nav-menu ul li a {
	font-family: "Yantramanav", sans-serif;
	font-weight: 900;
	font-size: 40px;
	color: #000;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.nav-menu ul li a span {
	font-size: 14px;
	width: 100px;
	margin-left: 40px;
}

.nav-menu.active {
	right: 0;
}

footer {
	background: #f5f5f5;
	padding-top: 100px;
}
footer nav {
	justify-content: space-around;
}
footer nav li {
	display: block;
	margin-bottom: 15px;
}

footer .center li::before {
	content: "-";
	display: inline-block;
	margin-right: 16px;
}
footer .right li::before {
	content: "";
	display: inline-block;
	width: 12px;
	height: 10px;
	background: url(images/footer/new_tab.png);
	background-repeat: no-repeat;
	background-size: contain;
	margin-right: 6px;
}

footer nav a {
	letter-spacing: 0.5px;
	font-size: 14px;
	font-weight: bold;
	color: #000;
	position: relative;
}
footer nav a::after {
	position: absolute;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	background: #000000;
	bottom: -5px;               /*アンダーラインがaタグの下端から現れる*/
	transform: scale(0, 1);     /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
	transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
	transition: transform 0.3s; /*変形の時間*/
}

footer nav a:hover::after {
	transform: scale(1, 1);     /*ホバー後、x軸方向に1（相対値）伸長*/
}
footer nav .left a::after {
	content: none;
}
footer nav .left a {
	transition: 0.3s;
	display: block;
}
footer nav .left a:hover {
	opacity: 0.7;
}
footer nav .left a img {
	width: auto;
}
footer nav .left a.banner {
	padding-top: 40px;
}
footer .sns {
	align-items: center;
}
footer .sns li {
	margin: 0 8px;
}
.copyright {
	font-size: 12px;
	justify-content: space-between;
	align-items: center;
}

/* 共通 */
.container {
	position: relative;
	margin: 0 auto;
	max-width: 1080px;
	padding: 2rem;
}
.container img {
	max-width: 100%;
	width: 100%;
}

.post-meta {
	color: #555;
	font-size: 0.9rem;
}

.post-thumbnail {
	margin-bottom: 0.6rem;
}
a {
	text-decoration: none;
}
img {
	max-width: 100%;
}
.flex {
	display: flex;
}
h2.ttl {
	font-weight: bold;
	line-height: 1.4;
	margin-bottom: 40px;
}
h2.ttl .en {
	font-size: 38px;
}
h2.ttl .ja {
	font-size: 14px;
}
h2.ttl.wh {
	color: #fff;
}
.txt {
	line-height: 1.8;
	margin: 40px 0 60px;
}

.txts .catch {
	font-size: 31px;
	font-weight: bold;
}
a.view-more-btn {
	color: #000;
	font-size: 13px;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 180px;
	height: 50px;
	border-radius: 25px;
}
a.view-more-btn::before {
	content: "";
	display: block;
	width: 27px;
	height: 1px;
	margin-right: 10px;
}
a.view-more-btn.bk {
	color: #fff;
	background: #000;
	box-shadow: 5px 5px 10px rgba(0, 0, 0, .2);
}
a.view-more-btn.bk::before {
	background: #fff;
}

.bg img {
	width: 100%;
}
/*========================================

				トップ

========================================*/
/*===================================== 

		トップ　キービジュアル スライダー 

=====================================*/
/* スライダーリセット、slick.jsが読み込まれるまで非表示にすることで一瞬縦に崩れるのを防ぐ */
.slide {
	opacity: 0;
	transition: opacity .5s linear;
}
.slide.slick-initialized{
	opacity: 1;
}
.slide .slick-slide{
	margin-right: 1vw!important;
	margin-left: 1vw!important;
}
.slick-slide img {
	width: 100%;
}
.slick-dotted.slick-slider {
	margin-bottom: 50px;
}
/* slick-dotsの設定 */

	.slick-dots{
		width: 40%;
		max-width: 420px;
		margin: 0 auto;
		position: relative;
		display: flex;
	}
	.slick-dots li {
		width: unset;
		height: unset;
		margin: 0 5px 0 0;
		flex: 1;
	}
	.slick-dots li img {
		width: 120px;
		opacity: 0.7;
	}
	.slick-dots li img:hover{
		opacity: 1;
	}
	.slick-dots .slick-active img {
		opacity: 1;
		border-bottom: solid 4px #d20621;
	}

/*========================================

				トップ ニュース

========================================*/
.top-news {
	position: relative;
	padding: 40px 0 80px;
	overflow-x: hidden;
}
.top-news::before {
	content: "";
	display: block;
	width: 90vw;
	height: 100%;
	background: #fff;
	position: absolute;
	top: 0;
	z-index: -1;
}
.top-news h2.ttl {
	margin-bottom: 30px;
}
.top-news .categories li {
	font-weight: bold;
	margin-right: 16px;
}
.top-news .categories li.current {
	border-bottom: 3px solid ;
}
.top-news .categories li a {
	font-weight: bold;
	color: #000;
}
.top-news-posts {
	opacity: 0;
}
.top-news-posts.slick-initialized {
	opacity: 1;
	transition: 0.3s;
}
.top-news .slick-list {
	overflow: visible;
}
.top-news .slick-track {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	min-width: 1080px;
	transition: 0.5s;
}
.hentry {
	padding: 5px;
}
.top-news .post-thumbnail {
	margin-bottom: 10px;
}
.post-thumbnail img {
	object-fit: cover;
}
.top-news .post-thumbnail img {
	width: 100%;
	height: auto;
	aspect-ratio: 4/3;
	object-fit: cover;
}
.top-news-posts .post,
.trivia-posts .post {
/*	padding: 5px;*/
}
.page .top-news-posts .entry-header h2 {
	font-size: 16px;
}
.top-news-posts .entry-header h2,
.trivia-posts .entry-header h2 {
	padding: 0.6rem 0;
}

.top-news-posts .entry-header h2 a,
.trivia-posts .entry-header h2 a {
	font-weight: bold;
	color: #000;
}
.top-news-posts *,
.trivia-posts * {
	min-height: 0;
	min-width : 0;
}
.top-news-posts .date,
.trivia-posts .date {
	font-size: 13px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.top-news-posts .date::before,
.trivia-posts .date::before {
	content: "";
	display: block;
	width: 30px;
	height: 1px;
	margin-right: 8px;
	background: #000;
}
.post .category {
	position: relative;
	font-size: 12px;
	font-weight: bold;
	color: #fff;
	background: #000;
	display: inline-flex;
	align-items: center;
	height: 20px;
	padding: 4px 6px;
	margin-right: 10px;
}
.post .category::before {
	content: "";
	display: inline-block;
	width: 0px;
	height: 0px;
	border-top: solid 10px transparent;
	border-right: solid 10px transparent;
	border-bottom: solid 10px transparent;
	border-left: solid 10px #000;
	position: absolute;
	top: 0;
	right: -20px;
}
.post .category::after {
	content: "";
	display: block;
	width: 3px;
	height: 3px;
	border-radius: 1.5px;
	background: #fff;
	position: absolute;
	top: 50%;
	right: -3px;
	transform: translate(0, -50%);
}
/* 新商品 */
.category.newitem {
	background: #c79c13;
}
.category.newitem::before {
	border-left: solid 10px #c79c13;
}
/* キャンペーン */
.category.campaign {
	background: #d20621;
}
.category.campaign::before {
	border-left: solid 10px #d20621;
}
.page .trivia-posts .posts-wrap {
	justify-content: space-between;
	flex-wrap: wrap;
}
.page .trivia-posts .posts-wrap::after {
	content: "";
	width: 32%;
	display: flex;
}
.page .trivia-posts .post {
	width: 32%;
	margin-bottom: 40px;
}
.page .trivia-posts + .view-more-btn {
	margin: 90px auto 120px;
}
.page .trivia-posts .post-thumbnail {
	margin-bottom: 0;
}
/* トップニュース　slick */
.slick-arrow {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	border-radius: 30px;
	background: #fff;
	box-shadow: 2px 2px 6px rgba(0, 0, 0, .2);
	top: 40%;
	z-index: 1;
	cursor: pointer;
	transition: 0.3s;
}
.slick-arrow::before {
	content: "";
	display: block;
	width: 7px;
	height: 7px;
	border-top: solid 1px #000;
	border-right: solid 1px #000;
	transform: rotate(45deg);
}
.slick-prev {
	left: 30px;
}
.slick-prev::before {
	transform: rotate(225deg);
}
.slick-next {
	right: 30px;
}
.slick-arrow.slick-disabled {
	opacity: 0;
}
.slick-arrow:hover {
	background: #000;
}
.slick-arrow:hover::before {
	border-top: solid 1px #fff;
	border-right: solid 1px #fff;
}
@media screen and (min-width: 1079px) {
	.top-news-posts {
		width: 100%;
		max-width: 1080px;
		margin: auto;
	}
	.slick-prev {
		left: -30px;
	}
	.slick-next {
		right: -30px;
	}
}
@media screen and (max-width: 1080px) {
	.top-news-posts {
		display: inherit;
		padding: 0 1.6rem;
	}
}

.top-news + .bg {
	padding: 120px 0 100px;
}
.top-news + .bg img {
	max-width: unset;
/*	width: max-content;*/
/*	padding: 0 100px;*/
	width: 100vw;
}
/*========================================

				トップ ABOUT

========================================*/
.top-about-us + .bg {
	padding: 100px 0 0;
	line-height: 0;
	position: sticky;
	top: -200px;
	z-index: -1;
	img {
		height: 88vh;
		object-fit: cover;
		object-position: top;
	}
}
/*========================================

				トップ MENU

========================================*/
.top-menu-wrap {
	background: #fff;
}
.top-menu {
	position: relative;
	justify-content: space-between;
	padding-top: 120px;
	padding-bottom: 120px;
}
.top-menu .right ul {
	max-width: 620px;
	width: 100%;
	justify-content: space-between;
}
.top-menu .right li {
	max-width: 32%;
	flex: 1;
  transition: 0.3s;
}
.top-menu .right li:nth-child(2) {
	margin: 0 8px;
}
.top-menu .right li img {
	max-width: 100%;
	width: 100%;
	height: 470px;
	object-fit: cover;
	translate: 0.3s;
}
.top-menu .right li:hover {
	max-width: 420px;
	width: 100%;
	flex: 3;
}
.top-menu .left,
.top-trivia .left {
	min-width: 320px;
	max-width: 320px;
}
.bg-f5f5f5 {
	background: #f5f5f5;
}
/*========================================

				トップ TRIVIA

========================================*/
.top-trivia {
	position: relative;
	justify-content: space-between;
	padding-top: 120px;
	padding-bottom: 120px;
}
.top-trivia .catch {
	white-space: nowrap;
}
.top-trivia .right img {
	width: 620px;
}

/*========================================

				トップ FIND

========================================*/
.top-find-us {
	text-align: center;
	padding-left:  0;
	padding-right:  0;
}
.top-find-us.container {
	max-width: unset;
}
.top-find-us-slide li {
	width: 24vw;
	padding: 10px;
}
.top-find-us a.view-more-btn {
	margin: 60px auto;
}
.top-find-us + .bg {
	padding: 100px 2rem;
}
.ttl-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
}
/*========================================

				トップ リンク

========================================*/
.top-link-wrap {
	justify-content: space-between;
}
.top-link-item {
	width: 32%;
}
.top-link-item h2.ttl {
	margin-bottom: 32px;
}
.top-link-item a {
	position: relative;
	overflow: hidden;
	display: flex;
}
.top-link-item a .layer {
	opacity: 0;
	transition: 0.5s;
}
.top-link-item a .layer {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, .255);
}
.top-link-item a .layer .flex {
	align-items: center;
	color: #000;
	font-size: 13px;
	font-weight: bold;
	position: relative;
	right: 20px;
	bottom: 10px;
}
.top-link-item a .layer .flex::before {
	content: "";
    display: block;
    width: 27px;
    height: 1px;
    margin-right: 10px;
    background: #000;
}
.top-link-item a img {
	transition: 0.5s;
}
.top-link-item a:hover img {
	transform: scale(1.06);
}
.top-link-item a:hover .layer {
	opacity: 1;
}

.top-link-bottom .left {
	background: #000;
	justify-content: center;
	align-items: center;
	width: 100%;
}
.top-link-bottom {
	padding-top: 20px;
}
.top-link-bottom a {
	overflow: hidden;
	transition: 0.5s;
}
.top-link-bottom a img {
	transition: 0.5s;
}
.top-link-bottom a:hover {
	opacity: 0.7;
}
.top-link-bottom a:hover img {
	transform: scale(1.1);
}
.top-link-bottom h2.ttl {
	margin-bottom: 0;
}
.top-link-bottom .view-more-btn {
	display: flex;
	align-items: center;
	font-size: 14px;
	margin-left: 20px;
}
.top-link-bottom .view-more-btn::before {
	content: "";
	display: block;
	width: 27px;
	height: 1px;
	margin-right: 10px;
	background: #fff;
}
/*========================================

				トップ コンタクト

========================================*/
.top-contact-bg {
	background: #f5f5f5;
}
.top-contact.bg {
	background: url(images/top/top_contact_bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	text-align: center;
	padding: 80px;
}
.top-contact.bg h2.ttl.wh {
	padding: 40px;
}
.top-contact .inner {
	height: 150px;
	background: #fff;
	justify-content: space-between;
}
.top-contact .inner .left,
.top-contact .inner .right {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50%;
	transition: 0.5s;
}
.top-contact .inner .left a {
	border-right: solid 1px #ccc;
}
.top-contact .inner .left a,
.top-contact .inner .right a {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 100%;
	font-size: 13px;
	color: #000;
	transition: 0.2s;
}
.top-contact .inner a h3 {
	font-size: 18px;
	font-weight: bold;
	padding-bottom: 16px;
}
.top-contact .inner .left:hover {
	background: #c79c13;
}
.top-contact .inner .right:hover {
	background: #ca2a2b;
}
.top-contact .inner .left:hover a,
.top-contact .inner .right:hover a {
	color: #fff;
}


/*========================================

				固定ページ

========================================*/
.page .entry-header h2 {
	font-size: 72px;
}
.trivia-posts .entry-header h2 {
	font-size: 16px;
}
.page .entry-header h2 span {
	display: flex;
	font-size: 16px;
}
.page {
	position: relative;
	overflow-x: hidden;
}
.page-kv {
	max-width: unset;
}
.page .txts .catch {
	font-size: 46px;
}
.txts .flex {
	justify-content: space-between;
	align-items: center;
}
.sec_1 {
	position: relative;
	width: 100vw;
	overflow-x: hidden;
}
.sec_1::before {
	content: "ABOUT US";
	letter-spacing: 4px;
	display: block;
	font-family: "Yantramanav", sans-serif;
	font-size: 150px;
	font-weight: 900;
	color: #fff;
	position: absolute;
	top: 0;
	left: 2rem;
	z-index: -1;

}
.sec_1 .txts {
	padding-top: 100px;
}
/*========================================

				ABOUT US 私たちの想い

========================================*/
.about-us .txts .left {
	min-width: 40%;
/*	padding: 2rem;*/
	display: flex;
	justify-content: center;
	align-items: center;
}
.about-us .txts .left img {
	width: auto;
}
.about-us .txt.right {
	padding: 2rem;
}
.sec_2 img.kv {
	width: calc(100% - ((100% - 1080px) / 2));
}
.sec_3 img.kv {
	width: calc(100% - ((100% - 1080px) / 2));
	display: block;
	margin-right: 0;
	margin-left: auto;
}
.about-us .sec_2 .txts.flex .catch,
.about-us .sec_3 .txts.flex .catch {
	font-size: 34px;
	justify-content: flex-start;
	padding: 2rem 0;
	margin: 40px 0 60px;
	min-width: 30%;
}
.about-us .sec_2 .txts.flex,
.about-us .sec_3 .txts.flex {
	align-items: flex-start;
}
.about-us .bg {
	position: absolute;
	max-width: fit-content;
	width: auto;
	top: -14rem;
}
.wh_chanpon-nodle {
	position: relative;
	z-index: 99;
}
.kodawari {
	background: #fff;
}
.kodawari h2.ttl {
	font-size: 34px;
	padding: 100px 0 40px;
}
.kodawari-lists {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-bottom: 40px;
}
.kodawari-item {
	width: 30%;
	margin-bottom: 80px;
}
.kodawari-item h3 {
	font-size: 30px;
	font-weight: bold;
	margin-bottom: 20px;
}
.kodawari-item h3 span {
	font-size: 16px;
}

/*========================================

				MENU メニュー

========================================*/
.menu .sec_1::before {
	content: "MENU";
}
.menu-lists {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 120px 0 40px;
}
.menu-lists .menu-item {
	width: 47%;
	margin-bottom: 80px;
}
.menu-item.large {
	width: 100%;
}
.menu-item h3 {
	font-size: 30px;
	font-weight: bold;
	margin: 20px 0;
}
.allergy {
	text-align: center;
}
.allergy a {
	position: relative;
	font-weight: bold;
	color: #000;
	width: 330px;
	height: 66px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff;
	border-radius: 9px;
	margin: 20px auto 100px;
	box-shadow: 4px 4px 5px rgba(0, 0, 0, .08);
}
.allergy a img {
	position: absolute;
	right: 60px;
	width: auto;
}

.menu .sec_2 {
	background: #fff;
}
.menu .sec_2 .ttl {
	justify-content: space-around;
	padding-top: 80px;
}
.menu .sec_2 h3 {
	font-size: 34px;
	font-weight: bold;
}
.menu .sec_2 p {
	font-size: 18px;
	padding-top: 40px;
	padding-left: 20px;
}
.menu .sec_2 .ttl .left {
/*	white-space: nowrap;*/
}
.menu .sec_2 .ttl .right {
	padding-top: 100px;
}
.menu .sec_2 .how-to {
	justify-content: space-between;
	flex-direction: row-reverse;
}
.menu .sec_2 .how-to .number {
	font-size: 30px;
	padding-top: 10px;
}
.menu .sec_2 .how-to .item {
	font-size: 46px;
	font-weight: bold;
	display: flex;
	align-items: center;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	line-height: 1.4;
}
.menu .sec_2 .how-to .item span {
	color: #d30621;
}
.menu .sec_2 .how-to .img-wrap {
	display: flex;
	align-items: flex-end;
}
.osu {
	margin: 100px auto;
}
.osu h4 {
	font-size: 26px;
	font-weight: bold;
	width: fit-content;
	background: #fff;
	padding: 0 12px;
	transform: translate(10%,50%);
}
.osu p {
	padding: 18px;
	border: solid 2px #000;
}
/*========================================

				TRIVIA 雑学

========================================*/
.trivia h2.ttl {
	margin-bottom: 0;
}
.trivia .sec_1::before {
	content: "";
	display: none;
}
.trivia .txt {
	margin-bottom: 0;
}
.trivia .sec_1 .txts {
	padding-top: 0;
}

/*========================================

				CONTACT お問い合わせ

========================================*/
.form-wrap {
	max-width: 800px;
	margin:auto;
}
input, select, textarea {
	font-size: 16px;
	line-height: 1.5;
	background: #fff;
	padding: 8px 12px;
	max-width: 100%;
	width: 100%;
}
.form-item {
	display: flex;
	padding: 20px 16px;
}
.form-type {
/*	border-bottom: solid 1px #ddd;*/
}
.form-item + .form-item {
/*	border-top: solid 1px #ddd;*/
}
.form-item .ttl {
	font-weight: bold;
	min-width: 300px;
}
.form-item .ttl::before {
	content: "必須";
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 34px;
	height: 20px;
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	background: #444;
	margin-right: 8px;
}
.form-item p.ttl::before {
	content: unset;
}
.form-policy {
	padding-top: 30px;
}
.form-policy h3 {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 10px;
}
.form-policy .txt {
	font-size: 14px;
	padding: 2rem;
	background: #fff;
	height: 250px;
	overflow: scroll;
	margin: 20px 0 40px;
}
.form-policy .txt h4 {
	font-size: 17px;
	font-weight: bold;
	margin: 20px 0 0;
}
.form-item.policy {
	margin-bottom: 40px;
	justify-content: center;
}
.mw_wp_form_confirm .form-policy,
.mw_wp_form_confirm .policy {
	display: none;
}
.contact-form {
/*	margin-top: 20px;*/
}

.checkbox input[type=checkbox].checkbox__item{
  display: none;
}

.checkbox label {
  display: inline-block;
}

/* spanの左側にボタンを配置するスペースを作る */
.checkbox .checkbox__item + span {
  padding-left: 38px;
  display: inline-block;
  position: relative;
}

/* 各パーツを作成 */
.checkbox .checkbox__item + span::after,
.checkbox .checkbox__item + span::before {
  content: '';
  display: block;
  position: absolute;
  border: 1px solid #AAAAAA;
  width: 20px;
  height: 20px;
  top: 0;
  left: 10px;
}

/* after上書き */
.checkbox .checkbox__item + span::after {
  opacity: 0;
  width: 8px;
  height: 12px;
  transform: rotate(45deg);
  top: 2px;
  left: 15px;
  border: none;
  border-right: 3px solid #aaa;
  border-bottom: 3px solid #aaa;
}

/*
  checked状態
  文字のcolorとボタンのopacityを変更
*/
.checkbox .checkbox__item:checked + span::after {
  opacity: 1;
}
input[type=submit] {
	width: 240px;
	height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: auto;
	background: #000;
	color: #fff;
	font-weight: bold;
	cursor: pointer;
}
input[type=submit]:hover {
	opacity: 0.7;
	transition: 0.3s;
}

.radio-btns input {
	margin-right: 8px;
}
.radio-btns input,
.radio-btns select {
	width: auto;
}
.radio-btns .wrap {
	display: inline-flex;
}
.radio-btns .wrap + .wrap {
	margin-left: 10px;
}
/* ラジオボタンを隠す */
.radio-btns input[type=radio].radio-btns__item{
  display: none;
}

.radio-btns label {
  display: inline-block;
}

/* spanの左側にボタンを配置するスペースを作る */
.radio-btns .radio-btns__item + span {
  padding-left: 2em;
  display: inline-block;
  position: relative;
}

/* 各パーツを作成 */
.radio-btns .radio-btns__item + span::after,
.radio-btns .radio-btns__item + span::before {
  content: '';
  display: block;
  position: absolute;
  border: 1px solid #AAAAAA;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  top: 0;
  left: 0;
}

/* after上書き */
.radio-btns .radio-btns__item + span::after {
  opacity: 0;
  width: 14px;
  height: 14px;
  top: 3px;
  left: 3px;
  border: none;
  background: #aaa;
}

/*
  checked状態
  文字のcolorとボタンのopacityを変更
*/
.radio-btns .radio-btns__item:checked + span::after {
  opacity: 1;
}

/* 住所 */
.address-wrap {
	width: 100%;
}
.address-wrap .ttl {
	min-width: 100px;
}
.address-wrap .flex {
	margin-bottom: 16px;
}
.address-wrap .zip + p input {
	width: auto;
}

/* 日付ピッカー */
.ui-datepicker .ui-datepicker-title select {
	background: unset;
}

.mw_wp_form_complete h2.ttl {
	font-size: 40px;
}
textarea {
	resize: none;
}
/*============================================================

					投稿

============================================================*/
/**/
.archive-header h2 {
	font-size: 72px;
}
.archive-header h2 span {
    display: flex;
    font-size: 16px;
}
.archive .post-wrap {
	max-width: 1200px;
}

/* pagination */
.pagination{
	width: 100%;
	margin: 100px auto 0;
}
/* リンクの枠 */
.pagination .nav-links{
	justify-content: center;
}
/* ページの数字 */
.pagination .nav-links .page-numbers{
	font-family: "Yantramanav", sans-serif;
	padding: 2px;
	margin: 8px;
}

/* 前へ、次へボタン */
.pagination .nav-links .prev,
.pagination .nav-links .next{

}

/* ドット */
.pagination .nav-links .dots{

}

/* 現在のページ */
.pagination .nav-links .current{
	padding-bottom: 0;
	border-bottom: solid 2px #000;
}

/* ドットと現在位置以外にホバーした時 */
.pagination .nav-links a:hover{

}

aside {
	max-width: 270px;
	width: 100%;
	margin-left: 3vw;
}
.archive-posts {
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	margin-bottom: 200px;
}
.archive-posts .post {
	max-width: 390px;
	width: 48%;
}
.archive-posts .post {
	margin-bottom: 2.6vw;
}
.archive-posts .post-thumbnail {
    margin-bottom: 4px;
}
.archive-posts h2 {
	margin: 14px 0 24px;
}
.archive-posts h2 a {
/*	font-weight: bold;*/
}
.archive-posts .date,
.post .date {
	font-size: 12px;
	display: flex;
	align-items: center;
}
.archive-posts .date::before,
.post .date::before {
	content: "";
	display: block;
	width: 40px;
	height: 1px;
	background: #333;
	margin-right: 10px;
}
.post .date::before {
	background: #999;
}

.wp-block-categories-list a {
	position: relative;
}
.wp-block-categories-list a::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #000000;
    bottom: -5px;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
}
.wp-block-categories-list a:hover::after {
    transform: scale(1, 1);
}
.archive a[aria-current="page"],
.post-type-archive .all-categories a {
	font-weight: bold;
}
.archive a[aria-current="page"]:after {
	transform: scale(1, 1);
}
.post-type-archive .all-categories a:after {
	transform: scale(1, 1);
}
/**/
body.single-post,
body.archive, body.category {
	background: #fff;
}
.single-post .container {
	max-width: 1200px;
}
.post-wrap.single {
	justify-content: space-between;
}
.post-wrap.single .left {
	max-width: 753px;
	width: 100%;
}
.post-wrap.single .right {
	max-width: 270px;
	width: 100%;
}
.sidebar .widget {
	font-size: 15px;
	line-height: 1.8;
	padding: 32px 0;
	border-top: solid 1px #ccc;
}
.sidebar .widget.recent-posts h2.ttl {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 20px;
}
.sidebar .widget.recent-posts li {
	display: flex;
	align-items: center;
}
.sidebar .widget.recent-posts li + li {
	margin-top: 20px;
}
.sidebar .widget.recent-posts a.thumb {
	min-width: 100px;
	width: 100px;
	overflow: hidden;
}
.sidebar .widget.recent-posts img {
	min-width: 100px;
	width: 100px;
	object-fit: contain;
	transition: 0.7s;
}
.sidebar .widget.recent-posts img:hover {
	transform: scale(1.04);
}
.sidebar .widget.recent-posts .detail {
	margin-left: 14px;
}

.entry-header h1 {
	font-size: 32px;
	margin: 10px 0 20px;
	font-weight: bold;
}

.entry-header h1 a {
	color: #333;
	text-decoration: none;
}

.entry-header h1 a:hover {
	text-decoration: underline;
}

/* Post meta styles */
.post-meta {
	font-size: 14px;
	color: #999;
	margin-bottom: 20px;
}

/* Post thumbnail styles */
.post-thumbnail {
	overflow: hidden;
	margin-bottom: 20px;
}
.post-thumbnail img {
	width: 100%;
	height: auto;
	aspect-ratio: 4/3;
	object-fit: cover;
	border-radius: 5px;
	transition: 0.7s;
}
.post-thumbnail img:hover {
	transform: scale(1.05);
}
/* Author box styles */
.author-box {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}
.author-avatar {
	margin-right: 10px;
}
.author-info {
	font-size: 14px;
}
.author-name {
	display: block;
	font-weight: bold;
}
.author-position {
	display: block;
	color: #999;
}

/* Entry content styles */
.entry-content {
	font-size: 16px;
	line-height: 1.6;
}
.entry-content p {
	margin-bottom: 20px;
}
.entry-content strong {
	font-weight: bold;
}
.entry-content a {
	color: #38e;
	text-decoration: underline;
}
.entry-content h2,
.entry-content h3 {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: .5rem;
	margin-top: 2rem;
}
.entry-content h3 {
	font-size: 20px;
}
.entry-content .wp-block-image {
	margin-bottom: 1.25em;
}
.entry-content .wp-block-list {
	list-style-type: disc;
	margin-bottom: 1.25em;
	padding-left: 1.625em;
}
.entry-content .wp-block-list li {
	margin-bottom: .5em;
	margin-top: .5em;
}

/* 戻るボタン */
.return-btn {
	width: 240px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 100px auto 200px;
	background: #000;
	color: #fff;
	font-weight: bold;
	cursor: pointer;
}
.return-btn:hover {
	opacity: 0.7;
	transition: 0.3s;
}

/* 前後記事 */
.nav-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-previous a::before {
  content: '← ';
}

.nav-next a::after {
  content: ' →';
}

.nav-previous, .nav-next {
  flex: 1;
  display: flex;
}

.nav-previous {
  justify-content: flex-start;
}

.nav-next {
  justify-content: flex-end;
}

.sp-only {
	display: none;
}
.trivia-posts a.view-more-btn {
/*	margin: auto;*/
}
.trivia-posts a.view-more-btn::before {
/*	background: #000;*/
}
.menu-page-title-wrap {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	flex-wrap: wrap;
	.menu-links {
		nav {
			display: flex;
			justify-content: space-between;
			align-items: baseline;
			margin-bottom: 0.5em;
			a {
				font-size: 14px;
				display: flex;
				align-items: center;
				padding: 0.35em 0.65em;
				border: solid 1px;
				img {
					width: 17px;
					object-fit: contain;
					display: block;
					margin-left: 0.5em;
				}
			}
		}
		p {
			font-size: 14px;
		}
	}
}

/*==============================

					レスポンシブ

==============================*/
@media screen and (max-width: 820px) {
	header {
		padding: 16px 1.6rem;
	}
	.hamburger {
		width: 50px;
		height: 50px;
	}
	.nav-menu {
		width: 70%;
	}
	.nav-menu ul {
		padding: 0 0 0 0;
	}
	footer {
		padding-top: 60px;
	}
	footer nav {
		align-items: flex-start;
	}
	footer nav .left {
		margin-bottom: 20px;
	}
	footer .sns {
		margin-bottom: 40px;
	}
	.copyright {
		flex-direction: column;
	}
	.copyright p {
		font-size: 12px;
	}
	.slick-dots {
		width: 50%;
	}
	.container {
		padding: 1.6rem;
		margin-top: -1px;/* 背景の画像が見えないように */
	}
	.top-news .categories {
		flex-wrap: wrap;
	}
	.top-news .categories li {
		margin-bottom: 16px;
	}
	.hentry, .top-news .slick-slide {
		max-width: unset;
		/*max-width: 360px;
		min-width: 320px;*/
/*		width: 100% !important;*/
	}
	.top-news-posts .slick-track {
		/*min-width: 100%!important;
		width: 100%!important;*/
	}
	.slide-arrow {
		width: 50px;
		height: 50px;
	}
	.next-arrow {
		right: 10px;
	}
	.prev-arrow {
		left: 10px;
	}
	.top-menu,
	.top-trivia {
		flex-wrap: wrap;
		padding-top: 3rem;
		padding-bottom: 4rem;
	}
	.top-menu .left, .top-trivia .left {
		max-width: unset;
		min-width: unset;
	}
	.top-menu .right,
	.top-trivia .right {
		padding-top: 70px;
	}
	.top-menu .right li img {
		height: 240px;
	}
	.top-find-us + .bg {
		display: none;
		padding: 60px 1.6rem;
	}
	.top-link-wrap {
		flex-direction: column;
	}
	.top-link-item {
		width: 100%;
		margin-bottom: 40px;
	}
	.top-link-item a .layer {
		background: unset;
		opacity: 1;
	}
	.top-link-bottom a {
		flex-direction: column-reverse;
	}
	.top-link-bottom h2.ttl {
		width: 100%;
    padding: 10px 14px;
	}
	.top-link-bottom h2.ttl .flex {
		flex-direction: column;
	}
	.top-link-bottom .view-more-btn {
		margin-left: auto;
		margin-right: 0;
	}
	.top-contact.bg {
		padding: 0;
	}
	.top-contact .inner {
		flex-direction: column;
		height: 100%;
	}
	.top-contact .inner .left, .top-contact .inner .right {
		width: 100%;
		height: 150px;
	}
	.top-contact .inner .left a {
		border-right: none;
	}
	.top-contact .inner .left {
		border-bottom: solid 1px #ccc;
	}
	/*=================================================

					ABOUT US

	=================================================*/
	br.pc-only {
		display: none;
	}
	.page .entry-header h2 {
		font-size: 60px;
		margin-bottom: 0;
	}
	.post .entry-header h2 {
		font-size: 16px;
	}
	.page-kv {
		padding: 0;
	}
	.page .txts .catch {
		font-size: 31px;
	}
	.txts .flex,
	.txts.flex {
		flex-direction: column;
	}
	.page .txt.right {
		padding: 0;
	}
	.sec_1::before {
		font-size: 100px;
		line-height: 1;
	}
	.about-us .bg {
		z-index: 0;
		transform: translate(-50%,0%) rotate(90deg);
		max-height: 90vw;
		left: 50%;
		right: 0;
		top: -40vw;
	}
	.about-us .sec_1 .catch {
		margin-bottom: 80px;
	}
	.about-us .sec_2 .txts.flex .catch, .about-us .sec_3 .txts.flex .catch {
		font-size: 30px;
		margin: 0;
	}
	.kodawari-item,
	.menu-lists .menu-item {
		width: 100%;
	}
	/*=================================================

					MENU

	=================================================*/
	/*=================================================

					TRIVIA

	=================================================*/
	/*=================================================

					CONTACT

	=================================================*/
	.form-item {
		flex-direction: column;
		padding: 16px 0;
	}
	.radio-btns {
		flex-direction: column;
	}
	.radio-btns .wrap + .wrap,
	.mw_wp_form .horizontal-item + .horizontal-item {
		margin-left: 0!important;
	}
	.radio-btns .radio-btns__item + span::after {
		top: 3px;
		left: 3px;
	}
	.form-item .ttl {
		margin-bottom: 16px;
	}
	.address-wrap .flex {
		flex-direction: column;
	}
	.form-policy .txt h4 {
		font-size: 15px;
	}
	.form-policy .txt {
		font-size: 12px;
	}
	.checkbox .checkbox__item + span::after {
		top: 2px;
	}
	/*=================================================

					CONTACT

	=================================================*/
	.post-wrap.single {
		flex-direction: column;
	}
	/*=================================================

					投稿

	=================================================*/
	.archive .post-wrap {
		flex-wrap: wrap;
	}
	.archive-posts {
		margin-bottom: 40px;
	}
	.pc-only {
		display: none;
	}
	.sidebar.sp-only {
		display: flex;
		width: 100%;
	}
	.sidebar.sp-only .widget {
		border-bottom: solid 1px #ccc;
		width: 100%;
	}
	.sidebar.sp-only ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-evenly;
	}
	.widget.recent-posts.sp-only {
		display: block;
		width: 100%;
		padding: 32px 0;
		border-top: solid 1px #ccc;
		/*order-bottom: solid 1px #ccc;*/
		/*margin-top: 120px;*/
	}
	.widget.recent-posts.sp-only ul {
		/*display: flex;
		flex-wrap: wrap;
		justify-content: space-between;*/
	}
	.widget.recent-posts.sp-only li {
		display: flex;
		margin-bottom: 20px;
	}
	.widget.recent-posts.sp-only li .thumb {
		width: 30%;
	}
	.widget.recent-posts.sp-only li .thumb img {
		object-fit: cover;
		height: auto;
		max-height: 114px;
	}
	.widget.recent-posts.sp-only li .detail {
		width: 70%;
		margin-left: 14px;
	}
	/*	*/
	.menu .sec_2 .ttl  {
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.menu .sec_2 .ttl .right {
		padding-top: 0;
		margin-left: auto;
	}
	.menu .sec_2 .how-to {
		flex-wrap: wrap;
	}
	.menu .sec_2 .how-to .item {
		font-size: 6vw;
	}
	.menu .sec_2 .how-to .img-wrap {
		margin: 40px auto 0 0;
	}
	.osu {
		margin: 60px auto;
	}
}
@media screen and (max-width: 500px) {
	header {
		padding: 16px 1rem;
	}
	.container {
		padding: 1rem;
	}
	.nav-menu {
		width: 100%;
		overflow-y: scroll;
	}
	footer nav {
		flex-direction: column;
	}
	.slick-arrow {
		width: 40px;
		height: 40px;
	}
	.slick-prev {
    left: 10px;
	}
	.slick-next {
    right: 10px;
	}
	.top-news::before {
		width: 100%;
	}
	.top-news + .bg {
		padding: 80px 0 50px;
	}
	.top-news + .bg img {
		width: auto;
/*		height: 50px;*/
/*		object-fit: contain;*/
/*		padding: 0 25px;*/
	}
	.top-about-us + .bg {
		padding-top: 40px;
	}
	.inview.animate__animated {
		translate: 2s;
	}
	.top-find-us.container {
		padding-right: 0;
		padding-left: 0;
	}
	.top-find-us-slide li {
		width: unset;
	}
	/*	*/
	.archive-posts .post,
	.page .trivia-posts .post {
		width: 100%;
		margin-bottom: 40px;
	}
	.page .trivia-posts .post h2 {
		font-size: 16px;
		margin-top: 0;
	}
	.archive-posts h2 {
		margin: 12px 0;
	}
	.sidebar .widget {
		font-size: 14px;
	}
	footer .center,footer .right {
		padding-left: 20px;
	}
	.hamburger .bar {
		width: 20px;
	}
	.hamburger .bar-2 {
		margin: 5px 0;
	}
	.hamburger.close .bar-1 {
		transform: translate(0, 7px) rotate(225deg);
	}
	.hamburger.close .bar-3 {
		transform: translate(0, -7px) rotate(-225deg);
	}
	.top-about-us + .bg {
		top: 0;
	}
	.top-about-us + .bg img {
		width: 100vw;
		height: 48vh;
		object-fit: cover;
	}
	.top-menu h2.ttl,
	.top-trivia h2.ttl,
	.top-find-us h2.ttl {
		margin-top: 40px;
	}
	.top-links .container {
		padding-bottom: 60px;
	}
	.top-link-bottom .view-more-btn {
		margin-top: 20px;
	}
	.top-contact .container {
		padding-bottom: 60px;
	}
	.top-contact.bg h2.ttl.wh {
		margin-bottom: 0;
	}
	footer {
		padding-top: 50px;
	}
	footer nav .left {
		margin-bottom: 40px;
	}

	.menu .sec_2 .how-to {
		flex-direction: column;
	}
	.menu .sec_2 .how-to .number {
		font-size: 46px;
		padding-top: 50px;
	}
	.menu .sec_2 .how-to .item_3 {
		order: 3;
	}
	.menu .sec_2 .how-to .img-wrap {
		order: 2;
		margin: auto;
	}
	.menu .sec_2 .how-to .item {
		font-size: 42px;
	}
	.slick-dotted.slick-slider {
		margin-bottom: 44px;
	}
	.trivia .page-kv img {
		transform: scale(1.3) translate(-5px, -10px);
		object-fit: cover;
		object-position: center;
	}
	.menu-page-title-wrap .menu-links {
		margin-top: 1em;
	}
	.menu-page-title-wrap .menu-links nav a,
	.menu-page-title-wrap .menu-links p {
		font-size: 12px;
	}
}
#page_top {
	position: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	border-radius: 25px;
	background: #ca2a2b;
	right: 4%;
	bottom: 4%;
}
#page_top::before {
	content: "";
	width: 12px;
	height: 12px;
	border-top: solid 2px #fff;
	border-left: solid 2px #fff;
	transform: translate(0,16%) rotate(45deg);
}

