@charset "utf-8";

/*===========================================================
下層カバー
===========================================================*/

.in-cover {
    padding: 0 15px;
    max-width: 1920px;
    width: 100%;
    height: 250px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.in-cover:before {
    content: "";
    display: block;
    position: absolute;
    max-width: 1920px;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 20%);
}

.in-cover-title-box {
    margin: 0 auto;
    /* padding: 8% 0 0; */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.in-cover-title {
    font-size: clamp(30px, calc(1.875rem + ((1vw - 3.75px) * 3.2362)), 80px);
    font-weight: 400;
    font-family: var(--font-family02);
    letter-spacing: 0.1em;
    color: #FFF;
}

.in-cover-sub-title {
    font-size: clamp(20px, calc(1.25rem + ((1vw - 3.2px) * 1.25)), 40px);
    font-weight: 700;
    font-family: var(--font-family02);
    letter-spacing: 0.05em;
    color: #FFF;
}

/*===========================================================
パンくず
===========================================================*/

.bread-wrapper {
    max-width: 1920px;
    width: 100%;
    padding: 15px;
}

.bread-box {
    max-width: 1220px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: auto;
    font-size: 12px;
    font-family: var(--font-family02);
    letter-spacing: 0.05em;
}

.bread-link {
    display: block;
    color: var(--base-font-color);
    text-decoration: underline;
}

.bread-link:hover {
    color: var(--base-font-color);
    text-decoration: none;
}

/*===========================================================
inner
===========================================================*/

.in-wrapper {
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 15px;
    position: relative;
}

.inner01 {
    max-width: 1220px;
    width: 100%;
    margin: 0 auto;
}

.inner02 {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
}

.inner03 {
    max-width: 1420px;
    width: 100%;
    margin: 0 auto;
}

.inner04 {
    max-width: 1520px;
    width: 100%;
    margin: 0 auto;
}

.inner05 {
    max-width: 1620px;
    width: 100%;
    margin: 0 auto;
}

/*===========================================================
共通
===========================================================*/

.common-first-text-area {
    margin: 40px 0 0;
}

.common-first-text-box {
    margin: 20px 0 0;
}

.common-menu-row {
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    border-bottom: 1px solid var(--grey);
}

.common-menu-row:first-child {
    padding: 0 0 10px;
}

.common-menu-th {
    width: 100%;
}

.common-menu-td {
    width: 100%;
    text-align: right;
}

.common-menu-text01 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.03em;
}
.text01 {
    line-height: 1.65em;
}

/*-----------------------------------------------------------
ページャー
-----------------------------------------------------------*/

.webgene-pagination {
	width: 100%;
	grid-column: 1/3;
}

.webgene-pagination > ul{
	padding: 0;
	display: flex;
	justify-content: center;
}

.webgene-pagination > ul > li{
	display: flex;
}

.webgene-pagination > ul > li{
	margin: 30px 5px 0;
	height: 30px;
	width:100%;
	max-width: 30px;
	font-family: var(--font-family02);
	line-height: 1em;
	list-style: none;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	font-size: 16px;
}

.webgene-pagination > ul > li.selected > a{
	opacity: 0.5;
	color: var(--white);
	cursor: inherit;
}

.webgene-pagination > ul > li > a{
	width: 100%;
	height: 30px;
	width: 30px;
	background: var(--primary);
	color: var(--white);
	display: flex;
	justify-content: center;
	align-items: center;
}

.webgene-pagination > ul > li > a:hover{
	text-decoration: none;
	color: var(--white);
	opacity: 0.5;
}

.webgene-pagination>ul>.prev>a,
.webgene-pagination>ul>.next>a {
	position: relative;
	height: 30px;
	width: 30px;
	border: 0;
	font-size: 0;
}

.webgene-pagination>ul>.prev>a:hover,
.webgene-pagination>ul>.next>a:hover {
	background-color: var(--primary);
}

.webgene-pagination>ul>.prev>a::before,
.webgene-pagination>ul>.next>a::before {
	content: "";
	display: block;
	transition: all .3s;
}

.webgene-pagination>ul>.prev>a::before {
	content: "";
	width: 12px;
	height: 12px;
	display: block;
	border-bottom: solid 2px var(--white);
	border-left: solid 2px var(--white);
	transform: translateY(-50%) rotate(45deg);
	position: absolute;
	left: 12px;
	top: 50%;
}

.webgene-pagination>ul>.prev>a:hover:before {
	border-bottom: solid 2px var(--white);
	border-left: solid 2px var(--white);
}

.webgene-pagination>ul>.next>a::before {
	content: "";
	width: 12px;
	height: 12px;
	display: block;
	border-top: solid 2px var(--white);
	border-right: solid 2px var(--white);
	transform: translateY(-50%) rotate(45deg);
	position: absolute;
	right: 12px;
	top: 50%;
}

.webgene-pagination>ul>.next>a:hover:before {
	border-top: solid 2px var(--white);
	border-right: solid 2px var(--white);
}

.dtlPager {
	display: flex;
	justify-content: space-between;
	margin: 80px 0 0;
}

.webgene-item-aroundPageLink {
	color: #333;
	font-size: 14px;
}

/*===========================================================
MENU
===========================================================*/

.menu-common-contents .intro-title-box {
    position: relative;
}

.menu-common-contents .menu-subtitle-box01 {
    position: relative;
}

.menu-common-contents .menu-en-subtitle {
    font-size: 20px;
    font-family: var(--font-family02);
    letter-spacing: 0.05em;
    color: #A6A6A6;
    margin: 0;
}

.menu-common-contents .intro-item {
    width: 100%;
    margin: 60px 0 0 auto;
}

.menu-common-contents .intro-text-box {
    margin: 20px 0 0 0 !important;
}

.menu-grid {
    margin: 60px 0 0 0;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  	border-bottom: 1px solid #707070;
}

.menu-item-block {
	width:100%;
	border-top: 1px solid #707070;
	padding: 60px 0;
}

.menu-item {
	width:100%;
  	margin: 0 auto;
}

.menu-common-title {
	font-size: 16px;
  	font-weight: 500;
  	letter-spacing: 0.05em;
}

.menu-item-img-box {
  	margin: 24px auto 0;
}

.menu-item-text-box {
  	margin: 30px auto 0;
}

.menu-item-price {
  	text-align: right;
}

/*===========================================================
RECRUIT
===========================================================*/

.recruit-btn-row:after {
    content: none;
    position: absolute;
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #595959;
}

/*===========================================================
RECRUIT
===========================================================*/

.ranking-btn-box {
    max-width: 460px;
    width: 100%;
    margin: 60px auto 0;
}

.ranking-btn {
	width: 100%;
}

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:414px) {


/*===========================================================

===========================================================*/



} /* min-width: 414px ここまで */


/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:544px) {


/*===========================================================
br調整
===========================================================*/

.sm-br-block br {
    display: block;
}

.sm-br-none br {
    display: none;
}

/*===========================================================
共通
===========================================================*/

.common-menu-row {
    flex-direction: row;
}

.common-menu-th {
    width: 74%;
}

.common-menu-td {
    width: 25%;
}

/*===========================================================
MENU
===========================================================*/
  
.menu-item {
	width:85%;
}  
  
.menu-common-title {
	font-size: 18px;
}

} /* min-width: 544px ここまで */


/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width: 768px) {


/*===========================================================
br調整
===========================================================*/

.md-br-block br {
    display: block;
}

.md-br-none br {
    display: none;
}

/*===========================================================
下層カバー
===========================================================*/

.in-cover {
    max-width: 1920px;
    width: 100%;
    height: 400px;
    justify-content: flex-start;
}

.in-cover-title-box {
    /* padding: 3% 0 0; */
}

/*===========================================================
inner
===========================================================*/

.in-wrapper {
    padding: 80px 15px;
}

/*===========================================================
共通
===========================================================*/

.common-first-text-area {
    margin: 60px 0 0;
}

.common-menu-text01 {
    font-size: 18px;
}

/*-----------------------------------------------------------
ページャー
-----------------------------------------------------------*/

.webgene-pagination {
    grid-column: 1/3;
}

.webgene-pagination > ul > li{
	margin: 40px 10px 0;
	height: 40px;
	max-width: 40px;
	font-size: 20px;
}

.webgene-pagination > ul > li > a{
	height: 40px;
	width: 40px;
}

.webgene-pagination>ul>.prev>a,
.webgene-pagination>ul>.next>a {
	height: 40px;
	width: 40px;
}

.webgene-pagination>ul>.prev>a::before {
	width: 14px;
	height: 14px;
	left: 15px;
	top: 50%;
}

.webgene-pagination>ul>.next>a::before {
	width: 14px;
	height: 14px;
	right: 15px;
	top: 50%;
}
  
/*===========================================================
MENU
===========================================================*/

.menu-common-contents .intro-title-box {
    position: absolute;
    top: 0;
    left: 0;
	z-index: 0;
}
  
.menu-common-contents .intro-item {
    position: relative;
    width: 90%;
    margin: 100px 0 0 auto;
	padding: 0 7% 0 0;
}
  
.menu-common-contents .intro-item:first-child {
    margin: 0 0 0 auto;
}  
  
.menu-common-contents .intro-item:nth-of-type(2n) {
    margin: 100px auto 0 0;
	padding: 0 0 0 7%;
}
  
.menu-common-contents .menu-subtitle-box01 {
    position: absolute;
    top: 15px;
    right: 0;
	z-index: 0;
}
  
.menu-common-contents .intro-item:nth-of-type(2n) .menu-subtitle-box01 {
    right: auto;
  	left: 0;
}
  
.menu-common-contents .menu-en-subtitle {
    writing-mode: vertical-rl;
    font-size: 22px;
}
  
.menu-common-contents .intro-text-box {
    margin: 30px 0 0 0 !important;
}
  
.menu-grid {
    grid-template-columns: repeat(2, 1fr);
  	overflow: hidden;
}
  
.menu-item-block {
	border-right: 1px solid #707070;
}

.menu-item-block:nth-of-type(2n) {
  	border-right: 0px solid #707070;
}
  
.menu-common-title {
	font-size: 16px;
}
  
.menu-item {
	width:95%;
}  

/*===========================================================
RECRUIT
===========================================================*/  
  
.recruit-btn-row:after {
    content: "";
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 1px;
    height: 100%;
}

} /* min-width: 768px ここまで */


/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width: 1024px) {


/*===========================================================
br調整
===========================================================*/

.lg-br-block br {
    display: block;
}

.lg-br-none br {
    display: none;
}

/*===========================================================
パンくず
===========================================================*/

.bread-box {
    font-size: 14px;
}

/*===========================================================
inner
===========================================================*/

.in-wrapper {
    padding: 150px 15px;
}

.in-first-wrapper {
    padding: 120px 15px;
}

/*===========================================================
共通
===========================================================*/

.common-first-text-area {
    margin: 80px 0 0;
}

.common-first-text-box {
    margin: 30px 0 0;
}

.common-menu-row {
    padding: 20px 0;
}

.common-menu-row:first-child {
    padding: 0 0 20px;
}


/*-----------------------------------------------------------
ページャー
-----------------------------------------------------------*/

.webgene-pagination {
    grid-column: 1/4;
}

.webgene-pagination > ul > li {
    margin: 80px 10px 0;
}
  
/*===========================================================
MENU
===========================================================*/
  
.menu-common-contents .intro-item {
    width: 85%;
}

.menu-common-contents .menu-en-subtitle {
    font-size: 25px;
}
  
.menu-common-title {
	font-size: 22px;
}

} /* min-width: 1024px ここまで */


/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:1200px) {


  
/*===========================================================
MENU
===========================================================*/

.menu-common-contents .intro-item {
    width: 75%;
}
  
.menu-common-contents .menu-en-subtitle {
    font-size: 30px;
}
  
.menu-common-title {
	font-size: 20px;
}
  
.menu-item {
	width:88%;
}  
  
.menu-item-block {
  	padding: 80px 0;
}
  
  
/*===========================================================
RECRUIT
===========================================================*/
  
.point-title {
    font-size: 25px !important;
}

} /* min-width: 1200px ここまで */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:1300px) {
  
/*===========================================================
MENU
===========================================================*/

.menu-common-contents .menu-en-subtitle {
    font-size: 35px;
}
  
.menu-common-title {
	font-size: 30px;
}
  
  
} /* min-width: 1300px ここまで */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:1500px) {


/*===========================================================
共通
===========================================================*/

.common-menu-text01 {
    font-size: 22px;
}



} /* min-width: 1440px ここまで */


/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:1620px) {




} /* min-width: 1520px ここまで */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */ 