@charset "utf-8";

/*--------------------------------------------------------------*/
/* CSS and Graphics are released under Creative Commons Licence */
/* https://www.webplus.jp/                                       */
/* Copyright (C) Kiyonobu Horita @ WEBPLUS Inc.                 */
/*--------------------------------------------------------------*/


/* -----------------------------------------------------------

　header

-------------------------------------------------------------- */
header {
    position: relative;
    width: 100%;
    min-height: 720px;
    height: 100%;
    background-color: rgba(0, 0, 0, 1.0);
    overflow: hidden;
}

.carousel-inner {
    text-align: center;
}

.item {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 720px;
}

/*　h2
----------------------------------------------------------- */
.carousel-caption {
    position: absolute;
    top: 100px;
    margin-top: 3.0rem;
    padding-top: 0;
    padding-bottom: 0;
    color: rgba(255, 255, 255, 1.0);
    z-index: 20;
    -webkit-animation: fadeIn 3.0s ease-in-out;
    animation: fadeIn 3.0s ease-in-out;
}

@-webkit-keyframes fadeIn {

    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }

}

@keyframes fadeIn {

    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }

}

.carousel-caption figure img {
    margin: 0 auto;
    width: 70%;
    max-width: 320px;
    height: 70%;
    max-height: 320px;
}

.carousel-caption h2 {
    margin: 5.0vw -150px;
    font-family: "Times New Roman", "游明朝", YuMincho, "ヒラギノ明朝 Pr6 W6", "Hiragino Mincho Pro", "HGS明朝E", "メイリオ", "ＭＳ Ｐ明朝", "MS PMincho", Meiryo, serif;
    font-weight: bold;
    font-size: 4.0rem;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 1.0);
}

.carousel-caption p {
    margin: 0 -150px;
    margin-bottom: 10px;
    font-weight: 300;
    line-height: 2.4rem;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 1.0);
}

.carousel-caption h2 span,
.carousel-caption p span {
    display: block;
}

/*　Scroll
----------------------------------------------------------- */
header .more a,
header .more a:visited {
    display: block;
    margin: 30px auto 0;
    padding: 8px 0;
    width: 198px;
    height: 120px;
    background: url(../images/header_start.png) center top no-repeat;
    background-size: 198px 120px;
    color: rgba(255, 241, 0, 1.0);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2.4rem;
    text-decoration: none;
}

header .more a:hover {
    background: url(../images/header_start_on.png) center top no-repeat;
    background-size: 198px 120px;
}

header .more a span {
    display: block;
}

@media only screen and (min-width:360px) {

    header {
        min-height: 760px;
    }

    .item {
        min-height: 760px;
    }

}

@media only screen and (min-width:414px) {

    header {
        min-height: 760px;
    }

    .item {
        min-height: 760px;
    }

    .carousel-caption h2 {
        font-size: 4.5rem;
    }

}

@media only screen and (min-width:576px) {

    header {
        min-height: 860px;
    }

    .item {
        min-height: 860px;
    }

    .carousel-caption p span {
        display: inline;
    }

}

@media only screen and (min-width:768px) {

    header {
        min-height: 860px;
    }

    .item {
        min-height: 860px;
    }

    .carousel-caption {
        top: 140px;
    }

    .carousel-caption h2 {
        margin: 30px -130px;
    }

    .carousel-caption h2 span {
        display: inline;
    }

    .carousel-caption h2::before {
        display: inline-block;
        position: relative;
        top: 5px;
        left: -20px;
        width: 43px;
        height: 50px;
        content: " ";
        background: url(../images/header_h2_icon_l.png) left center no-repeat;
        background-size: contain;
    }

    .carousel-caption h2::after {
        display: inline-block;
        position: relative;
        top: 5px;
        right: -20px;
        width: 43px;
        height: 50px;
        content: " ";
        background: url(../images/header_h2_icon_r.png) right center no-repeat;
        background-size: contain;
    }

    .carousel-caption p {
        margin-bottom: 30px;
        font-size: 2.4rem;
        line-height: 3.4rem;
    }

    header .more a,
    header .more a:visited {
        margin: 50px auto 0;
    }

}

@media only screen and (min-width:769px) {

    header {
        min-height: 940px;
    }

    .item {
        min-height: 940px;
    }

}

@media only screen and (min-width:1200px) {

    .carousel-caption h2 {
        font-size: 5.0rem;
        letter-spacing: 1.0rem;
    }

}

/*　背景
----------------------------------------------------------- */
/* 前面のドットレイヤー */
header .layer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: url(../images/bg_raster.png) 0 0 repeat;
    z-index: 1;
}

/* 背景画像分割表示 */
.cover1,
.cover2,
.cover3,
.cover4,
.cover5,
.cover6,
.cover7,
.cover8 {
    position: absolute;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    height: calc(100%/4);
    pointer-events: none;
    z-index: 1;
}

.cover1,
.cover2,
.cover3,
.cover4 {
    -webkit-animation: cover-l 3.0s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation: cover-l 3.0s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.cover5,
.cover6,
.cover7,
.cover8 {
    -webkit-animation: cover-r 3.0s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation: cover-r 3.0s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.cover1,
.cover5 {
    top: 0;
}

.cover2,
.cover6 {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
    top: calc(100%/4);
}

.cover3,
.cover7 {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    top: calc(100%/2);
}

.cover4,
.cover8 {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    top: calc(100%/4*3);
}

@-webkit-keyframes cover-l {

    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

}

@keyframes cover-l {

    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

}

@-webkit-keyframes cover-r {

    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }

}

@keyframes cover-r {

    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }

}

/* 背景画像 */
.item.item01 {
    background: url("../images/carousel_pool_mb.jpg") center center / cover no-repeat;
}

/*
.item.item02 {
    background: url("../images/carousel_tanki_mb.jpg") center center / cover no-repeat;
}
*/

.item.item03 {
    background: url("../images/carousel_gym_mb.jpg") center center / cover no-repeat;
}

.item.item04 {
    background: url("../images/carousel_studio_mb.jpg") center center / cover no-repeat;
}

.item.item05 {
    background: url("../images/carousel_bath_mb.jpg") center center / cover no-repeat;
}

.item.item06 {
    background: url("../images/carousel_woman_mb.jpg") center center / cover no-repeat;
}

.item.item07 {
    background: url("../images/carousel_kids_mb.jpg") center center / cover no-repeat;
}

.item.item08 {
    background: url("../images/carousel_dougalesson_mb.jpg") left 10% center / cover no-repeat;
}

/* カルーセルのフェード処理 */
.carousel-fade .carousel-inner .item {
    opacity: 0;
    -webkit-transition: opacity 2.0s ease-in-out;
    -o-transition: opacity 2.0s ease-in-out;
    transition: opacity 2.0s ease-in-out;
}

.carousel-fade .carousel-inner .active {
    opacity: 1;
}

.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    left: 0;
    opacity: 0;
    z-index: 1;
}

.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
    opacity: 1;
}

.carousel-fade .carousel-control {
    z-index: 2;
}

/* インジケーター */
.carousel-indicators {
    position: absolute;
    bottom: 10px;
    z-index: 100;
}

.carousel-indicators li {
    width: 20px;
    height: 20px;
    margin: 0 4px;
    border: 2px solid rgba(255, 255, 255, 0.5)
}

.carousel-indicators li.active {
    width: 20px;
    height: 20px;
    margin: 0 5px;
    border: 2px solid rgba(255, 255, 255, 1.0)
}

/* 前へ次への位置調整 */
.carousel-control {
    position: absolute;
    top: 25%;
    background: none !important;
}

.carousel-control img {
    opacity: 0.7;
}

.carousel-control:hover img {
    opacity: 1.0;
}

@media only screen and (min-width:768px) {

    .item.item01 {
        background: url("../images/carousel_pool.jpg") center center / cover no-repeat;
    }

/*
    .item.item02 {
        background: url("../images/carousel_tanki.jpg") center center / cover no-repeat;
    }
*/
    
    .item.item03 {
        background: url("../images/carousel_gym.jpg") center center / cover no-repeat;
    }

    .item.item04 {
        background: url("../images/carousel_studio.jpg") center center / cover no-repeat;
    }

    .item.item05 {
        background: url("../images/carousel_bath.jpg") left 15% bottom / cover no-repeat;
    }

    .item.item06 {
        background: url("../images/carousel_woman.jpg") right 30% center / cover no-repeat;
    }

    .item.item07 {
        background: url("../images/carousel_kids.jpg") center center / cover no-repeat;
    }

    .item.item08 {
        background: url("../images/carousel_dougalesson.jpg") left 25% center / cover no-repeat;
    }

}

@media only screen and (min-width:992px) {

    .item.item06 {
        background: url("../images/carousel_woman.jpg") center center / cover no-repeat;
    }

    .carousel-control {
        top: 50%;
    }

}

@media only screen and (min-width:1921px) {

    .item.item01 {
        background: url("../images/carousel_pool_big.jpg") center center / cover no-repeat;
    }

/*
    .item.item02 {
        background: url("../images/carousel_tanki_big.jpg") center center / cover no-repeat;
    }
*/
    
    .item.item03 {
        background: url("../images/carousel_gym_big.jpg") center center / cover no-repeat;
    }

    .item.item04 {
        background: url("../images/carousel_studio_big.jpg") center center / cover no-repeat;
    }

    .item.item05 {
        background: url("../images/carousel_bath_big.jpg") center center / cover no-repeat;
    }

    .item.item06 {
        background: url("../images/carousel_woman_big.jpg") center center / cover no-repeat;
    }

    .item.item07 {
        background: url("../images/carousel_kids_big.jpg") center center / cover no-repeat;
    }

    .item.item08 {
        background: url("../images/carousel_dougalesson_big.jpg") center center / cover no-repeat;
    }

}


/* ========================================================

　iOS以外は背景画像をフィクス

=========================================================== */

/* Chrome / Firefox / Opera */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: .001dpcm) {

    .item {
        background-attachment: fixed;
    }

}

/* Edge 1 */
@supports (-ms-ime-align: auto) {

    .item {
        background-attachment: fixed;
    }

}

/* Edge 2 */
_:-ms-lang(x)::backdrop,
.item {
    background-attachment: fixed;
}

/* IE11 */
_:-ms-lang(x)::-ms-backdrop,
.item {
    background-attachment: fixed;
}

/* -----------------------------------------------------------

　section

-------------------------------------------------------------- */
section,
footer {
    padding: 5vh 0 10vh;
}

/* -----------------------------------------------------------

　#reason

-------------------------------------------------------------- */
#reason {
    padding: 0;
    background: rgba(0, 0, 0, 1.0);
}

#reason .row > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

#reason h2 {
    margin: 0;
    padding: 25px 0;
    background: url(../images/reason_h2_bg.png) 0 0 repeat;
    text-align: center;
}

#reason h2 img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

#reason h2 img:last-child {
    display: none;
}

.reason-box {
    display: block;
    position: relative;
    margin: 0 auto;
    max-width: 650px;
    line-height: 0;
}

.reason-box figure {
    margin: 0;
}

.reason-box img {
    display: block;
    max-width: 100%;
    height: auto;
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
}

.reason-box .reason-box-caption {
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.reason-box .reason-box-caption .reason-box-caption-content {
    position: absolute;
    top: 50%;
    padding: 0 15px;
    width: 100%;
    color: rgba(255, 255, 255, 1.0);
    font-family: "Times New Roman", "游明朝", YuMincho, "ヒラギノ明朝 Pr6 W6", "Hiragino Mincho Pro", "HGS明朝E", "メイリオ", "ＭＳ Ｐ明朝", "MS PMincho", Meiryo, serif;
    font-weight: bold;
    font-size: 3.0rem;
    line-height: 3.6rem;
    text-align: center;
    text-shadow: 2px 2px 0 rgba(51, 51, 51, 1.0);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.reason-box .layer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    -webkit-transition: 0.35s ease-in-out;
    -o-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
}

.reason-box:hover .layer {
    opacity: 0;
}

.reason-box:focus {
    outline: none;
}

@media only screen and (min-width:768px) {

    #reason h2 img:first-child {
        display: none;
    }

    #reason h2 img:last-child {
        display: block;
    }

}

@media only screen and (min-width:769px) {

    .reason-box:hover .layer {
        background: rgba(205, 85, 0, 0.8);
        opacity: 1.0;
    }

    /*
	.reason-box .reason-box-caption .plus {
		display:none;
		position:absolute;
		top:50%;
		width:100%;
		height:80px;
		transform:translateY(-50%);
		-moz-transform:translateY(-50%);
		-webkit-transform:translateY(-50%);
		-ms-transform:translateY(-50%);
		-o-transform:translateY(-50%);
		text-align:center;
	}
	
	.reason-box:hover .reason-box-caption .plus {
		display:block;
		background:url(../images/reason_plus.png) center center no-repeat;
	}
*/

}

@media only screen and (min-width:992px) {

    #reason h2 img {
        max-width: 900px;
        height: auto;
    }

    .reason-box .reason-box-caption .reason-box-caption-content {
        -webkit-transition: 0.35s ease-in-out;
        -o-transition: 0.35s ease-in-out;
        transition: 0.35s ease-in-out;
    }

    .reason-box:hover .reason-box-caption .reason-box-caption-content {
        font-size: 4.8rem;
        line-height: 6.0rem;
    }

}

@media only screen and (min-width:1024px) {

    .reason-box .reason-box-caption .reason-box-caption-content {
        font-size: 3.6rem;
        line-height: 4.8rem;
    }

    .reason-box:hover .reason-box-caption .reason-box-caption-content {
        font-size: 5.0rem;
        line-height: 6.0rem;
    }

}

@media only screen and (min-width:1200px) {

    .reason-box .reason-box-caption .reason-box-caption-content {
        font-size: 3.2rem;
        line-height: 4.0rem;
    }

    .reason-box:hover .reason-box-caption .reason-box-caption-content {
        font-size: 4.0rem;
        line-height: 5.0rem;
    }

}

@media only screen and (min-width:1400px) {

    .reason-box .reason-box-caption .reason-box-caption-content {
        font-size: 3.8rem;
        line-height: 4.5rem;
    }

    .reason-box:hover .reason-box-caption .reason-box-caption-content {
        font-size: 4.8rem;
        line-height: 6.5rem;
    }

}

/* -----------------------------------------------------------

　#plan

-------------------------------------------------------------- */
#plan {
    background: rgba(238, 238, 238, 1.0);
}

#plan h2 {
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 73, 134, 1.0);
    color: rgba(0, 73, 134, 1.0);
    font-size: 4.8rem;
    font-weight: 700;
    text-align: center;
    text-transform: capitalize;
}

#plan h2 span {
    display: block;
    font-size: 1.8rem;
    font-weight: 400;
}

#plan li a,
#plan li a:visited,
#plan li a:active,
#plan li a:focus {
    display: block;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 1.0);
    border: 3px solid rgba(0, 73, 134, 1.0);
    border-radius: 20px;
}

/*
#plan li a:hover {
	border:3px solid rgba(235, 97, 0, 1.0);
}
*/

#plan li a h3,
#plan li a:visited h3 {
    margin: 0;
    margin-top: -1px;
    padding: 15px 0;
    width: 100.1%;
    background: url(../images/bg_plan_h3.png) center top repeat;
    border-radius: 15px 15px 0 0;
    color: rgba(255, 255, 255, 1.0);
    font-size: 2.4rem;
    font-weight: 500;
    text-align: center;
    -webkit-transition: 0.35s ease-in-out;
    -o-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
}

/*
#plan li a:hover h3 {
	background:url(../images/bg_hover.png) center top repeat;
	color:rgba(255, 241, 0, 1.0);
}
*/

/*
#plan a h3::after {
	margin-left:10px;
	font-family:"FontAwesome";
	content:"\f105";
}
*/

#plan li a figure {
    margin-bottom: 10px;
    overflow: hidden;
}

#plan li a img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    -webkit-transition: 0.35s ease-in-out;
    -o-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
}

#plan li a:hover img {
    opacity: 0.7;
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

#plan li p {
    margin-left: 10px;
    margin-right: 10px;
}

#plan li a p,
#plan li a:visited p {
    margin-bottom: 0;
    padding-left: 10px;
    padding-right: 10px;
    color: rgba(0, 73, 134, 1.0);
    font-weight: 400;
    font-size: 1.6rem;
    text-align: justify;
    text-justify: inter-ideograph;
    -webkit-transition: 0.35s ease-in-out;
    -o-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
}

/*
#plan li a:hover p {
	color:rgba(255, 102, 0, 1.0);
}
*/

#plan li a p:first-child {
    padding-top: 10px;
}

#plan li a p:last-child {
    padding-bottom: 10px;
}

#plan .btn {
    margin-top: 30px;
    padding: 15px 0;
    background: url(../images/bg_plan_h3.png) center top repeat;
    border-radius: 10px;
    color: rgba(255, 255, 255, 1.0);
    font-size: 2.4rem;
    font-weight: 500;
    -webkit-transition: 0.35s ease-in-out;
    -o-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
}

#plan .btn:hover {
    background: url(../images/bg_hover.png) center top repeat;
    color: rgba(255, 241, 0, 1.0);
}

#plan .btn::before {
    margin-right: 10px;
    font-family: "FontAwesome";
    content: "\f107";
}

#plan .btn::after {
    margin-left: 10px;
    font-family: "FontAwesome";
    content: "\f107";
}

@media only screen and (min-width:768px) {

    #plan h2 {
        margin-bottom: 50px;
        font-size: 6.0rem;
    }

    #plan h2 span {
        display: inline;
        font-size: 2.4rem;
    }

    #plan h2 span::before {
        content: "｜";
    }

    #plan li {
        padding-left: 5px;
        padding-right: 5px;
    }

    #plan li a {
        margin-bottom: 20px;
        min-height: 310px;
    }

    #plan .btn {
        margin-top: 50px;
    }

}

@media only screen and (min-width:992px) {

    #plan li {
        padding-left: 10px;
        padding-right: 10px;
    }

    #plan li a {
        min-height: 320px;
    }

}

@media only screen and (min-width:1200px) {

    #plan li {
        padding-left: 15px;
        padding-right: 15px;
    }

}

/* -----------------------------------------------------------

　#enrollment

-------------------------------------------------------------- */
#enrollment {
    background: url(../images/enrollment_bg.jpg) center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.iphone #enrollment,
.ipad #enrollment {
    background-attachment: scroll;
}

#enrollment h2 {
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(235, 97, 0, 1.0);
    color: rgba(235, 97, 0, 1.0);
    font-size: 4.8rem;
    font-weight: 700;
    text-align: center;
    text-transform: capitalize;
}

#enrollment h2 span {
    display: block;
    font-size: 1.8rem;
    font-weight: 400;
}

#enrollment li a {
    display: block;
    position: relative;
    margin-bottom: 20px;
}

#enrollment li:first-child a:hover {
    -webkit-transform: rotate(-25deg);
    -ms-transform: rotate(-25deg);
    transform: rotate(-25deg);
}

#enrollment li:last-child a:hover {
    -webkit-transform: rotate(25deg);
    -ms-transform: rotate(25deg);
    transform: rotate(25deg);
}

#enrollment li:first-child a {
    background: url(../images/enrollment01.png) left top no-repeat;
    background-size: contain;
}

#enrollment li:last-child a {
    background: url(../images/enrollment02.png) left top no-repeat;
    background-size: contain;
}

#enrollment li a h3,
#enrollment li a:visited h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -1.6rem;
    color: rgba(255, 255, 255, 1.0);
    font-size: 3.4rem;
    font-weight: 700;
    text-align: center;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

#enrollment li a:hover h3 {
    color: rgba(255, 241, 0, 1.0);
}

@media only screen and (min-width:768px) {

    #enrollment h2 {
        margin-bottom: 50px;
        font-size: 6.0rem;
    }

    #enrollment h2 span {
        display: inline;
        font-size: 2.4rem;
    }

    #enrollment h2 span::before {
        content: "｜";
    }

    #enrollment li a {
        margin-bottom: 0;
    }

}

/* -----------------------------------------------------------

　#information

-------------------------------------------------------------- */
section#information {
    padding-top: 0;
}

#information > h2 {
    margin-top: 0;
    margin-bottom: 30px;
    padding: 10px;
    background: url(../images/information_h2_bg.png) center top repeat;
    text-align: center;
}

#information li .date {
    margin-bottom: 5px;
    color: rgba(35, 135, 225, 1.0);
    font-size: 2.4rem;
    font-family: Georgia, "Times New Roman", Times, serif;
}

#information li .postTitle {
    margin: 0;
    line-height: 1.8rem;
}

#information li .postTitle a,
#information li .postTitle a:visited {
    color: rgba(0, 0, 0, 1.0);
    font-size: 1.8rem;
    font-weight: 400;
}

#information li .postTitle a:hover {
    color: rgba(255, 102, 0, 1.0);
}

#information li .postTitle::after {
    visibility: hidden;
    font-family: "FontAwesome";
    content: "\f061";
    color: rgba(255, 255, 255, 1.0);
    -webkit-transition: 0.35s ease-in-out;
    -o-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
}

#information li .postTitle:hover::after {
    visibility: visible;
    padding-left: 10px;
    content: "\f061";
    color: rgba(255, 102, 0, 1.0);
}

#information .new {
    margin-left: 10px;
    font-size: 1.4rem;
    font-weight: 500;
    color: rgba(255, 0, 0, 1.0);
}

@media only screen and (min-width:768px) {

    #information > h2 {
        margin-bottom: 50px;
    }

    #information > h2 img {
        margin: 0 auto;
        max-width: 385px;
    }

    #information li .date {
        margin-bottom: 0;
    }

    #information li .postTitle {
        line-height: 2.4rem;
    }

    #information li .postTitle a {
        font-size: 2.0rem;
        line-height: 2.8rem;
    }

    #information .new {
        font-size: 1.8rem;
    }

}

@media only screen and (min-width:992px) {

    #information li .postTitle a {
        font-size: 2.4rem;
        line-height: 3.0rem;
    }

}

/*　campaign
/*-------------------------------------------*/
#information .campaign h2 {
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(234, 104, 162, 1.0);
    color: rgba(234, 104, 162, 1.0);
    font-size: 4.8rem;
    font-weight: 700;
    text-align: center;
    text-transform: capitalize;
}

#information .campaign h2 span {
    display: block;
    margin-top: 10px;
    font-size: 1.8rem;
    font-weight: 400;
}

#information .campaign li {
    clear: both;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dotted rgba(160, 160, 160, 1.0);
    list-style-type: none;
}

#information .campaign li .postThumb {
    float: left;
    width: 80px;
    height: 80px;
    margin: 0 10px 10px 0;
    padding: 1px;
    border: 1px solid rgba(225, 225, 225, 1.0);
}

#information .campaign li .postThumb img {
    width: 100%;
    height: auto;
}

#information .campaign li .cate a,
#information .campaign li .cate a:visited {
    display: inline-block;
    margin-top: 5px;
    margin-bottom: 1px;
    padding: 0 5px 1px;
    border-radius: 4px;
    color: rgba(255, 255, 255, 1.0);
    font-size: 1.4rem;
    opacity: 0.5;
}

#information .campaign li .cate a:hover {
    color: rgba(255, 241, 0, 1.0);
    opacity: 1.0;
}

#information .campaign li .cate a[href*="campaign"] {
    background: rgba(234, 104, 162, 1.0);
}

#information .campaign li .cate a[href*="c_kids"] {
    background: rgba(245, 150, 0, 1.0)
}

#information .campaign li .cate a[href*="c_fitness"] {
    background: rgba(140, 150, 200, 1.0)
}

#information .campaign li .postMeta {
    font-size: 1.4rem;
}

@media only screen and (min-width:768px) {

    #information .campaign h2 {
        margin-bottom: 50px;
        font-size: 6.0rem;
    }

    #information .campaign h2 span {
        display: inline;
        margin-top: 0;
        font-size: 2.4rem;
    }

    #information .campaign h2 span::before {
        content: "｜";
    }

    #information .campaign li {
        min-height: 120px;
    }

    #information .campaign li .postMeta div {
        display: inline-block;
    }

    #information .campaign li .postThumb {
        width: 100px;
        height: 100px;
        margin: 0 20px 20px 0;
    }

    #information .campaign li .cate {
        position: relative;
        top: -3px;
        left: 10px;
    }

    #information .campaign li .cate a,
    #information .campaign li .cate a:visited {
        display: inline-block;
        margin-top: 0;
        margin-bottom: 0;
    }

    #information .campaign li .postTitle {
        clear: none;
        margin-top: 10px;
        margin-left: 120px;
    }

}

/*　news
/*-------------------------------------------*/
#information .news h2 {
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(229, 0, 17, 1.0);
    color: rgba(229, 0, 17, 1.0);
    font-size: 4.8rem;
    font-weight: 700;
    text-align: center;
    text-transform: capitalize;
}

#information .news h2 span {
    display: block;
    font-size: 1.8rem;
    font-weight: 400;
}

/* tab */
#information .news .nav-tabs {
    border-bottom: none;
}

#information .news .nav-tabs > li {
    width: 50%;
}

#information .news .nav-tabs > li > a {
    padding: 10px 0;
    background: rgba(246, 246, 246, 1.0);
    border-radius: 0;
    font-size: 1.6rem;
    font-weight: 500;
    text-align: center;
}

#information .news .nav-tabs > li:nth-child(1) > a {
    border-top: 3px solid rgba(228, 0, 17, 1.0);
    color: rgba(228, 0, 17, 1.0);
}

#information .news .nav-tabs > li:nth-child(2) > a {
    border-top: 3px solid rgba(255, 155, 0, 1.0);
    color: rgba(255, 155, 0, 1.0);
}

#information .news .nav-tabs > li:nth-child(3) > a {
    border-top: 3px solid rgba(0, 73, 134, 1.0);
    color: rgba(0, 73, 134, 1.0);
}

#information .news .nav-tabs > li:nth-child(4) > a {
    border-top: 3px solid rgba(72, 106, 0, 1.0);
    color: rgba(72, 106, 0, 1.0);
}

#information .news .nav-tabs > li:nth-child(5) > a {
    border-top: 3px solid rgba(153, 153, 153, 1.0);
    color: rgba(153, 153, 153, 1.0);
}

#information .news .nav-tabs > li > a:hover {
    background: rgba(255, 255, 255, 1.0);
    color: rgba(112, 112, 112, 1.0);
}

#information .news .nav-tabs > li.active > a,
#information .news .nav-tabs > li.active > a:hover,
#information .news .nav-tabs > li.active > a:focus {
    background: rgba(255, 250, 235, 1.0);
    color: rgba(0, 0, 0, 1.0);
}

#information .news .tab-content {
    clear: both;
    padding-top: 30px;
}

#information .news .tab-content ol > li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dotted rgba(160, 160, 160, 1.0);
}

#information .news .tab-content ol > li h3 {
    margin-bottom: 20px;
}

#information .news .tab-content ol > li .cate a,
#information .news .tab-content ol > li .cate a:visited {
    display: inline-block;
    margin-bottom: 5px;
    padding: 0 5px 1px;
    border-radius: 4px;
    color: rgba(255, 255, 255, 1.0);
    font-size: 1.4rem;
    text-align: center;
    opacity: 0.5;
}

#information .news .tab-content ol > li .cate a:hover {
    color: rgba(255, 241, 0, 1.0);
    opacity: 1.0;
}

#information .news .tab-content ol > li .cate a[href*="pool"] {
    background: rgba(0, 160, 233, 1.0);
}

#information .news .tab-content ol > li .cate a[href*="studio"] {
    background: rgba(172, 106, 0, 1.0);
}

#information .news .tab-content ol > li .cate a[href*="short"] {
    background: rgba(235, 104, 119, 1.0);
}

#information .news .tab-content ol > li .cate a[href*="event"] {
    background: rgba(35, 170, 55, 1.0);
}

#information .news .tab-content ol > li .cate a[href*="operating"] {
    background: rgba(72, 106, 0, 1.0);
}

#information .news .tab-content ol > li .cate a[href*="other"] {
    background: rgba(153, 153, 153, 1.0);
}

#information .news .tab-content ol > li .cate a[href*="covid-19"] {
    background: rgba(230, 0, 18, 1.0);
}

#information .news .tab-content ol > li .cate a[href*="campaign"] {
    background: rgba(234, 104, 162, 1.0);
}

#information .news .tab-content ol > li .cate a[href*="kids"] {
    background: rgba(245, 150, 0, 1.0)
}

#information .news .tab-content ol > li .cate a[href*="fitness"] {
    background: rgba(140, 150, 200, 1.0)
}

/* 一覧へボタン */
#information .news .tab-content .btn {
    margin-top: 30px;
    padding: 15px 0;
    border-radius: 10px;
    color: rgba(255, 255, 255, 1.0);
    font-size: 1.8rem;
    font-weight: 500;
    -webkit-transition: 0.35s ease-in-out;
    -o-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
}

#information .news .tab-content .btn:hover {
    color: rgba(255, 241, 0, 1.0);
}

#information .news .tab-content .btn::after {
    margin-left: 10px;
    font-family: "FontAwesome";
    content: "\f105";
}

#information .news .tab-content #tab1 .btn {
    background: rgba(228, 0, 17, 1.0);
}

#information .news .tab-content #tab2 .btn {
    background: rgba(255, 155, 0, 1.0);
}

#information .news .tab-content #tab3 .btn {
    background: rgba(0, 73, 134, 1.0);
}

#information .news .tab-content #tab4 .btn {
    background: rgba(72, 106, 0, 1.0);
}

#information .news .tab-content #tab5 .btn {
    background: rgba(153, 153, 153, 1.0);
}

#information .news .tab-content .btn:hover {
    color: rgba(255, 241, 0, 1.0);
}

@media only screen and (min-width:576px) {

    #information .news .tab-content ol > li .cate {
        margin-left: 3%;
    }

}

@media only screen and (min-width:768px) {

    #information .news h2 {
        margin-bottom: 50px;
        font-size: 6.0rem;
    }

    #information .news h2 span {
        display: inline;
        font-size: 2.4rem;
    }

    #information .news h2 span::before {
        content: "｜";
    }

    #information .news .nav-tabs {
        border-bottom: 1px solid rgba(204, 204, 204, 1.0);
    }

    #information .news .nav-tabs > li {

        margin-bottom: -1px;
        width: 20%;
    }

    #information .news .nav-tabs > li > a {
        border-bottom: 1px solid rgba(204, 204, 204, 1.0);
        border-radius: 4px 4px 0 0;
    }

    #information .news .nav-tabs > li.active > a,
    #information .news .nav-tabs > li.active > a:hover,
    #information .news .nav-tabs > li.active > a:focus {
        background: none;
        border-bottom: 1px solid rgba(255, 255, 255, 1.0);
    }

    #information .news .tab-content ol > li h3 {
        margin-top: 10px;
    }

}

@media only screen and (min-width:992px) {

    #information .news .nav-tabs li {
        width: 18%;
    }

    #information .news .nav-tabs li:first-child {
        margin-left: 5%;
    }

    #information .news .nav-tabs li:last-child {
        margin-right: 0;
    }

}

@media only screen and (min-width:1200px) {

    #information .news .nav-tabs > li > a {
        font-size: 2.0rem;
    }

}

/* -----------------------------------------------------------

　#banner

-------------------------------------------------------------- */
section#banner {
    padding: 0 0 5vh;
}

#banner img {
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* -----------------------------------------------------------

　#instagram

-------------------------------------------------------------- */
#instagram {
    background: rgba(255, 245, 255, 1.0);
}

#instagram h2 {
    text-align: center;
}

#instagram h2 img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}


#instagram .instaFeed {
    margin: 10px 0 30px;
}

#instagram .more {
    background: rgba(255, 255, 255, 1.0);
    border: 1px solid rgba(204, 204, 204, 1.0);
    border-radius: 10px;
    -webkit-transition: 0.35s ease-in-out;
    -o-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
}

#instagram .more:hover {
    border: 1px solid rgba(235, 104, 119, 1.0);
}

@media only screen and (min-width:768px) {

    #instagram h2 img {
        max-width: 370px;
    }

}

@media only screen and (min-width:992px) {

    #instagram .instaFeed {
        margin: 30px 0 50px;
    }

}




/*--------------------　▲　end of file　▲　*/