@charset "utf-8";

/* @group ===== base ===== */
/* ================================================================= */

html{
	font-size: 10px;/*remの計算を簡単にするため*/
}

body{
	/*overflow-x: hidden;短いページでもスクロールバーを出す。*/
	font-size: 16px;
	line-height: 1.5;
	color: #333;
    font-family: 'Noto Sans JP', sans-serif;
    -webkit-text-size-adjust: 100%;
    word-break: break-all;
    font-feature-settings: 'palt' 1;
}
@media all and (max-width: 1179px){
    html.active body{
        height: 100%;
        overflow: hidden;
    }
}
@media all and (max-width: 1024px){
    body{
        font-size: 15px;
    }
}

main {
	display: block;
}
.wrapper{
    overflow: hidden;
}


/*IE11用 display:noneだとjQueryでサイズを取得できない。*/
@media all and (-ms-high-contrast:none) {
	*::-ms-backdrop, template {
		visibility: hidden;
		width: 0px;
		height: 0px;
		overflow: hidden;
		speak:none;/* 読み上げ無視。効果は不明。*/
	}
}

img,
svg,
iframe,
picture,
video {
	vertical-align: top;
}
img {
	max-width: 100%;
    height: auto;
}


a {
    color: #004098;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

a:hover {
    
}

@media (hover:none) {
    a:hover { 
    	
    }
    
    a.over:hover {
		
	}
}

.clearfix:after {
	content: "";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.inline-block{
	display: inline-block;
}




/* show hide
スマホ、タブレット、パソコンで切り分ける場合

pc:パソコン
tb:タブレット
sp:スマホ（.is-spと同じ）
pctb:パソコンとタブレット（.is-pcと同じ）
tbsp:タブレットとスマホ

*/

/* スマホ */
@media (max-width: 599px) {
  .is-pc,
  .is-tab{
    display: none;
  }
}

/* タブレット */
@media (min-width: 600px) and (max-width: 1024px) { 
  .is-pc,
  .is-sp {
    display: none;
  }
}

/* パソコン */
@media (min-width: 1025px) { 
  .is-tab,
  .is-sp{
    display: none;
  }
}

@media (min-width: 768px){
    .is-767{
        display: none;
    }
}
@media (max-width: 767px){
    .is-768{
        display: none;
    }
}


*{
    box-sizing: border-box;
}
.inner{
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 80px;
}
.box-shadow{
  box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.2);
}
.btn{
    color: #fff;
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-align: center;
    display: inline-block;
    background-color: #f18e2b;
    border: 2px solid transparent;
    border-radius: 40px;
    min-width: 251px;
    cursor: pointer;
    padding: 14px 2.5em 16px;
    
}
.btn:hover{
    color: #f18e2b;
    background-color: #fff;
    border: 2px solid #f18e2b;
}
@media (hover:none) {
    .btn:hover{
        color: #fff;
        background-color: #f18e2b;
        border: 2px solid transparent;
    }
}
@media all and (max-width: 1359px){
    .inner{
        max-width: 1260px;
/*        margin: 0 auto;*/
        padding: 0 30px;
    }
    .box-shadow{
/*      box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.2);*/
    }
    .btn{
/*        color: #fff;*/
/*        font-size: 1.8rem;*/
/*        font-weight: 500;*/
/*        letter-spacing: 0.05em;*/
/*        text-align: center;*/
/*        display: inline-block;*/
/*        background-color: #f18e2b;*/
/*        border: 2px solid transparent;*/
/*        border-radius: 40px;*/
/*        min-width: 251px;*/
/*        padding: 14px 2.5em 16px;*/

    }
}
@media all and (max-width: 1024px){
    .inner{
/*        max-width: 1260px;*/
/*        margin: 0 auto;*/
/*        padding: 0 30px;*/
    }
    .box-shadow{
/*      box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.2);*/
    }
    .btn{
/*        color: #fff;*/
        font-size: 1.6rem;
/*        font-weight: 500;*/
/*        letter-spacing: 0.05em;*/
/*        text-align: center;*/
/*        display: inline-block;*/
/*        background-color: #f18e2b;*/
/*        border: 2px solid transparent;*/
/*        border-radius: 40px;*/
        min-width: 236px;
        cursor: pointer;
        padding: 14px 2.5em 17px;

    }
}
@media all and (max-width: 599px){
    .inner{
/*        max-width: 1260px;*/
/*        margin: 0 auto;*/
        padding: 0 15px;
    }
    .box-shadow{
/*      box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.2);*/
    }
    .btn{
/*        color: #fff;*/
/*        font-size: 1.6rem;*/
/*        font-weight: 500;*/
/*        letter-spacing: 0.05em;*/
/*        text-align: center;*/
/*        display: inline-block;*/
/*        background-color: #f18e2b;*/
/*        border: 2px solid transparent;*/
/*        border-radius: 40px;*/
/*        min-width: 236px;*/
        padding: 14px 1.7em 17px;

    }
}



/*----------------------------------------
header
----------------------------------------*/
.header{
    background-color: #004098;
}
.header .inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: none;
    padding:0;
}

.header__logo{
    width: 200px;
    padding: 30px 20px;
}
.header__logo a{
    display: inline-block;
    line-height: 1;
}
.header__logo--hamburger{
    display: none;
}
.header__logo>a:hover{
    opacity: 0.5;
}
@media (hover:none) {
    .header__logo>a:hover{
        opacity: 1;
    }
}
.header__nav{
    
}
.header__nav__inner{
    display: flex;
    align-items: center;
}
.header__nav__list{
    display: flex;
    align-items: center;
}
.header__nav__item{
    padding-right: 30px;
}
.header__nav__item--top{
    display: none;
}
.header__nav__item>a{
    color: #333;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1;
}
.header__nav__item>a:hover{
    color: #f18e2b
}
@media (hover:none) {
    .header__nav__item>a:hover{
        color: #333
    }
}
.header__nav__contact{

}
.header__nav__contact>a{
    color: #f18e2b;
    font-size: 1.5rem;
    line-height: 1;
    text-align: center;
    display: inline-block;
    background-color: #fff;
    border: 2px solid #f18e2b;
    border-radius: 20px;
    min-width: 140px;
    padding: 9px 8px  11px;
    
}
.header__nav__contact>a:hover{
    color: #fff;
    background-color: #f18e2b;
}
@media (hover:none) {
    .header__nav__contact>a:hover{ 
        color: #f18e2b;
    	background-color: #fff;
    }
}
.hamburger{
    display: none;
}
@media all and (max-width: 1179px) {
    .header{
/*        background-color: #f4f5f7;*/
/*        padding: 26px 0 20px;*/
    }
    .header .inner{
/*        display: flex;*/
/*        justify-content: space-between;*/
/*        align-items: center;*/
/*        max-width: none;*/
/*        padding: 0 40px 0 52px;*/
        position: relative;
    }
    .header__logo{
/*        width: 338px;*/
    }
    .header__logo--hamburger{
        display: block;
        width: 278px;
        padding: 50px 0 30px;
    }
    .header__nav{
        position: fixed;
        top: 0;
        left: 0;
        z-index: 20000;
        width: 100%;
        height: 100vh;
        background-color: #ffeea1;
        transition: all 0.2s ease-in-out;
        opacity: 0;
        visibility: hidden;
        overflow: auto;
/*        display: flex;*/
/*        align-items: center;*/
    }
    .header__nav.active{
        display: block;
        visibility: visible;
        opacity: 1;
    }
    .header__nav__inner{
        flex-direction: column;
        max-width: 768px;
        margin: 0 auto;
        padding: 0 30px;
    }
    .header__nav__list{
/*        display: flex;*/
        align-items: flex-start;
        flex-direction: column;
        width: 100%;
        
    }
    .header__nav__item{
/*        padding-right: 31px;*/
        width: 100%;
        border-bottom: 1px solid #2d2300;
    }
    .header__nav__item--top{
        display: block;
    }
    .header__nav__item>a{
/*        color: #333;*/
        font-size: 1.7rem;
/*        font-weight: 500;*/
/*        line-height: 1;*/
        padding: 22px 20px;
        display: block;
        position: relative;
        
    }
    .header__nav__item>a::after{
        position: absolute;
        top: 50%;
        right: -11px;
        width: 6px;
        height: 6px;
        border-top: 1px solid #2d2300;
        border-right: 1px solid #2d2300;
        content: '';
        transform: translateY(-50%) rotate(45deg);
        pointer-events: none;
    }
    .header__nav__contact{
        margin-top: 34px;
        padding-bottom: 34px;
    }
    .header__nav__contact>a{
/*        color: #f18e2b;*/
        font-size: 1.7rem;
/*        line-height: 1;*/
/*        text-align: center;*/
/*        display: inline-block;*/
/*        background-color: #fff;*/
/*        border: 2px solid #f18e2b;*/
        border-radius: 50px;
        min-width: 320px;
        padding: 16px 8px 18px;
    }
    .hamburger{
        display:block;
        position: absolute;
        right: 40px;
        top: 0;
        z-index: 20000;
    }
    .hamburger__inner{
        width: 46px;
        height: 46px;
        border-radius: 50%;
        background-color: #fff;
        position: relative;
        cursor: pointer;
    }
    .hamburger__inner span{
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 12px;
        width: 22px;
        height: 3px;
        background-color: #F18E2B;
        border-radius: 3px
    }
    .hamburger__inner span:nth-of-type(1){
        top: 14px;
    }
    .hamburger__inner span:nth-of-type(2){
        top: 22px;
    }
    .hamburger__inner span:nth-of-type(3){
        top: 30px;
    }
    .hamburger.active .hamburger__inner span:nth-of-type(1){
        transform: rotate(-45deg) translate(-6px,6px);
    }
    .hamburger.active .hamburger__inner span:nth-of-type(2){
        opacity: 0;
    }
    .hamburger.active .hamburger__inner span:nth-of-type(3){
        transform: rotate(45deg) translate(-5px,-6px);
    }
}
@media all and (max-width: 1024px) {
    .header{
/*        background-color: #f4f5f7;*/
        /*padding: 19px 0 16px;*/
    }
    .header .inner{
/*        display: flex;*/
/*        justify-content: space-between;*/
/*        align-items: center;*/
/*        max-width: none;*/
        /*padding: 0 30px 0;*/
/*        position: relative;*/
    }
    .header__logo{
        /*width: 241px;*/
    }
    .header__logo--hamburger{
/*        display: block;*/
        width: 241px;
        padding: 40px 0 25px;
    }
    .header__nav{
/*        display: none;*/
/*        position: fixed;*/
/*        top: 0;*/
/*        left: 0;*/
/*        z-index: 20000;*/
/*        width: 100%;*/
/*        height: 100%;*/
/*        background-color: #ffeea1;*/
/*        transition: all 0.2s ease-in-out;*/
/*        opacity: 0;*/
/*        display: flex;*/
/*        align-items: center;*/
    }
    .header__nav.active{
/*        display: block;*/
/*        opacity: 1;*/
    }
    .header__nav__inner{
/*        flex-direction: column;*/
/*        max-width: 768px;*/
/*        margin: 0 auto;*/
/*        padding: 0 30px;*/
    }
    .header__nav__list{
/*        display: flex;*/
/*        align-items: flex-start;*/
/*        flex-direction: column;*/
/*        width: 100%;*/
        
    }
    .header__nav__item{
/*        padding-right: 31px;*/
/*        width: 100%;*/
/*        border-bottom: 1px solid #2d2300;*/
    }
    .header__nav__item--top{
/*        display: block;*/
    }
    .header__nav__item>a{
/*        color: #333;*/
        font-size: 1.5rem;
/*        font-weight: 500;*/
/*        line-height: 1;*/
        padding: 20px 20px;
/*        display: block;*/
/*        position: relative;*/
        
    }
    .header__nav__item>a::after{
/*        position: absolute;*/
/*        top: 50%;*/
/*        right: -11px;*/
/*        width: 6px;*/
/*        height: 6px;*/
/*        border-top: 1px solid #2d2300;*/
/*        border-right: 1px solid #2d2300;*/
/*        content: '';*/
/*        transform: translateY(-50%) rotate(45deg);*/
/*        pointer-events: none;*/
    }
    .header__nav__contact{
        margin-top: 30px;
        padding-bottom: 30px;
    }
    .header__nav__contact>a{
/*        color: #f18e2b;*/
        font-size: 1.6rem;
/*        line-height: 1;*/
/*        text-align: center;*/
/*        display: inline-block;*/
/*        background-color: #fff;*/
/*        border: 2px solid #f18e2b;*/
/*        border-radius: 50px;*/
        min-width: 212px;
        padding: 14px 8px 16px;
    }
    .hamburger{
/*        display:block;*/
/*        position: absolute;*/
        right: 30px;
        top: -8px;
/*        z-index: 1000;*/
    }
    .hamburger__inner{
/*        width: 46px;*/
/*        height: 46px;*/
/*        border-radius: 50%;*/
/*        background-color: #fff;*/
/*        position: relative;*/
/*        cursor: pointer;*/
    }
    .hamburger__inner span{
/*        display: inline-block;*/
/*        transition: all .4s;*/
/*        position: absolute;*/
/*        left: 50%;*/
/*        transform: translateX(-50%);*/
/*        width: 22px;*/
/*        height: 3px;*/
/*        background-color: #F18E2B;*/
/*        border-radius: 3px*/
    }
    .hamburger__inner span:nth-of-type(1){
/*        top: 14px;*/
    }
    .hamburger__inner span:nth-of-type(2){
/*        top: 22px;*/
    }
    .hamburger__inner span:nth-of-type(3){
/*        top: 30px;*/
    }
}
@media all and (max-width: 599px) {
    .header{
/*        background-color: #f4f5f7;*/
        padding:0;
    }
    .header .inner{
/*        display: flex;*/
/*        justify-content: space-between;*/
/*        align-items: center;*/
/*        max-width: none;*/
        padding: 0 0;
/*        position: relative;*/
    }
.header__logo {
    width: 140px;
    padding: 16px;
}
    .header__logo--hamburger{
/*        display: block;*/
        width: 190px;
/*        padding: 40px 0 25px;*/
    }
    .header__nav{
/*        display: none;*/
/*        position: fixed;*/
/*        top: 0;*/
/*        left: 0;*/
/*        z-index: 20000;*/
/*        width: 100%;*/
/*        height: 100%;*/
/*        background-color: #ffeea1;*/
/*        transition: all 0.2s ease-in-out;*/
/*        opacity: 0;*/
/*        display: flex;*/
/*        align-items: center;*/
    }
    .header__nav.active{
/*        display: block;*/
/*        opacity: 1;*/
    }
    .header__nav__inner{
/*        flex-direction: column;*/
/*        max-width: 768px;*/
/*        margin: 0 auto;*/
/*        padding: 0 30px;*/
    }
    .header__nav__list{
/*        display: flex;*/
/*        align-items: flex-start;*/
/*        flex-direction: column;*/
/*        width: 100%;*/
        
    }
    .header__nav__item{
/*        padding-right: 31px;*/
/*        width: 100%;*/
/*        border-bottom: 1px solid #2d2300;*/
    }
    .header__nav__item--top{
/*        display: block;*/
    }
    .header__nav__item>a{
/*        color: #333;*/
/*        font-size: 1.5rem;*/
/*        font-weight: 500;*/
/*        line-height: 1;*/
/*        padding: 20px 20px;*/
/*        display: block;*/
/*        position: relative;*/
        
    }
    .header__nav__item>a::after{
/*        position: absolute;*/
/*        top: 50%;*/
/*        right: -11px;*/
/*        width: 6px;*/
/*        height: 6px;*/
/*        border-top: 1px solid #2d2300;*/
/*        border-right: 1px solid #2d2300;*/
/*        content: '';*/
/*        transform: translateY(-50%) rotate(45deg);*/
/*        pointer-events: none;*/
    }
    .header__nav__contact{
/*        margin-top: 30px;*/
/*        padding-bottom: 30px;*/
    }
    .header__nav__contact>a{
/*        color: #f18e2b;*/
/*        font-size: 1.6rem;*/
/*        line-height: 1;*/
/*        text-align: center;*/
/*        display: inline-block;*/
/*        background-color: #fff;*/
/*        border: 2px solid #f18e2b;*/
/*        border-radius: 50px;*/
/*        min-width: 212px;*/
/*        padding: 14px 8px 16px;*/
    }
    .hamburger{
/*        display:block;*/
/*        position: absolute;*/
        right: 15px;
/*        top: -8px;*/
/*        z-index: 1000;*/
    }
    .hamburger__inner{
/*        width: 46px;*/
/*        height: 46px;*/
/*        border-radius: 50%;*/
/*        background-color: #fff;*/
/*        position: relative;*/
/*        cursor: pointer;*/
    }
    .hamburger__inner span{
/*        display: inline-block;*/
/*        transition: all .4s;*/
/*        position: absolute;*/
/*        left: 50%;*/
/*        transform: translateX(-50%);*/
/*        width: 22px;*/
/*        height: 3px;*/
/*        background-color: #F18E2B;*/
/*        border-radius: 3px*/
    }
    .hamburger__inner span:nth-of-type(1){
/*        top: 14px;*/
    }
    .hamburger__inner span:nth-of-type(2){
/*        top: 22px;*/
    }
    .hamburger__inner span:nth-of-type(3){
/*        top: 30px;*/
    }
}


/*----------------------------------------
breadcrumb
----------------------------------------*/
.breadcrumb{
    padding-top: 17px;
}
.breadcrumb__list{
    display: flex;
}
.breadcrumb__item{
    line-height: 1;
    position: relative;
    padding-right: 28px;
}
.breadcrumb__item:not(:last-of-type)::after{
    position: absolute;
    top: 50%;
    right: 12px;
    width: 6px;
    height: 6px;
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    content: '';
    transform: translateY(-50%) rotate(45deg);
    pointer-events: none;
}
.breadcrumb__item>a,.breadcrumb__item>span{
    color: #333;
    font-size: 1.3rem;
    line-height: 1.1;
}
.breadcrumb__item>a:hover{
    color: #f18e2b;
}
@media (hover:none) {
    .breadcrumb__item>a:hover{
        color: #333;
    }
}
@media all and (max-width: 1024px) {
    .breadcrumb{
        padding-top: 14px;
    }
    .breadcrumb__list{
/*        display: flex;*/
    }
    .breadcrumb__item{
/*        line-height: 1;*/
/*        position: relative;*/
        padding-right: 24px;
    }
    .breadcrumb__item:not(:last-of-type)::after{
/*        position: absolute;*/
/*        top: 50%;*/
        display: inline-block;
        vertical-align: middle;
        right: 8px;
        width: 5px;
        height: 5px;
/*        border-top: 1px solid #333;*/
/*        border-right: 1px solid #333;*/
/*        content: '';*/
/*        transform: translateY(-50%) rotate(45deg);*/
/*        pointer-events: none;*/
    }
    .breadcrumb__item>a,.breadcrumb__item>span{
/*        color: #333;*/
        font-size: 1.2rem;
        display: block;
/*        line-height: 1.1;*/
    }
}



/*----------------------------------------
main common
----------------------------------------*/
.main{
    background-image: url("../images/main_bg.png");
    background-repeat: repeat;
    background-size: 51px 51px;
    background-position: center;
    background-color: #f4f5f7;
}
.sec__title{
    margin: 0 auto;
}
@media all and (max-width: 1024px){
    .main{
/*        background-image: url("../images/main_bg.png");*/
/*        background-repeat: repeat;*/
        background-size: 45px 45px;
/*        background-position: center;*/
    }
    .sec__title{
/*        margin: 0 auto;*/
    }
}




/*----------------------------------------
footer
----------------------------------------*/
.footer{
    
}
.footer__deco{
    position: relative;
}
.footer__deco.inner::before{
    content: "";
    display: inline-block;
    vertical-align: middle;
    background-image: url("../images/footer_deco.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
    width: 2180px;
    height: 198px;
    position: absolute;
    top: -168px;
    right: 0;
    z-index: 100;
}
.footer__top{
    background-color: #896553;
    min-height: 300px;
    padding-top: 59px;
    padding-bottom: 21px;
}
.footer__top .inner{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer__logo{
    width: 166px;
}
.footer__logo>a:hover{
    opacity: 0.5;
}
@media (hover:none) {
    .footer__logo>a:hover{
        opacity: 1;
    }
}
.footer__top__nav{
    width: 66.6666%;
    display: flex;
    flex-wrap: wrap;
}
.footer__top__nav__content{
    width: 50%;
}
.footer__top__nav__list{
    
}
.footer__top__nav__item{
    position: relative;
    padding-bottom: 19px;
}
.footer__top__nav__item::before{
    content: "";
    display: inline-block;
    background-image: url("../images/footer_arrow.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 18px;
    height: 18px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}
.footer__top__nav__item>a{
    color: #fff;
    line-height: calc(17 / 16);
    display: block;
    padding-left: 29px;
}
.footer__top__nav__item>a:hover{
    opacity: 0.5;
}
@media (hover:none) {
    .footer__top__nav__item>a:hover{
        opacity: 1;
    }
}
.footer__top__nav__sublist{
    padding-left: 2.9em;
}
.footer__top__nav__subitem{
    padding-top: 13px;
}
.footer__top__nav__subitem>a{
    color: #fff;
    line-height: calc(17 / 16);
    display: block;
}
.footer__top__nav__subitem>a:hover{
    opacity: 0.5;
}
@media (hover:none){
    .footer__top__nav__subitem>a:hover{
        opacity: 1;
    }
}

.footer__bottom{
    background-color: #fff;
    padding-top: 21px;
    padding-bottom: 21px;
}
.footer__bottom .inner{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer__bottom__nav{
    
}
.footer__bottom__nav__list{
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}
.footer__bottom__nav__item{
    padding-right: 32px;
}
.footer__bottom__nav__item:not(:last-of-type)::after{
    content: "/";
    display: inline-block;
    color: #333;
    font-size: 1.6rem;
    position: relative;
    left: 15px;
}
.footer__bottom__nav__item>a{
    color: #333;
    line-height: calc(17 / 16);
    display: inline-block;
}
.footer__bottom__nav__item>a:hover{
    opacity: 0.5;
}
@media (hover:none){
    .footer__bottom__nav__item>a:hover{
        opacity: 1;
    }
}
.footer__bottom__copyright{
    line-height: calc(17 / 16);
    display: inline-block;
    margin-left: auto;
}
@media all and (max-width: 1024px){
    .footer{
    margin-bottom: 44px;
    }
    .footer__deco{
/*        position: relative;*/
    }
    .footer__deco.inner::before{
/*        content: "";*/
/*        display: inline-block;*/
/*        vertical-align: middle;*/
/*        background-image: url("../images/footer_deco.png");*/
/*        background-size: cover;*/
/*        background-repeat: no-repeat;*/
/*        background-position: right;*/
        width: 1453px;
        height: 132px;
/*        position: absolute;*/
        top: -107px;
        right: -26px;
/*        z-index: 100;*/
    }
    .footer__top{
/*        background-color: #896553;*/
/*        padding-top: 59px;*/
/*        padding-bottom: 21px;*/
    }
    .footer__top .inner{
/*        display: flex;*/
/*        flex-wrap: wrap;*/
/*        justify-content: space-between;*/
    }

    .footer__logo{
        width: 136px;
        
    }
    .footer__top__nav{
/*        width: 66.6666%;*/
/*        display: flex;*/
/*        flex-wrap: wrap;*/
    }
    .footer__top__nav__content{
/*        width: 50%;*/
    }
    .footer__top__nav__list{

    }
    .footer__top__nav__item{
/*        position: relative;*/
/*        padding-bottom: 19px;*/
    }
    .footer__top__nav__item::before{
/*        content: "";*/
/*        display: inline-block;*/
/*        background-image: url("../images/footer_arrow.png");*/
/*        background-repeat: no-repeat;*/
/*        background-position: center;*/
/*        background-size: contain;*/
/*        width: 18px;*/
/*        height: 18px;*/
/*        position: absolute;*/
/*        top: 0;*/
/*        left: 0;*/
/*        z-index: 10;*/
    }
    .footer__top__nav__item>a{
/*        color: #fff;*/
/*        line-height: calc(17 / 16);*/
/*        display: block;*/
/*        padding-left: 29px;*/
    }
    .footer__top__nav__sublist{
/*        padding-left: 2.9em;*/
    }
    .footer__top__nav__subitem{
/*        padding-top: 13px;*/
    }
    .footer__top__nav__subitem>a{
/*        color: #fff;*/
/*        line-height: calc(17 / 16);*/
/*        display: block;*/
    }


    .footer__bottom{
/*        background-color: #fff;*/
        padding-top: 13px;
        padding-bottom: 13px;
    }
    .footer__bottom .inner{
/*        display: flex;*/
/*        justify-content: space-between;*/
/*        flex-wrap: wrap;*/
    }
    .footer__bottom__nav{

    }
    .footer__bottom__nav__list{
/*        display: flex;*/
    }
    .footer__bottom__nav__item{
/*        padding-right: 32px;*/
    }
    .footer__bottom__nav__item:not(:last-of-type)::after{
/*        content: "/";*/
/*        display: inline-block;*/
/*        color: #333;*/
/*        font-size: 1.6rem;*/
/*        position: relative;*/
/*        left: 15px;*/
    }
    .footer__bottom__nav__item>a{
/*        color: #333;*/
/*        line-height: calc(17 / 16);*/
/*        display: inline-block;*/
    }
    .footer__bottom__copyright{
/*        line-height: calc(17 / 16);*/
/*        display: inline-block;*/
    }
}
@media all and (max-width: 767px){
    .footer{

    }
    .footer__deco{
/*        position: relative;*/
    }
    .footer__deco.inner::before{
/*        content: "";*/
/*        display: inline-block;*/
/*        vertical-align: middle;*/
/*        background-image: url("../images/footer_deco.png");*/
/*        background-size: cover;*/
/*        background-repeat: no-repeat;*/
/*        background-position: right;*/
/*        width: 1453px;*/
/*        height: 132px;*/
/*        position: absolute;*/
/*        top: -107px;*/
/*        right: -26px;*/
/*        z-index: 100;*/
    }
    .footer__top{
/*        background-color: #896553;*/
/*        padding-top: 59px;*/
/*        padding-bottom: 21px;*/
    }
    .footer__top .inner{
/*        display: flex;*/
/*        flex-wrap: wrap;*/
/*        justify-content: space-between;*/
    }

    .footer__logo{
/*        width: 136px;*/
        margin-bottom: 40px;
    }
    .footer__top__nav{
        width: 100%;
/*        display: flex;*/
/*        flex-wrap: wrap;*/
    }
    .footer__top__nav__content{
/*        width: 50%;*/
    }
    .footer__top__nav__list{

    }
    .footer__top__nav__item{
/*        position: relative;*/
/*        padding-bottom: 19px;*/
    }
    .footer__top__nav__item::before{
/*        content: "";*/
/*        display: inline-block;*/
/*        background-image: url("../images/footer_arrow.png");*/
/*        background-repeat: no-repeat;*/
/*        background-position: center;*/
/*        background-size: contain;*/
/*        width: 18px;*/
/*        height: 18px;*/
/*        position: absolute;*/
/*        top: 0;*/
/*        left: 0;*/
/*        z-index: 10;*/
    }
    .footer__top__nav__item>a{
/*        color: #fff;*/
/*        line-height: calc(17 / 16);*/
/*        display: block;*/
/*        padding-left: 29px;*/
    }
    .footer__top__nav__sublist{
/*        padding-left: 2.9em;*/
    }
    .footer__top__nav__subitem{
/*        padding-top: 13px;*/
    }
    .footer__top__nav__subitem>a{
/*        color: #fff;*/
/*        line-height: calc(17 / 16);*/
/*        display: block;*/
    }


    .footer__bottom{
/*        background-color: #fff;*/
/*        padding-top: 21px;*/
/*        padding-bottom: 21px;*/
    }
    .footer__bottom .inner{
/*        display: flex;*/
/*        justify-content: space-between;*/
/*        flex-wrap: wrap;*/
    }
    .footer__bottom__nav{

    }
    .footer__bottom__nav__list{
/*        display: flex;*/
    }
    .footer__bottom__nav__item{
/*        padding-right: 32px;*/
    }
    .footer__bottom__nav__item:not(:last-of-type)::after{
/*        content: "/";*/
/*        display: inline-block;*/
/*        color: #333;*/
/*        font-size: 1.6rem;*/
/*        position: relative;*/
/*        left: 15px;*/
    }
    .footer__bottom__nav__item>a{
/*        color: #333;*/
/*        line-height: calc(17 / 16);*/
/*        display: inline-block;*/
    }
    .footer__bottom__copyright{
/*        line-height: calc(17 / 16);*/
/*        display: inline-block;*/
    }
}
@media all and (max-width: 599px){
    .footer{
    margin-bottom: 38px;
    }
    .footer__deco{
/*        position: relative;*/
    }
    .footer__deco.inner::before{
/*        content: "";*/
/*        display: inline-block;*/
/*        vertical-align: middle;*/
/*        background-image: url("../images/footer_deco.png");*/
/*        background-size: cover;*/
/*        background-repeat: no-repeat;*/
/*        background-position: right;*/
        width: 1239px;
        height: 113px;
/*        position: absolute;*/
        top: -94px;
/*        right: -26px;*/
/*        z-index: 100;*/
    }
    .footer__top{
/*        background-color: #896553;*/
        padding-top: 37px;
/*        padding-bottom: 21px;*/
    }
    .footer__top .inner{
/*        display: flex;*/
/*        flex-wrap: wrap;*/
/*        justify-content: space-between;*/
    }

    .footer__logo{
        width: 120px;
/*        margin-bottom: 40px;*/
    }
    .footer__top__nav{
/*        width: 100%;*/
/*        display: flex;*/
/*        flex-wrap: wrap;*/
    }
    .footer__top__nav__content{
        width: 100%;
    }
    .footer__top__nav__list{

    }
    .footer__top__nav__item{
/*        position: relative;*/
/*        padding-bottom: 19px;*/
    }
    .footer__top__nav__item::before{
/*        content: "";*/
/*        display: inline-block;*/
/*        background-image: url("../images/footer_arrow.png");*/
/*        background-repeat: no-repeat;*/
/*        background-position: center;*/
/*        background-size: contain;*/
/*        width: 18px;*/
/*        height: 18px;*/
/*        position: absolute;*/
/*        top: 0;*/
/*        left: 0;*/
/*        z-index: 10;*/
    }
    .footer__top__nav__item>a{
/*        color: #fff;*/
/*        line-height: calc(17 / 16);*/
/*        display: block;*/
/*        padding-left: 29px;*/
    }
    .footer__top__nav__sublist{
/*        padding-left: 2.9em;*/
    }
    .footer__top__nav__subitem{
/*        padding-top: 13px;*/
    }
    .footer__top__nav__subitem>a{
/*        color: #fff;*/
/*        line-height: calc(17 / 16);*/
/*        display: block;*/
    }


    .footer__bottom{
/*        background-color: #fff;*/
/*        padding-top: 21px;*/
/*        padding-bottom: 21px;*/
    }
    .footer__bottom .inner{
/*        display: flex;*/
/*        justify-content: space-between;*/
/*        flex-wrap: wrap;*/
    }
    .footer__bottom__nav{

    }
    .footer__bottom__nav__list{
/*        display: flex;*/
        flex-wrap: wrap;
    }
    .footer__bottom__nav__item{
        padding-right: 24px;
        margin-bottom: 4px
    }
    .footer__bottom__nav__item:not(:last-of-type)::after{
/*        content: "/";*/
/*        display: inline-block;*/
/*        color: #333;*/
        font-size: 1.5rem;
/*        position: relative;*/
        left: 10px;
    }
    .footer__bottom__nav__item>a{
/*        color: #333;*/
/*        line-height: calc(17 / 16);*/
/*        display: inline-block;*/
    }
    .footer__bottom__copyright{
        font-size: 1.1rem;
/*        line-height: calc(17 / 16);*/
/*        display: inline-block;*/
    }
}





/*----------------------------------------
fixed menu
----------------------------------------*/
.fixed-menu{
    position: fixed;
    z-index: 10000;
    bottom: 40px;
    right: 0;
    transition: all 0.2s ease-in-out;
}
.fixed-menu.active{
    transform: translate(100%,0);
}
.fixed-menu__list{
    
}
.fixed-menu__item{
    
}
.fixed-menu__item>a{
    display: flex;
    align-items: center;
    padding: 24px 19px 27px 15px;
}
.fixed-menu__item>a:hover{
    opacity: 0.5;
}
@media (hover:none){
    .fixed-menu__item>a:hover{
        opacity: 1;
    }
}
.fixed-menu__item:first-of-type>a{
    background-color: #f89b3e;
    border-radius: 10px 0 0 0;
}
.fixed-menu__item:last-of-type>a{
    background-color: #5fc2eb;
    border-radius: 0 0 0 10px;
}

.fixed-menu__item__img{
    display: block;
    width: 51px;
}
.fixed-menu__item__text{
    color: #fff;
    font-weight: 500;
    line-height: calc(18 / 16);
    display: inline-block;
    padding-left: 11px;
}
@media all and (max-width: 1024px){
    .fixed-menu{
/*        position: fixed;*/
/*        z-index: 10000;*/
        bottom: 0px;
/*        right: 0;*/
        width: 100%;
    }
    .fixed-menu.active{
    transform: translate(0,100%);
}
    .fixed-menu__list{
        width: 100%;
        display: flex;
    }
    .fixed-menu__item{
        width: 50%;
    }
    .fixed-menu__item>a{
/*        display: flex;*/
/*        align-items: center;*/
        justify-content: center;
        padding: 12px 15px 12px 15px;
    }

    .fixed-menu__item:first-of-type>a{
/*        background-color: #f89b3e;*/
        border-radius: 10px 10px 0 0;
    }
    .fixed-menu__item:last-of-type>a{
/*        background-color: #5fc2eb;*/
        border-radius: 10px 10px 0 0;
    }
    .fixed-menu__item__img{
/*        display: block;*/
        width: 32px;
    }
    .fixed-menu__item:first-of-type>a
    .fixed-menu__item__text{
/*        color: #fff;*/
/*        font-weight: 500;*/
/*        line-height: calc(18 / 16);*/
/*        display: inline-block;*/
/*        padding-left: 11px;*/
    }
    .fixed-menu__item:first-of-type .fixed-menu__item__text{
        padding-top: 4px;
    }
}
@media all and (max-width: 599px){
    .fixed-menu{
/*        position: fixed;*/
/*        z-index: 10000;*/
/*        bottom: 0px;*/
/*        right: 0;*/
/*        width: 100%;*/
    }
    .fixed-menu__list{
/*        width: 100%;*/
/*        display: flex;*/
    }
    .fixed-menu__item{
/*        width: 50%;*/
    }
    .fixed-menu__item>a{
/*        display: flex;*/
/*        align-items: center;*/
/*        justify-content: center;*/
        padding: 8px 10px 8px;
    }

    .fixed-menu__item:first-of-type>a{
/*        background-color: #f89b3e;*/
/*        border-radius: 10px 10px 0 0;*/
    }
    .fixed-menu__item:last-of-type>a{
/*        background-color: #5fc2eb;*/
/*        border-radius: 10px 10px 0 0;*/
    }
    .fixed-menu__item__img{
/*        display: block;*/
        width: 24px;
    }
    .fixed-menu__item__text{
/*        color: #fff;*/
        font-size: 1.3rem;
/*        font-weight: 500;*/
/*        line-height: calc(18 / 16);*/
/*        display: inline-block;*/
        padding-left: 6px;
    }
    .fixed-menu__item:first-of-type .fixed-menu__item__text{
        padding-top: 0;
        padding-bottom: 3px;
    }
    .fixed-menu__item:last-of-type .fixed-menu__item__text{
        padding-bottom: 3px;
    }
}