@charset "utf-8";
/*--------------------------------------------------------------*/
/* CSS and Graphics are released under Creative Commons Licence */
/* https://www.webplus.jp/                                       */
/* Copyright (C) Kiyonobu Horita @ WEBPLUS Inc.                 */
/*--------------------------------------------------------------*/




.postThumbnail,
.postThumbnail2 {
    position: relative;
    overflow: hidden;
}

.postThumbnail::before,
.postThumbnail::after {
    position: absolute;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 1.0);
    -webkit-animation: 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation: 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    content: '';
    pointer-events: none;
    z-index: 1;
}

.postThumbnail::before {
    left: 0;
    right: 50%;
    -webkit-animation-name: img-wrap-before;
    animation-name: img-wrap-before;
}

.postThumbnail::after {
    left: 50%;
    right: 0;
    -webkit-animation-name: img-wrap-after;
    animation-name: img-wrap-after;
}

@-webkit-keyframes img-wrap-before {

    100% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }

}

@keyframes img-wrap-before {

    100% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }

}

@-webkit-keyframes img-wrap-after {

    100% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

}

@keyframes img-wrap-after {

    100% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

}

.cover1,
.cover2,
.cover3 {
    position: absolute;
    left: 0;
    right: 0;
    height: 33.4%;
    background: rgba(255, 255, 255, 1.0);
    -webkit-animation: cover 2s cubic-bezier(.4, 0, .2, 1) forwards;
    animation: cover 2s cubic-bezier(.4, 0, .2, 1) forwards;
    pointer-events: none;
    z-index: 1;
}

.cover1 {
    top: 0;
}

.cover2 {
    top: 33.333333%;
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
}

.cover3 {
    top: 66.666666%;
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
}

@-webkit-keyframes cover {

    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

}

@keyframes cover {

    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

}

.postThumbnail img,
.postThumbnail2 img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

/* -----------------------------------------------------------

　section

-------------------------------------------------------------- */
#postContent h3,
#postContent h4,
#postContent h5,
#postContent h6 {
    margin: 0;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-bottom: 5px;

}

#postContent h3 {
    border-bottom: 3px double rgba(0, 0, 0, 0.5);
    font-size: 1.4rem;
}

#postContent h3:first-child {
    margin-top: 0;
}

#postContent.campaign h3 {
    border-bottom: 3px double rgba(248, 181, 0, 1.0);
    color: rgba(248, 181, 0, 1.0);
    font-weight: 500;
}

#postContent.campaign h3::before {
    padding-right: 5px;
    font-family: "Font Awesome 5 Free";
    font-weight: 500;
    content: "\f02e";
}

#postContent h4,
#postContent h5,
#postContent h6 {
    font-size: 1.2rem;
}

#postContent h4 {
    border-bottom: 1px solid rgba(0, 67, 124, 1.0);
    color: rgba(0, 67, 124, 1.0);
}

#postContent h5 {
    border-bottom: 1px solid rgba(255, 105, 0, 1.0);
    color: rgba(255, 105, 0, 1.0);
}

#postContent h6 {
    border-bottom: 1px solid rgba(0, 121, 195, 1.0);
    color: rgba(0, 121, 195, 1.0);
}

/* p, ul, ol, li, dl, dt, dd */
#postContent p {
    margin-bottom: 0.5rem;
}

#postContent ul {
    margin: 1.0rem 0 1.0rem 1.7rem;
    list-style: disc;
}

#postContent ol {
    margin: 1.0rem 0 1.0rem 1.7rem;
    list-style: decimal;
}

#postContent li {
    margin-bottom: 0.5rem;
}

#postContent dl {
    margin: 1.0rem 0;
}

#postContent dt {}

#postContent dd {
    padding-left: 1.125rem;
}

/* .note Color */
.note.yel {
    background: rgba(254, 209, 54, 0.1);
    border: 5px dotted rgba(254, 209, 54, 1.0);
}

.note.pnk {
    background: rgba(241, 158, 194, 0.1);
    border: 5px dotted rgba(241, 158, 194, 1.0);
}

.note.blu {
    background: rgba(0, 121, 195, 0.1);
    border: 5px dotted rgba(0, 121, 195, 1.0);
}

.note.aqa {
    background: rgba(0, 175, 235, 0.1);
    border: 5px dotted rgba(0, 175, 235, 1.0);
}

/*　image
/*-------------------------------------------*/
#postContent img[class*="wp-image"] {
    width: 100%;
    max-width: 100%;
    height: auto;
}

/*　table
/*-------------------------------------------*/
#postContent table {
    width: 100%;
    margin: 10px 0 20px;
    border: 3px solid rgba(204, 204, 204, 1.0);
    line-height: 1.8rem;
}

#postContent th {
    padding: 5px 10px;
    background: rgba(0, 175, 235, 0.1);
    border: 1px solid rgba(204, 204, 204, 1.0);
    color: rgba(0, 121, 195, 1.0);

    vertical-align: top;
    white-space: nowrap;
}

/*
#postContent tr:first-child th {
	background:rgba(255, 235, 175, 0.1);
}

#postContent tr:first-child th:first-child {
	background:none;
}
*/

#postContent td {
    padding: 5px 10px;
    border: 1px solid rgba(204, 204, 204, 1.0);
    text-align: left;
    vertical-align: top;
    white-space: nowrap;
}

#postContent th.mdl,
#postContent td.mdl {
    vertical-align: middle;
}

/*　prev, next
/*-------------------------------------------*/
#postContent .navigation {
    display: inline-block;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 20px;
    padding: 8px 10%;
    background: rgba(0, 175, 235, 0.1);
}

#postContent .navigation a {
    color: rgba(51, 51, 51, 1.0);
    font-size: 0.9rem;
}

#postContent .navigation a:hover {
    color: rgba(255, 105, 0, 1.0);
}

#postContent .prev {
    float: left;
}

#postContent .prev a::before {
    padding-right: 5px;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    content: "\f060";
}

#postContent .next {
    float: right;
}

#postContent .next a::after {
    padding-left: 5px;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    content: "\f061";
}

@media only screen and (min-width:768px) {

    /*　image
	/*-------------------------------------------*/
    #postContent img[class*="wp-image"] {
        width: inherit;
    }

    body.mceContentBody .alignnone {
        margin: 1.125rem auto;
    }

    #postContent img.alignleft {
        float: left;
        margin: 1.125rem 1.125rem 1.125rem 0;
    }

    #postContent img.alignright {
        float: right;
        margin: 1.125rem 0 1.125rem 1.125rem;
    }

    #postContent img.aligncenter {
        display: block;
        margin: 1.125rem auto;
    }

    /*　prev, next
	/*-------------------------------------------*/
    #postContent .navigation {
        margin-top: 30px;
        margin-bottom: 0;
    }

}

@media only screen and (min-width:992px) {

    #postContent th {
        white-space: normal;
    }

    #postContent td {
        white-space: normal;
    }

}

/* -----------------------------------------------------------

　MYSジュニア水泳記録会

-------------------------------------------------------------- */
#postContent.kirokukai h3 {
    padding: 8px 10px;
    background: rgba(254, 209, 54, 1.0);
    border: none;
    border-radius: 4px;
}

#postContent.kirokukai h3::before {
    padding-right: 5px;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    content: "\f5c4";
}


#postContent.kirokukai .text-right {
    margin-top: -40px;
}

#postContent.kirokukai th {
    background: rgba(254, 209, 54, 0.1);
}

#postContent.kirokukai figure {
    margin: 50px 0;
}

#postContent.kirokukai figure:last-child {
    margin-bottom: 0;
}

#postContent.kirokukai #crsl {
    margin-bottom: 50px;
}

#postContent.kirokukai .carousel-control-prev:hover,
#postContent.kirokukai .carousel-control-prev:focus,
#postContent.kirokukai .carousel-control-next:hover,
#postContent.kirokukai .carousel-control-next:focus {
    color: rgba(255, 0, 0, 1.0);
    opacity: 0.7;
}

#postContent.kirokukai .carousel-control-prev {
    left: -5%;
}

#postContent.kirokukai .carousel-control-next {
    right: -5%;
}

#postContent.kirokukai .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23f00' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e");
}

#postContent.kirokukai .carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23f00' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e");
}

@media only screen and (min-width:768px) {

    #postContent.kirokukai h3 {
        padding: 15px;
    }

}

/* -----------------------------------------------------------

　春の短期水泳教室

-------------------------------------------------------------- */
#postContent.harutan h3 {
    padding: 8px 10px;
    background: rgba(241, 158, 194, 1.0);
    border: none;
    border-radius: 4px;
    color: rgba(255, 255, 255, 1.0);
}

#postContent.harutan h3::before {
    padding-right: 5px;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    content: "\f5c4";
}

#postContent.harutan th {
    background: rgba(241, 158, 194, 0.1);
    color: rgba(241, 158, 194, 1.0);
}

#postContent.harutan td {
    text-align: center;
    vertical-align: middle;
}

#postContent.harutan figure {
    margin: 50px 0;
}

@media only screen and (min-width:768px) {

    #postContent.harutan h3 {
        padding: 15px;
    }

}

/* -----------------------------------------------------------

　夏の短期水泳教室

-------------------------------------------------------------- */
#postContent.natsutan h3 {
    padding: 8px 10px;
    background: rgba(0, 175, 235, 1.0);
    border: none;
    border-radius: 4px;
    color: rgba(255, 255, 255, 1.0);
}

#postContent.natsutan h3::before {
    padding-right: 5px;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    content: "\f5c4";
}

#postContent.natsutan th {
    background: rgba(0, 175, 235, 0.1);
    color: rgba(0, 175, 235, 1.0);
}

#postContent.natsutan figure {
    margin: 50px 0;
}

@media only screen and (min-width:768px) {

    #postContent.natsutan h3 {
        padding: 15px;
    }

}

/* -----------------------------------------------------------

　親子で体験水泳教室

-------------------------------------------------------------- */
#postContent.oyako h3 {
    padding: 8px 10px;
    background: rgba(248, 181, 0, 1.0);
    border: none;
    border-radius: 4px;
    color: rgba(255, 255, 255, 1.0);
}

#postContent.oyako h3::before {
    padding-right: 5px;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    content: "\f1ae";
}

#postContent.oyako th {
    background: rgba(248, 181, 0, 0.1);
    color: rgba(248, 181, 0, 1.0);
}

#postContent.oyako figure {
    margin: 50px 0;
}

@media only screen and (min-width:768px) {

    #postContent.oyako h3 {
        padding: 15px;
    }

}

/* -----------------------------------------------------------

　マン・ツー・マンレッスン

-------------------------------------------------------------- */
#postContent.mantoman h3 {
    padding: 8px 10px;
    background: rgba(0, 121, 195, 1.0);
    border: none;
    border-radius: 4px;
    color: rgba(255, 255, 255, 1.0);
}

#postContent.mantoman h3::before {
    padding-right: 5px;
    font-family: "Font Awesome 5 Free";
    font-weight: 500;
    content: "\f581";
}

#postContent.mantoman th {
    background: rgba(0, 121, 195, 0.1);
    color: rgba(0, 121, 195, 1.0);
}

#postContent.mantoman td {
    text-align: center;
}

#postContent.mantoman figure {
    margin: 50px 0;
}

@media only screen and (min-width:768px) {

    #postContent.mantoman h3 {
        padding: 15px;
    }

}

/* -----------------------------------------------------------

　クリスマス会

-------------------------------------------------------------- */
#postContent.xmas h2 {
    color: rgba(235, 100, 0, 1.0);
    font-size: 1.8rem;
    line-height: 2.4rem;
}

#postContent.xmas h2 span {
    display: block;
    margin-top: 1.0rem;
    color: rgba(230, 0, 20, 1.0);
    font-size: 1.4rem;
    line-height: 1.8rem;
}

#postContent.xmas h3 {
    padding: 8px 10px;
    background: rgba(10, 125, 35, 1.0);
    border: none;
    border-radius: 4px;
    color: rgba(255, 255, 255, 1.0);
}

#postContent.xmas h3::before {
    padding-right: 5px;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    content: "\f7aa";
}

#postContent.xmas figure {
    margin: 50px 0;
}

@media only screen and (min-width:768px) {

    #postContent.xmas h3 {
        padding: 15px;
    }

}

/* -----------------------------------------------------------

　新入会キャンペーン

-------------------------------------------------------------- */
#postContent.campaign dl.dl01 dt {
    font-size: 1.2rem;
}

#postContent.campaign dl.dl01 dd {
    margin-bottom: 20px;
}

@media only screen and (min-width:992px) {

    #postContent.campaign .note figure.topm img {
        margin-top: -80px;
        width: 80%;
        height: auto;
    }

    #postContent.campaign dl.dl01 dd {
        margin-bottom: 40px;
    }

}

@media only screen and (min-width:1200px) {

    #postContent.campaign .note figure.topm img {
        margin-top: -140px;
    }

}

/* -----------------------------------------------------------

　archive, taxonomy

-------------------------------------------------------------- */
#loop li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
}

#loop li div {
    width: 25%;
    height: auto;
    margin: 0 5px 5px 0;
}

#loop li a img {
    width: 100%;
    height: auto;
    padding: 2px;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

#loop li a:hover img {
    border: 1px solid rgba(255, 105, 0, 1.0);
}

#loop li h3 {
    width: 75%;
    font-size: 1.125rem;

}

#loop li a h3::after {
    visibility: hidden;
    position: relative;
    top: -1px;
    margin-left: 5px;
    color: rgba(255, 255, 255, 1.0);
    font-size: 1.15rem;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    content: "\f061";
    -webkit-transition: 0.35s ease-in-out;
    -o-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
}

#loop li a:hover h3::after {
    visibility: visible;
    color: rgba(255, 105, 0, 1.0);
}

#loop li p {
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 6px;
    font-size: 0.9rem;
    line-height: 1.2rem;
}

#loop li > a {
    display: block;
}

#loop li h3 .new {
    display: inline;
    margin-left: 10px;
    color: rgba(255, 0, 0, 1.0);
    font-size: 0.8rem;
    font-weight: 500;
}

@media only screen and (min-width:576px) {

    #loop li div {
        width: 15%;
    }

    #loop li h3 {
        width: 85%;
    }

    #loop li .blk {
        margin-left: 20px;
    }

}

@media only screen and (min-width:768px) {

    #loop li div {
        width: 13%;
        margin: 0 8px 8px 0;
    }

    #loop li h3 {
        width: 87%;
        font-size: 1.2rem;
    }

}

@media only screen and (min-width:992px) {

    #loop li div {
        width: 12%;
        margin: 0 10px 8px 0;
    }

    #loop li h3 {
        width: 88%;
        font-size: 1.4rem;
    }

}

@media only screen and (min-width:1200px) {

    #loop li div {
        width: 10%;
    }

    #loop li h3 {
        width: 90%;
    }

}

/* -----------------------------------------------------------

　#sidebar

-------------------------------------------------------------- */
#sidebar h3 {
    padding: 8px 10px;
    background: rgba(0, 121, 195, 1.0);
    color: rgba(255, 255, 255, 1.0);
    font-size: 1.2rem;

    text-align: center;
}

#sidebar .widget li {
    border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
}

#sidebar .widget a {
    display: block;
    padding: 10px 0;
    color: rgba(51, 51, 51, 1.0);
    font-size: 1.0rem;
    line-height: 1.2rem;
}

#sidebar .widget a:hover {
    color: rgba(255, 105, 0, 1.0);
}

/* アーカイブ */
#sidebar .widget_archive label {
    display: none;
}

#sidebar .widget_archive select {
    width: 100%;
    height: 40px;
}

@media only screen and (min-width:768px) {

    #sidebar h3 {
        padding: 10px;
    }

}

@media only screen and (min-width:992px) {

    #sidebar .widget a {
        padding: 5px 0;
    }


}

/* -----------------------------------------------------------

　.search

-------------------------------------------------------------- */
#postContent.search h3 {
    padding: 10px;
    border: 1px solid rgba(255, 0, 0, 0.5);
    color: rgba(255, 0, 0, 1.0);

}

#postContent.search .searchBox {
    margin-bottom: 30px;
}

#postContent.search .list {
    margin-bottom: 1.125rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.3);
}

#postContent.search .list a {
    display: block;
}

#postContent.search .list a::before {
    padding-right: 5px;
    font-family: "Font Awesome 5 Free";
    font-weight: 500;
    content: "\f02e";
}

#postContent.search .list a::after {
    visibility: hidden;
    color: rgba(255, 255, 255, 1.0);
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    content: "\f061";
    -webkit-transition: 0.3s ease-out;
    -o-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
}

#postContent.search .list a:hover::after {
    visibility: visible;
    padding-left: 5px;
    content: "\f061";
    color: rgba(234, 85, 6, 1.0);
}

#postContent.search .navigation {
    margin: 30px auto;
    text-align: center;
}

#postContent.search .prev,
#postContent.search .next {
    display: inline-block;
}

#postContent.search .prev a::before {
    padding-right: 5px;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    content: "\f060";
}

#postContent.search .next a::after {
    padding-left: 5px;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    content: "\f061";
}

/* searchform-search.php */
#postContent .searchBox .field {
    padding-left: 30px;
    width: 200px;
    height: 40px;
    border: 1px solid rgba(204, 204, 204, 1.0);
    background: rgba(255, 255, 255, 1.0) url(../images/icon_search.png) 5px 10px no-repeat;
    background-size: 20px 20px;
    vertical-align: bottom;
}

#postContent .searchBox .searchsubmit {
    margin: 0 auto;
    width: 80px;
    height: 40px;
    vertical-align: bottom;
}