@charset "utf-8";
/*
Theme Name: SERVE Web Site
Theme URI: https://serve.jp/
Description: MESCIUS SERVE
Version: 1.1
Author: MESCIUS inc.
Author URI: https://www.mescius.com/
*/
@import url("./css/normalize.css");

/*****************************************************
	Base
*****************************************************/
:root {
	/* overflow-y: scroll; */
	height: 100%;
	margin: 0;
	padding: 0;
	color: #333;
	box-sizing: border-box;

	--color-serve-green: #4BB9C3;
	--color-serve-yellow: #FFD700;
	--color-serve-pink: #DC64AA;
	--color-serve-brown: #73503C;
	--color-serve-gray: #5A5555;
}

html,
body {
	height: 100%;
	min-height: 100%;
	box-sizing: border-box;
}

.main {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	/* height:100%; */
	min-height: 100%;
	font-family: "BIZ UDPGothic", "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", Hiragino Kaku Gothic, "Hiragino Sans", YuGothic, "Yu Gothic medium", Meiryo, "sans-serif";
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
	-webkit-text-size-adjust: 100%;
	letter-spacing: 1px;
	line-height: 1.6;
}

div,
section,
article,
p {
	box-sizing: border-box;
}

p,
span,
em {
	z-index: 12;
}

h1,
h2,
h3,
h4 {
	line-height: 1.8;
	z-index: 11;
}

figure {
	margin: 0;
	padding: 0;
}

/* h5, h6, p, a, span, em, strong, li {  } */

/*****************************************************
	Header
*****************************************************/
.header {
	flex-grow: 1;
	position: fixed;
	width: 100%;
	color: #fff;
	background-color: #4BB9C3;
	z-index: 9999;
}

.header__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 64px;
	margin: 0 auto;
	padding: 0 16px;
}

.header__logo {
	width: calc(100% - 40px);
	z-index: 999;
}

.header__logo img {
	width: 135px;
	height: 24px;
}

.btn-go-top {
	position: fixed;
	right: 2%;
	bottom: 18%;
	display: block;
	width: 5rem;
	height: 5rem;
	color: #fff;
	background-color: #FFD900;
	border-radius: 50%;
	z-index: 9998;
}

.btn-go-top::after {
	display: block;
	content: "";
	width: 50%;
	height: 95%;
	margin: auto;
	text-align: center;
	background: url(./img/icon/chevron-up-solid_w.svg) no-repeat center center;
	background-size: 80%;
	z-index: 9999;
}

/* ** Media Queries ** */
@media (min-width: 768px) {
	.header__logo {
		width: auto;
	}
}

@media (min-width: 1024px) {
	.header__inner {
		max-width: 1360px;
		height: 90px;
	}

	.header__logo img {
		width: 164px;
		height: 32px;
	}
}

/*****************************************************
	Footer
*****************************************************/
.footer {
	flex-grow: 2;
	color: #fff;
	background-color: #4D4D4D;
}

.footer__inner {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	min-height: 240px;
	margin: 0 auto;
	padding: 32px 0 24px;
	text-align: center;
}

.footer__content {
	width: 350px;
	margin: 0 auto;
}

.footer__logo img {
	width: 200px;
	height: 30px;
}

.footer__copy {
	margin-top: 24px;
	font-size: 14px;
}

/* ** Media Queries ** */
@media (min-width: 768px) {
	.footer__content {
		display: flex;
		justify-content: space-between;
		width: 90%;
	}

	.footer__copy {
		width: 92%;
		margin: 24px auto 0;
		text-align: right;
	}
}

/*****************************************************
	Navigation
*****************************************************/
/* --- Header Nav --------------------------------------*/
.header__nav a:link,
.header__nav a:visited {
	color: #fff;
	text-decoration: none;
}

.header__nav a:active,
.header__nav a:hover {
	color: #fff;
}

/* ---　Global Nav --------------------------------------*/
/* --- Hamburger Menu --- */
.hamburger {
	display: block;
	position: relative;
	z-index: 3;
	/* right : 25px;
		top   : 25px; */
	width: 40px;
	height: 40px;
	cursor: pointer;
	text-align: center;
}

.hamburger span {
	display: block;
	position: absolute;
	width: 30px;
	height: 2px;
	left: 6px;
	background: #fff;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}

.hamburger span:nth-child(1) {
	top: 10px;
}

.hamburger span:nth-child(2) {
	top: 20px;
}

.hamburger span:nth-child(3) {
	top: 30px;
}

/* Open Hamburger */
.hamburger.active span:nth-child(1) {
	top: 16px;
	left: 6px;
	background: #fff;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
	top: 16px;
	background: #fff;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}

/* --- Global Nav --- */
.globalMenuSp {
	display: flex;
	flex-direction: column;
	justify-content: center;

	position: fixed;
	z-index: 2;
	top: 0;
	left: 0;
	color: #fff;
	background: rgba(75, 185, 190, 0.9);
	text-align: center;
	width: 100%;
	opacity: 0;
}

#gNavi .globalMenuSp ul {
	display: none;
	width: 100%;
	margin: 0 auto;
	padding: 0;
}

.globalMenuSp ul li {
	list-style-type: none;
	padding: 0;
	transition: .2s all;
}

.globalMenuSp ul li:last-child {
	padding-bottom: 0;
}

.globalMenuSp ul li a {
	display: inline-block;
	color: #fff;
	padding: 1em 0;
	text-decoration: none;
}

/* jQuery - added or delete */
.globalMenuSp.active {
	height: 100%;
	opacity: 1;

	overflow-y: scroll;
	-ms-overflow-style: none;
	/* IE、Edge */
	scrollbar-width: none;
	/* Firefox */
}

.globalMenuSp.active::-webkit-scrollbar {
	/* Chrome、Safari */
	display: none;
}

/* --- Drop Down --- */
#gNavi .gNaviInner {
	display: none;
	width: 74%;
	margin: 0 auto;
	color: #4BB9C3;
	text-align: left;
}

#gNavi .gNaviInner ul {
	margin-bottom: 0;
	padding: 0;
}

#gNavi .gNaviInner a {
	position: relative;
}

#gNavi .gNavi_fs:nth-child(3, 4) {
	margin-top: 8px;
}

#gNavi .gNavi_fs a {
	display: block;
	width: 100%;
	margin-right: 0;
	padding: 32px 0;
	border-radius: 8px;
	font-size: 13px;
	text-align: center;
	color: #4BB9C3;
	background-color: #fff;
}

#gNavi .gNavi_fs a:hover,
#gNavi .gNavi_fs a:active {
	font-weight: 300;
	background-color: #ebf5f7;
}

#gNavi .gNaviInner .sec-l {
	display: none;
}

#gNavi .sp-logo {
	width: 30%;
	margin: 0 auto 16px;
}

/* --- SubMenu --- */
.sp-nav_submenu {
	display: none;
	width: 74%;
	margin: 0 auto;
	margin-top: 8px;
	text-align: left;
	background-color: #fff;
	border-radius: 8px;
}

.sp-nav_submenu #menu-sp-sub-nav {
	padding: 0;
}

.sp-nav_submenu #menu-sp-sub-nav li a {
	position: relative;
	display: block;
	padding: 12px 16px;
	border-bottom: solid 1px #e2e2e2;
}

.sp-nav_submenu #menu-sp-sub-nav li:last-child a {
	border-bottom: 0;
}

.sp-nav_submenu #menu-sp-sub-nav li a::after {
	position: absolute;
	right: 8px;
	top: auto;
	bottom: auto;
	display: inline-block;
	content: "\f021";
	font-family: ServeIcon;
	width: 22px;
	height: 22px;
}

#gNavi .sec-l a:link,
#gNavi .sec-l a:visited,
#gNavi .sp-nav_submenu #menu-sp-sub-nav a:link,
#gNavi .sp-nav_submenu #menu-sp-sub-nav a:visited {
	font-size: 13px;
	color: #4BB9C3;
}

#gNavi.active .gNaviInner,
#gNavi.active .sp-nav_submenu {
	display: block;
}

.sp-nav_submenu #menu-sp-sub-nav a:hover,
.sp-nav_submenu #menu-sp-sub-nav a:active {
	font-weight: 600;
}

#gNavi .gNavi_fs {
	margin-top: 8px;
}

#gNavi .pc_tb {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr)[2];
	grid-template-columns: repeat(2, 1fr);
	-ms-grid-rows: (1fr)[2];
	grid-template-rows: repeat(2, 1fr);
	grid-column-gap: 0px;
	grid-row-gap: 0px;
}

.pc_tb-service {
	-ms-grid-row: 1;
	-ms-grid-row-span: 1;
	-ms-grid-column: 1;
	-ms-grid-column-span: 1;
	grid-area: 1 / 3 / 1 / 1;
}

.pc_tb-blog {
	-ms-grid-row: 1;
	-ms-grid-row-span: 1;
	-ms-grid-column: 2;
	-ms-grid-column-span: 1;
	grid-area: 2 / 1 / 2 / 1;
	margin-right: 4px;
}

.pc_tb-seminar {
	-ms-grid-row: 2;
	-ms-grid-row-span: 1;
	-ms-grid-column: 1;
	-ms-grid-column-span: 1;
	grid-area: 3 / 1 / 3 / 2;
	margin-right: 4px;
}

.pc_tb-sup {
	-ms-grid-row: 2;
	-ms-grid-row-span: 1;
	-ms-grid-column: 2;
	-ms-grid-column-span: 1;
	grid-area: 3 / 2 / 3 / 3;
	margin-left: 4px;
}

.pc_tb-case {
	-ms-grid-row: 2;
	-ms-grid-row-span: 1;
	-ms-grid-column: 1;
	-ms-grid-column-span: 1;
	grid-area: 2 / 2 / 2 / 2;
	margin-left: 4px;
}

/* ** Media Queries ** */
@media screen and (min-width: 1024px) {
	.hamburger {
		display: none;
	}

	.globalMenuSp {
		position: relative;
		flex-direction: row;
		align-items: center;
		background: transparent;
		opacity: 1;
		transition: none;
	}

	.globalMenuSp ul {
		display: flex;
		justify-content: flex-end;
	}

	.globalMenuSp ul li {
		width: auto;
	}

	.globalMenuSp ul li a {
		margin-right: 40px;
	}

	.globalMenuSp ul li:last-child a {
		margin-right: 0;
	}

	/* --- DropDown Menu --- */
	#gNavi {
		display: block;
		padding: 0;
		clear: both;
	}

	#gNavi .gNaviInner {
		display: block;
		width: 100%;
		margin: 0;
		text-align: left;
	}

	#gNavi .gNaviInner .sec-l {
		display: flex;
	}

	#gNavi .gNaviInner .pc_tb-service .sec-l {
		display: flex;
		flex-wrap: nowrap;
	}

	#gNavi ul.pc_tb {
		display: flex;
		justify-content: flex-end;
		margin: 0;
	}

	#gNavi ul.pc_tb>li>a {
		display: flex;
		justify-content: center;
		align-items: center;
		box-sizing: border-box;
		width: auto;
		height: 90px;
		margin: 0;
		padding: 0;
		text-decoration: none;
		position: relative;
		border-radius: 0;
		color: #fff;
		background-color: transparent;
	}

	#gNavi .pc_tb-service .sec-l a:link,
	#gNavi .pc_tb-service .sec-l a:visited {
		font-size: 16px;
	}

	#gNavi ul.pc_tb>li>a {
		font-size: 16px;
	}

	#gNavi ul li ul {
		visibility: hidden;
		opacity: 0;
		transition: .1s ease-in-out;
		transform: translateY(-20px);
		z-index: 99999999999;
	}

	#gNavi ul li ul {
		position: absolute;
		top: 90px;
		right: 5px;
		margin: 0;
		padding: 20px;
		width: 950px;
		border: 16px #ebf5f7 solid;
		background-color: #fff;
		box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;

		display: flex;
		justify-content: flex-start;
		align-items: flex-start;
	}

	#gNavi ul li ul li {
		align-self: stretch;
		width: 100%;
		padding: 0 8px;
		background-color: #fff;
	}

	#gNavi .ensien {
		border-right: solid 1px #e2e2e2;
	}

	#gNavi .unei {
		border-right: solid 1px #e2e2e2;
	}

	#gNavi .omakase {}

	#gNavi .gNavi_fs {
		width: auto;
		margin-right: 32px;
		margin-bottom: 0;
	}

	#gNavi .gNavi_fs:last-child {
		margin-right: 0;
	}

	#gNavi .gNavi_fs a:hover,
	#gNavi .gNavi_fs a:active {
		font-weight: 600;
		background-color: transparent;
	}

	#gNavi .gNaviTitle {
		padding: 24px 20px;
		text-align: center;
		border-bottom: solid 1px #e2e2e2;
		color: #000;
		font-size: 18px;
	}

	#gNavi .gNaviSubMenu {
		display: block;
		padding: 0;
	}

	#gNavi .gNaviSubMenu a {
		display: flex;
		justify-content: flex-start;
		align-items: center;
		width: auto;
		color: #000;
		margin: 0;
		border-bottom: solid 1px #e2e2e2;
		padding: 20px;
		border-radius: 0;
	}

	#gNavi .gNaviSubMenu a:last-child {
		border-bottom: 0;
	}

	#gNavi .gNaviSubMenu a img {
		width: 100%;
		height: auto;
	}

	#gNavi ul>li:hover>ul {
		visibility: visible;
		opacity: 1;
		transform: translateY(0);
	}

	#gNavi .pc_tb-service .sec-l li {
		text-align: left;
	}

	/* SubMenu */
	#gNavi .drop_single .sec-l {
		position: absolute;
		top: 90px;
		right: auto;
		left: auto;

		display: flex;
		justify-content: flex-start;
		align-items: flex-start;
		width: 200px;
		margin: 0;
		padding: 8px;
		border: 16px #ebf5f7 solid;
		background-color: #fff;
		box-shadow: rgb(0 0 0 / 12%) 0px 1px 3px, rgb(0 0 0 / 24%) 0px 1px 2px;
	}

	#gNavi ul li ul li {
		align-self: stretch;
		padding: 0 8px;
		text-align: left;
		background-color: transparent;
	}

	#gNavi .drop_single .sec-l li {
		padding: 0;
	}

	#gNavi .drop_single .sec-l a:link,
	#gNavi .drop_single .sec-l a:visited {
		padding: 16px 0;
		border-radius: 0;
		color: #444;
		font-size: 15px;
	}

	#gNavi .drop_single .sec-l a:hover,
	#gNavi .drop_single .sec-l a:active {
		font-weight: 300;
		color: #fff;
		background-color: #4BB9C3;
	}

	.sp-logo,
	#gNavi.active .sp-nav_submenu,
	#gNavi .gNaviInner a::after {
		display: none;
	}

	/* --- Menu Link Color --- */
	#gNavi .gNaviSubMenu .menu_serve-ensien:link,
	#gNavi .menu_serve-ensien:visited {
		color: #2894A0;
	}

	#gNavi .gNaviSubMenu .menu_serve-ensien:hover,
	#gNavi .menu_serve-ensien:active {
		font-weight: 300;
		color: #fff;
		background-color: #4EB8C4;
	}

	#gNavi .gNaviSubMenu .menu_ensien-enjikanri:link,
	#gNavi .gNaviSubMenu .menu_ensien-enjikanri:visited,
	#gNavi .gNaviSubMenu .menu_ensien-toukouen:link,
	#gNavi .gNaviSubMenu .menu_ensien-toukouen:visited,
	#gNavi .gNaviSubMenu .menu_en-renraku:link,
	#gNavi .gNaviSubMenu .menu_en-renraku:visited,
	#gNavi .gNaviSubMenu .menu_yokohama:link,
	#gNavi .gNaviSubMenu .menu_yokohama:visited {
		color: #6A8037;
	}

	#gNavi .gNaviSubMenu .menu_ensien-enjikanri:hover,
	#gNavi .gNaviSubMenu .menu_ensien-enjikanri:active,
	#gNavi .gNaviSubMenu .menu_ensien-toukouen:hover,
	#gNavi .gNaviSubMenu .menu_ensien-toukouen:active,
	#gNavi .gNaviSubMenu .menu_en-renraku:hover,
	#gNavi .gNaviSubMenu .menu_en-renraku:active,
	#gNavi .gNaviSubMenu .menu_yokohama:hover,
	#gNavi .gNaviSubMenu .menu_yokohama:active {
		font-weight: 300;
		color: #fff;
		background-color: #6A8037;
	}

	#gNavi .gNaviSubMenu .menu_serve-zaimu:link,
	#gNavi .gNaviSubMenu .menu_serve-zaimu:visited,
	#gNavi .gNaviSubMenu .menu_serve-kyuyo:link,
	#gNavi .gNaviSubMenu .menu_serve-kyuyo:visited,
	#gNavi .gNaviSubMenu .menu_serve-kyushoku:link,
	#gNavi .gNaviSubMenu .menu_serve-kyushoku:visited,
	#gNavi .gNaviSubMenu .menu_serve-shift:link,
	#gNavi .gNaviSubMenu .menu_serve-shift:visited {
		color: #244878;
	}

	#gNavi .gNaviSubMenu .menu_serve-zaimu:hover,
	#gNavi .gNaviSubMenu .menu_serve-zaimu:active,
	#gNavi .gNaviSubMenu .menu_serve-kyuyo:hover,
	#gNavi .gNaviSubMenu .menu_serve-kyuyo:active,
	#gNavi .gNaviSubMenu .menu_serve-kyushoku:hover,
	#gNavi .gNaviSubMenu .menu_serve-kyushoku:active,
	#gNavi .gNaviSubMenu .menu_serve-shift:hover,
	#gNavi .gNaviSubMenu .menu_serve-shift:active {
		font-weight: 300;
		color: #fff;
		background-color: #244878;
	}

	#gNavi .gNaviSubMenu .menu_omakaseweb:link,
	#gNavi .gNaviSubMenu .menu_omakaseweb:visited,
	#gNavi .gNaviSubMenu .menu_backup:link,
	#gNavi .gNaviSubMenu .menu_backup:visited,
	#gNavi .gNaviSubMenu .menu_omakasedata:link,
	#gNavi .gNaviSubMenu .menu_omakasedata:visited {
		color: #6E5D26;
	}

	#gNavi .gNaviSubMenu .menu_omakaseweb:hover,
	#gNavi .gNaviSubMenu .menu_omakaseweb:active,
	#gNavi .gNaviSubMenu .menu_backup:hover,
	#gNavi .gNaviSubMenu .menu_backup:active,
	#gNavi .gNaviSubMenu .menu_omakasedata:hover,
	#gNavi .gNaviSubMenu .menu_omakasedata:active {
		font-weight: 300;
		color: #fff;
		background-color: #D1A725;
	}

	/* --- Menu Icon Settings --- */
	#gNavi .gNaviSubMenu .menu_serve-ensien::before,
	#gNavi .gNaviSubMenu .menu_ensien-enjikanri::before,
	#gNavi .gNaviSubMenu .menu_ensien-toukouen::before,
	#gNavi .gNaviSubMenu .menu_en-renraku::before,
	#gNavi .gNaviSubMenu .menu_yokohama::before,
	#gNavi .gNaviSubMenu .menu_serve-zaimu::before,
	#gNavi .gNaviSubMenu .menu_serve-kyuyo::before,
	#gNavi .gNaviSubMenu .menu_serve-kyushoku::before,
	#gNavi .gNaviSubMenu .menu_serve-shift::before,
	#gNavi .gNaviSubMenu .menu_omakaseweb::before,
	#gNavi .gNaviSubMenu .menu_backup::before,
	#gNavi .gNaviSubMenu .menu_omakasedata::before {
		display: inline-block;
		font-family: ServeIcon;
		font-feature-settings: 'liga';
		-ms-font-feature-settings: "normal";
		font-size: 42px;
		width: 42px;
		height: 26px;
		padding-right: 12px;
		line-height: 22px;
	}

	.menu_serve-ensien::before {
		content: "\f040";
	}

	.menu_ensien-enjikanri::before {
		content: "\f041";
	}

	.menu_ensien-toukouen::before {
		content: "\f042";
	}

	.menu_en-renraku::before {
		content: "\f043";
	}

	.menu_yokohama::before {
		content: "\f044";
	}

	.menu_serve-zaimu::before {
		content: "\f045";
	}

	.menu_serve-kyuyo::before {
		content: "\f046";
	}

	.menu_serve-kyushoku::before {
		content: "\f047";
	}

	.menu_serve-shift::before {
		content: "\f048";
	}

	.menu_omakaseweb::before {
		content: "\f049";
	}

	.menu_backup::before {
		content: "\f04a";
	}

	.menu_omakasedata::before {
		content: "\f04b";
	}

	/* jQuery - added or delete */
	.globalMenuSp.active {
		overflow-y: none;
	}
}

@media (max-height: 450px) {
	.globalMenuSp.active {
		height: 100%;
		display: block;
	}
}

/* ---　Footer Nav --------------------------------------*/
.footer__nav {
	margin-top: 24px;
	font-size: 14px;
	word-break: keep-all;
	line-height: 1.4;
}

.footer__nav-bottom {
	margin-top: 16px;
	padding-top: 8px;
	border-top: dashed 1px #999;
}

.footer__nav ul {
	padding-left: 0;
}

.footer__nav ul li {
	display: inline-block;
}

.footer__nav ul li:not(:last-of-type) {
	margin-right: 8px;
}

.footer__nav a:link,
.footer__nav a:visited {
	color: #fff;
	text-decoration: none;
}

.footer__nav a:active,
.footer__nav a:hover {
	color: #fff;
	text-decoration: underline;
}

/* ** Media Queries ** */
@media (min-width: 768px) {
	.footer__nav {
		margin-top: 0;
		text-align: right;
	}

	.footer__nav-bottom {
		padding-top: 0;
		border-top: 0;
	}
}

@media (min-width: 1024px) {
	.footer__nav {
		margin-top: 0;
		text-align: right;
	}

	.footer__nav .break {
		display: none;
	}
}

/* --- Pagenation --------------------------------------*/
.pagenation__wrap {
	margin: 40px auto;
	padding: 0;
	text-align: center;
}

.pagenation__inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin: 0 4px 0 8px;
}

.pagenation__inner a {
	width: auto;
	padding: 8px 16px;
	margin-top: 4px;
	margin-left: 4px;
	color: #555;
	background-color: #C5E4E7;
}

.pagenation__inner a:hover,
.pagenation__inner a:active {
	color: #222;
	background-color: #4BB9C3;
}

.pagenation__inner span.current {
	width: auto;
	padding: 8px 16px;
	margin-top: 4px;
	margin-left: 4px;
	color: #222;
	background-color: #4BB9C3;
}

/*****************************************************
	Back to TOP
*****************************************************/
#backtotop {
	position: fixed;
	bottom: 4%;
	right: 2%;

	/* ▼最初は非表示にしておく */
	display: none;

	border-radius: 50%;
	width: 1.6rem;
	height: 1.9rem;
	padding: 1rem 1.2rem .9rem;
	color: #fff;
	background: #FFD900;
	z-index: 999;
}

#backtotop:hover {
	background: #f0d229;
}

#backtotop img {
	width: 1.7rem;
	height: 1.7rem;
}

/*****************************************************
	Common
*****************************************************/
.err404 .wp-block-button {
	font-size: 14px;
}

.err404 .wp-block-button .wp-block-button__link {
	padding: 8px 16px;
	font-size: 14px;
	letter-spacing: 0;
}

.err404 .rec-img {
	text-align: center;
}

.err404 .rec-img img {
	width: 50%;
}

/* --- Contents Common -----------------------------------*/
/* --- Recommend Area --- */
.recommend-area {
	width: 100%;
	background: #dbdbdb;
}

.recommend-area__box {
	padding: 24px 16px 32px;
}

.recommend__box01,
.recommend__box02,
.recommend__box03 {
	padding: 16px 0;
	text-align: center;
}

.err404 .recommend__box01,
.err404 .recommend__box02,
.err404 .recommend__box03,
.recommend__box01,
.recommend__box02,
.recommend__box03 {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

.recommend-mark01,
.recommend-mark02,
.recommend-mark03 {
	text-align: left;
}

.recommend-mark__batch {
	width: 28px;
	height: 38px;
}

.recommend-headline {
	margin: 8px 0 0;
}

.recommend-text01,
.recommend-text02,
.recommend-text03 {
	flex-grow: 3;
	padding: 0 0 16px;
}

.wp-block-button.btn-top3col .wp-block-button__link {
	padding: 8px 16px;
	font-size: 14px;
	letter-spacing: 0;
}

@media (min-width: 1024px) {
	.recommend-area__box {
		display: -ms-grid;
		display: grid;
		-ms-grid-columns: (1fr)[3];
		grid-template-columns: repeat(3, 1fr);
		-ms-grid-rows: 1fr;
		grid-template-rows: 1fr;
		grid-column-gap: 0px;
		grid-row-gap: 0px;
	}

	.recommend__box01 {
		-ms-grid-row: 1;
		-ms-grid-row-span: 1;
		-ms-grid-column: 1;
		-ms-grid-column-span: 1;
		grid-area: 1 / 1 / 2 / 2;
	}

	.recommend__box02 {
		-ms-grid-row: 1;
		-ms-grid-row-span: 1;
		-ms-grid-column: 2;
		-ms-grid-column-span: 1;
		grid-area: 1 / 2 / 2 / 3;
	}

	.recommend__box03 {
		-ms-grid-row: 1;
		-ms-grid-row-span: 1;
		-ms-grid-column: 3;
		-ms-grid-column-span: 1;
		grid-area: 1 / 3 / 2 / 4;
	}

	.recommend__box01,
	.recommend__box02,
	.recommend__box03 {
		padding: 16px;
	}
}

@media (min-width: 1300px) {
	.recommend-area__box {
		max-width: 1300px;
		margin: 0 auto;
		padding: 64px 0;
	}

	.recommend__box01,
	.recommend__box02,
	.recommend__box03 {
		align-self: start;
		max-width: 270px;
		height: 100%;
		margin: auto;
	}
}

/* --- Product List Area --- */
.product-list__genba {
	position: relative;
	padding: 12px 0;
	background-image: url("./img/bg_productlist_genba.jpg");
	background-repeat: no-repeat;
	/* background-size: 150%; */
	background-position: center bottom;
}

.product-list__unei {
	position: relative;
	padding: 12px 0;
	background-image: url("./img/bg_productlist_unei.jpg");
	background-repeat: no-repeat;
	/* background-size: 150%; */
	background-position: center bottom;
}

.product-list__omakase {
	position: relative;
	padding: 12px 0;
	background-image: url("./img/bg_productlist_omakase.jpg");
	background-repeat: no-repeat;
	/* background-size: 150%; */
	background-position: center bottom;
}

.product-list__genba::before,
.product-list__unei::before,
.product-list__omakase::before {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}

.product-headline {
	position: relative;
	width: 94%;
	margin: 0 auto;
	padding: 24px 0;
	color: #fff;
	text-align: center;
	font-size: 22px;
	line-height: 28px;
	border-bottom: solid 2px #fff;
}

.product-link {
	position: relative;
	display: block;
	width: 94%;
	margin: 0 auto;
	text-align: center;
	border-bottom: solid 1px #c0c0c0;
}

.product-link a {
	position: relative;
	display: block;
	width: 94%;
	margin: 0 auto;
	padding: 20px 0;
	color: #fff;
	text-align: center;
}

.product-link a::after {
	position: absolute;
	right: 5px;
	top: 50%;
	transform: translateY(-50%);
	display: inline-block;
	content: "\f021";
	font-family: ServeIcon;
	width: 22px;
	height: 22px;
	font-size: 20px;
}

.product-link:last-child {
	border-bottom: none;
}

.product-link a:hover,
.product-link a:active {
	text-decoration: underline;
}

.product-name {
	display: block;
	margin-top: 8px;
	font-size: 24px;
	font-weight: 600;
}

.product-link a,
.product-link a:visited {
	color: #fff;
	text-decoration: none;
	cursor: pointer;
}

.product-link a:hover,
.product-link a:active {
	color: #fff;
	text-decoration: underline;
}

@media (min-width: 768px) {

	.product-list__genba,
	.product-list__unei,
	.product-list__omakase {
		background-size: 100%;
		background-position: -50% 70%;
	}

	.product-list__genba {
		display: -ms-grid;
		display: grid;
		-ms-grid-columns: (1fr)[2];
		grid-template-columns: repeat(2, 1fr);
		-ms-grid-rows: (1fr)[4];
		grid-template-rows: repeat(4, 1fr);
		grid-column-gap: 0px;
		grid-row-gap: 0px;
		background-size: 100%;
		background-position: 50% 80%;
	}

	.genba__headline {
		-ms-grid-row: 1;
		-ms-grid-row-span: 1;
		-ms-grid-column: 1;
		-ms-grid-column-span: 2;
		grid-area: 1 / 1 / 2 / 3;
	}

	.genba__link01 {
		-ms-grid-row: 2;
		-ms-grid-row-span: 1;
		-ms-grid-column: 1;
		-ms-grid-column-span: 1;
		grid-area: 2 / 1 / 3 / 2;
	}

	.genba__link02 {
		-ms-grid-row: 2;
		-ms-grid-row-span: 1;
		-ms-grid-column: 2;
		-ms-grid-column-span: 1;
		grid-area: 2 / 2 / 3 / 3;
	}

	.genba__link03 {
		-ms-grid-row: 3;
		-ms-grid-row-span: 1;
		-ms-grid-column: 1;
		-ms-grid-column-span: 1;
		grid-area: 3 / 1 / 4 / 2;
	}

	.genba__link04 {
		-ms-grid-row: 3;
		-ms-grid-row-span: 1;
		-ms-grid-column: 2;
		-ms-grid-column-span: 1;
		grid-area: 3 / 2 / 4 / 3;
	}

	.genba__link05 {
		-ms-grid-row: 4;
		-ms-grid-row-span: 1;
		-ms-grid-column: 1;
		-ms-grid-column-span: 1;
		grid-area: 4 / 1 / 5 / 2;
	}

	.product-list__unei {
		display: -ms-grid;
		display: grid;
		-ms-grid-columns: (1fr)[2];
		grid-template-columns: repeat(2, 1fr);
		-ms-grid-rows: (1fr)[3];
		grid-template-rows: repeat(3, 1fr);
		grid-column-gap: 0px;
		grid-row-gap: 0px;
		background-size: 100%;
		background-position: 50% 80%;
	}

	.unei__headline {
		-ms-grid-row: 1;
		-ms-grid-row-span: 1;
		-ms-grid-column: 1;
		-ms-grid-column-span: 2;
		grid-area: 1 / 1 / 2 / 3;
	}

	.unei__link01 {
		-ms-grid-row: 2;
		-ms-grid-row-span: 1;
		-ms-grid-column: 1;
		-ms-grid-column-span: 1;
		grid-area: 2 / 1 / 3 / 2;
	}

	.unei__link02 {
		-ms-grid-row: 2;
		-ms-grid-row-span: 1;
		-ms-grid-column: 2;
		-ms-grid-column-span: 1;
		grid-area: 2 / 2 / 3 / 3;
	}

	.unei__link03 {
		-ms-grid-row: 3;
		-ms-grid-row-span: 1;
		-ms-grid-column: 1;
		-ms-grid-column-span: 1;
		grid-area: 3 / 1 / 4 / 2;
		border-bottom: none;
	}

	.unei__link04 {
		-ms-grid-row: 3;
		-ms-grid-row-span: 1;
		-ms-grid-column: 2;
		-ms-grid-column-span: 1;
		grid-area: 3 / 2 / 4 / 3;
	}

	.product-list__omakase {
		display: -ms-grid;
		display: grid;
		-ms-grid-columns: (1fr)[2];
		grid-template-columns: repeat(2, 1fr);
		-ms-grid-rows: (1fr)[3];
		grid-template-rows: repeat(3, 1fr);
		grid-column-gap: 0px;
		grid-row-gap: 0px;
		background-size: 100%;
		background-position: 50% 70%;
	}

	.omakase__headline {
		-ms-grid-row: 1;
		-ms-grid-row-span: 1;
		-ms-grid-column: 1;
		-ms-grid-column-span: 2;
		grid-area: 1 / 1 / 2 / 3;
	}

	.omakase__link01 {
		-ms-grid-row: 2;
		-ms-grid-row-span: 1;
		-ms-grid-column: 1;
		-ms-grid-column-span: 1;
		grid-area: 2 / 1 / 3 / 2;
	}

	.omakase__link02 {
		-ms-grid-row: 2;
		-ms-grid-row-span: 1;
		-ms-grid-column: 2;
		-ms-grid-column-span: 1;
		grid-area: 2 / 2 / 3 / 3;
	}

	.omakase__link03 {
		-ms-grid-row: 3;
		-ms-grid-row-span: 1;
		-ms-grid-column: 1;
		-ms-grid-column-span: 1;
		grid-area: 3 / 1 / 4 / 2;
	}

	.product-name {
		font-size: 20px;
	}

	/* .product-link a { width: 92%; } */
}

@media (min-width: 1300px) {
	.product-list__category {
		display: flex;
		justify-content: space-between;
		max-width: 1300px;
		margin: 48px auto;
	}

	.product-list__genba,
	.product-list__unei,
	.product-list__omakase {
		display: block;
		width: 100%;
		max-width: 420px;
		background-size: cover;
	}

	.product-list__genba,
	.product-list__unei,
	.product-list__omakase {
		background-position: 50% 100%;
	}

	.product-list__genba,
	.product-list__unei,
	.product-list__omakase {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		height: auto;
	}

	.product-link {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 92%;
		height: 100%;
		margin: 0 !important;
	}

	.product-link a {
		display: flex;
		flex-direction: column;
		justify-content: center;
		color: #fff;
	}

	.unei__link03 {
		border-bottom: solid 1px #c0c0c0;
	}
}

/* --- Content Area --------------------------------------*/
.main-content {
	position: relative;

	display: flex;
	flex-direction: column;
	justify-content: space-between;

	flex-grow: 3;
	height: 100%;
	margin-top: 64px;
	line-height: 0;
}

.main-content>div {
	line-height: 1.6;
}

:focus {
	outline: none;
}

:focus-visible {
	outline: solid 2px #555;
}

/**/
.content-area {
	flex-grow: 3;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

/* .page-intro { flex-grow: 1; } */
.bg_color-g {
	flex-grow: 3;
}

/**/

@media (min-width: 768px) {}

/* --- Bottom Ad Area --------------------------------------*/
.bot_ad {
	color: #fff;
	background-color: #4BB9C3;
}

.bot_ad__inner {
	min-height: 120px;
	margin: 0 auto;
	padding: 32px 0;
	text-align: center;
}

.bot_ad__title {
	margin: 0 8px;
	font-size: 28px;
}

.bot_ad__link {
	display: inline-block;
	padding: 12px 40px;
	color: #fff;
	text-align: center;
	border: solid 2px #fff;
	border-radius: 32px;
	transition: .3s;
}

.bot_ad__link:link,
.bot_ad__link:visited {
	color: #fff;
}

.bot_ad__link:hover,
.bot_ad__link:active {
	color: #23bbc8;
	background-color: #fff;
}

.disp_on {
	display: block;
}

.disp_off {
	display: none;
}

/* ** Media Queries ** */
@media (min-width: 768px) {
	.bot_ad__inner {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		/* width: 700px; */
		height: 200px;
		padding: 24px 0 32px;
	}

	.bot_ad__title {
		padding-right: 32px;
	}
}

@media (min-width: 1024px) {
	.main-content {
		margin-top: 90px;
	}

	.bot_ad__title {
		font-size: 40px;
	}
}

/**/
/* --- Common --------------------------------------*/
/* --- Headline --- */
h1 {}

h2 {
	font-size: 20px;
	line-height: 30px;
}

h3 {
	font-size: 1.17em;
}

h4 {}

h5 {}

h6 {}

/* ** Media Queries ** */
@media (min-width: 480px) {
	h2 {
		font-size: 24px;
		line-height: 30px;
	}
}

@media (min-width: 768px) {
	h2 {
		font-size: 26px;
		line-height: 34px;
	}
}

@media (min-width: 1024px) {
	h2 {
		font-size: 30px;
		line-height: 38px;
	}
}

/* --- Font --- */
.font {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1
}

@font-face {
	font-family: "fontawsome";
	font-style: normal;
	font-weight: 400;
	src: url(./webfont/fa-regular-400.eot);
	src: url(./webfont/fa-regular-400.eot?#iefix) format("embedded-opentype"),
		url(./webfont/fa-regular-400.woff2) format("woff2"),
		url(./webfont/fa-regular-400.woff) format("woff"),
		url(./webfont/fa-regular-400.ttf) format("truetype"),
		url(./webfont/fa-regular-400.svg) format("svg")
}

@font-face {
	font-family: "ServeIcon";
	font-style: normal;
	font-weight: 400;
	src: url(./webfont/serve_icon.eot);
	src: url(./webfont/serve_icon.eot?#iefix) format("embedded-opentype"),
		url(./webfont/serve_icon.woff2) format("woff2"),
		url(./webfont/serve_icon.woff) format("woff"),
		url(./webfont/serve_icon.ttf) format("truetype"),
		url(./webfont/serve_icon.svg) format("svg")
}

/* 追加 */
.contents-layout--side3--parent {
	align-items: stretch !important;
	gap: 0 !important;
}

.contents-layout--side3 {
	margin: 0 !important;
}

.card-align-items--stretch {
	align-items: stretch !important;
}

/* 追加村上220726 */
.seminar-participation__menu {
	display: flex;
	justify-content: center;
	flex-wrap: nowrap;
	align-items: center;
	margin: 0 4px;
	padding: 0;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.seminar-participation__menu .seminar-participation__offline,
.seminar-participation__menu .seminar-participation__online {
	list-style-type: none;
	flex-grow: 1;
	margin: 4px 2px 0;
	font-size: 14px;
	color: #333;
	background-color: #4BB9C3;
	display: inline-block;
	padding: 16px 8px;
	width: 100%;
	box-sizing: border-box;
	text-align: center;
}

.seminar-participation__menu .seminar-participation__category {
	list-style-type: none;
	flex-grow: 1;
	margin: 4px 2px 0;
	font-size: 14px;
	color: #555;
	background-color: #C5E4E7;
	display: inline-block;
	padding: 16px 8px;
	width: 100%;
	box-sizing: border-box;
	text-align: center;
}

.seminar-participation__menu .seminar-participation__category:hover {
	cursor: pointer;
}

.seminar-participation__menu .seminar-participation__category.active {
	color: #333;
	background-color: #4BB9C3;
}

.seminar-participation-tab {
	display: none;
}

.seminar-participation-tab.show {
	display: block;
}

/* 追加橋爪221221 ブロックエディタの画像枠線を表示*/
.has-custom-border img {
	border: solid;
}

/* 追加橋爪221221 セミナータイトルの下余白積め*/
.seminar-title {
	margin-bottom: 0px;
}

.seminar-title figure {
	margin-bottom: 0px;
}

/* 追加橋爪221221 メールリンク文字調整*/
.wp-block-button__link {
	font-size: 1em;
}

/* 追加橋爪221221 製品ページスマホ余白統一*/
@media (max-width: 960px) {
	.ecolumn {
		display: none;
	}

	.bnone {
		border-bottom: 0 !important;
	}

	.nspace {
		display: none;
	}
}

.content-area p iframe {
	aspect-ratio: 16 / 9;
	max-width: 680px;
	width: 100%;
	height: 100%;
	position: relative;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}




/*****************************************************
	IE用調整
*****************************************************/
/* for Microsoft Edge */
@supports (-ms-ime-align:auto) {

	footer a,
	.footer__copy {
		font-family: "BIZ UDPGothic", "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", Hiragino Kaku Gothic, "Hiragino Sans", YuGothic, "Yu Gothic medium", Meiryo, "sans-serif";
	}

	.recommend-icon img {
		width: 76px;
	}
}

/* for IE11 */
@media all and (-ms-high-contrast:none) {

	*::-ms-backdrop,
	.product-page__wrap {
		overflow: visible;
	}

	*::-ms-backdrop,
	.recommend-icon img {
		width: 76px;
	}

	*::-ms-backdrop,
	.content-area {
		align-items: center;
	}

	*::-ms-backdrop,
	.content-area section,
	*::-ms-backdrop,
	.content-area>div,
	*::-ms-backdrop,
	.main-content>div {
		width: 100%;
	}
}

/* END */
