@charset "utf-8";

/* reset
*********************************************************/

* {
    margin: 0;
    padding: 0;
}

*:focus {
    outline: none !important;
}

a {
    display: inline-block;
}

div {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5 {
    margin: 0;
}


/* common
*********************************************************/

html {
    font-size: 62.5%;
}

body {
    color: #333;
}

body,
.pure-g [class*=pure-u] {
    font-family: 'Noto Sans JP',"游ゴシック", YuGothic, Verdana, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
}

@media all and (-ms-high-contrast:none) {

    body,
    .pure-g [class*=pure-u] {
        font-family: 'Noto Sans JP',"メイリオ", Meiryo, Verdana, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
    }
}

.mincho {
    font-family: 'Noto Serif JP', 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
    font-feature-settings: "palt";
}

.webfont{
    font-family: 'Montserrat', sans-serif;
}

body {
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing: unset;

    @media only screen and(-webkit-min-device-pixel-ratio: 2),
    (min-resolution: 2dppx) {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

p {
    font-size: 1.6rem;
    line-height: 1.75;
}


a {
    color: #333;
}

a:hover {
    opacity: 0.6;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.container {
    width: 100%;
    max-width: 1230px;
    padding-left: 15px;
    padding-right: 15px;
    margin: auto;
    overflow: hidden;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.columns {
    display: flex;
}

.clear {
    clear: both !important;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.center-block {
    display: block;
    margin: auto;
}

.wp-pagenavi {
    margin-top: 60px;
    font-size: 1.6rem;
    overflow: hidden;
}

.wp-pagenavi .pages{
    display: none;
}

.wp-pagenavi.var01 {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

.wp-pagenavi a,
.wp-pagenavi span {
    background: #E8F1FC;
    min-width: 55px;
    line-height: 55px;
    box-sizing: border-box;
    display: inline-block;
    padding: 0;
    border-radius: 50%;
    color: #0652B7;
    border:none;
    font-family: 'Montserrat', sans-serif;
}

.wp-pagenavi span.pages {
    padding: 0 10px;
}

.wp-pagenavi.var01 a {
    border: none;
    background: none;
}

.wp-pagenavi span.current {
    background: #0652B7;
    color: #fff;
}

.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink{
    color: #E8F1FC;
    position: relative;
}

.wp-pagenavi .previouspostslink::before{
    content:'';
    width:16px;
    height:16px;
    background: url(../../../../../wp-content/uploads/2021/03/ico_arrow_left_blue.png) no-repeat 50% 50% / contain;
    display: block;
    position: absolute;
    left:50%;
    top:50%;
    transform: translate(-50%,-50%);
}

.wp-pagenavi .nextpostslink::before{
    content:'';
    width:16px;
    height:16px;
    background: url(../../../../../wp-content/uploads/2021/03/ico_arrow_right_blue.png) no-repeat 50% 50% / contain;
    display: block;
    position: absolute;
    left:50%;
    top:50%;
    transform: translate(-50%,-50%);
}

/*
.wp-pagenavi a,
.wp-pagenavi span {
    padding: 3px 10px;
}
*/
.bg-danger {
    background-color: #f2dede;
    padding: 5px;
}

.text-danger {
    color: #a94442;
}

a[href^=tel] {
    text-decoration: none;
    color: inherit;
    cursor: default;
}

a[href^=tel]:hover {
    opacity: 1;
}

.lazy {
    opacity: 0;
    position: relative;
    -webkit-transform: translate(0%, 50px);
    transform: translate(0%, 50px);
}

.lazy-show {
    opacity: 1;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -ms-transition: all 0.8s;
    -o-transition: all 0.8s;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    transition: all 1s;
}

.flickWrap {
    width: 100%;
}


@media screen and (max-width:828px) {
    a[href^=tel] {
        /*text-decoration: underline;*/
    }

    .flickWrap {
        overflow: auto;
        white-space: nowrap;
        padding: 5px 0;
    }

    .flickWrap::before {
        content: "※表が見切れる場合は横スクロールでご覧ください。";
        color: #F55;
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .flickWrap::-webkit-scrollbar {
        height: 5px;
    }

    .flickWrap::-webkit-scrollbar-track {
        background: #F1F1F1;
    }

    .flickWrap::-webkit-scrollbar-thumb {
        background: #BCBCBC;
    }
}


/* Header
*********************************************************/

.menu-trigger {
    display: none;
}

#header {
    position: relative;
    margin-bottom:20px;
}

#header::before{
    content:'';
    position: absolute;
    right:0;
    top:0;
    bottom:0;
    width:453px;
    background: #0652B7;
    border-radius: 0 0 0 30px;
}

#header .container{
    max-width: none;
    padding:20px;
}

.header__logo img{
    max-width: 255px;
    width:100vw;
}

@media screen and (max-width:1200px) {

    #header a.menu-trigger,
    #header a.menu-trigger span {
        display: inline-block;
        transition: all .4s;
        box-sizing: border-box;
    }

    #header a.menu-trigger {
        position: fixed;
        width: 50px;
        height: 50px;
        right: 10px;
        top: 10px;
        z-index: 600;
        background: #0652B7;
        border-radius: 50%;
    }

    #header a.menu-trigger:hover {
        opacity: 1;
    }

    #header a.menu-trigger span {
        position: absolute;
        left:10px;
        width: 30px;
        height: 2px;
        background-color: #fff;
        border-radius: 1px;
    }

    #header a.menu-trigger span:nth-of-type(1) {
        top: 15px;
    }

    #header a.menu-trigger span:nth-of-type(2) {
        top: 48%;
    }

    #header a.menu-trigger span:nth-of-type(3) {
        bottom: 15px;
    }

    .menu-trigger.active span:nth-of-type(1) {
        -webkit-transform: translateY(9px) rotate(-315deg);
        transform: translateY(9px) rotate(-315deg);
    }

    .menu-trigger.active span:nth-of-type(2) {
        opacity: 0;
    }

    .menu-trigger.active span:nth-of-type(3) {
        -webkit-transform: translateY(-9px) rotate(315deg);
        transform: translateY(-9px) rotate(315deg);
    }
}

/* GlobalNavi
*********************************************************/

#gNavi ul{
    position: relative;
}

#gNavi ul li {
    display: inline-block;
    white-space: nowrap;
}

#gNavi ul li+li {
    margin-left: 30px;
}

#gNavi ul li.nav-contact{
    margin-left: 280px;
}

#gNavi ul li a {
    color: #333;
    font-size: 1.6rem;
    font-weight: bold;
    text-decoration: none;
}

#gNavi ul li.nav-contact a{
    line-height:60px;
    border-radius: 30px;
    color:#fff;
    background:#E93578;
    text-align: center;
    width:200px;
    display: block;
}

#gNavi ul li.nav-contact a::before{
    content:'';
    width:18px;
    height:14px;
    margin-right:10px;
    display: inline-block;
    vertical-align: middle;
    background:url(../../../../../wp-content/uploads/2021/03/ico_contact_white.png) no-repeat 0 0 / contain;
}

#gNavi ul li.nav-tel a,
#gNavi ul li.nav-fax a{
    font-size:2rem;
    color:#fff;
}
#gNavi ul li.nav-fax a{
    pointer-events: none;
}
/*
#gNavi ul li.nav-tel a::before{
    content:'TEL.';
    font-size:1.4rem;
    margin-right:5px;
    display: inline-block;
}

#gNavi ul li.nav-fax a::before{
    content:'FAX.';
    font-size:1.4rem;
    margin-right:5px;
    display: inline-block;
}
*/
#gNavi ul li.nav-tel{
    position: absolute;
    right:228px;
    top:5px;
}

#gNavi ul li.nav-fax{
    position: absolute;
    right:228px;
    bottom:5px;
}

#gNavi ul li.nav-tel a {
    font-size: 0;
    color: #fff;
    background: url(../../../../../wp-content/uploads/2021/06/tel.png) no-repeat 0 0 / contain;
    width: 183px;
    display: block;
    height: 24px;
}

#gNavi ul li.nav-fax a {
    font-size: 0;
    color: #fff;
    background: url(../../../../../wp-content/uploads/2021/06/fax.png) no-repeat 0 0 / contain;
    width: 183px;
    display: block;
    height: 24px;
}

@keyframes fadein {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes slidein {
    0% {
        right: -100vw;
    }

    100% {
        right: 0;
    }
}



@media screen and (max-width:1200px) {
    #gNavi {
        display: none;
        opacity: 0;
        background: rgba(0, 0, 0, 0.9);
        position: fixed;
        left: 0;
        top: 0;
        width: 100vw;
        height: 100vh;
        z-index: 100;
        overflow: hidden;
    }

    #gNavi.active {
        display: block;
        animation-name: fadein;
        animation-duration: .75s;
        animation-timing-function: ease-out;
        animation-iteration-count: 1;
        animation-direction: normal;
        animation-fill-mode: forwards;
        overflow-y: scroll;
    }

    #gNavi .container {
        overflow: auto;
        position: relative;
        width: 100vw;
        height: 100vh;
        padding: 0;
    }

    #gNavi ul {
        border: none;
        position: absolute;
        right: -100vw;
        top: 50px;
        width: 100vw;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        z-index: 110;
        padding-left: 0;
        -webkit-transition: all .75s;
        -moz-transition: all .75s;
        -ms-transition: all .75s;
        -o-transition: all .75s;
        transition: all .75s;
        padding-bottom: 100px;
    }

    #gNavi.active ul {
        right: 0;
        animation-name: slidein;
        animation-duration: .75s;
        animation-timing-function: ease-out;
        animation-iteration-count: 1;
        animation-direction: normal;
        animation-fill-mode: forwards;
    }
    #gNavi ul li,
    #gNavi ul li:first-of-type {
        float: none;
        display: block;
        width: 100%;
        border: none;
        padding-left: 0;
        border-bottom: 1px dotted #fff;
    }

    #gNavi ul li+li {
        margin-left: 0;
    }

    #gNavi ul li a {
        color: #FFF;
        line-height: 1;
        border: none;
        display: block;
        text-align: center;
        width: 100%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        padding: 20px 0;
    }

    #gNavi ul li:first-of-type a {
        border: none;
    }

    #gNavi ul li a small {
        display: none;
    }

    .activeNav {
        overflow: hidden;
        height: 100%;
    }

    #gNavi ul li.nav-tel,
    #gNavi ul li.nav-fax{
        position: static;
    }

    #gNavi ul li.nav-tel,
    #gNavi ul li.nav-fax,
    #gNavi ul li.nav-contact{
        border-bottom: none;
    }

    #gNavi ul li.nav-contact {
        margin-left: 0;
    }

    #gNavi ul li.nav-contact a {
        line-height: 40px;
        border-radius: 15px;
        width: 300px;
        margin: 20px auto 0;
    }


    #gNavi ul li.nav-tel a,
    #gNavi ul li.nav-fax a{
        line-height: 24px;
        padding:0;
        margin:20px auto;
    }

}

/* Breadcrumbs
*********************************************************/

#breadcrumbs {
    padding: 20px 0 0;
    font-size: 1.4rem;
    margin-bottom: 60px;
    color:#999999;
}

#breadcrumbs a {
    color: #999999;
    text-decoration: none;
}


@media screen and (max-width:828px) {
    #breadcrumbs {
        height: auto;
        padding: 15px 0;
        line-height: 1.6;
        margin-bottom: 40px;
    }
}


/* Content
*********************************************************/

@media screen and (max-width:828px) {}



/* sidebar
*********************************************************/

@media screen and (max-width:828px) {}


/* Footer
*********************************************************/

/* cta */

#cta{
    background:#0652B7;
    padding:60px 0;
    color:#fff;
}

#cta .cta__title{
    font-size:2rem;
    display: block;
    margin-bottom:40px;
}

#cta .flex > div{
    flex-basis: 31%;
}

#cta .cta__tel,
#cta .cta__fax{
    border-top:1px solid #fff;
    border-bottom:1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

#cta .cta__tel {
    flex-direction: column;
}

#cta .cta__tel a,
#cta .cta__fax span{
    font-size:3rem;
}

#cta .cta__tel a small,
#cta .cta__fax span small{
    font-size:2rem;
    margin-right:5px;
}

#cta .cta__tel span{
    font-size:1.4rem;
}

#cta .cta__contact a{
    line-height:100px;
    border-radius: 50px;
    color:#fff;
    background:#E93578;
    text-align: center;
    text-decoration: none;
    font-size:2rem;
    font-weight:bold;
    display: block;
}

#cta .cta__contact a::before{
    content:'';
    width:23px;
    height:18px;
    margin-right:15px;
    display: inline-block;
    vertical-align: middle;
    background:url(../../../../../wp-content/uploads/2021/03/ico_contact_white.png) no-repeat 0 0 / contain;
}

/* footer */

#footer{
    padding:60px 0 0 0;
}

.footer-nav {
    margin-bottom: 30px;
}

.footer-nav ul{
    column-count:2;
    max-width:340px;
}

.footer-nav li {
    padding-bottom: 10px;
    width: 100%;
    display: inline-block;
    box-sizing: border-box;
}

.footer-nav a {
    text-decoration: none;
    font-size: 1.6rem;
    font-weight:bold;
}

.footer__logo .footer-logo{
    max-width:256px;
    width:100vw;
}

.footer__logo address{
    margin-top:30px;
    line-height:28px;
}

#copyright{
    margin-top:55px;
    font-size:1.4rem;
    color:#999999;
    padding:30px 0;
    border-top:1px solid #DDDDDD;
}


@media screen and (max-width:828px) {
    footer {
        text-align: center;
    }

    .footer-nav ul{
        column-count:auto;
        max-width: none;
        border-bottom: solid 1px #ccc;
        overflow: hidden;
    }

    .footer-nav {
        margin: 20px -15px 0;
        box-sizing: border-box;
        border-top: solid 1px #ccc;
    }

    .footer-nav li a {
        font-size: 1.1rem;
        display: block;
        padding: 5px;
    }

    .footer-nav li {
        margin: 0;
        text-align: center;
        padding: 5px;
        display: block;
        float: left;
        width: 50%;
        box-sizing: border-box;
        border-bottom: solid 1px #ccc;
    }

    .footer-nav ul li:last-child{
        border-bottom: none;
    }

    .footer-nav li+li {
        margin-left: 0;
    }

    .footer-nav li:nth-child(odd) {
        border-right: dotted 1px #ccc;
    }

}



/* WP default
*********************************************************/

.aligncenter,
div.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.alignleft {
    float: left;
}

.alignright {
    float: right;
}

.wp-caption {
    border: 1px solid #ddd;
    text-align: center;
    background-color: #f3f3f3;
    padding-top: 4px;
    margin: 10px;
    /* optional rounded corners for browsers that support it */
    -moz-border-radius: 3px;
    -khtml-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.wp-caption img {
    margin: 0;
    padding: 0;
    border: 0 none;
}

.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    padding: 0 4px 5px;
    margin: 0;
}

.cf::after {
    content: "";
    display: block;
    clear: both;
}

.rtt {
    display: block;
    position: fixed;
    right: 10px;
    bottom: 10px;
    width: 60px;
    height:60px;
}

.over--left {
    max-width: none;
    width: auto;
    padding: 0;
    margin-left: calc((100vw - 1215px) / 2);
}

.over--right {
    max-width: none;
    width: auto;
    padding: 0;
    margin-right: calc((100vw - 1215px) / 2);
}

.image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.image--inline{
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}

.flex{
    display: flex;
    justify-content: space-between;
}

.flex--reverse{
    flex-direction: row-reverse;
}

.flex--center{
    align-items: center;
}

.flex--left{
    justify-content: flex-start;
}

figure{
    margin: 0;
}

address{
    font-style:normal;
    font-size:1.6rem;
}

.button{
    text-decoration: none;
    background:url(../../../../../wp-content/uploads/2021/03/ico_arrow_right_white.png) no-repeat right 20px center #0652B7;
    background-size:16px auto;
    text-align: center;
    color:#fff;
    font-weight:bold;
    font-size:1.6rem;
    min-width:300px;
    padding:0 20px;
    box-sizing: border-box;
    display: inline-block;
    line-height:60px;
    border-radius: 30px;
}

.button--pink{
    background:url(../../../../../wp-content/uploads/2021/03/ico_arrow_right_white.png) no-repeat right 20px center #E93578;
    background-size:16px auto;
}

/* Responsive
*********************************************************/

br.spOn{
    display: none!important;
}

/* Tablet side */
@media screen and (max-width:1200px) {
    
    .rtt {
        width: 40px;
        height:40px;
    }

    #header .container {
        padding: 10px;
    }

    #header::before{
        display: none;
    }
    
    #header {
        margin-bottom: 0;
    }
    
}

/* Tablet side Only */
@media screen and (min-width:829px) and (max-width:1200px) {}

/* Smartphone side + Tablet Vertical */
@media screen and (max-width:828px) {

    .sp-bottom {
        margin-bottom: 20px;
    }

    body .pull-left,
    body .pull-right {
        float: none;
    }

    .over--left {
        max-width: 1230px;
        width: 100%;
        margin-left: auto;
        padding-right: 15px;
        padding-left: 15px;
    }

    .over--right {
        max-width: 1230px;
        width: 100%;
        margin-right: auto;
        padding-right: 15px;
        padding-left: 15px;
    }

    

    #cta{
        padding:40px 0;
    }

    #cta .flex{
        display: block;
    }

    #cta .cta__tel, #cta .cta__fax {
        height: 80px;
        max-width: 300px;
        margin: 0 auto;
    }

    #cta .cta__fax{
        margin:20px auto;
    }

    #cta .cta__contact a {
        line-height: 80px;
        max-width: 300px;
        margin: 0 auto;
    }

    #cta .cta__title {
        margin-bottom: 30px;
    }

    #footer {
        padding: 40px 0 0 0;
    }

    #footer .flex{
        flex-direction: column;
    }

    br.spOn{
        display: block!important;
    }

    br.spOff{
        display: none!important;
    }

    #copyright {
        margin-top: 0;
        padding: 30px 0;
        border-top: none;
    }
}

/* Smartphone Vertical */
@media screen and (max-width:415px) {

    h1 br,
    h2 br,
    h3 br,
    h4 br,
    h5 br,
    h6 br {
        display: none;
    }

    #cta .cta__tel,
    #cta .cta__fax,
    #cta .cta__contact a {
        max-width: none;
    }

}
