@charset 'UTF-8';
/*
**********************************************************************

* common.css

*********************************************************************
*/
/* =========================================================
body
========================================================= */
body
{
    font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', Osaka, sans-serif;
    font-size: 15px;
    font-size: 1.5rem; 
    font-weight: 400;
    line-height: 2;

    background: #fff;
}

@media only screen and (min-width: 769px)
{
    body
    {
        font-size: 15px;
        font-size: 1.5rem; 

        min-width: 1200px;
    }
}

@media only screen and (max-width: 768px)
{
    body
    {
        font-size: 14px;
        font-size: 1.4rem; 

        min-width: 320px;
    }
}

/* =========================================================
font
========================================================= */
.f-en
{
    font-family: 'Times New Roman', 'Hannari', 'ヒラギノ明朝 ProN W3', 'HiraMinProN-W3', serif;
}

.f-min
{
    font-family: 'Hannari', 'ヒラギノ明朝 ProN W3', 'HiraMinProN-W3', serif;
}
.is-Android .f-min
{
    font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', Osaka, sans-serif;
}

/* =========================================================
layout
========================================================= */
#Wrapper
{
    position: relative;

    overflow: hidden;

    width: 100%;
}

.inner
{
    position: relative;

    margin: 0 auto;
}

img
{
    max-width: 100%;
    height: auto;
}

@media only screen and (min-width: 769px)
{
    .inner
    {
        max-width: 1200px;
        padding: 0 15px;
    }
}

@media only screen and (max-width: 768px)
{
    .inner
    {
        padding: 0 15px;
    }
}

/* =========================================================
Pop
========================================================= */
#Overlay
{
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;

    display: none;

    width: 100%;
    height: 100%;

    background-color: rgba(0, 0, 0, .85);
}

/* =========================================================
#Popup
========================================================= */
#Popup
{
    position: absolute;
    z-index: 11;
    top: 0;
    left: 0;

    display: none;

    width: 100%;
    height: 100%;
    margin: 0 auto;
}
#Popup .closeOverlay
{
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;
}
#Popup .closeBtn
{
    font-size: 12px;
    font-size: 1.2rem; 

    position: absolute;
    top: 0;
    right: 0;

    cursor: pointer;
    text-align: center;
    letter-spacing: .1em;

    color: #fff;
}
#Popup .closeBtn:before,
#Popup .closeBtn:after
{
    position: absolute;
    top: 25px;
    left: 50%;

    display: block;

    width: 0;
    height: 1px;

    content: '';
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;

    background-color: #fff; 
    background-repeat: no-repeat;
    background-position: 0 0;
    -webkit-background-size: 100% auto;
            background-size: 100% auto;
}
#Popup .closeBtn:before
{
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
}
#Popup .closeBtn:after
{
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
}
#Popup .popMain
{
    position: relative;

    margin: 0 auto;
}

.popBox .popTitWrap
{
    text-align: center;
}
.popBox .popTitWrap .tit
{
    line-height: 1.2;

    vertical-align: middle;

    color: #bc9945;
}
.popBox .popTitWrap .tit small
{
    display: inline-block;

    margin-left: 5px;

    vertical-align: bottom;
}

.popBox .photo
{
    position: relative;

    margin-top: 20px;
}
.popBox .photo .photoList
{
    position: relative;

    border: solid #bc9945;
    border-width: 3px;
    background: url(../images/loading.gif) no-repeat center center #000;
}
.popBox .photo .photoList li
{
    position: absolute;
    top: 0;
    left: 0;

    display: none;

    width: 100%;

    text-align: center;

    background: no-repeat center center;
    -webkit-background-size: contain;
            background-size: contain;
}
.popBox .photo .photoList li img
{
    opacity: 0;
}
.popBox .photo .arrowBtn
{
    position: absolute;
    top: 50%;

    height: 100%;

    cursor: pointer;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
}
.popBox .photo .arrowBtn:after
{
    position: absolute;
    top: 50%;

    display: block;

    width: 0;
    width: 50%;
    height: 0;

    content: '';
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;

    border: solid #fff; 
    background-repeat: no-repeat;
    background-position: 0 0;
    -webkit-background-size: 100% auto;
            background-size: 100% auto;
}
.popBox .photo .arrowBtn.arrowPrev:after
{
    left: 40%;

    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);

    border-width: 0 0 1px 1px;
}
.popBox .photo .arrowBtn.arrowNext:after
{
    right: 40%;

    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);

    border-width: 1px 1px  0 0;
}

.popBox .popTit + .popTxt
{
    margin-top: 0;
}

.popBox .popTxt
{
    margin-top: 20px;
}

@media only screen and (min-width: 769px)
{
    #Popup
    {
        padding: 100px 0;
    }
    #Popup .closeBtn
    {
        width: 50px;
        margin-top: -50px;
        padding-top: 50px;

        -webkit-transform: translateX(-100%);
                transform: translateX(-100%);
    }
    #Popup .closeBtn:before,
    #Popup .closeBtn:after
    {
        width: 50px;
        margin-left: -25px;
    }
    #Popup .popMain
    {
        max-width: 850px;
    }
    .popBox .popTitWrap .tit
    {
        font-size: 34px;
        font-size: 3.4rem; 

        display: inline-block;
    }
    .popBox .popTitWrap .tit small
    {
        font-size: 17px;
        font-size: 1.7rem;
    }
    .popBox .photo .photoList
    {
        overflow: hidden;

        height: 493px;
    }
    .popBox .photo .arrowBtn
    {
        width: 60px;
    }
    .popBox .photo .arrowBtn:after
    {
        height: 30px;
        margin-top: -15px;
    }
    .popBox .photo .arrowBtn.arrowPrev
    {
        left: -70px;
    }
    .popBox .photo .arrowBtn.arrowNext
    {
        right: -70px;
    }
    .popBox .popTit
    {
        font-size: 19px;
        font-size: 1.9rem; 

        margin-top: 20px;
    }
    .popBox .popTxt
    {
        font-size: 15px;
        font-size: 1.5rem;
    }
}

@media only screen and (max-width: 768px)
{
    #Popup
    {
        padding: 50px 0;
    }
    #Popup .closeBtn
    {
        font-size: 10px;
        font-size: 1rem; 

        width: 50px;
        margin-top: -60px;
        padding-top: 35px;
    }
    #Popup .closeBtn:before,
    #Popup .closeBtn:after
    {
        width: 30px;
        margin-left: -15px;
    }
    #Popup .popMain
    {
        max-width: 850px;
    }
    .popBox .popTitWrap .tit
    {
        font-size: 16px;
        font-size: 1.6rem; 

        margin-top: 10px;
    }
    .popBox .popTitWrap .tit small
    {
        font-size: 14px;
        font-size: 1.4rem;
    }
    .popBox .photo
    {
        padding: 0 20px;
    }
    .popBox .photo .photoList
    {
        height: 162px;
    }
    .popBox .photo .arrowBtn
    {
        width: 30px;
    }
    .popBox .photo .arrowBtn:after
    {
        height: 15px;
        margin-top: -8px;
    }
    .popBox .photo .arrowBtn.arrowPrev
    {
        left: -12px;
    }
    .popBox .photo .arrowBtn.arrowNext
    {
        right: -12px;
    }
    .popBox .popTit
    {
        font-size: 16px;
        font-size: 1.6rem; 

        margin-top: 20px;
    }
    .popBox .popTxt
    {
        font-size: 13px;
        font-size: 1.3rem;
    }
}

/* =========================================================
#GNav
========================================================= */
#GNav .navBlock
{
    line-height: 1;

    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;

    color: #bc9945;
    background-color: #fff;
}
#GNav .navBlock a
{
    color: inherit;
}
#GNav .navBlock .blockMain .itemList
{
    text-align: center;
}
#GNav .navBlock .blockMain .itemList li
{
    line-height: 1;

    display: inline-block;

    text-decoration: none;
}
#GNav .navBlock .blockMain .itemList li a
{
    display: block;

    text-decoration: none;
}
#GNav .navBlock .blockMain .itemList li a .icon
{
    position: relative;

    display: inline-block;

    width: .85em;
    height: .85em;
    margin-top: -.1em;
    margin-right: .2em;

    vertical-align: middle;

    border-radius: 50% 50%;
    background-color: #bc9945;
}
#GNav .navBlock .blockMain .itemList li a .icon:after
{
    position: absolute;
    top: 50%;
    left: 50%;

    display: block;

    width: 30%;
    height: 30%;

    content: '';
    -webkit-transform: scaleY(1.1) translate(-50%, -65%) rotate(45deg);
            transform: scaleY(1.1) translate(-50%, -65%) rotate(45deg);

    border: solid #fff;
    border-width: 0 1px 1px 0; 
    background-repeat: no-repeat;
    background-position: 0 0;
    -webkit-background-size: 100% auto;
            background-size: 100% auto;
}

@media only screen and (min-width: 769px)
{
    #GNav .navBlock
    {
        position: absolute;
        top: 0;
        left: 0;

        height: 60px;
        padding-top: 10px;
    }
    #GNav .navBlock .blockTit
    {
        position: absolute;
        top: 50%;
        left: 15px;

        width: 120px;

        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
    }
    #GNav .navBlock .blockMain .itemList li
    {
        font-size: 19px;
        font-size: 1.9rem; 

        margin: 0 18px;
    }
    #GNav .navBlock .blockMain .itemList li a
    {
        padding: 10px 0;
    }
    #GNav .navBlock .blockMain .itemList li a .liInner
    {
        padding-left: 25px;

        -webkit-background-size: 12px auto;
                background-size: 12px auto;
    }
}

@media only screen and (max-width: 768px)
{
    #GNav .navBlock
    {
        padding: 5px 0 10px;

        border-bottom: 1px solid #bc9945;
    }
    #GNav .navBlock .blockTit
    {
        position: absolute;
        z-index: 3;
        top: 0;
        left: 0;

        width: 120px;
    }
    #GNav .navBlock .blockMain .itemList
    {
        display: -webkit-box;
        display: flex;

        padding-left: 10px;

        flex-wrap: wrap;
        -webkit-box-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        align-items: center;
    }
    #GNav .navBlock .blockMain .itemList li
    {
        font-size: 14px;
        line-height: 1.2;

        width: 33.333%;
        padding: 10px 0;
    }
}
@media only screen and (max-width: 768px) and (max-width: 374px)
{
    #GNav .navBlock .blockMain .itemList li
    {
        font-size: 3.5vw;
    }
}

@media only screen and (max-width: 768px)
{
    #GNav .navBlock .blockMain .itemList li a
    {
        height: 100%;
    }
    #GNav .navBlock .blockMain .itemList li a .liInner
    {
        padding-right: 5px;
    }
}

/* =========================================================
module
========================================================= */
.modTitBlock01
{
    text-align: center;
}
.modTitBlock01 .sectTit
{
    line-height: 1;

    position: relative;

    color: #bc9945;
}
.modTitBlock01 .sectTit span
{
    position: relative;

    display: inline-block;

    vertical-align: middle;
}
.modTitBlock01.typeWhite .sectTit
{
    color: #fff;
}

@media only screen and (min-width: 769px)
{
    .modTitBlock01 .sectTit
    {
        font-size: 55px;
        font-size: 5.5rem;
    }
    .modTitBlock01 .leadTxt
    {
        font-size: 18px;
        font-size: 1.8rem; 

        margin-top: 20px;
    }
}

@media only screen and (max-width: 768px)
{
    .modTitBlock01 .sectTit
    {
        font-size: 27px;
        font-size: 2.7rem;
    }
    .modTitBlock01 .leadTxt
    {
        font-size: 14px;
        font-size: 1.4rem; 

        max-width: 480px;
        margin: 0 auto;
        margin-top: 20px;

        text-align: left;
    }
}

/* =========================================================
#Contents
========================================================= */
#Contents
{
    position: relative;
}

@media only screen and (min-width: 769px)
{
    #Contents
    {
        padding-top: 60px;
    }
}

/* =========================================================
#GFoot
========================================================= */
#GFoot
{
    border-top: 1px solid #dedede;
}
#GFoot img
{
    vertical-align: top;
}
#GFoot .logo
{
    text-align: center;
}
#GFoot .copyright
{
    text-align: center;

    color: #a2a2a2;
}

@media only screen and (min-width: 769px)
{
    #GFoot
    {
        padding: 30px 0;
    }
    #GFoot .logo img
    {
        width: 120px;
    }
    #GFoot .copyright
    {
        font-size: 10px;
        font-size: 1rem;
    }
}

@media only screen and (max-width: 768px)
{
    #GFoot
    {
        padding: 30px 0;
    }
    #GFoot .logo img
    {
        width: 100px;
    }
    #GFoot .copyright
    {
        font-size: 10px;
        font-size: 1rem;
    }
}

/* =========================================================
animation
========================================================= */
.cmnAnimeWrap .cmnAnime,
.cmnAnimeWrap.cmnAnime,
.firstAnime
{
    -webkit-transition: ease 1.5s;
            transition: ease 1.5s;
    -webkit-transition-property: opacity,-webkit-transform;
            transition-property: opacity,-webkit-transform;
            transition-property: opacity,transform;
            transition-property: opacity,transform,-webkit-transform;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);

    opacity: 0;
}

.cmnAnimeWrap.animeActive .cmnAnime,
.cmnAnimeWrap.animeActive.cmnAnime,
.firstAnime.animeActive
{
    -webkit-transform: translateY(0px);
            transform: translateY(0px);

    opacity: 1;
}
