@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

:root {
	--text-color: #222222;
	
	--cnt-width: 1100px;
	--base-width: 1100px;
	--side-space: 40px; /* 左右30pxずつ */
	
	--space-xl12: 12.0rem;
	--space-xl: 9.6rem;
	--space-l: 8.0rem;
	--space-m: 6.0rem;
	--space-s: 4.0rem;
	--space-xs: 3.2rem;

	--ft-size18: 1.8rem;
	--ft-size20: 2.0rem;
	--ft-size22: 2.2rem;
	--ft-size24: 2.4rem;
	--ft-size25: 2.5rem;
	--ft-size26: 2.6rem;
	--ft-size28: 2.8rem;
	--ft-size30: 3.0rem;
	--ft-size34: 3.4rem;
	--ft-size36: 3.6rem;
	--ft-size42: 4.2rem;
	--ft-size48: 4.8rem;
}

/* Default Style */
body {
	background-color: #fff;
	line-height: 1;
	font-family: "Noto Sans JP", sans-serif; /*全体の書体を指定する*/
	font-style: normal;
	font-weight: 400;
	font-size: 1.6rem; /*全体のフォントサイズは16pxとする*/
	color: var(--text-color);
}

/* Default Link Style */
a {
	text-decoration: none;
	color: inherit;
	transition: 0.2s;
}

a:hover {
	opacity: .8;
}

/* common */
body.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
}

#wrapper {
	width: 100%; /*全ての要素を包括する<div id"wrap">の幅を画面幅に設定する*/
	margin: 0 auto;
}

/* header ---------------------------------------- */
/* ヘッダー */
header {
	position: fixed;
	top: 0;
	width: 100%;
	padding: 0;
	background-color: rgba(255, 255, 255, 1.0);
	transform: none;
	transition: all;
	transition-delay: 0s;
	transition-duration: .5s;
	transform-origin: center top;
	z-index: 100;
}

header.close {
	opacity: 0;
	transform: perspective(300px) rotateX(-90deg);
}

.header-inner {
	position:relative;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	width: 100%;
	height: 98px;
	margin: 0 auto;
	padding: 3.0rem 8.2rem 3.0rem 2.0rem;
}

.site-logo {
	margin-right: 2.0rem;
}

ul.head-module {
	display: flex;
	margin: 0 0 0 auto;
	gap: 1.0rem;
}

ul.head-module li a {
	display: flex;
	align-items: center;
	padding: 0.8rem 3.0rem 1.0rem;
	border-radius: 99em;
	line-height: 1;
	font-weight: 700;
	font-size: 1.8rem;
	gap: 0.5rem;
}

ul.head-module li.shop a {
	background-color: #BF0001;
	color: #FFFFFF;
}

ul.head-module li.shop a::after {
	content: "";
	width: 18px;
	height: 18px;
	background: url("../images/icon_external.svg") no-repeat 50% 50% / contain;
	flex-shrink: 0;
}

ul.head-module li.contact a {
	background-color: #E0FF33;
}

/* ヘッダーナビ */
#nav-btn {
	display:block;
}

#header-nav {
	display: block;
	position: fixed;
	top: 98px;
	left: 0;
	width: 100%;
	height: 0;
	z-index: 1;
	background-color: rgba(204, 204, 204, 0.85);
	opacity: 0.5;
	transition: 0.2s;
}

header.open .header-inner {
	border-radius: 0;
	transition: 0.2s;
}

header.open #header-nav {
	height: 100%;
	opacity: 1;
}

#menu-header-nav {
	display: block;
	width: 100%;
	height: calc(100% - 98px);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

#menu-header-nav .nav-inner {
	width: 100%;
	line-height: 1.4;
	padding: 0 2.0rem 4.0rem;
	background-color: #FFFFFF;
}

.nav-inner > ul {
	border: 1px solid var(--text-color);
	border-radius: 14px;
	background-color: #F6F6F6;
}

.nav-inner > ul > li > a {
	display: block;
	padding: 1.8rem 2.0rem;
	text-align: center;
	font-weight: 700;
	font-size: 1.6rem;
}

.nav-inner > ul > li {
	border-bottom: 1px solid var(--text-color);
}

.nav-inner > ul > li:last-of-type {
	border-bottom: 0;
}

#nav-btn {
	position: absolute;
	top: 50%;
	right: 14px;
	width: 48px;
	height: 48px;
	margin: 0;
	padding: 12px 6px;
	border: 0;
	cursor: pointer;
	transform: translateY(-50%)
}

#nav-btn button {
  position: relative;
	display: block;
  width: 36px;
  height: 24px;
  margin: 0 auto;
	padding: 0;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
  cursor: pointer;
}

#nav-btn span {
  display: block;
  position: absolute;
  height: 4px;
  width: 50%;
  background: var(--text-color);
  opacity: 1;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

#nav-btn span:nth-child(even) {
  left: 50%;
  border-radius: 0 4px 4px 0;
}

#nav-btn span:nth-child(odd) {
  left: 0;
  border-radius: 4px 0 0 4px;
}

#nav-btn span:nth-child(1), #nav-btn span:nth-child(2) {
  top: 0;
}

#nav-btn span:nth-child(3), #nav-btn span:nth-child(4) {
  top: 10px;
}

#nav-btn span:nth-child(5), #nav-btn span:nth-child(6) {
  top: 20px;
}

header.open #nav-btn span:nth-child(1),header.open #nav-btn span:nth-child(6) {
  transform: rotate(45deg);
}

header.open #nav-btn span:nth-child(2),header.open #nav-btn span:nth-child(5) {
  transform: rotate(-45deg);
}

header.open #nav-btn span:nth-child(1) {
  left: 3px;
  top: 4px;
}

header.open #nav-btn span:nth-child(2) {
  left: calc(50% - 3px);
  top: 4px;
}

header.open #nav-btn span:nth-child(3) {
  left: -50%;
  opacity: 0;
}

header.open #nav-btn span:nth-child(4) {
  left: 100%;
  opacity: 0;
}

header.open #nav-btn span:nth-child(5) {
  left: 3px;
  top: 16px;
}

header.open #nav-btn span:nth-child(6) {
  left: calc(50% - 3px);
  top: 16px;
}

/* footer ---------------------------------------- */
footer {
	width: 100%;
	background-color: #F5F5F5;
	color: var(--text-color);
}

/* サイトロゴ */
footer .inner {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: flex-start;
	width: min(calc(100% - var(--side-space)),var(--cnt-width));
	margin: 0 auto;
	padding: 32px 0;
	gap: 30px 20px;
}

footer > .inner > dl {
	font-size: 1.5rem;
}

footer > .inner > dl dt {
	margin-bottom: 10px;
	font-weight: 700;
	font-size: 2.4rem;
}

footer > .inner > dl dd {
	font-weight: 500;
	line-height: 1.73;
	font-feature-settings:"palt";
}

footer > .inner > dl dd span {
	display: inline-block;
}

/* フッターナビ */
#menu-footer-nav.menu {
}

#menu-footer-nav.menu ul:nth-of-type(1) {
	display: flex;
	gap: 4.0rem;
}

#menu-footer-nav.menu ul:nth-of-type(1) a {
	line-height: 1.73;
	font-feature-settings:"palt";
	font-weight: 600;
	font-size: 1.5rem;
}

#menu-footer-nav.menu ul:nth-of-type(2) {
	display: flex;
	justify-content: flex-end;
	margin-top: 15px;
	gap: 2.0rem;
}

#menu-footer-nav.menu ul:nth-of-type(2) a {
	line-height: 1.73;
	font-feature-settings:"palt";
	font-weight: 400;
	font-size: 1.4rem;
}

#menu-footer-nav.menu a[target="_blank"] {
	display: flex;
	align-items: center;
	gap: 1.0rem;
}

#menu-footer-nav.menu a[target="_blank"]::after {
	content: "";
	width: 15px;
	height: 15px;
	background: url("../images/icon_external_blk.svg") no-repeat 50% 50% / contain;
	flex-shrink: 0;
}

footer .inner > p {
	width: 100%;
	text-align: right;
	font-weight: 400;
	font-size: 1.2rem;
}

/* ページトップへ
#pageTop {
	position: fixed;
	right: 20px;
	bottom: -80px;
	line-height:0;
	z-index:8;
}


#pageTop a {
	display:block;
	width: 34px;
	height: 34px;
	padding: 0 0 2px;
	border: 1px solid #ffffff;
	border-radius: 4px;
	background-color: #15588e;
	text-align: center;
	line-height: 33px;
	font-size: 25px;
	color: #ffffff;
}
*/

/* content ---------------------------------------- */
.breadcrumb {
	width: 100%;
}

.breadcrumb ul {
	display: flex;
	width: min(calc(100% - var(--side-space)),var(--base-width));
	margin: 0 auto;
}

.breadcrumb ul li {
	display: flex;
	padding: 1rem 0;
	font-size: 1.6rem;
}

.breadcrumb ul li:nth-of-type(n+2)::before {
	content: ">";
	padding: 0 1rem;
	color: var(--main-color);
}

.breadcrumb ul li > a,
.breadcrumb ul li > span {
	display: block;
	color: var(--main-color);
}

.breadcrumb ul li > a:hover {
	text-decoration: underline;
}

.container {
	margin-top: 98px;
}

.contents {
}

.contents main {
	width: 100%;
	margin: 0 auto;
}

/* コンテンツ幅設定 ---- */
.width-base {
}

.width-base > * {
	width: min(calc(100% - var(--side-space)),var(--base-width));
	margin: 0 auto;
}

.width-fix {
	width: min(calc(100% - var(--side-space)),var(--base-width));
	margin: 0 auto;
}

.width-full {
}

.width-full > * {
}

.width-bg {
}

.width-bg > * {
}

.disp-none {
	display: none;
}

.link-wrap {
	cursor: pointer;
}

/* 定型 */
.mt1rem { margin-top: 1rem !important; }
.mt2rem { margin-top: 2rem !important; }
.mt-m { margin-top: var(--space-m) !important; }
.mb-xl { margin-bottom: var(--space-xl) !important; }


/* 汎用ボタン */
.wp-block-buttons {
	margin-top: var(--space-xs);
	margin-bottom: var(--space-xs);
}

.wp-block-button {
	position: relative;
	margin: 0;
	padding: 0;
	border-radius: 99em;
	border-bottom: 3px solid #D6D7D7;
	line-height: 1;
}

.wp-block-button.btn-wide,
.wp-block-button.has-icon {
	width: min(100%, 420px);
}

.wp-block-button.has-icon a::before {
	content: "";
	width: 30px;
	height: 30px;
	margin: 0.3rem 1.4rem 0 0;
	flex-shrink: 0;
}

.wp-block-button::after {
	content: "";
	display: block;
	position: absolute;
	right: 2.2rem;
	top: 50%;
	width: 20px;
	height: 20px;
	margin: auto;
	background: url("../images/icon_cl_arrow_blk.svg") 50% 50% no-repeat;
	transform: translateY(-50%);
	transition: all .2s;
	z-index: 1;
}

.wp-block-button.icon-cl-blu::after {
	background: url("../images/icon_cl_arrow_blu.svg") 50% 50% no-repeat;
}


.wp-block-button:hover::after {
	right: 1.4rem;
}

.wp-block-button a.wp-block-button__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 1.6rem 6.0rem 1.8rem 4.0rem;
	border-radius: 99em;
	border: 1px solid #999A9A;
	background-color: #FFFFFF;
	text-decoration: none;
	font-weight: 700;
	font-size: var(--ft-size18);
	color: #444444;
}

.wp-block-button:hover a.wp-block-button__link {
	opacity: 1;
	color: var(--main-color);
}

/* ページ下部のCONTACT */
.contact-parts {
	padding: var(--space-s) 0;
	background-color: #d8edf6;
}

.contact-parts h2 {
	display: flex;
	align-items: center;
	width: fit-content;
  margin: 0 auto 1rem auto;
	font-weight: 500;
	font-size: var(--ft-size30);
	gap: 0.5em;
}

.contact-parts h2::before {
	content: "";
	background: url("../images/cmn_mail_wht.svg") 50% 50% no-repeat;
	background-color: var(--main-color);
	border-radius: 99em;
	width: 2em;
	height: 2em;
	display: inline-block;
}

.contact-parts > div > p {
	text-align: center;
}

.contact-parts .wp-block-columns {
	margin-top: var(--space-xs);
}

.contact-parts .wp-block-columns .wp-block-column:nth-of-type(1) p {
	width: fit-content;
	margin-left: auto;
	text-align: center;
}

.contact-parts .wp-block-columns .wp-block-column:nth-of-type(2) {
	display: flex;
	align-items: end;
}

.contact-parts .wp-block-buttons {
	margin-top: 0;
	margin-bottom: 0;
}

.contact-parts .wp-block-button::after {
	content: none;
}

.contact-parts .wp-block-button a {
	/*width: fit-content;*/
	width: 310px;
	padding: 1.4rem 4rem;
	background-color: #1aa1e5;
	border: none;
	border-radius: 0;
	font-size: var(--ft-size18);
	font-weight: 500;
	color: #ffffff;
}

.contact-parts .wp-block-button:hover a {
	color: #ffffff;
}

.contact-parts .wp-block-button a::before {
	content: "";
	display: inline-block;
	width: 1.45em;
	height: 1em;
	margin-right: 0.5em;
	background: url("../images/cmn_mail_wht.svg") 50% 50% no-repeat;
	background-size: contain;
}

/* ページネーション */
div.pagination:has(ul.page-numbers) {
	margin-top: var(--space-m);
}

ul.page-numbers {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	gap: 1.2rem;
}

ul.page-numbers li a,
ul.page-numbers li span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	padding-bottom: 2px;
	border: 2px solid #CCCCCC;
	background-color: #FFFFFF;
	border-radius: 50%;
	line-height: 1;
	color: var(--main-color);
}

ul.page-numbers li a.next,
ul.page-numbers li a.prev {
	padding-bottom: 6px;	
}

ul.page-numbers li span.current {
	border: 2px solid var(--text-color);
	background-color: var(--text-color);
	font-weight: 600;
	color: #FFFFFF;	
}

/* ================================================ */
@media (min-width: 1001px) {
}

/* ================================================ */
@media (max-width: 1000px) {

footer > .inner {
	display: flex;
	flex-flow: column nowrap;
	align-items: center;
	justify-content: center;
	gap: 40px;
}

footer > .inner > dl {
	display: flex;
	flex-flow: column nowrap;
	align-items: center;
	order: 2;
}

footer > .inner > dl dd {
	text-align: center;
}

#menu-footer-nav.menu {
	order: 1;
}

#menu-footer-nav.menu ul:nth-of-type(1) {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	gap: 1.5rem 2.4rem;
}

#menu-footer-nav.menu ul:nth-of-type(2) {
	flex-flow: row wrap;
	justify-content: center;
}

footer .inner > p {
	text-align: center;
	order: 3;
}

}

/* ================================================ */
@media (max-width: 768px) {

:root {
	--side-space: 40px; /* 左右20pxずつ */

	--space-xl12: 9.6rem;
	--space-xl: 8.0rem;
	--space-l: 6.8rem;
	--space-m: 4.6rem;
	--space-s: 3.2rem;
	--space-xs: 2.4rem;
}

.header-inner {
	height: 80px;
	padding: 2.4rem 8.2rem 2.4rem 2.0rem;
}

#header-nav {
	top: 80px;
}

/* footer ---------------------------------------- */

/* content --------------------------------------- */
.container {
	margin-top: 80px;
}
}

/* ================================================ */
@media (max-width: 640px) {

:root {
	--ft-size42: 3.2rem;
	--ft-size48: 3.6rem;
}

ul.head-module {
	flex-shrink: 0;
}

ul.head-module li a {
	display: flex;
	align-items: center;
	padding: 0.8rem 1.4rem 1.0rem;
	border-radius: 99em;
	line-height: 1;
	font-weight: 600;
	font-size: 1.3rem;
	gap: 0.5rem;
}

ul.head-module li.shop a::after {
	width: 12px;
	height: 12px;
}

}

/* ================================================ */
@media (max-width: 480px) {

.header-inner {
	padding: 1.0rem 8.2rem 1.0rem 2.0rem;
}

.site-logo {
	margin-right: 1.0rem;
}

ul.head-module {
	flex-flow: column nowrap;
}

}