@charset "utf-8";
/* ==========================================================================
#フォント設定
========================================================================== */
/*@font-face {
	font-family: "myFont";
	src: url("../fonts/Noto_light.eot?") format('eot'), url("../fonts/Noto_light.woff?") format('woff')
}
@font-face {
	
	src: url("../fonts/Noto_medium.eot?") format('eot'), url("../fonts/Noto_medium.woff?") format('woff')
}*/
@font-face {
	font-family: Gothic;
	src: url(../fonts/Gothic.woff) format('woff');
}
@font-face {
	font-family: Gothic-B;
	src: url(../fonts/Gothic-B.woff) format('woff');
}
/* ==========================================================================
#基本
========================================================================== */
html,
body {
	background-color: #FFF;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
}
html {
	height: 100%;
	-webkit-tap-highlight-color: transparent;
	font-size: 13px;
}
@media (min-width: 640px) {
html {
	font-size: 14px;
}
}
body {
	font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
	font-size: 1rem;
	color: #292828;
	min-height: 100%;
	max-width: 1920px;
	margin: 0 auto;
	position: relative;
	-webkit-text-size-adjust: none;
}
/* -----------------------------------
 * Slidebars
 * Version 0.10.3
 * http://plugins.adchsm.me/slidebars/
 *
 * Written by Adam Smith
 * http://www.adchsm.me/
 *
 * Released under MIT License
 * http://plugins.adchsm.me/slidebars/license.txt
 *
 * -------------------
 * Slidebars CSS Index
 *
 * 001 - Box Model, Html & Body
 * 002 - Site
 * 003 - Slidebars
 * 004 - Animation
 * 005 - Helper Classes
 *
 * ----------------------------
 * 001 - Box Model, Html & Body
 */

html,
body,
#sb-site,
.sb-site-container,
.sb-slidebar {
	/* Set box model to prevent any user added margins or paddings from altering the widths or heights. */
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
html,
body {
	width: 100%;
	overflow-x: hidden; /* Stops horizontal scrolling. */
}
html {
	height: 100%; /* Site is as tall as device. */
}
body {
	min-height: 100%;
	height: auto;
	position: relative; /* Required for static Slidebars to function properly. */
}
/* Site scroll locking - prevent site from scrolling when a Slidebar is open, except when static Slidebars are only available. */
html.sb-scroll-lock.sb-active:not(.sb-static) {
	overflow: hidden;
}
/* ----------
 * 002 - Site
 */

#sb-site,
.sb-site-container {
	/* You may now use class .sb-site-container instead of #sb-site and use your own id. However please make sure you don't set any of the following styles any differently on your id. */
	width: 100%;
	min-height: 100%;
	position: relative;
	z-index: 1; /* Site sits above Slidebars */
}
/* Micro clearfix by Nicolas Gallagher, ensures the site container hits the top and bottom of the screen. */
#sb-site:before,
#sb-site:after,
.sb-site-container:before,
.sb-site-container:after {
	content: ' ';
	display: table;
}
#sb-site:before,
#sb-site:after,
.sb-site-container:before,
.sb-site-container:after {
	clear: both;
}
/* ---------------
 * 003 - Slidebars
 */

.sb-slidebar {
	height: 100%;
	overflow-y: auto; /* Enable vertical scrolling on Slidebars when needed. */
	position: fixed;
	top: 0;
	z-index: 0; /* Slidebars sit behind sb-site. */
	display: none; /* Initially hide the Slidebars. Changed from visibility to display to allow -webkit-overflow-scrolling. */
	background-color: #EEE; /* Default Slidebars background colour, overwrite this with your own css. */
}
.sb-slidebar,
.sb-slidebar * {
	-webkit-transform: translateZ( 0px ); /* Fixes issues with translated and z-indexed elements on iOS 7. */
}
.sb-left {
	left: 0; /* Set Slidebar to the left. */
}
.sb-right {
	right: 0; /* Set Slidebar to the right. */
}
html.sb-static .sb-slidebar,
.sb-slidebar.sb-static {
	position: absolute; /* Makes Slidebars scroll naturally with the site, and unfixes them for Android Browser < 3 and iOS < 5. */
}
.sb-slidebar.sb-active {
	display: block; /* Makes Slidebars visibile when open. Changed from visibility to display to allow -webkit-overflow-scrolling. */
}
.sb-style-overlay {
	z-index: 9999; /* Set z-index high to ensure it overlays any other site elements. */
}
.sb-momentum-scrolling {
	-webkit-overflow-scrolling: touch; /* Adds native momentum scrolling for iOS & Android devices. */
}
/* Slidebar widths for browsers/devices that don't support media queries. */
.sb-slidebar {
	width: 90%;
}
.sb-width-thin {
	width: 15%;
}
.sb-width-wide {
	width: 45%;
}
 @media (max-width: 480px) { /* Slidebar widths on extra small screens. */
.sb-slidebar {
	width: 90%;
}
.sb-width-thin {
	width: 55%;
}
.sb-width-wide {
	width: 85%;
}
}
 @media (min-width: 481px) { /* Slidebar widths on small screens. */
.sb-slidebar {
	width: 320px;
}
.sb-width-thin {
	width: 40%;
}
.sb-width-wide {
	width: 70%;
}
}
 @media (min-width: 768px) { /* Slidebar widths on medium screens. */
.sb-slidebar {
	width: 400px;
}
.sb-width-thin {
	width: 25%;
}
.sb-width-wide {
	width: 55%;
}
}
 @media (min-width: 992px) { /* Slidebar widths on large screens. */
.sb-slidebar {
	width: 400px;
}
.sb-width-thin {
	width: 15%;
}
.sb-width-wide {
	width: 45%;
}
}
 @media (min-width: 1200px) { /* Slidebar widths on extra large screens. */
.sb-slidebar {
	width: 400px;
}
.sb-width-thin {
	width: 5%;
}
.sb-width-wide {
	width: 35%;
}
}
/* ---------------
 * 004 - Animation
 */

.sb-slide,
#sb-site,
.sb-site-container,
.sb-slidebar {
	-webkit-transform: translate( 0px );
	-moz-transform: translate( 0px );
	-o-transform: translate( 0px );
	transform: translate( 0px );
	-webkit-transition: -webkit-transform 300ms ease-out;
	-moz-transition: -moz-transform 300ms ease-out;
	-o-transition: -o-transform 300ms ease-out;
	transition: transform 300ms ease-out;
	-webkit-transition-property: -webkit-transform, left, right; /* Add left/right for Android < 4.4. */
	-webkit-backface-visibility: hidden; /* Prevents flickering. This is non essential, and you may remove it if your having problems with fixed background images in Chrome. */
}
/* --------------------
 * 005 - Helper Classes
 */
 
.sb-hide {
	display: none; /* Optionally applied to control classes when Slidebars is disabled over a certain width. */
}
/* ==========================================================================
#フォント
========================================================================== */

.Gothic {
	font-family: Gothic;
}
.Gothic-B {
	font-family: Gothic-B;
}
h1 {
	font-size: 2rem;
	margin-bottom: 2rem;
}
p {
	line-height: 1.8;
	margin-bottom: 0;
	color: inherit;
}
p + p,
p + img,
img + p {
	margin-top: 1em;
}
a,
span {
	line-height: inherit;
	color: inherit;
}
.font-Bold {
	font-weight: bold;
}
.font-12 {
	font-size: 0.8rem;
	line-height: 1.4;
}
a {
	-webkit-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}
a:hover {
	color: #00ACED;
	text-decoration: none;
}
.anchor {
	margin-top: -80px;
	padding-top: 80px;
}
@media (min-width: 960px) {
.anchor {
	margin-top: -100px;
	padding-top: 100px;
}
}
/* ==============================================================
   #ボーダー
   ============================================================== */ 
.bodylineTop {
	background: #292828;
	z-index: 100;
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
}
@media (min-width: 1200px) {
.bodylineTop,
.bodylineBottom,
.bodylineRight,
.bodylineLeft {
	background: #FF6AB8;
	background-image: url(../images/common/ami.svg);
    background-size: 6px auto;
    background-repeat: repeat;
    background-position: center;
	z-index: 100;
	display: block;
	position: fixed;
}
.bodylineTop,
.bodylineBottom {
	height: 10px;
}
.bodylineRight,
.bodylineLeft {
	width: 10px;
}
.bodylineTop {
	top: 0;
	left: 0;
	right: 0;
}
.bodylineRight {
	top: 0;
	right: 0;
	bottom: 0;
}
.bodylineBottom {
	bottom: 0;
	left: 0;
	right: 0;
}
.bodylineLeft {
	top: 0;
	left: 0;
	bottom: 0;
}
}
/* ==========================================================================
#ヘッダー
========================================================================== */
header {
	background-color: rgba(255,180,219,1);
	height: 60px;
	width: 100%;
	-webkit-transition: 0.2s ease-out;
	transition: 0.2s ease-out;
	z-index: 98;
	position: fixed;
	top: 4px;
	left: 0;
}
header.scroll {
	background-color: #FF6AB8;
}
@media (min-width: 960px) {
header {
	background-color: #FFF;
	height: 90px;
	top: 10px;
	left: 0;
	padding: 0 10px;
	box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 0px 0px;
}
header.scroll {
	background-color: #FFF;
	height: 72px;
	box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 2px 0px;
}
}
header h1 {
	display: none;
	margin: 0;
	-webkit-transition: 0.2s ease-out;
	transition: 0.2s ease-out;
}
h1#Logo-sp {
	height: 60px;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	text-align: left;
}
h1#Logo-sp img {
	display: block;
	height: 24px;
	width: auto auto auto 0;
	position: absolute;
	margin: auto;
	left: 20px;
	top: 0;
	bottom: 0;
}
 @media (min-width: 960px) {
header h1 {
	display: inherit;
	font-size: 13px;
	line-height: 60px;
	padding-left: 220px;
	float: right;
	padding-top: 10px;
}
header.scroll h1 {
	padding-top: 0;
}
}
#Logo {
	display: none;
}
@media (min-width: 960px) {
#Logo {
	display: inherit;
	width: 160px;
	height: 160px;
	position: fixed;
	top: 15px;
	left: 15px;
	z-index: 999999;
}
#Logo a {
	background-color: rgba(255,106,184,.7);
	display: block;
	padding: 30px;
}
#Logo a:hover {
	background-color: rgba(255,106,184,.5);
}
}
@media (min-width: 1200px) {
#Logo {
	width: 180px;
	height: 180px;
}
}
.marker {
	background-image: url(../images/common/line_bg.png);
	background-size: 24px;
	background-position: center;
	padding: 3px 8px;
	color: #FF6AB8;
}
em {
	font-style: normal;
}
/* ==========================================================================
#グローバルナビゲーション
========================================================================== */
#Global-menu {
	display: none;
}
@media (min-width: 1200px) {
#Global-menu {
	display: inherit;
	height: 100%;
}
#Global-menu ul {
	height: 100%;
	-webkit-display: flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
	margin: 0;
	padding-right: 10px;
	list-style: none;
}
#Global-menu ul li {
	position: relative;
}
#Global-menu ul li a {
	display: block;
	padding: 15px 20px;
	font-size: 12px;
	font-weight: bold;
	line-height: 1.2;
	text-decoration: none;
	position: relative;
}

 #Global-menu ul li a {
 padding: 15px 20px;
}
 #Global-menu ul li a span:first-child {
}
 #Global-menu ul li + li::before {
		content: "";
		border-left: #CCC solid 1px;
		width: 0;
		margin: auto;
		position: absolute;
		top: 10px;
		left: 0;
		bottom: 10px;
}
}
@media (min-width: 1366px) {
	 #Global-menu ul li a {
	font-size: 1rem;
}
}
 @media (min-width: 1200px) {
.translation {
	font-family: Gothic;
	margin-top: 2px;
	font-size: 9px;
	font-weight: normal;
	display: block;
}
}
.asterisk {
	width: 12px;
	height: 12px;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 10px;
	margin: auto auto auto 0;
	-moz-animation: ast 6s linear 0s infinite normal;
	-webkit-animation: ast 6s linear 0s infinite normal;
	-o-animation: ast 6s linear 0s infinite normal;
	-ms-animation: ast 6s linear 0s infinite normal;
}
 @-moz-keyframes ast {
 0% {
-moz-transform: rotate(0)
}
 100% {
-moz-transform: rotate(-360deg)
}
}
@-webkit-keyframes ast {
 0% {
-webkit-transform: rotate(0)
}
 100% {
-webkit-transform: rotate(-360deg)
}
}
@-o-keyframes ast {
 0% {
-o-transform: rotate(0)
}
 100% {
-o-transform: rotate(-360deg)
}
}
@-ms-keyframes ast {
 0% {
-ms-transform: rotate(0)
}
 100% {
-ms-transform: rotate(-360deg)
}
}
.asterisk span {
	display: block;
	background-color: #FFF;
	width: 12px;
	height: 2px;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}
.asterisk span:before {
	content: "";
	display: block;
	background-color: #FFF;
	width: 12px;
	height: 2px;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}
.asterisk span + span {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.asterisk span + span:before {
	content: "";
	display: block;
	width: 12px;
	height: 2px;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}
a:hover .asterisk span,
a:hover .asterisk span:before,
a:hover .asterisk span + span,
a:hover .asterisk span + span:before {
	background-color: rgba(255,180,219,1);
}
#Global-menu ul li a:hover {
	color: #FF6AB8;
}
body.index #Global-menu ul li.nav01 a,
body.Niigata #Global-menu ul li.nav02 a,
body.Tokyo #Global-menu ul li.nav03 a,
body.fukushima #Global-menu ul li.nav04 a,
body.Service #Global-menu ul li.nav06 a,
body.Interview #Global-menu ul li.nav07 a,
body.Recipe #Global-menu ul li.nav07 a {
	background-color: rgba(255,180,219,1);
	border-radius: 2px;
	color: #FFF;
}
body.index #Global-menu ul li.nav01 a:hover,
body.Niigata #Global-menu ul li.nav02 a:hover,
body.Tokyo #Global-menu ul li.nav03 a:hover,
body.fukushima #Global-menu ul li.nav04 a:hover,
body.Service #Global-menu ul li.nav06 a:hover,
body.Interview #Global-menu ul li.nav07 a:hover,
body.Recipe #Global-menu ul li.nav07 a:hover {
	background-color: #FF6AB8;
	color: #FFF;
}
}
#Global-menu ul li a span br {
	display: inherit;
}
@media (min-width: 1200px) {
#Global-menu ul li a span br {
	display: none;
}
}
.sb-left #Global-menu {
	display: inherit;
	padding: 100px 20px;
}
.sb-left #Global-menu ul {
	height: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}
.sb-left #Global-menu ul li a {
	display: block;
	padding: 15px 0;
	border-bottom: #CCC solid 1px;
}
.sb-left #Global-menu ul li a span {
	position: relative;
	display: block;
}
.sb-left #Global-menu ul li a span:before {
	content: '';
	border: 2px solid transparent;
	border-color: #CCC;
	border-top: none;
	border-left: none;
	display: inline-block;
	width: 10px;
	height: 10px;
	margin: auto;
	position: absolute;
	top: 0;
	right: 14px;
	bottom: 0;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transition: 0.2s ease-out;
	transition: 0.2s ease-out;
}
.sb-left #Global-menu ul li a span:after {
	content: '';
	border-top: solid 2px #CCC;
	display: inline-block;
	width: 10px;
	height: 1px;
	margin: auto;
	position: absolute;
	top: 0;
	right: 14px;
	bottom: 0;
	-webkit-transition: 0.2s ease-out;
	transition: 0.2s ease-out;
}
/* ==========================================================================
#ボタン
========================================================================== */
.link-btn-wrap {
	width: calc(100% - 40px);
	max-width: 640px;
	margin: auto;
}
.link-btn {
	width: 100%;
	padding: 0;
	margin: 2rem auto 0;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	position: relative;
}
/*.link-btn::before {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 8px 8px 0 8px;
	border-color: #FFF transparent transparent transparent;
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}*/
.link-btn.h50 {
	width: 48%;
	float: left;
}
.link-btn.h50 + .link-btn.h50 {
	width: 48%;
	float: right;
}

.link-btn.h30 + .h30 {
	margin-top: 10px;
}


.link-btn a {
	display: block;
	background-color: #e8da65;
	border-style: solid;
	border-width: 2px;
	border-color: #e8da65;
	border-radius: 4px;
	padding: 15px 10px;
	width: calc(100% - 40px);
	max-width: 480px;
	font-size: 14px;
	font-weight: bold;
	margin: 0 auto;
	line-height: 1.4;
	text-align: center;
	-webkit-transition: 0.2s ease-out;
	transition: 0.2s ease-out;
}
.link-btn a:hover {
	background-color: #FFFF4D;
	border-color: #FFFF4D;
	color: #F76F00;
}
.link-btn.h50 a,
.link-btn.h30 a {
	width: 100%;
}

 @media (min-width: 640px) {
	 .link-btn a {
		 font-size: 16px;
	padding: 15px;
	font-weight: normal;
}
.link-btn a br {
	display: none;
}

.link-btn.h30 {
	width: 200px;
	float: left;
}
.link-btn.h30 + .h30 {
	margin-left: 20px;
	margin-top: 2rem;
}

}
.link-btn.border a {
	background-color: #FFF;
	border-color: #FFF;
	max-width: 100%;
	padding: 2rem 1rem;
	font-size: 20px;
	color: #FF6AB8;
}
.link-btn a span.Arrow {
	display: inline-block;
	vertical-align: middle;
	padding-right: 32px;
	position: relative;
	text-align: left;
}
.link-btn a span.Arrow:before {
	content: '';
	border: 2px solid transparent;
	border-color: #292828;
	border-top: none;
	border-left: none;
	display: inline-block;
	width: 12px;
	height: 12px;
	margin: auto;
	position: absolute;
	top: 0;
	right: 2px;
	bottom: 0;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transition: 0.2s ease-out;
	transition: 0.2s ease-out;
}
.link-btn a:hover span.Arrow:before {
	border-color: #F76F00;
	right: 10px;
}
.link-btn a span.Arrow:after {
	content: '';
	border-top: solid 2px #292828;
	display: inline-block;
	width: 12px;
	height: 1px;
	margin: auto;
	position: absolute;
	top: 0;
	right: 2px;
	bottom: 0;
	-webkit-transition: 0.2s ease-out;
	transition: 0.2s ease-out;
}
.link-btn a:hover span.Arrow:after {
	border-color: #F76F00;
	right: 10px;
}
/* ==========================================================================
#マージン
========================================================================== */
.mb-0 {
	margin-bottom: 0!important;
}
.mb-20 {
	margin-bottom: 20px!important;
}
.mb-10 {
	margin-bottom: 10px!important;
}
.mb-30 {
	margin-bottom: 30px!important;
}
.mb-40 {
	margin-bottom: 40px!important;
}
.mb-50 {
	margin-bottom: 50px!important;
}
.mb-60 {
	margin-bottom: 60px!important;
}
.mb-70 {
	margin-bottom: 70px!important;
}
.mb-80 {
	margin-bottom: 80px!important;
}
.mb-90 {
	margin-bottom: 90px!important;
}
.mb-100 {
	margin-bottom: 100px!important;
}
/* ==========================================================================
#見出し
========================================================================== */

h1,
h2 {
	font-size: 1.4rem;
	margin-bottom: 2rem;
}
@media (min-width: 640px) {
h1,
h2 {
	font-size: 2rem;
}
}
h3 {
	font-size: 18px;
}
@media (min-width: 640px) {
h3 {
	font-size: 24px;
}
}
h3 + p,
h3 + ol {
	margin-top: 1em;
}
h4 {
	font-size: 1rem;
}
.section-title {
	margin-bottom: 2rem;
	width: calc(100% - 40px);
	margin-left: auto;
	margin-right: auto;
	position: relative;
}
./*section-title::before {
	content: "";
	background-color: rgba(255,180,219,0.5);
	height: 6rem;
	width: 50%;
	margin: auto;
	position: absolute;
	top: -4rem;
	right: 0;
	left: 0;
	z-index: -1;
}*/
.section-title img {
	display: block;
	margin: auto;
}
.section-title span:first-child {
	display: block;
	margin-bottom: 10px;
	font-size: 1rem;
}
.section-title span:last-child {
	font-weight: bold;
}
.section-title + h3 {
	text-align: center;
	font-size: 15px;
	margin-bottom: 2rem;
	line-height: 1.4;
	padding: 0 20px;
}
@media (min-width: 960px) {
.section-title {
	    font-size: 32px;
	margin-bottom: 3rem;
}
.section-title span:first-child {
	font-size: 18px;
}
.section-title span:last-child {
/*	 letter-spacing: 0.2em;
    text-indent: 0.2em;*/
}
.section-title + h3 {
	font-size: 20px;
	margin-bottom: 4rem;
}
}
.photo-box + .text-box {
	margin-top: 1em;
}
@media (min-width: 960px) {
.photo-box + .text-box {
	margin-top: 0;
}
}

.lead-text {
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 2px;
	line-height: 1.4;
	margin-top: 1rem;
	margin-bottom: 1rem;
}
.lead-min-text {
	font-size: 16px;
	line-height: 1.4;
	font-weight: bold;
}
@media (min-width: 960px) {
	.lead-text {
	font-size: 22px;
}
.lead-min-text {
	font-size: 18px;
	letter-spacing: 1px;
}
}



.caution {
    color: rgba(255,106,184,1);
    display: block;
    font-size: 12px;
    text-indent: -1em;
    margin-left: 1em;
	line-height: 1.4;
}

/* ==========================================================================
#ヘッダーメニュー
========================================================================== */
#Side-btn-area {
	padding: 5px;
	display: block;
	height: 100%;
	width: 160px;
	float: right;
	-webkit-transition: 0.2s linear;
	transition: 0.2s linear;
	z-index: 10;
	position: relative;
}
header.scroll #Side-btn-area {
	background-color: rgba(255,106,184,1);
	width: 100%;
}
@media (min-width: 640px) {
header.scroll #Side-btn-area {
	width: 50%;
}
}
 @media (min-width: 960px) {
#Side-btn-area {
	background-color: rgba(255,180,219,1);
	width: auto;
}
header.scroll #Side-btn-area {
	background-color: rgba(255,106,184,1);
	width: auto;
}
}
#Side-btn,
#Side-btn-search,
#Side-btn-contact {
	height: 100%;
	width: 50px;
	text-align: center;
	float: right;
	position: relative;
	cursor: pointer;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
	overflow: hidden;
	-webkit-transition: 0.2s linear;
	transition: 0.2s linear;
}
header.scroll #Side-btn,
header.scroll #Side-btn-search {
	width: 30%;
}
header.scroll #Side-btn-contact {
	width: 40%;
}
 @media (min-width: 960px) {
#Side-btn,
 #Side-btn-search,
 #Side-btn-contact,
 header.scroll #Side-btn,
 header.scroll #Side-btn-search,
 header.scroll #Side-btn-contact {
	width: auto;
}
}
#Side-btn:after,
#Side-btn-contact:after {
	content: "";
	height: 30px;
	width: 0;
	border-left: #FFF solid 1px;
	position: absolute;
	margin: auto;
	top: 10px;
	right: 0;
}
@media (min-width: 960px) {
#Side-btn:after,
 #Side-btn-contact:after {
	content: "";
	height: 40px;
	width: 0;
	margin-top: -20px;
	top: 50%;
	right: 0;
}
}
 @media (min-width: 960px) {
#Side-btn,
#Side-btn-search,
#Side-btn-contact {
	background-color: transparent;
}
}
@media (min-width: 1200px) {
#Side-btn {
	display: none;
}
}
.btn-wrapper,
#Side-btn-contact a {
	width: 100%;
	height: 100%;
	position: relative;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
	text-decoration: none;
	padding-right: 20px;
	border-radius: 2px;
	overflow: hidden;
}
header.scroll .btn-wrapper,
header.scroll #Side-btn-contact a {
	width: auto;
	margin: 0 auto;
}
.btn-wrapper:hover,
#Side-btn-contact a:hover {
	background-color: rgba(255,106,184,1);
}
header.scroll .btn-wrapper:hover,
header.scroll #Side-btn-contact a:hover {
	background-color: rgba(255,180,219,1);
}
#Side-btn #Nav-btn,
#Side-btn-search #Nav-btn,
#Side-btn-contact #Nav-btn {
	text-align: center;
	width: 20px;
	height: 20px;
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
}
header.scroll #Side-btn #Nav-btn,
header.scroll #Side-btn-search #Nav-btn,
header.scroll #Side-btn-contact #Nav-btn {
	left: 10px;
	right: inherit;
}
@media (min-width: 960px) {
#Side-btn #Nav-btn,
 #Side-btn-search #Nav-btn,
 #Side-btn-contact #Nav-btn {
	left: 20px;
	right: inherit;
}
header.scroll #Side-btn #Nav-btn,
header.scroll #Side-btn-search #Nav-btn,
header.scroll #Side-btn-contact #Nav-btn {
	left: 20px;
	right: inherit;
}
}
#Side-btn #Nav-btn {
	width: 20px;
	height: 16px;
	overflow: visible;
}
#Side-btn-contact #Nav-btn {
	border-radius: 1px;
	width: 20px;
	height: 16px;
}
header.scroll #Side-btn-contact #Nav-btn {
	-moz-animation: mail linear 3s infinite;
	-moz-transform-origin: center;
	-webkit-animation: mail linear 3s infinite;
	-webkit-transform-origin: center;
	-ms-animation: mail linear 3s infinite;
	-ms-transform-origin: center;
	-o-animation: mail linear 3s infinite;
	-o-transform-origin: center;
	animation: mail linear 3s infinite;
	transform-origin: center;
}
#Side-btn .design,
#Side-btn-search .design {
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	-webkit-transition: 0.2s linear;
	transition: 0.2s linear;
	-webkit-transform: rotate(-180deg);
	transform: rotate(-180deg);
}
#Side-btn-contact .design {
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
html.sb-active-left #Side-btn .design,
html.sb-active-right #Side-btn-search .design {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
#Side-btn .design span {
	display: inline-block;
	border-top: solid 2px #FFF;
	width: 20px;
	height: 1px;
	margin: 0 auto auto;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
#Side-btn .design span + span {
	margin: auto;
}
#Side-btn .design span + span + span {
	margin: auto auto 0;
}
html.sb-active-left #Side-btn .design span,
html.sb-active-right #Side-btn-search .design span {
	margin: auto;
}
html.sb-active-left #Side-btn .design span + span,
html.sb-active-right #Side-btn-search .design span + span {
	width: 0;
	margin: auto;
}
html.sb-active-left #Side-btn .design span + span + span,
html.sb-active-right #Side-btn-search .design span + span + span {
	width: 20px;
	margin: auto;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}
#Side-btn-search .design span {
	display: inline-block;
	border: solid 2px #FFF;
	border-radius: 50%;
	width: 16px;
	height: 16px;
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
#Side-btn-search .design span + span {
	border: none;
	border-left: solid 2px #FFF;
	border-radius: 0%;
	width: 0;
	height: 8px;
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	right: 14px;
	bottom: 14px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
html.sb-active-right #Side-btn-search .design span {
	display: inline-block;
	border-left: none;
	border-bottom: none;
	border-right: none;
	border-top: solid 2px #FFF;
	border-radius: 0;
	width: 20px;
	height: 1px;
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.btn-name {
	font-size: 10px;
	text-align: left;
	line-height: 1.2;
	width: 100%;
	color: #FFF;
	white-space: nowrap;
	padding-left: 40px;
	display: none;
	margin: auto;
}
header.scroll .btn-name {
	display: inherit;
}
 @media (min-width: 960px) {
.btn-name {
	font-size: 12px;
	text-align: left;
	padding-left: 50px;
	position: relative;
	display: inherit;
}
}
#Side-btn-contact .design span {
	display: inline-block;
	border: solid 2px #FFF;
	width: 20px;
	height: 16px;
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
#Side-btn-contact .design span + span {
	border: solid 2px #FFF;
	border-bottom: 0px;
	border-right: 0px;
	width: 20px;
	height: 20px;
	margin: auto;
	top: -20px;
	left: 0;
	right: 0;
	bottom: 0;
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
}
/* ==========================================================================
#セクション
========================================================================== */
.section-wrap {
	padding-top: 4rem;
	padding-bottom: 4rem;
	position: relative;
	z-index: 1;
}
.section-wrap.slash {
}
.section-wrap.slash:after {
	content: "";
	width: 1px;
	height: 4rem;
	border-left: #292828 solid 1px;
	position: absolute;
	top: -2rem;
	left: 50%;
}
/* ==========================================================================
#ビルボード
========================================================================== */
#Billboard-Wrapper {
	/*background-color: #F5F5F5;*/
	height: auto;
	width: 100%;
	overflow: hidden;
	margin: 64px auto 0;
}
 @media (min-width: 960px) {
#Billboard-Wrapper {
	margin: 100px auto 4rem;
}
}
/* ==========================================================================
#トップビルボード
========================================================================== */
#Top-Billboard {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	height: auto;
	overflow: hidden;
}
@media (min-width: 768px) and (max-width: 1200px) {
#Top-Billboard {
	max-width: 100%;
}
}
 @media (min-width: 1201px) {
#Top-Billboard {
	max-width: 1040px;
}
}
@media (min-width: 1600px) {
#Top-Billboard {
	width: 100%;
	max-width: 1200px;
}
}
#Billboard-Srider {
	width: 100%;
}
#Billboard-Srider-Nav {
	width: 100%;
}
@media (min-width: 960px) {
#Billboard-Srider {
	float: left;
	width: 80%;
}
#Billboard-Srider-Nav {
	float: right;
	width: 20%;
	cursor: pointer;
}
}
div.slide-item {
	position: relative;
	overflow: hidden;
}
div.slide-item a.more-info {
	background-color: #FF6AB8;
	border: #FF6AB8 solid 2px;
	padding: 8px 28px 8px 8px;
	position: absolute;
	bottom: 10px;
	right: 10px;
	color: #FFF;
	font-size: 1rem;
	display: block;
	-webkit-transition: ease-out 1s;
	transition: ease-out 1s;
	text-align: center;
}
@media (min-width: 960px) {
div.slide-item a.more-info {
	padding: 10px 28px 10px 10px;
	right: 20px;
	bottom: 20px;
}
}
div.slide-item a:hover.more-info {
	background-color: #FF6AB8;
}
div.slide-item a.more-info span {
	background-color: #FF6AB8;
	color: #FFF;
}
div.slide-item a.more-info span:before {
	content: '';
	border: 2px solid transparent;
	border-color: #FFF;
	border-top: none;
	border-left: none;
	display: inline-block;
	width: 10px;
	height: 10px;
	margin: auto;
	position: absolute;
	top: 0;
	right: 14px;
	bottom: 0;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transition: 0.2s ease-out;
	transition: 0.2s ease-out;
}
div.slide-item a.more-info span:after {
	content: '';
	border-top: solid 2px #FFF;
	display: inline-block;
	width: 10px;
	height: 1px;
	margin: auto;
	position: absolute;
	top: 0;
	right: 14px;
	bottom: 0;
	-webkit-transition: 0.2s ease-out;
	transition: 0.2s ease-out;
}
.Tokyo-s {
	float: left;
	width: 50%;
}
.Niigata-s {
	float: right;
	width: 50%;
}
/* ==========================================================================
#ページビルボード
========================================================================== */
.Billboard {
	background-image: url(../images/common/bg.jpg);
	background-size: cover;
	background-position: center bottom;
	width: 100%;
	height: 200px;
	position: relative;
}
.Billboard div {
	text-align: center;
	height: 100%;
	position: relative;
	display: table;
	width: 100%;
	max-width: 1000px;
	padding: 20px;
	margin: 0 auto;
}
@media (min-width: 640px) {
.Billboard {
	height: 240px;
}
.Billboard div {
	padding: 40px 20px;
}
}
.Billboard:before {
	content: "";
	background-color: rgba(0,0,0,.2);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
.Billboard .Page-Title {
	width: 100%;
	height: auto;
	color: #FFF;
	display: table-cell;
	vertical-align: middle;
	position: relative;
	z-index: 3;
}
.Billboard .Page-Title span {
	font-size: 24px;
	display: none;
}
/* ==========================================================================
#Follow us
========================================================================== */
#Follow-Us {
	border-color: transparent;
	padding-top: 2rem;
	padding-bottom: 2rem;
}
#Follow-Us .link-btn {
	margin-top: 0;
}
.Column-4-wrapper {
	margin: -5px;
}
.Column-4 {
	width: 50%;
	padding: 5px;
	float: left;
}
@media (min-width: 640px) {
.Column-4 {
	width: 25%;
}
}
.link-btn .Twitter {
	background-color: #55acee;
}
.link-btn .facebook {
	background-color: #315096;
}
.link-btn .LINE {
	background-color: #00c300;
}
.link-btn .youtube {
	background-color: #cd201f;
}
.link-btn .Twitter,
.link-btn .facebook,
.link-btn .LINE,
.link-btn .youtube {
	color: #FFF;
	font-family: Gothic;
}
/* ==========================================================================
#フッター
========================================================================== */
footer {
	background-color: #7DCDF3;
	color: #FFF;
	padding-top: 2rem;
	position: relative;
	overflow: hidden;
	z-index: 1;
}
footer .section-title {
	margin-bottom: 2rem;
}
#Site-list {
	list-style: none;
	margin: 0;
	margin-right: -2px;
	margin-bottom: 1rem;
	padding: 0;
	display: -webkit-box;/*--- Androidブラウザ用 ---*/
	display: -ms-flexbox;/*--- IE10 ---*/
	display: -webkit-flex;/*--- safari（PC）用 ---*/
	display: flex;
	-ms-flex-wrap: wrap;/*--- IE10用 ---*/
	-webkit-flex-wrap: wrap;/*--- safari（PC）用 ---*/
	flex-wrap: wrap;
	-webkit-align-items: center;
	align-items: center;
}
#Site-list li {
	display: block;
	text-align: center;
	line-height: 1.2;
	width: 100%;
	border: #FFF solid 1px;
}
#Site-list li + li {
	margin: -1px 0 0 0;
}


#Spechial-list {
	list-style: none;
	margin: -1px;
	padding: 0;
	display: -webkit-box;/*--- Androidブラウザ用 ---*/
	display: -ms-flexbox;/*--- IE10 ---*/
	display: -webkit-flex;/*--- safari（PC）用 ---*/
	display: flex;
	-ms-flex-wrap: wrap;/*--- IE10用 ---*/
	-webkit-flex-wrap: wrap;/*--- safari（PC）用 ---*/
	flex-wrap: wrap;
	-webkit-align-items: center;
	align-items: center;
}
#Spechial-list li {
	box-sizing: border-box;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;;
	-ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
    max-width: 50%;
	
	text-align: center;
	line-height: 1.2;
	padding: 1px;
}
#Spechial-list li:last-child {
	-ms-flex-preferred-size: 100%;
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
    max-width: 100%;
}

@media (min-width: 960px) {
	#Spechial-list li,
	#Spechial-list li:last-child {
		-ms-flex-preferred-size: 20%;
    -webkit-flex-basis: 20%;
    flex-basis: 20%;
    max-width: 20%;
	}
}
#Spechial-list li a {
	background-color: rgba(255,255,255,0.8);
	display: block;
	padding: 20px 0;
	color: #45B9F7;
}
#Spechial-list li a:hover {
	background-color: #FFFF4D;
}
#Spechial-list li a span {
	font-size: 1rem;
	font-weight: bold;
	display: block;
}
#Spechial-list li a span + span {
	font-weight: normal;
	font-size: 11px;
}


@media (min-width: 640px) {
#Site-list li {
	width: 33.3333%;
}
#Site-list li + li {
	margin: 0 0 0 -1px;
}
}
#Site-list li a {
	display: block;
	padding: 28px 0;
	color: #FFF;
	text-decoration: none;
	font-family: Gothic-B;
}
#Site-list li a:hover {
	background-color: #FFF;
	color: #F76F00;
}
#Site-list li a span {
	font-size: 15px;
	display: block;
}
#Site-list li a span + span {
	font-size: 11px;
}
@media (min-width: 960px) {
#Site-list li a span {
	font-size: 20px;
}
}
#Shop-list {
	list-style: none;
	margin: -1px;
	padding: 0;
}
#Shop-list li {
	float: left;
	padding: 1px;
}
#Shop-list li:nth-child(4) {
	display: none;
}

#Shop-list li + li {
}
#Shop-list a {
	background-color: #45B9F7;
	display: inline-block;
	padding: 1em 2em;
	font-size: 10px;
	color: #FFF;
}
@media (min-width: 960px) {
#Shop-list a {
	font-size: 11px;
}
}
#Shop-list a:hover {
	background-color: #1A8EEE;
	text-decoration: none;
}
/* ==========================================================================
#コンタクトエリア
========================================================================== */
#Contact-Area {
	background-color: rgba(255,180,219,1);
	color: #FFF;
	padding: 2rem 0;
}
#Contact-Area .section-title {
	margin-bottom: 2rem;
}
#Contact-Area h3 {
	font-size: 15px;
}
@media (min-width: 960px) {
#Contact-Area h3 {
	font-size: 18px;
}
}
#Contact-btn {
	width: 100%;
	padding: 0;
	margin: 2rem auto 0;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
#Contact-btn a {
	display: block;
	background-color: #FFF;
	color: #FF6AB8;
	border-style: solid;
	border-width: 2px;
	border-color: transparent;
	border-radius: 2px;
	padding: 1.2em 1.5em;
	width: 100%;
	margin: 0 auto;
	font-size: 15px;
	line-height: 1.2;
	text-align: left;
	box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 2px 0px;
	-webkit-transition: 0.2s ease-out;
	transition: 0.2s ease-out;
}
@media (min-width: 480px) {
#Contact-btn a {
	padding: 2em;
	font-size: 15px;
	text-align: center;
}
}
@media (min-width: 480px) {
#Contact-btn a {
	font-size: 18px;
}
}
@media (min-width: 960px) {
#Contact-btn {
	width: 80%;
}
#Contact-btn a {
	padding: 1.5em 2em;
	font-size: 20px;
}
}
#Contact-btn a:hover {
	background-color: #FF6AB8;
	color: #FFF;
	box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px;
}
#Contact-btn a > div {
	position: relative;
	display: inline-block;
	padding-left: 55px;
}
#Contact-btn a > div > p.design {
	width: 40px;
	height: 33px;
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	border-radius: 2px;
	overflow: hidden;
}
#Contact-btn a > div > p.design span {
	display: inline-block;
	border: solid 3px #FF6AB8;
	border-radius: 2px;
	width: 40px;
	height: 33px;
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	color: #FFF;
	line-height: 20px;
	font-family: Gothic-B;
	font-size: 12px;
	text-align: center;
	-webkit-transition: 0.2s ease-out;
	transition: 0.2s ease-out;
}
#Contact-btn a > div > p.design span + span {
	border: solid 3px #FF6AB8;
	border-bottom: 0px;
	border-right: 0px;
	width: 40px;
	height: 40px;
	margin: auto;
	top: -40px;
	left: 0;
	right: 0;
	bottom: 0;
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
}
#Contact-btn a:hover > div > p.design span {
	border-color: #FFF;
}
.mail {
	-moz-animation: mail linear 3s infinite;
	-moz-transform-origin: center;
	-webkit-animation: mail linear 3s infinite;
	-webkit-transform-origin: center;
	-ms-animation: mail linear 3s infinite;
	-ms-transform-origin: center;
	-o-animation: mail linear 3s infinite;
	-o-transform-origin: center;
	animation: mail linear 3s infinite;
	transform-origin: center;
	display: block;
}
 @-moz-keyframes mail {
 0% {
-moz-transform: rotate(0deg)
}
 25% {
-moz-transform: rotate(12deg);
}
 50% {
-moz-transform: rotate(0deg);
}
 75% {
-moz-transform: rotate(-12deg);
}
 100% {
-moz-transform: rotate(0deg);
}
}
@-webkit-keyframes mail {
 0% {
-webkit-transform: rotate(0deg);
}
 25% {
-webkit-transform: rotate(12deg);
}
 50% {
-webkit-transform: rotate(0deg);
}
 75% {
-webkit-transform: rotate(-12deg);
}
 100% {
-webkit-transform: rotate(0deg);
}
}
@-o-keyframes mail {
 0% {
-o-transform: rotate(0deg);
}
 25% {
-o-transform: rotate(12deg);
}
 50% {
-o-transform: rotate(0deg);
}
 75% {
-o-transform: rotate(-12deg);
}
 100% {
-o-transform: rotate(0deg);
}
}
@-ms-keyframes mail {
 0% {
-ms-transform: rotate(0deg);
}
 25% {
-ms-transform: rotate(12deg);
}
 50% {
-ms-transform: rotate(0deg);
}
 75% {
-ms-transform: rotate(-12deg);
}
 100% {
-ms-transform: rotate(0deg);
}
}
@keyframes mail {
 0% {
transform: rotate(0deg);
}
 25% {
transform: rotate(12deg);
}
 50% {
transform: rotate(0deg);
}
 75% {
transform: rotate(-12deg);
}
 100% {
transform: rotate(0deg);
}
}
/* ==========================================================================
#フッターナビ
========================================================================== */
#Footer-Nav {
	margin-top: 2rem;
	text-align: center;
}
#Footer-Nav a {
	display: inline-block;
	font-size: 0.86rem;
	position: relative;
}
#Footer-Nav a + a {
	margin-left: 2rem;
}
#Footer-Nav a + a:after {
	content: "";
	width: 1px;
	height: 100%;
	border-left: #FFF solid 1px;
	position: absolute;
	top: 0;
	left: -1rem;
}
/* ==========================================================================
#コピーライト
========================================================================== */
.Copyright {
	margin: 1rem auto 2rem;
	padding: 0;
	text-align: center;
	font-size: 11px;
	line-height: 1.4;
}
.Logo-footer {
	display: block;
	height: 24px;
	width: auto;
	margin: 5px auto;
}
/* ==========================================================================
  #テーブル
========================================================================== */
table {
	width: 100%;
	border: #292828 solid 1px;
	border-radius: 8px;
}
th,
td {
	border: #292828 solid 1px;
	padding: 10px;
}
th {
	font-weight: normal;
}
table.time-table th,
table.time-table td {
	width: calc(100% / 6);
}
/* ==========================================================================
#スライダー
========================================================================== */
.img-Slider img {
	margin: 0 auto;
}
.img-Slider + p {
	margin-top: 1rem;
}
/* ==========================================================================
#簡単検索
========================================================================== */
#Search-Area {
	padding: 70px 20px 50px;
}
@media (min-width: 960px) {
#Search-Area {
	padding: 100px 20px;
}
}
#Search-Area h3 {
	font-size: 1rem;
	margin-bottom: 10px;
}
.Search-box {
	padding: 1em 0 0;
}
 @media (min-width: 960px) {
.Search-box {
	padding: 1em 0;
}
}
/* ==========================================================================
#トップにもどる
========================================================================== */

#Page-top {
	width: 50px;
	height: 50px;
	position: fixed;
	right: 6px;
	bottom: 6px;
	overflow: hidden;
	z-index: 102;
}
 @media (min-width: 960px) {
#Page-top {
	width: 80px;
	height: 80px;
}
}
#Page-top a {
	background-color: rgba(255,106,184, .7);
	display: block;
	border-radius: 2px;
	text-align: center;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 110;
	vertical-align: middle;
}
 @media (min-width: 960px) {
#Page-top a {
	background-color: transparent;
	border: #292828 solid 1px;
	border-radius: 100% 0 0 0;
	display: block;
	text-align: center;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 110;
	vertical-align: middle;
}
}
#Page-top a span {
	display: block;
	height: 40px;
	width: 40px;
	margin: auto;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: 0.2s ease-out;
	transition: 0.2s ease-out;
}
#Page-top a span:before {
	content: '';
	border: 2px solid transparent;
	border-color: #FFF;
	border-bottom: none;
	border-right: none;
	display: inline-block;
	width: 12px;
	height: 12px;
	margin: auto;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
#Page-top a span:after {
	content: '';
	border-left: solid 2px #FFF;
	display: inline-block;
	width: 1px;
	height: 12px;
	margin: auto;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	-webkit-transition: 0.2s ease-out;
	transition: 0.2s ease-out;
}
 @media (min-width: 960px) {
#Page-top a span {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
#Page-top a span:before {
	border-color: #292828;
}
#Page-top a span:after {
	border-left: solid 2px #292828;
}
}
#Page-top a:hover span {
	-webkit-transform: rotate(-0deg);
	transform: rotate(-0deg);
}
#Char {
	position: fixed;
	z-index: 999999;
	bottom: 20px;
	left: 90%;
	display: none;
}
html.sb-active #Char {
	bottom: -100%;
}
#Char img {
	height: 260px;
	width: auto;
}
#Char .Char-balloon {
	position: absolute;
	top: -60px;
	left: -80px;
	width: 120px;
	height: auto;
}
.swing {
	-moz-animation: swing linear 5s infinite;
	-moz-transform-origin: center -20px 0;
	-webkit-animation: swing linear 4s infinite;
	-webkit-transform-origin: center -40px 0;
	-ms-animation: swing linear 5s infinite;
	-ms-transform-origin: center -20px 0;
	-o-animation: swing linear 5s infinite;
	-o-transform-origin: center -20px 0;
	animation: swing linear 4s infinite;
	transform-origin: center 0;
	display: block;
}
 @-moz-keyframes swing {
 0% {
-moz-transform: rotate(0deg)
}
 25% {
-moz-transform: rotate(3deg);
}
 50% {
-moz-transform: rotate(0deg);
}
 75% {
-moz-transform: rotate(-3deg);
}
 100% {
-moz-transform: rotate(0deg);
}
}
@-webkit-keyframes swing {
 0% {
-webkit-transform: rotate(0deg);
}
 25% {
-webkit-transform: rotate(12deg);
}
 50% {
-webkit-transform: rotate(0deg);
}
 75% {
-webkit-transform: rotate(-12deg);
}
 100% {
-webkit-transform: rotate(0deg);
}
}
@-o-keyframes swing {
 0% {
-o-transform: rotate(0deg);
}
 25% {
-o-transform: rotate(3deg);
}
 50% {
-o-transform: rotate(0deg);
}
 75% {
-o-transform: rotate(-3deg);
}
 100% {
-o-transform: rotate(0deg);
}
}
@-ms-keyframes swing {
 0% {
-ms-transform: rotate(0deg);
}
 25% {
-ms-transform: rotate(3deg);
}
 50% {
-ms-transform: rotate(0deg);
}
 75% {
-ms-transform: rotate(-3deg);
}
 100% {
-ms-transform: rotate(0deg);
}
}
@keyframes swing {
 0% {
transform: rotate(0deg);
}
 25% {
transform: rotate(4deg);
}
 50% {
transform: rotate(0deg);
}
 75% {
transform: rotate(-4deg);
}
 100% {
transform: rotate(0deg);
}
}
/* ==========================================================================
#お問い合せページ
========================================================================== */
.min {
	max-width: 760px;
}
.form-section {
}
.form-section + .form-section {
	padding-top: 2rem;
}
.label {
	margin-bottom: 0.5em;
	font-size: 13px;
}
.label .marker {
	float: right;
}
.table > tbody + tbody {
	border-top: 0 solid #dddddd;
}


.text-wrap {
	margin: auto;
}

/* ==========================================================================
#2カラム
========================================================================== */
.column-wrap {
	box-sizing: border-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -20px;
    margin-left: -20px;
	
	-webkit-align-items: center;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
}
.column-wrap.top {
		-webkit-align-items: start;
    -ms-flex-align:start;
    -webkit-box-align: start;
    align-items:start;
    justify-content:center;
}
.column-1,
.column-2,
.column-2-4,
.column-2-6 {
	box-sizing: border-box;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding-right: 20px;
    padding-left: 20px;
	-ms-flex-preferred-size: 100%;
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
    max-width: 100%;
}

.column-3 {
	box-sizing: border-box;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding-right: 20px;
    padding-left: 20px;
	-ms-flex-preferred-size: 100%;
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
    max-width: 100%;
}
@media screen and (min-width: 960px) {
	.column-2{
		-ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
    max-width: 50%;
	}
	.column-2-4 {
		-ms-flex-preferred-size: 40%;
    -webkit-flex-basis: 40%;
    flex-basis: 40%;
    max-width: 40%;
	}
	.column-2-6 {
		-ms-flex-preferred-size: 60%;
    -webkit-flex-basis: 60%;
    flex-basis: 60%;
    max-width: 60%;
	}
	.column-3 {
		-ms-flex-preferred-size: 33.3337%;
    -webkit-flex-basis: 33.3337%;
    flex-basis: 33.3337%;
    max-width: 33.3337%;
	}
}

.reverse {
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    flex-direction: row-reverse;
}

.town {
	width: 25%;
	float: left;
}

.town a {
	display: block;
	text-align: center;
	padding: 2px;
}

.town a span {
	border-radius: 2px;
	display: block;
	background-color: rgba(255,180,219,1);
	line-height: 36px;
}

.town.s {
	width: 50%;
}