@charset "utf-8";


/*==================================================================
Common setting
===================================================================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: serif;
}

html {
    font-size: 62.5%;
    font-family: serif;
}

body {
    background-color: #131a28;
    margin: 0 auto;
    font-family: serif;
}

a {
    text-decoration: none;
    list-style: none;
    font-size: 1.4rem;
    font-family: serif;
}

p {
    font-size: 1.5rem;
    color: #3A3427;
}

h1 {
    font-size: 4.8rem;
    margin: 0;
}

h2 {
    font-size: 3.6rem;
}

h3 {
    font-size: 2.4rem;
}

h4,
h5,
h6 {
    font-size: 1.6rem;
}

img {
    vertical-align: bottom;
}

ul li {
    list-style-type: none;
}

.target_x {
    pointer-events: none;
    color: #727171 !important;
}

.target_jp {
    border-top: 1px solid #727171 !important;
}

.btnarrow_target1 {
    border: 1px solid #727171 !important;
}

.btnarrow_target1::before {
    background: #727171 !important;
}

.btnarrow_target1::after {
    background: #727171 !important;
}

.text_block {
    display: inline-block;
}

/* 未完成分透過 */

.unfinished {
    opacity: 0.5;
}

/*-----------------------

ローディング動画

-------------------------*/

@media screen and (min-width: 1001px) {
    #main_visual {
        opacity: 0;
        transition: opacity ease-in-out 1s;
    }

    .site-header,
    .global-navi-base {
        opacity: 0 !important;
        transition: opacity ease-in-out 1s;
    }

    #main_visual.is_show {
        opacity: 1 !important;
    }

    .site-header.is_show_mv,
    .global-navi-base.is_show_mv {
        opacity: 1 !important;
    }
    .site-header, .global-navi-base{
        opacity: 1!important;
    }
}


#main_visual {
    overflow: hidden;
    position: relative;
}

.main_wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

.slick-slide {
    background: rgb(0, 0, 0) !important;
}

.screen {
    width: 100%;
    position: relative;
}

.screen .img {
    height: 100vh;
}

.screen .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.screen .img-list {
    display: flex;
    justify-content: space-between;
    height: 100%;
    align-items: flex-end;
}

.screen .logo {
    max-width: 180px;
    margin: 0 0 30px;
    opacity: 0;
    visibility: hidden;
    transition: all ease-in-out 0.5s;
}

.on-active .screen .logo {
    opacity: 1;
    visibility: visible;
}

.screen .content {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0%);
    display: flex;
    flex-direction: column;
    align-items: center;
    top: 42%;
}

.screen .txt {
    color: #fff;
    font-size: 2.2rem;
    margin: 0 0 30px;
    line-height: 1;
    width: 25px;
}

.screen .txt>span {
    transition: all ease-in-out 0.5s;
}

.on-active .screen .txt>span {
    opacity: 1;
}

.screen .line {
    display: block;
    width: 1px;
    position: relative;
    flex: auto;
}

.screen .line:after {
    content: "";
    background: #ffffff;
    height: 0;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    transition: all ease-in-out 0.75s;
    transition-delay: 0.75s;
}

.on-active .screen .line:after {
    height: 100%;
}

.screen02 {
    display: none;
}

.mv_txt {
    display: none;
}


.screen03 .mv_txt {
    position: absolute;
    top: 30%;
    width: 15vw;
    left: 10vw;
    bottom: 0;
    transition: all ease-in-out 0.75s;
    transition-delay: 0.25s;
    opacity: 0;
    visibility: hidden;
    z-index: 2;
}


.on-active .screen03 .mv_txt {
    opacity: 1;
    visibility: visible;
}

.screen03 .mv_text_top {
    margin-bottom: 25px;
}

.screen03 .mv_text_btm {
    position: relative;
    text-align: center;
}

.screen03 .mv_text_btm img {
    display: inline-block;
    width: 100%;
}

.screen03 .mv_text_btm #cirl01 {
    position: relative;
    z-index: 2;
}

.screen03 .mv_text_btm #cirl02 {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;
}

.screen03 .mv_text_btm .cirl {
    opacity: 0;
    filter: blur(0);
    transform: scale(1);
}

.screen03 .mv_text_btm .cirl.show {
    opacity: 1;
    animation-name: blurAnime;
    animation-duration: 3.5s;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-direction: alternate;

}

.screen03 .mv_text_btm .cirl.hide {
    opacity: 0;
}

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

    50% {
        opacity: 1;
    }
}

.screen03 .mv_text_btm .cirl:after,
.screen03 .mv_text_btm .cirl:before {
    content: '';
    position: absolute;
    left: 0%;
    right: 0%;
    top: 0%;
    bottom: 0%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    width: 100%;
    height: 100%;
    margin: auto;
    border-radius: 50%;
    opacity: 1;
    animation: 1.2s circleanime linear infinite;
    z-index: -1;
}

.screen03 .mv_text_btm .cirl:before {
    animation-delay: .5s;
}

@keyframes circleanime {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}




.skipbtn,
#skip a.skipbtn,
button.skipbtn {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    position: relative;
    display: inline-block;
    padding: 1rem 4rem;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 0.1em;
    color: #212529;
    border-radius: 0.5rem;
}

#skip a.btn-svg {
    font-weight: 700;
    line-height: 54px;

    width: 204px;
    height: 54px;
    padding: 0;

    cursor: pointer;
    text-decoration: none;

    background-color: transparent;
}

#skip a.btn-svg svg {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;
}

#skip a.btn-svg svg rect {
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;

    stroke: #000;
    stroke-width: 2;
    stroke-dasharray: 200px, 16px;
    stroke-dashoffset: 70px;
}

#skip a.btn-svg:hover svg rect {
    stroke-dashoffset: 284px;
}

#skip a.btn-svg span {
    color: #000;
}



#skip {
    border: 1px solid #FFF;
    color: #FFF;
    cursor: pointer;
    display: inline-block;
    font-size: 1.6rem;
    min-width: 70px;
    text-transform: uppercase;
    text-align: center;
    transition: all ease 0.25s;
    position: absolute;
    right: 20px;
    top: 50%;
    z-index: 9990;
}

#skip:hover {
    background: rgba(0, 0, 0, 0.75);
    color: #FFF;
}

@media screen and (max-width: 767px) {
    #skip {
        right: 25px;
        top: auto;
        bottom: 13px;
    }

    header .tools li.links {
        display: none;
    }
}


/*==================================================================

TOP ファーストビュー

===================================================================*/

.top_img img {
    width: 100%;
    height: 100vh;
    height: 100dvh;
}

/*==================================================================

パンくずリスト

===================================================================*/

.breadcrumb_area {
    border-top: 4px solid #a48b78;
    border-bottom: 4px solid #a48b78;
    background-color: #284b62;
    padding-left: 30px;
    display: flex;
}

.breadcrumb_area p {
    margin: 6px auto;
    color: #fff;
}

.color_white {
    color: #fff;
}

/*==================================================================

エントリー

===================================================================*/

.entry_area {
    background-color: #fff;
    padding: 20px 20px 0px 20px;
}

.entry_flex {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    max-width: 1300px;
}

.entry_title {
    /*border-bottom: solid 1px #afafaf;*/
    display: flex;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.entry_title h2 {
    color: #A48041;
    text-align: center;
}

.model-font{
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    margin-top: 15px;
}

.entry_title_01 h2 span {
    color: #B00101;
    font-size: 45px;
}
.entry_title_01 h2 .font40 {
    /*color: #B00101;*/
    font-size: 28px;
    
    max-width: 490px;
    background-color: #b00101;
    color: #fff;
    padding: 10px 20px;
    display: block;
    width: 490px;
    
    text-align: center;
}


.entry_title_01 {
    margin: 0 auto;
}

.model-font span:nth-child(1){
    /*margin-right: 40px;*/
    margin-right: 20px;
}



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

    .entry_container{
        width: 100%;
    }
    .entry_title_01{
        width: 100%;
    }
    .entry_title_01 h2 .font40 {
        /*color: #B00101;*/
        font-size: 30px;
        width: 100%;
    }
}


@media screen and (max-width:999px){
    .model-font{
        padding: 10px 0;
    }
.model-font span{
    display: block;
    margin-right: 0px;
}
    .model-font span:nth-child(1){
        margin-right: 10px;
    }
}

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

.entry_title_02 {
    margin-top: 80px;
    color: #4F4F4F;
    text-align: center;
}

.entry_title_02 h2 {
    color: #3A3427;
    font-size: 2.4rem;
    position: relative;
    display: block;
    padding: 0 65px;
    text-align: center;
}

.entry_title_02 h2:before,
.entry_title_02 h2:after {
    position: absolute;
    top: calc(50% - 0px);
    width: 100%;
    max-width: 240px;
    height: 6px;
    content: '';
    border-top: solid 1px #afafaf;
    /*border-bottom: solid 2px #afafaf;*/
}

.entry_title_02 h2:before {
    left: 0;
}

.entry_title_02 h2:after {
    right: 0;
}


.entry_title_02 li {
    padding: 30px 20px 20px;
    font-size: 1.4rem;
}

.gold {
    color: #A48041;
}

.font30 {
    font-size: 3rem;
}

.entry_txt {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.diagonal {
    position: relative;
    display: inline-block;
    padding: 0 30px;
}



.diagonal:before {
    position: absolute;
    left: 0;
    top: 10px;
    content: "";
    width: 1px;
    height: 60px;
    background: #000;
    border-radius: 3px;
    transform: rotate(40deg);
}


.diagonal:nth-child(1)::before {
    content: none;
}

.diagonal:nth-child(4)::before {
    top: 10px;
}

.diagonal h3 {
    font-size: 1.5rem;
    text-align: center;
}

.diagonal p {
    font-size: 1.5rem;
    text-align: center;
}



.btnarrow5 {
    position: relative;
    border: 1px solid #555;
    padding: 40px 25px;
    width: 100%;
    border-radius: 50px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    color: #333;
    outline: none;
    transition: all .2s linear;
}

.btnarrow5:hover {
    color: #A48041;
    border: 1px solid #A48041;
}


.btnarrow5::before {
    content: "";
    position: absolute;
    top: 60%;
    right: -26px;
    width: 100px;
    height: 1px;
    background: #333;
    transition: all .2s linear;
    z-index: 2;
}

.btnarrow5::after {
    content: "";
    position: absolute;
    top: 49%;
    right: -21px;
    width: 1px;
    height: 12px;
    background: #333;
    transform: skewX(45deg);
    transition: all .2s linear;
    z-index: 2;
}


.btnarrow5:hover::before {
    right: -30px;
    background: #A48041;
}

.btnarrow5:hover::after {
    right: -25px;
    background: #A48041;
}

.entry_btn {
    margin-left: 20px;
    position: relative;
}

.white_bk {
    background-color: #fff;
    width: 50%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    right: -30px;
    z-index: 1;
}

.sub_title_area{
    /*margin: 20px auto 100px;*/
    margin: 20px auto ;
    color: #3A3427;
    text-align: center;
}


/*==================================================================

ヘッダー

===================================================================*/



#header {
    position: fixed;
    width: 100%;
    z-index: 999;
}

/* 上に上がる動き */

#header.UpMove {
    animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-181px);
    }
}

/* 下に下がる動き */

#header.DownMove {
    animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
    from {
        opacity: 0;
        transform: translateY(-181px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.placeName {
    max-width: 200px;
    width: 100%;
}

.pcnav {
    background-color: rgba(164, 139, 120, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
}


#g-nav {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh;
    background: #fafafa;
    transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
    right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 100%;
}

/*リストのレイアウト設定*/

#g-nav li {
    list-style: none;
    text-align: center;
}

#g-nav li a {
    color: #333;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1 {
    position: fixed;
    z-index: 9999;
    top: 20px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
}

/*×に変化*/
.openbtn1 span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 2px;
    background-color: #FFF;
    width: 45%;
}

.openbtn1 span:nth-of-type(1) {
    top: 15px;
}

.openbtn1 span:nth-of-type(2) {
    top: 23px;
}

.openbtn1 span:nth-of-type(3) {
    top: 31px;
}


.openbtn1.active {
    background-color: #131a28;
}

.openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

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

.openbtn1.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

.openbtn1 p {
    position: absolute;
    left: 5px;
    right: 5px;
    bottom: -3px;
    color: #fff;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    background-color: #284b62;
}

header {
    width: 100%;
    height: 100px;
    height: auto;
    background: #131a28;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    z-index: 3;
}

header img {
    width: 100%;
    max-width: 200px;
    padding: 0 20px;
}

header a {
    display: block;
    color: #fff;
}

header .gnav_01 .menu_01 li,
.gnav_01 .menu_01_1 li,
.gnav_02 .menu_02 li {
    list-style: none;
}

header .gnav_01 .menu_01 li+li,
.gnav_02 .menu_02 li+li {
    margin-left: 20px;
}

.nav_flex {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

.en,
.jp {
    display: block;
}


.nav_top {
    display: flex;
}

.menu_01 {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 10px;
    margin-right: 20px;
}

.menu_01 a {
    border: 1px solid #fff;
    font-size: 12px;
    padding: 2px 8px;
    width: 105px;
    text-align: center;
    transition: 0.3s;
}

.menu_01 a:hover {
    background-color: #fff;
    color: #131a28;
}

.tel {
    width: 300px;
}

.tel a {
    border: 0px;
    width: 300px;
    font-size: 3rem;
    transition: 0.3s;
    line-height: 1;
}

.tel a:hover {
    background-color: #131a28;
    color: #A48041;
}

.tel img {
    width: 100%;
    max-width: 60px;
    vertical-align: baseline;
    padding-right: 5px;
}

.toplogosp a {
    border: 0px;
    width: 100%;
}

.toplogosp a:hover {
    background-color: #1d2536;
}

.toplogosp img {
    max-width: 170px;
    padding: 0 20px;
}

.toplogosp h1 {
    font-size: 0;
}

.gnav_02 {
    margin-right: 20px;
}

.menu_02 {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 60px;
}

.menu_02 a {
    padding: 4px 0;
    /*width: 100px;*/
    width: 120px;
    height: 100%;
    text-align: center;
    transition: 0.3s;
}

.menu_02 a:hover {
    background-color: rgba(255, 255, 255, 0.4);
    color: #131a28;
}

.menu_02 .jp {
    border-top: 1px solid #fff;
    font-size: 10px;
}

.menu_02 a{
    width: 130px;
}


.nav_top_02 a {
    width: 110px;
    padding: 33px 20px 33px;
    height: 100%;
    color: #fff;
    display: block;
    text-align: center;
    background-color: #A48041;
    transition: 0.3s;
}
.nav_top_02 a:hover{
    opacity: 0.8;
}
.nav_top_03 a {
    width: 110px;
    padding: 33px 20px 33px;
    height: 100%;
    color: #fff;
    display: block;
    text-align: center;
    background-color: #D25A70;
    transition: 0.3s;
}
.nav_top_03 a:hover{
    opacity: 0.8;
}

.nav_top_04 a {
    width: 110px;
    padding: 33px 20px 33px;
    height: 100%;
    color: #fff;
    display: block;
    text-align: center;
    background-color: #615f5d;
    transition: 0.3s;
}
.nav_top_04 a:hover{
    opacity: 0.8;
}

@media screen and (min-width:1345px) {
    .sp_none {
        display: none;
    }
}

@media screen and (max-width:1344px) {
    .pc_none {
        display: none;
    }
}

@media screen and (min-width:1201px) {
    .nav_flex {
        justify-content: space-between;
    }
}

@media screen and (min-width:1001px) and (max-width:1180px) {
    .nav_flex {
        justify-content: center;
    }

    .nav_top_02 {
        position: fixed;
        top: 159px;
        right: 0;
    }
}



/*-----------------------

mainページ内

------------------------*/


/*concept*/


#area-1 {
    padding: 0;
    position: relative;
    z-index: 10;
}


/*===============================================

コンセプト

================================================*/


.concept_area {
    background: url(../images/top_img09.jpg);
    position: relative;
    padding-top: 50px;
    background-repeat: no-repeat;
    background-size: cover;
}

.concept_1300 {
    max-width: 1300px;
    margin: 0 auto;
    padding-bottom: 80px;
    display: flex;
    overflow: hidden;
}

.concept_txt01 {
    width: 40%;
    padding-left: 20px;
}

.concept_img_h1 {
    margin-top: 80px;
    margin-right: 100px;
}

.concept_img_h1 h1 {
    color: #fff;
    font-weight: 500;
}

.concept_img_h1 h4 {
    margin-top: 30px;
    color: #fff;
    line-height: 2;
    font-size: 2rem;
}

.concept_img_h1 p {
    margin-top: 30px;
    color: #fff;
    line-height: 3;
}

.concept_img03 {
    width: 60%;
    padding-right: 20px;
}

.concept_img_top_01 {
    margin-top: 80px;
    padding: 20px;
}

.concept_img_top_01 img {
    width: 100%;
    max-width: 350px;
}

.concept_img_top_02 {
    padding: 20px;
    text-align: right;
}

.concept_img_top_02 img {
    width: 100%;
    max-width: 350px;
}

.concept_img_top_03 {
    padding: 20px;
}

.concept_img_top_03 img {
    width: 100%;
    max-width: 350px;
}

.concept_img_top img {
    width: 100%;
}



/*コンセプトアシンメトリー箇所*/

.position_concept_area {
    background: url(../images/top_img10.jpg);
    background: none;
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: top right;
    padding-bottom: 100px;
    overflow: hidden;
}


.position_concept_area article {
    display: flex;
}

.concept_img_left {
    width: 70%;
    text-align: center;
    padding-top: 100px;
}

.concept_img_left img {
    width: 100%;
    height: auto;
    position: relative;
}

.text {
    box-sizing: border-box;
    width: 40%;
    padding: 5%;
    color: #fff;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}

.text h1 {
    font-size: 2rem;
    padding-left: 20px;
}

.text p {
    line-height: 2.2;
    color: #fff;
}

.text_design {
    width: 30%;
}


.concept_title {
    color: #fff;
    position: relative;
}

.concept_title h1 {
    position: absolute;
    top: -50px;
    right: 50px;
    z-index: 2;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    letter-spacing: 10px;
}

.position_concept_area article:nth-child(2n+1) {
    flex-direction: row-reverse;
}

.position_concept_area article:nth-child(2n+1) .concept_img_left {}

/* 2n+1は奇数番目のこと */

.concept_60 {
    width: 60%;
}

.concept_40 {
    width: 40%;
}

.btnarrow {
    position: relative;
    border: 1px solid #fff;
    padding: 40px 25px;
    width: 100%;
    border-radius: 50px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    color: #fff;
    outline: none;
    transition: all .2s linear;
}

.btnarrow:hover {
    color: #A48041;
    border: 1px solid #A48041;
}


.btnarrow::before {
    content: "";
    position: absolute;
    top: 60%;
    right: -26px;
    width: 100px;
    height: 1px;
    background: #fff;
    transition: all .2s linear;
    z-index: 2;
}

.btnarrow::after {
    content: "";
    position: absolute;
    top: 49%;
    right: -21px;
    width: 1px;
    height: 12px;
    background: #fff;
    transform: skewX(45deg);
    transition: all .2s linear;
    z-index: 2;
}


.btnarrow:hover::before {
    right: -30px;
    background: #A48041;
}

.btnarrow:hover::after {
    right: -25px;
    background: #A48041;
}

.concept_btn_area {
    position: relative;
    height: 50%;
}

.concept_btn {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    display: inline-block;
}

.concept_btn .btnarrow {
    padding: 55px 40px;
    border-radius: 100px;
}

.concept_btn .btnarrow::before {
    right: -5px;
    width: 105px;
}

.concept_btn .btnarrow::after {
    height: 15px;
    right: 2px;
}


.concept_btn .btnarrow:hover::before {
    right: -30px;
    background: #A48041;
}

.concept_btn .btnarrow:hover::after {
    right: -23px;
    background: #A48041;
}



.blue_bk {
    background-color: #131a28;
    width: 50%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    right: -50px;
    z-index: 1;
}


/*===============================================

レジデンス

================================================*/

.position_residence_area {
    /*background: url(../images/top_img11.jpg);*/
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: top left;
    padding-bottom: 100px;
}


.position_residence_area article {
    display: flex;
    flex-direction: row-reverse;
}

.residence_img_left {
    width: 60%;
    text-align: center;
    padding-top: 100px;
}

.residence_img_left img {
    width: 100%;
    height: auto;
    position: relative;
}

.residence_text {
    box-sizing: border-box;
    width: 40%;
    padding: 5%;
    color: #fff;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}

.residence_text h1 {
    font-size: 2rem;
    padding-left: 20px;
}

.residence_text p {
    line-height: 2.2;
    color: #fff;
}

.residence_title {
    color: #fff;
    position: relative;
}

.residence_title h1 {
    position: absolute;
    top: -50px;
    left: 50px;
    z-index: 2;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    letter-spacing: 10px;
    text-shadow: #3A3427 1px 1px 1px;
}

.position_residence_area article:nth-child(2n+1) {
    flex-direction: row;
}

.position_residence_area article:nth-child(2n+1) .residence_img_left {}

/* 2n+1は奇数番目のこと */

.residence_60 {
    width: 60%;
}

.residence_40 {
    width: 40%;
}

.residence_btn_area {
    position: relative;
    height: 50%;
}

.residence_btn {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    display: inline-block;
}

.residence_btn .btnarrow {
    padding: 50px 30px;
    border-radius: 100px;
}

.residence_btn .btnarrow::before {
    right: -7px;
    width: 115px;
}

.residence_btn .btnarrow::after {
    right: 0px;
    height: 15px;
}


.residence_btn .btnarrow:hover::before {
    right: -30px;
    background: #A48041;
}

.residence_btn .btnarrow:hover::after {
    right: -23px;
    background: #A48041;
}



/*===============================================

プラン

================================================*/

.position_plan_area {
    background: url(../images/top_img11.jpg);
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: top right;
    padding-bottom: 100px;
}


.position_plan_area article {
    display: flex;
}

.plan_img_left {
    width: 60%;
    text-align: center;
    padding-top: 100px;
}

.plan_img_left img {
    width: 100%;
    height: auto;
    position: relative;
}

.plan_text {
    box-sizing: border-box;
    width: 40%;
    padding: 5%;
    color: #fff;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}

.plan_text h1 {
    font-size: 2rem;
    padding-left: 20px;
}

.plan_text p {
    line-height: 2.2;
    color: #fff;
}

.plan_title {
    color: #fff;
    position: relative;
}

.plan_title h1 {
    position: absolute;
    top: -50px;
    right: 50px;
    z-index: 2;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    letter-spacing: 10px;
}

.position_plan_area article:nth-child(2n+1) {
    flex-direction: row-reverse;
}

.position_plan_area article:nth-child(2n+1) .plan_img_left {}

/* 2n+1は奇数番目のこと */

.plan_60 {
    width: 60%;
}

.plan_40 {
    width: 40%;
}


.plan_btn_area {
    position: relative;
    height: 50%;
}

.plan_btn {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    display: inline-block;
}

.plan_btn .btnarrow {
    padding: 55px 30px;
    border-radius: 100px;
    width: 130px;
    max-width: 130px;
    text-align: left;
}

.plan_btn .btnarrow::before {
    right: -5px;
    width: 105px;
}

.plan_btn .btnarrow::after {
    height: 15px;
    right: 2px;
}


.plan_btn .btnarrow:hover::before {
    right: -30px;
    background: #A48041;
}

.plan_btn .btnarrow:hover::after {
    right: -23px;
    background: #A48041;
}



/*===============================================

プラン

================================================*/

.position_select_area {
    background:none;
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: top right;
    padding-bottom: 100px;
}

/*
.position_plan_area article {
    display: flex;
}

.plan_img_left {
    width: 60%;
    text-align: center;
    padding-top: 100px;
}

.plan_img_left img {
    width: 100%;
    height: auto;
    position: relative;
}

.plan_text {
    box-sizing: border-box;
    width: 40%;
    padding: 5%;
    color: #fff;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}

.plan_text h1 {
    font-size: 2rem;
    padding-left: 20px;
}

.plan_text p {
    line-height: 2.2;
    color: #fff;
}

.plan_title {
    color: #fff;
    position: relative;
}

.plan_title h1 {
    position: absolute;
    top: -50px;
    right: 50px;
    z-index: 2;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    letter-spacing: 10px;
}

.position_plan_area article:nth-child(2n+1) {
    flex-direction: row-reverse;
}

.position_plan_area article:nth-child(2n+1) .plan_img_left {}
*/
/* 2n+1は奇数番目のこと */
/*
.plan_60 {
    width: 60%;
}

.plan_40 {
    width: 40%;
}


.plan_btn_area {
    position: relative;
    height: 50%;
}

.plan_btn {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    display: inline-block;
}*/

.select_btn .btnarrow {
    padding: 38px 30px;
    border-radius: 100px;
    width: 120px;
    max-width: 120px;
    text-align: left;
}
/*
.plan_btn .btnarrow::before {
    right: -5px;
    width: 105px;
}

.plan_btn .btnarrow::after {
    height: 15px;
    right: 2px;
}


.plan_btn .btnarrow:hover::before {
    right: -30px;
    background: #A48041;
}

.plan_btn .btnarrow:hover::after {
    right: -23px;
    background: #A48041;
}*/

.brand_btn .btnarrow-s{
    padding: 52px 30px!important;
    width: 150px!important;
    max-width: 150px!important;
}

.btnarrow-s::before{
    top: 67%;
}

.btnarrow-s::after{
    top: 57%;
}


/*===============================================

設備・仕様

================================================*/

.position_equipment_area {
    background: url(../images/top_img017-2.jpg);
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: top right;
    padding-bottom: 100px;
}

.equipment_btn .btnarrow {
    padding: 50px 18px;
}
/*
.btnarrow-eq::before{
    top: 67%;
}

.btnarrow-eq::after{
    top: 55%;
}*/
/*===============================================

ロケーション

================================================*/
/*
.position_location_area {
    background: url(../images/top_img017-2.jpg);
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: top right;
    padding-bottom: 100px;
}*/
/*
.location_btn .btnarrow {
    padding: 50px 18px;
}*/
/*
.btnarrow-lo::before{
    top: 67%;
}

.btnarrow-lo::after{
    top: 55%;
}
*/
/*===============================================

ブランド

================================================*/

.position_brand_area {
    padding-bottom: 100px;
    overflow: hidden;
}


.position_brand_area article {
    display: flex;
    flex-direction: row-reverse;
}

.brand_img_left {
    width: 60%;
    text-align: center;
    padding-top: 100px;
}

.brand_img_left img {
    width: 100%;
    height: auto;
    position: relative;
}

.brand_text {
    box-sizing: border-box;
    width: 40%;
    padding: 5%;
    color: #fff;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    position: relative;
}

.brand_text h1 {
    font-size: 2rem;
    padding-left: 20px;
}

.brand_text p {
    line-height: 2.2;
    color: #fff;
}

.brand_title {
    color: #fff;
    position: relative;
}

.brand_title h1 {
    position: absolute;
    top: -50px;
    left: 50px;
    z-index: 2;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    letter-spacing: 10px;
}

.position_brand_area article:nth-child(2n+1) {
    flex-direction: row;
}

.position_brand_area article:nth-child(2n+1) .brand_img_left {}

/* 2n+1は奇数番目のこと */

.brand_60 {
    width: 60%;
}

.brand_40 {
    width: 40%;
}


.brand_btn {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    display: inline-block;
}

.brand_btn .btnarrow {
    padding: 55px 30px;
    border-radius: 100px;
    width: 130px;
    max-width: 130px;
    text-align: left;
    writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
}

.brand_btn .btnarrow::before {
    right: -5px;
    width: 105px;
}

.brand_btn .btnarrow::after {
    height: 15px;
    right: 2px;
}


.brand_btn .btnarrow:hover::before {
    right: -30px;
    background: #A48041;
}

.brand_btn .btnarrow:hover::after {
    right: -23px;
    background: #A48041;
}

@media screen and (max-width:1199px){
    .blue_bk{
        background-color: #131a28;
        width: 15%;
        height: 40%;
        display: block;
        position: absolute;
        top: 40px;
        right: -3px;
        z-index: 1;
    }
    .design_btn .btnarrow-d {
        width: 130px;
    }
    .plan_btn2 .btnarrow-2{
        width: 130px;
    }
    .brand_btn .btnarrow-s {
        padding: 44px 30px!important;
        width: 130px!important;
        max-width: 130px!important;
    }
}

/*===============================================

フッター

================================================*/
.yokoku {
    /*border-top: 1px solid #000;
    border-bottom: 1px solid #000;*/
    padding: 20px 2px;
    text-align: center;
}

.yokoku small {
    color: #000;
    font-size: 14px;
}

.footer_container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer_contact {
    text-align: center;
}

.footer_contact h2 {
    padding-top: 30px;
    padding-bottom: 30px;
    font-size: 6rem;
    font-weight: normal;
}

.footer_contact p {
    line-height: 2;
}

footer {
    background-color: #fff;
    padding: 0px 0 0;
}

footer .gnav_02 {
    margin: 20px auto 0;
    text-align: center;
}

footer .menu_02 {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}

footer .menu_02 li {
    width: 155px;
}

footer .menu_02 a {
    padding: 8px 0;
    width: 100px;
    height: 100%;
    text-align: center;
    transition: 0.3s;
    color: #000;
}

footer .menu_02 a:hover {
    background-color: rgba(255, 255, 255, 0.4);
    color: #A48041;
    border-top: 1px solid #A48041;
}

footer .menu_02 .jp {
    border-top: 1px solid #000;
}

footer .menu_02 .jp:hover {
    border-top: 1px solid #A48041;
}

footer .en,
footer .jp {
    display: block;
}

.footer_logo {
    text-align: center;
    padding: 15px 15px 25px;
}

.btn_footer {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn_footer_a {
    background-color: #A48041;
    margin: 20px;
}

.btn_footer_a a {
    display: block;
    color: #fff;
    padding: 10px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 210px;
    text-align: center;
}

.btn_footer img {
    width: 100%;
    max-width: 40px;
    padding-right: 10px;
}

.footer_logo img {
    max-width: 250px;
    width: 100%;
}

.tel_footer {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;
}

.tel_footer img {
    max-width: 60px;
    width: 100%;
    padding-right: 15px;
}

.tel_footer a {
    font-size: 3.5rem;
    color: #323232;
}

.tel_footer p {
    padding-right: 20px;
}

.teikyu_top {
    display: block;
    font-size: 12px;
    line-height: 0.2;
    text-align: center;
}

.urinushi_footer {
    background-color: #131a28;
    padding: 50px 0;
    text-align: center;
}

.urinushi_footer img {
    max-width: 250px;
    width: 100%;
}

.urinushi_footer p {
    padding: 20px 0 30px;
    color: #fff;
    font-size: 1.2rem;
}

.urinushi_footer span {
    text-align: center;
    display: block;
    color: #fff;
    padding-bottom: 10px;
}

small {
    color: #fff;
}

.urinushi_footer .sponsor {
    margin:50px auto 0;
    width:66%;
    max-width:250px;
}

@media screen and (max-width:1200px){
    .urinushi_footer .sponsor {
        padding-bottom: 30px;
    }
}
/*===========================================

仮想ページのフッター

===========================================*/
.contact_contanier_bg {
    padding: 30px 0 60px;
    background: linear-gradient(to right, #3f566b, #496076, #66829b, #496076, #3f566b);
}

.contact_container {
    max-width: 1200px;
    margin: 10px auto;
}

.contact_container h1 {
    margin: 0;
    color: #fff;
    line-height: 35px;
    text-align: center;
}

.contact_container h1 span {
    font-size: 12px;
    display: block;
}



.shiryo_waku {
    max-width: 700px;
    margin: 0px auto;
    padding: 20px;
    background-color: rgba(0, 0, 20, 0.3);
}


.shiryoraijyo {
    font-size: 24px;
    text-align: center;
    color: orange;
    font-weight: bold;
}

.free_dial_area {
    display: flex;
    justify-content: center;
    /*padding-top: 5px;*/
    align-items: center;
}

.dial_item img {
    width: 46px;
    vertical-align: bottom;
}

.dial_item2 {
    font-size: 50px;
    padding-top: 12px;
    letter-spacing: 0.1em;
    margin-left: 15px;
    color: #fff;
}

.comment {
    text-align: center;
    padding-top: 15px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}

#wrap {
    height: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    padding-top: 20px;
}

.btn_wrap {
    height: 100%;
}


.btn_wrap a {
    display: block;
    margin: 0 10px;
    padding: 25px 0;
    width: 230px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    text-decoration: none;
    position: relative;
    transition: 0.2s ease-in-out;
    background: -moz-linear-gradient(#5f5940, #928861);
    background: -webkit-linear-gradient(#5f5940, #928861);
    background: radial-gradient(#5f5940, #928861);
}


.btn_wrap a:active {
    background: rgba(255, 255, 255, 0.5);
}

.btn_wrap2 {
    height: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}


.btn_wrap2 a {
    display: block;
    margin: 0 10px;
    padding: 25px 0;
    width: 230px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    text-decoration: none;
    position: relative;
    transition: 0.2s ease-in-out;
    background: -moz-linear-gradient(#615f5d, #9fa0a0);
    background: -webkit-linear-gradient(#615f5d, #9fa0a0);
    background: radial-gradient(#615f5d, #9fa0a0);
}

.btn_wrap2 a:active {
    background: rgba(255, 255, 255, 0.5);
}

.light {
    border: 1px solid #fff;
    overflow: hidden;
}

.light:before {
    content: "";
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(-45deg);
    position: absolute;
    top: -10%;
    left: -180%;
    transition: 0.4s ease-in-out;
}

.light:hover:before {
    left: 60%;
}

.tel-number a {
    color: #fff;
    text-decoration: none;
}


/*スライドショー*/

.loop_container{
    overflow: hidden;
}

.loopSlide {
    display: flex;
    width: 100vw;
    /*height: auto;*/
}
.loopSlide img {
    min-width: 100vw;
    /*width: auto;
    height: 100%;*/
    vertical-align: bottom;
}
.loopSlide img:first-child {
    animation: slide1 40s -20s linear infinite;
}
.loopSlide img:last-child {
    animation: slide2 40s linear infinite;
}

@keyframes slide1 {
    0% {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}
@keyframes slide2 {
    0% {
        transform: translateX(0);
    }
    to {
        transform: translateX(-200%);
    }
}
@media screen and (min-width:1600px){
    .w1599{
        display: none;
    }
}
@media screen and (max-width:1599px){
    .w1600{
        display: none;
    }
}

/*フェードイン*/

.fadein {
    opacity: 0;
    transform: translate(0, 50px);
    transition: all 1500ms;
}

.fadein.scrollin {
    opacity: 1;
    transform: translate(0, 0);
}


@media screen and (min-width: 1025px) and (max-width: 1240px) {
    .shiryo_waku {
        /*margin: 60px 20px;*/
    }
}

@media screen and (min-width: 901px) and (max-width: 1024px) {
    .shiryo_waku {
        /*margin: 60px 20px;*/
    }
}

@media screen and (min-width: 769px) and (max-width: 900px) {

    .shiryo_waku {
        /*margin: 60px 20px;*/
    }
}

@media screen and (min-width: 581px) and (max-width: 768px) {

    .btn_footer_shiryou a {
        padding: 6px;
        font-size: 12px;
    }

    .shiryo_waku {
        /*margin: 60px 20px;*/
    }

    .denwa2 {
        font-size: 12px;
        padding-top: 12px;
    }

    .footer_freedial img {
        width: 30px;
    }
}

@media screen and (min-width: 640px) and (max-width: 740px) {

    .entry_title_02 h2:before,
    .entry_title_02 h2:after {
        max-width: 200px;
    }

}

@media screen and (min-width: 600px) and (max-width: 639px) {

    .entry_title_02 h2:before,
    .entry_title_02 h2:after {
        max-width: 150px;
    }

}



@media screen and (min-width: 440px) and (max-width: 599px) {

    .entry_title_02 h2:before,
    .entry_title_02 h2:after {
        max-width: 100px;
    }

}

@media screen and (min-width: 345px) and (max-width: 439px) {

    .entry_title_02 h2:before,
    .entry_title_02 h2:after {
        max-width: 50px;
    }

}

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

    .entry_title_02 h2:before,
    .entry_title_02 h2:after {
        max-width: 30px;
        padding: 0 20px;
    }

    .text {
        max-width: 190px;
    }
}

@media screen and (min-width: 481px) and (max-width: 580px) {


    .shiryo_waku {
        max-width: 100%;
        width: 100%;
    }

}

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

    .shiryo_waku {
        margin: 20px;
    }

    .shiryoraijyo {
        font-size: 16px;
    }

    #wrap {
        display: block;
    }

    .btn_wrap a {
        margin: 0;
        width: 100%;
    }

    .btn_wrap2 a {
        margin: 5px 0 0 0;
        width: 100%;
    }

    .comment {
        letter-spacing: 0;
    }

    .dial_item img {
        width: 21px;
    }

    .dial_item2 {
        font-size: 20px;
    }

    .blue_bk {
        right: 0;
    }

    .entry_title_02 li {
        text-align: left;
    }

    .concept_btn .btnarrow::before {
        right: 15px;
        width: 80px;
    }

    .concept_btn .btnarrow::after {
        height: 15px;
        right: 22px;
    }

    .concept_btn .btnarrow:hover::before {
        right: 10px;
        background: #A48041;
    }

    .concept_btn .btnarrow:hover::after {
        right: 17px;
        background: #A48041;
    }

}

/*===========================================

page top

===========================================*/


.pageTop {
    position: fixed;
    right: 0;
    bottom: 0;
    width: 40px;
    z-index: 30;
}

/***追従するトップへ戻るボタン***/
#page-top {
    position: fixed;
    right: 5px;
    bottom: 100px;
    height: 50px;
    text-decoration: none;
    font-weight: bold;
    transform: rotate(90deg);
    font-size: 90%;
    line-height: 1.5rem;
    color: #737373;
    padding: 0 0 0 35px;
    border-top: solid 1px;
}

#page-top::before {
    content: "";
    display: block;
    position: absolute;
    top: -1px;
    left: 0px;
    width: 15px;
    border-top: solid 1px;
    transform: rotate(35deg);
    transform-origin: left top;
}

@media only screen and (max-width: 1000px) {
    .pageTop {
        width: 40px;
    }

    .pageTop img {
        width: 100%;
        height: auto;
    }
}


/*フェードイン*/
/*==================================================
ふわっ
===================================*/

/* その場で */
.fadeIn {
    animation-name: fadeInAnime;
    animation-duration: 1s;
    animation-delay: 0.3s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeInAnime {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* 下から */

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 0.5s;
    animation-delay: 0.3s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 上から */

.fadeDown {
    animation-name: fadeDownAnime;
    animation-duration: 0.5s;
    animation-delay: 0.6s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeDownAnime {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 左から */

.fadeLeft {
    animation-name: fadeLeftAnime;
    animation-duration: 0.5s;
    animation-delay: 0.3s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeLeftAnime {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 右から */

.fadeRight {
    animation-name: fadeRightAnime;
    animation-duration: 0.5s;
    animation-delay: 0.3s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeRightAnime {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/

.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger {
    opacity: 0;
}


/* レスポンシブ */

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


    .top_img {
        width: 68%;
    }

}


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


    footer {
        padding: 10px 0 10px 0;
    }

}

@media screen and (max-width: 340px) {
    header a img {
        width: 150px;
    }
}

/* ページトップへ */

#page_top {
    width: 100px;
    height: 60px;
    position: fixed;
    right: 0;
    bottom: 85px;
    background: #3f566b;
    opacity: 0.6;
    z-index: 10;
}

#page_top a {
    position: relative;
    display: block;
    width: 100px;
    height: 60px;
    text-decoration: none;
}

#page_top a::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f102";
    font-size: 25px;
    color: #fff;
    position: absolute;
    width: 25px;
    height: 25px;
    top: -25px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
}

#page_top a::after {
    content: "PAGE TOP";
    font-size: 13px;
    color: #fff;
    position: absolute;
    top: 30px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
}

/*フェードイン*/

.fadein {
    opacity: 0;
    transform: translate(0, 50px);
    transition: all 1500ms;
}

.fadein.scrollin {
    opacity: 1;
    transform: translate(0, 0);
}


@media screen and (min-width: 1025px) {
    .sp_br {
        display: none;
    }
}
@media screen and (max-width: 1024px) {
    .pc_br {
        display: none;
    }
}

/*@media screen and (min-width: 992px) {*/
@media screen and (min-width: 1200px) {
    #sp-fixed-menu {
        display: none;
    }
    
}
@media screen and (max-width: 1200px) {
header .gnav_01 .menu_01 li+li, .gnav_02 .menu_02 li+li {
    margin-left: 14px;
}
}
@media screen and (min-width: 992px) and (max-width: 1024px) {
    .screen {
        padding-top: 70px;
    }

    #top_movie_01 {
        height: 100vh;
    }

    .screen .img img {
        /*height: 80vh;*/
    }
}

/*pad*/
/*@media screen and (min-width: 992px) {*/
@media screen and (min-width: 1200px) {
    .openbtn1 {
        display: none;
    }
}
@media screen and (min-width: 1001px) and (max-width: 1199px) {
    .openbtn1 {
    display: unset;
    }
}

/*@media screen and (max-width:991px) {*/
    @media screen and (max-width:1199px) {

    /*メニューをページ下部に固定*/
    #sp-fixed-menu {
        position: fixed;
        width: 100%;
        bottom: 0px;
        font-size: 0;
        opacity: 0.9;
        z-index: 99;
    }

    /*メニューを横並びにする*/
    #sp-fixed-menu ul {
        display: flex;
        list-style: none;
        padding: 0;
        margin: 0;
        width: 100%;
    }

    #sp-fixed-menu li {
        justify-content: center;
        align-items: center;
        width: 50%;
        padding: 0;
        margin: 0;
        font-size: 14px;
        border-right: 1px solid #fff;
    }

    /*左側メニューを緑色に*/
    #sp-fixed-menu li:first-child {
        background: #A48041;
    }

    #sp-fixed-menu li:nth-child(2) {
        background: #A48041;
    }

    /*左側メニューをオレンジ色に*/
    #sp-fixed-menu li:last-child {
        background: #A48041;
    }

    /*ボタンを調整*/
    #sp-fixed-menu li a {
        color: #fff;
        text-align: center;
        display: block;
        width: 100%;
        padding: 10px 20px;
    }

    #sp-fixed-menu img {
        max-width: 25px;
        width: 100%;
    }

    #sp-fixed-menu span {
        display: block;
        font-size: 10px;
        padding-top: 6px;
    }

    .urinushi_footer {

        padding: 50px 0 80px;
    }

    .nav_top_02,
    .nav_top_03,
        .nav_top_04{
        display: none;
    }

}

@media screen and (min-width:768px) and (max-width:1024px) {
    .diagonal {
        padding: 10px 10px 0 15px;
    }

    .diagonal:before {
        transform: rotate(15deg);
    }

    .font30 {
        font-size: 2.4rem;
    }
}

/*sp*/

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


    .location_title span {
        text-align: center;
        display: inline-block;
        width: 100%;
    }

    .location_haikei {
        padding: 5px;
    }

    .flexbg {
        display: flex;
        flex-flow: wrap;
    }

    .location_fx,
    .location_life {
        width: 100%;
        display: block;
    }

    .location_pari20,
    .location_pale20 {
        padding: 5px;
    }
}

@media screen and (max-width: 1024px) {
    .spnone {
        display: none;
    }

    .border_none {
        display: none;
    }
}

@media print {
    .genti {
        max-width: 1040px;
        margin: 100px auto;
    }

    .genti p {
        font-weight: bold;
        font-size: 18px;
        margin-bottom: 8px;
    }

    .genti img {
        max-width: 100%;
        width: 100%;
    }
}

/* 新ヘッダー用レスポンシブ */

@media screen and (max-width: 850px) {
    .top_img {
        width: 68%;
    }
}


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

    footer {
        padding: 0;
    }

}


@media screen and (max-width: 340px) {
    header a img {
        width: 150px;
    }
}


@media screen and (min-width:1050px) and (max-width:1344px) {
    .nav_top_01 {
        padding-left: 30px;
        padding-right: 30px;
        width: 100%;
    }

    .nav_top {
        justify-content: flex-end;
        width: 100%;
    }

    .menu_01 {
        margin-right: 0px;
        width: 100%;
        padding-right: 20px;
        justify-content: flex-end;
    }

    .menu_02 {
        justify-content: space-between;
        height: auto;
    }

    .nav_top_02 a {
        padding: 43px 20px 43px;
    }

    .nav_top_03 a {
        padding: 43px 20px 43px;
    }
    .nav_top_04 a {
        padding: 43px 20px 43px;
    }
}

@media screen and (max-width:1700px) {
    .nav_top {
        position: relative;
        width: 100%;
        justify-content: flex-end;
    }

    .nav_top_01 {
        width: 100%;
    }

    header .gnav_01 .menu_01 li+li {
        margin-left: 0px;
    }

    .tel {
        width: 25%;
    }

    .tel a {
        width: 250px;
        font-size: 2.6rem;
    }

    .tel img {
        max-width: 55px;
    }

    .menu_01 {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        align-items: center;
        margin-top: 0;
        margin-right: 20px;
        padding: 10px 20px 5px;
        width: 100%;
    }

    .menu_02 {
        justify-content: space-between;
        align-items: center;
        height: auto;
        padding-left: 20px;
        padding-right: 20px;
    }
    .menu_02_top{
        padding-left: 0px;
        padding-right: 0px;
    }
    
    .gnav_02 .menu_02_top li+li {
        margin-left: 0px;
    }
    
    .nav_top_02 {
        position: absolute;
        top: 150px;
        right: 0;
    }

    .nav_top_02 a {
        padding: 10px 20px 10px;
        height: auto;
    }

    .nav_top_03 {
        position: absolute;
        top: 220px;
        right: 0;
    }

    .nav_top_03 a {
        padding: 10px 20px 10px;
        height: auto;
    }
    .nav_top_04 {
        position: absolute;
        top: 290px;
        right: 0;
    }

    .nav_top_04 a {
        padding: 10px 20px 10px;
        height: auto;
    }
}
@media screen and (min-width:1201px) and (max-width:1700px) {
    header .gnav_01 .menu_01 li+li{
        margin-right: 10px;
    }
    .menu_01{
        justify-content: flex-end;
    }
    .tel a{
        width: auto;
        text-align: right;
    }
}
@media screen and (min-width:1201px) and (max-width:1344px) {
    .menu_01{
        justify-content: space-between;
    }
    .toplogosp{
        width: 30%;
    }
    .toplogosp a{
        text-align: left;
    }
}

@media screen and (max-width:1158px){
    footer .menu_02 {
        display: none;
    }
}
@media screen and (max-width:1024px) {

    .concept_img_top_01 img {
        width: 100%;
        max-width: 200px;
    }

    .concept_img_top_02 img {
        width: 100%;
        max-width: 200px;
    }

    .concept_img_top_03 img {
        width: 100%;
        max-width: 200px;
    }

    .concept_img_h1 {
        margin-top: 80px;
        margin-right: 0px;
    }

    .concept_txt01 {
        width: 60%;
        padding-left: 20px;
    }

    .concept_img03 {
        width: 40%;
        padding-right: 20px;
    }

    
}


/*@media screen and (max-width:991px) {*/
@media screen and (max-width:1199px) {
    .menu_02 {
        height: auto;
        display: none;
    }

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

    .sp_none991 {
        display: none;
    }

    .menu_01 {
        justify-content: center;
    }


}

@media only screen and (max-width: 1024px) {
    .screen .content {
        top: 44%;
    }
}

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

    #loading-wrapper img {
        max-width: 150px;
    }

    .screen .content {
        top: 30%;
    }

    .screen03 .mv_txt {
        display: flex;
        width: 100%;
        padding: 0 10%;
        top: 35%;
        left: 0;
    }

    .screen03 .mv_text_top,
    .screen03 .mv_text_btm {
        width: 50%
    }

    .screen03 .mv_text_top {
        margin-bottom: 0;
        padding-right: 5%;
    }
}
@media screen and (min-width: 401px) and (max-width: 767px) {
/*自転車のところ*/
.diagonal:nth-child(3)::before{
    display: none;
}
}
@media screen and (max-width: 767px) {
    .toplogosp img {
        max-width: 150px;
    }

    .openbtn1 {
        top: 10px;
    }





    .concept_1300 {
        flex-wrap: wrap;
    }


    .concept_txt01 {
        width: 100%;
        padding-right: 20px;
    }

    .concept_img03 {
        width: 100%;
        padding-right: 0px;
    }

    .concept_img_left {
        width: 100%;
    }

    .concept_img_h1 h1 {
        font-size: 3.6rem;
    }

    .concept_title h1 {
        font-size: 3.6rem;
    }

    .position_concept_area article:nth-child(2n+1) {
        flex-direction: column-reverse;
    }

    .text_design {
        width: 100%;
    }

    .text {
        -ms-writing-mode: unset;
        writing-mode: unset;
        width: 100%;
    }

    .text h1 {
        padding-left: 0;
    }

    .concept_btn {
        position: static;
        top: 0;
        left: 50%;
        transform: translate(-0%, -0%);
        -webkit-transform: translate(-0%, -0%);
        -ms-transform: translate(-0%, -0%);
    }

    .concept_btn_area {
        text-align: right;
        margin-right: 20px;
    }

    .concept_btn .btnarrow {
        /*padding: 35px 20px;*/
        padding: 54px 20px;
    }

    .concept_btn .btnarrow::before {
        right: 5px;
        /*width: 70px;*/
        width: 105px;
    }

    .concept_btn .btnarrow::after {
        /*height: 10px;
        right: 10px;*/
        height: 15px;
        right: 11px;
    }


    /*プラン箇所のボタン*/

    .position_residence_area article:nth-child(2n+1) {
        flex-direction: column-reverse;
    }

    .residence_img_left {
        width: 100%;
        background: none;
    }

    .residence_text {
        width: 100%;
        -ms-writing-mode: unset;
        writing-mode: unset;
    }

    .residence_text h1 {
        padding-left: 0;
    }

    .position_residence_area article {
        flex-direction: row;
    }


    .residence_btn {
        position: static;
        top: 0;
        left: 50%;
        transform: translate(-0%, -0%);
        -webkit-transform: translate(-0%, -0%);
        -ms-transform: translate(-0%, -0%);
    }

    .residence_btn_area {
        text-align: right;
        margin-right: 20px;
    }

    .residence_btn .btnarrow {
        /*padding: 35px 15px;
        border-radius: 100px;*/
        
        padding: 52px 30px;
        border-radius: 100px;
    }

    .blue_bk {
        right: -13px;
    }

    .residence_btn .btnarrow::before {
        right: 0;
        /*width: 85px;*/
        width: 105px;
    }

    .residence_btn .btnarrow::after {
        /*right: 4px;
        height: 11px;*/
        right: 6px;
        height: 14px;
    }

    .residence_title h1 {
        font-size: 3.6rem;
    }

    .residence_btn {
        top: 0;
    }

    /*ギャラリーのボタン箇所*/

    .position_plan_area article:nth-child(2n+1) {
        flex-direction: column-reverse;
    }

    .plan_img_left {
        width: 100%;
    }

    .plan_text {
        width: 100%;
        -ms-writing-mode: unset;
        writing-mode: unset;
    }


    .plan_btn {
        position: static;
        top: 0;
        left: 50%;
        transform: translate(-0%, -0%);
        -webkit-transform: translate(-0%, -0%);
        -ms-transform: translate(-0%, -0%);
    }

    .plan_btn_area {
        text-align: right;
        margin-right: 20px;
    }

    .plan_btn .btnarrow {
        /*padding: 35px 30px;
        width: 95px;
        max-width: 95px;*/
        padding: 53px 30px;
        width: 130px;
        max-width: 130px;
    }

    .plan_btn .btnarrow::before {
        right: 0;
        /*width: 75px;*/
        width: 100px;
    }

    .plan_btn .btnarrow::after {
        /*height: 11px;
        right: 5px;*/
        height: 15px;
        right: 6px;
    }

    .plan_btn .btnarrow:hover::before {
        right: -5px;
        background: #A48041;
    }

    .plan_btn .btnarrow:hover::after {
        right: 0;
        background: #A48041;
    }

    .plan_title h1 {
        font-size: 3.6rem;
    }


    .position_brand_area article:nth-child(2n+1) {
        flex-direction: column-reverse;
    }

    .brand_text {
        -ms-writing-mode: unset;
        writing-mode: unset;
        width: 100%;
    }

    .brand_text h1 {
        padding-left: 0;
    }

    .brand_title h1 {
        font-size: 3.6rem;
    }

    .brand_img_left {
        width: 100%;
    }

    .brand_btn {
        position: static;
        transform: translate(-0%, -0%);
        -webkit-transform: translate(-0%, -0%);
        -ms-transform: translate(-0%, -0%);
        display: block;
        text-align: right;
    }

    .blue_bk {
        width: 20%;
        right: -5px;
        overflow: hidden;
    }

    #top_movie_01_sp {
        height: 25vh;
        /*display: none !important;*/
    }

    .concept_img_top_01 img {
        width: 100%;
        max-width: 250px;
    }

    .concept_img_top_02 img {
        width: 100%;
        max-width: 250px;
    }

    .concept_img_top_03 img {
        width: 100%;
        max-width: 250px;
    }

    .screen .content {
        top: 30%;
    }

    .screen .line {
        height: 300px;
    }

    .screen03 .mv_txt {
        top: 12.5%;
    }

    .entry_txt {
        flex-wrap: wrap;
    }

    .diagonal {
        width: 50%;
        padding: 10px 10px 0 15px;
    }

    .brand_btn .btnarrow {
        /*width: 105px;
        max-width: 105px;
        padding: 40px 30px;*/
        width: 140px;
        max-width: 140px;
        padding: 60px 30px;
    }

    .brand_btn .btnarrow::before {
        right: 0;
        width: 100px;
    }

    .brand_btn .btnarrow::after {
        /*height: 12px;
        right: 5px;*/
        height: 17px;
        right: 8px;
    }

    .btnarrow-s::after {
        top: 54%;
    }
    
    
    
    .brand_btn .btnarrow:hover::before {
        right: -10px;
        background: #A48041;
    }

    .brand_btn .btnarrow:hover::after {
        right: -5px;
        background: #A48041;
    }

    
    .equipment_btn .btnarrow {
        padding: 52px 20px!important;
    }
    .btnarrow-s::before {
        top: 67%;
        width: 100px!important;
    }
    
    .brand_btn .btnarrow-lo::before {
        right: 0;
        width: 100px;
    }
    
    .diagonal:before {
        transform: rotate(15deg);
    }

    .font30 {
        font-size: 2.4rem;
    }

    .entry_title h2 {
        font-size: 2.6rem;
    }

    .entry_title_01 h2 span {
        font-size: 2.0rem!important;
    }


    .footer_contact h2 {
        padding: 50px 20px 0;
        font-size: 4rem;
    }

    .footer_contact p {
        padding-left: 20px;
        padding-right: 20px;
        text-align: left;
    }

    .btn_footer {
        flex-wrap: wrap;
    }

    .btn_footer_a a {
        width: 100%;
    }

    .tel_footer {
        flex-wrap: wrap;
    }

    .tel_footer p {
        width: 100%;
        padding: 0 20px 50px;
    }

    .tel_footer a {
        font-size: 3.0rem;
    }

    .tel_footer img {
        max-width: 40px;
    }

    .urinushi_footer {
        padding: 50px 20px 80px;
    }

    .yokoku {
        text-align: left;
        padding: 2px 20px;
    }
}

@media screen and (max-width: 768px) {
    .on-active .screen .img-list {
        margin-left: 0px;
    }
    .concept_area{
        background-position: bottom;
    }
}

@media screen and (max-width: 400px) {
    .entry_title h2 {
        font-size: 2.2rem!important;
    }

    .entry_title_01 h2 span {
        font-size: 1.9rem!important;
    }

    .diagonal {
        width: 100%;
        padding: 15px 10px 0 15px;
    }

    .diagonal:before {
        left: 50%;
        height: 20px;
        transform: rotate(90deg);

    }
    
    .sub_title_area h3{
        font-size: 2.2rem!important;
    }
    
    .entry_title_02 h2{
        padding: 0 45px;
    }
    
}
@media screen and (max-width: 365px) {
    .concept_60{
        width: 50%;
    }
    .concept_40{
        width: 50%;
    }
    .plan_60{
        width: 50%;
    }
    .plan_40{
        width: 50%;
    }
    .residence_60 {
        width: 50%;
    }
    .residence_40 {
        width: 50%;
    }
}
@media screen and (min-width: 341px) and (max-width: 354px) {
    .entry_title_01 h2 span {
        font-size: 1.7rem!important;
    }
    .sub_title_area h3 {
        font-size: 2.0rem!important;
    }

}
@media screen and (max-width: 340px) {
    .entry_title_01 h2 span {
        font-size: 1.5rem!important;
    }

    .entry_title h2 {
        font-size: 1.6rem;
    }
    .entry_title h2 {
        font-size: 1.8rem!important;
    }
    .sub_title_area h3{
        font-size: 1.8rem!important;
    }
}

@media screen and (max-width: 307px) {
    .entry_title_01 h2 span {
        font-size: 1.4rem!important
    }
    .sub_title_area h3 {
        font-size: 1.7rem!important;
    }
}