@charset "utf-8";

/* ===========
common
=============*/

html {
    font-size: 62.5%;
}

body {
    font-family:
    "Sawarabi Gothic",
    Arial,
    sans-serif;
    font-style: normal;
    color: #2f2f2f;
    background-color: #fff;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
}  

.section__img {
    width: 37px;
    height: 39px;
    margin-left: 10px;
}

.section__topic {
    display: block;
    color: #A9946B;
    font-family: "Lato", sans-serif;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1;
    margin-left: 15px;
}

/* view PC */
@media screen and (min-width: 769px) {
    .section__img {
        width: 55px;
        height: 55px;
    }
    
    .section__topic {
        font-size: 3.8rem;
    }
}/* view PC */


/* ===========
header
=============*/
.header {
    background-color: rgba(255, 255, 255, 0.9);
    width: 100%;
    margin: 0 auto;
    padding: 20px 5% 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
}


.header__topic,
.nav__topic {
    width: 130px;
    height: 40px;
}

.nav {
    /* =======透過効果のための背景設定========= */
    background-color: rgba(255, 255, 255, 0.9);
    /* =======可動させるための寸法設定========= */
    width: 100%;
    height: 100vh;
    /* ===============ナビ画面を固定================= */
    padding: 20px 5%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    /* ===============動作設定（距離）================= */
    transform: translateX(-100%);
    /* ===============動作設定（時間）================= */
    transition: transform 0.4s;
}

.nav__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__list {
    margin-top: 50px;
}

.nav__item {
    font-family: "Lato", sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1;
    margin-top: 40px;
}

.nav__item:hover {
    color: #A9946B;
}

.nav.active {
    transform: translateX(0);
}

.header__btn {
    display: block;
    width: 18px;
    height: 11px;
    position: absolute;
    top: 32px;
    right: 5%;
    cursor: pointer;
}

/* view PC */
@media screen and (min-width: 769px) {
    .header {
        padding: 20px 5%
    }

    .header__topic {
        width: 175px;
        height: 50px;
    }

    .nav {
        background: transparent;
        width: auto;
        height: auto;
        padding: 0;
        /* 配置初期化でナビは.header表示内に戻る */
        position: static;
        transform: translateX(0);
    }

    .nav__list {
        display: flex;
        margin-top: 0;
        gap: 30px;
    }

    .nav__item {
        font-size: 2.0rem;
        font-weight: 500;
        line-height: 1;
        margin-top: 0;
    }

    .nav__item--top {
        display: none;
    }

    .nav__header {
        display: none;
    }

    .header__btn {
        display: none;
    }

}/* view PC */


/* ===========
main
=============*/
/* main */
.main {
    background-color: #193053;
    background-image: url(../images/back_logo_tile.png);
}

/* .article__header */
/* pc用ナビの下に敷くスペース */
.article__header__blank {
    /* display: none; */
    background-color: #fafafa;
    width: 100%;
    height: 90px;
}

.slider__pc {
    display: none;
}

/* -----------------slider__sp指示----------------  */
.slider__sp {
    display: block;
    margin:0 auto;
}

/*-----------height調整----------*/
.slick-slide{
    height:auto;
}

/*-----------矢印表示----------*/
.slick-next{
    /* 右矢印 */
    right: 20px;
}
.slick-prev{
    /* 左矢印 */
    left: 20px;
}
.slick-arrow{
    z-index:2;
}

.slick-dots li button:before{
    /* ドットのサイズ・位置・色 */
    font-size:15px;
    top: 3px;
    color: #fff;
}

.slick-dots li{
    /* ドットの間隔 */
    width:40px;
}
/* -----------------slider指示end----------------  */

/* view PC */
@media screen and (min-width: 769px) {
    /* .article__header__blank {
        display: block;
    } */

    .slider__sp {
        display: none;
    }

    /*---------------------------- slider__pc指示 ----------------- */
    .slider__pc {
        display: block;
        margin:0 auto;
    }

      /*-----------height調整----------*/
    .slick-slide{
        height:auto;
    }

    /*-----------矢印表示----------*/
    .slick-next{
        /* 右矢印 */
        right: 20px;
    }
    .slick-prev{
        /* 左矢印 */
        left: 20px;
    }
    .slick-arrow{
        z-index:2;
    }

    .slick-dots li button:before{
        /* ドットのサイズ・位置・色 */
        font-size:15px;
        top: 6px;
        color: #fff;
    }

    .slick-dots li{
        /* ドットの間隔 */
        width:40px;
    }
        /*------------------ slider__pc指示end ----------------- */

}/* view PC */


/*==========================
fadeIn
==========================*/
.fadeIn {
    transform: translate(0, 90px);
    opacity: 0;
    transition: 0.8s;
}

.fadeIn.animated {
    transform: translate(0, 0); 
    opacity: 1; 
}


/* Policy */
.section--Policy {
    margin: 30px 30px 0;
    padding: 30px 20px 0;
    background-color: #fff;
    border-radius: 7px;
}

.section__title {
    display: flex;
    align-items: flex-end;
}


.Policy__line {
    height: 2px;
    background-color: #A9946B;
    border: none;
}

.Policy__sub--title {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1;
    margin-top: 20px;
}

.Policy__txt {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-top: 20px;
}

.Policy__mark {
    display: flex;
    justify-content: flex-end;
    position: relative;
    right: -21px;
    bottom: -1px;
}

/* view PC */
@media screen and (min-width: 769px) {
    .section--Policy {
        margin: 50px 100px 0;
        padding: 40px 80px 0;
    }

    .Policy__line {
        display: flex;
        position: relative;
        /* left: -80px; */
    }

    .Policy__sub--title {
        font-size: 2.4rem;
        font-weight: 400;
        line-height: 1; 
        margin-top: 50px;
    }

    .Policy__txt {
        font-size: 1.6rem;
        font-weight: 400;
        margin-top: 50px;
    }

    .Policy__item {
        display: flex;
        margin-top: 50px;
        margin: 30px;
    }

    .Policy__mark {
        display: flex;
        justify-content: flex-end;
        position: relative;
        right: -80px;
        bottom: -1px;
    }
}/* view PC */
 
/* Purpose */
.section--Purpose {
    margin: 30px 30px 0;
    padding: 30px 20px 0;
    background-color: #fff;
    border-radius: 7px;
}

.Purpose__line {
    height: 2px;
    background-color: #A9946B;
    border: none;
}


.Purpose__item {
    margin-top: 40px;
}

.Purpose__item:first-of-type {
    margin-top: 20px;
}


.Purpose__paragraph {
    width: 100%;
    padding: 15px;
}

.Purpose__sub--title {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1;
}

.Purpose__txt {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
    margin-top: 10px;
}

.Purpose__mark {
    display: flex;
    justify-content: flex-end;
    position: relative;
    right: -21px;
    bottom: -1px;
}

/* view PC */
@media screen and (min-width: 769px) {
    .section--Purpose {
        margin: 50px 100px 0;
        padding: 40px 80px 0;
    }

    .Purpose__line {
        display: flex;
        position: relative;
        /* left: -80px; */
    }

    .Purpose__item {
        display: flex;
        margin-top: 30px;
    }

    .Purpose__item:first-of-type {
        margin-top: 50px;
    }

    .Purpose__paragraph {
        width: 100%;
        padding: 0 20px;
    }

    .Purpose__sub--title {
        font-size: 2.4rem;
        font-weight: 400;
        line-height: 1; 
    }

    .Purpose__txt {
        font-size: 1.6rem;
        font-weight: 400;
        margin-top: 10px;
    }

    .Purpose__mark {
        display: flex;
        justify-content: flex-end;
        position: relative;
        right: -80px;
        bottom: -1px;
    }
}/* view PC */

/* Favorite */
.section--Favorite {
    margin: 30px 30px 0;
    padding: 30px 20px 0;
    background-color: #fff;
    border-radius: 7px;
}

.Favorite__line {
    height: 2px;
    background-color: #A9946B;
    border: none;
}

.Favorite {
    margin-top: 20px;
}

.Favorite__item {
    margin-top: 40px;
}

.Favorite__item:first-of-type {
    margin-top: 0;
}

.Favorite__paragraph {
    width: 100%;
    padding: 15px;
}

.Favorite__sub--title {
    font-size: 1.9rem;
    font-weight: 500;
    line-height: 1;
}

.Favorite__txt {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
    margin-top: 10px;
}

.Favorite__mark {
    display: flex;
    justify-content: flex-end;
    position: relative;
    right: -21px;
    bottom: -1px;
}

@media screen and (min-width: 769px){
    .section--Favorite {
        margin: 50px 100px 0;
        padding: 40px 80px 0;
    }

    .Favorite__line {
        display: flex;
        position: relative;
        /* left: -80px; */
    }

    .Favorite__item {
        display: flex;
        margin-top: 30px;
    }

    .Favorite__item:first-of-type {
        margin-top: 50px;
    }

    .Favorite__paragraph {
        padding: 0 20px;
    }

    .Favorite__sub--title {
        font-size: 2.4rem;
        font-weight: 400;
        line-height: 1; 
    }

    .Favorite__txt {
        font-size: 1.6rem;
        font-weight: 400;
        margin-top: 10px;
    }

    .Favorite__mark {
        display: flex;
        justify-content: flex-end;
        position: relative;
        right: -80px;
        bottom: -1px;
    }
}/* view PC */  


/* Access */
/* .section--Access {
    margin: 30px 30px 0;
    padding: 30px 20px 0;
    background-color: #fff;
    border-radius: 7px;
}

.Access__line {
    height: 2px;
    background-color: #A9946B;
    border: none;
}

.map {
    width: 100%;
    height: 400px;
    margin-top: 20px;
}

.address {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
    margin-top: 10px;
}

.tel {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1;
    display: block;
    margin-top: 10px;
}

.Access__mark {
    display: flex;
    justify-content: flex-end;
    position: relative;
    right: -21px;
    bottom: -1px;
} */

.adjustment {
    width: 100%;
    height: 30px;
}

/* view PC */
/* @media screen and (min-width: 769px) {
    .section--Access {
        margin: 50px 100px 0;
        padding: 40px 80px 0;
    }

    .Access__line {
        display: flex;
        position: relative;
    }

    .map {
        margin-top: 50px;
    }

    .address {
        font-size: 1.6rem;
    }

    .tel {
        font-size: 2rem;
    }

    .Access__mark {
        display: flex;
        justify-content: flex-end;
        position: relative;
        right: -80px;
        bottom: -1px;
    }
} */
/* view PC */

/* ===========
footer
=============*/
.footer {
    padding: 50px 30px; 
}

.footer__img {
    width: 120px;
    height: 40px;
    /* 中央揃えの設定（画像なのでブロック要素に変換必要 */
    display: block;
    /* ブロック要素なので左右成り行きで中央に設定 */
    margin: 0 auto;

}

.menu__item {
    text-align: center;
    font-family: "Lato", sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    margin: 22px;
}

.menu__item:hover {
    color: #A9946B;
}

.menu__item--Top {
    display: none;
}

.sns {
    /* 横並びにするためdisplay: flex; */
    display: flex;
    /* display: flex;の中央揃え設定 */
    justify-content: center;

    gap: 22px;
    margin-top: 40px;
}

.sns__item {
    width: 22px;
    height: 22px;
}

.copy {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 400;
    margin-top: 40px;
}

.topBtn {
    display: inline-block;
    padding: 18px;
    border-radius: 50%;
    background-color: #A9946B;
    color: #fff;
    font-size: 1.2rem;
    box-shadow: 2px 2px 4px 2px rgba(29, 101, 101, 0.2);

    position: fixed;
    bottom: 2%;
    right: 1.7%;
}

/* view PC */
@media screen and (min-width: 769px) {
    .footer {
        padding: 100px 140px;
    }

    .footer__group {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }

    .footer__img {
        margin: 0;
    }

    .menu__list {
        display: flex;
    }

    .menu__item {
        font-size: 1.4rem;
        margin: 0 0 0 40px;
    }

    .sns {
        margin-top: 30px;
        justify-content: left;
    }

    .copy {
        margin-top: 30px;
        text-align: left;
    }
}/* view PC */