@charset "utf-8";

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

html {
  overflow-x: hidden;
}

body {
  max-width: 1920px;
  width: 100%;
  margin: auto !important;
  font-family: "Noto Sans JP", "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 13px;
  font-weight: 500;
  position: relative;
  color: #383838;
  background: url(/system_panel/uploads/images/main_bg.jpg) repeat-y center top;
  overflow-x: hidden;
  word-break: break-all;
}

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

.telWrap {
	color: inherit;
}

a, button {
	transition: .3s;
}

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

a:hover {
	color: inherit;
}

.overflow-hidden {
	overflow: hidden;
}

.overflow-auto {
	overflow: auto;
}

/* タイトル */

.tit01 {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1.44em;
}

.tit02 {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1.44em;
}

.tit03 {
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1.44em;
}

.titDeco01 {
    border-bottom: solid 2px #9B321B;
    padding: 0 0 10px;
}

/* テキスト */

.txt01 {
    letter-spacing: 0.05em;
    line-height: 2.11em;
}

.font01 {
    font-family: "Protest Revolution", sans-serif;
}

.font02 {
    font-family: "Yuji Syuku", serif;
}

.txtColor01 {
    color: #9B321B;
}

/* ボタン */

.btn01 {
    max-width: 305px;
    width: 100%;
    display: block;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1.45em;
    text-align: center;
    padding: 0 5px 5px 0;
    position: relative;
}

.btn01:before {
    content: "";
    display: block;
    width: calc(100% - 5px);
    height: calc(100% - 5px);
    border-right: solid 1px;
    border-bottom: solid 1px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.btn01In {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 25px 15px;
    position: relative;
    transition: .3s;
}

.btn01In:before {
    content: "";
    display: block;
    width: 9px;
    height: 14px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.btn01:hover > .btn01In {
    transform: translate(5px, 5px);
}

.btn01.hoverNone > .btn01In {
    transform: unset;
	padding: 16px 2% 15px;
}

.btn01.hoverNone > .btn01In:before {
    display: none;
}

.btn01ArrowNone .btn01In:before {
 display: none;
}

.btn01ArrowNone .btn01In {
    padding: 16px 2% 15px;
}

.btn01Color01:before {
    border-color: #CC6F1D;
}

.btn01Color01 > .btn01In {
    background: #CC6F1D;
    color: #fff;
}

.btn01Color01 > .btn01In:before {
     background: url(/system_panel/uploads/images/right_arrow_icon01.svg) no-repeat center / contain;
}

.btn01Color02:before {
    border-color: #fff;
}

.btn01Color02 > .btn01In {
    background: #fff;
    color: #383838;
}

.btn01Color02 > .btn01In:before {
     background: url(/system_panel/uploads/images/right_arrow_icon02.svg) no-repeat center / contain;
}

/* 画像 */

.imgControl {
    position: relative;
    padding: 0 0 100%;
    height: 0;
}

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

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

.imgRounded01 {
    border-radius: 50%;
}

img + .noImg {
    display: none;
}

/* 下層カバー */

.incover {
    max-width: 1920px;
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.incover:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 60%);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
}

.incoverBox {
    padding: 0 15px;
    text-align: center;
    color: #fff;
    position: relative;
}

.incoverTit {
  	font-size: 26px;
  	font-weight: bold;
  	letter-spacing: 0.05em;
  	line-height: 1.44em;
}

/* パンくず */

.breadWrap {
    padding: 10px 0;
    background: #141414;
    color: #fff;
}

.breadBox {
    max-width: 1170px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: auto;
    padding: 0 15px;
    font-size: 12px;
    letter-spacing: 0.08em;
}

.breadLink {
    display: block;
    color: #fff;
    text-decoration: underline;
}

.breadLink:hover {
    color: #fff;
    text-decoration: underline;
}

/* レイアウト */

.inWrap {
    padding: 75px 0;
}

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

/* 背景色 */

.bgColor01 {
    background: #141414;
    color: #fff;
}

/* リードテキスト */

.leadBox {
    max-width: 1080px;
    width: 100%;
    background: #FFF8E6;
    padding: 30px 5%;
    margin: auto;
}

.leadTxt {
    margin: 20px auto 0;
}

/* テーブル */

.baseTb {
    background: #fff;
    border: solid 1px #ccc;
    letter-spacing: 0.08em;
}

.baseTr:not(:last-child) {
    border-bottom: solid 1px #ccc;
}

.baseTh,.baseTd {
    padding: 15px;
}

.baseTh {
    background: #9B321B;
    color: #fff;
}

/* スライダー */

.cmnSlider01 {
    padding: 0;
}

.cmnIndicators01 {
    position: static;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin: 10px auto 0;
}

.cmnIndicators01 > .indicator:hover, .cmnIndicators01 > .indicator.active {
    opacity: 0.5;
}

.cmnSlider01 .carousel-item {
    padding: 0 50px;
}

.carousel-control-next-icon, .carousel-control-prev-icon {
    width: 30px;
    height: 80px;
}

.carousel-control-next-icon {
    background: linear-gradient(to bottom left, transparent 50%, #9B321B 53%) top left/ 100% 50% no-repeat,
    linear-gradient(to top left, transparent 50%, #9B321B 53%) bottom left / 100% 50% no-repeat;
}

.carousel-control-prev-icon {
    background: linear-gradient(to bottom right, transparent 50%, #9B321B 53%) top left/ 100% 50% no-repeat,
    linear-gradient(to top right, transparent 50%, #9B321B 53%) bottom left / 100% 50% no-repeat;
}

.carousel-control-next, .carousel-control-prev {
    width: 30px;
    opacity: 1;
}

.carousel-control-next:hover, .carousel-control-prev:hover {
    opacity: 0.5;
}

/* ページャー */

.webgene-pagination {
    width: 100%;
    margin: 80px auto 0;
}

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

.webgene-pagination > ul > li{
  margin: 0 10px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.42em;
  list-style: none;
}

.webgene-pagination > ul > .number{
  max-width: 40px;
  width:100%;
  height: 40px;
  min-height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.webgene-pagination > ul > .number.selected > a{
  background: #CC6F1D;
  color: #fff;
  cursor: inherit;
}

.webgene-pagination > ul > .number.selected > a:hover {
    color: #FFF;
    background-color: #141414;
}

.webgene-pagination > ul > .number > a{
  width: 100%;
  height: 40px;
  width: 40px;
  color: #383838;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.webgene-pagination > ul > .number > a:hover{
  color:#FFF;
  background-color: #CC6F1D;
}

.webgene-pagination .next > a, .webgene-pagination  .prev > a {
    max-width: 20px;
    width: 100%;
    min-width: 20px;
    height: 30px;
    min-height: 30px;
    display: block;
}

.webgene-pagination .next > a {
    background:linear-gradient(to bottom left, transparent 50%, #9B321B 53%) top left/ 100% 50% no-repeat,
    linear-gradient(to top left, transparent 50%, #9B321B 53%) bottom left / 100% 50% no-repeat;
}

.webgene-pagination .prev > a {
    background:linear-gradient(to bottom right, transparent 50%, #9B321B 53%) top left/ 100% 50% no-repeat,
    linear-gradient(to top right, transparent 50%, #9B321B 53%) bottom left / 100% 50% no-repeat;
}

.webgene-pagination .next > a:hover, .webgene-pagination .prev > a:hover {
    opacity: 0.5;
}

/* メニューバナー */
  
.cmnBnrList {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
}

.cmnBnr01 {
    padding: 30px 15px;
    color: #fff;
}

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

.cmnBnr01Btn {
    margin: 20px auto 0;
}

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

.header {
    z-index: 999999;
}

.hLogo {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}

.hIconLink {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}

.gnavLink:before {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: #fff;
    position: absolute;
    bottom: -5px;
    right: 0;
    left: 0;
    margin: auto;
    transition: .3s;
}

.gnavLink:hover:before {
    width: 100%;
}

/*ドロップダウン*/

.gnavSec {
    margin: auto;
    position: absolute;
    visibility: hidden;
    opacity: 0;
    transition: .3s;
}

.gnavSl:hover > .gnavSec {
    visibility: visible;
    opacity: 1;
}

.gnavSec:hover {
    opacity: 1;
    visibility: visible;
}

/*スクロール時のナビ*/

.is-active .hIn {
    padding: 13px 15px 12px !important;
}

/*スマホ時のナビ*/

.spNav {
	max-width: calc(100% - 60px);
	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;
}

.spNavArea {
	width: 100%;
	height: 100%;
	display: flex;
	background: #9B321B;
}

.spNavBlock {
	flex: 1;
	display: flex;
}

.spNavConte-l {
	width: 33.33%;
	border-right: 1px solid #fff;
}

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

.spNavLinkIconBx {
	width: 100%;
	height: 30px;
	position: relative;
}

.spNavLinkIconBx > * {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

.spFa {
	font-size: 23px;
	color: #fff;
}

.spNavBtnBar {
	max-width: 36px;
	height: 26px;
	width: 100%;
	position: relative;
}

.spNavBtnTxt {
	margin: 5px auto 0;
	font-size: 12px;
	line-height: 1em;
	color: #9B321B;
}

.spNavLinkTxt {
	margin: 5px auto 0;
	font-size: 10px;
	line-height: 1em;
	color: #fff;
}

.spNavBtn {
	padding: 10px 5px 5px;
	width: 60px;
	height: 70px;
	position: fixed;
	right: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	background: #fff;
	z-index: 99999999;
	animation-name: fadein;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
}

.spNavBtnBarItem {
	width: 100%;
	height: 3px;
	background: #9B321B;
	border-radius: 3px;
	position: absolute;
	left: 0;
	transition: ease .5s;
}

.spNavBtnBarItem:nth-of-type(1) {
	top: 0;
}

.spNavBtnBarItem:nth-of-type(2) {
	top: 12px;
}

.spNavBtnBarItem:nth-of-type(3) {
	bottom: 0;
}

.open .spNavBtnBarItem {
	transition: ease .5s;
}

.open .spNavBtnBarItem:nth-of-type(1) {
	transform: translateY(13px) rotate(-45deg);
}

.open .spNavBtnBarItem:nth-of-type(2) {
	opacity: 0;
}

.open .spNavBtnBarItem:nth-of-type(3) {
	transform: translateY(-10px) rotate(45deg);
}

.spMenu {
	margin: auto;
	padding: 0;
	max-width: 1920px;
	width: 100%;
	position: fixed;
	top: 0;
	bottom: 0;
	right: -100%;
	background: rgb(20 20 20 / 90%);
	z-index: 9999999;
	transition: ease .5s;
}

.spMenu.open {
	right: 0;
}

.spMenuArea {
	width: 100%;
	height: 100%;
	overflow: auto;
	padding: 100px 15px;
}

.spMenuBx {
	display: flex;
	flex-wrap: wrap;
}

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

.spMenuConte::-webkit-scrollbar {
	display:none;
}

.spMenuLink {
	width: 100%;
	padding: 15px 0;
	display: block;
	color: #fff;
	font-weight: bold;
	line-height: 1.5em;
	letter-spacing: 0.05em;
	position: relative;
	border-bottom: solid 1px #fff;
}

.spMenuLink:hover {
	color: #fff;
}

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



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

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



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

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


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

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

@media screen and (min-width: 768px) {
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
  
/*-----------------------------------------------------------
全体スタイル
-----------------------------------------------------------*/

body {
	font-size: 14px;
}

/*-- 改行 --*/
.br768None br {
	display: none;
}

/* タイトル */

.tit01 {
    font-size: 32px;
}

.tit02 {
    font-size: 26px;
}

.tit03 {
    font-size: 20px;
}
	
/* ボタン */

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

.incover {
    height: 350px;
}

.incoverTit {
  	font-size: 38px;
}

/* パンくず */

.breadBox {
    font-size: 13px;
}

/* テーブル */

.baseTh {
    display: flex;
    justify-content: center;
    align-items: center;
}
	
/*-----------------------------------------------------------
ヘッダー
-----------------------------------------------------------*/

/* スマホ時 */
  
.spNav {
	display: none;
}

.spNavBtn {
	display: none;
}

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

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



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


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

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

body {
	font-size: 16px;
}

/*-- 改行 --*/
.br1024None br {
	display: none;
}

/* タイトル */

.tit01 {
    font-size: 36px;
}

.tit02 {
    font-size: 32px;
}

.tit03 {
    font-size: 26px;
}

/* ボタン */

.btn01 {
    font-size: 20px;
}

.btn01In {
    padding: 16px 40px 15px;
}

.btn01In:before {
    width: 11px;
    height: 16px;
    right: 20px;
}
	
/* 下層カバー */

.incover {
    height: 400px;
}

.incoverTit {
  	font-size: 50px;
}

/* パンくず */

.breadWrap {
    padding: 15px 0;
}

.breadBox {
    font-size: 14px;
}

/* レイアウト */

.inWrap {
    padding: 160px 0;
}

.breadWrap + .inWrap {
    padding: 150px 0 150px;
}

/* リードテキスト */

.leadBox {
    padding: 60px 5%;
}

.leadTxt {
    margin: 40px auto 0;
}
  
/* メニューバナー */
  
.cmnBnrList {
	grid-template-columns: repeat(2, 1fr);
}
  
.cmnBnrItem.fluid {
	grid-column: 1/3;
}

.cmnBnr01 {
    padding: 60px 15px;
}

.cmnBnr01Btn {
    margin: 60px auto 0;
}
	
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
}/* min-width: 1024px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

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


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

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:1200px) {
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
  
/*-----------------------------------------------------------
全体スタイル
-----------------------------------------------------------*/

body {
	font-size: 18px;
}
	
/*-- 改行 --*/

.br1200None br {
	display: none;
}

/* タイトル */

.tit01 {
    font-size: 50px;
}

.tit02 {
    font-size: 36px;
}

.tit03 {
    font-size: 28px;
}

/* 下層カバー */

.incoverTit {
  	font-size: 65px;
}

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

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

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

.header {
    background: unset !important;
}
	
.hIn {
    padding: 25px 15px !important;
}

.hLogo {
    width: 15.94% !important;
}
  
.gnav {
    max-width: 775px !important;
    width: 100% !important;
    background: unset !important;
    padding: 0 !important;
    position: absolute;
    top: 50%;
    right: 340px;
    transform: translateY(-50%);
}

/*スクロール時のナビ*/

.header.is-active {
    background: #141414 !important;
}

.is-active .hIn {
    padding: 13px 15px 12px !important;
}

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

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

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

/*-- 改行 --*/
.br1600None br {
	display: none;
}
	
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
}/* min-width: 1600px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

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

/*-----------------------------------------------------------
ヘッダー
-----------------------------------------------------------*/
  
.gnav {
    right: 400px;
}

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


@media screen and (max-width: 374px) {
  .reservation02 {font-size: 14px !important;}}