@charset "utf-8";

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

:root {
	/* color */
	--base-color: #333;
	--primary: #2C4B53;
	--primary-light: #405A62;
	--secondary: #CFC8C2;
	--white: #fff;
	--dark: #201E1D;
  	--gray: #908F8E;
	--gray-light: #E6E3E1;

	/* font family */
	--base-font: "Shippori Mincho B1", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
}

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

html {
	overflow-x: hidden;
}

body {
	max-width: 1920px;
	width: 100%;
	margin: auto !important;
	font-family: var(--base-font);
	font-size: 14px;
	font-weight: 500;
	word-break: break-all;
	background: url(/system_panel/uploads/images/main_bg.jpg);
	color: var(--base-color);
	position: relative;
	overflow-x: hidden;
}

body .wow {
	opacity: 0;
}

body.active .wow {
	opacity: 1;
}

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

ul, li {
    list-style: none;
    padding: 0;
    margin: 0;
}

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;
}

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

.title01 {
	font-size: 24px;
	letter-spacing: 0.08em;
	line-height: 1.44em;
}

.title02 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.44em;
}

.title03 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.57em;
    letter-spacing: 0.08em;
}

.title04 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.46em;
    letter-spacing: 0.08em;
}

.title05 {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.46em;
    letter-spacing: 0.08em;
}

.title-decoration01 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title-decoration01:before {
    content: "";
    display: block;
    max-width: 80px;
    width: 100%;
    height: 14px;
    margin: 0 0 15px;
}

.title-decoration01-primary:before {
    background: url(/system_panel/uploads/images/title_decoration01_green.svg) no-repeat center top / contain;
}

.title-decoration01-white:before {
    background: url(/system_panel/uploads/images/title_decoration01_white.svg) no-repeat center top / contain;
}

.title-decoration02 {
    border-bottom: solid 1px;
    border-left: solid 5px;
    padding: 12px 15px;
}

.title-decoration02-light-gray {
    border-color: var(--light-gray)
}

.title-decoration02-primary {
    border-color: var(--primary)
}

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

.text01 {
    letter-spacing: 0.03em;
    line-height: 1.75em;
}

.text02 {
    letter-spacing: 0.03em;
    line-height: 1.66em;
}

.text03 {
    letter-spacing: 0.08em;
    line-height: 1.66em;
}

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

.btn01 {
    display: flex;
    justify-content: center;
    width: fit-content;
    align-items: center;
    padding: 10px 20px;
    border: solid 1px;
    letter-spacing: 0.03em;
}

.btn01-arrow {
    padding: 10px 95px 10px 20px;
    position: relative;
}

.btn01-arrow:before {
    content: "";
    display: block;
    max-width: 30px;
    width: 100%;
    height: 6px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

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

.btn01-arrow.btn01-dark:before {
    background: url(/system_panel/uploads/images/btn_arrow_icon01_black.svg) no-repeat center / contain;
}

.btn01-dark:hover {
    background: var(--dark);
    color: var(--white);
}

.btn01-arrow.btn01-dark:hover:before {
    background: url(/system_panel/uploads/images/btn_arrow_icon01_white.svg) no-repeat center / contain;
}

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

.btn01-arrow.btn01-white:before {
    background: url(/system_panel/uploads/images/btn_arrow_icon01_white.svg) no-repeat center / contain;
}

.btn01-white:hover {
    background: var(--white);
    color: var(--dark);
}

.btn01-arrow.btn01-white:hover:before {
    background: url(/system_panel/uploads/images/btn_arrow_icon01_black.svg) no-repeat center / contain;
}

/*-----------------------------------------------------------
ホバーアクション
-----------------------------------------------------------*/

.hvr-opacity:hover {
	opacity: .5;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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%;
}

.img-decoration01 {
    display: inline-block;
}

.img-decoration01:before {
    content: "";
    display: block;
    width: calc(100% - 15px);
    height: calc(100% - 15px);
    background: url(/system_panel/uploads/images/bg_texture03.png) var(--secondary);
    position: absolute;
}

.img-decoration01 > img {
    position: relative;
    z-index: 9;
}

.img-decoration01-left-bottom {
    padding: 0 0 15px 15px;
    position: relative;
}

.img-decoration01-left-bottom:before {
    left: 0;
    bottom: 0;
}

.img-decoration01-right-bottom {
    padding: 0 15px 15px 0;
    position: relative;
}

.img-decoration01-right-bottom:before {
    right: 0;
    bottom: 0;
}

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

.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: 250px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	margin: auto;
}

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

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

.in-cover-title {
	display: inline-block;
	font-size: 32px;
	font-weight: 600;
	line-height: 1.44em;
	color: var(--white);
	border-bottom: solid 1px var(--white);
}

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

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

.breadcrumbs-inner {
	max-width: 1250px;
	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: 80px 0 80px;
}

.wrapper02 {
	padding: 80px 0;
}

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

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

.base-table {
	max-width: 1140px;
	width: 100%;
	letter-spacing: 0.05em;
	font-size: 14px;
	line-height: 1.8em;
	background: var(--white);
	color: var(--dark);
	border: solid 1px var(
 --gray-light);
}

.base-table-tr:not(:last-child) {
	border-bottom: solid 1px var(--gray-light);
}

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

.base-table-th {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	font-weight: bold;
	background: var(--primary);
	color: #fff;
}

.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{
	opacity: 0.5;
	color: var(--white);
	cursor: inherit;
}

.webgene-pagination > ul > li > a{
	width: 100%;
	height: 40px;
	width: 40px;
	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: 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(--white);
	border-left: solid 2px var(--white);
	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(--white);
	border-right: solid 2px var(--white);
	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;
}

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

.in-banner-container01 {
    padding: 0;
}

.in-banner-row01 {
    margin-top: -30px;
}

.in-banner-col01 {
    margin-top: 30px;
}

.in-banner-link01 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 15px;
    position: relative;
}

.in-banner-link01:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 65%);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    transition: 0.3s;
}

.in-banner-link01:hover:before {
    background: rgb(0 0 0 / 40%);
}

.in-banner-link01-box {
    width: 100%;
    position: relative;
}

.in-banner-link01-title {
    color: var(--white);
    text-align: center;
}

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

.header-reserve-btn {
    cursor: pointer;
}

.header-reserve-second-level {
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}

.header-reserve-area:hover > .header-reserve-second-level {
    opacity: 1;
    visibility: visible;
}

/*ハンバーガー*/

.hamburger-btn {
    max-width: 70px;
    width: 100%;
    display: none;
    cursor: pointer;
    transition: .3s;
    margin: 0 0 0 1.5%;
    position: relative;
    z-index: 9999999;
}

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

.hamburger-btn-bar {
    max-width: 40px;
    width: 100%;
    height: 20px;
    margin: auto;
	position: relative;
}

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

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

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

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

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

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

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

.hamburger-text {
    font-size: 14px;
    letter-spacing: 0.03em;
    line-height: 1.44em;
    text-align: center;
    margin: 5px 0 0;
}

.nav-area {
    max-width: 1920px;
    width: 100%;
    margin: auto;
    background: var(--white);
    transition: ease .5s;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    transition: .5s;
    z-index: 9999999;
    opacity: 0;
    visibility: hidden;
}

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

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

.nav-content-inner {
    width: 100%;
}
.nav-link {
    display: block;
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1.45em;
    color: var(--base-color);
    border-bottom: solid 1px var(--gray);
    padding: 15px 5px;
}

.nav-link:hover {
    color: var(--gray);
}

.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.is-scroll {
    background: url(/system_panel/uploads/images/main_bg.jpg);
    position: fixed;
}

.is-scroll .header-wrapper {
    padding: 8px 15px;
}

.is-scroll .header-inner {
    justify-content: space-between;
}

.is-scroll .header-logo {
    display: block;
}

.header-insta-link.hidden {
    opacity: 0;
    visibility: hidden;
}

/*スマホ時のナビ*/

.sp-nav {
	width: calc(100% - 25%);
	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: 4px;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
}

.sp-nav-link-icon {
	max-width: 23px;
	width: 100%;
	height: 25px;
	display: flex;
	justify-content: center;
	align-items: center;
}

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

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

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

.sp-nav-btn {
	padding: 6px;
	width: 25%;
	height: 70px;
	position: fixed;
	right: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	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;
}

/*-----------------------------------------------------------
お料理ページ
-----------------------------------------------------------*/

.food-bubble-box:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 55px;
  margin: auto;
  border: 5px solid transparent;
  border-top: 15px solid var(--primary);
}

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



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

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



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

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

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

/*-- 改行 --*/

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

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

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

.title01 {
	font-size: 32px;
}

.title02 {
    font-size: 28px;
}

.title03 {
    font-size: 26px;
}

.title04 {
    font-size: 24px;
}

.title05 {
    font-size: 18px;
}

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

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

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

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

/*-- 改行 --*/

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

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

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

.title01 {
	font-size: 32px;
}

.title02 {
    font-size: 28px;
}

.title03 {
    font-size: 20px;
}

.title04 {
    font-size: 18px;
}

.title05 {
    font-size: 16px;
}

.title-md-vertical {
    line-height: 1em;
    letter-spacing: 0.1em;
    writing-mode: vertical-rl;
}

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

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

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

.base-table {
	font-size: 14px;
}

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

/*ハンバーガー*/

.hamburger-btn {
    display: block;
}

/* スマホ時 */

.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;
}

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

.title01 {
	font-size: 38px;
}

.title02 {
    font-size: 32px;
}

.title03 {
    font-size: 22px;
}

.title05 {
    font-size: 20px;
}

.title04 {
    font-size: 22px;
}

.title-decoration01:before {
    max-width: 132px;
    height: 22px;
    margin: 0 0 23px;
}

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

.img-decoration01:before {
    width: calc(100% - 30px);
    height: calc(100% - 30px);
}

.img-decoration01-left-bottom {
    padding: 0 0 30px 30px;
}

.img-decoration01-right-bottom {
    padding: 0 30px 30px 0;
}

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

.btn01 {
    padding: 18px 40px;
}

.btn01-arrow {
    padding: 18px 95px 18px 40px;
}

.btn01-arrow:before {
    max-width: 40px;
    right: 40px;
}
	
/*-----------------------------------------------------------
下層カバー
-----------------------------------------------------------*/

.in-cover {
	height: 450px;
}

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

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

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

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

.wrapper01 {
	padding: 160px 0;
}

.wrapper02 {
	padding: 160px 0;
}

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

.base-table {
	font-size: 16px;
}

.base-table-th, .base-table-td {
    padding: 15px 15px;
}
	
/*-----------------------------------------------------------
ページャー
-----------------------------------------------------------*/

.webgene-pagination > ul > li{
	margin: 80px 10px 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;
}

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

.title01 {
	font-size: 44px;
}

.title02 {
    font-size: 38px;
}

.title03 {
    font-size: 28px;
}

.title04 {
    font-size: 26px;
}


.title05 {
    font-size: 22px;
}
	
/*-----------------------------------------------------------
下層カバー
-----------------------------------------------------------*/

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

/*-----------------------------------------------------------
フッター
-----------------------------------------------------------*/
  
.footer-reserve-left-block {
	max-width: 320px !important;
}
  
.footer-reserve-tel {
	font-size: 40px !important;
}
  
.footer-reserve-btn {
	font-size: 20px !important;
}
  
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
}/* min-width: 1200px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

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

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

/*-- 改行 --*/

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

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

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

.title01 {
	font-size: 50px;
}

.title02 {
    font-size: 45px;
}

.title03 {
    font-size: 35px;
}

.title04 {
    font-size: 30px;
}


.title05 {
    font-size: 25px;
}

/*-----------------------------------------------------------
テキスト
-----------------------------------------------------------*/
	
.text01 {
  	font-size: 20px;
}

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

.header-main-logo-area {
    max-width: 130px !important;
}

.header-tel {
    max-width: 245px !important;
    font-size: 30px !important;
}

.header-tel-icon {
    max-width: 23px !important;
    height: 25px !important;
    margin: 5px 10px 0 0 !important;
}

.header-reserve-area {
    font-size: 18px !important;
    margin: 0 0 0 2% !important;
}

.header-reserve-icon {
    max-width: 24px !important;
    height: 23px !important;
    margin: 0 15px 0 0 !important;
}

/*ハンバーガー*/

.hamburger-btn {
    max-width: 75px;
    margin: 0 0 0 2%;
}

.hamburger-text {
    font-size: 18px;
}
	
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
}/* 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-reserve-area {
    margin: 0 0 0 5.79% !important;
}

/*ハンバーガー*/

.hamburger-btn {
    margin: 0 0 0 5.79% !important;
}

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