@charset "utf-8";

@import url("base.css");

/***************************************************************************
 *
 * COMMON STYLE
 *
 ***************************************************************************/

 body {
    background-color: #FFFFFF;
    font-size: 14px;
    line-height: 1.5;
    overflow-x: hidden;
    color: #000000;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}
.mincho {
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

.inner {
    width: 1024px;
    margin: 0 auto;
}

.head_inner {
    max-width: 1310px;
    width: 100%;
    margin: 0 auto;
}


/*VALIDATE CONTACT*/
.error {
    display: block;
    font-size: 12px;
    color: red;
}


/* MENU */
.hambuger {
    position: relative;
    width: 56px;
    height: 56px;
    float: right;
    margin-top: -8px;
    z-index: 9991;
    background: #fff;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.hambuger span {
    display: block;
    height: 4px;
    width: 100%;
    background: #1A1311;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.hambuger span:nth-child(1) {
    margin-bottom: 9px;
}

.hambuger span:nth-child(2) {
    opacity: 1
}

.hambuger span:nth-child(3) {
    margin-top: 9px;
}

.hambuger.open span:nth-child(1) {
    margin-bottom: -4px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}
.hambuger.open span:nth-child(2) {

    opacity: 0;

}
.hambuger.open span:nth-child(3) {
    margin-top: -4px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.hambuger .txt {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 19px;
    font-weight: bold;
    color: #1A1311;
    transition: .25s ease-in-out;
}
.hambuger .txt-close,
.hambuger.open .txt-open  {
    opacity: 0;
}
.hambuger.open .txt-close {
    opacity: 1;
}



/* HEADER */
#header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 999;
}
#header .head_inner {
    position: relative;
}
#header .headWrap {
    padding: 21px 0;
}
#header .logo {
    float: left;
    width: 255px;
}

/*MENU*/
#header .mainMenu {
    display: none;
    position: absolute;
    width: 320px;
    right: 10px;
    top: 137px;
    background: #fff;
    padding: 30px 20px 100px;
}
#header .mainMenu .menuTitle {
    font-size: 24px;
    color: #1A1311;
    text-align: center;
}
#header .mainMenu .menu li {
}
#header .mainMenu .menu li a {
    position: relative;
    display: block;
    padding: 20px 10px 5px;
    font-size: 13px;
    color: #1A1311;
    border-bottom: 1px solid #707070;
    font-weight: bold;
}
#header .mainMenu .menu li a:after {
    content: '';
    position: absolute;
    bottom: 4px;
    right: 10px;
    width: 21px;
    height: 21px;
    background: url(../img/common/menu_icon.png) no-repeat left center;
    background-size: 100%;
}
/*MENU*/


/* CONTENT */
#content {
    width: 100%;
}

.wrapArea {
/*     width: 750px; */
    margin: 0 auto;
}
/*.wrapArea + .wrapArea {
    margin-top: 88px;
}*/
.text{
    font-size: 13px;
    line-height: 21px;
}
.pointWrap {
    margin-top: 28px;
    color: #333333;
    text-align: center;
}
.pointWrap .pointTitle {
    font-size: 22px;
    line-height: 36px;
    letter-spacing: 0.5px;
}
.pointWrap .pointJp {
    font-size: 16px;
    font-weight: bold;
    margin-top: 5px;
    margin-bottom: 20px;
}

.contArea {
    width: 670px;
    margin: 0 auto;
}

.listInfo li {
    float: left;
    width: 325px;
    margin-right: 20px;
}
.listInfo li:nth-child(2n){
    margin-right: 0;
}
.listInfo li .listTitle{
    font-size: 16px;
    color: #fff;
    background: #38ADEC;
    text-align: center;
    padding: 11px 0;
}
.listInfo li .text{
    margin-top: 8px;
}
.listInfo li .photo {
    text-align: center;
}
.listInfo2 li .title{
    margin-top: 18px;
}

/*cont-pageTop*/
.cont-pageTop {
    position: fixed;
    bottom: 0;
    right: 0;
    text-align: right;
    z-index: 999;
}
.cont-pageTop .pagetotop {
    display: none;
    float: right;
    width: 30px;
    margin-right: 10px;
    margin-bottom: 5px;
}
.cont-pageTop .contact {
    width: 375px;
}

.areaTitle{
    background: #38ADEC;
    font-size: 22px;
    color: #fff;
    text-align: center;
    padding: 17px 0 18px;
}

/* FOOTER */
#footer {
    width: 100%;
    background: rgba(51,51,51,0.95);
    padding: 40px 0 98px;
}
#footer .footLogo {
    width: 201px;
    margin: 0 auto;
}
#footer .copyright {
    font-size: 10px;
    color: #fff;
    text-align: center;
    margin-top: 35px;
}

.sp {
    display: none;
}


/* FIX TABLET */
@media(max-width: 1310px) and (min-width: 769px) {
    body {
        width: 1349px;
    }
    .head_inner{
        padding: 0 2%;
    }
}


/* STYLE MOBILE */
@media (max-width: 768px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    .inner{
        width: 100%;
        padding: 0 2.5%;
    }
    .head_inner {
        width: 100%;
        padding: 0 2.5%;
    }
    /*#header */
    #header .logo {
        width: 235px;
    }
    #header .headWrap {
        padding: 9px 0;
    }
    .hambuger {
        width: 34px;
        height: 34px;
        margin-right: 0;
        margin-top: 1px;
    }
    .hambuger span {
        height: 3px;
        width: 100%;
    }
    .hambuger span:nth-child(1) {
        margin-bottom: 5px;
    }

    .hambuger span:nth-child(2) {
        opacity: 1
    }

    .hambuger span:nth-child(3) {
        margin-top: 5px;
    }

    .hambuger.open span:nth-child(1) {
        margin-bottom: -2px;
    }

    .hambuger.open span:nth-child(3) {
        margin-top: -2px;
    }
    .hambuger .txt {
        bottom: -10px;
        font-size: 10px;
        font-weight: bold;
        color: #1A1311;
        transition: .25s ease-in-out;
    }
    #header .mainMenu {
        width: 85%;
        right: auto;
        left: 50%;
        top: 72px;
        transform: translateX(-50%);
        padding: 30px 20px 100px;
    }

    /*#content*/
    .wrapArea{
        width: 100%;
    }
    .contArea  {
        width: 100%;
        padding: 0 3%;
    }
    .tageText.text{
        padding: 0 3%;
    }

    .cont-pageTop .contact {
        width: 100%;
    }

    .listInfo li {
        width: 100%;
        margin-right: 0;
    }
}