/*--------------
　　共通
--------------*/
body{
    margin: 0;
    font-family: "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", sans-serif;
    letter-spacing: -0.01em;
    background-color: #42210B;
    overflow-x: hidden;
    position: relative;
}
body.fixed{
    position: fixed;
    width:100%;
}
html {font-size: 2.666vw; letter-spacing: 0.1em;}
img {
    image-rendering: -webkit-optimize-contrast;
}
a:hover{
    opacity: 0.7;
    transform: all 1s;
}
.wrapper { max-width: 1200px; width: 100%; margin: 0 auto;}
h2 { 
    font-family: 'Noto Serif JP', serif;
    margin: 0 auto;
    text-align: center;
    font-size: 34px;
    position: relative;
}
span.decoration::before {
    content: "";
    background-image: url("../image/h2_decoration_b.svg");
    display: inline-block;
    width: 13px;
    height: 38px;
    margin-right: 20px;
    margin-left: -30px;
    margin-bottom: 5px;
    vertical-align: middle;
}
.subtitle {
    font-size: 14px;
    text-align: center; 
    letter-spacing: -0.009em;
    margin-top: 10px;
    position: relative;
    z-index: 50;
}
.morelink{
    text-decoration: none;
    color: #fff;
    background: linear-gradient(to right,#B8846F, #5B2D1D);
    padding: 10px 50px;
    border-radius: 5px;
    font-size: 14px;
}
.morelink_w{
    text-decoration: none;
    color: #42210B;
    background-color: #fff;
    padding: 10px 50px;
    border-radius: 5px;
    font-size: 14px;
}

@media (max-width: 750px){
    .spnone {display: none;}
    body{
        background-color: #fff;
    }
    a:hover{
        opacity: 1;
    }
    .wrapper { width: 100%; margin: 0 auto;}
    h2 {
        font-size: 2rem;
    }
    span.decoration::before {
        width: 0.65rem;
        height: 1.9rem;
        margin-right: 1rem;
        margin-left: -1.5rem;
        margin-bottom: 0.25rem;
    }
    .subtitle {
        font-size: 0.8rem;
    }
    .morelink{
        padding: 1rem 5rem;
        border-radius: 0.5rem;
        font-size: 0.8rem;
    }
    .morelink_w{
        padding: 1rem 5rem;
        border-radius: 0.5rem;
        font-size: 0.8rem;
    }
}
@media (min-width: 751px){
    .pcnone {display: none;}
}

/*--------------
　　パンくずリスト
--------------*/
.pankuzu {
    width: 100%;
    background-color: #F8F8F8;
}
.breadcrumb {
    margin: 0;
    padding: 0;
    list-style: none;
}
.breadcrumb li {
    display: inline;
    list-style: none;
}
.breadcrumb li:after {
    content: "";
    background-image: url("../image/pankuzu_arrow.svg");
    display: inline-block;
    width: 4px;
    height: 11px;
}
.breadcrumb li:last-child:after {
    display: none;
}
.breadcrumb_list {
    text-decoration: none;
    font-size: 12px;
    color: #000;
}
/* メンバーページ背景 */
.memberpankuzu {
    width: 100%;
    background: linear-gradient(to right, #faf9f6, #dad1c1);
}
@media (max-width: 750px){
    .breadcrumb  {
        display: none;
    }
}

/*--------------
　　ページャー 
--------------*/
.amanipager {
    width: 100%;
    background-color: #F8F8F8;
}
.amanipager_contnt {
    list-style: none;
    text-align: center;
    padding-bottom: 155px;
}
.amanipager_contnt li {
    display: inline-block;
    text-align: center;
    line-height: 20px;
    padding-right: 15px;
    padding-left: 15px;
    font-size: 15px;
    border-right: solid 1px #000;
}
.amanipager_contnt li:last-child {
    border-right: none;
}
.amanipager_contnt li a{
    display: block;
    text-decoration: none;
    color: #000;
}
.amanipager_contnt .this a {
    color: #AE4A21;
}
@media (max-width: 750px){
    .amanipager_contnt {
        padding-bottom: 7.5rem;
    }
    .amanipager_contnt li {
        line-height: 1rem;
        padding-right: 1rem;
        padding-left: 0.5rem;
        font-size: 0.8rem;
    }
}

/*--------------
　　ヘッダー
--------------*/
header{
    width: 100%;
    background-color: #fff;
}
.header_wrapper{
    height: 97px;
    max-width: 95%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header_wrapper h1 {
    margin-top: 20px;
}
.header_wrapper h1 img{
    width: 361px;
    height: 72px;
}

@media (max-width: 750px){
    header{
        position: fixed;
        top: 0;
        z-index: 100;
        padding: 0;
        background-color: #fff;
    }
    .header_right{
        display: flex;
    }
    .header_wrapper {
        height: 7rem;
    }
    .header_wrapper h1 {
        margin-top: 0;
    }
    .header_wrapper h1 img {
        width: 18rem;
        height: auto;
    }
}

/*--------------
　　検索窓
--------------*/
.header_right {
    display: flex;
}
@media (min-width: 751px){
    .search_container {
        position: relative;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        flex-wrap: wrap;
    }
    .search_container-searchinput {
        width: 260px;
        height: 35px;
        border: 1px solid #999;
        border-radius: 20px;
        padding: 3px 30px 3px 10px;
        letter-spacing: -0.01em;
        background: #fff;
        color: #000;
        font-size: 16px;
    }
    .search_container-searchinput:focus {
        outline: none;
    }
    .search_container-btn {
        position: absolute;
        top: 0;
        right: 10px;
        width: 14px;
        line-height: 25px;
        padding: 0;
        border: none;
        vertical-align: middle;
    }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .search_container-btn {
        height: 24px;
        line-height: 30px;
    }
}
@media (max-width: 750px){
    .search_container{
        box-sizing: border-box;
        position: relative;
        border: 2px solid #42210b;
        background-color: #fff;
        margin-left: 1rem;
        border-radius: 10rem;
        height: 2.8rem;
        width: 33rem;
        overflow: hidden;
    }
    .search_container input[type="text"]{
        border: none;
        height: 2em;
        width: 100%;
        font-size: 16px;
        margin-top: 0.5em;
        margin-left: 3rem;
    }
    .search_container input[type="text"]:focus {
        outline: 0;
    }
    .search_container input[type="submit"]{
        cursor: pointer;
        background-image: url(../image/serch_sp.svg);
        display: block;
        height: 1.6rem;
        width: 1.6rem;
        position: absolute;
        left: 1rem;
        top: 0.5rem;
        border: none;
        background-color: #fff;
    }
    .sp_serch {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 7rem;
        background-color: #fff;
        display: flex;
        align-items: center;
        transform: translate(100%);
        transition: all 0.4s;
        z-index: 1000;
    }
    .sp_serch.open {
        display: flex;
        align-items: center;
        transform: translate(0); 
        transition: all 0.4s;
        z-index: 1000;
    }
    .sp_serch_btn img {
        width: 1.6rem;
        height: 1.6rem;
    }
    .sp_serch_btn img.sp_serch_btn-open {
        margin-right: 1.5rem;
        position: relative;
        z-index: 500;
    }
    .sp_serch_btn img.sp_serch_btn-close {
        margin-left: 1rem;
    }
}
@media (max-width: 420px){
    .search_container input[type="text"]{ margin-top: -0.4em; }
}
@media (max-width: 350px){
    .search_container input[type="text"]{ margin-top: -0.6em;}
}

/*--------------
　　グロナビ
--------------*/
#globalnavi {
    background-color: #fff;
}
.dropmenu {
    position: relative;
    display: flex;
    width: 100%;
    height: 37px;
    max-width: 1400px;
    min-width: 1000px;
    margin-left: auto;
    justify-content: flex-end;
    transition: 1s all;
}
.dropmenu a {
    display: block;
    padding: 10px;
    color: #000;
    text-align: center; 
    text-decoration: none;
    font-size: 15px;
}
.dropmenu > li {
    width: auto;
    padding: 0px 10px;
}
.panel {
    display: none;
}
.panel-inner {
    background-color: #42210B;
    font-size: 12px;
}
.panel_item > a{
    color: #fff;
    font-size: 12px;
}
.panel_item a::before{
    content: "";
    background-image: url(../image/submenu_triangle.svg);
    display: inline-block;
    width: 6px;
    height: 9px;
    margin-right: 6px;
}
.panel > ul {
    height: 53px;
    position: absolute;
    top: 100%;
    left: 160px;
    width: 100%;
    display: flex;
}
.panel > ul > li {
    list-style: none;
    display: flex;
    align-items: center;
    margin-right: 20px;
}
.pcmenu-open {
    margin-bottom: 53px;
}
.brownbg {
    background-color: #42210B;
}
.brownbg a,.brownbg_top a {
    color: #fff;
}
li.white_tr {
    position: relative;
}
li.white_tr::after {
	position: absolute;
    content: '';
    right: -10px;
    top: 0px;
    border: none;
    border-left: solid 10px #fafcfc;
    border-bottom: solid 37px transparent;
}

.current::before{
    content: "";
    background-image: url("../image/current.svg");
    display: block;
    width: 13px;
    height: 37px;
}
.current > a {
    margin-top: -37px;
    margin-left: 10px;
}
.current_brownbg::after {
    content: "";
    background-image: url("../image/current_brownbg.svg");
    display: block;
    width: 73px;
    height: 4px;
    margin-top: -7px;
    margin-left: 10px;
    position: absolute;
}
.current_brownbg_qa::after {
    content: "";
    background-image: url("../image/current_brownbg.svg");
    display: block;
    width: 73px;
    height: 4px;
    margin-top: -7px;
    margin-left: -5px;
    position: absolute;
}

@media (min-width: 751px){
    .pctriangle{
        width: 0;
        height: 0;
        top: 5px;
        left: 45%;
        position: relative;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 5px solid #42210B;
    }
}
@media screen and (max-width: 1260px) and (min-width: 751px){
    .pctriangle{
        top: 10px;
    }
    .panel > ul {
        left: 20px;
    }
}

@media (max-width: 750px){
    .dropmenu_wrapper {
        position: fixed;
        top: 7rem;
        left: 100%;
        width: 100%;
        height: 100%;
        visibility: hidden;
        z-index: 999;
        transition: all 1s;
    }
    .dropmenu{
        display: block;
        background:rgba(66,33,11,0.96);
        padding-top: 3rem;
        max-width: 100%;
        min-width: 100%;
        margin-left: 0;
        height: auto;
        overflow: auto;
    }
    .pcmenu-open {
        margin-bottom: 0;
        height: 95%;
        padding-bottom: 4rem;
    }
    .open{
        transition: all 1s;
        visibility: visible;
        left: 0;
        z-index: 99;
        }

    .dropmenu > p {
        font-size: 1.3rem;
        color: #fff;
        margin: 0 2rem 2rem;
    } 
    .dropmenu li{
        margin: 0 auto;
        text-align: center;
        width: 100%;
        border-bottom: #888 1px solid;
        border-left: none;
        padding: 0.7rem 1.5rem;
    }
    .dropmenu li:last-child{
        border-right: none;
        border-bottom: none;
    }
    .dropmenu a {
        color: #fff;
        font-size: 1.3rem;
        text-align: left;
    }
    .brownbg { background-color: transparent;}
    li.white_tr::after { display: none;}

    .panel > ul {
        position: relative;
        top: 0;
        left: 1rem;
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
    }
    .panel-inner {
        background-color: transparent;
        font-size: 0.6rem;
    }
    .panel > ul > li {
        list-style: none;
        display: flex;
        align-items: center;
        margin-right: 2rem;
        border-bottom: none;
        padding: 0;
    }
    .panel_item > a {
        color: #fff;
        padding: 1.2rem;
    }
    .panel_item a::before { background-image: none;}
    
    /* メニュー横矢印 */
    .arrow_f {
        position: relative;
        display: block;
        padding: 0;
    }
    .arrow_f::before {
        content: '';
        width: 1rem;
        height: 1rem;
        border-top: solid 2px #fff;
        border-right: solid 2px #fff;
        position: absolute;
        top: -1.3rem;
        left: 33rem;
    }
    .arrow_f.arrow-right::before {
        transform: rotate(45deg);
        transition: all .5s;
    }
    .arrow_f.arrow-right.arrow_rotate::before {
        transform: rotate(135deg);
        transition: all .5s;
    }
    .arrow_f-ko {
        position: relative;
        display: block;
        padding: 0;
        margin-left: -1.6rem;
    }
    .arrow_f-ko::before {
        content: '';
        width: 1rem;
        height: 1rem;
        border-top: solid 2px #fff;
        border-right: solid 2px #fff;
        position: absolute;
        top: -1.3rem;
        left: 33rem;
    }
    .arrow_f-ko.arrow-right::before { transform: rotate(45deg);}

    /* ハンバーガーメニューボタン */
    .menu-btn {
        position: relative;
        width: 4.5vw;
        height: 4vw;
        cursor: pointer;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        z-index: 999;
    }
    .menu-btn span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 0.2rem;
        background-color: #42210B;
        border-radius: 4px;
        
    }
    .menu-btn, .menu-btn span {
        display: inline-block;
        transition: all .5s;
        box-sizing: border-box;
    }
    .menu-btn span:nth-of-type(1) { top: 0;}
    .menu-btn span:nth-of-type(2) { top: 1.8vw;}
    .menu-btn span:nth-of-type(3) { bottom: 0;}
    .menu-btn.open {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    .current { display: none;}
    .current_brownbg::after { display: none;}
}

/*--------------
　　フッター
--------------*/
.footer_links {
    display: flex;
    height: 110px;
    background: linear-gradient(to right,#CCCAC6, #F9F4EB);
}
.footer-content {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer_links_items:nth-child(1) {
    width: 361px;
    height: 72px;
}
.footer_links_items:nth-child(2) li {
    display: inline-block;
    padding-left: 10px;
}
.footer_links_items:nth-child(2) li:last-child {
    border-right: none;
}
.footer_links_items:nth-child(2) li a {
    display: inline-block;
    text-decoration: none;
    color: #000;
    font-size: 15px;
    border-right: solid 1px #000;
    padding-right: 20px;
} 
.copyright {
    background-color: #42210B;
    color: #fff;
    text-align: center;
    font-size: 14px;
    padding: 10px;
}

@media (max-width: 750px){
    .footer_links {
        height: auto;
    }
    .footer-content {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }
    .footer_links_items:nth-child(1) {
        width: 25rem;
        padding: 2rem 1rem 5.5rem;
    }
    .footer_links_items:nth-child(2) {
        width: 100%;
        margin: 0 auto;
    }
    .footer_links_items:nth-child(2) ul {
        margin-block-start: 1rem;
        margin-block-end: 0;
        padding-inline-start: 0;
    }
    .footer_links_items:nth-child(2) li {
        display: block;
        border-right: none;
        border-top: solid 1px #000;
        padding: 1rem ;
    }
    .footer_links_items:nth-child(2) li:last-child {
        border-right: none;
        padding: 1rem;
    }
    .footer_links_items:nth-child(2) li a {
        border-right: none;
        font-size: 1.4rem;
        display: block;
        width: 100%;
    } 
    .copyright {
        background-color: #42210B;
        font-size: 0.8rem;
        padding: 0.8rem;
    }
    .arrow {
        position: relative;
        display: inline;
        padding: 0;
    }
    .arrow::before {
        content: '';
        width: 1rem;
        height: 1rem;
        border-top: solid 2px #000;
        border-right: solid 2px #000;
        position: absolute;
        top: -1.3rem;
        left: 33rem;
    }
    .arrow.arrow-right::before {
        transform: rotate(45deg);
    }
}

/*--------------
　　404ページ
--------------*/
.amani_pagenotfound {
    width: 100%;
    background-color: #F8F8F8;
    margin-top: 0.1rem;
    padding: 245px 0 370px;
    
}
.amani_pagenotfound_content {
    display: flex;
    align-items: center;
    position: relative;
}
.amani_pagenotfound_content_items:first-child {
    width: 445px;
}
.amani_pagenotfound_content_items:last-child img {
    width: 880px;
    position: absolute;
    top: -200px;
}
.amani_pagenotfound_content_items_child:first-child {
    display: flex;
    align-items: center;
}
.amani_pagenotfound_content_items_404 {
    font-size: 90px;
    font-weight: bold;
}
.amani_pagenotfound_content_items_entext {
    font-size: 20px;
    font-weight: bold;
    margin-left: 30px;
}
.amani_pagenotfound_content_items_child:last-child {
    font-size: 36px;
    font-weight: bold;
}
@media (max-width: 750px){
    .amani_pagenotfound {
        margin: 7rem auto 0;
        width: 100%;
        padding: 6rem 0 9rem;
    }
    .amani_pagenotfound_content {
        padding: 0 1.5rem;
    }
    .amani_pagenotfound_content_items:first-child {
        width: auto;
    }
    .amani_pagenotfound_content_items:last-child img {
        width: 19rem;
        position: absolute;
        top: -2rem;
    }
    .amani_pagenotfound_content_items_404 {
        font-size: 3.7rem;
    }
    .amani_pagenotfound_content_items_entext {
        font-size: 0.8rem;
        margin-left: 1.5rem;
    }
    .amani_pagenotfound_content_items_child:last-child {
        font-size: 1.5rem;
    }
}
/*--------------
　　検索エラーページ
--------------*/
.amani_pagenotfound2 {
    width: 100%;
    background-color: #F8F8F8;
    padding: 40px 0 370px;
    
}
.amani_pagenotfound_content_items2:first-child {
    width: 462px;
}
.amani_pagenotfound_content_items2:last-child img {
    width: 880px;
    position: absolute;
    top: -180px;
}
.amani_pagenotfound_content_items_child2:first-child {
    display: flex;
    align-items: center;
}
.amani_pagenotfound_content_items_child2:last-child {
    font-family: 'Noto Serif JP', serif;
    font-size: 28px;
    line-height: 44px;
}
.serch_box{
    font-size:26px; 
    font-weight: 600;
}
@media (max-width: 750px){
    .amani_pagenotfound_content_items2:first-child {
        width: auto;
    }
    .amani_pagenotfound_content_items2:last-child img {
        width: 18rem;
        position: absolute;
        top: -6rem;
    }
    .amani_pagenotfound_content_items_child2:last-child {
        font-size: 1.2rem;
        line-height: 2.2rem;
    }
    .serch_box{
        font-size:1.1rem;
        font-weight: 600;
    }
    .amani_pagenotfound2 {
        width: 100%;
        padding: 2rem 0 9rem;
    }

}
/*--------------
　　会員ログインエラーページ
--------------*/
.error_text{
    margin-bottom: 40px;
    font-size: 18.8px;
    text-align: center;
    font-weight: 600;
    color: #bf1734;
}
.error_icon{
    width: 3%;
    margin-right: 10px;
}
@media (max-width: 750px){
    .error_text{
        font-size: 14px;
        width: 320px;
        margin:0 auto;
        line-height: 1.6rem;
        padding-bottom:20px;
        text-align: left;
    }
    .error_icon{
        width: 6%;
        margin-right: 2px;
        padding-bottom: 3px;
    }
    }

/*-------
　トップへ戻るボタン
-------*/
#amani-pagetop {
    position: fixed;
    width: 40px;
    height: 40px;
    right: 35px;
    cursor: pointer;
    z-index: 9999;
}
@media (max-width: 750px){
    #amani-pagetop {
        width: 4rem;
        height: 4rem;
        right: 1.5rem;
    }
}

/*-------
　fadein
-------*/
/*右から左*/
.right-to-left { opacity: 0; transform: translateX(20px); transition: all 1s;}
.right-to-left.scrollin { opacity: 1; transform: translate(0);}
/*左から右*/
.left-to-right { opacity: 0; transform: translateX(-20px); transition: all 1s;}
.left-to-right.scrollin { opacity: 1; transform: translate(0);}
/*下から上*/
.down-to-top{ opacity: 0; transform: translateY(20px); transition: all 1s;}
.down-to-top.scrollin { opacity: 1; transform: translateY(0);}