/*--------------------------------------------------
 共通
 --------------------------------------------------*/
html {
	font-size: 62.5%; /* 16px*62.5%=10px */
}

body {
	color: #595757;
	background-color: #fff;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
	font-weight: 400;
	font-size: 1.4rem;
	font-feature-settings: "palt";
	letter-spacing: 0.025em;
}

.wrapper {
    width: 100%;
    height: auto;
    text-align: center;
    padding: 0;
    margin: 0;
}

.inner-box {
    box-sizing: border-box;
    width: 1200px;
    position: relative;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
}

/*--------------------------------------------------
 ヘッダー
 --------------------------------------------------*/
 .header {
    padding-top: 32px;
    padding-bottom: 16px;
 }

 .header .wrapper .inner-box {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    overflow: visible;
 }

 .header .wrapper .inner-box .left-part {
     width: 250px;
 }

 .header .wrapper .inner-box .right-part {
     width: 380px;
     display: flex;
     flex-wrap: nowrap;
     justify-content: space-between;
     align-items: center;
 }

 .header .wrapper .inner-box .banner-list {
     width: 286px;
     display: flex;
     flex-wrap: nowrap;
     justify-content: space-between;
     align-items: center;
 }


 .header .wrapper .inner-box .banner-list .banner-item:first-of-type {
    padding-bottom: 16px;
 }

 .sns-list {
    width: 79px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}


/*--------------------------------------------------
 フッター
 --------------------------------------------------*/
 .top .footer .menu {
    background-color: #595757;
    height: 20px;
    padding: 14px 0;
 }

 .top .footer .menu a {
     color: #fff;
     line-height: 24px;
     padding: 0 20px;     
 }

 .top .footer .menu a:not(:last-of-type) {
     border-right: solid 1px #fff;
 }


 .top .footer .footer-bottom {
     height: 48px;
     line-height: 48px;
     box-sizing: border-box;
     display: flex;
     flex-wrap: nowrap;
     justify-content: space-between;
     align-items: center;
 }

 .top .footer .footer-bottom li:first-of-type a {
    color: #595757;
    margin-right: 20px;
 }

 .top .footer .footer-bottom li:first-of-type a:first-of-type {
     font-size: 1.8rem;
 }

 .top .footer .footer-bottom li:first-of-type a:last-of-type {
    font-size: 1.6rem;
    font-weight: bold;
}

.top .footer .footer-bottom li:first-of-type a:last-of-type::before {
    content: "▶︎";
    color: #b08046;
    margin-right: 5px;
    font-size: 1.4rem;
}
/*--------------------------------------------------
 メイン
 --------------------------------------------------*/
.main {
    position: relative;
}

/*--------------------------------------------------
 ホーム
 --------------------------------------------------*/
.top .main .wrapper .inner-box {
    height: calc(100vh - 194px);
    min-height: 550px;
}

 .top .main-visual {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.top .main-visual-slider-item {
    width: 100%;
    height: calc(100vh - 194px);
    background-repeat: no-repeat;
    background-size:cover;
    background-position: center center;
}

.top .main-visual-slider-item.top_bg_img1 {
    background-image: url(../img/main_bg_1.jpg);
}

.top .main-visual-slider-item.top_bg_img2 {
    background-image: url(../img/main_bg_2.jpg);
}

.top .content {
    width: 100%;
    position: absolute;
    z-index: 999;
    height: calc(100vh - 194px);
    min-height: 550px;
}

.top .content .catchcopy {
    font-size: 3.2rem;
    font-weight: bold;
    color: #fff;
    margin-top: 190px;
    opacity: 0;
}

.top .content .catchcopy.load {
    opacity: 100;
    transition: all 2s;
}

.top .navbutton-list {
    width: 100%;
    height: 200px;
    position: absolute;
    background-color: rgba(256, 256, 256, 0.5);
    bottom: 0;

    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.top .navbutton-item {
    width: 300px;
    height: 150px;
    box-sizing: border-box;
    background-color: #fff;
    cursor: pointer;
    background-image: url(../img/icon_down.png);
    background-repeat: no-repeat;
    background-position: bottom 20px center;
    text-align: center;
    padding: 20px;
}

.top .navbutton-item:not(:last-of-type) {
    margin-right: 40px;
}

.top .navbutton-item:nth-of-type(1) {
    border: solid #93ab36 4px;
}

.top .navbutton-item:nth-of-type(2) {
    border: solid #ca9552 4px;
}

.top .navbutton-item:nth-of-type(3) {
    border: solid #93c6ce 4px;
}

.top .navbutton-item h3 {
    font-size: 1.8rem;
    font-weight: bold;
}

.top .navbutton-item h3::before {
    content: "【";
}

.top .navbutton-item h3::after {
    content: "】";
}

.top .navbutton-item p {
    margin-top: 10px;
    line-height: 1.6;
}


