/*
Theme Name: temari
Version: 1.0.0
*/
@charset "UTF-8";

/*--------------------------------------------------------------
	CSS Reset
	COMMON
	HEADER
	NAVIGATION HEADER
	NAVIGATION MOBILE
	FOOTER
	SWIPER
	FRONT PAGE
	INFORMATION/EXHIBITION PAGE
	LESSON PAGE
	ORIGINAL PAGE
	ABOUT PAGE
	CONTACT PAGE
	404 PAGE
----------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*	CSS Reset
/* -------------------------------------------------------------------------- */
html,
body {
	border: none;
	margin: 0;
	padding: 0;
}
h1, h2, h3, h4, h5, h6, p,
blockquote, address, big,
cite, code, em, font, img, small,
strike, sub, sup, li, ol, ul,
fieldset, form, label, legend, button,
table, caption, tr, th, td {
	border: none;
	font-size: inherit;
	font-weight: normal;
	line-height: inherit;
	margin: 0;
	padding: 0;
	text-align: inherit;
}
a {
	text-decoration:none; 
}
ul, li {
	list-style: none;
}
blockquote::before,
blockquote::after {
	content: "";
}
textarea {
	resize: none;
}
:focus {
	outline: none;
}

/* -------------------------------------------------------------------------- */
/*	COMMON
/* -------------------------------------------------------------------------- */
html {
	height: 100%;
	font-size: 62.5%;
}
body {
	font-size: 1.6rem;
	font-family: sans-serif;
	font-family: 'Zen Kaku Gothic New', 'Helvetica Neue', 'Helvetica', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Arial', 'Yu Gothic', 'Meiryo', sans-serif;
	line-height: 1.8;
	color: #6a6175;
	word-wrap: break-word;
	overflow-y: scroll;
	position: relative;
	animation: fadein ease-in 0.5s;
}
@keyframes fadein {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
		}
}
h1 {
	font-size: 2.6rem;
}
h2 {
	font-size: 2rem;
}
h3 {
	font-size: 1.8rem;
}
h4, h5, h6 {
	font-size: 1.6rem;
}
a {
	color: #6a6175;
	transition: all 0.4s;
}
a:hover {
	color: #d58e99;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}
input, 
select, 
textarea, 
::placeholder {
	font-family: inherit;
	border: none;
	border-radius: unset;
	-webkit-appearance: none;
}
textarea {
	display: block;
}
#body-wrapper {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}
#page {
	display: flex;
	flex-flow: column;
	width: 100%;
	min-height: 100vh;
	box-sizing: border-box;
}
#site-content {
	flex: 1;
	width: 100%;
	z-index: 1;
}
.main-content {
	max-width: 1024px;
	margin: 50px auto;
}
.page-content {
	margin: 0 20px 50px;
}
.content-wrapper {
	margin: auto;
}
.page .content-wrapper {
	max-width: 1024px;
}
.content-body {
	margin-bottom: 70px;
}
.section {
	position: relative;
	padding: 70px 100px;
}
.page-title {
	display: none;
}
.title {
	font-size: 1.2rem;
}
.content-header {
	margin-bottom: 70px;
}
.content-header-menu {
	display: flex;
	justify-content: center;
}
.content-header-link {
	display: flex;
	flex-direction: column;
	text-align: center;
	width: auto;
	margin: 0 14px;
	padding-top: 3px;
}
.sns-item {
	margin: 0 3px;
	width: 56px;
	text-align: center;
}
.sns-item a {
	display: block;
	line-height: 1;
	
}
.sns-item a:hover {
	opacity: 0.6;
}
.sns-icon-insta {
	height: 40px;
	width: auto;
}
.sns-icon {
	width: 22px;
	height: auto;
}
.wp-embedded-content {
	max-width: 100%;
}
@media screen and (max-width: 960px) {
	body {
		font-size: 1.4rem;
	}
	a {
		transition: none;
	}
	.main-content {
		margin: 0 auto 50px;
	}
	.page-content {
		margin: 0 20px;
	}
	.section {
		padding: 50px 20px 60px;
	}
	.sp-hidden {
		display: none;
	}
	.header-image {
		height: 200px;
		margin-left: 0;
	}
	.page-title {
		display: block;
		font-family: 'Josefin Sans', sans-serif;
		font-size: 2.4rem;
		line-height: 1;
		margin-bottom: 40px;
	}
	.block-fit {
		margin: 0 -20px;
	}
}

/* -------------------------------------------------------------------------- */
/*	HEADER
/* -------------------------------------------------------------------------- */
.header-sns {
	display: flex;
	justify-content: flex-end;
	padding-top: 20px;
}
.header-logo {
	text-align: center;
}
.site-logo-link:hover {
	filter: none;
}
.site-logo {
	width: 220px;
	max-width: 100%;
	height: auto;
}
.header-menu {
	margin: 70px 0 45px;
}
.logo-sp {
	margin: 15px auto 30px;
	z-index: 2;
}
.logo-sp a:hover {
	filter: none;
}

/* -------------------------------------------------------------------------- */
/*	NAVIGATION HEADER
/* -------------------------------------------------------------------------- */
.header-main {
	width: 100%;
	max-width: 1024px;
	margin: 0 auto;
	z-index: 2;
}
.menu {
	display: flex;
	justify-content: space-around;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 1.8rem;
}
.header-nav .menu-item a {
	display: block;
	line-height: 1.5;
	transition: all 0.4s;
}
.menu-item-has-children {
	position: relative;
}
.menu-item-has-children > a:hover {
	cursor: pointer;
}
.menu-item-has-children > a {
	padding-right: 12px;
}
.menu-item-has-children > a::before {
	position: absolute;
	bottom: 7px;
	content: "";
	right: 1px;
	width: 5px;
	height: 5px;
	border-top: 1px solid #1a1d7a;
	border-right: 1px solid #1a1d7a;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}
.sub-menu {
	position: absolute;
	width: max-content;
	text-align: center;
	left: 50%;
	margin: auto;
	padding: 5px 15px 15px;
	transform: translateX(-50%);
	-webkit- transform: translateX(-50%);
	visibility: hidden;
	background-color: #fff;
	opacity: 0;
	top: 50%;
	transition: all .3s;
}

/* -------------------------------------------------------------------------- */
/*	NAVIGATION MOBILE
/* -------------------------------------------------------------------------- */
.header-sp {
	display: none;
}
.mobile-nav {
	text-align: center;
	margin-top: 15px;
}
.mobile-nav .menu {
	flex-direction: column;
	font-size: 2rem;
}
.mobile-nav .menu-item {
	padding: 10px 0;
}
html.fixed body {
	overflow: hidden;
}
.drawer {
	position: fixed;
	top: 0;
	left: 0;
	z-index:999;
}
.navbar_toggle {
	padding: 20px;
	cursor:pointer;
}
.navbar_toggle_icon {
	position: relative;
	display: block;
	height: 2px;
	width: 25px;
	background: #6a6175;
	-webkit-transition: ease .5s;
	transition: ease .5s;
}
.navbar_toggle:not(.open) .navbar_toggle_icon {
	background: #6a6175;
}
.navbar_toggle_icon:nth-child(1) {
	top: 0;
}
.navbar_toggle_icon:nth-child(2) {
	margin: 5px 0;
	opacity: 1;
}
.navbar_toggle_icon:nth-child(3) {
	top: 0;
}
.navbar_toggle.open .navbar_toggle_icon:nth-child(1) {
	top: 7px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.navbar_toggle.open .navbar_toggle_icon:nth-child(2) {
	opacity: 0;
}
.navbar_toggle.open .navbar_toggle_icon:nth-child(3) {
	top: -7px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.nav-sp{
	-webkit-transition: ease .6s;
	transition: ease .5s;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	box-sizing: border-box;
	background-color: #f5f3f5;
	z-index: -1;
	opacity: 0;
}
.site-logo-sp {
	width: 150px;
}
.nav-sp.open {
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	z-index: 888;
	opacity: 1;
}
.header-sp-sns {
	display: flex;
	justify-content: center;
	padding-top: 40px;
}
@media screen and (max-width: 960px) {
	.header-main {
		display: none!important;
	}
	.header-sp {
		display: flex;
	}
}

/* -------------------------------------------------------------------------- */
/*	FOOTER
/* -------------------------------------------------------------------------- */
.footer {
	padding: 35px 50px 50px;
}
.footer-sns {
	display: flex;
	justify-content: center;
}
.footer-link div {
	margin: 3px 0;
}
.footer-menu .menu {
	flex-wrap: wrap;
	flex-direction: column;
	font-size: inherit;
	height: 120px;
}
.footer-menu .menu li {
	margin: 3px 40px 3px 0;
}
.footer-credits {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 25px;
	font-size: 1.2rem;
}
#toTop {
	display: none;
	position: fixed;
	right: 50px;
	bottom: 50px;
	cursor: pointer;
	z-index: 10;
	line-height: 1;
}
.img-to-top {
	width: 70px;
	transition: all 0.5s;
}
.img-to-top:hover {
	opacity: 0.6;
}
@media screen and (max-width: 960px) {
	.footer {
		padding: 20px;
	}
	#toTop {
		display: none!important;
	}
}

/* -------------------------------------------------------------------------- */
/*	SWIPER
/* -------------------------------------------------------------------------- */
.swiper {
	padding-bottom: 45px;
}
.swiper img {
	width: 100%;
}
.swiper-button-next {
	background: url(assets/img/img-arrow.svg) no-repeat right 10px center;
	right: 0;
}
.swiper-button-prev {
	background: url(assets/img/img-arrow.svg) no-repeat right 10px center;
	transform: rotate(180deg);
	left: 0;
}
.swiper-button-next, .swiper-button-prev {
	top: calc(50% - 16.5px);
	width: 50px;
	height: 33px;
}
.lesson .swiper-button-next, .lesson .swiper-button-prev, 
.about .swiper-button-next, .about .swiper-button-prev, 
.about-temari .swiper-button-next, .about-temari .swiper-button-prev, 
.about-workshop .swiper-button-next, .about-workshop .swiper-button-prev {
	filter: brightness(0) invert(1);
}
.swiper-button-next:after, .swiper-button-prev:after {
	content: '';
}
.swiper-pagination-bullet {
	background: #6a6175;
}

@media screen and (max-width: 960px) {
	.swiper {
		margin: 0 -20px;
		padding-bottom: 40px;
	}
}

/* -------------------------------------------------------------------------- */
/*	FRONT PAGE
/* -------------------------------------------------------------------------- */
.home section {
	max-width: 850px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 150px;
}
.home .section-information {
	max-width: 100%;
	margin-bottom: 100px;
}
.home .section-contact {
	margin-bottom: 50px;
}
.home section a {
	display: flex;
	width: fit-content;
}
.section-latest-info {
	line-height: 2;
	width: 700px;
	margin: 100px auto 150px;
	box-sizing: border-box;
}
.latest-info-item a {
	display: flex;
}
.latest-info-date {
	width: 120px;
	flex-shrink: 0;
}
.section-exhibition a, 
.section-original a, 
.section-about a {
	margin: auto;
}
.section-contact a {
	margin-left: auto;
}
.section-store a {
	margin-right: auto;
}
.img-exhibition, 
.img-original, 
.img-about {
	width: 700px;
}
.img-contact {
	width: 400px;
}
.img-store {
	width: 400px;
}
.box-image-text {
	position: relative;
}
.over-text {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 100%;
	height: 100%;
	font-size: 3.5rem;
	font-family: 'Josefin Sans', sans-serif;
	color: #fff;
	background-color: #f2dde18a;
	opacity: 0;
	transition: all 0.4s;
}
.over-text:hover {
	opacity: 1;
}

@media screen and (max-width: 960px) {
	.home .page-content {
		margin: 0;
	}
	.home section, 
	.home .section-information {
		margin-bottom: 0;
	}
	.home .page-title {
		margin: 100px 20px 40px;
	}
	.home .section-information .page-title {
		margin-top: 10px;
	}
	.home .section-store .page-title {
		margin-top: 50px;
	}
	.section-latest-info {
		width: 100%;
		padding: 0 20px;
		margin: 30px auto 100px;
	}
	.home section img {
		width: 100%;
	}
	.over-text {
		display: none;
	}
}

/* -------------------------------------------------------------------------- */
/*	INFORMATION/EXHIBITION PAGE
/* -------------------------------------------------------------------------- */
.header-post {
	padding: 0 20px;
}
.sub-category {
	display: flex;
	justify-content: center;
	font-size: 1.6rem;
	max-width: 670px;
	width: 100%;
	border: 1px solid;
	padding: 10px 0;
	margin: 0 auto 80px;
	box-sizing: border-box;
}
.sub-category a {
	display: block;
}
.sub-category-item {
	width: calc(100%/3);
	text-align: center;
	line-height: 1.4;
	padding: 5px 0;
}
.sub-category-item:not(:last-child) {
	border-right: 1px solid;
}
.sub-category-link-en {
	font-size: 1.4rem;
}
.category-news .sub-category-link.news, 
.category-event .sub-category-link.event, 
.category-media .sub-category-link.media {
	color: #d58e99;
}
.category #site-content, 
.single #site-content {
	background-color: #f5f3f5;
}
.single .content-wrapper, 
.archive .content-wrapper {
	max-width: 600px;
}
.post-title {
	line-height: 1.5;
	margin-top: 20px;
}
.single-meta {
	font-size: 1.4rem;
	margin: 10px 0 50px;
}
.separator {
	margin: 0 10px;
}
.post-categories {
	display: inline-block;
}
.category-exhibition .post-categories, 
.exhibition .post-categories, 
.category-exhibition .separator, 
.exhibition .separator {
	display: none;
}
.post-categories li:not(:first-child) {
	display: none;
}
.wp-post-image {
	margin-bottom: 30px;
}
.article {
	display: flow-root;
	word-break: break-all;
	margin-bottom: 30px;
	padding-bottom: 50px;
}
.archive .article {
	padding-bottom: 100px;
	border-bottom: 1px solid;
}
.article img {
	margin: 1em 0 1.5em;
}
.article img.aligncenter {
	display: block;
	margin-right: auto;
	margin-left: auto;
}
.pagination {
	font-family: 'Josefin Sans', sans-serif;
	text-align: center;
}
.page-numbers {
	margin: 0 0.2em;
	padding: 5px;
}
.page-numbers:hover {
	color: #993847;
}
.page-numbers.current {
	color: #993847;
	border-bottom: 1px solid #6a6175;
}
.img-arrow {
	height: 23px;
}
.page-numbers.prev {
	margin: 0 10px 0 0;
}
.page-numbers.next {
	margin: 0 0 0 10px;
}
.prev .img-arrow {
	transform: rotate(180deg);
}
.month-archive {
	letter-spacing: 0.02em;
	text-align: center;
	border: 1px solid;
	padding: 1.5em 0;
	margin-top: 130px;
}
.month-archive-list {
	display: flex;
	flex-wrap: wrap;
	width: 240px;
	margin: auto;
}
.month-archive-list a {
	width: 80px;
	margin: 2px 0;
}
.posts-link {
	font-family: 'Josefin Sans', sans-serif;
	display: flex;
	justify-content: space-between;
}
.posts-link-prev .img-arrow {
	transform: rotate(180deg);
	margin: 0 10px 5px 0;
}
.posts-link-next .img-arrow {
	margin: 0 0 5px 10px;
}
.wp-block-embed__wrapper {
	width: 100%;
	aspect-ratio: 16 / 9;
}
.wp-block-embed__wrapper iframe {
	width: 100%;
	height: 100%;
}
@media screen and (max-width: 960px) {
	.sub-category {
		max-width: 300px;
	}
}

/* -------------------------------------------------------------------------- */
/*	LESSON PAGE
/* -------------------------------------------------------------------------- */
.block-head-slide {
	margin-bottom: 40px;
}
.lesson-item {
	margin-bottom: 50px;
}
.lesson-header {
	margin-bottom: 50px;
	border-bottom: 1px solid;
}
.lesson-category {
	font-size: 2rem;
	line-height: 1.4;
}
.lesson-title {
	font-size: 2.6rem;
	margin-bottom: 15px;
}
.lesson-attention {
	color: #993847;
}
.lesson-content {
	padding-bottom: 50px;
}
.toggle-button {
	position: relative;
	cursor: pointer;
	padding-top: 50px;
}
.toggle-button.open:before {
	transform: rotate(-45deg);
}
.toggle-button:before {
	display: block;
	content: '';
	position: absolute;
	bottom: 10px;
	right: 5px;
	width: 20px;
	height: 20px;
	border-right: solid 1px;
	border-top: solid 1px;
	transform: translateY(-55%) rotate(135deg);
	transition: transform .5s ease-in-out, top .5s ease-in-out;
}
.toggle-content .toggle-content-child {
	display: none;
}
.article-lesson figure {
	margin: 1.5em 0;
}
@media screen and (max-width: 960px) {
	.lesson-title {
		font-size: 2rem;
	}
}

/* -------------------------------------------------------------------------- */
/*	ORIGINAL PAGE
/* -------------------------------------------------------------------------- */
.original-list {
	margin-bottom: 200px;
}
.block-original-img {
	margin-bottom: 80px;
}
.original-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}
.original-link {
	flex-shrink: 0;
}
.original-list .about-title {
	margin-right: 15px;
}
.original-list .about-subtitle {
	margin-bottom: 0;
}
.img-cart {
	width: 25px;
	margin-right: 5px;
	transition: all 0.4s;
}
.img-cart:hover {
	opacity: 0.6;
}
.original-description {
	font-family: 'Shippori Mincho', serif;
	margin-bottom: 130px;
}
.original-description-en {
	margin-top: 20px;
}
@media screen and (max-width: 960px) {
	.block-original-img {
		margin-left: -20px;
		margin-right: -20px;
	}
	.original-header {
		align-items: flex-start;
	}
	.original-title {
		display: flex;
		flex-direction: column;
	}
	.img-cart {
		margin-top: 10px;
	}
	.original-description {
		margin-bottom: 100px;
	}
}

/* -------------------------------------------------------------------------- */
/*	ABOUT PAGE
/* -------------------------------------------------------------------------- */
.about-content {
	font-family: 'Shippori Mincho', serif;
	margin-bottom: 100px;
}
.about-content .main-content {
	margin-top: 0;
}
.about-content .sub-category {
	max-width: 770px;
}
.about .sub-category-link.about, 
.about-temari .sub-category-link.about-temari, 
.about-workshop .sub-category-link.about-workshop {
	color: #d58e99;
}
.about-title {
	font-size: 2.6rem;
}
.about-subtitle {
	font-size: 2rem;
	margin-bottom: 30px;
}
.block-about-message {
	max-width: 750px;
	margin: 0 auto 200px;
}
.about-text p {
	margin-bottom: 1.5em;
}
.about-profile-header {
	display: flex;
	justify-content: space-between;
	margin-bottom: 40px;
}
.about-profile-header-text {
	margin: 100px 0 0 117px;
}
.about-profile-header-img img {
	height: 600px;
}
.about-profile-content {
	max-width: 750px;
	margin: 0 auto 100px;
}
.about-profile-text {
	display: flex;
	margin-bottom: 50px;
}
.about-profile-text-left {
	flex-shrink: 0;
	width: 180px;
}
.about-profile-text-title {
	font-size: 2.2rem;
}
.about-profile-text-subtitle {
	font-size: 1.2rem;
	letter-spacing: 0.35em;
}
.about-temari-title {
	font-size: 3.1rem;
	text-align: center;
	margin-bottom: 90px;
}
.four-things {
	font-size: 1.8rem;
	margin-bottom: 100px;
}
.four-things-title {
	font-size: 5rem;
}
.block-four-things-1 .four-things-title {
	padding-left: 117px;
}
.block-four-things-2 .four-things-title {
	padding-left: 400px;
}
.four-things-img {
	padding-top: 12px;
}
.block-four-things-1 .four-things-img {
	padding-left: 50px;
}
.block-four-things-2 .four-things-img {
	padding-right: 50px;
}
.block-four-things-1 .four-things-text {
	padding-left: 117px;
}
.block-four-things-2 .four-things-text {
	padding-right: 117px;
}
.four-things-set {
	display: flex;
	margin-bottom: 50px;
}
.four-things-img {
	flex-shrink: 0;
}
.four-things-img img {
	width: 350px;
}
.block-about-chronology {
	max-width: 750px;
	margin: 0 auto 200px;
}
.chronology-header {
	border-bottom: 1px solid;
	padding-bottom: 3px;
	margin-bottom: 20px;
}
.chronology-item {
	display: flex;
	word-break: break-all;
	padding-bottom: 2px;
}
.chronology-year {
	width: 105px;
	flex-shrink: 0;
}
@media screen and (max-width: 960px) {
	.about .sub-category, 
	.about-temari .sub-category, 
	.about-workshop .sub-category {
		flex-direction: column;
		padding: 0 10px;
	}
	.about .sub-category-item, 
	.about-temari .sub-category-item, 
	.about-workshop .sub-category-item {
		width: 100%;
		border-right: none;
		padding: 13px 0;
	}
	.about .sub-category-item:not(:last-child), 
	.about-temari .sub-category-item:not(:last-child), 
	.about-workshop .sub-category-item:not(:last-child) {
		border-bottom: 1px solid;
	}
	.about-title {
		font-size: 2.2rem;
	}
	.about-subtitle {
		font-size: 1.8rem;
	}
	.block-about-message {
		margin: 0 auto 150px;
	}
	.about-profile-header {
		flex-direction: column;
	}
	.about-profile-header-text {
		margin: 0;
	}
	.about-profile-header-img {
		text-align: center;
		padding: 0 30px;
	}
	.about-profile-header-img img {
		width: 100%;
		max-width: 500px;
		height: auto;
	}
	.about-profile-text {
		flex-direction: column;
	}
	.about-profile-text-left {
		margin-bottom: 30px;
	}
	.four-things-title {
		padding-left: 0!important;
	}
	.block-four-things-1 .four-things-set {
		flex-direction: column-reverse;
	}
	.block-four-things-2 .four-things-set {
		flex-direction: column;
	}
	.four-things-text {
		padding: 0!important;
	}
	.four-things-img {
		margin: auto;
		padding: 0 30px 35px!important;
	}
	.four-things-img img {
		max-width: 500px;
		width: 100%;
	}
	.chronology-year {
		width: 90px;
	}
}

/* -------------------------------------------------------------------------- */
/*	CONTACT PAGE
/* -------------------------------------------------------------------------- */
.section-title {
	font-size: 22px;
	margin-bottom: 40px;
}
.section-title-jp {
	margin-right: 20px;
}
.wpcf7 {
	margin-bottom: 150px;
}
input, select {
	width: calc(50% - 20px);
}
input, textarea {
	font-size: 1.6rem;
	padding: 10px;
	margin: 50px 0 10px;
}
input[type="text"], 
input[type="email"] {
	border-bottom: 1px solid #6a6175;
}
input[type="submit"] {
	cursor: pointer;
	color: #6a6175;
	border: 1px solid #6a6175;
	padding: 10px;
	background-color: #fff;
	transition: all 0.4s;
}
input[type="submit"]:hover {
	background-color: #f5f3f5;
}
textarea {
	border: 1px solid #6a6175;
	width: 100%;
	box-sizing: border-box;
}
select {
	font-size: 1.6rem;
	color: #6a6175;
	background-color: unset;
	border: 1px solid #6a6175;
	padding: 10px;
	margin-bottom: 10px;
}
::placeholder {
	color: #888191;
}
.label-recaptcha {
	margin: 20px 0 10px;
	font-size: 0.8em;
}
.wpcf7-spinner {
	display: none;
}
.wpcf7-not-valid-tip {
	color: #ff1d25;
	padding: 0 10px;
}
.contact-name-email {
	display: flex;
	width: 100%;
	justify-content: space-between;
}
.contact-name-email .text-contact {
	width: calc(50% - 20px);
}
.contact-name-email .text-contact input {
	width: 100%;
	box-sizing: border-box;
}
.wpcf7 form .wpcf7-response-output {
	color: #ff1d25;
	border: unset;
	padding: 0;
	margin: 0 0 30px;
}
.grecaptcha-badge {
	visibility: hidden;
}
.block-map iframe {
	width: 100%;
	aspect-ratio: 16/9;
	margin: 50px 0 150px;
}
.title-area {
	margin-bottom: 20px;
}
.stockist-item {
	margin-bottom: 30px;
}
@media screen and (max-width: 960px) {
	.section-title-jp {
		display: none;
	}
	input, select {
		width: 100%;
	}
	.contact-name-email {
		flex-direction: column;
	}
	.contact-name-email .text-contact {
		width: 100%;
	}
}

/* -------------------------------------------------------------------------- */
/*	404 PAGE
/* -------------------------------------------------------------------------- */
.page-not-found {
	text-align: center;
	padding: 200px 0 100px;
}
