@charset "UTF-8";
/* CSS Document */

html {
	font-family: "Noto Sans Japanese";
	font-weight: 200;
	font-size: 62.5%;
}
body {
	width: 100%;
	font-size: 1.4rem;
	letter-spacing: 0.5px;
}
/*--------------------------固定グローバルナビ--------------------------*/

.menubar {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
	z-index: 999;
	height: 80px;
	font-size: medium;
	position: fixed;
	background-image: url(../images/menubar.png);
	background-repeat: repeat-x;
	background-position: center 0%;
}
.menubar .menu {
	width: 33.3333%;
}
.humburgerbar {
	height: 80px;
	padding-top: 20px;
	padding-left: 20px;
	padding-bottom: 20px;
}
/*-----メニューボタン（≡）-----*/

.nav-button, .nav-button span {
	display: inline-block;
	transition: all 0.4s;
}
.nav-button {
	z-index: 20;
	position: relative;
	width: 40px;
	height: 36px;
	cursor: pointer;
}
.nav-button span {
	position: absolute;
	width: 100%;
	height: 4px;
	background-color: #fff;
	border-radius: 4px;
}
.nav-button span:nth-of-type(1) {
	top: 0;
}
.nav-button span:nth-of-type(2) {
	top: 16px;
}
.nav-button span:nth-of-type(3) {
	bottom: 0;
}
/*≡ クリック時　×*/

.nav-button.active span:nth-of-type(1) {
	-webkit-transform: translateY(16px) rotate(-45deg);
	transform: translateY(16px) rotate(-45deg);
	background-color: #fff;
}
.nav-button.active span:nth-of-type(2) {
	opacity: 0;
}
.nav-button.active span:nth-of-type(3) {
	-webkit-transform: translateY(-16px) rotate(45deg);
	transform: translateY(-16px) rotate(45deg);
	background-color: #fff;
}
/*≡ ドロワーメニュー開閉操作*/

.nav-wrap.open {
	display: block;
}
.nav-wrap.close {
	display: none;
}
.menubar .logo {
	padding-top: 10px;
	padding-bottom: 20px;
	height: 80px;
	width: 33.333%
}
.menubar .logo img {
	display: block;
	width: 60px;
	height: 60px;
	margin: 0 auto;
	padding-bottom: 0px;
}
.menubar .priority-icon {
	width: 33.333%;
	padding-right: 0px;
}
.menubar .nav1 {
	display: table;
	table-layout: fixed;
	padding-top: 20px;
	padding-bottom: 20px;
	min-width: 130px;
	max-width: 200px;
	height: 80px;
	width: 100%;
	margin-left: auto;
	margin-right: 0px;
	padding-right: 20px;
}
.nav1 li {
	display: table-cell;
	text-align: center;
}
.nav1 li img {
	width: 40px;
	display: block;
	margin-left: auto;
	margin-right: auto;
	height: 40px;
}
/*背景のスクロールを防ぐ*/

.no-scroll {
	overflow: hidden;
}
/*ドロワー内メニュー設定*/

.nav-wrap {
	position: fixed;
	left: 0;
	top: 0;
	display: none;
	z-index: 10;
	background-color: rgba(0, 0, 0, 0.8);
	width: 100%;
	height: 100%;
}
.nav-wrap .nav2 {
	height: 100%;
	position: relative;
	overflow-x: hidden;
	overflow-y: auto;
	padding-top: 80px;
	padding-bottom: 80px;
}
.nav-wrap li {
	border-bottom: rgba(255, 255, 255, 1.00) 1px solid;
	width: 370px;
	height: 60px;
	padding-left: 30px
}
.nav-wrap li a {
	display: inline-block;
	line-height: 60px;
	color: #fff;
	font-size: 1.6rem;
}
.nav-wrap li a img {
	width: 3rem;
	height: 60px;
	display: inline-block;
	vertical-align: top;
	margin-right: 15px;
}
/*--------------------------固定SNSアイコン--------------------------*/

.sns {
	position: fixed;
	bottom: 0px;
	width: 100%;
	height: 80px;
	padding-top: 20px;
	padding-bottom: 20px;
	z-index: 998;
}
.sns ul {
	display: table;
	width: 30%;
	margin-left: auto;
	margin-right: auto;
	table-layout: fixed;
	height: 40px;
	min-width: 210px;
	max-width: 470px;
}
.sns ul li {
	display: table-cell;
}
.sns ul li img {
	width: 40px;
	display: block;
	margin-left: auto;
	margin-right: auto;
	height: 40px;
}
.sns .retop {
	width: 50px;
	position: absolute;
	bottom: 20px;
	right: 20px;
}
/*--------------------------フッター--------------------------*/

footer {
	width: 100%;
	padding-top: 30px;
	background-color: #151c51;
	font-size: 1.2rem;
	letter-spacing: 1px;
	color: #FFFFFF;
}
footer .footer-logo {
	width: 170px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 30px;
}
footer .footer-logo img {
	width: 100%;
}
footer nav ul {
	width: 100%;
}
footer nav .menu2 {
	border-bottom: 0.5px solid #000;
	margin-bottom: 15px;
}
footer nav li {
	width: 20%;
	margin-bottom: 15px;
	float: left;
	text-align: center;
}
footer nav .menu3 li {
	width: 33.3333%;
}
footer li a {
	display: inline-block;
	vertical-align: top;
	line-height: 20px;
	color: #FFFFFF;
	font-size: 1rem;
}
footer li img {
	display: inline-block;
	vertical-align: bottom;
	height: 20px;
	margin-right: 5px;
}
footer .copy {
	clear: both;
	text-align: center;
}
/*--------------------------ボタン--------------------------*/

.buttons {
	width: 50%;
	min-width: 400px;
	display: table;
	border-spacing: 10px 0px;
	table-layout: fixed;
	margin-left: auto;
	margin-right: auto;
}
.buttons a {
	display: table-cell;
	padding: 20px;
	border-radius: 4px;
	background-color: #D0A739;
	color: #FFFFFF;
	letter-spacing: 1px;
	font-size: 1.2rem;
	text-align: center;
	vertical-align: middle;
}
/*--------------------------HOMEヘッダー--------------------------*/

header {
	width: 100%;
	height: 100vh;
	margin-left: auto;
	margin-right: auto;
	padding-top: 100px;
	padding-bottom: 180px;
	position: relative;
	background-repeat: no-repeat;
	background-position: center 80px;
	background-size: 80% auto;
	background-image: url(../images/kawarana-top.png);
}
header h1 {
	position: absolute;
	top: 40%;
	left: 50%;
	-webkit-transform: translate(-50%, -40%);
	-moz-transform: translate(-50%, -40%);
	-ms-transform: translate(-50%, -40%);
	-o-transform: translate(-50%, -40%);
	transform: translate(-50%, -40%);
	width: 25%;
}
header .gghonyaku {
	position: absolute;
	bottom: 180px;
	left: 50%;
	z-index: 2;
	-moz-transform: translate(-50, 0);
	-ms-transform: translate(-50, 0);
	-o-transform: translate(-50, 0);
	-webkit-transform: translate(-50, 0);
	transform: translate(-50%, 0);
}
/*---------スクロールを促すアニメーションアイコン------*/

header .scroll-icon a {
	position: absolute;
	bottom: 80px;
	left: 50%;
	z-index: 2;
	display: inline-block;
	-moz-transform: translate(-50, 0);
	-ms-transform: translate(-50, 0);
	-o-transform: translate(-50, 0);
	-webkit-transform: translate(-50, 0);
	transform: translate(-50%, 0);
	text-decoration: none;
	font-weight: 500;
	padding-top: 50px;
	color: #151c51;
}
header .scroll-icon a span {
	position: absolute;
	top: 0;
	left: 50%;
	width: 24px;
	height: 24px;
	margin-left: -12px;
	border-left: 3px solid #151c51;
	border-bottom: 3px solid #151c51;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-animation: sdb 2s infinite;
	animation: sdb 2s infinite;
	box-sizing: border-box;
}
 @-webkit-keyframes sdb {
 0% {
 -webkit-transform: rotate(-45deg) translate(0, 0);
}
 20% {
 -webkit-transform: rotate(-45deg) translate(-10px, 10px);
}
 40% {
 -webkit-transform: rotate(-45deg) translate(0, 0);
}
}
 @keyframes sdb {
 0% {
 transform: rotate(-45deg) translate(0, 0);
}
 20% {
 transform: rotate(-45deg) translate(-10px, 10px);
}
 40% {
 transform: rotate(-45deg) translate(0, 0);
}
}
/*--------------------------section/見出し/.contentsなど(共通設定)--------------------------*/

section {
	width: 100%;
	padding: 80px 0;
}
.contents {
	width: 80%;
	margin: 0 auto;
	max-width: 1200px;
	min-width: 940px;
	padding-right: 15px;
	padding-left: 15px;
	padding-bottom: 80px;
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 0px;
}
h1{font-family: "Sawarabi Mincho";}
h1 img {
	width: 100%;
	display: block;
}
h2 {
	font-family: "Sawarabi Mincho";
	font-size: 3rem;
	font-weight: 600;
	margin-bottom: 50px;
	width: 35%;
	text-align: right;
	padding-right: 20px;
	background-image: -webkit-linear-gradient(270deg, rgba(255, 255, 255, 0.00) 59.68%, rgba(244, 244, 244, 1.00) 61.35%);
	background-image: -moz-linear-gradient(270deg, rgba(255, 255, 255, 0.00) 59.68%, rgba(244, 244, 244, 1.00) 61.35%);
	background-image: -o-linear-gradient(270deg, rgba(255, 255, 255, 0.00) 59.68%, rgba(244, 244, 244, 1.00) 61.35%);
	background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 59.68%, rgba(244, 244, 244, 1.00) 61.35%);
	line-height: 2;
	padding-left: 15px;
	min-width: 450px;
}
h2 span {
	font-size: 1.875rem;
	margin: 0 5px 0 5px;
	letter-spacing: 1px;
}
h3 {
	color: #333333;
	font-size: 2.3rem;
	font-weight: 300;
	padding-bottom: 8px;
	position: relative;
	display: inline-block;
	margin-bottom: 20px;
}
h3::after, h3::before {
	position: absolute;
	content: "";
	right: 0;
	bottom: 0;
	left: 0;
	border-bottom: 1px solid #000;
}
h3::before {
	bottom: 3px;
}
#about-wrapper {
	background-image: url(../images/japaneseman.png);
	background-size: auto 80%;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: 0% 50%;
	background-color: rgba(229, 229, 229, 1.00);
	padding-bottom: 0px;
}
.contents .text-wrapper {
	width: 100%;
	padding-bottom: 30px;
	padding-top: 0px;
}
.contents .text {
	margin-bottom: 5px;
	line-height: 2.5;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	max-width: 850px;
	padding-left: 15px;
	padding-right: 15px;
	text-align: left;
	font-size: 1.6rem;
}
.contents .footnote {
	width: 90%;
	padding-top: 7px;
	text-align: left;
	max-width: 850px;
	padding-left: 29px;
	padding-right: 15px;
	margin-left: auto;
	margin-right: auto;
	font-size: 1.4rem;
	text-indent: -14px;
}
.contents .footnate2 {
	margin-top: 15px;
	padding-left: 29px;
	padding-right: 15px;
	font-size: 1.4rem;
	text-align: left;
	text-indent: -14px;
}
/*--------------------------about--------------------------*/


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

.youtube-slider {
	margin-top: 15px;
}
.youtube-slider .youtube-wrapper {
	width: 100%;
	padding-top: 15px;
	padding-bottom: 15px;
	margin-top: 20px;
}
.youtube-slider ul {
	margin: 0px;
	padding: 0px;
}
.youtube-slider li {
	margin: 0;
	padding: 0;
	overflow: hidden;
}
.youtube-slider img {
	margin-left: auto;
	margin-right: auto;
	width: 95%;
	max-width: 300px;
	display: block;
}
/*--------------------------plan-------------------------*/

.plan .contents .plan-container {
	width: 100%;
	display: table;
	table-layout: fixed;
	margin-top: 15px;
}
.plan .plan-box {
	display: table-cell;
	vertical-align: text-bottom;
}
.plan .plan-box .plan-image {
	margin-left: auto;
	padding: 15px;
	margin-right: auto;
}
.plan .plan-image img {
	display: block;
	width: 50%;
	margin-left: auto;
	margin-right: auto;
}
.plan .plan-box dl {
	padding-top: 15px;
	padding-right: 25px;
	padding-left: 25px;
	padding-bottom: 15px;
}
.plan .plan-box dl dt {
	font-size: 1.6rem;
	line-height: 2.5;
	font-weight: 500;
	text-align: left;
}
.plan .plan-box dd {
	line-height: 1.5;
	letter-spacing: 2px;
}
.plan .plan-box .price {
	font-size: 1.6rem;
	margin-bottom: 15px;
	text-align: left;
	padding-left: 15px;
	line-height: 1;
	letter-spacing: 1px;
}
.plan .service-box {
	display: table;
	padding-top: 15px;
}
.plan .service-box .service-image {
	padding: 15px;
	display: table-cell;
	width: 50%;
}
.plan .service-image img {
	display: block;
	width: 100%;
}
.plan .service-box dl {
	padding: 15px;
	text-align: left;
	display: table-cell;
	vertical-align: top;
}
.plan .service-box dl dt {
	font-size: 1.6rem;
	line-height: 3;
	font-weight: 500;
}
.plan .service-box dl dd {
	line-height: 1.5;
	letter-spacing: 2px;
}
#info-wrapper {
	background-image: url(../images/japanesewoman.png);
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: auto 100%;
	background-position: 117% 50%;
	background-color: #E5E5E5;
}
/*--------------------------info-------------------------*/

.info .info-container {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	max-width: 1200px;
	min-width: 940px;
}
.info dl {
	width: 80%;
	margin: 0 auto;
	max-width: 500px;
}
.info dl dt {
	width: 35%;
	height: 50px;
	font-size: 1.6rem;
	font-weight: 300;
	float: left;
	clear: left;
}
.info dl dd {
	font-size: 1.5rem;
	margin-top: 0;
	margin-right: 0;
	margin-left: 35%;
	margin-bottom: 0;
	height: 50px;
}
.info dl dd a, .plan dl dd a, .text a,.accordion dd a,.plan .footnote a{
	color: #0F00DC;
}
.info dd img {
	width: 2.3rem;
	display: inline-block;
	vertical-align: top;
	margin-left: 10px;
}
/*-----------ggmap-----------*/

.ggmap {
	position: relative;
	padding-bottom: 40%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
	margin-top: 30px;
}
.ggmap iframe, .ggmap object, .ggmap embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding-bottom: 0px;
}
/*--------------------------calendar-------------------------*/

.gc_wrapper {
	max-width: 800px;
	min-width: 300px;
	margin: 2.0833% auto;
}
.responsive-iframe-container {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
}
.responsive-iframe-container iframe, .responsive-iframe-container object, .responsive-iframe-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.small-container {
	display: none;
}
/*------------------------------ホバーアクション-------------------------*/


/*アイコンの拡大化*/

li img, .info dd img, .sortNav li img {
	transition-duration: 0.2s;
}
li a:hover img, .info dd a:hover img, .sortNav li img:hover {
	transform: scale(1.2);
	/*画像の拡大率*/
	transition-duration: 0.2s;/*変化に掛かる時間*/
}
.about li img {
	transition-duration: 0.3s;
}
.about li a:hover img {
	transform: scale(1.05);
	/*画像の拡大率*/
	transition-duration: 0.3s;/*変化に掛かる時間*/
}
/*テキストの太文字化*/

li a {
	transition-duration: 0.2s;
}
li a:hover {
	font-weight: 500;
	transition-duration: 0.2s;/*変化に掛かる時間*/
}
/*ボタン・リンクの色変化*/

.buttons a, .top-buttons a {
	transition-duration: 0.2s;
}
.buttons a:hover, .top-buttons a:hover {
	background-color: #AFA58D;
	transition-duration: 0.2s;
}
.info dl dd a {
	transition: 0.2s;
}
.info dl dd a:hover,.accordion dd a:hover, .plan .footnote a:hover,.plan dd a:hover {
	color: #D0A739;
	transition: .2s;
}
.under {
	background-image: url(../images/under-header.jpg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: 0% -8%;
}
/*-------------------------------------下層ページ設定-----------------------------------*/
.underlayer header {
	height: 160px;
	background-image: url();
}
.underlayer header h1 {
	top: 170px;
	left: 50%;
	-webkit-transform: translate(-50%, -40%);
	-moz-transform: translate(-50%, -40%);
	-ms-transform: translate(-50%, -40%);
	-o-transform: translate(-50%, -40%);
	transform: translate(-50%, -40%);
	font-size: 4rem;
	width: auto;
	font-weight: 400;
}
.underlayer .contents {
	max-width: 940px;
}
.underlayer section {
	padding-top: 30px;
	padding-bottom: 30px;
}
.underlayer section section {
	margin-bottom: 50px;
}
.underlayer section .contents {
	padding-bottom: 50px;
	padding-top: 0px;
}
.underlayer .contents .text-wrapper {
	margin-bottom: 0px;
	padding-top: auto;
	padding-left: auto;
	padding-right: auto;
	padding-bottom: 0%;
}
.underlayer .contents .text {
	margin-bottom: 0px;
}
.underlayer header .gghonyaku {
	position: absolute;
	bottom: auto;
	right: auto;
	top: 80px;
	left: 0px;
	z-index: 2;
	-moz-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	-o-transform: translate(0, 0);
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
}

/*-------------------------------------お問い合わせ/10名様以上のご予約ページ設定-----------------------------------*/
.contact-wrapper {
	background-image: url();
	background-color: #e5e5e5;
}
.contact-wrapper .iframe-wrap {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
	height: 1700px;
}
.contact-wrapper .iframe-wrap iframe {
	height: 1800px;
	width: 100%;
	overflow: hidden;
	margin-top: -160px;
	margin-bottom: 0px;
}
/*-------------------------------------メディア取材ご希望ページ設定-----------------------------------*/
.contact-wrapper .iframe-wrap2 {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
	height: 1700px;
}
.contact-wrapper .iframe-wrap2 iframe {
	height: 1800px;
	width: 100%;
	overflow: hidden;
	margin-top: -160px;
}
/*-------------------------------------よくあるご質問ページ設定-----------------------------------*/
dl.accordion {
	background-color: #E5E5E5;
	margin: 0 auto 30px;
	font-size: 1.4rem;
	max-width: 850px;
	text-align: left;
	letter-spacing: 1.5px;
}
dl.accordion dt {
	background-repeat: no-repeat;
	background-image: url(../images/faq-puls.png);
	border-bottom: 1px solid #fff;
	color: #000;
	font-weight: 500;
	cursor: pointer;
	background-position: 99% center;
	background-size: 30px auto;
	padding-left: 15px;
	padding-right: 50px;
	padding-top: 20px;
	padding-bottom: 15px;
	font-size: 1.6rem;
}
.contents .accordion dt img {
	display: inline-block;
	width: 30px;
	vertical-align: middle;
	margin-right: 10px;
}
dl.accordion dt.open {
	background-repeat: no-repeat;
	background-image: url(../images/faq-minus.png);
}
dl.accordion dd {
	background-color: #FFF;
	padding-top: 10px;
	padding-right: 50px;
	padding-left: 55px;
	padding-bottom: 10px;
	display: none;
	line-height: 2;
	background-image: url(../images/faq-a.png);
	background-repeat: no-repeat;
	background-size: 30px auto;
	background-position: 15px 15px;
	font-size: 1.6rem;
}
/*-------------------------------------メディア掲載情報ページ設定-----------------------------------*/
.media-wrapper .sortNav {
	width: 50%;
	max-width: 450px;
	display: table;
	table-layout: fixed;
	margin-left: auto;
	margin-right: auto;
	min-width: 300px;
	margin-top: 30px;
}
.media-wrapper .sortNav li {
	display: table-cell;
}
.media-wrapper .sortNav li img {
	width: 50px;
	display: block;
	margin-left: auto;
	margin-right: auto;
	height: 50px;
}
.media-wrapper .media-container {
	width: 90%;
	max-width: 850px;
	margin-left: auto;
	margin-right: auto;
}
.media-wrapper .media-container li {
	padding-left: 15px;
	padding-top: 15px;
	padding-right: 15px;
	padding-bottom: 15px;
	font-size: 1.6rem;
	border-bottom: 1px dotted #aaa;
}
.media-wrapper .media-container li dl {
	display: table;
}
.media-wrapper .media-container li dt {
	display: table-cell;
	vertical-align: middle;
	width: 130px;
	font-weight: 500;
}
.media-wrapper .media-container li dd {
	display: table-cell;
	vertical-align: middle;
}
.media-wrapper .media-container li dd a {
	text-decoration: underline;
}
.media-wrapper .media-container li .media-icon {
	width: 80px;
}
.media-wrapper .media-container li dd img {
	display: block;
	width: 30px;
	margin-left: auto;
	margin-right: auto;
	height: 30px;
}
/*-------------------------------------カワラナギネスチャレンジメージ設定-----------------------------------*/
.champion-container {
	display: table;
	width: 100%;
}
.man {
	margin-bottom: 50px;
}
.champion-container .champion-box {
	display: table-cell;
}
.champion-container .champion-box img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	border: 1px solid #ddd;
	width: 100%;
}
.champion-container .champion-box a:hover img {
	opacity: 0.7;
	transition: .2s;
}
.champion-container .emblem {
	width: 40%;
	vertical-align: middle;
}
.champion-container .emblem img {
	width: 80%;
	margin-left: auto;
	border: none;
	margin-right: auto;
}

/* -----------------------------------------1200px以上の指定----------------------------------------- */

@media only screen and (min-width: 1200px) {
.under {
	background-position: 0% -30%;
}
header {
	background-position: center 60px;
	background-size: 80% auto;
}
#about-wrapper {
	background-position: -30% 50%;
}
#info-wrapper {
	background-position: 0% 0%;
	background-size: auto 110%;
}
.info .info-container {
	width: 100%;
	max-width: 100%;
}
.info dl {
	float: left;
	padding-left: 0%;
	width: 30%;
	margin-left: 20%;
}
.info dt {
	font-size: 1.6rem;
}
.info dd {
	font-size: 1.6rem;
}
.ggmap {
	position: relative;
	padding-bottom: 40%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
	margin-left: 0px;
}
.ggmap iframe,  .ggmap object,  .ggmap embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding-bottom: 0px;
}
}

/* --------------------------------------767px以下の指定------------------------------------- */

@media only screen and (max-width: 767px) {
body {
	font-size: 1.3rem;
}
.menubar {
	height: 50px;
	background-size: 50% auto;
	background-position: center 30%;
}
.menubar .logo {
	padding-top: 8px;
}
.menubar .logo img {
	height: 34px;
}
.menubar .priority-icon {
	width: 33.333%;
	padding-right: 10px;
}
.menubar .nav1 {
	padding-top: 10px;
	padding-bottom: 10px;
	min-width: 90px;
	max-width: 150px;
	height: 50px;
	padding-right: 0px;
}
.nav1 li {
	display: table-cell;
	text-align: center;
}
.nav1 li img {
	width: 30px;
	display: block;
	margin-left: auto;
	margin-right: auto;
	height: 30px;
}
.humburgerbar {
	height: 50px;
	width: 50px;
	padding: 10px 15px 10px 10px;
}
/*メニューボタン（≡）*/
.nav-button {
	width: 25px;
	height: 30px;
}
.nav-button span {
	position: absolute;
	width: 100%;
	height: 3px;
	border-radius: 3px;
}
.nav-button span:nth-of-type(2) {
	top: 13px;
}
/*≡ クリック時　×*/
.nav-button.active span:nth-of-type(1) {
	-webkit-transform: translateY(13px) rotate(-45deg);
	transform: translateY(13px) rotate(-45deg);
}
.nav-button.active span:nth-of-type(3) {
	-webkit-transform: translateY(-14px) rotate(45deg);
	transform: translateY(-14px) rotate(45deg);
}
.nav-wrap li {
	border-bottom: rgba(255, 255, 255, 1.00) 1px solid;
	margin: 0 auto;
	width: 100%;
	max-width: 310px;
	height: 60px;
	padding-left: 15px
}
.nav-wrap li a {
	font-size: 1.4rem;
}
.nav-wrap li a img {
	width: 2.5rem;
}
.sns ul {
	display: table;
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	table-layout: fixed;
	height: 40px;
	min-width: 210px;
	max-width: 470px;
}
.sns .retop {
	width: 50px;
	position: absolute;
	right: -50px;
	opacity: 0;
}
.buttons {
	width: 50%;
	min-width: 230px;
	display: block;
	border-spacing: 0px 0px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 20px;
	margin-top: 10px;
}
.buttons br {
	display: none;
}
.buttons a {
	display: block;
	line-height: 25px;
	padding: 10px;
	margin-bottom: 10px;
	vertical-align: middle;
}
header {
	width: 100%;
	min-width: 320px;
	height: 100vh;
	margin-left: 0;
	margin-right: 0;
	background-size: 200% auto;
	background-position: 75% 50%;
	background-image: url(url());
}
header h1 {
	width: 45%;
}
.top-buttons {
	width: 50%;
	min-width: 230px;
	display: block;
	border-spacing: 0px 0px;
	bottom: 170px;
}
.top-buttons a {
	display: block;
	line-height: 25px;
	padding: 10px;
	margin-bottom: 10px;
	vertical-align: middle;
}
.top-buttons br {
	display: none;
}
section {
	width: 100%;
	padding: 50px 0;
}
.contents {
	width: 100%;
	min-width: 0px;
	margin-left: 0;
	margin-right: 0;
	padding: 20px 0;
	text-align: center;
}
	.contents .text-wrapper {
	width: 100%;
	padding-bottom: 30px;
}

.contents .footnote {
	width: 100%;
	padding-right: 15px;
	margin-left: auto;
	margin-right: auto;
	font-size: 1.4rem;
	text-indent: -14px;
	max-width: 650px;
}
	
.contents .text {
	margin-top: 0px;
	margin-bottom: 20px;
	line-height: 2;
	width: 100%;
	max-width: 650px;
	font-size: 1.4rem;
}
h2 {
	font-size: 2rem;
	margin-bottom: 30px;
	width: 95%;
	text-align: right;
	padding-right: 20px;
	padding-left: 15px;
	min-width: 0px;
}
h2 span {
	font-size: 1.8rem;
}
h3 {
	color: #333333;
	font-size: 1.7rem;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 0px;
}
#about-wrapper {
	background-image: none;
}
/*--------youtubeスライダー--------*/
.youtube-slider .youtube-wrapper {
	margin-bottom: 0px;
	margin-top: 20px;
}
.plan .text {
	margin-top: 15px;
	padding-right: 5px;
}
.plan .contents .plan-container {
	display: block;
}
.plan .contents .plan-container2 {
	margin-top: 0px;
	padding-top: 0px;
}
.plan .plan-box {
	display: table;
	width: 100%;
	padding-top: 20px;
}
.plan .plan-box .plan-image {
	display: table-cell;
	margin-left: 0;
	margin-right: 0;
	vertical-align: middle;
	max-width: 250px;
	width: 40%;
}
.plan .plan-image img {
	display: block;
	width: 80%;
	margin-left: auto;
	margin-right: auto;
}
.plan .plan-box dl {
	display: table-cell;
	padding-bottom: 15px;
	text-align: left;
	vertical-align: middle;
	padding-left: 0px;
	padding-right: 15px;
	padding-top: 0px;
	font-size: medium;
}
.plan .plan-box dl dt {
	font-size: 1.4rem;
	line-height: 3;
}
.plan .plan-box dl dd {
	font-size: 1.3rem;
}
.plan .plan-box .price {
	line-height: 1;
	font-size: 1.5rem;
	padding-left: 0px;
}
.plan .service-box {
	padding-top: 20px;
	margin-top: 15px;
}
.plan .service-box dl {
	padding-top: 15px;
	padding-right: 15px;
	padding-left: 0px;
	padding-bottom: 15px;
	vertical-align: middle;
}
.plan .service-box dl dt {
	font-size: 1.4rem;
	line-height: 3;
}
.plan .service-box .service-image {
	vertical-align: middle;
}
.plan .service-box img {
	width: 95%;
	margin: 0 auto;
}
#info-wrapper {
	background-image: none;
}
.info .info-container {
	width: 100%;
	min-width: 0px;
}
.info dl {
	max-width: 370px;
	padding-top: 15px;
}
.info dl dt {
	font-size: 1.4rem;
	clear: left;
	float: left;
	width: 30%;
	text-align: left;
}
.info dl dd {
	text-align: left;
	margin-left: 30%;
	font-size: 1.3rem;
}
.ggmap {
	padding-bottom: 60%;
}
.ggmap iframe,  .ggmap object,  .ggmap embed {
	width: 95%;
	height: 95%;
	right: 0;
	left: 0;
	margin: 0 auto;
}
.big-container {
	display: none;
}
.small-container {
	display: block;
	padding-bottom: 200%;/* 高さ */
}
footer {
	font-size: 1rem;
	padding-bottom: 80px;
	padding-top: 20px;
}
footer .footer-logo {
	width: 200px;
	margin-bottom: 25px;
	text-align: center;
}
footer .copy {
	font-size: 0.5rem;
	width: 350px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 0px;
	text-align: center;
}
footer .copy small {
	text-align: right;
}
footer nav {
	margin-left: auto;
	margin-right: auto;
	width: 350px;
	margin-bottom: 10px;
}
footer nav .menu2 {
	display: block;
	border: none;
	float: left;
	width: 40%;
}
footer nav .menu2 li {
	width: 100%;
	float: none;
	text-align: left;
}
footer nav ul {
}
footer nav .menu3 {
	width: 57%;
	padding-top: 0px;
	float: right;
	padding-bottom: 0px;
}
footer nav .menu3 li {
	width: 100%;
	text-align: left;
}

	/*-------------------------------------下層ページ設定767以下-----------------------------------*/

.underlayer header {
	padding-bottom: 0px;
	padding-top: 0px;
	text-align: left;
}
.underlayer header h1 {
	font-size: 2.3rem;
	width: 100%;
	text-align: center;
	top: 100px;
}
	

.underlayer section {
	padding-top: 20px;
	padding-bottom: 50px;
}
.underlayer section .contents {
	padding-bottom: 0px;
}
.underlayer header .gghonyaku {
	position: absolute;
	bottom: auto;
	right: auto;
	top: 50px;
	left: 0px;
	z-index: 2;
	-moz-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	-o-transform: translate(0, 0);
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
}
	
	
/*-----------------------------お問い合わせ/10名様以上のご予約ページ設定767以下--------------------------*/

.contact-wrapper .iframe-wrap {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
	height: 1800px;
}
.contact-wrapper .iframe-wrap iframe {
	width: 100%;
	overflow: hidden;
	margin-top: -70px;
	height: 2000px;
}
.media-wrapper .sortNav {
	margin-top: 20px;
}
	/*-----------------------------メディア取材ページ設定767以下--------------------------*/

.contact-wrapper .iframe-wrap2 {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
	height: 1800px;
}
.contact-wrapper .iframe-wrap2 iframe {
	height: 2000px;
	width: 100%;
	overflow: hidden;
	margin-top: -70px;
}

	
	
	/*-------------------------------------よくあるご質問ページ設定767以下-----------------------------------*/
dl.accordion {
	font-size: 1.2rem;
	letter-spacing: 1px;
}
dl.accordion dt {
	cursor: pointer;
	background-size: 25px auto;
	padding-left: 40px;
	padding-right: 35px;
	padding-top: 10px;
	padding-bottom: 10px;
	text-indent: -35px;
	font-size: 1.3rem;
}
.contents .accordion dt img {
	width: 25px;
	height: 25px;
}
dl.accordion dd {
	padding-right: 30px;
	padding-left: 40px;
	line-height: 2;
	background-size: 25px auto;
	background-position: 5px 10px;
	font-size: 1.3rem;
}
.under {
	background-position: 0% 0%;
}
	/*-------------------------------------メディア掲載情報ページ設定767以下-----------------------------------*/
.media-wrapper .sortNav {
	margin-top: 20px;
}
.media-wrapper .sortNav li img {
	width: 40px;
	height: 40px;
}

.media-wrapper .media-container li {
	padding-left: 0px;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 10px;
	font-size: 1.4rem;
	border-bottom: 1px dotted #aaa;
	text-align: left;
}
.media-wrapper .media-container li dl {
display: block;
}
.media-wrapper .media-container li dt {
	display: block;
	width: 80px;
	float: left;
}
.media-wrapper .media-container li dd {
	display: block;
}
.media-wrapper .media-container li .media-icon {
	display: block;
	width: auto;
}
.media-wrapper .media-container li dd img {
	width: 25px;
	margin-left: auto;
	margin-right: 0;
	height: 25px;
}
	
/*-------------------------------------カワラナギネスチャレンジメージ設定767以下-----------------------------------*/

	.charenge-wrapper section section{
	margin-top: 45px;
	margin-bottom: 75px;
	}
.champion-wrapper {
	margin-top: 40px;
	padding-left: 15px;
	padding-right: 15px;
}
.charenge-wrapper .text-wrapper {
	margin-top: 45px;
}
	.champion-container {
	display: table;
	width: 100%;
}
.man {
	margin-bottom: 20px;
	margin-top: 0px;
}
.champion-container .champion-box {
	display: table-cell;
}
.champion-container .champion-box img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	border: 1px solid #ddd;
	width: 100%;
}
.champion-container .emblem {
	width: 40%;
	vertical-align: middle;
}
.champion-container .emblem img {
	width: 80%;
	margin-left: auto;
	border: none;
	margin-right: auto;
}	
	
	
/*-----------------------ホバーアクション無効化---------------------*/
  /*アイコンの拡大化*/
li img, .info dd img, .sortNav li img {
	transition-duration: 0s;
}
li a:hover img, .info dd a:hover img, .sortNav li img:hover {
	transform: none;
	/*画像の拡大率*/
	transition-duration: 0;/*変化に掛かる時間*/
}
.about li img {
	transition-duration: 0s;
}
.about li a:hover img {
	transform: none;
	/*画像の拡大率*/
	transition-duration: 0;/*変化に掛かる時間*/
}
/*ボタン・リンクの色変化*/
.buttons a,  .top-buttons a {
	transition-duration: 0s;
}
.buttons a:hover,  .top-buttons a:hover {
	background-color: #d0a739;
	transition-duration: 0s;
}
.info dl dd a {
	transition: 0s;
}
.info dl dd a:hover,.accordion dd a:hover,.plan .footnote a:hover,.plan dd a:hover {
	color: #0F00DC;
	transition: 0s;
}
/*テキストの太文字化*/
li a {
	transition-duration: 0s;
}
li a:hover {
	font-weight: 200;
	transition-duration: 0s;/*変化に掛かる時間*/
}

}
