@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;
}
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: #fff;
}
.color2 {
    color: #62B4ED;
}
.bg-color1 {
    background: #cccccc;
}
.wid {
    width: 100%;
}
.pad10 {
    padding: 10px;
}
.pad20 {
    padding: 20px;
}
.margin-b20 {
    margin-bottom: 20px;
}
.margin-b40 {
    margin-bottom: 40px;
}
.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;
}
.flex4::after {
    content: "";
    display: block;
    width: 30%;
    height: 0;
}
hr {
    width: 80%;
    height: 1px;
    background-color: #dddddd;
    border: none;
    margin-bottom: 40px;
}
/* -----Basic styleここまで----- */


/* -----Common style----- */
.wrapper {
    width: 100%;
    height: 100vh;
}
header {
}
.paradeiser {
    background: rgba(255,255,255,.9);
}
.paradeiser .paradeiser_logo {
    max-width: 260px;
    width: 48%;
}
.paradeiser ul.paradeiser_children li {
    background: #ffffff;
}
.paradeiser ul.paradeiser_children li a {
    color: #333333;
}
.paradeiser ul.paradeiser_children li a:hover {
    color: #ffffff;
}
.paradeiser ul.paradeiser_children li:last-child {
    height: 100vh;
}
.paradeiser ul.paradeiser_children li:last-child a {
    height: 100vh;
}
.paradeiser a span {
    color: #333333;
    margin-top: 0;
}
.paradeiser a::before, .paradeiser a::after {
    position: absolute;
    z-index: -1;
    display: block;
    content: '';
}
.paradeiser a, .paradeiser a::before, .paradeiser a::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.paradeiser a::after {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(.5);
    transform: scale(.5);
}
.paradeiser a:hover::after {
    background: rgba(14,45,45,.6);
    -webkit-transform: scale(1);
    transform: scale(1);
}
#main {
    margin-bottom: 40px;
}
#main h2 {
    font-size: 2.2rem;
    font-weight: bold;
}
#main h3 {
    font-size: 1.8rem;
    font-weight: bold;
}
#main h3 img.icon01{
	vertical-align: text-bottom;
	width: 3%;
	height: auto;
}
.container {
    width: 980px;
    margin: 0 auto;
}
.main-contents {
    width: 100%;
}
/* button */
.button-1 {
    width: 98%;
    height: 50px;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 8px 8px 0px 0px #dddddd;
    background: #fff;
    border: 1px solid #0E2D42;
}
.button-1 a {
    display: block;
    font-size: 1.6rem;
    color: #0E2D42;
    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: #0E2D42;
    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 #333333;
    background: #fff;
    border: 1px solid #0E2D42;
}
.button-2 a {
    display: block;
    font-size: 1.6rem;
    color: #0E2D42;
    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: #0E2D42;
    position: absolute;
    transition: all .2s ease;
    z-index: 1
}
.button-2:hover .eff-2 {
    left: 0;
    top: 0;
}
.button-2:hover a {
    color: #fff;
}
footer {
    padding-bottom: 20px;
}
footer nav {
    width: 980px;
    margin: 0 auto 40px;
    padding: 10px 0;
    border-top: 1px solid #0E2D42;
    border-bottom: 1px solid #0E2D42;
}
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: #cccccc;
    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;
    border-radius: 30px;
    width: 40px;
    height: 40px;
    background-color: #cccccc;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
}
#pageTop 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: #0E2D42;
}
.address {
    background: #cccccc;
    padding: 20px 20px;
}
.address h2 {
    border-bottom: 1px solid #ffffff;
    margin-bottom: 10px;
    text-align: center;
}
.address h2 img {
    width: 48% !important;
    height: auto;
}
.address p {
    color: #333333;
    margin-bottom: 20px;
}
p.contact-tel {
    margin-bottom: 5px !important;
}
a.contact-tel {
    display: block;
    font-size: 1.6rem;
    font-weight: bold;
    color: #0E2D42;
    text-align: center;
    padding: 10px;
    border: 1px solid #0E2D42;
}
.sns {
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 16px 0 10px;
}
.sns ul {
    display: flex;
    justify-content: space-around;
}
.sns ul li {
    width: 33%;
}
.sns ul li +li {
    border-left: 1px solid #cccccc;
}
.sns ul li a {
    display: block;
    text-align: center;
}
.sns ul li a img {
    width: 16%;
    height: auto;
}
.spview {
    display: none;
}
.tx-box{
	margin-bottom: 20px;
}
/* -----Common styleここまで----- */

/* -----top----- */
#top .mainvis {
    height: 88%;
	margin: 60px 40px 40px;
    /*margin-top: 60px;
    margin-bottom: 40px;*/
}
#top .vegas-wrapper {
    display: flex;
    align-items: center;
    width: 86%;
    margin: 0 auto;
}
#top .mainvis .inner h1 {
    font-family: Georgia, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
    font-size: 6rem;
    /*font-size: 4rem;*/
    color: #fff;
    font-weight: bold;
    border-bottom: 1px solid #0E2D42;
    margin-bottom: 10px;
}
#top .mainvis .inner p {
    font-size: 2.4rem;
    /*font-size: 1.6rem;*/
    color: #fff;
    margin-bottom: 10px;
}
#top .main-contents .top-contents-box {
    margin-bottom: 40px;
}
#top .main-contents .top-contents-box:last-child {
    margin-bottom: 0;
}
#top .box-l, #top .box-r {
    width: 46%;
}
#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;
}
#top .news ul {
    margin-top: 10px;
}
#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: #000;
    transition: all .3s ease 0s;
}
#top .news ul li a:hover::after {
    width: 100%;
}
#top .top-contents-box h2.title {
    padding-bottom: .5rem;
    border-bottom: 1px solid #0E2D42;
    line-height: 2.4rem;
    margin-bottom: 20px;
}
#top .top-contents-box h2.title span {
    display: block;
    color: #0E2D42;
    font-size: 1.4rem;
}
#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: #0E2D42;
    font-size: 1.2rem;
}
#top .common_info_inner {
    width: 100%;
}
#top .info_calendar {
    width: 100%;
    margin: 0 auto 15px;
    border-collapse: collapse;
    border-top: 5px solid #cccccc;
    border-bottom: 5px solid #cccccc;
}
#top .info_calendar tr {
    border-bottom: 2px solid #cccccc;
}
#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: #333333;
}
#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 .lp-box a img{
	width: 100%;
	height: auto;
}
/* -----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 {
    line-height: 1.2rem;
	color: #ffffff;
}
.second .main-title h1 {
    font-size: 2.8rem;
	font-weight: bold;
    color: #fff;
    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: #fff;
}
.second .main-title h1:before {
    left: 0;
}
.second .main-title h1:after {
    right: 0;
}
.second h2.title img {
    vertical-align: bottom;
    margin-right: 8px;
}
/* -----subpage Common styleここまで----- */

/* -----works----- */
.box-3col {
    width: 30%;
    margin-bottom: 40px;
}
.box-3col p img {
    width: 100%;
    height: auto;
}
.box-3col h3 {
    text-align: center;
    color: #fff;
}
.box-3col h3.bg1 {
    background-color: #0E2D42;
}
.box-3col h3.bg2 {
    background-color: #43A3BA;
}
.box-3col h3.bg3 {
    background-color: #A3AD40;
}
.box-3col h3.bg4 {
    background-color: #BC8787;
}
.box-3col h3.bg5 {
    background-color: #aaaaaa;
}
.box-3col h4 {
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}
.box-3col h4.border1 {
    border: 1px solid #0E2D42;
}
.box-3col h4.border2 {
    border: 1px solid #43A3BA;
}
.box-3col h4.border3 {
    border: 1px solid #A3AD40;
}
.box-3col h4.border4 {
    border: 1px solid #BC8787;
}
.box-3col h4.border5 {
    border: 1px solid #aaaaaa;
}
.box-3col ul {
    margin-bottom: 10px;
}
.box-3col ul li {
    padding: 0 0 0 5px;
    border-bottom: 1px solid #ccc;
}
/* -----worksここまで----- */

/* -----sale----- */
h3.sale-title1 {
    text-align: center;
    background: #62B4ED;
    color: #fff;
    padding: 5px 0;
    margin-bottom: 40px;
}
h3.sale-title2 {
    text-align: center;
    background: #43A3BA;
    color: #fff;
    padding: 5px 0;
    margin-bottom: 40px;
}
h3.sale-title3 {
    text-align: center;
    background: #A3AD40;
    color: #fff;
    padding: 5px 0;
    margin-bottom: 40px;
}
h3.sale-title4 {
    text-align: center;
    background: #BC8787;
    color: #fff;
    padding: 5px 0;
    margin-bottom: 40px;
}
/* -----saleここまで----- */


/* -----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;
	width: 40%;
}
/* -----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: #0E2D42;
    border-bottom: 1px solid #0E2D42;
}
/* -----newsここまで----- */

/* -----contact----- */
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    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 {
    text-indent: 1em;
    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;
    text-align: center;
}
p.form-btn {
    display: flex;
    justify-content: space-between;
}
p.form-btn input {
    background: #0E2D42;
    color: #fff;
    transition: all .2s ease;
}
p.form-btn input:hover {
    background: #fff;
    border: 1px solid #0E2D42;
    color: #0E2D42;
}
/* -----contactここまで----- */

/* -----flow----- */
.serviceFlow__wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.serviceFlow__box {
    position: relative;
    width: 31%;
    background-color: #fff;
    margin-bottom: 3%;
    padding: 1rem 1.5rem 1.5rem 1.5rem;
}
.serviceFlow__number {
    position: relative;
    font-family: 'Viga', sans-serif;
    font-size: 2.4rem;
    color: #68b9a4;
    line-height: 1;
}
.serviceFlow__number:before {
    position: absolute;
    content: "";
    border-bottom: 8px solid transparent;
    border-left: 8px solid #fff;
    border-top: 8px solid #fff;
    border-right: 8px solid transparent;
    top: 0;
    left: 0;
}
.serviceFlow__number:after {
    position: absolute;
    content: "";
    width: 30px;
    height: 1px;
    background-color: #68b9a4;
    top: 9px;
    left: -9px;
    transform: rotate(-45deg);
}
.serviceFlow__box img {
    display: block;
    width: 80px;
    max-width: 100%;
    margin: 1rem auto 1rem auto;
}
.serviceFlow__title {
    display: block;
    color: #68b9a4;
    text-align: center;
    font-weight: bold;
    font-size: 1.3rem;
    margin-bottom: 10px;
}
.serviceFlow__txt {
    display: block;
    font-size: 14px;
    line-height: 1.6;
}
.serviceFlow__box:after {
    position: absolute;
    content: "";
    border-bottom: 15px solid transparent;
    border-left: 15px solid transparent;
    border-top: 15px solid #68b9a4;
    border-right: 15px solid #68b9a4;
    top: 0.8rem;
    right: 0.8rem;
}
/* -----flowここまで----- */

/* -----tab----- */
.tab-area {
    display: flex;
    justify-content: space-around;
    background-color: #ccc;
    cursor: pointer;
	margin-bottom: 20px;
}
 .tab {
	 width: 50%;
	 height: 30px;
	 line-height: 30px;
	 text-align: center;
	 color: #222e3e;
	 border-right: 1px solid #50637b;
	 border-left: 1px solid #222e3e;
}
.tab.active {
    background-color: #222e3e;
    color: #ffffff;
    border: none;
}
/*.tab-area {
    display: flex;
    justify-content: space-around;
    background-color: #222e3e;
    cursor: pointer;
	margin-bottom: 20px;
}
 .tab {
	 width: 50%;
	 height: 30px;
	 line-height: 30px;
	 text-align: center;
	 color: white;
	 border-right: 1px solid #50637b;
	 border-left: 1px solid #222e3e;
}
.tab.active {
    background-color: #ccc;
    color: #222e3e;
    border: none;
}*/
.content-area {
    font-size: 30px;
    text-align: center;
}
.content {
	 display: none;
}
.content.show {
    margin-top: 50px;
    display: block;
}

/* -----tabここまで----- */

/* -----responsive----- */
@media only screen and (max-width: 1023px) {
#main {
    margin: 0 10px;
}
.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;
}
#top .mainvis .inner h1 {
    font-size: 4rem;
}
.second p iframe {
    width: 100%;
    height: auto;
}
.box-3col {
    width: 48%;
    margin-bottom: 20px;
}
.contact table {
    width: 100%;
}
.movie-contents video {
    width: 100%;
    height: auto
}
}

@media only screen and (max-width: 767px) {
.mb0 {
    margin-bottom: 0 !important;
}
.mb40 {
    margin-bottom: 40px;
}
.paradeiser .paradeiser_logo {
    max-width: 110px;
    width: 80%;
}
.paradeiser .paradeiser_icon_canvas img {
    max-width: 16px;
}
#main {
    margin: 0 10px 40px;
}
#main h2 {
    font-size: 1.4rem;
}
#main h3 {
    font-size: 1.4rem;
    padding: 0 5px;
}
#main h3 img.icon01 {
    width: 6%;
}
.button-1 {
    width: 100%;
}
.button-1 a {
    font-size: 1.2rem;
}
.flex {
    flex-direction: column;
}
.flex2 {
    flex-direction: column;
}
.flex3 {
    flex-direction: column;
}
.sns ul li a img {
    width: 32%;
}
footer nav {
    width: 100%;
    border-bottom: none;
}
.footer_fix_btn {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    background: #0E2D42;
    box-shadow: 0px -2px 11px 0px #ccc;
}
.footer_fix_btn ul {
    display: flex;
    justify-content: space-around;
}
.footer_fix_btn ul li {
    width: 50%;
}
.footer_fix_btn ul li +li {
    border-left: 1px solid #eeeeee;
}
.footer_fix_btn ul li a {
    display: block;
    padding: 10px 0 0;
}
.footer_fix_btn ul li a img {
    width: 56%;
    /*width: 16%;*/
    height: auto;
}
.spview {
    display: block;
}
#top .mainvis {
    height: 48% !important;
    margin-top: 50px;
    margin-bottom: 20px;
	margin-left: 20px;
	margin-right: 20px;
}
#top .vegas-wrapper {
    width: 96%;
}
#top .mainvis .inner h1 {
    font-size: 2rem;
}
#top .mainvis .inner p {
    font-size: 1.2rem;
}
#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 .info_calendar tr.r2 th {
    width: 20%;
}
.cd-breadcrumb {
    padding: 0 10px;
}
.second .mainvis-sub {
    margin-top: 50px;
	height: 20vh;
}
.second .main-title h1 {
    font-size: 1.6rem;
}
.second .gmap iframe {
    width: 100%;
}
.second .access table th {
    text-align: left;
}
.second .access table td,  .second .access table th {
    display: block;
    border: none;
	width: 100%;
}
.second .gallery ul li {
    width: 49%;
}
.box-3col h4 {
    font-size: 1.2rem;
}
.box-3col ul li {
    font-size: 1.2rem;
}
.contact th {
    display: block;
    width: 100%;
}
.contact td {
    display: block;
    width: 100%;
}
p.policy-link {
    text-align: left;
}
.serviceFlow__box {
    width: 100%;
}
}
/* ---------------------------------------------------------------------------------------responsiveここまで */
