@charset "utf-8";

/*-----------------------------------------------------------
カスタムプロパティ
-----------------------------------------------------------*/

:root {
	
/* background color */
--bg-primary: #8A847E;
--bg-secondary: #FFFAF5;
--bg-white: #fff;
--bg-dark: #000;
--bg-grey: #ccc;

/* color */
--base: #4A3D2E;
--primary: #1F8475;
--secondary: #A78766;
--secondary-light: #D5C7B8;
--secondary-dark: #8B6C3A;
--white: #fff;
--dark: #000;
--grey: #ccc;

/* font family */
--font-family01: "Noto Sans JP", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
--font-family02: "Shippori Mincho B1", serif;
--font-family03: "Lora", serif;
}

/*-----------------------------------------------------------
全体スタイル
-----------------------------------------------------------*/

html {
	overflow-x: hidden;
}

body {
	max-width: 1920px;
	width: 100%;
	margin: auto !important;
	font-family: var(--font-family01);
	font-size: 14px;
	font-weight: normal;
	color: var(--base);
	position: relative;
	overflow-x: hidden;
}

body .wow {
	opacity: 0;
}

body.active .wow {
	opacity: 1;
}

#root {
	max-width: 1920px;
	width: 100%;
	margin: 0 auto;
}

p > a, label > a {
	color: inherit;
	text-decoration: underline;
}

p > a:hover, label > a:hover {
	color: inherit;
}

a, button {
	transition: .3s;
}

.br-none br {
	display: none;
}

.overflow-hidden {
	overflow: hidden;
}

.overflow-auto {
	overflow: auto;
}

.w-fit-content {
    width: fit-content;
}

.js-tel-link {
	color: inherit;
}

/*-----------------------------------------------------------
タイトル
-----------------------------------------------------------*/

.en-title01 {
    font-size: 32px;
    font-weight: normal;
    font-family: var(--font-family03);
    letter-spacing: 0.04em;
    line-height: 1.275em;
}

.title01 {
    font-size: 18px;
    font-weight: normal;
    font-family: var(--font-family02);
    letter-spacing: 0.05em;
    line-height: 1.44em;
}

.title02 {
    font-size: 26px;
    font-weight: normal;
    font-family: var(--font-family02);
    letter-spacing: 0.05em;
    line-height: 1.44em;
}

.title03 {
    font-size: 14px;
    font-weight: normal;
    font-family: var(--font-family02);
    letter-spacing: 0.05em;
    line-height: 1.44em;
}

.title04 {
    font-size: 16px;
    font-weight: normal;
    font-family: var(--font-family02);
    letter-spacing: 0.05em;
    line-height: 1.44em;
}

.sub-title01 {
    font-size: 16px;
    font-weight: normal;
    font-family: var(--font-family02);
    letter-spacing: 0.05em;
    line-height: 1.44em;
    margin: -7px 0 0;
}

.title-decoration01 {
    max-width: 1000px;
    width: 100%;
    border-bottom: solid 1px;
    padding: 0 0 5px;
    margin: auto;
    position: relative;
}

.title-decoration01:after {
    content: "";
    display: block;
    width: 100%;
    border-bottom: solid 1px;
    margin: 15px 0 0;
}

.title-decoration02 {
    border: solid 1px;
    border-left-width: 10px;
    border-bottom-width: 4px;
    padding: 15px;
    margin: auto;
    position: relative;
}

/*-----------------------------------------------------------
テキスト
-----------------------------------------------------------*/

.text01 {
    letter-spacing: 0.05em;
    line-height: 2.22em;
}

.text02 {
    letter-spacing: 0.05em;
    line-height: 1.94em;
}

.text-enhance01 > span {
    font-size: 1.4em;
  	letter-spacing: 0;
  	line-height: 1.44em;
}

.text-enhance02 > span {
    font-size: 1.15em;
    letter-spacing: 0.05em;
    line-height: 1.45em;
}

.text-decoration01 {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.text-decoration01:before, .text-decoration01:after {
    content: "";
    display: block;
    width: 1px;
    height: 1.5em;
    margin: 0 1em;
    position: relative;
}

.text-decoration01:before {
   transform: rotate(-35deg);
}

.text-decoration01:after {
   transform: rotate(35deg);
}

.text-decoration01-primary:before, .text-decoration01-primary:after {
    background-color: var(--primary);
}

/*-----------------------------------------------------------
ボタン
-----------------------------------------------------------*/

.btn01 {
    max-width: 286px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: normal;
    letter-spacing: 0.05em;
    line-height: 1.5em;
    border: solid 1px;
    padding: 13px 5px 14px;
}

.btn01 > .font-family03{
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 1.25em;
}

.btn01-arrow {
    padding: 13px 50px 14px;
    position: relative;
}

.btn01-arrow:before, .btn01-arrow:after {
    content: '';
    position: absolute;
    transition: .3s;
}

.btn01:hover {
    opacity: 0.65;
}

.btn01-arrow:before {
    width: 40px;
    height: 1px;
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
}

.btn01-arrow:after {
	top: 50%;
	right: -15px;
	transform-origin: right bottom;
	width: 10px;
	height: 1px;
	transform: translateY(-50%) rotate(37deg);
}

.btn01-arrow:hover:before, .btn01-arrow:hover:after {
    right: -20px;
}

.btn01-primary {
	background-color: var(--white);
	border-color: var(--primary);
	color: var(--primary);
}

.btn01-primary.btn01-arrow:before, .btn01-primary.btn01-arrow:after {
    background-color: var(--primary);
}

.btn01-primary:hover {
	color: var(--primary);
}

/*-----------------------------------------------------------
フォント
-----------------------------------------------------------*/

.font-family01 {
	font-family: var(--font-family01);
}

.font-family02 {
	font-family: var(--font-family02);
}

.font-family03 {
	font-family: var(--font-family03);
}

/*-----------------------------------------------------------
背景色
-----------------------------------------------------------*/

.bg-color-primary {
	background-color: var(--bg-primary);
}

.bg-color-secondary {
	background-color: var(--bg-secondary);
}

.bg-color-dark {
	background-color: var(--bg-dark);
}

.bg-color-white {
	background-color: var(--bg-white);
}

.bg-color-grey {
	background-color: var(--bg-grey);
}

/*-----------------------------------------------------------
文字色
-----------------------------------------------------------*/

.color-base {
	color: var(--base-font-color);
}

.color-primary {
	color: var(--primary);
}

.color-secondary {
	color: var(--secondary);
}

.color-secondary-light {
	color: var(--secondary-light);
}

.color-secondary-dark {
	color: var(--secondary-dark);
}

.color-dark {
	color: var(--dark);
}

.color-white {
	color: var(--white);
}

.color-grey {
	color: var(--grey);
}

/*-----------------------------------------------------------
画像
-----------------------------------------------------------*/

.img-control {
	height: 0;
	position: relative;
	padding: 0 0 100%;
}

.img-control > img {
	position: absolute;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
}

.img-fit {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/*-----------------------------------------------------------
スライダー
-----------------------------------------------------------*/

.swiper + .swiper {
	margin: 10px auto 0;
}

.thumbnail-slider-item {
	cursor: pointer;
	transition: .3s;
}

.thumbnail-slider-item:hover {
	filter: brightness(0.5);
}

.swiper-slide-thumb-active {
	filter: brightness(0.5);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    color: #FFF;
	text-shadow: 0 0 3px #000;
	transition: .3s;
}

.swiper-button-next:hover:after,
.swiper-button-prev:hover:after {
    opacity: .6;
}

/*-----------------------------------------------------------
下層カバー
-----------------------------------------------------------*/

.in-cover {
	max-width: 1920px;
	width: 100%;
	height: 230px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	margin: auto;
}

.in-cover:after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: rgb(0 0 0 / 40%);
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
}

.in-cover-box {
	max-width: 1250px;
	width: 100%;
	padding: 0 15px;
	margin: auto;
	position: relative;
	z-index: 9;
}

.in-cover-title {
	font-size: 26px;
	font-weight: normal;
	font-family: var(--font-family02);
	line-height: 1.35em;
	text-align: center;
	color: var(--white);
	text-shadow: 0 3px 6px rgb(0 0 0 / 16%);
}

.in-cover-sub-title {
	font-size: 12px;
	line-height: 1.45em;
	text-align: center;
	color: var(--white);
}

/*-----------------------------------------------------------
パンくず
-----------------------------------------------------------*/

.breadcrumbs-wrapper {
	font-size: 12px;
	letter-spacing: 0.05em;
	line-height: 1.5em;
	color: inherit;
	padding: 15px 0;
}

.breadcrumbs-inner {
	max-width: 1350px;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 0 15px;
	margin: auto;
}

.breadcrumbs-link {
	display: block;
	color: inherit;
	text-decoration: underline;
}

.breadcrumbs-arrow {
	margin: 0 10px;
}

.breadcrumbs-link:hover {
	text-decoration: none;
	color: inherit;
}

/*-----------------------------------------------------------
ブロック
-----------------------------------------------------------*/

.wrapper01 {
	padding: 45px 0 80px;
	overflow: hidden;
}

.wrapper02 {
	padding: 75px 0;
	overflow: hidden;
}

.wrapper03 {
	padding: 40px 0;
	overflow: hidden;
}

.inner {
	max-width: 1350px;
	width: 100%;
	padding: 0 15px;
	margin: auto;
	position: relative;
}

.inner-large {
	max-width: 1510px;
}

/*-----------------------------------------------------------
テーブル
-----------------------------------------------------------*/

.base-table {
	max-width: 1000px;
	width: 100%;
}

.base-table-tr {
	justify-content: space-between;
}

.base-table-th, .base-table-td {
	padding: 15px 10px;
}

.base-table-th {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	font-weight: bold;
}

.base-table-td {
	width: 100%;
	border-bottom: solid 1px var(--grey);
}

.base-table-th + .base-table-th {
	border-left: solid 1px #ccc;
}

.base-table-td + .base-table-td {
	border-left: solid 1px #ccc;
}

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

.webgene-pagination {
	width: 100%;
}

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

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

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

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

.webgene-pagination > ul > li.selected > a:hover {
	color: var(--white);
	background-color: var(--primary);
}

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

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

.webgene-pagination>ul>.prev>a,
.webgene-pagination>ul>.next>a {
	position: relative;
	height: 40px;
	width: 40px;
	border: 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: 14px;
	height: 14px;
	display: block;
	border-bottom: solid 2px var(--primary);
	border-left: solid 2px var(--primary);
	transform: translateY(-50%) rotate(45deg);
	position: absolute;
	left: 15px;
	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: 14px;
	height: 14px;
	display: block;
	border-top: solid 2px var(--primary);
	border-right: solid 2px var(--primary);
	transform: translateY(-50%) rotate(45deg);
	position: absolute;
	right: 15px;
	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;
}

/*-----------------------------------------------------------
おすすめメニュー
-----------------------------------------------------------*/

.common-recommend-list {
    display: grid;
    grid-template-columns: repeat(1,1fr);
    gap: 20px;
    margin: 30px auto 0;
}

.common-recommend-link {
    display: block;
    padding: 245px 15px 40px;
    position: relative;
}

.common-recommend-link:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgb(255 255 255 / 80%);
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    transition: .3s;
}

.common-recommend-link:hover:before {
    background: rgb(255 255 255 / 50%);
}

.common-recommend-link-inner {
    max-width: 780px;
    width: 100%;
    margin: auto;
    position: relative;
}

.common-recommend-title {
    font-size: 28px;
    font-weight: normal;
    line-height: 1.45em;
    letter-spacing: 0.05em;
    color: var(--base);
}

.common-recommend-sub-title {
    font-size: 18px;
    letter-spacing: 0.05em;
    line-height: 1.5em;
    color: var(--primary);
}

/*-----------------------------------------------------------
バナー
-----------------------------------------------------------*/

.common-banner01 {
    max-width: 980px;
    width: 100%;
    padding: 30px 15px 35px;
    margin: auto;
    position: relative;
}

.common-banner01:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgb(255 255 255 / 60%);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
}

.common-banner01-inner {
    position: relative;
}

.common-banner01-title {
    color: var(--primary);
  	text-align: center;
}

.common-banner01-sub-title {
    color: var(--primary);
  	text-align: center;
}

.common-banner01-btn {
    max-width: 320px;
    margin: 20px auto 0;
}

/*-----------------------------------------------------------
ヘッダー
-----------------------------------------------------------*/

.header {
	z-index: 999999;
}

.header-nav-link:before {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: #8B6C3A;
    margin: auto;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    transition: .3s;
}

.header-nav-link:hover:before {
    width: 100%;
}

/*ハンバーガー*/

.hamburger-btn {
    max-width: 44px;
    width: 100%;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary);
    margin: 0 0 0 10px;
    cursor: pointer;
    transition: .3s;
}

.hamburger-btn:hover {
    opacity: 0.65;
}

.hamburger-btn-inner {
    max-width: 30px;
    width: 100%;
    height: 20px;
    position: relative;
}

.hamburger-btn-inner > div {
    width: 100%;
    height: 2px;
    background: var(--white);
    margin: auto;
    position: absolute;
    right: 0;
    left: 0;
    transition: .5s;
}

.hamburger-btn-inner > div:nth-child(1) {
    top: 0;
}

.hamburger-btn-inner > div:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-btn-inner > div:nth-child(3) {
    top: 100%;
    transform: translateY(-100%);
}

.open .hamburger-btn-inner > div:nth-child(1) {
	top: 50%;
	transform: rotate(145deg) translateY(-50%);
}

.open .hamburger-btn-inner > div:nth-child(2) {
	opacity: 0;
}

.open .hamburger-btn-inner > div:nth-child(3) {
	top: 50%;
	transform: rotate(-145deg) translateY(-50%);
}

.nav-area {
    max-width: 1920px;
    width: 100%;
    margin: auto;
    background: rgb(0 0 0 / 25%);
    transition: ease .5s;
    position: fixed;
    top: 0;
    right: -100%;
    transition: .5s;
    z-index: 999;
}

.nav-area.open {
	opacity: 1;
	visibility: visible;
	right: 0;
}

.nav-content {
    width: 100%;
    height: 100%;
    padding: 160px 15px 100px;
    overflow-y: scroll;
    -ms-overflow-style: none;
    display: flex;
    align-items: flex-start;
    margin: 0 0 0 auto;
    background-color: var(--bg-secondary);
    position: relative;
}

.nav-content-inner {
    width: 100%;
}

.nav-list-item:not(:first-child) {
	margin: 15px 0 0;
}

.nav-link {
    display: block;
    color: var(--base);
    border-bottom: solid 1px var(--base);
    padding: 10px 5px;
}

a.nav-link:hover {
    color: var(--base);
    opacity: 0.65;
}

.nav-second {
	margin: 15px 0 0;
}

.nav-link-second {
    display: block;
    color: var(--base);
    padding: 0 10px;
}

.nav-link-second:hover {
    color: var(--base);
  	opacity: 0.65;
}

.nav-link-second:not(:first-child) {
	margin: 10px 0 0;
}

.nav-hamburger-btn {
    position: absolute;
    z-index: 9;
    top: 40px;
    right: 24px;
    margin: auto;
}

/*ドロップダウン*/

.header-nav-second {
  width: 180px;
  background-color: #FFFDFC;
  border: 1px solid #8B6C3A;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  transition: .3s;
}

.header-nav-second-link {
    display: block;
    font-size: 16px;
    font-family: var(--font-family02);
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.5em;
    color: var(--base);
    border-bottom: 1px solid #8B6C3A;
    padding: 8px 15px 9px;
}

.header-nav-second-link:last-child {
    border-bottom: 0;
}

.header-nav-second-link:hover {
  background: #8B6C3A;
  color: #fff;
}

.header-nav-single:hover .header-nav-second {
  opacity: 1;
  visibility: visible;
}

/*スクロール時*/

.header.is-scroll {
    box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
}

.header.is-scroll > .header-inner {
    padding: 10px 15px;
}

/*スマホ時のナビ*/

.sp-nav {
	width: 100%;
	height: 70px;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 999999;
	animation-name: fadein;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
	border-top: solid 1px var(--white);
}

.sp-nav-area {
	width: 100%;
	height: 100%;
	display: flex;
	background: var(--primary);
}

.sp-nav-block {
	flex: 1;
	display: flex;
}

.sp-nav-conte-l {
	width: 33.33%;
	border-right: 1px solid var(--white);
}

.sp-nav-link {
	padding: 5px;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.sp-nav-link-icon {
	max-width: 30px;
	width: 100%;
	color: var(--white);
	text-align: center;
}

.sp-nav-btn-bar {
	max-width: 30px;
	height: 25px;
	width: 100%;
	position: relative;
}

.sp-nav-btn-text {
	margin: 5px auto 0;
	font-size: 10px;
	line-height: 1em;
	color: var(--white);
}

.sp-nav-link-text {
	margin: 10px auto 0;
	font-size: 10px;
	line-height: 1em;
	color: var(--white);
}

.sp-nav-btn {
	padding: 10px 5px 10px;
	width: 60px;
	height: 70px;
	position: fixed;
	right: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	background: var(--primary);
	z-index: 99999999;
	animation-name: fadein;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
	border-top: solid 1px var(--white);
}

.sp-nav-btn-bar-item {
	width: 100%;
	height: 3px;
	background: var(--white);
	border-radius: 3px;
	position: absolute;
	left: 0;
	transition: ease .5s;
}

.sp-nav-btn-bar-item:nth-of-type(1) {
	top: 0;
}

.sp-nav-btn-bar-item:nth-of-type(2) {
	top: 50%;
	transform: translateY(-50%);
}

.sp-nav-btn-bar-item:nth-of-type(3) {
	top: 100%;
	transform: translateY(-100%);
}

.open .sp-nav-btn-bar-item {
	transition: ease .5s;
}

.open .sp-nav-btn-bar-item:nth-of-type(1) {
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
}

.open .sp-nav-btn-bar-item:nth-of-type(2) {
	opacity: 0;
}

.open .sp-nav-btn-bar-item:nth-of-type(3) {
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
}

.sp-menu {
	margin: auto;
	padding: 0;
	max-width: 1920px;
	width: 100%;
	position: fixed;
	top: 0;
	bottom: 0;
	right: -100%;
	background: var(--secondary-light);
	z-index: 9999999;
	transition: ease .5s;
}

.sp-menu.open {
	right: 0;
}

.sp-menu-area {
	width: 100%;
	height: 100%;
	overflow: auto;
	padding: 100px 15px;
}

.sp-menu-conte {
	padding: 100px 0;
	width: 100%;
	height: 100%;
	overflow-y: scroll;
	-ms-overflow-style: none;
}

.sp-menu-conte::-webkit-scrollbar {
	display:none;
}

.sp-menu-link {
	width: 100%;
	padding: 10px 0;
	display: block;
	color: var(--base-font-color);
	font-weight: bold;
	line-height: 1.5em;
	letter-spacing: 0.05em;
	text-align: center;
	position: relative;
}

.sp-menu-link:hover {
	color: var(--base-font-color);
}

.sp-menu-link-en-text {
    font-size: 12px;
    color: var(--primary);
    margin: 3px 0 0;
}

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



/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
}/* min-width: 375px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

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



/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
}/* min-width: 422px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

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

/*-----------------------------------------------------------
全体スタイル
-----------------------------------------------------------*/

/*-- 改行 --*/

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

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

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
}/* min-width: 576px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

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

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

/*-----------------------------------------------------------
全体スタイル
-----------------------------------------------------------*/

/*-- 改行 --*/

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

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

/*-----------------------------------------------------------
タイトル
-----------------------------------------------------------*/

.en-title01 {
    font-size: 36px;
}

.title01 {
    font-size: 22px;
}

.title02 {
    font-size: 32px;
}

.title03 {
    font-size: 18px;
}

.title04 {
    font-size: 20px;
}
	
.sub-title01 {
    font-size: 18px;
}

/*-----------------------------------------------------------
ボタン
-----------------------------------------------------------*/

.btn01 > .font-family03{
    font-size: 18px;
}

/*-----------------------------------------------------------
下層カバー
-----------------------------------------------------------*/

.in-cover {
	height: 300px;
}

.in-cover-title {
	font-size: 32px;
}

.in-cover-sub-title {
	font-size: 14px;
}

/*-----------------------------------------------------------
テーブル
-----------------------------------------------------------*/

.base-table-th {
	width: 30%;
	border-bottom: solid 1px var(--grey);
}

.base-table-td {
	width: 70%;
}

/*-----------------------------------------------------------
おすすめメニュー
-----------------------------------------------------------*/

.common-recommend-list {
    grid-template-columns: repeat(2,1fr);
}

.common-recommend-title {
    font-size: 32px;
}

.common-recommend-sub-title {
    font-size: 22px;
}
	
/*-----------------------------------------------------------
ヘッダー
-----------------------------------------------------------*/

/*ハンバーガー*/

.hamburger-btn {
    max-width: 60px;
    height: 60px;
}

.nav-content {
    max-width: 460px;
}

/* スマホ時 */

.sp-nav {
	display: none;
}

.sp-nav-btn {
	display: none;
}

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

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



/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
}/* min-width: 992px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */


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

/*-----------------------------------------------------------
全体スタイル
-----------------------------------------------------------*/

body {
	font-size: 16px;
}

/*-- 改行 --*/

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

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

/*-----------------------------------------------------------
タイトル
-----------------------------------------------------------*/

.en-title01 {
    font-size: 42px;
}

.title01 {
    font-size: 28px;
}

.title02 {
    font-size: 38px;
}

.title03 {
    font-size: 22px;
}

.title04 {
    font-size: 26px;
}
	
.sub-title01 {
    font-size: 22px;
    margin: -14px 0 0;
}

/*-----------------------------------------------------------
テキスト
-----------------------------------------------------------*/

.text-enhance01 > span {
    font-size: 1.8em;
  	letter-spacing: 0;
  	line-height: 1.44em;
}

.text-enhance02 > span {
    font-size: 1.33em;
}
	
/*-----------------------------------------------------------
ボタン
-----------------------------------------------------------*/

.btn01 {
    font-size: 16px;
}

.btn01 > .font-family03{
    font-size: 20px;
}

.btn01-arrow:before {
    width: 82px;
    right: -32px;
}

.btn01-arrow:after {
	right: -32px;
	width: 15px;
}

.btn01-arrow:hover:before, .btn01-arrow:hover:after {
    right: -40px;
}

/*-----------------------------------------------------------
下層カバー
-----------------------------------------------------------*/

.in-cover {
	height: 375px;
}

.in-cover-title {
	font-size: 36px;
}

.in-cover-sub-title {
	font-size: 16px;
}

/*-----------------------------------------------------------
パンくず
-----------------------------------------------------------*/

.breadcrumbs-wrapper {
	font-size: 14px;
	padding: 30px 0;
}

/*-----------------------------------------------------------
ブロック
-----------------------------------------------------------*/

.wrapper01 {
	padding: 75px 0 150px;
}

.wrapper02 {
	padding: 150px 0;
}

.wrapper03 {
	padding: 80px 0;
}

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

.webgene-pagination > ul > li{
	margin: 80px 10px 0;
}

/*-----------------------------------------------------------
おすすめメニュー
-----------------------------------------------------------*/

.common-recommend-list {
    gap: 40px;
    margin: 50px auto 0;
}

.common-recommend-link {
    padding: 300px 15px 60px;
}

.common-recommend-title {
    font-size: 45px;
}

.common-recommend-sub-title {
    font-size: 26px;
}

/*-----------------------------------------------------------
バナー
-----------------------------------------------------------*/

.common-banner01 {
    padding: 60px 15px 70px;
}
	
.common-banner01-btn {
    margin: 40px auto 0;
}

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

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

/*-----------------------------------------------------------
全体スタイル
-----------------------------------------------------------*/

body {
	font-size: 18px;
}

/*-- 改行 --*/

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

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

/*-----------------------------------------------------------
タイトル
-----------------------------------------------------------*/

.en-title01 {
    font-size: 50px;
}

.title01 {
    font-size: 36px;
}

.title02 {
    font-size: 45px;
}

.title04 {
    font-size: 30px;
}
	
.sub-title01 {
    font-size: 25px;
}

/*-----------------------------------------------------------
下層カバー
-----------------------------------------------------------*/

.in-cover-title {
	font-size: 50px;
}

/*-----------------------------------------------------------
おすすめメニュー
-----------------------------------------------------------*/

.common-recommend-link {
    padding: 490px 15px 80px;
}

.common-recommend-title {
    font-size: 60px;
}

.common-recommend-sub-title {
    font-size: 32px;
}

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

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

/*-----------------------------------------------------------
全体スタイル
-----------------------------------------------------------*/

/*-- 改行 --*/

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

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

/*-----------------------------------------------------------
ヘッダー
-----------------------------------------------------------*/

.header-nav-list {
    display: flex !important;
    margin: -13px 0 0 1% !important;
}

.header-link-block {
    max-width: 306px !important;
    margin: -10px 0 0 1% !important;
}

/*ハンバーガー*/
	
.hamburger-btn {
    display: none;
}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
}/* min-width: 1400px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

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

/*-----------------------------------------------------------
全体スタイル
-----------------------------------------------------------*/

/*-- 改行 --*/

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

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

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
}/* min-width: 1500px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

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

/*-----------------------------------------------------------
全体スタイル
-----------------------------------------------------------*/

/*-- 改行 --*/

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

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

/*-----------------------------------------------------------
ヘッダー
-----------------------------------------------------------*/

.header-nav-link {
    font-size: 16px !important;
}

.header-btn {
    font-size: 16px !important;
}
	
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
}/* min-width: 1600px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

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

/*-----------------------------------------------------------
タイトル
-----------------------------------------------------------*/

.en-title01 {
    font-size: 80px;
}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
}/* min-width: 1700px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */