@charset "UTF-8";
/* CSS Document */
@import url(https://fonts.googleapis.com/css?family=Lato:400,700);
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);

/* -----Basic style----- */
html * {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
*, *:after, *:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
html{
	font-size: 62.5%;
}
body {
	line-height: 2;
	max-width: 1600px;
	margin:0 auto;
	-webkit-text-size-adjust: 100%;
}
body, th, td, h1, h2, h3, h4, h5, h6, pre, input, textarea, option, div, p, dt, dd, li, address {
	font-family: Lato, "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 1.4rem;
	font-weight: normal;
	font-style: normal;
	color: #333333;
	letter-spacing: .4rem;
}
a {
	color: #333333;
	text-decoration: none;
}
.tx-s {
	font-size: 1.2rem;
}
.tx-m {
	font-size: 1.8rem;
}
.fw-b {
	font-weight: bold;
}
.color1 {
	color: #93bf9e;
}
.color2 {
	color: #FF0004;
}
.bg-color1{
	background: #93bf9e;
}
.wid {
	width: 100%;
}
.pad10 {
	padding: 10px;
}
.pad20 {
	padding: 20px;
}
.margin-b20{
	margin-bottom: 20px;
}
.display-none {
	display: none;
}
.imgtxt {
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
}
.clr,
.clear {
	clear: both;
}
.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
.clearfix {
	min-height: 1px;
}
* html .clearfix {
	height: 1px;/*¥*//*/
	height: auto;
	overflow: hidden;
	/**/
}
.center {
	text-align: center;
}
.left {
	text-align: left;
}
.right {
	text-align: right;
}
.flex{
	display: flex;
	justify-content: space-between;
}
.flex2{
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
}
.flex3{
	display: flex;
	justify-content: flex-start;
}
.flex4{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
hr{
	width: 80%;
	height: 1px;
	background-color: #fff;
	border: none;
	margin-bottom: 40px;
}
.ef {
	font-family: Futura, Trebuchet MS, Arial, sans-serif;
}
.spview {
	display: none;
}
.pcview {
	display: block;
}
.link1{
	border-bottom: 1px solid #333;
}
.link1:hover{
	color: #cccccc;
}
.u-line{
	text-decoration: underline;
}
.del{
	text-decoration: line-through;
}
/* -----Basic styleここまで----- */


/* -----Common style----- */
.wrapper {
	width: 100%;
	height: 100vh;
}
header {
	height: 80px;
}
header h1{
	text-align: center;
    height: 80px;
    display: flex;
    justify-content: center;
}
header h1 img{
	width: 8%;
    height: auto;
}
#main {
	margin-bottom: 40px;
}
#main h2{
	font-size: 2.2rem;
	font-weight: bold;
}
#main h3{
	font-size: 1.8rem;
	font-weight: bold;
}
.container {
	width: 980px;
	margin: 0 auto;
}
.main-contents {
	width: 100%;
}
/* button */
.button-0{
	width: 98%;
    height: 50px;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background: #fff;
	border: 1px solid #e6e0d4;
}
.button-0 a{
    display: block;
    font-size: 1.6rem;
    color: #333333;
    text-decoration: none;
    line-height: 50px;
    transition: all .5s ease;
    z-index: 2;
    position: relative;
}
.eff-0{
	width: 100%;
    height: 50px;
    left: -320px;
    top: -50px;
    background: #e6e0d4;
    position: absolute;
    transition: all .2s ease;
    z-index: 1
}
.button-0:hover .eff-0{
	left:0;
	top:0;
}
.button-0:hover a{
	color:#fff;
}

.button-1{
	width: 100%;
    height: 50px;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background: #333333;
	border: 1px solid #333333;
}
.button-1 a{
    display: block;
    font-size: 1.4rem;
    color: #fff;
    text-decoration: none;
    line-height: 50px;
    transition: all .5s ease;
    z-index: 2;
    position: relative;
}
.eff-1{
	width: 100%;
    height: 50px;
    left: -320px;
    top: -50px;
    background: #5b5b5b;
    position: absolute;
    transition: all .2s ease;
    z-index: 1
}
.button-1:hover .eff-1{
	left:0;
	top:0;
}
.button-1:hover a{
	color:#fff;
}
.button-2{
	width: 98%;
    height: 50px;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 8px 8px 0px 0px #dcc48d;
    background: #0e1937;
	border: 1px solid #fff;
}
.button-2 a{
    display: block;
    font-size: 1.6rem;
    color: #fff;
    text-decoration: none;
    line-height: 50px;
    transition: all .5s ease;
    z-index: 2;
    position: relative;
}
.eff-2{
	width: 100%;
    height: 50px;
    left: -320px;
    top: -50px;
    background: #fff;
    position: absolute;
    transition: all .2s ease;
    z-index: 1
}
.button-2:hover .eff-2{
	left:0;
	top:0;
}
.button-2:hover a{
	color:#0e1937;
}
footer{
	padding-bottom: 20px;
}
footer nav{
	width: 980px;
    margin: 0 auto 40px;
    padding: 10px 0;
    border-top: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
}
footer ul{
	display: flex;
	justify-content: space-around;
}
footer ul li a{
	position: relative;
	display: inline-block;
	transition: all .3s ease 0s;
}
footer ul li a::after {
	position: absolute;
	bottom: 0;
	left: 0;
	content: '';
	width: 0;
	height: 1px;
	background-color: #333333;
	transition: all .3s ease 0s;
}
footer ul li a:hover::after {
	width: 100%;
}
footer p.copyright{
	background: #333333;
	color: #fff;
	padding: 10px 0;
	text-align: center;
}
/* pagetop */
#pageTop {
	position: fixed;
	bottom: 60px;
	right: 20px;
}
#pageTop a {
	display: block;
	z-index: 999;
	padding: 6px 3px 6px 6px;
	/*border-radius: 30px;*/
	width: 40px;
	height: 40px;
	background-color: #333333;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
}
#pageTop a:hover {
	text-decoration: none;
	opacity: 0.7;
}
/* web-reservation */
#web-reservation {
	position: fixed;
	bottom: 60px;
	left: 20px;
}
#web-reservation a {
	display: block;
	z-index: 999;
	padding: 6px;
	text-decoration: none;
	text-align: center;
}
#web-reservation a:hover {
	text-decoration: none;
	opacity: 0.7;
}
/* web-interview */
#web-interview {
	position: fixed;
	bottom: 200px;
	left: 20px;
}
#web-interview a {
	display: block;
	z-index: 999;
	padding: 6px;
	text-decoration: none;
	text-align: center;
}
#web-interview a:hover {
	text-decoration: none;
	opacity: 0.7;
}
/* pankuzu */
.pankuzu{
	margin-bottom: 40px;
	background-color: #efefef;
}
.cd-breadcrumb {
	width: 100%;
	max-width: 980px;
	padding: 0;
	margin: 0 auto;
}
.cd-breadcrumb::after {
	content: "";
	display: table;
	clear: both;
}
.cd-breadcrumb li {
	display: inline-block;
	float: left;
	margin: 0.5rem 0;
}
.cd-breadcrumb li::after {
	display: inline-block;
	content: '\00bb';
	margin: 0 .6rem;
	color: #959fa5;
}
.cd-breadcrumb li:last-of-type::after {
	display: none;
}
.cd-breadcrumb li > * {
  display: inline-block;
  font-size: 1.4rem;
  color: #333333;
}
.cd-breadcrumb li.current > * {
	color: #333333;
}
.cd-breadcrumb a {
	transition: all .3s ease 0s;
}
.cd-breadcrumb a:hover {
	color: #cccccc;
}
.address{
	background: #ffffff;
	padding: 0 20px;
}
.address h2{
	border-bottom: 1px solid #cccccc;
	margin-bottom: 10px;
}
.address h2 img{
	width: 24% !important;
	height: auto;
}
.address p{
	margin-bottom: 20px;
	text-align: center;
}
p.contact-tel{
	margin-bottom: 5px !important;
}
a.contact-tel{
	display: block;
	font-size: 1.6rem;
	font-weight: bold;
	color: #0e1937;
    text-align: center;
    padding: 10px;
    border: 1px solid #0e1937;
}
.box-img1{
	width: 22%;
}
.box-img2{
	width: 48%;
}
.box-img2 a{
	display: block;
}
.box-img1 img{
	width: 100%;
	height: auto;
}
.box-img2 img{
	width: 100%;
	height: auto;
}
.anchor1{
    display: block;
    padding-top: 80px;
    margin-top: -80px;
}
.line p a{
	display: block;
}
.line p a img{
	width: 100%;
	height: auto;
}
.r-mark{
	vertical-align: 20%;
    font-size: 1.5rem;
}
.r-mark2{
	vertical-align: 18%;
    font-size: 1rem;
}
.img60{
	width: 60%;
	margin: 0 auto;
}
/* -----Common styleここまで----- */

/* -----top----- */
#top .mainvis{
	height: 88%;
	/*margin-top: 60px;
	margin-bottom: 40px;*/
	margin: 0 0 80px auto;
    width: 72%;
	position: relative;
}
/*#top .vegas-wrapper{
	display: flex;
	justify-content: center;
    align-items: center;
    width: 86%;
    margin: 0 auto;
}*/
#top .inner{
	position: absolute;
    top: 400px;
    background: #333333;
    padding: 10px 80px;
}
#top .inner p{
	font-family: Georgia,游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN",HGS明朝E,メイリオ,Meiryo,serif;
	color: #fff;
    font-size: 4rem;
}
#top .inner2{
	position: absolute;
    top: 560px;
    background: #333333;
    padding: 10px 80px;
}
#top .inner2 p{
	font-family: Georgia,游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN",HGS明朝E,メイリオ,Meiryo,serif;
	color: #fff;
    font-size: 2rem;
}
/*#top .mainvis .inner{
	display: flex;
    flex-direction: column;
    align-items: center;
	text-align: center;
    width: 60%;
}
#top .mainvis .inner h1{
	width: 100%;
    margin-bottom: 10px;
}
#top .mainvis .inner h1 img{
	width: 48%;
}
#top .mainvis .inner p{
	font-family: Georgia,游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN",HGS明朝E,メイリオ,Meiryo,serif;
	font-size: 2.4rem;
    color: #fff;
    margin-bottom: 10px;
}*/
#top .main-contents .top-contents-box{
	margin-bottom: 80px;
}
#top .main-contents .top-contents-box:last-child{
	margin-bottom: 0;
}
#top .box-l,
#top .box-r{
	width: 44%;
}
#top .box-l p{
	margin-bottom: 20px;
}
#top .box-r img{
	width: 100%;
	height: auto;
}
#top .s-box{
	width: 30%;
}
#top .s-box p{
	margin-bottom: 20px;
}
#top .s-box2{
	width: 49%;
}
#top .s-box2 p{
	margin-bottom: 20px;
}
#top .news{
	margin-bottom: 20px;
	background-color: #efefef;
    padding: 40px 0 0 0;
}
#top .news h2.title {
    text-align: center;
}
#top .news h2.title img{
	width: 32%;
	height: auto;
}
#top .news .news-box{
	margin-bottom: 20px;
}
#top .news dl{
	width: 60%;
	display: table;
	margin: auto;
}
#top .news dl dt,
#top .news dl dd{
	display: table-cell;
}
#top .news dl dt{
	width: 24%;
	padding-bottom: 10px;
	vertical-align: top;
}
#top .news dl dd{
	width: 76%;
	padding-bottom: 10px;
}
#top .news dl dd a{
	position: relative;
	display: inline-block;
	transition: all .3s ease 0s;
}
#top .news dl dd a::after {
	position: absolute;
	bottom: 0;
	left: 0;
	content: '';
	width: 0;
	height: 1px;
	background-color: #333333;
	transition: all .3s ease 0s;
}
#top .news dl dd a:hover::after {
	width: 100%;
}
/*#top .news ul{
	width: 44%;
    margin: 10px auto 40px;
    text-align: left;
}
#top .news ul li{
	margin-bottom: 5px;
}
#top .news ul li a{
	position: relative;
	display: inline-block;
	transition: all .3s ease 0s;
}
#top .news ul li a::after {
	position: absolute;
	bottom: 0;
	left: 0;
	content: '';
	width: 0;
	height: 1px;
	background-color: #333333;
	transition: all .3s ease 0s;
}
#top .news ul li a:hover::after {
	width: 100%;
}*/
#top .top-contents-box h2.title{
	padding-bottom: .5rem;
    line-height: 3rem;
    margin-bottom: 20px;
	/*text-align: center;*/
}
#top .top-contents-box h2.title span{
	display: inline-block;
    color: #333333;
    font-size: 1.4rem;
}
/*#top .top-contents-box h2.title span:before,
#top .top-contents-box h2.title span:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 1px;
  background-color: #333333;
}
#top .top-contents-box h2.title span:before {
  left:0;
}
#top .top-contents-box h2.title span:after {
  right: 0;
}*/
#top .top-contents-box h2.title2{
	padding-bottom: .5rem;
    line-height: 3rem;
    margin-bottom: 20px;
	text-align: left;
	border-bottom: 3px solid #333333;
	position: relative;
}
/*#top .top-contents-box h2.title2:after{
	position: absolute;
	content: " ";
	display: block;
	border-bottom: solid 3px #93bf9e;
	bottom: -3px;
	width: 20%;
}*/
#top .top-contents-box h3.title{
	padding-bottom: .5rem;
    line-height: 1.8rem;
    margin-bottom: 10px;
	text-align: center;
}
#top .top-contents-box h3.title span{
	display: block;
    color: #dcc48d;
    font-size: 1.2rem;
}
#top .common_info_inner {
    width: 100%;
}
#top .info_calendar {
    width: 100%;
    margin: 0 auto 15px;
    border-collapse: collapse;
    border-top: 4px solid #333333;
    border-bottom: 4px solid #333333;
}
#top .info_calendar tr {
    border-bottom: 1px dotted #333333;
}
#top .mitsumori {
	padding: 32px;
	border: 1px solid #333333;
}
#top .mitsumori h2.title img{
	width: 80%;
	height: auto;
}
#top .info_calendar tr td {
    color: #333333;
	text-align: center;
}
#top .info_calendar tr th,
#top .info_calendar tr td {
    padding: 5px 0;
}
#top .info_calendar tr.r1 th {
    color: #0e1937;
}
#top .info_calendar tr.r1 th.sat {
    color: #0f90d3;
}
#top .info_calendar tr.r1 th.sun {
    color: #ff0000;
}
#top .info_calendar tr.r2 th {
	width: 30%;
}
#top .reception-time{
	background: #ccc;
    padding: 10px;
    margin-bottom: 20px;
}
#top .reception-time h3{
	padding: 0 10px;
    border-bottom: 1px solid #fff;
    margin-bottom: 5px;
}
#top .reception-time p{
	padding: 0 20px 0 10px;
    margin-bottom: 0;
}

/* topページboxコンテンツ */
#top .box-a{
	width: 100%;
	display: table;
	max-width:1600px;
	margin:0 auto;
}
#top .box {
	display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
	width:25%;
	vertical-align:top;
	position:relative;
	float:left;
    padding: 24px;
}
#top .bg-color-1 {
	background-color:#e6e0d4;
}
#top .bg-color-2 {
	background-color:#93bf9e;
}
#top .bg-color-3 {
	background-color:#44dede;
}
#top .box h2{
	color:#fff;
	font-size:20px;
}
#top .box p.s-ttl{
	color:#fff;
}
#top .box p.more2{
	color:#fff;
}
#top .box h2.box-tx-1{
	color: #333333;
}
#top .box p.box-tx-1{
	color: #333333;
}
#top .box p.box-tx-2{
	color: #93bf9e;
}
#top .box-a a:hover{
	opacity:0.6;
	transition: all 0.7s ease;
	-webkit-transition: all 0.7s ease;
	-moz-transition: all 0.7s ease;
	-o-transition: all 0.7s ease;
}
/* 擬似要素の共通スタイル */
.box-border{
	position:relative;
}
.change-border01::after,
.change-border01::before,
.change-border01__inner::after,
.change-border01__inner::before {
  background-color: #ccc;
  content: '';
  display: block;
  position: absolute;
  z-index: 10;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
}
/* 左上へ配置 */
.change-border01::after {
    height: 10px;
    left: -1px;
    top: -1px;
    width: 0px;
}
/* 右下へ配置 */
.change-border01::before {
  bottom: -1px;
  height: 10px;
  right: -1px;
  width: 0px;
}
/* 左下へ配置 */
.change-border01__inner::after {
  bottom: -1px;
  height: 0px;
  left: -1px;
  width: 10px;
}
/* 右下へ配置 */
.change-border01__inner::before {
  height: 0px;
  right: -1px;
  top: -1px;
  width: 10px;
}
/* hover */
.change-border01:hover::after,
.change-border01:hover::before {
  width: 100%;
  width: calc(100% + 1px);
}
.change-border01:hover .change-border01__inner::after,
.change-border01:hover .change-border01__inner::before {
  height: 100%;
  height: calc(100% + 1px);
}


/* -----topここまで----- */

/* -----subpage Common style----- */
.second .mainvis-sub{
	background: url(../img/second/mainvis-sub.jpg) no-repeat center center;
	background-size: cover;
	/*margin-top: 60px;*/
	height: 40vh;
	display: flex;
	justify-content: center;
	align-items: center;
}
.second .main-title{
	text-align: center;
}
.second .main-title p{
	color: #333333;
	line-height: 0.6rem;
}
.second .main-title h1{
	font-size: 2.8rem;
	font-weight: bold;
	border-bottom: double 6px #333333;
	/*position: relative;
	display: inline-block;
	padding: 0 72px;*/
}
/*.second .main-title h1:before,
.second .main-title h1:after{
	content: '';
	position: absolute;
	top: 50%;
	display: inline-block;
	width: 60px;
	height: 1px;
	background-color: #0e1937;
}
.second .main-title h1:before {
	left:0;
}
.second .main-title h1:after {
	right: 0;
}*/
.second h2.title2 img{
	vertical-align: bottom;
	margin-right: 8px;
	width: 3%;
	height: auto;
}
/*.second .top-contents-box h2.title{
	text-align: left !important;
	border-bottom: 3px solid #cccccc;
	position: relative;
}
.second .top-contents-box h2.title:after{
	position: absolute;
	content: " ";
	display: block;
	border-bottom: solid 3px #93bf9e;
	bottom: -3px;
	width: 20%;
}*/
/* -----subpage Common styleここまで----- */

/* -----access----- */
.second .access table{
	width: 100%;
}
.second .access table,
.second .access table td,
.second .access table th{
	border: 1px solid #ccc;
}
.second .access table td,
.second .access table th{
	padding: 10px 20px;
}
.second .access table th{
	background: #efefef;
}
/* -----accessここまで----- */

/* -----landscape----- */
.second .gallery ul{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;	
}
.second .gallery ul::after {
	content: "";
	display: block;
	width: 32%;
	height: 0;
}
.second .gallery ul li{
	width: 32%;
	margin-bottom: 10px;
}
.second .gallery ul li a{
	display: block;
	transition: all .3s ease 0s;
}
.second .gallery ul li a:hover{
	opacity: .5;
}
.second .gallery ul li a img{
	width: 100%;
	height: auto;
}
/* -----landscapeここまで----- */

/* -----news----- */
.second .news-box ul li a{
	display: block;
    font-size: 1.4rem;
    border-bottom: 1px dotted #ccc;
    padding: 20px 20px;
	transition: all .3s ease 0s;
}
.second .news-box ul li a:hover{
	color: #fff;
	background: #333333;
	border-bottom: 1px solid #333333;
}
/* -----newsここまで----- */

/* -----contact----- */
select{
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    text-indent: 1em;
    background: url(../img/contact/arw-select-down.png) no-repeat;
    background-size: 20px;
    background-position: right center;
    height: 40px;
    line-height: 3rem;
    font-size: 1.4rem;
    vertical-align: middle;
    border:1px solid #CCC;
    margin-bottom:20px;
	border-radius: 0px;
	width: 100%;
}
input{
    text-indent: 1em;
    height: 40px;
    line-height: 3rem;
    font-size: 1.4rem;
    vertical-align: middle;
    border:1px solid #CCC;
    margin-bottom:20px;
	border-radius: 0px;
	width: 100%;
}
textarea{
    height: 140px;
    line-height: 2rem;
    font-size: 1.4rem;
    vertical-align: middle;
    border:1px solid #CCC;
    margin-bottom:20px;
	border-radius: 0px;
	width: 100%;
}
.contact table{
	margin: 20px auto;
	width: 80%;
}
.contact th{
	font-size: 1.4rem;
	text-align: left;
	vertical-align: top;
	width: 30%;
}
.contact td{
	width: 70%;
}
p.policy-link{
	margin-bottom: 20px;
}
p.form-btn{
	display: flex;
	justify-content: space-between;
}
p.form-btn input{	
	background: #333333;
	color: #fff;
    transition: all .2s ease;
}
p.form-btn input:hover{	
	background: #fff;
	border: 1px solid #333333;
	color: #333333;
}
.check{
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	margin-bottom: 20px;
}
.check label {
    font-size: 1.4rem;
    padding: 10px;
    transition: .3s ease-in-out;
}
.check input {
    height: auto;
    margin-bottom: 0;
    vertical-align: baseline;
    width: auto;
}
/* -----contactここまで----- */

/* -----online----- */ 
.online .mainvis-online{
	background: url(../img/online/main_online.jpg) no-repeat center center;
	background-size: cover;
	margin-top: 60px;
	height: 64vh;
	display: flex;
	justify-content: left;
	align-items: center;
	padding: 0 152px;
}
.online .main-title-online{
	width: 56%;
}
.online .main-title-online h1{
	margin-bottom: 24px;
    text-align: center;
}
.online .main-title-online ul{
	display: flex;
    margin-bottom: 24px;
    justify-content: space-between;
}
.online .main-title-online ul li{
	text-align: center;
}
.online .main-title-online ul li img{
	width: 90%;
    height: auto;
}
.online .main-title-online h2{
	text-align: center;
}
.online .sub-text-online{
	background: #e84709;
    padding: 40px 0;
    margin-bottom: 80px;
}
.online .sub-text-online .sub-text-online-inner{
	margin: 0 auto;
    width: 80%;
    text-align: center;
}
.online .sub-text-online .sub-text-online-inner h2{
	font-size: 3.2rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 16px;
}
.online .sub-text-online .sub-text-online-inner p{
	color: #ffffff;
}
.online .box-online{
	padding-bottom: 40px;
}
.online .box-online h3{
	font-size: 3.2rem !important;
    text-align: center;
    margin-bottom: 24px;
}
.online .box-online ul{
	display: flex;
    justify-content: space-around;
}
.online .box-online-inner{
	display: flex;
    justify-content: space-between;
}
.online .box-online-inner .online-contents-box{
	/*width: 48%;20210322変更*/
	/*width: 32%;20221014変更*/
	width: 100%;
    padding: 32px;
    border: 1px solid #dddddd;
}
.online .box-online-inner .online-contents-box h4{
	text-align: center;
    margin-bottom: 16px;
}
.online .box-online-inner .online-contents-box h4 img{
	width: 30%;
	height: auto;
}
.online .box-online-inner .online-contents-box p.online-text1,
.online .box-online-inner .online-contents-box p.online-text2{
	margin-bottom: 24px;
}
.online .box-online-inner .online-contents-box p.online-text2,
.online .box-online-inner .online-contents-box p.online-text3{
	text-align: center;
	font-size: 1.2rem;
}
.online .box-online-inner .online-contents-box p img.online-qr{
	width: 20%;
    height: auto;
}
/* -----onlineここまで----- */


/* -----responsive----- */
@media only screen and (max-width: 1023px) {
	header h1 img {
		width: 14%;
	}
	#main{
		margin: 0 40px;
	}
	.container{
		width: 100%;
		flex-direction: column;
	}
	.main-contents{
		width: 100%;
	}
	#pagetop{
		margin-bottom: 0;
	}
	footer nav {
		width: 100%;
		border-bottom: none;
	}
	footer ul{
		flex-direction: column;
		text-align: center;
	}
	footer ul li{
		padding: 10px 0;
		border-bottom: 1px dotted #000;
	}
	.pankuzu {
		padding-left: 40px;
	}
	#top .mainvis {
		height: 72%;
		width: 80%;
	}
	#top .inner {
		top: 520px;
		padding: 10px 40px;
	}
	#top .inner2 {
		top: 670px;
		padding: 10px 40px;
	}
	#top .box h2{
		font-size: 1.2rem;
		/*font-size: 1.4rem;*/
	}
	#top .news dl{
		width: 80%;
	}
	#top .news dl dt{
		width: 20%;
		vertical-align: top;
	}
	#top .news dl dd{
		width: 80%;
	}
	.second .box-sub img {
		width: 100%;
		height: auto;
	}
	.button-0 a{
		font-size: 1.4rem;
	}
	.contact table {
		width: 100%;
	}
	.online .mainvis-online{
		height: 48vh;
		padding: 0 40px;
	}
	.online .main-title-online h2 img{
		width: 96%;
	}

	.img60{
		width: 100%;
		margin: 0 auto;
	}
}
@media only screen and (max-width: 767px) {
	header{
		height: 60px;
	}
	header h1 {
		height: 60px;
	}
	header h1 img {
		width: 24%;
		height: auto;
	}
	.mb0{
		margin-bottom: 0 !important;
	}
	.mb40{
		margin-bottom: 40px;
	}
	.spview {
		display: block;
	}
	.pcview {
		display: none!important;
	}
	#main{
		margin: 0 16px 40px;
	}
	#main h2{
		font-size: 1.8rem;
	}
	#main h3{
		font-size: 1.6rem;
	}
	.button-1 {
		width: 100%;
	}
	.button-1 a {
		font-size: 1.2rem;
	}
	.flex {
		flex-direction: column;
	}
	.flex2 {
		flex-direction: column;
	}
	.flex3 {
		flex-direction: column;
	}
	.bb-smp{
		border-bottom: 1px solid #eeeeee;
	}
	.footer_fix_btn {
		position:fixed;
		bottom:0;
		width:100%;
		text-align:center;
		background:#f8f8f8;
		box-shadow: 0px -2px 11px 0px #ccc;
	}
	.footer_fix_btn ul{
		display: flex;
	}
	.footer_fix_btn ul li {
		width:100%;
		border-right: 1px solid #ccc;
		background-color: #333333;
	}
	.footer_fix_btn ul li+ li {
		border-right: 1px solid #ccc;
	}
	.footer_fix_btn ul li a {
		display:block;
		padding:10px 0 0;
		width:100%;
		text-decoration:none;
	}
	/*.footer_fix_btn ul li a img{
		width: 80%;
		height: auto;
	}*/
	.address h2 img {
		width: 56% !important;
	}
	.box-img1{
		width: 100%;
		margin-bottom: 20px;
	}
	.box-img1 img{
		width: 60%;
		height: auto;
		display: block;
		margin: 0 auto;
	}
	.box-img2{
		width: 100%;
	}
	.anchor1{
		display: block;
		padding-top: 60px;
		margin-top: -60px;
	}
	.sp-img{
		width: 100%;
		height: auto;
	}
	.pankuzu {
		padding-left: 16px;
	}
	#top .mainvis {
		height: 64% !important;
		margin: 0 0 80px 0;
		width: 100%;
	}
	#top .vegas-wrapper {
		width: 100%;
	}
	#top .inner {
		top: 240px;
		padding: 10px 20px;
	}
	#top .inner p{
		font-size: 2rem;
	}
	#top .inner2 {
		top: 320px;
		padding: 10px 20px;
		width: 100%;
	}
	#top .inner2 p{
		font-size: 1.2rem;
	}
	#top .top-contents-box h2.title img{
		width: 80%;
		height: auto;
	}
	#top .box {
		width:50%;
	}
	#top .box-l,
	#top .box-r {
		width: 100%;
	}
	#top .box-l {
		margin-bottom: 40px;
	}
	#top .s-box {
		width: 100%;
		margin-bottom: 40px;
	}
	#top .s-box2 {
		width: 100%;
	}
	#top .news h2.title img{
		width: 60%;
		height: auto;
	}
	#top .news dl{
		width: 90%;
	}
	#top .news dl dt{
		width: 30%;
		vertical-align: top;
	}
	#top .news dl dd{
		width: 60%;
	}
	/*#top .news ul{
		text-align: left;
		padding: 0 10px;
		width: 100%;
	}*/
	#top .info_calendar tr.r2 th {
		width: 20%;
	}
	.cd-breadcrumb {
		padding: 0 10px;
	}
	/*.second .mainvis-sub {
		margin-top: 50px;
	}*/
	.second .mainvis-sub{
		background: url(../img/second/mainvis-sub-smp.jpg) no-repeat center center;
		background-size: cover;
		/*margin-top: 50px;*/
		height: 32vh;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.second .main-title h1 {
		font-size: 2rem;
	}
	.second h2.title2 img {
		width: 8%;
	}
	.second .gmap iframe {
		width: 100%;
	}
	.second .access table th {
		text-align: left;
	}
	.second .access table td,
	.second .access table th {
		display: block;
		border: none;
	}
	.second .gallery ul li {
		width: 49%;
	}
	.second .box-l {
		margin-bottom: 10px!important;
	}
	.contact th {
		display: block;
		width: 100%;
	}
	.contact td {
		display: block;
		width: 100%;
	}
	p.policy-link{
		text-align: left;
	}
	/*hover解除*/
	.eff-0,
	.eff-1,
	.eff-2{
		display: none;
	}
	#top .news dl dd a::after{
		display: none;
	}
	/*#top .news ul li a::after{
		display: none;
	}*/
	.change-border01::after,
	.change-border01::before,
	.change-border01__inner::after,
	.change-border01__inner::before {
		display: none;
	}
	.change-border01:hover,
	.change-border01:hover {
		display: none;
	}
	.online .mainvis-online{
		height: 48vh;
		padding: 0 20px;
		margin-top: 50px;
	}
	.online .main-title-online {
		width: 100%;
	}
	.online .main-title-online h1 img{
		width: 64%;
	    height: auto;
	}
	.online .main-title-online h2 img{
		width: 100%;
	}
	.online .sub-text-online .sub-text-online-inner h2{
		font-size: 1.6rem;
	}
	.online .sub-text-online .sub-text-online-inner p{
		text-align: left;
	}
	.online .box-online h3 {
		font-size: 1.6rem !important;
	}
	.online .box-online ul {
		flex-wrap: wrap;
	}
	.online .box-online-inner {
		flex-wrap: wrap;
	}
	.online .box-online-inner .online-contents-box {
		width: 100%;
	}
	.online .box-online-inner .online-contents-box p img.online-qr {
		display: none;
	}
	.online .box-online-inner .online-contents-box h4 img{
		width: 80%;
		height: auto;
	}

}
/* ----responsiveここまで ----- */
