@charset "UTF-8";
/*--------------------------------------------------------------
reset.min.css
リセット関係・clearfixなど

fonts.min.css
フォントアイコンを記載したcss

common.css
レイアウト、TOPのスタイルを記載したcss

sub.css
下層のレイアウトを記載したcss
--------------------------------------------------------------*/
/* fontIcon
:before,
:after {
	content: "\f099";
	font-family: "icomoon";
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	font-weight: 900;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
}
/* ------------------------------------------------------------ */
/* 全デバイス/画面サイズに共通 かつ
　　479：スマートフォン縦：基本・レイアウト指定 */
/* ------------------------------------------------------------ */
* html body {
	background: url(null) fixed;
}
html {
	width: 100%;
	font-size: 62.5%;
	overflow-x: hidden;
}
/*ナビ表示のときはスクロールしないように*/
html.is-locked {
	overflow-y: hidden;
}
body {
	width: 100%;
	margin: 0;
	padding: 0;
	background: #fff;
	color: #000;
	font-size: 16px;
	line-height: 1.8;
	font-weight: 400;
	font-style: normal;
	font-family: "Noto Sans JP", YuGothic, "Yu Gothic Medium", "Yu Gothic", -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, Verdana, Meiryo, sans-serif;
	overflow-wrap: break-word;
	text-size-adjust: 100%;
	font-feature-settings: "palt";
	letter-spacing: 1.6px;
}

.wrapper {
	width: 100%;
	height: auto;
	margin: 0 auto;
	overflow: hidden;
}

.pc {
	display: none;
}
@media (min-width: 751px) {
	/*電話番号リンクをスマホのみ有効にする*/
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}
}
/* ------------------------------------------------------------ */
/* font */
/* ------------------------------------------------------------ */
.main-ttl,
.archivo {
	font-family: "Archivo Black", "Noto Sans JP", sans-serif;
}

.link-phone,
.link-dial,
.mv-date,
.link-num,
.lato {
	font-family: "Lato", "Noto Sans JP", sans-serif;
}
/* ------------------------------------------------------------ */
/* color */
/* ------------------------------------------------------------ */
.clr_ylw {
	color: #fff38e;
}
.clr_blue {
	color: #0093cb;
}
.bg_ylw {
	background-color: #fff38e;
}
.bg_lightylw {
	background-color: #fdfbde;
}
.bg_lightgray {
	background-color: #efefef;
}
.bg_gray {
	background-color: #dcdddd;
}
.bg_blue {
	background-color: #0093cb;
}
/* ------------------------------------------------------------ */
/* img */
/* ------------------------------------------------------------ */
.main-logo,
.thum,
.image,
.bnr,
.banner {
	margin: 0 auto;
	text-align: center;
}
/* ------------------------------------------------------------ */
/* link */
/* ------------------------------------------------------------ */
::selection {
	color: #383838;
	background: rgba(0, 0, 0, 0.1);
	text-shadow: none;
}
::-moz-selection {
	color: #383838;
	background: rgba(0, 0, 0, 0.1);
	text-shadow: none;
}
a {
	color: #000;
	cursor: pointer;
	line-height: inherit;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	text-decoration: none;
}
a:link,
a:visited,
a:active {
	color: #000;
	text-decoration: none;
}
a:hover {
	color: #0093cb;
	text-decoration: none;
}

.more a,
a.more {
	display: inline-block;
	text-align: center;
	padding: 0.5em 1.5em;
	font-size: 1.3rem;
	border-radius: 60px;
	border: 1px solid #fff;
	background-color: rgba(255, 244, 142, 0);
	color: #fff;
	position: relative;
}
.more a:hover,
a.more:hover {
	border: 1px solid #fff38e;
	background-color: rgba(255, 244, 142, 1);
	color: #000;
}

.more-arw {
	display: inline-block;
	text-align: center;
	font-size: 1.3rem;
	padding: 0.5em 4rem 0.5em 1em;
	position: relative;
}
.more-arw::before {
	content: "";
	display: block;
	width: 8px;
	height: 1px;
	background-color: #000;
	position: absolute;
	top: 45%;
	right: 0;
	/* right: 0;
	transform: rotate(40deg); */
	transform: translateX(0) rotate(40deg);
	-webkit-transition: transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out;
}
.more-arw::after {
	content: "";
	display: block;
	width: 32px;
	height: 1px;
	background-color: #000;
	position: absolute;
	top: 52%;
	right: 0;
	transform-origin: left center;
	-webkit-transition: transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out;
	/* transform: translateY(-50%); */
	/* -webkit-transition: width 0.3s ease-in-out;
	transition: width 0.3s ease-in-out; */
}
/* .more-arw:hover {
	padding: 0.5em 5.5rem 0.5em 1em;
} */
.more-arw:hover::before {
	transform: translateX(1rem) rotate(40deg);
}
.more-arw:hover::after {
	/* width: 40px; */
	transform: scaleX(1.3);
}
/* ------------------------------------------------------------ */
/* btn */
/* ------------------------------------------------------------ */
.btn {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	min-width: 280px;
	max-width: 370px;
	height: auto;
	margin: 0 auto;
	/* padding: 0 5px 5px 0; */
	text-align: center;
	position: relative;
	z-index: 1;
	/* pointer-events: none; */
	/* 子要素ホバーで親要素にも適用 */
}
.btn a,
.load-more {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
	color: #000;
	background-color: #fff;
	border: 1px solid #000;
	margin: 0 auto;
	padding: 12px 1em;
	font-size: 1.5rem;
	font-weight: 700;
	position: relative;
	z-index: 2;
	transform: translate(-5px, -5px);
	/* pointer-events: auto;  */
	/* 子要素ホバーで親要素にも適用 */
}
.load-more {
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.btn::after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: #000;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 1;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.btn-ylw a {
	background-color: #fff38e;
}
.btn-wht a {
	color: #fff;
	background: url(../img/top/bg-delivery.jpg) no-repeat center center / cover;
	border: 1px solid #fff;
}
.btn-wht::after {
	background: #fff;
}
.togo-shoji .btn a {
	background-color: #fff100;
}

/* .btn:hover {
	padding: 0;
} */
.btn a:hover,
.load-more:hover {
	transform: translate(0, 0);
	background-color: #fff38e;
}
.togo-shoji .btn a:hover,
.togo-shoji .load-more:hover {
	background-color: #fff100;
}

.btn-round {
	padding: 0;
}
.btn-round::after {
	display: none;
}
.btn-round a {
	border-radius: 10px;
	transform: none;
}
.btn-pager {
	width: 100%;
}
.btn-pager::after {
	display: none;
}
.btn-pager .load-more {
	border-radius: 10px;
	border-width: 2px;
	background-color: #fff38e;
	transform: none;
	position: relative;
}
.btn-pager .load-more:hover {
	opacity: 0.8;
}
.load-more::after {
	content: "\f078";
	display: inline-block;
	font-family: "icomoon";
	font-style: normal;
	font-variant: normal;
	font-weight: 900;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	/* vertical-align: middle; */
	/* margin: 0 0 0 2rem; */
	line-height: 1;
	position: absolute;
	top: 50%;
	right: 3rem;
	transform: translateY(-50%);
}
.btn-box {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.btn-box .btn {
	width: 100%;
	min-width: inherit;
	margin: 1rem auto;
}

/* ------------------------------------------------------------ */
/* header */
/* ------------------------------------------------------------ */
.main-header {
	width: 100%;
	height: auto;
	background: rgba(255, 255, 255, 1);
	padding: 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 11;
	/* スマホ用の慣性スクロール */
	-webkit-overflow-scrolling: touch;
}
.main-header .main-logo {
	width: 80%;
	line-height: 1;
	margin: 0;
}
.togo-shoji .main-header .main-logo {
	/*width: 30%;*/
	width: 80%;
}
.main-logo a {
	display: block;
	width: 100%;
	height: 100%;
}

/* hamburger */
.hamburger {
	width: 24px;
	height: 24px;
}
.hamburger button {
	min-height: inherit;
	position: relative;
	width: 100%;
	height: 100%;
	outline: none;
	padding: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.hamburger span {
	height: 2px;
	width: 100%;
	display: block;
	position: relative;
}
.hamburger span::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: #000;
}

.hamburger span:first-of-type {
	margin-bottom: 4px;
	-webkit-transition: margin 0.25s cubic-bezier(0.215, 0.61, 0.355, 1) 0s, transform 0.25s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
	transition: margin 0.25s cubic-bezier(0.215, 0.61, 0.355, 1) 0s, transform 0.25s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
}
.hamburger span:nth-of-type(2) {
	-webkit-transition: transform 0.25s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
	transition: transform 0.25s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
}
.hamburger span:nth-of-type(3) {
	margin-top: 4px;
	-webkit-transition: margin 0.25s cubic-bezier(0.215, 0.61, 0.355, 1) 0s, transform 0.25s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
	transition: margin 0.25s cubic-bezier(0.215, 0.61, 0.355, 1) 0s, transform 0.25s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
}
.is-open .hamburger span:first-of-type {
	transform: rotate(45deg);
	margin-bottom: 0;
	position: absolute;
	top: 50%;
}
.is-open .hamburger span:nth-of-type(2) {
	transform: scale(0);
}
.is-open .hamburger span:nth-of-type(3) {
	transform: rotate(-45deg);
	margin-top: 0;
	position: absolute;
	top: 50%;
}

.hamburger:hover span:first-of-type::before {
	-webkit-animation: hamburger-line 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
	animation: hamburger-line 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.hamburger:hover span:nth-of-type(2)::before {
	-webkit-animation: hamburger-line 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.125s;
	animation: hamburger-line 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.125s;
}
.hamburger:hover span:nth-of-type(3)::before {
	-webkit-animation: hamburger-line 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
	animation: hamburger-line 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
}

@-webkit-keyframes hamburger-line {
	0% {
		transform: scale(1);
		transform-origin: right center;
	}
	50% {
		transform: scaleX(0);
		transform-origin: right center;
	}
	50.1% {
		transform: scaleX(0);
		transform-origin: left center;
	}
	to {
		transform: scale(1);
		transform-origin: left center;
	}
}
@keyframes hamburger-line {
	0% {
		transform: scale(1);
		transform-origin: right center;
	}
	50% {
		transform: scaleX(0);
		transform-origin: right center;
	}
	50.1% {
		transform: scaleX(0);
		transform-origin: left center;
	}
	to {
		transform: scale(1);
		transform-origin: left center;
	}
}

.contact-info {
	display: flex;
}
.main-header .contact-info {
	display: none;
}
/* ------------------------------------------------------------ */
/* gnav */
/* ------------------------------------------------------------ */
.gnav {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	/*右から*/
	right: -100%;
	z-index: 10;
	/* -webkit-transition: transform 0.3s;
	transition: transform 0.3s; */
	background: #fff38e;
	pointer-events: auto;
	overflow-y: auto;
	/* opacity: 0; */
	/* visibility: hidden; */
	transform: translateX(100%);
	/* will-change: transform; */
	-webkit-transition: transform 0.5s cubic-bezier(0.47, 0.16, 0.24, 1), right 0.5s ease-in-out;
	transition: transform 0.5s cubic-bezier(0.47, 0.16, 0.24, 1), right 0.5s ease-in-out;
}
.togo-shoji .gnav {
	background: #0093cb;
}

.show-nav .gnav {
	/* opacity: 1; */
	/* visibility: visible; */
	right: 0;
	transform: translateX(0);
	/* -webkit-animation: show-nav 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
	animation: show-nav 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s; */
}

/* @-webkit-keyframes show-nav {
	0% {
		transform: translateX(100%);
	}
	to {
		transform: translateX(0);
	}
}
@keyframes show-nav {
	0% {
		transform: translateX(100%);
	}
	to {
		transform: translateX(0);
	}
} */

.gnav::before {
	content: "";
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 10;
	background-color: #fff;
	transform: translate(120%) scale(1.1) rotate(4deg);
	will-change: transform;
}

.show-nav .gnav::before {
	-webkit-animation: nav-mask 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.55s;
	animation: nav-mask 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.55s;
}

@-webkit-keyframes nav-mask {
	0% {
		transform: translate(120%) scale(1.1) rotate(4deg);
		transform-origin: bottom left;
	}
	to {
		transform: translate(-120%) scale(1.1) rotate(-8deg);
		transform-origin: bottom right;
	}
}
@keyframes nav-mask {
	0% {
		transform: translate(120%) scale(1.1) rotate(4deg);
		transform-origin: bottom left;
	}
	/* 50% {
    transform: translate(0);
    transform-origin: bottom left;
	} */
	to {
		transform: translate(-120%) scale(1.1) rotate(-8deg);
		transform-origin: bottom right;
	}
}

.nav_inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	height: auto;
	opacity: 0;
	position: relative;
	padding: 80px 1.2em 3em;
	z-index: 999;
	-webkit-transition: opacity 1.5s cubic-bezier(0.165, 0.84, 0.44, 1) 1.2s;
	transition: opacity 1.5s cubic-bezier(0.165, 0.84, 0.44, 1) 1.2s;
}
.show-nav .nav_inner {
	opacity: 1;
	/* transition: 1.8s cubic-bezier(0.165, 0.84, 0.44, 1) .5s; */
}

.hidden-nav.overlay {
	position: fixed;
	width: 100vw;
	height: 100vh;
	display: block;
	background: rgba(0, 0, 0, 0.2);
	top: 0;
	left: 0;
	opacity: 0;
	visibility: hidden;
	z-index: 9;
	display: none;
}
.show-nav .hidden-nav.overlay {
	opacity: 1;
	visibility: visible;
}
/* ------------------------------------------------------------ */
/* nav-menu */
/* ------------------------------------------------------------ */
.gnav .main-logo {
	width: 60%;
	margin: 0 auto 1.5em;
}
.togo-shoji .gnav .main-logo {
	width: 45%;
	margin: 0 auto 1em;
}
.nav-menu {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	flex-direction: row;
	align-items: flex-start;
	flex-wrap: wrap;
	padding-top: 1.5em;
	border-top: 1px solid #000;
	margin: 0 auto 1em;
}
.togo-shoji .nav-menu {
	border-top: none;
}
.nav-2cols {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	border-top: 1px solid #fff;
}
.nav-2cols .nav-menu {
	width: 48%;
}
.nav-2cols .menu-2cols {
	width: 100%;
	border-top: 1px solid #fff;
}
.nav-2cols .bdr-thin {
	border-width: 0.5px;
}

.menu-item {
	font-size: 1.4rem;
	margin: 0 0 0.5rem;
	width: 100%;
}
.menu-item.bdr-top {
	padding-top: 1.5em;
	margin-top: 1em;
	border-top: 1px solid #000;
}
.menu-2cols .menu-item {
	width: 50%;
}
.menu-item > a,
.menu-item > p {
	display: block;
	width: 100%;
	padding: 1rem;
	color: #000;
	position: relative;
	overflow: hidden;
	z-index: 2;
}
.togo-shoji .menu-item > a,
.togo-shoji .menu-item > p {
	color: #fff;
	padding: 0.8rem 0;
}
.togo-shoji .menu-item a:hover {
	color: #fff100;
}

.link-icon {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
.gnav .link-icon {
	margin: 0 auto 1.2em;
	padding-top: 2em;
	border-top: 1px solid #000;
}
.link-icon .icon {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	/* text-align: center; */
	margin: 0 1em 1em 0;
	line-height: 1;
	width: 38px;
	height: 38px;
	color: transparent; /*文字消す*/
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	/* text-indent: -9999px;
  background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center center;
	-webkit-transition: background-image 0.3s ease-in-out;
	transition: background-image 0.3s ease-in-out; */
}
.icon {
	position: relative;
}
.icon::before,
.icon::after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100%;
	-webkit-transition: opacity 0.3s ease-in-out;
	transition: opacity 0.3s ease-in-out;
}
.icon::after {
	opacity: 0;
}
.icon:hover::before {
	opacity: 0;
}
.icon:hover::after {
	opacity: 1;
}
.icon-line::before {
	background-image: url(../img/icon/icon-line-blk.svg);
}
.icon-line::after {
	background-image: url(../img/icon/icon-line-hover.svg);
}
/* .icon-line:hover {
	background-image: url(../img/icon/icon-line-hover.svg);
} */
.icon-fb::before {
	background-image: url(../img/icon/icon-fb-blk.svg);
}
.icon-fb::after {
	background-image: url(../img/icon/icon-fb-hover.svg);
}
.icon-insta::before {
	background-image: url(../img/icon/icon-insta-blk.svg);
}
.icon-insta::after {
	background-image: url(../img/icon/icon-insta-hover.svg);
}

.gnav .contact-info {
	width: 100%;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #fff;
	text-align: center;
	border-top: 1px solid #fff;
	padding-top: 2rem;
}
.gnav .link-phone {
	font-size: 2.6rem;
	font-weight: 900;
	color: #fff;
}
.gnav .link-phone::before {
	content: "";
	display: inline-block;
	width: 22px;
	height: 22px;
	margin: 0 1rem 0 0;
	background: url(../img/icon/icon-phone-wht.svg) no-repeat center center / 100% auto;
}
/*アコーディオン*/
/* .menu-item .nav_ttl {
	position: relative;
	padding-right: 3em;
}
.menu-item .nav_ttl::before {
	content: "";
	display: block;
	width: 1em;
	height: 2px;
	background: #000;
	position: absolute;
	top: 50%;
	right: 1em;
	transform: translateY(-50%);
}
.menu-item .nav_ttl::after {
	content: "";
	display: block;
	width: 2px;
	height: 1em;
	background: #000;
	position: absolute;
	top: 50%;
	right: 1.5em;
	transform: translate(50%, -50%);
}
.menu-item .nav_ttl.is-open::after {
	content: none;
}
.nav_cnt {
	display: none;
}
.nav_cnt.is-open {
	display: block;
}
.nav-child li a {
	display: block;
	padding: 0.8em 1.5em;
	font-size: 1.6rem;
} */

/* ------------------------------------------------------------ */
/* content layout */
/* ------------------------------------------------------------ */
.content {
	width: 100%;
	height: auto;
	position: relative;
	padding: 0;
	margin: 0 auto;
}
.base {
	width: 100%;
	height: auto;
	position: relative;
	padding: 2.5em 0;
	margin: 0 auto;
	z-index: 1;
}
.inner {
	width: 100%;
	max-width: calc(1000px + 2em);
	height: auto;
	padding: 0 1em;
	margin: 0 auto;
	clear: both;
	position: relative;
	z-index: 1;
}
.inner::after {
	content: "";
	clear: both;
	display: block;
}
.bg {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.bg::after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
.bg * {
	position: relative;
	color: #fff;
	z-index: 3;
}

/* ------------------------------------------------------------ */
/* ttl,caps,txt */
/* ------------------------------------------------------------ */
.main-ttl {
	font-size: 22px;
	font-size: max(2.2rem, min(2vw + 1rem, 2.8rem));
	font-size: clamp(2.2rem, 2vw + 1rem, 2.8rem);
	margin: 0 auto 1em;
	text-align: center;
	letter-spacing: 0.15em;
}
.sub-ttl {
	font-size: 20px;
	font-size: max(1.5rem, min(2vw + 1rem, 2rem));
	font-size: clamp(1.5rem, 2vw + 1rem, 2rem);
	text-align: center;
	margin: 0 auto 1em;
	letter-spacing: 0.15em;
}
.ttl-svg {
	display: block;
}
.ttl-caps {
	display: block;
	font-size: 1.4rem;
	font-weight: 900;
}
.caps {
	font-size: 1.2rem;
}
.font-md {
	font-size: 18px;
	font-size: max(1.5rem, min(1vw + 1rem, 1.8rem));
	font-size: clamp(1.5rem, 1vw + 1rem, 1.8rem);
}
.font-sm {
	font-size: 16px;
	font-size: max(1.5rem, min(1vw + 1rem, 1.6rem));
	font-size: clamp(1.5rem, 1vw + 1rem, 1.6rem);
	font-weight: 500;
}

.ttl-bdrbox {
	display: inline-block;
	border: 1px solid #000;
	background-color: #fff38e;
	padding: 0.3em 0.8em;
	line-height: 1.2;
	margin: 0 auto 0.8em;
}
.ttl-bdrbox-blk {
	display: inline-block;
	background-color: #000;
	color: #fff;
	line-height: 1.2;
	padding: 0.3em 0.5em;
}
.marker {
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 70%, #fff38e 70%, #fff38e 100%);
}
.marker_ylw {
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 65%, #fff100 65%, #fff100 100%);
}
.underline {
	display: inline-block;
	border-bottom: 1px solid #000;
}
.stroke_blue {
	-webkit-text-stroke: 2.5px #0093cb;
	/* text-shadow: 0 0 0 #0093cb, 1px 1px 0 #0093cb, -1px -1px 0 #0093cb, 1px -1px 0 #0093cb, -1px 1px 0 #0093cb, 1px 0 0 #0093cb, 0 1px 0 #0093cb, -1px 0 0 #0093cb, 0 -1px 0 #0093cb; */
}
/* ------------------------------------------------------------ */
/* flx_box */
/* ------------------------------------------------------------ */
.flx_box {
	width: 100%;
	height: auto;
	margin: 0 auto 1em;
	display: flex;
	justify-content: flex-start;
	/* align-items: flex-start; */
	flex-wrap: wrap;
}
/* カラム共通 */
.flx_item {
	width: 100%;
	height: auto;
	margin: 0 auto 1em;
}
.flx_item .thum {
	width: 100%;
	height: auto;
	margin: 0 auto 1em;
}
/* ------------------------------------------------------------ */
/* list */
/* ------------------------------------------------------------ */
.txt-list {
	margin: 2em auto;
}
.txt-list-item {
	width: 100%;
	margin: 0 auto 1em;
}
.txt-list-item h3 {
	font-weight: 500;
	font-size: 1.4rem;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}
.txt-list .update {
	display: inline-block;
	vertical-align: middle;
	margin: 0 1em 0 0;
}
/* ------------------------------------------------------------ */
/* post-list */
.post-list {
	margin: 2em auto;
}
.post-list-item {
	width: 100%;
	font-size: 1.5rem;
	margin: 0 auto 1.5em;
}
.post-list-item .expert {
	line-height: 1.6;
}
.post-list-item .tag-box {
	width: 100%;
	margin: 0 auto 5px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
}
.tag-box span {
	display: inline-block;
	vertical-align: middle;
	font-size: 1.2rem;
	font-weight: 500;
	margin: 0 5px 0 0;
}
.tag-box .tag {
	padding: 0 1em;
	text-align: center;
	width: 100px;
}
.tag-box .update {
	font-weight: 300;
	width: auto;
}
.tag-box .reserve {
	background-color: #988029;
	color: #fff;
	border: 1px solid #988029;
}
.tag-box .appoint {
	background-color: #fff;
	color: #988029;
	border: 1px solid #988029;
}
.tag-box .finished {
	background-color: #808080;
	color: #fff;
	border: 1px solid #808080;
}
.tag-box .new {
	background-color: #fff;
	color: #988029;
	border: 1px solid #fff;
}
/* ------------------------------------------------------------ */
/* thum-list */
.thum-list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 100%;
	margin: 2em auto;
}
.thum-list-item {
	width: 100%;
	margin: 0 0 2em;
}
.thum-list-item .thum {
	width: 100%;
	aspect-ratio: 4/3;
	margin: 0 0 10px;
	background-color: #fff;
	overflow: hidden;
}
.thum-list-item .thum img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1);
	transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.thum-list-item a:hover img {
	opacity: 0.7;
	transform: scale(1.1);
}
.thum-list-item .tag-box {
	margin: 0 auto 0 0;
}
.thum-list-item .tag {
	width: auto;
}
.thum-list-item .ttl-box {
	justify-content: flex-end;
	flex-wrap: nowrap;
}
.thum-list-item h3 {
	font-size: 1.5rem;
	font-weight: 300;
	line-height: 1.6;
	padding-left: 1em;
}
.thum-list-item .update {
	font-weight: 700;
	margin: 0 1em 0 0;
}
/* ------------------------------------------------------------ */
/* note-list */
.note-list {
	width: 100%;
	max-width: 750px;
	margin: 0 auto;
}
.note-list-item {
	width: 100%;
	margin: 0 auto 3rem;
	padding: 6rem 2rem 2rem;
	border: 2px solid #000;
	background-color: #fff;
	font-size: 1.2rem;
  line-height: 2;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	position: relative;
}
.note-list-item .update {
	display: inline-block;
	background-color: #000;
	color: #fff;
	font-size: 1.2rem;
	font-weight: 500;
	padding: 0.5rem 1.5rem;
	position: absolute;
	top: 0;
	left: 0;
}
.note-list-item .post-ttl {
	width: 100%;
	margin: 0 auto;
	font-size: 1.2rem;
	font-weight: normal;
}
.note-list-item .editor-area {
	margin-bottom: 2rem;
}
.note-list-item .editor-area p:first-of-type {
	margin-bottom: 2rem;
}
.note-list-item .readmore {
	margin: 0 auto;
	font-size: 1.3rem;
	font-weight: 500;
	padding: 0.5rem 2rem;
	border: 1px solid #000;
	border-radius: 60px;
}
.note-list-item .readmore:hover {
	background-color: #000;
	color: #fff;
}

/* ------------------------------------------------------------ */
/* animation */
/* ------------------------------------------------------------ */
@keyframes fadeInup {
	0% {
		opacity: 0;
		transform: translateY(50%);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes fadeIndown {
	0% {
		opacity: 0;
		transform: translateY(-50%);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes fadeInLeft {
	0% {
		opacity: 0;
		transform: translateX(-100%);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}
@keyframes fadeInRight {
	0% {
		opacity: 0;
		transform: translateX(100%);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}
.fadeIn,
.fadeInup,
.fadeIndown,
.fadeInLeft,
.fadeInRight {
	opacity: 0;
}
.fadeInup.is-show {
	animation: fadeInup 0.8s ease-in-out 0.5s 1 forwards;
}
.fadeIn.is-show {
	animation: fadeIn 0.8s ease-in-out 0.5s 1 forwards;
}
.fadeIndown.is-show {
	animation: fadeIndown 0.8s ease-in-out 0.5s 1 forwards;
}
.fadeInLeft.is-show {
	animation: fadeInLeft 0.8s ease-in-out 0.5s 1 forwards;
}
.fadeInRight.is-show {
	animation: fadeInRight 0.8s ease-in-out 0.5s 1 forwards;
}
.inview {
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
}
.inview.is-show {
	opacity: 1;
}
/* ------------------------------------------------------------ */
/* swiper */
/* ------------------------------------------------------------ */
.pager-slider {
	width: 100%;
	padding-bottom: 30px; /* pager表示分 */
	overflow: hidden;
	position: relative;
	z-index: 1;
}
.swiper-slide img {
	width: 100%;
	/* height: 100%;
	object-fit: cover; */
}
/* navigation */
.swiper-button-next,
.swiper-button-prev {
	width: 2em;
	height: 2em;
	margin-top: 0;
	color: #fff38e;
	cursor: pointer;
	transition: color 0.3s ease-in-out;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
	color: #efefef;
}
.swiper-button-next:after,
.swiper-button-prev:after {
	font-size: 2em;
	line-height: 1;
}
/* pagination */
.swiper-pagination {
	text-align: right;
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
	bottom: 0;
}
.swiper-pagination-bullet {
	background: #000;
	border: 1px solid #000;
	opacity: 1;
}
.swiper-pagination-bullet-active {
	opacity: 1;
	background: #fff38e;
}

/* ticker */
.ticker .swiper-slide img {
	height: 100%;
	object-fit: cover;
}
.ticker-area {
	padding: 2em 0 0;
	background-color: #fff;
}
.ticker .swiper-slide {
	height: auto;
	overflow: hidden;
}
.ticker .swiper-slide .thum {
	height: 100%;
	overflow: hidden;
}
.ticker .horizontal {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.ticker .horizontal > .thum {
	width: 100%;
	height: 50%;
	overflow: hidden;
}
.ticker .horizontal > .thum:first-of-type {
	margin-bottom: 2px;
}
/* gallery */
.gallery {
	width: 100%;
	margin: 0 auto 4em;
}
.gallery-main {
	width: 100%;
	position: relative;
	overflow: visible;
	/* padding: 0 1.5em; */
	margin: 0 auto;
}
.gallery-slider,
.gallery-thumb {
	width: 100%;
	position: relative;
	overflow: hidden;
	margin: 0 auto 1em;
}

.gallery-thumb {
	width: 100%;
	padding: 0 2em;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.gallery-thumb-item {
	width: calc((100% - 2em) / 4);
	min-height: auto;
	padding: 0;
	aspect-ratio: 1/1;
	margin: 0 0.5em 0.5em 0;
	overflow: hidden;
	background-color: #fff;
	transition: opacity 0.3s ease-in-out;
}
.gallery-thumb-item img {
	transition: opacity 0.3s ease-in-out;
}
.gallery-thumb-item:hover img {
	opacity: 0.8;
}
.thumb-5cols .gallery-thumb-item {
	width: calc((100% - 2.5em) / 5);
}
.gallery img {
	height: 100%;
	object-fit: cover;
}
.gallery .swiper-button-next {
	right: 0.5em;
}
.gallery .swiper-button-prev {
	left: 0.5em;
}
/* ------------------------------------------------------------ */
/* box */
/* ------------------------------------------------------------ */
.map-box {
	width: 100%;
	height: auto;
	margin: 2em auto;
	position: relative;
}
.map-box img {
	width: 100%;
}
.bdr-box {
	background-color: #fff;
	border: 2px solid #000;
	padding: 1em;
}
.notice {
	/* background-color: #dcdddd; */
	padding: 1em;
	margin: 1em auto;
}
/* ------------------------------------------------------------ */
/* タブ */
/* ------------------------------------------------------------ */
/* .tab_btn {
	display: flex;
}
.tab_btn a {
	width: 100%;
	display: block;
	padding: 1em;
	background: #707070;
	color: #fff;
	opacity: 0.7;
}
.tab_btn a.active {
	background: #000;
	opacity: 1;
} */
.tab_cnt {
	display: none;
	/* padding: 2em;
	border: 2px solid #000; */
}
.tab_cnt.is-active {
	display: block;
}
/* ------------------------------------------------------------ */
/* アコーディオン */
/* ------------------------------------------------------------ */
.ac_cnt {
	display: none;
}

/* ------------------------------------------------------------ */
/* contact  */
/* ------------------------------------------------------------ */
.dial-item {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	margin: 1.6em auto;
}
.link-dial {
	width: 100%;
	display: block;
	/* padding-left: 40px; */
	/* font-size: 3.2rem; */
	font-size: 30px;
	font-size: max(3rem, min(1vw + 1rem, 3.8rem));
	font-size: clamp(3rem, 1vw + 1rem, 3.8rem);
	font-weight: 900;
	text-align: center;
	line-height: 1;
	position: relative;
}
.link-dial::before {
	content: "";
	display: inline-block;
	width: 40px;
	height: 25px;
	background: url(../img/icon/icon-dial.svg) no-repeat center center / 100% auto;
	margin: 0 0.4em 0 0;
	line-height: 1;
}

.openhour {
	display: block;
	font-size: 1.3rem;
}
.dial-item .openhour {
	width: 100%;
	margin-top: 1em;
	font-size: 1.2rem;
	letter-spacing: 0;
	text-align: center;
}

.togo-shoji .contact {
	color: #fff;
}
.togo-shoji .contact .link-dial {
	color: #fff;
}
.togo-shoji .contact .link-dial::before {
	width: 32px;
	height: 36px;
	background: url(../img/icon/icon-phone-wht.svg) no-repeat center center / 100% auto;
	vertical-align: text-bottom;
}
.togo-shoji .contact .openhour {
	width: 100%;
	text-align: center;
}
/* ------------------------------------------------------------ */
/* fix_nav */
/* ------------------------------------------------------------ */
.fix_nav {
	display: flex;
	justify-content: flex-start;
	width: 100%;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 9;
	transition: transform 0.5s;
	/* transform: translateY(100%); */
	/* transform: translateY(0); */
	animation: fixnavUp 0.5s ease-in-out 0.5s 1 forwards;
}
@keyframes fixnavUp {
	0% {
		opacity: 0;
		transform: translateY(100%);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.fix_nav.is-fixed,
.fix_nav.is-show {
	transform: translateY(0);
}
.fix_nav_item {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 8px 3%;
	color: #fff;
	background-color: #000;
	border: 1px solid #000;
	flex-wrap: wrap;
	font-size: 1rem;
	line-height: 1.2;
}
.fix_nav_item.pc {
	display: none;
}

.fix_nav .contact-info {
	/* flex: 2; */
	width: 70%;
}
.fix_nav_item .icon {
	display: inline-block;
	vertical-align: middle;
	width: 34px;
	height: 34px;
	margin: 0 4% 0 0;
	text-indent: -9999px;
	background-color: #fff;
	border-radius: 100%;
	background-position: center;
	background-repeat: no-repeat;
}

.fix_nav_item .icon-mail {
	background-image: url(../img/icon/icon-mail.svg);
	background-size: 15px auto;
}
.fix_nav_item .link-phone {
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
	width: calc(96% - 34px);
}
.fix_nav_item .icon-phone {
	background-image: url(../img/icon/icon-phone-blk.svg);
	background-size: 20px auto;
}
.fix_nav_item .openhour {
	display: inline-block;
	font-size: 1rem;
	line-height: 1.2;
	color: #fff;
}

.fix_nav_item:last-child {
	width: 30%;
	display: inline-flex;
	justify-content: center;
	border-right: none;
	color: #000;
	background-color: #fff38e;
	padding: 8px 3%;
	font-size: 1.2rem;
	letter-spacing: 0.03em;
}

@media screen and (max-width: 360px) {
	.fix_nav .contact-info {
		width: 72%;
	}
	.fix_nav_item:last-child {
		width: 28%;
	}
}

.togo-shoji .fix_nav_item {
	color: #fff;
	font-size: 1.2rem;
	padding: 8px 2rem;
	justify-content: center;
}
.togo-shoji .fix_nav_item:first-of-type {
	width: 32%;
}
.togo-shoji .fix_nav_item.pc {
	display: none;
}
.togo-shoji .fix_nav_item:last-child {
	color: #fff;
	background-color: #000;
	border-left: 1px solid #fff;
	/* justify-content: flex-start; */
	justify-content: center;
	/* padding: 8px 1rem; */
}
.togo-shoji .fix_nav .contact-info {
	width: 68%;
}
.togo-shoji .fix_nav .contact-info .fix_nav_item {
	color: #000;
	background-color: #fff38e;
	border-radius: 100vmax;
	padding: 8px 2.5rem;
	margin: 0 0.6rem 0 0;
  width: auto;
}
.togo-shoji .fix_nav_item .link-phone {
	width: auto;
}
.togo-shoji .fix_nav_item .icon {
	background-color: #fff38e;
}

@media screen and (max-width: 374px) {
	.togo-shoji .fix_nav_item {
		padding: 8px 1.5rem;
	}
	.togo-shoji .fix_nav_item:first-of-type {
		width: 35%;
	}
	.togo-shoji .fix_nav_item:last-child {
		padding: 8px 1.4rem;
		justify-content: space-between;
	}
	.togo-shoji .fix_nav .contact-info {
		width: 65%;
	}
	.togo-shoji .fix_nav .contact-info .fix_nav_item {
		padding: 8px 1.8rem;
    width: auto;
	}
}

/* ------------------------------------------------------------ */
/* page-top */
/* ------------------------------------------------------------ */
/* .page-top {
	width: 48px;
	height: 48px;
	position: absolute;
	top: -2em;
	right: 1em;
	z-index: 99;
}
.page-top a {
	width: 100%;
	height: 100%;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	border-radius: 100%;
	border: 1px solid #988029;
	padding: 1em 0.8em;
	background-color: rgba(255, 255, 255, 0);
}
.page-top a:hover {
	background-color: rgba(255, 255, 255, 0.6);
} */
/* ------------------------------------------------------------ */
/* footer */
/* ------------------------------------------------------------ */
.main-footer {
	width: 100%;
	padding: 2.5em 0 0;
	display: flex;
	justify-content: flex-start;
	flex-direction: column;
	position: relative;
	z-index: 1;
}
.ft-top {
	order: 2;
	background-color: #fff;
	padding: 2em 1em 5em;
}
.ft-btm {
	order: 1;
	padding: 0 1em 3em;
}

.main-footer .main-logo {
	/* width: 70%;
	margin: 0 auto 2em; */
	width: 90%;
	margin: 0 auto 2.4rem;
}
.main-footer .address {
	font-style: normal;
	font-size: 1.3rem;
	letter-spacing: 0.05em;
	margin: 0 auto;
	text-align: center;
}

.sitemap {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.site-link {
	margin: 0 4px 12px 0;
	font-size: 1.3rem;
	line-height: 1.4;
}
.site-link a {
	padding: 0 8px 0 4px;
	border-right: 1px solid #000;
}

.ft-link {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	padding-left: 55px;
	position: relative;
	margin: 2em auto 0;
}
.togo-shoji .ft-link {
	padding-left: 0;
}
.privacy-mark {
	width: 52px;
	height: 52px;
	position: absolute;
	bottom: -5px;
	left: 0;
}
.ft-link a {
	font-size: 1.2rem;
	line-height: 1.4;
	padding: 0 8px;
	letter-spacing: 0.05em;
	border-right: 1px solid #000;
}
.ft-link a:last-of-type {
	border-right: none;
}
.copy {
	width: 100%;
	font-size: 1rem;
	letter-spacing: 0.05em;
	line-height: 1.4;
	padding: 0 8px;
	margin: 8px 0 0;
}

@media screen and (min-width: 480px) {
	/* スマートフォン横 */
	.sp {
		display: block;
	}
	.sp-only {
		display: none;
	}
	.btn-2cols .btn {
		width: calc((100% - 2rem) / 2);
		margin-left: 0.5rem;
		margin-right: 0.5rem;
	}
	.btn-3cols .btn {
		width: calc((100% - 2rem) / 2);
		margin-left: 0.5rem;
		margin-right: 0.5rem;
	}
	/* ------------------------------------------------------------ */
	/* content layout */
	/* ------------------------------------------------------------ */
	.base {
		padding: 3em 0;
	}
	.inner {
		padding-left: 1.5em;
		padding-right: 1.5em;
		max-width: calc(1000px + 3em);
	}

	/* ------------------------------------------------------------ */
	/* header */
	/* ------------------------------------------------------------ */
	.main-header .main-logo {
		width: 40%;
		max-width: 350px;
	}
	.togo-shoji .main-header .main-logo {
		width: 50%;
	}
	.togo-shoji .main-header .main-logo .pc {
		display: block;
	}
	/* .contact-info {
		display: flex;
	} */

	/* ------------------------------------------------------------ */
	/* swiper */
	/* ------------------------------------------------------------ */
	.swiper-slide .pc {
		display: block;
	}
	.swiper-slide .sp {
		display: none;
	}

	/* ------------------------------------------------------------ */
	/* flx_box */
	/* ------------------------------------------------------------ */
	/* 2カラム */
	.flx_2cols .flx_item {
		width: calc((100% - 1em) / 2);
		margin: 0 1em 1em 0;
	}
	.flx_2cols .flx_item:nth-of-type(2n),
	.flx_2cols .flx_item:last-of-type {
		margin: 0 0 1em;
	}
	/* 3カラム */
	.flx_3cols .flx_item {
		width: calc((100% - 1em) / 3);
		margin: 0 0.5em 1em 0;
	}
	.flx_3cols .flx_item:nth-of-type(3n),
	.flx_3cols .flx_item:last-of-type {
		margin: 0 0 1em;
	}
	/* 4カラム */
	.flx_4cols .flx_item {
		width: calc((100% - 0.5em) / 2);
		margin: 0 0.5em 1em 0;
	}
	.flx_4cols .flx_item:nth-of-type(2n),
	.flx_4cols .flx_item:last-of-type {
		margin: 0 0 1em;
	}
	/* ------------------------------------------------------------ */
	/* list  */
	/* ------------------------------------------------------------ */
	/* thum-list */
	.thum-list {
		margin: 2em auto 3em;
	}
	.list-2cols .thum-list-item {
		width: calc((100% - 1em) / 2);
		margin: 0 1em 2em 0;
	}
	.list-2cols .thum-list-item:nth-of-type(2n) {
		margin: 0 0 2em;
	}
	.list-3cols .thum-list-item {
		width: calc((100% - 1em) / 3);
		margin: 0 0.5em 2em 0;
	}
	.list-3cols .thum-list-item:nth-of-type(3n) {
		margin: 0 0 2em;
	}
	/* ------------------------------------------------------------ */
	/* note-list */
  .note-list-item {
    margin: 0 auto 4rem;
    padding: 6rem 3rem 3rem;
  }
	.note-list-item .readmore {
		margin: 0 0 0 auto;
	}
	/* ------------------------------------------------------------ */
	/* contact  */
	/* ------------------------------------------------------------ */
	.dial-item {
		/* max-width: 380px; */
		justify-content: center;
	}
	.top .dial-item {
		max-width: 380px;
		justify-content: center;
	}
	/* ------------------------------------------------------------ */
	/* fix_nav  */
	/* ------------------------------------------------------------ */
	.fix_nav_item {
		padding: 8px 1em;
		font-size: 1.3rem;
		min-width: 30%;
	}
	.fix_nav_item:last-child {
		font-size: 1.3rem;
	}
	.fix_nav .contact-info {
		flex: auto;
		display: flex;
	}
	.fix_nav_item .icon {
		margin: 0 0.8em 0 0;
	}
	.fix_nav_item .openhour {
		font-size: 1.3rem;
	}
	/* ------------------------------------------------------------ */
	/* footer  */
	/* ------------------------------------------------------------ */
	.main-footer .main-logo {
		width: 40%;
	}
	/* .ft-top {
    padding: 2em 1em 5em;
  }
  .ft-btm {
    padding: 0 1em 3em;
  } */
}
@media screen and (min-width: 768px) {
	/* タブレット縦 / スマートフォン横 */
	.btn-2cols .btn {
		width: calc((100% - 4rem) / 2);
		margin-left: 1rem;
		margin-right: 1rem;
	}
	.btn-3cols .btn {
		width: calc((100% - 6rem) / 3);
		margin-left: 1rem;
		margin-right: 1rem;
	}
	/* ------------------------------------------------------------ */
	/* content layout */
	/* ------------------------------------------------------------ */
	.inner {
		padding-left: 2em;
		padding-right: 2em;
		/* max-width: calc(1000px + 4em); */
	}

	/* ------------------------------------------------------------ */
	/* flx_box */
	/* ------------------------------------------------------------ */
	/* 3カラム */
	.flx_3cols .flx_item {
		width: calc((100% - 2em) / 3);
		margin: 0 1em 1em 0;
	}
	/* 4カラム */
	.flx_4cols .flx_item {
		width: calc((100% - 1.5em) / 4);
		margin: 0 1em 1em 0;
	}

	/* ------------------------------------------------------------ */
	/* slider  */
	/* ------------------------------------------------------------ */
	.gallery-thumb {
		padding: 0;
		justify-content: space-between;
	}
	.gallery-thumb-item {
		width: 62px;
		margin: 0 1em 1em 0;
	}
	.gallery-thumb-item:last-of-type {
		margin: 0 0 1em;
	}
	.thumb-5cols .gallery-thumb-item {
		width: 62px;
	}
	/* ------------------------------------------------------------ */
	/* ttl  */
	/* ------------------------------------------------------------ */
	.main-ttl {
		margin: 0 auto 1.2em;
	}
	/* ------------------------------------------------------------ */
	/* list  */
	/* ------------------------------------------------------------ */
	/* thum-list */
	.thum-list {
		margin: 2em auto 4em;
	}
	.list-2cols .thum-list-item {
		width: calc((100% - 2em) / 2);
		margin: 0 2em 2em 0;
	}

	/* ------------------------------------------------------------ */
	/* note-list */
	.note-list-item {
		font-size: 1.4rem;
    padding: 7rem 4rem 3rem;
  }

	.note-list-item .post-ttl {
		font-size: 1.4rem;
	}
	/* ------------------------------------------------------------ */
	/* box */
	/* ------------------------------------------------------------ */
	.bdr-box {
		padding: 2em;
	}
	.notice {
		padding: 2em;
	}
	/* ------------------------------------------------------------ */
	/* fix_nav  */
	/* ------------------------------------------------------------ */

	/* ------------------------------------------------------------ */
	/* footer */
	/* ------------------------------------------------------------ */
	.main-footer .main-logo {
		width: 30%;
	}
	.copy {
		font-size: 1.2rem;
	}
}
@media screen and (min-width: 1025px) {
	/* デスクトップ/タブレット横 */
	.pc {
		display: block;
	}
	.sp {
		display: none;
	}
	.btn {
		min-width: 380px;
		max-width: 380px;
	}
	.inner {
		max-width: calc(1000px + 4em);
	}
	/* ------------------------------------------------------------ */
	/* header */
	/* ------------------------------------------------------------ */
	.main-header {
		padding: 15px 20px;
	}
	.main-logo a:hover {
		opacity: 0.75;
	}
	.main-header .contact-info {
		display: flex;
		align-items: center;
		margin: 0 2em 0 auto;
	}
	.contact-info .link-phone {
		font-size: 2.4rem;
		line-height: 1;
		font-weight: 900;
		display: block;
		margin: 0 1rem 0 0;
	}
	.contact-info .link-phone::before {
		content: "";
		display: inline-block;
		width: 22px;
		height: 22px;
		background: url(../img/icon/icon-phone-gray.svg) no-repeat center center / 100% auto;
		margin: 0 0.4em 0 0;
		line-height: 1;
	}
	.openhour {
		font-size: 1.1rem;
		line-height: 1.3;
	}
	/* ------------------------------------------------------------ */
	/* gnav */
	/* ------------------------------------------------------------ */
	.gnav {
		overflow-x: hidden;
	}
	.gnav .main-logo {
		width: 100%;
		margin: 0 auto 2em;
	}
	.gnav .main-logo a {
		max-width: 230px;
		margin: 0 auto;
	}
	.togo-shoji .gnav .main-logo {
		width: 100%;
		margin: 0 auto 4em;
	}
	.nav_inner {
		max-width: 1000px;
		margin: 0 auto;
		padding: 10% 2em 3em;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: flex-start;
		align-items: flex-start;
		overflow-x: hidden;
	}
	.nav-menu {
		width: auto;
		max-width: 240px;
		padding-top: 0;
		border-top: none;
		/* margin: 0 auto; */
		margin: 0 4em;
		flex-direction: column;
	}
	.nav-2cols {
		border-top: none;
		justify-content: center;
		margin: 0 auto;
		width: auto;
	}
	.nav-2cols .nav-menu {
		width: auto;
	}
	.nav-2cols .menu-2cols {
		border-top: none;
		width: auto;
	}
	.menu-item,
	.menu-2cols .menu-item {
		width: auto;
		margin: 0 0 1em;
	}
	.menu-item.bdr-top {
		padding-top: 0;
		margin-top: 3em;
		border-top: none;
	}
	.menu-item > a,
	.menu-item > p {
		padding: 0.5rem 0;
	}
	.menu-item > a:hover,
	.menu-item > p:hover {
		color: #0093cb;
	}
	.gnav .link-icon {
		margin: 0 auto 1.5em;
		padding-top: 3em;
		border-top: none;
	}
	.gnav .contact-info {
		display: none;
	}
	/* ------------------------------------------------------------ */
	/* content layout */
	/* ------------------------------------------------------------ */

	.base {
		padding: 6em 0;
	}
	/* ------------------------------------------------------------ */
	/* slider  */
	/* ------------------------------------------------------------ */
	/* 2カラム */
	.flx_2cols .flx_item {
		width: calc((100% - 2em) / 2);
		margin: 0 2em 2em 0;
	}
	.flx_2cols .flx_item:nth-of-type(2n),
	.flx_2cols .flx_item:last-of-type {
		margin: 0 0 2em;
	}
	/* 3カラム */
	.flx_3cols .flx_item {
		width: calc((100% - 4em) / 3);
		margin: 0 2em 2em 0;
	}
	.flx_3cols .flx_item:nth-of-type(3n),
	.flx_3cols .flx_item:last-of-type {
		margin: 0 0 2em;
	}
	/* 4カラム */
	.flx_4cols .flx_item {
		width: calc((100% - 1.5em) / 4);
		margin: 0 1em 1em 0;
	}
	.flx_4cols .flx_item:nth-of-type(4n),
	.flx_4cols .flx_item:last-of-type {
		margin: 0 0 1em;
	}
	/* ------------------------------------------------------------ */
	/* slider  */
	/* ------------------------------------------------------------ */
	.gallery-thumb {
		padding: 0;
		justify-content: space-between;
	}
	.gallery-thumb-item {
		width: 80px;
		margin: 0 1.5em 0 0;
	}
	.gallery-thumb-item:last-of-type {
		margin: 0;
	}
	.thumb-5cols .gallery-thumb-item {
		width: 80px;
	}
	.gallery .swiper-button-prev {
		left: -3em;
	}
	.gallery .swiper-button-next {
		right: -3em;
	}
	/* ------------------------------------------------------------ */
	/* list  */
	/* ------------------------------------------------------------ */
	/* thum-list */
	.thum-list {
		margin: 2em auto 5em;
	}
	.list-2cols .thum-list-item {
		width: calc((100% - 3em) / 2);
		margin: 0 3em 3em 0;
	}
	.list-2cols .thum-list-item:nth-of-type(2n) {
		margin: 0 0 3em;
	}
	.list-3cols .thum-list-item {
		width: calc((100% - 2em) / 3);
		margin: 0 1em 2em 0;
	}
	.list-3cols .thum-list-item:nth-of-type(3n) {
		margin: 0 0 2em;
	}
	/* ------------------------------------------------------------ */
	/* note-list */
	.note-list-item {
    margin: 0 auto 4rem;
    padding: 8rem 6rem 4rem;
  }
	/* ------------------------------------------------------------ */
	/* contact  */
	/* ------------------------------------------------------------ */
	.contact {
		padding: 4em 0;
	}
	.dial-item {
		margin: 2em auto;
	}
	.dial-item .openhour {
		font-size: 1.3rem;
	}
	/* ------------------------------------------------------------ */
	/* fix_nav  */
	/* ------------------------------------------------------------ */
	.fix_nav {
		width: 42px;
		flex-direction: column;
		top: 90px;
		right: 0;
		bottom: inherit;
		left: inherit;
		z-index: 9;
		transform: translateX(100%);
		/* transform: translateX(0); */
		animation: none;
	}
	.fix_nav.is-fixed,
	.fix_nav.is-show {
		transform: translateX(0);
	}
	.fix_nav a {
		color: #fff;
	}
	.fix_nav_item {
		width: auto;
		padding: 1em;
		-ms-writing-mode: tb-rl;
		writing-mode: vertical-rl;
		min-width: inherit;
		border-right: none;
		padding: 8px 1.3rem 8px 1.8rem;
		letter-spacing: 0.08em;
		border-radius: 8px 0 0 8px;
		margin-bottom: 0.8em;
	}
	.fix_nav_item.pc {
		display: flex;
	}
	.fix_nav .contact-info.sp {
		display: none;
	}
	.fix_nav_item:last-child {
		width: auto;
		font-size: 1.3rem;
		letter-spacing: 0.08em;
	}
	.fix_nav_item:first-child:hover {
		background-color: #fff;
		color: #000;
	}
	.fix_nav_item:last-child:hover {
		background-color: #0093cb;
		color: #fff;
	}

	.togo-shoji .fix_nav {
		flex-direction: column-reverse;
	}

	.togo-shoji .contact-info {
		display: none;
	}
	.togo-shoji .fix_nav_item {
		background-color: #fff38e;
		color: #000;
		padding: 8px 1.3rem 8px 1.8rem;
	}
  .togo-shoji .fix_nav_item:first-of-type {
    width: auto;
  }
	.togo-shoji .fix_nav_item:hover {
		background-color: #0093cb;
		color: #fff;
	}
	.togo-shoji .fix_nav_item.pc {
		display: flex;
		background-color: #000;
		color: #fff;
	}
	.togo-shoji .fix_nav_item.pc:hover {
		background-color: #fff;
		color: #000;
	}
	/* ------------------------------------------------------------ */
	/* footer  */
	/* ------------------------------------------------------------ */
	/* .page-top {
		top: -1em;
	} */
	.main-footer {
		padding: 2.5em 0;
    background: #fff;
	}
	.ft-top {
		order: 1;
		background: none;
		padding: 2em;
	}
	.ft-btm {
		order: 2;
		padding: 2em;
	}
	.sitemap {
		flex-direction: column;
		height: 240px;
	}
	.togo-shoji .sitemap {
		height: 165px;
		width: 68%;
		margin: 0 auto;
	}
	.site-link {
		margin: 0 5% 1.5em;
	}
	.site-link.margin-top {
		margin-top: 4%;
	}
	.site-link.margin-btm {
		/* margin-bottom: 4%; */
		margin-bottom: 8%;
	}
	.site-link a {
		border-right: none;
	}
	.ft-link {
		padding-left: 70px;
		/* max-width: 830px; */
		max-width: 880px;
	}
	.togo-shoji .ft-link {
		max-width: 590px;
	}
	.privacy-mark {
		width: 64px;
		height: 64px;
		bottom: 50%;
		transform: translateY(50%);
	}
	.ft-link a {
		border-right: none;
		margin-right: 1em;
	}
}
