@import"https://fonts.googleapis.com/css2?family=Montserrat:wght@300;700&family=Outfit:wght@100;300;600&display=swap";

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
	margin: 0;
	padding: 0;
}

html,
div {
	margin: 0;
	padding: 0;
	font-family: 'Noto Sans JP', sans-serif;
}

html {
	overflow-x: hidden;
	overflow-y: scroll;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding: 0;
	font-size: 1.6rem;
	color: #301c18;
}

a {
	text-decoration: none;
	color: #000;
}

li {
	list-style: none;
}

figure {
	margin: 0;
}

/*////////////////////////////
Layout
////////////////////////////*/
.inner-fluid {
	width: auto;
	margin-left: auto;
	margin-right: auto;
	padding-left: 5%;
	padding-right: 5%;
}

.inner {
	max-width: 1280px;
	width: auto;
	margin-left: auto;
	margin-right: auto;
	padding-left: 5%;
	padding-right: 5%;
}

.inner-s {
	max-width: 1100px;
	width: auto;
	margin-left: auto;
	margin-right: auto;
	padding-left: 5%;
	padding-right: 5%;
}

.box-flex {
	display: flex;
	justify-content: space-between;
}

.box-main {
	width: 52%;
}

.box-sub {
	width: 44%;
}

.box-flex p.gridbox-txt {
	font-size: 1rem;
	font-weight: bold;
	padding: 0.5rem;
	text-align: center;
}

.box-flex img {
	width: 100%;
}

::selection {
	background: #F33B8B;
	color: #fff;
	text-shadow: none;
}

/* 高さBOX */
.content-s {
	padding-top: 3%;
	padding-bottom: 3%;
}

.content-m {
	padding-top: 6%;
	padding-bottom: 6%;
}

.content-l {
	padding-top: 18%;
	padding-bottom: 18%;
}

.mb1 {
	margin-bottom: 1rem;
}

/* margin * padding */
.mb2 {
	margin-bottom: 2rem;
}

.mt2 {
	margin-top: 2rem;
}

.mb4 {
	margin-bottom: 4rem;
}

.mt4 {
	margin-top: 4rem;
}

.mb6 {
	margin-bottom: 6rem;
}

.pb4 {
	padding-bottom: 4rem;
}

@media screen and (max-width: 768px) {
	.box-flex {
		display: block;
	}

	.box-main {
		width: 100%;
	}

	.box-sub {
		width: 100%;
		margin-bottom: 0rem;
	}

	.inner {
		max-width: 768px;
	}

	.mb1 {
		margin-bottom: 0.2rem;
	}

	.mb2 {
		margin-bottom: 1rem;
	}

	.mt2 {
		margin-top: 1rem;
	}

	.mb4 {
		margin-bottom: 2rem;
	}

	.mb6 {
		margin-bottom: 4rem;
	}

	.mt4 {
		margin-top: 2rem;
	}

	.content-s {
		padding-top: 6%;
		padding-bottom: 6%;
	}

	.content-m {
		padding-top: 9%;
		padding-bottom: 9%;
	}

	.content-l {
		padding-top: 24%;
		padding-bottom: 24%;
	}
}

/*////////////////////////////
Icon
////////////////////////////*/
.gg-chevron-right-r {
	box-sizing: border-box;
	position: relative;
	display: inline-block;
	transform: scale(var(--ggs, 1));
	width: 24px;
	height: 24px;
	border: 1px solid;
	border-radius: 0px;
	margin-right: 10px;
	vertical-align: sub;
	color: #b9b9b9;
}

.gg-chevron-right-r::after {
	content: "";
	display: block;
	box-sizing: border-box;
	position: absolute;
	width: 6px;
	height: 6px;
	border-bottom: 2px solid;
	border-right: 2px solid;
	transform: rotate(-45deg);
	left: 7px;
	top: 8px
}

@media screen and (max-width: 768px) {
	.gg-chevron-right-r {
		width: 18px;
		height: 18px;
		border: 2px solid;
		border-radius: 4px;
		margin-right: 7px;
		vertical-align: sub;
	}

	.gg-chevron-right-r::after {
		width: 6px;
		height: 6px;
		left: 2.5px;
		top: 4px
	}
}

/*////////////////////////////
Grid box
////////////////////////////*/
.gridbox {
	display: flex;
	flex-wrap: wrap;
	/*width: calc(100% + 32px);*/
	overflow: hidden;
	justify-content: space-around;
}

.gridbox.around {
	justify-content: space-around !important;
}

.gridbox a {
	display: block;
	position: relative;
}

.gridbox p {
	line-height: 1.8rem;
	overflow: hidden;
	font-size: 0.9rem;
}

.gridbox p.gridbox-txt {
	font-size: 1rem;
	font-weight: bold;
	background: #000;
	padding: 0.5rem;
	text-align: center;
	color: #fff;
}

/* 2列 */
.gridbox div.grid-content2 {
	width: calc(50% - 32px);
	margin: 0 32px 32px 0;
}

/* 3列 */
.gridbox div.grid-content3 {
	width: 30%;
	margin: 0 0 2% 0;
}

/* 4列 */
.gridbox div.grid-content4 {
	width: calc(25% - 8px);
	margin: 0 8px 8px 0;
}

.gridbox div.grid-content5 {
	width: calc(60% - 32px);
	margin: 0 32px 32px 0;
}

.gridbox div img {
	width: 100%;
	height: auto;
	margin-bottom: 0.5rem;
	margin-top: 0;
}

.gridbox div.grid-content2 h2,
.gridbox div.grid-content2 h3,
.gridbox div.grid-content3 h2,
.gridbox div.grid-content3 h3 {
	font-size: 1.2rem;
	line-height: 2rem;
	margin-bottom: 0.4rem;
}

.gridbox.logobox {
	background: #fff;
	justify-content: space-between;
	padding: 5%;
	display: block;
}

.gridbox img.logo-area {
	width: 14%;
	height: fit-content;
	padding: 0 1%;
}

/* smilephoto */
#smilephoto .gridbox div img {
	width: 100%;
	height: auto;
	margin-bottom: 0.8rem;
}

#smilephoto .gridbox div.grid-content3 h2 {
	font-size: 1rem;
	line-height: 1.6rem;
	margin-bottom: 0.4rem;
	font-weight: normal;
	text-align: center;
	color: #6b6b6b;
}

ul.post-categories {
	display: flex;
	flex-wrap: wrap;
	overflow: hidden;
	justify-content: flex-start;
}

ul.post-categories li {
	font-size: 0.75rem;
	font-weight: bold;
	color: #008cd0;
	background: #fff;
	padding: 4px 16px;
	margin: 0 8px 8px 0;
	border-radius: 50px;
	line-height: 1.2rem;
	border: 1px solid #008cd0;
}

ul.post-categories li time {
	line-height: 1.6rem;
	color: #6b6b6b;
}

ul.post-categories a {}

@media screen and (max-width: 768px) {
	.gridbox {
		display: block;
		flex-wrap: wrap;
		width: 100%;
		margin-top: 0px;
	}

	.gridbox div img {
		margin-bottom: 0;
	}

	.gridbox div.grid-content3 h2 {
		height: auto;
	}

	.gridbox div.grid-content3 {
		width: 100%;
		margin: 0 0 1rem;
	}

	#recommend .gridbox div.grid-content3:nth-child(3) {
		width: 100%;
		margin-bottom: 0;
	}

	.gridbox div.grid-content2 {
		width: 100%;
		margin: 0 0 16px;
	}

	.gridbox div.grid-content3 h2,
	.gridbox div.grid-content3 h3 {
		font-size: 1.1rem;
	}

	.gridbox p {
		font-size: 0.9rem;
		line-height: 1.4rem;
	}

	.gridbox div.grid-content4 {
		width: 100%;
		margin: 0 0 24px 0;
	}
}

/*////////////////////////////
カテゴリリスト
////////////////////////////*/

.category-list ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
}

.category-list li {
	border: 1px solid #c09d6d;
	padding: 1rem;
	text-align: center;
	font-size: 1.1rem;
	width: 21.5%;
	border-radius: 8px;
	margin-bottom: 1rem;
	font-size: 0.9rem;
}

.category-list li a {
	color: #c09d6d;
	font-weight: bold;
	display: block;
}

@media screen and (max-width: 768px) {
	.category-list ul {
		display: block;
	}

	.category-list li {
		width: 90%;
		padding: 1rem;
	}

	.category-list li:last-child {
		margin-bottom: 0;
	}
}

/*////////////////////////////
背景 style
////////////////////////////*/
.bg-style-01 {
	background-color: #fff;
}

.bg-style-02 {
	background: #008cd014;
}

.bg-style-03 {
	background: #008bd075;
}

.bg-style-right::after {
	content: "";
	position: absolute;
	width: 40%;
	height: 100%;
	background-color: #F33B8B;
	top: 0;
	z-index: -1;
}

.bg-style-01 .gridbox div {
	background-color: #fff;
}

.bg-style-01 .gridbox div h3 {
	padding: 8px 24px 0;
	font-weight: bold;
}

.bg-style-01 .gridbox div p {
	color: #565656;
	font-size: 0.9rem;
	padding: 0 24px 24px;
}

.border-top {
	border-top: 1px solid #ccc;
}

.border-all-w {
	border: 0.8px solid #fff;
}


@media screen and (max-width: 768px) {}

/*////////////////////////////
Dl style
////////////////////////////*/
.dl-right {
	display: flex;
	justify-content: space-between;
	padding: 24px 0;
	border-bottom: 1px solid #d8d8d8;
	font-size: 1rem;
	margin: 0 auto;
	line-height: 2rem;
}

.dl-right dt {
	width: 23%;
	text-align: right;
	font-size: 0.85rem;
}

.dl-right dt a {
	color: #fff;
	text-decoration: underline;
}

.dl-right dd {
	width: 70%;
}

.dl-right dd a {
	color: #000;
	text-decoration: underline;
}

/*////////////////////////////
Button style
////////////////////////////*/
.btn {
	text-align: center;
	font-weight: bold;
	line-height: 2.8rem;
}

.btn-list {
	display: flex;
	justify-content: center;
	align-items: center;
}

.btn-list a {
	margin: 0 1% 0;
}

.btn-main {
	padding: 24px 40px;
	font-size: 1rem;
	font-weight: bold;
	border-radius: 8px;
}

.btn-grid-tel {
	background: #fff;
	font-size: 1.1rem;
	color: #1c1c1c;
	border: 1px solid #1c1c1c;
	border-radius: 8px;
	margin-top: 0.5rem;
}

.btn-main-black {
	background: #000;
	color: #fff;
	border: 1px solid #008cd0;
}

.btn-main-white {
	background: #fff;
	color: #008cd0;
	border: 2px solid #008cd0;
}

.btn-main-red {
	background: #F33B8B;
	color: #fff;
}

.single-inner a.btn-main-red {
	background: #F33B8B;
	color: #fff !important;
	text-decoration: none;
}

.btn-main-black:hover {
	background: #187ec4;
	color: #fff;
}

.btn-main-white:hover {
	background: #187ec4;
	color: #fff;
}

.btn-main-red:hover {
	background: #b73d6e;
}

.dl-right dd a.btn-main-red {
	color: #F33B8B;
	text-decoration: none;
	border: 2px solid #F33B8B;
	background: #fff;
	font-size: 1.4rem;
	padding: 0.3rem 3rem;
}

@media screen and (max-width: 768px) {
	.btn {
		width: 100%;
	}

	.btn-main {
		padding: 8px 0px;
		font-size: 1.1rem;
		width: 100%;
		display: inline-block;
		text-align: center;
	}

	.dl-right dd a.btn-main-red {
		line-height: 1.3rem;
		display: revert;
		padding: 0.3rem 1rem;
	}
}

/*////////////////////////////
Text style
////////////////////////////*/
main p {
	line-height: 2rem;
	font-size: 1rem;
}

.txt-warning {
	background: #F33B8B;
	color: #fff;
	font-weight: bold;
	padding: 0 8px;
}

.txt-warning a {
	color: #fff;
}

.txt-small {
	font-size: 0.85rem;
	line-height: 1.6rem;
	color: #565656;
}

.txt-bold {
	font-weight: bold;
}

.txt-center {
	text-align: center;
}

.txt-left {
	text-align: left;
}

.txt-right {
	text-align: right;
}

.txt-white {
	color: #fff;
}

.txt-gold {
	color: #c09d6d;
}

.txt-red {
	color: #c60120;
}

.txt-gray {
	color: #bdbdbd;
}

.txt-blue {
	color: #008ccf;
}

.txt-en {
	font-family: 'Montserrat', sans-serif;
	font-weight: normal;
}

.box-area {
	position: relative;
	padding: 4% 0;
}

.box-area-catch {
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.5;
}

.txt-box {
	max-width: 800px;
	margin: 0px auto 3rem;
	text-align: left;
	letter-spacing: .05em;
}

.box-area .box-area-catch {
	margin: 0 0 2% 25%;
}

.box-area .txt-box {
	max-width: none;
	margin: 0 0 0 25%;
}

.box-area .box-area-title {
	position: absolute;
	left: 0;
	font-weight: bold;
	color: #c60120;
	font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
	main p {
		line-height: 1.8rem;
		font-size: 1rem;
	}

	.txt-small {
		font-size: 0.75rem;
		line-height: 1.2rem;
	}
}

/*////////////////////////////
Title style
////////////////////////////*/
.tit-main {
	margin: 0 0 1.2rem 0;
}

.tit-main h2 {
	font-weight: bold;
	font-size: 1.4rem;
	margin-bottom: 1.2rem;
	color: #57b4dc;
}

.copy-main {
	font-size: 2.2rem;
	margin-bottom: 1.2rem;
	line-height: 3rem;
	color: #008ccf;
	font-weight: 700;
}

.copy-sub {
	font-weight: bold;
	font-size: 1.2rem;
	line-height: 2rem;
	color: #005a86;
}

.copy-sub-sub {
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: 1.2rem;
	line-height: 2.4rem;
}

.tit-main p.txt-en span {
	font-size: 2rem;
}

.tit-main p.txt-en {
	font-size: 4.8rem;
	margin-bottom: 2rem;
	line-height: 4.4rem;
}

@media screen and (max-width: 768px) {
	.tit-main {
		margin: 0 0 0.5rem 0;
		text-align: center;
	}

	.copy-main {
		font-size: 1.6rem;
		line-height: 2.3rem;
		margin-bottom: 0.5rem;
	}

	.tit-main p.txt-en {
		font-size: 3rem;
		margin-bottom: 16px;
	}

	.tit-sub {
		font-weight: bold;
		font-size: 1.1rem;
		margin-bottom: 24px;
	}

	.copy-sub {
		font-size: 1.1rem;
		line-height: 1.6rem;
	}

	.copy-sub-sub {
		font-size: 1.2rem;
		margin-bottom: 0.5rem;
		line-height: 1.8rem;
	}

	.tit-main h2 {
		font-size: 1.1rem;
		margin-bottom: 0.8rem;
	}
}

/* 2nd */
.tit-main-2nd {
	margin: 0 0 3rem 0;
	text-align: center;
}

.tit-main-2nd h2 {
	font-size: 2rem;
	margin-bottom: 2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	position: relative;
	text-align: center;
	padding: 1em;
}

.tit-main-2nd h2::after {
	position: absolute;
	content: '';
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 100px;
	height: 10px;
	background: #c60120
}


/*////////////////////////////
Table style
////////////////////////////*/
table {
	border-collapse: collapse;
	font-size: 1.2rem;
	border-spacing: 0;
	width: 100%;
	border: #eee;
	line-height: 2rem;
}

table a {
	text-decoration: none;
	color: #F33B8B;
}

th,
td {
	border: solid 1px;
	padding: 16px;
}

table tr {
	border-bottom: solid 1px #eee;
}

table th {
	text-align: center;
	background-color: #f5f5f5;
}

table td {
	background-color: #fff;
}

table th,
table td {
	padding: 16px;
	line-height: 1.8rem;
	font-size: 1rem;
	border-color: #c2c2c2;
}

table td.icon {
	background-size: 35px;
	background-position: left 5px center;
	background-repeat: no-repeat;
	padding-left: 30px;
}

.tbl-r02 td dt {
	font-size: 1rem;
	color: #565656;
}

.tbl-r02 td dd {
	font-size: 1.2rem;
	font-weight: bold;
}

.tbl-r02 td dd.small {
	font-size: 1rem;
	color: #565656;
}

.tbl-r02 th {
	background: #c09d6d;
	border: solid 1px #ccc;
	color: #fff;
	padding: 0 10px;
	width: 25%;
}

.tbl-r02 td {
	border: solid 1px #ccc;
}

.tbl-r02 td dl {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

@media screen and (max-width: 640px) {
	.last td:last-child {
		border-bottom: solid 1px #ccc;
	}

	.tbl-r02 {
		width: 100%
	}

	.tbl-r02 th {
		border-bottom: none;

	}

	.tbl-r02 td {
		border-bottom: none;
		display: block;
	}
}

/*////////////////////////////
背景パララックス
////////////////////////////*/
.parallax_content {
	background-position: center top;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	display: table;
	width: 100%;
}

.parallax_title {
	height: 24vh;
}

.parallax_l {
	min-height: 640px;
}

.parallax_m {
	height: 26vh;
}

.parallax_content.img_bg_01 {
	background-image: url("../../asset/img/page/concept-bg-03.webp");
}

.parallax_content.img_bg_02 {
	background-image: url("../../asset/img/common/mainVisual-bg.webp");
	background-size: cover;
}

.parallax_content.img_bg_03 {
	background-image: url("../../asset/img/common/reserve-bg.webp");
}

.parallax_content.img_bg_04 {
	background-image: url("../../asset/img/common/bg-01.webp");
	position: relative;
}

@media screen and (max-width: 1100px) {
	.parallax_title {
		height: 12vh;
	}
}

@media screen and (max-width: 768px) {
	.parallax_content {
		background-position: center top;
		background-repeat: no-repeat;
		background-attachment: fixed;
		background-size: cover;
		background: #000;
	}

	.parallax_l {
		min-height: 56vh;
	}
}

/*////////////////////////////
Br
////////////////////////////*/
@media only screen and (min-width: 769px) {
	.br-sp {
		display: none;
	}

	.br-pc {
		display: block;
	}
}

@media only screen and (max-width: 768px) {
	.br-sp {
		display: block;
	}

	.br-pc {
		display: none;
	}
}

/*=============================
header
==============================*/
.page-header.recruit {
	padding: 24px 0;
}

.page-header.recruit-2nd {
	background-color: #000;
}

.header {
	position: relative;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: bold;
	margin: 0 5%;
	font-size: 1rem;
}

.page-header.recruit .header {
	background: #000000d9;
	padding: 0 40px;
	border-radius: 50px;
	color: #fff;
}

.logo {
	padding: 32px 0 20px;
	margin-right: auto;
}

.logo img {
	width: 440px;
	height: auto;
}

.page-header.recruit .logo {
	padding: 24px 0;
}

@media screen and (max-width: 768px) {
	.page-header.recruit {
		padding: 0;
	}

	.page-header.recruit .header {
		padding: 0;
		border-radius: none;
	}

	.page-header.recruit .logo {
		padding: 0px 0;
	}
}

/*////////////////////////////
Page-2nd
////////////////////////////*/
.page-2nd img {
	width: 100%;
	height: auto;
	margin: 0 0 32px;
}

.page-title {
	padding: 80px 0;
	text-align: center;
}

.page-title-main p {
	font-size: 1.6rem;
	margin-bottom: 1rem;
	font-family: 'Montserrat', sans-serif;
	line-height: 1.8rem;
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
}

.bg-style-03 .page-title-main p {
	color: #fff;
}

.page-title h1 {
	font-size: 2.4rem;
	font-weight: 800;
}

.page-title-sub p {
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 2.8rem;
	color: #000;
}

.bg-style-03 .page-title-sub p {
	color: #fff;
}

@media screen and (max-width: 768px) {
	.page-2nd img {
		margin: 0 0 1rem;
	}

	.page-contents {
		top: -104px;
	}

	.page-contents img {
		margin: 24px 0;
	}

	.page-title {
		padding: 60px 0 0px;
	}

	.page-title-main p {
		font-size: 1rem;
		line-height: 2.4rem;
		margin-bottom: 0;
	}

	.page-title h1 {
		font-size: 1.8rem;
		margin-bottom: 1rem;
		font-weight: bold;
	}

	.page-title-sub p {
		font-size: 1.4rem;
		line-height: 2rem;
	}
}

/*////////////////////////////
PC用ナビゲーション（ トップ＋2nd共通）
////////////////////////////*/
.pc-nav {
	margin-left: auto;
	margin-top: 1rem;
}

.pc-nav>ul {
	display: flex;
}

.pc-nav>ul>li {
	text-align: center;
	margin-bottom: 8px;
}

.pc-nav>ul>li>a {
	color: #343d41m;
	font-size: 0.9rem;
}

.pc-nav>ul>li.coupon>a {
	color: #fff;
}

.pc-nav>ul>li.reqruit>a {
	color: #fff;
}

.pc-nav>ul>li.reqruit>a:hover {
	background: #8e6519;
	color: #fff;
}

.pc-nav>ul>li>a:hover {
	color: #F33B8B;
}

.pc-nav-reserve {
	text-align: center;
	display: contents;
}

.pc-nav-reserve>a.form {
	color: #fff;
	display: block;
	padding: 16px 24px;
	border-radius: 8px;
	margin-left: 16px;
}

.pc-nav-reserve>a.form.form01 {
	background: #F33B8B;
}

.pc-nav-reserve>a.form.form02 {
	background: #008ccf;
}


.pc-nav-reserve>a.nav-tel {
	color: #008ccf;
	display: block;
	font-weight: 700;
	font-size: 1.6rem;
}

.pc-nav-reserve>a.nav-tel::before {
	content: "";
	position: relative;
	top: 6px;
	display: inline-block;
	width: 36px;
	height: 36px;
	background: url("../../asset/img/common/icon_phone.webp") no-repeat left center;
	background-size: cover;
}

/* PCサブナビ */
.nav-sub {
	justify-content: end;
	font-size: 0.9rem;
	margin-bottom: 0.8rem;
}

.nav-sub a {
	margin: 8px;
	font-size: 0.9rem;
	color: #fff;
	padding: 4px 12px;
	border-radius: 8px;
	border: 1px solid #fff;
	background: #000;
}

/* PCメインナビ */
.nav-main {
	font-size: 1rem;
	justify-content: right;
}

.nav-main li {
	margin: 0 16px;
}

/* スマホ */
.sp-nav__box {
	position: fixed;
	top: 0;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 80px;
	width: 80px;
	z-index: 1000;
	background-color: #F33B8B;
}

.sp-nav__box span,
.sp-nav__box span:before,
.sp-nav__box span:after {
	content: "";
	display: block;
	height: 3px;
	width: 25px;
	border-radius: 3px;
	background-color: #ffffff;
	position: absolute;
}

.sp-nav__box span:before {
	bottom: 8px;
}

.sp-nav__box span:after {
	top: 8px;
}

#sp-nav__check {
	display: none;
}

#sp-nav__check:checked~.sp-nav__box {
	background: #1c1c1c;
}

#sp-nav__check:checked~.sp-nav__box span {
	background: rgba(255, 255, 255, 0);
}

#sp-nav__check:checked~.sp-nav__box span::before {
	bottom: 0;
	transform: rotate(45deg);
}

#sp-nav__check:checked~.sp-nav__box span::after {
	top: 0;
	transform: rotate(-45deg);
}

#sp-nav__check:checked~.hamburger__content {
	left: 0;
}

@media screen and (max-width: 980px) {
	.pc-nav {
		display: none;
	}

	.pc-nav-reserve {
		display: none;
	}

	.sp-nav__box {
		height: 64px;
		width: 64px;
	}
}

@media screen and (min-width: 981px) {
	.sp-nav {
		display: none;
	}
}

/* 開閉時 */
.sp-nav_menu {
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 100%;
	z-index: 90;
	padding: 24px;
	background-color: #1c1c1cfe;
	transition: all 0.4s;
	box-sizing: border-box;
}

.sp-nav-tit {
	color: #808080;
	margin-bottom: 8px;
}

.sp-nav-list {
	margin-bottom: 24px;
}

.sp-nav-list a {
	display: block;
	box-sizing: border-box;
	color: #ffffff;
	text-decoration: none;
	padding: 22px 0px;
	font-size: 1.1rem;
	border-bottom: 1px solid #808080;
}

.sp-nav-contact {
	margin-bottom: 16px;
}

.sp-nav-contact li {
	width: 100%;
	text-align: center;
	margin-bottom: 15px;
}

.sp-nav-contact a {
	padding: 16px;
	text-align: center;
	display: block;
	border-radius: 8px;
	color: #fff;
	font-size: 1.2rem;
}

.sp-tel {
	background: #c09d6d;
	border: #c09d6d;
}

.sp-form {
	background: #F33B8B;
	border: #F33B8B;
}

#sp-nav__check:checked~.sp-nav_menu {
	left: 0;
}

.sp-nav-sub {
	display: flex;
	justify-content: space-between;
}

.sp-nav-sub li {
	margin: 0 4px;
}

.sp-nav-sub a {
	color: #fff;
	padding: 8px 12px;
	font-size: 0.85rem;
	font-weight: normal;
	background-color: #000;
	border-radius: 8px;
}

/*=============================
Top
==============================*/
.top-header {
	height: 80vh;
	position: relative;
	margin-bottom: 12%;
}

.top-header.recruit {
	margin-bottom: 40px;
}

.top-header-wrapper {
	height: 60vh;
	position: relative;
}

@media screen and (max-width: 980px) {
	.logo {
		padding: 16px 0 6px;
	}

	.logo img {
		width: 280px;
		padding: 0;
	}

	.top-header-wrapper {
		height: 56vh;
	}

	.top-header {
		height: 66vh;
	}

	.top-header.recruit {
		margin-bottom: 0px;
	}
}

@media screen and (max-width: 768px) {
	.top-header-wrapper {
		border: none;
	}

}

@media screen and (max-width: 375px) {
	.top-header-wrapper {
		height: 80vh;
	}

}

/*////////////////////////////
MainVisual
////////////////////////////*/
.video-area {
	width: 100%;
	/*height: calc(100% - 0px);*/
	height: 64vh;
	flex-shrink: 0;
	position: relative;
	background: url("../../asset/img/common/bg-01.webp") no-repeat #008ccf;
	background-size: cover;
	background-position: left center;
	background: #00223a99;
}

.video-area video {
	position: absolute;
	top: 50%;
	left: 50%;
	object-fit: cover;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	background: #00000091;
}

@media screen and (max-width: 768px) {
	.video-area {
		height: 56vh;
	}
}

@media screen and (max-width: 375px) {
	.video-area {
		height: 86vh;
	}
}

.mainVisual-box {
	position: absolute;
	top: 50%;
	left: 8%;
	z-index: 3;
	font-weight: 600;
	width: 84%;
}

.mainVisual-box.recruit {
	top: 31%;
}

.mainVisual-box-top {
	position: absolute;
	top: 24%;
	left: 8%;
	z-index: 3;
	width: 80%;
	text-align: center;
}

.mainVisual-box-top .mainVisual-txt-main {
	font-size: clamp(2.8rem, 3.6vw, 6rem);
	display: inline-block;
	color: #fff;
	margin-bottom: 1.6rem;
	font-weight: 700;
}

.mainVisual-box-top .mainVisual-txt-main-sub {
	font-size: clamp(3.2rem, 4vw, 7rem);
	margin-bottom: 1rem;
	font-weight: 800;
	color: #fff;
	letter-spacing: 1px;
}

.mainVisual-box-top .mainVisual-txt-main-sub-sub {
	font-size: clamp(1.3rem, 2vw, 4rem);
	margin-bottom: 1.8rem;
	font-weight: 800;
	line-height: 2rem;
	color: #fff301;
	letter-spacing: 1px;

}

.mainVisual-box .mainVisual-txt-main {
	font-size: clamp(2rem, 3rem + 3vw, 6rem);
	display: inline-block;
	color: #fff;
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 3px solid #fff;
}

.mainVisual-box .mainVisual-txt-main-recruit {
	font-size: clamp(1rem, 2rem + 3vw, 6rem);
	display: inline-block;
	color: #fff;
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 3px solid #fff;
	font-family: 'Noto Sans JP', sans-serif;
}

.mainVisual-box .mainVisual-txt-main-sub {
	font-size: clamp(1rem, -0.091rem + 2.4vw, 8rem);
	margin-bottom: 2rem;
	color: #fff;

}

.mainVisual-box .mainVisual-txt-main-sub.recruit {
	letter-spacing: 4px;
}

.mainVisual-txt-sub {
	color: #fff;
	font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
	.mainVisual-box-top {
		top: 16%;
		margin: 0 auto;
		left: 11%;
	}

	.mainVisual-box {
		top: 16vh;
		width: 95%;
		left: 5%;
	}

	.mainVisual-box-top .mainVisual-txt-main {
		padding: 0.6rem 0rem 0;
		font-size: 2.2rem;
		line-height: 3.4rem;
		margin: 0 0 0.5rem 0;
	}

	.mainVisual-box-top .mainVisual-txt-main-sub {
		font-size: 2.4rem;
		letter-spacing: 1px;
	}

	.mainVisual-box .mainVisual-txt-main {
		font-size: 2.6rem;
		line-height: 4rem;
		padding: 0 0 1rem 0;
		letter-spacing: -1px;
	}

	.mainVisual-box .mainVisual-txt-main-sub {
		font-size: 1.4rem;
		line-height: 2rem;
	}

	.mainVisual-box.recruit {
		top: 25%;
	}

	.mainVisual-txt-sub {
		font-size: 0.9rem;
	}
}

@media screen and (max-width: 376px) {
	.mainVisual-box {
		top: 20vh;
	}

	.mainVisual-txt-main {
		padding: 0.5rem;
		font-size: 2.1rem;
	}
}

/*////////////////////////////
HeadLine
////////////////////////////*/
.headlins-box {
	bottom: 30px;
	margin: 0 auto;
	padding: 8px 0;
	background: #fff1f6;
	color: #F33B8B;
	border-bottom: 1px solid #e6c1d1;
}

.headlins-box .inner-fluid {
	display: flex;
}

.headlins-box h2 {
	font-size: 1rem;
	margin-right: 1rem;
	line-height: 1.6rem;
}

.headlins-box p {
	line-height: 1.6rem;
	font-size: 0.8rem;
	font-weight: bold;
}

@media screen and (max-width: 768px) {
	.headlins-box .inner-fluid {
		display: block;
		padding-left: 0;
		padding-right: 0;
	}

	.headlins-box h2 {
		font-size: 0.85rem;
	}

	.headlins-box {
		padding: 16px;
		width: 100%;
		display: block;
		box-sizing: border-box;
	}

	.headlins-box p {
		font-size: 0.8rem;
		line-height: 1.2rem;
		width: 85%;
	}
}

/*=============================
#menu
==============================*/
#menu {
	padding: 10vh 0;
	color: #fff;
	/*background: url("../../asset/img/common/bg-02.webp") no-repeat #000;*/
	background: #000;
	background-size: auto;
	background-position: left center;
}

#menu .btn {
	text-align: left;
}

/* scroll + main.js */
.scroll_area {
	overflow-x: scroll;
	white-space: nowrap;
	-ms-overflow-style: none;
	scrollbar-width: none;
	/*Firefoxへの対応*/
	border-radius: 8px;
	height: 100%;
	width: 52%;
}

/*Google Chrome、Safariへの対応*/
.scroll_area::-webkit-scrollbar {
	display: none;
}

.slideshow-menu {
	display: flex;
	animation: scroll 16s infinite linear;
}

.slide-content-menu {
	display: inline-flex;
	flex-shrink: 0;
	margin: 0 8px;
}

.slide-content-menu img {
	width: 300px;
	height: auto;
	border-radius: 20px;
}

@keyframes scroll {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-100%);
	}
}

@media screen and (max-width: 768px) {
	#menu {
		padding: 56px 0;
	}

	.scroll_area {
		width: 100%;
		margin-top: 24px;
	}

	.slide-content-menu img {
		width: 240px;
	}

	.tit-menu {
		display: block;
	}

	.tit-menu h3 {
		margin-right: 1rem;
		margin-right: 0;
		margin-bottom: 0.5rem;
	}

	.tit-menu p {
		margin-bottom: 0.5rem;
	}
}

/*2nd*/

/*=============================
#pickup
==============================*/
#pickup {
	width: 100%;
	padding: 6rem 0;
}

#pickup .tit-main {
	text-align: center;
}

.new {
	position: absolute;
	width: 100%;
	aspect-ratio: 16/9;
	overflow: hidden;
}

.new::before {
	position: absolute;
	content: "NEW";
	top: 12px;
	right: 12px;
	background-color: #F33B8B;
	padding: 20px 12px;
	font-size: 0.9rem;
	color: #fff;
	border-radius: 60px;
	font-weight: bold;
}

.gridbox .post-categories li.recommend-food a {
	background-color: #c09d6d;
}

.gridbox .post-categories li.course a {
	background-color: #000;
}

@media screen and (max-width: 768px) {
	#pickup {
		padding: 32px 0 32px 0;
	}
}

/*////////////////////////////
pagination
////////////////////////////*/
.pagination {
	font-size: 1rem;
	font-weight: bold;
}

.pagination a {
	padding: 16px 24px;
	display: inline-block;
	border: 1px solid #c09d6d;
	border-radius: 8px;
	margin-right: 4px;
	color: #1c1c1c;
	background: #fff;
}

.page-numbers.current {
	padding: 16px 24px;
	background: #c09d6d;
	border: 1px solid #c09d6d;
	color: #fff;
	border-radius: 8px;
	margin-right: 4px;
}

/*=============================
#concept
==============================*/

.bg-rotate::after {
	content: "";
	width: 150%;
	height: 640px;
	display: block;
	background-color: #c09d6d;
	position: absolute;
	top: 100px;
	left: -25%;
	z-index: -1;
	transform: rotate(165.7deg);
}



/*=============================
Loop text
==============================*/
.txt-loop {
	width: 100%;
	overflow: hidden;
	white-space: nowrap;
}

@keyframes hscroll {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-100%);
	}
}

.txt-loop ul {
	display: inline-block;
	margin: 0;
	padding: 0;
	animation: hscroll 40s linear infinite;
	margin-right: 8%;
}

.txt-loop li {
	display: inline-block;
	font-weight: 700;
	font-size: 10rem;
	color: #ebebeb;
	font-family: 'Montserrat', sans-serif;
	margin-left: 3rem;
}

.txt-loop li.big {
	font-size: 14rem;
}

@media screen and (max-width: 768px) {
	.txt-loop li {
		font-size: 6rem;
	}

	.txt-loop li.big {
		font-size: 8rem;
	}
}

/*=============================
#price
==============================*/
#price {
	position: relative;
}

.w-box {
	background: #fff;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 32%;
	height: 22rem;
	padding: 54px;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.w-box {
		width: 80%;
		padding: 60px 24px 24px;
		height: 14rem;
	}
}

/*=============================
#smilephoto
==============================*/
#smilephoto {
	position: relative;
}

#smilephoto .box-flex {
	padding: 120px 0;
}

#smilephoto .box-left {
	margin-top: 80px;
	width: 50%;
}

#smilephoto .box-left,
#smilephoto .btn {
	text-align: right;
}

.smilephoto-bg {
	width: 45%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.smilephoto-bg img {
	width: 100%;
}

@media screen and (max-width: 768px) {
	#smilephoto .box-flex {
		padding: 40px 0;
	}

	#smilephoto .box-left {
		margin-top: 0px;
		width: 90%;
	}

	#smilephoto::after {
		content: none;
	}

	.smilephoto-bg {
		width: 100%;
		display: block;
		margin-top: 24px;
	}

	#smilephoto .box-left {
		text-align: left;
	}

	#smilephoto .btn {
		text-align: center;
	}
}

/*=============================
#reserve
==============================*/
#reserve {
	text-align: center;
	color: #fff;
}

#reserve .inner-fluid {
	text-align: center;
	padding: 100px 0;
	display: table-cell;
	vertical-align: middle;
	background: #00000091;
}

#reserve .btn {
	margin-bottom: 0;
}

#reserve p {
	color: #fff;
	font-size: 1.1rem;
	line-height: 2.4rem;
}

.tel {
	margin: 24px 0;
}

.tel a {
	font-size: 1.8rem;
	font-weight: bold;
	color: #fff;
}

@media screen and (max-width: 768px) {
	#reserve .inner-fluid {
		padding: 40px 24px;
	}

	.tel a {
		font-size: 1.6rem;
	}

	#reserve p {
		font-size: 0.9rem;
		line-height: 1.6rem;
	}
}

/*=============================
#SNS
==============================*/
#sns {
	padding: 48px 0 48px;
}

#sns h3 {
	text-align: center;
	margin-bottom: 16px;
	font-size: 4rem;
	font-family: 'Montserrat', sans-serif;
}

#sns p {
	text-align: center;
	margin-bottom: 24px;
}

@media screen and (max-width: 768px) {
	#sns {
		padding: 40px 0 48px;
	}

	#sns h3 {
		font-size: 2rem;
	}

	#sns p {
		margin-bottom: 8px;
	}
}

/*=============================
#FAQ
==============================*/
#faq li {
	padding: 16px 0;
	border-bottom: 1px solid #ccc;
}

#faq li div.faq-tit {
	font-size: 1.4rem;
	font-weight: bold;
	margin-bottom: 1rem;
}

#faq li div.faq-tit::before {
	content: "Q";
	margin-right: 10px;
}

#faq li .faq-txt {
	font-size: 1rem;
}

@media screen and (max-width: 768px) {
	#faq li div.faq-tit {
		font-size: 1.1rem;
		margin-bottom: 0.5rem;
	}

	#faq li .faq-txt {
		font-size: 0.85rem;
		line-height: 1.6rem;
	}
}

/*////////////////////////////
Slide
////////////////////////////*/
.slide-content {
	width: 240px;
	height: 240px;
	margin: 0 16px;
}

.slide-content img {
	width: 100%;
	margin-bottom: 0;
	border-radius: 8px;
}

.slide-wrap {
	overflow: hidden;
	display: flex;
	align-items: center;
	height: 340px;
}

.slideshow {
	display: flex;
	-webkit-animation: loop-slide 40s infinite linear 1s both;
	animation: loop-slide 40s infinite linear 1s both;
}

@-webkit-keyframes loop-slide {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-100%);
	}
}

@keyframes loop-slide {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-100%);
	}
}

@media screen and (max-width: 768px) {
	.slide-content {
		width: 150px;
		height: 150px;
		margin: 0 16px;
	}

	.slide-wrap {
		height: 150px;
		margin-bottom: 0px;
		margin-top: 3rem;
	}
}

/*////////////////////////////
sns+fottoer共通
////////////////////////////*/
.sns-link {
	display: flex;
	margin: 0 auto;

	align-items: center;
}

#sns .sns-link {
	justify-content: center;
}

#sns .sns-link li {
	width: 40px;
	height: auto;
	margin: 0 16px;
}

#sns .sns-link li img,
footer .sns-link li img {
	width: 100%;
}

footer .sns-link li {
	width: 24px;
	height: auto;
	margin: 1rem 1rem 1rem 0;
	opacity: 0.5;
}

/*=============================
#foot-link
==============================*/
#foot-link {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	color: #c09d6d;
}

#foot-link div.foot-link-btn {
	border: 1px solid #c09d6d;
	padding-top: 3%;
	padding-bottom: 3%;
	text-align: center;
	width: 48%;
	background: #fff;
}

#foot-link p {
	font-size: 2rem;
	margin-bottom: 16px;
}

#foot-link h3 {
	font-size: 1.3rem;
}

#foot-link a {
	color: #c09d6d;
}

@media screen and (max-width: 768px) {
	#foot-link {
		margin-bottom: 0px;
	}

	#foot-link .inner-fluid {
		margin-bottom: 16px;
	}

	#foot-link div.foot-link-btn {
		width: 100%;
	}

	#foot-link div.foot-link-btn:first-child {
		margin-bottom: 16px;
	}

	#foot-link p {
		font-size: 0.8rem;
		margin-bottom: 0.5rem;
	}

	#foot-link h3 {
		font-size: 1rem;
	}
}

/*=============================
Footer
==============================*/
footer {
	background: #187ec4;
	color: #565656;
	padding: 3rem 0;
	line-height: 2rem;
	color: #fff;
}

.foot-tit-main {
	font-size: 1.8rem;
	font-weight: bold;
	margin: 16px 0;
	opacity: 0.9;
}

.foot-tit {
	font-size: 1rem;
	font-weight: bold;
	margin-bottom: 16px;
	opacity: 0.9;
}

footer p {
	font-size: 0.85rem;
	opacity: 0.8;
}

footer p a {
	color: #fff;
}

footer .caption {
	font-size: 0.6rem;
	opacity: 0.5;
	line-height: 1.6rem;
	margin-bottom: 24px;
}

footer .copyright {
	font-size: 0.85rem;
	opacity: 0.5;
	padding-top: 24px;
	border-top: solid #ffffff6f 1px;
}

.foot-inner {
	display: flex;
	justify-content: space-between;
}

.foot-txtbox {
	width: 60%;
	margin: 0 0 24px 0;
}

.foot-nav {
	display: flex;
	justify-content: space-between;
	width: calc(100% + 32px);
	margin-left: 2%;
}

.foot-nav ul {
	width: calc(33.333% - 32px);
}

.foot-nav a {
	color: #fff;
	font-size: 0.9rem;
}

@media screen and (max-width: 768px) {
	footer {
		padding: 2rem 0;
	}

	.foot-txtbox {
		width: 100%;
		text-align: center;
	}

	footer .caption {
		margin-bottom: 2%;
	}

	footer p {
		line-height: 1.4rem;
	}

	.foot-inner {
		display: block;
	}

	.foot-nav {
		display: none;
	}
}

/*////////////////////////////
PageTop
////////////////////////////*/
.pagetop {
	text-decoration: none;
	background: #fff;
	position: fixed;
	bottom: 40px;
	right: 24px;
	padding: 20px;
	color: #fff;
	transition: 0.2s;
	opacity: 0;
	border: solid 2px #038bd0;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2;
}

.pagetop__arrow {
	height: 10px;
	width: 10px;
	border-top: 3px solid #038bd0;
	border-right: 3px solid #038bd0;
	transform: translateY(20%) rotate(-45deg);
}

/*////////////////////////////
パンくず
////////////////////////////*/
.breadcrumb {
	background: #2d8bd0;
}

.breadcrumb.recruit {
	background: none;
}

.single_member .breadcrumb {
	padding: 40px 0 !important;
}

.breadcrumb-list {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	justify-content: flex-start;
	max-width: 1360px;
	padding: 10px auto;
	margin: 0 auto;
}

.breadcrumb-list li {
	font-size: 0.85rem;
	transition-duration: 0.3s;
	padding: 24px 0;
	color: #ffffff91;
}

.breadcrumb.recruit .breadcrumb-list li {
	color: #4f4f4f91;
}

.breadcrumb-list li:not(:last-child)::after {
	content: "/";
	font-family: "Font Awesome 5 Free";
	font-size: 8px;
	font-weight: 900;
	opacity: .4;
	display: inline-block;
	margin: 0 13px;
	-webkit-transform: translateY(-2px);
	transform: translateY(-2px);
}

.breadcrumb-list li a {
	color: #fff;
	font-size: 0.75rem;
}

.breadcrumb.recruit .breadcrumb-list li a {
	color: #000;
	font-size: 0.75rem;
}

.breadcrumb-list li a:hover {
	text-decoration: underline;
	opacity: 0.7;
}

@media screen and (max-width: 767px) {
	.breadcrumb {
		overflow-x: scroll;
		font-size: 0.75rem;
	}

	.breadcrumb-list {
		flex-wrap: nowrap;
		white-space: nowrap;
	}

	.breadcrumb-list li {
		font-size: 0.9rem;
	}

	.breadcrumb-list li a {
		font-size: 0.9rem;
	}
}

/*=============================
# タブリンク
==============================*/
.ul-tab {
	display: flex;
	justify-content: center;
}

.ul-tab li {
	display: block;
	/*width: 19%;*/
	border: 1px solid #fff;
}

.ul-tab li a {
	/*background: #000;
	color: #fff;*/
	padding: 16px 40px;
	display: block;
	text-align: center;
	font-size: 1rem;
	font-weight: bold;
	border-bottom: 1px solid #000;
}

.ul-tab li.tab-coupon a {
	background: #c09d6d;
	border: 1px solid #c09d6d;
}

.ul-tab li.active a {
	background: #fff;
	color: #000;
	border: 1px solid #797979;
}

ul-tab li a:hover {
	opacity: 0.6;
}

@media screen and (max-width: 767px) {
	.ul-tab {
		overflow-x: scroll;
		overflow-y: hidden;
		white-space: nowrap;
		justify-content: flex-start;
	}

	.ul-tab li {
		width: 100%;
	}

	.ul-tab li a {
		padding: 16px 8px;
		font-size: 0.9rem;
	}
}

/*=============================
# アコーディオン
==============================*/
.toggle {
	display: none;
}

.Label {
	padding: 1.6rem;
	display: block;
	color: #fff;
	background: #c09d6d;
}

.Label h3 {
	font-size: 1.4rem;
	letter-spacing: -1px;
}

.Label::before {
	content: "";
	width: 8px;
	height: 8px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	position: absolute;
	top: calc(50% - 4px);
	right: 28px;
	transform: rotate(135deg);
}

.Label,
.toggle-content {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}

.toggle-content {
	height: 0;
	margin-bottom: 2rem;
	padding: 0 20px;
	overflow: hidden;
}

.toggle-content h4 {
	font-size: 1.4rem;
	padding: 0 0 24px 0;
	color: #c09d6d;
}

.Label h3 span {
	font-size: 0.9rem;
	background-color: #fff;
	padding: 4px 8px;
	color: #c09d6d;
	margin-right: 8px;
	border-radius: 30px;
}

.toggle-content th {
	font-size: 1rem;
	width: 20%;
	background: #c09d6d1a;
}

.toggle-content table {
	background: #fff;
}

/*開閉時*/
.toggle:checked+.Label {
	border-radius: 0px;
}

.toggle:checked+.Label+.toggle-content {
	height: auto;
	padding: 4% 5% 5%;
	transition: all .3s;
	background: #fff;
	border: 1px solid #c09d6d;
}

.toggle:checked+.Label::before {
	transform: rotate(-45deg) !important;
}

@media screen and (max-width: 767px) {
	.Label {
		padding: 1rem;
		display: block;
		color: #fff;
		background: #c09d6d;
	}

	.Label h3 {
		font-size: 1rem;
		width: 90%;
		line-height: 1.8rem;
	}

	.toggle:checked+.Label+.toggle-content {
		padding: 24px 16px;
	}

	.toggle-content h4 {
		font-size: 1.2rem;
	}

	.toggle-content th,
	.toggle-content td {
		width: 90%;
		display: block;
		border-bottom: none;
		padding-top: 8px;
		padding-bottom: 8px;
	}

	.toggle-content table tr:last-child {
		border-bottom: solid 1px #9d9d9d;
		width: 90%;
	}

	.toggle-content {
		margin-bottom: 1rem;
	}
}

/*=============================
# single
==============================*/
.single-eyecatch {
	position: relative;
	overflow: hidden;
}

.articleHeadline {
	position: relative;
	z-index: 1;
	line-height: 1;
}

.eyecatchBlur {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	display: block;
	max-width: 100%;
	-webkit-filter: brightness(1.15) blur(20px);
	filter: brightness(1.15) blur(20px);
	opacity: .8;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.single-eyecatch-img {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	margin: auto;
}

.eyecatch-bg {
	position: relative;
	padding-bottom: 22vh;
	background: #008fde;
}

.eyecatch-bg img {
	position: absolute;
	top: 0;
	width: 100%;
	margin: 0;
}

.articleHeadline .headline {
	position: relative;
	z-index: 2;
	box-sizing: border-box;
	width: calc(100vw - 32px);
	max-width: 960px;
	padding: 0px 48px 0;
	margin: -200px auto 32px;
	background: #fff;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
}

.articleHeadline .headline .content {
	padding: 32px 24px 16px;
}

.articleHeadline .headline .publishDate {
	font-size: .875rem;
	color: #797979;
}

.articleHeadline .headline .title {
	margin: 12px 0 8px;
	font-size: 2.5rem;
	line-height: 1.4;
}

.single-inner {
	max-width: 860px;
	margin: 0 auto 8%;
}

.single-inner a {
	color: #008FDE;
	text-decoration: underline;
}

.single-other {
	margin-top: 8%;
	border-top: 1px solid #ccc;
	padding-top: 12%;
}

.single-inner h2 {
	font-size: 1.6rem;
	font-weight: bold;
	border-bottom: 5px solid #008fde;
	margin-bottom: 1rem;
	margin-top: 1rem;
	padding: 1rem 0 1rem 1px;
	color: #008fde;
}

.single-inner h3 {
	font-size: 1.1rem;
	font-weight: bold;
	padding-bottom: 1rem;
	background: #008fde1a;
	border-radius: 8px;
	color: #187ec4;
	margin-bottom: 1rem;
	margin-top: 2rem;
	padding: 1rem;
}

.single-shop-nav {
	display: flex;
	justify-content: space-between;
	margin-top: 1rem;
}

.single-shop-nav li {
	border-radius: 8px;
	border: 1px solid #666;
	text-align: center;
	padding: 0.8rem;
	font-size: 1rem;
	margin-bottom: 1rem;
}

.single-shop-nav li a {
	display: block;
}

@media screen and (max-width: 767px) {
	.single-shop-nav {
		display: block;
	}

	.articleHeadline .headline {
		width: calc(100vw - 32px);
		max-width: 1100px;
		padding: 16px 16px 0;
		margin: -50px auto 24px;
	}

	.articleHeadline .headline .content {
		padding: 0;
	}

	.articleHeadline .headline .title {
		margin: 8px 0 8px;
		font-size: 1.4rem;
		line-height: 1.4;
	}

	.single-inner {
		margin: 0 24px 8%;
	}

	.single-inner h2 {
		font-size: 1.2rem;
	}
}

.shop-category {
	display: flex;
	flex-wrap: wrap;
	width: calc(100%);
	overflow: hidden;
	justify-content: left;
	padding: 16px 0 0 0;
	margin: 16px 0 0 0;
	border-top: 1px solid #d2d2d2;
}

.shop-category li {
	border: 1px solid #929292;
	padding: 2px 8px;
	font-size: 0.8rem;
	margin: 0 8px 8px 0;
	color: #616161;
}

.shop-area {
	margin-bottom: 0.8rem;
}

.profile-box {
	margin: 2rem 0 0 0;
}

.profile-box-title {
	background: #187ec4;
	color: #fff;
	padding: 0.5rem 1rem;
	font-size: 0.9rem;
}

.profile-box-inner {
	flex-wrap: nowrap;
	display: flex;
	padding: 0.9rem;
	border: 1px solid #187ec4;
	background: #187ec414;
}

.profile-box-img {
	margin-right: 12px;
}

.profile-box-img img {
	margin: 0
}

.profile-box-content ul {
	flex-wrap: nowrap;
	display: flex;
	font-size: 0.9rem;
	margin-bottom: 8px;
	background: #187ec433;
	padding: 8px;
	border-radius: 8px;
}

.profile-box-content p.profile-box-name {
	font-weight: bold;
	font-size: 1.1rem;
	margin-bottom: 8px
}

.profile-box-content p {
	font-size: 0.9rem;
	line-height: 1.5rem;
}


/*////////////////////////////
引用
////////////////////////////*/
blockquote {
	position: relative;
	margin: 2rem 0;
	padding: 2rem;
	font-size: 0.9rem;
	border-left: 5px solid #e7e7e7;
	border-radius: 2px;
	color: #7e7e7e;
	background: #b3b3b30f;
}

.single-inner blockquote  h3 {
	background: none !important;

	margin-top: 0 !important;
	padding: 0 !important; 
}

cite {
	font-size: 1rem;
	margin-top: 3%;
}

@media screen and (max-width: 767px) {
	blockquote {
		position: relative;
		margin: 1rem 0;
		padding: 1.4rem;
	}
}

/*////////////////////////////
Share button
////////////////////////////*/
.snsShareArea {
	display: flex;
	font-size: 1rem;
	flex-wrap: wrap;
}

.snsShareArea:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}

.snsShareArea a {
	box-sizing: border-box;
	margin: 0.5%;
	padding: 16px 24px;
	border-radius: 3px;
	color: white;
	text-decoration: none;
	text-align: center;
	font-weight: bold;
	font-size: 0.9rem;
}

.btn--twitter {
	background: #55acee;
}

.btn--facebook {
	background: #3b5998;
}

.btn--line {
	background: #54bc4d;
}

.btn--hatena {
	background: #008FDE;
}

.btn--pocket {
	background: #ee4056;
}

.btn--pinterest {
	background: #c60120;
}

@media screen and (max-width: 767px) {
	.snsShareArea a {
		margin: 1%;
		padding: 12px 8px;
		font-size: 0.85rem;
	}
}

/*////////////////////////////
recruit
////////////////////////////*/
.recruit p.copy-sub {
	color: #4b3414;
}

.flow-box {
	display: flex;
	justify-content: center;
	align-items: center;
}

.flow-list {
	width: 100%;
}

.flow-list>li {
	list-style-type: none;
	border: 2px solid #008cd07a;
	padding: 1.6rem 2.4rem;
	background-color: #fff;
}

.flow-list>li:not(:last-child) {
	margin-bottom: 2rem;
	position: relative;
}

.flow-list>li dl {
	display: unset;
}

.flow-list>li dl dt {
	font-size: 1.4rem;
	font-weight: bold;
	border-bottom: 2pt dashed #ccc;
	padding-bottom: 1.2rem;
	margin-bottom: 1.2rem;
}

.flow-list>li .icon10 {
	color: #008cd0;
	margin-right: 0.5em;
}

.flow-list>li dl dd {
	margin: 0;
	font-size: 1rem;
}

.box-white {
	background: #fff;
	padding: 4%;
	display: flex;
	border-radius: 30px;
	margin-top: 4%;
	margin-bottom: 1rem;
	border: 1px solid #c09d6d;
}

.box-white img {
	width: 30%;
	margin-right: 3%;
}

.box-white p {
	font-size: 1rem;
}

.box-gray {
	background: #fff;
	display: flex;
	padding-top: 4%;
	margin-top: 4%;
	margin-bottom: 1rem;
	border-top: 1px solid #ccc;
}

.box-gray img {
	width: 30%;
	margin-right: 3%;
	margin-bottom: 0;
}

.box-gray p {
	font-size: 1rem;
}

@media screen and (max-width: 767px) {
	.box-white {
		display: block;
		padding: 8%;
	}

	.box-white img {
		width: 100%;
		margin-right: 0;
		margin-bottom: 8px;
	}

	.box-gray {
		display: block;
		padding: 0;
	}

	.box-gray img {
		width: 100%;
		margin-right: 0;
		margin-bottom: 8px;
	}

	.flow-list>li dl dt {
		font-size: 1.2rem;
		border-bottom: 2pt dashed #ccc;
		padding-bottom: 1rem;
		margin-bottom: 1rem;
	}

	.flow-list>li {
		padding: 1.2rem;
	}

	.flow-list>li dl dd {
		font-size: 1rem;
	}

	.flow-list>li:not(:last-child) {
		margin-bottom: 2rem;
	}

	.flow-list>li:not(:last-child)::after {
		bottom: -32px;
	}
}

/*=============================
# Gallery
==============================*/
.page-2nd .gallery img {
	margin: 0;
}

.gallery ul {
	justify-content: space-between;
	display: flex;
	flex-wrap: wrap;
	width: calc(100% + 0px);
	overflow: hidden;
}

.gallery li {
	width: calc(33% - 0px);
	overflow: hidden;
	position: relative;
}

@media (min-width: 1280px) {
	.gallery li {
		width: 24.77777777777%;
	}
}

@media (max-width: 767px) {
	.gallery li {
		width: 49%;
		border: 1px solid #000;
	}
}

.overlay-container {
	position: relative;
	-webkit-transform: translateZ(0);
	-moz-transform: translateZ(0);
	transform: translateZ(0);
}

.overlay-container .overlay {
	display: inline-block;
	width: 101%;
	height: 35%;
	position: absolute;
	bottom: 0;
	left: 0;
	overflow: hidden;
	text-align: center;
	background: rgba(0, 0, 0, 0.7);
	color: #fff;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: scale(0.9);
	-moz-transform: scale(0.9);
	transform: scale(0.9);
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
	transition: all 0.6s ease;
}

@media (max-width: 767px) {
	.overlay-container .overlay {
		height: 65%;
	}
}

.overlay-container .overlay .overlay-details {
	position: absolute;
	width: 100%;
	top: 50%;
	left: 50%;
	-webkit-transform: translateX(-50%) translateY(-50%) translateX(0);
	-moz-transform: translateX(-50%) translateY(-50%) translateX(0);
	transform: translateX(-50%) translateY(-50%) translateX(0);
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
	transition: all 0.6s ease;
}


.overlay-container .overlay .overlay-details h3,
.overlay-container .overlay .overlay-details p {
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translateY(50%) translateX(0);
	-moz-transform: translateY(50%) translateX(0);
	transform: translateY(50%) translateX(0);
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
	transition: all 0.6s ease;
}

.overlay-container .overlay .overlay-details h3 {
	font-size: 1rem;
	font-weight: 700;
	margin: 0 0 0.3rem 0;
}

.overlay-container .overlay .overlay-details p {
	font-size: 11px;
	text-transform: uppercase;
	line-height: 1rem;
	color: #aaa;
}

.overlay-container .overlay .buttons-container {
	position: absolute;
	bottom: 0;
	left: 0;
}

.overlay-container .overlay .buttons-container a {
	float: left;
	display: inline-block;
	width: 55px;
	height: 55px;
	background-color: white;
	background-repeat: no-repeat;
	background-size: 55px 55px;
	margin-right: 1px;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
	transition: all 0.6s ease;
	-webkit-transform: translateY(100%) translateX(0);
	-moz-transform: translateY(100%) translateX(0);
	transform: translateY(100%) translateX(0);
}

.overlay-container:hover .overlay {
	opacity: 1;
	visibility: visible;
	-webkit-transform: scale(1) translateX(0);
	-moz-transform: scale(1) translateX(0);
	transform: scale(1) translateX(0);
}

.overlay-container:hover .overlay .overlay-details h3,
.overlay-container:hover .overlay .overlay-details p {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translateY(0) translateX(0);
	-moz-transform: translateY(0) translateX(0);
	transform: translateY(0) translateX(0);
}

.overlay-container .overlay .overlay-details h3 {
	-webkit-transition-delay: 0.1s;
	-moz-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

.overlay-container .overlay .overlay-details p {
	-webkit-transition-delay: 0.2s;
	-moz-transition-delay: 0.2s;
	transition-delay: 0.2s;
}

.overlay-container:hover .buttons-container a {
	-webkit-transform: translateY(0) translateX(0);
	-moz-transform: translateY(0) translateX(0);
	transform: translateY(0) translateX(0);
}

.img-small img {
	width: 50%;
	height: auto;
}

.img-middle img {
	width: 80%;
	height: auto;
}

.img-big img {
	width: 100%;
	height: auto;
}