@charset "UTF-8";

/*--------------------------------------------------------------*/
/* CSS and Graphics are released under Creative Commons Licence */
/* https://www.webplus.jp/                                       */
/* Copyright (C) Kiyonobu Horita @ WEBPLUS Inc.                 */
/*--------------------------------------------------------------*/



/* break point ------------------------------------------------
	iPhone5 320x568
	iPhone6 375x667
	iPhone7 375x667
	iPhone6-8Plus 414x736
-------------------------------------------------------------- */

/* Noto Sans JP ------------------------------------------------
	Thin 100
	Light 300
	Regular 400
	Medium 500
	Bold 700
	Black 900
-------------------------------------------------------------- */

/* -----------------------------------------------------------

　grobal setting

-------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    width: 100%;
    height: 100%;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

.clear {
    clear: both;
}

.clearfix {
    display: inline-table;
    min-height: 1%;
}

.clearfix::after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

/* -----------------------------------------------------------

　body

-------------------------------------------------------------- */
body {
    margin: 0 auto;
    width: 100%;
    height: 100%;
    color: rgba(51, 51, 51, 1.0);
    font: normal 300 1.0rem/2.0rem "Noto Sans CJK JP", "Noto Sans JP", "メイリオ", "Meiryo", "Meiryo UI", "Arial", "Osaka", sans-serif;
    webkit-tap-highlight-color: rgba(33, 37, 41, 1.0);
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
    text-size-adjust: none;
}

/* -----------------------------------------------------------

　default link color

-------------------------------------------------------------- */
a,
a:visited {
    color: rgba(0, 102, 204, 1.0);
    -webkit-transition: 0.35s ease-in-out;
    -o-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
    text-decoration: none;
    outline: none;
}

a:hover {
    color: rgba(255, 102, 0, 1.0);
    text-decoration: none;
    outline: none;
}

a:active,
a.current {
    color: rgba(255, 51, 0, 1.0);
    text-decoration: none;
    outline: none;
}

a:focus {
    text-decoration: none;
    outline: none;
}

/* -----------------------------------------------------------

　h2～h6, p, li, dd

-------------------------------------------------------------- */
h2,
h3,
h4,
h5,
h6 {
    clear: both;
}

p {
    font-size: 1.8rem;
}

li {
    font-size: 1.8rem;
    list-style-type: none;
}

dd {
    font-size: 1.8rem;
}

.text-faded {
    color: rgba(255, 255, 255, 0.7);
}

/* -----------------------------------------------------------

　navbar

-------------------------------------------------------------- */
#mainNav {
    background: rgba(255, 255, 255, 1.0);
    border-bottom: 1px solid rgba(33, 37, 41, 0.1);
    -webkit-transition: 0.35s ease-in-out;
    -o-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
    z-index: 1000;
}

#mainNav .navbar-header {
    min-height: 95px;
}

/* logo */
#mainNav h1 {
    margin: 0;
    padding: 0;
}

#mainNav .navbar-brand img {
    max-width: 180px;
    height: auto;
}

#mainNav .navbar-brand img:last-child {
    display: none;
}

#mainNav .navbar-brand img:hover {
    opacity: 1.0;
}

/* hamburger */
#mainNav .navbar-header .navbar-toggle {
    margin-top: 15px;
    color: rgba(34, 34, 34, 1.0);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* menu list */
#mainNav .navbar-nav > li {
    line-height: 3.0rem;
}

#mainNav .navbar-nav > li a,
#mainNav .navbar-nav > li a:focus {
    color: rgba(0, 0, 0, 1.0);
    font-weight: 400;
}

#mainNav .nav > li.active > a,
#mainNav .nav > li.active > a:focus {
    color: rgba(240, 95, 64, 1.0);
    background: transparent;
}

#mainNav .nav > li.active > a:hover,
#mainNav .nav > li.active > a:focus:hover {
    background: transparent;
}

/* menu icon */
#mainNav .navbar-nav > li a div {
    display: inline-block;
}

#mainNav .navbar-nav > li a img {
    position: relative;
    top: -3px;
    margin-right: 5px;
    width: 3.0rem;
    height: 3.0rem;
}

/* dropdown menu */
#mainNav .dropdown .dropdown-menu {
    border-bottom: 1px solid rgba(33, 37, 41, 0.1);
}

#mainNav .dropdown .dropdown-menu li a {
    font-weight: 300;
    line-height: 3.6rem;
}

@media only screen and (min-width:768px) {

    #mainNav {
        background: url(../images/bg_nav.png) center top repeat;
    }

    /* scroll hight-light */
    #mainNav.affix {
        background: url(../images/bg_nav_scroll.png) center top repeat;
    }

    /* logo */
    #mainNav .navbar-brand img {
        max-width: 150px;
    }

    #mainNav .navbar-brand img:first-child {
        display: none;
    }

    #mainNav .navbar-brand img:last-child {
        display: block;
    }

    #mainNav .navbar-collapse {
        margin: 0 auto;
    }

    /* menu list */
    #mainNav .navbar-nav > li {
        line-height: inherit;
    }

    #mainNav .navbar-nav > li a,
    #mainNav .navbar-nav > li a:focus {
        display: block;
        padding: 10px 10px;
        height: 85px;
        background: none;
        color: rgba(255, 255, 255, 1.0);
        font-size: 1.2rem;
        text-align: center;
    }

    #mainNav .navbar-nav > li a:hover,
    #mainNav .navbar-nav > li a:focus:hover {
        color: rgba(255, 241, 0, 1.0);
    }

    /* menu icon */
    #mainNav .navbar-nav > li a div {
        display: block;
        margin: 0 auto;
        padding-top: 4px;
        width: 45px;
        height: 45px;
        background: rgba(255, 250, 235, 1.0);
        border-radius: 50%;
        vertical-align: middle;
        -webkit-transition: 0.35s ease-in-out;
        -o-transition: 0.35s ease-in-out;
        transition: 0.35s ease-in-out;
    }

    #mainNav .navbar-nav > li a:hover div {
        -webkit-box-shadow: 0 0 5px 3px rgba(255, 255, 255, 1.0);
        box-shadow: 0 0 5px 3px rgba(255, 255, 255, 1.0);
    }

    #mainNav .navbar-nav > li a img {
        margin: 0 auto;
        width: 40px;
        height: 40px;
    }

    /* dropdown menu */
    #mainNav .dropdown .dropdown-menu {
        right: inherit;
        left: 0;
        margin-top: 11px;
        padding-left: 15px;
        padding-right: 15px;
        min-width: 220px;
        width: 100%;
        background: url(../images/bg_pulldown.png) center top repeat;
        border: none;
        border-radius: 0 0 6px 6px;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    /* scroll hight-light */
    #mainNav.affix .dropdown .dropdown-menu {
        background: url(../images/bg_nav_scroll.png) center top repeat;
    }

    #mainNav .dropdown .dropdown-menu li {
        line-height: inherit;
    }

    #mainNav .dropdown .dropdown-menu li a {
        padding: 0;
        height: inherit;
        text-align: left;
    }

    /*アーティスティックスイミング調整*/
    #mainNav .navbar-nav li:nth-child(5) .dropdown-menu li:nth-child(2) a span {
        display: block;
        margin-bottom: -1.8rem;
    }

    /* ドロップダウンをマウスオーバーで開くようにする場合 */
    /*.dropdown:hover > .dropdown-menu{
		display: block;
	}*/

    /* caret */
    .dropdown-toggle .caret {
        display: block;
        position: relative;
        top: 5px;
        left: 50%;
        margin-left: -4px;
        width: 0;
        height: 0;
        border-top: 4px solid;
        border-right: 4px solid transparent;
        border-left: 4px solid transparent;
    }

    .dropdown-toggle:hover .caret {
        transition: opacity 1.0s ease, -webkit-transform 1.0s ease;
        -webkit-transition: opacity 1.0s ease, -webkit-transform 1.0s ease;
        -o-transition: transform 1.0s ease, opacity 1.0s ease;
        transition: transform 1.0s ease, opacity 1.0s ease;
        transition: transform 1.0s ease, opacity 1.0s ease, -webkit-transform 1.0s ease;
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }

}

@media only screen and (min-width:992px) {

    /* logo */
    #mainNav .navbar-brand img {
        max-width: 180px;
    }

    #mainNav .navbar-nav > li a,
    #mainNav .navbar-nav > li a:focus {
        padding: 10px 15px;
        font-size: 1.4rem;
        line-height: 1.4rem;
    }

    #mainNav .navbar-nav > li a div {
        margin-bottom: 5px;
        padding-top: 6px;
        width: 48px;
        height: 48px;
    }

    /* dropdown menu */
    #mainNav .dropdown .dropdown-menu {
        padding: 0;
    }

    #mainNav .dropdown .dropdown-menu li a {
        padding: 14px 20px;
        line-height: 1.8rem;
    }

    #mainNav .navbar-nav li:nth-child(5) .dropdown-menu li:nth-child(2) a span {
        margin-bottom: inherit;
    }

    #mainNav .dropdown .dropdown-menu li:last-child a {
        border-radius: 0 0 6px 6px;
    }

    #mainNav .dropdown .dropdown-menu li a:hover {
        background: rgba(255, 244, 92, 1.0);
        color: rgba(0, 0, 0, 1.0);
        font-weight: 500;
    }

    #mainNav .dropdown .dropdown-menu li a::after {
        margin-left: 10px;
        font-family: "FontAwesome";
        font-weight: 700;
        content: "\f105";
        color: rgba(229, 0, 17, 1.0);
        -webkit-transition: 0.35s ease-in-out;
        -o-transition: 0.35s ease-in-out;
        transition: 0.35s ease-in-out;
        visibility: hidden;
    }

    #mainNav .dropdown .dropdown-menu li a:hover::after {
        visibility: visible;
    }

    /* caret */
    .dropdown-toggle .caret {
        margin-left: -6px;
        border-top: 6px solid;
        border-right: 6px solid transparent;
        border-left: 6px solid transparent;
    }

}

@media only screen and (min-width:1200px) {

    /* logo */
    #mainNav .navbar-brand {
        margin-top: -7px;
    }

    #mainNav .navbar-brand img {
        max-width: 100%;
    }

    #mainNav .navbar-nav > li a,
    #mainNav .navbar-nav > li a:focus {
        padding: 10px 20px;
        font-size: 1.5rem;
    }

}

/* -----------------------------------------------------------

　#footer

-------------------------------------------------------------- */
#footer {
    padding: 5vh 0 0;
    background: rgba(245, 245, 245, 1.0);
}

#footer .company div {
    margin-bottom: 20px;
}

#footer .company p {
    font-weight: 400;
}

#footer .company p a,
#footer .company p a:visited {
    color: rgba(0, 0, 0, 1.0);
}

#footer .company dl {
    margin-top: 20px;
}

#footer dl {
    margin: 0;
}

#footer dt {
    clear: both;
    padding: 12px 5px;
    border-bottom: 1px solid rgba(33, 37, 41, 0.1);
    font-size: 1.4rem;
    font-weight: 500;
    cursor: pointer;
}

#footer dt::after {
    float: right;
    font-size: 1.8rem;
    font-family: "FontAwesome";
    content: "\f107";
}

#footer dt.open {
    background: rgba(255, 255, 255, 1.0);
    border-bottom: none;
    color: rgba(255, 102, 0, 1.0);
}

#footer dt.open::after {
    color: rgba(255, 102, 0, 1.0);
    content: "\f106";
}

#footer dd {
    display: none;
    padding: 0 0 10px;
    background: rgba(255, 255, 255, 1.0);
}

#footer dd li {
    margin: 0 20px 10px 20px
}

#footer dd li a {
    display: inline-block;
    font-size: 1.35rem;
}

#footer li a::before {
    margin-right: 5px;
    font-family: "FontAwesome";
    content: "\f105";
}

#footer li a,
#footer li a:visited {
    color: rgba(0, 0, 0, 1.0);
}

#footer li a:hover {
    color: rgba(255, 102, 0, 1.0);
}

@media only screen and (min-width:992px) {

    #footer .company dl {
        margin-top: 30px;
    }

    #footer dt {
        margin-bottom: 5px;
        padding: inherit;
        border-bottom: none;
        font-size: 1.6rem;
        cursor: inherit;
        pointer-events: none;
    }

    #footer dt::before {
        margin-right: 5px;
        font-family: "FontAwesome";
        content: "\f196";
    }

    #footer dt::after {
        content: none;
    }

    #footer dd {
        display: block;
        margin-bottom: 20px;
        background: inherit;
    }

    #footer dd li {
        margin: 0 0 0 10px
    }

}

/* -----------------------------------------------------------

　#copyright

-------------------------------------------------------------- */
#copyright {
    padding: 20px 0 60px;
    background: rgba(49, 49, 49, 1.0);
    text-align: center;
}

#copyright li {
    display: inline-block;
    color: rgba(255, 255, 255, 1.0);
    font-size: 1.4rem;
}

#copyright li::after {
    content: "｜";
}

#copyright li:last-child::after {
    content: none;
}

#copyright li a,
#copyright li a:visited {
    color: rgba(255, 255, 255, 1.0);
}

#copyright li a:hover {
    color: rgba(255, 241, 0, 1.0);
}

#copyright p {
    margin: 0;
    color: rgba(255, 255, 255, 1.0);
    font-size: 1.2rem;
    font-family: Arial, Helvetica, sans-serif;
	line-height: 200%;
    letter-spacing: 0.2rem;
}

@media only screen and (min-width:768px) {

    #copyright {
        padding: 20px 0;
    }

}

/* -----------------------------------------------------------

　#sideFix

-------------------------------------------------------------- */
#sideFix {
    display: none;
}

@media only screen and (min-width:768px) {

    #sideFix {
        display: block;
        position: fixed;
        top: 15%;
        left: 0;
        z-index: 100;
    }

    #sideFix ul {
        position: relative;
    }

    #sideFix li {
        position: absolute;
        -webkit-transition: 0.35s ease-in-out;
        -o-transition: 0.35s ease-in-out;
        transition: 0.35s ease-in-out;
    }

    #sideFix li:nth-of-type(1) {
        top: 0;
        left: -250px;
    }

    #sideFix li:nth-of-type(1):hover {
        left: 0;
    }

    #sideFix li:nth-of-type(2) {
        top: 240px;
        left: 0;
    }

    #sideFix li:nth-of-type(3) {
        top: 360px;
        left: 0;
    }

    #sideFix li a img {
        opacity: 0.7;
    }

    #sideFix li a:hover img {
        opacity: 1.0;
    }

}

/* -----------------------------------------------------------

　#footFix

-------------------------------------------------------------- */
#footFix {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    background: rgba(0, 73, 134, 0.7);
    padding: 5px 0;
    z-index: 100;
}

#footFix ul {
    margin: 0 auto;
    padding: 0 1%;
    text-align: center;
}

#footFix li {
    display: inline-block;
    margin-right: 14px;
    color: rgba(255, 255, 255, 1.0);
}

#footFix li:first-child a {
    padding: 5px;
    background: rgba(229, 0, 17, 1.0);
    border-radius: 6px;
    font-size: 1.4rem;
    font-weight: 500;
}

#footFix li:last-child {
    margin-right: 0;
}

#footFix li a,
#footFix li a:visited {
    display: block;
    color: rgba(255, 255, 255, 1.0);
    text-align: center;
}

@media only screen and (min-width:640px) {

    #footFix li {
        margin-right: 50px;
        font-size: 2.4rem;
    }

    #footFix li:first-child a {
        padding: 10px 15px;
        font-size: 2.4rem;
    }

}

@media only screen and (min-width:768px) {

    #footFix {
        display: none;
    }

}

/* -----------------------------------------------------------

　#pageTop

-------------------------------------------------------------- */
#pageTop a {
    display: none;
}

@media only screen and (min-width:768px) {

    #pageTop {
        clear: both;
        position: fixed;
        bottom: 30%;
        right: 1.2%;
        width: 50px;
        height: 50px;
        z-index: 100;
    }

    #pageTop a {
        display: block;
    }

    #pageTop a img {
        width: 100%;
        height: auto;
        border-radius: 50%;
        opacity: 0.7;
    }

    #pageTop a img:hover {
        border-radius: 6px;
        opacity: 1.0;
    }

}

@media only screen and (min-width:992px) {

    #pageTop {
        width: 80px;
        height: 80px;
    }

}

/* -----------------------------------------------------------

　other

-------------------------------------------------------------- */
img {
    -ms-interpolation-mode: bicubic;
}

/*　image mouse over
/*-------------------------------------------*/
a img {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: 0.35s ease-in-out;
    -o-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
}

a img:hover {
    opacity: 0.7;
}

/*　other
/*-------------------------------------------*/
.no-padding {
    padding: 0;
}

.no-gutter > [class*='col-'] {
    padding-right: 0;
    padding-left: 0;
}

.btn-default {
    -webkit-transition: 0.35s ease-in-out;
    -o-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
}

.btn-default:hover,
.btn-default:focus,
.btn-default.focus,
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
    border-color: rgba(242, 242, 242, 1.0);
    border-color: rgba(237, 237, 237, 1.0);
    color: rgba(34, 34, 34, 1.0);
}

.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
    background: none;
}

.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
    background: rgba(255, 255, 255, 1.0);
    border-color: rgba(255, 255, 255, 1.0);
}

.btn-default .badge {
    background: rgba(34, 34, 34, 1.0);
    color: rgba(34, 34, 34, 1.0);
}

.btn {
    border-radius: 300px;
}





/*--------------------　▲　end of file　▲　*/