@charset "UTF-8";

/* set variables */
:root {
    --mainColor: #1E2088;
    --subColor: #A36F7A;
    --navColor: ;
    --bgColorGlay: #EDEDED;
    --rightColor: #E8E9F2;
    --txtColor: #504945;
    --linkColor: #000;
    --borderColor: #707070;
    --min : "Noto Serif JP", serif;

    --textNormal: 16px;
    --textMiddle: 18px;
    --textMiddle2: 20px;
    --textBig: 24px;
    --textLarge: 30px;
    --textSmall: 14px;

    --gap: 50px;
    --gaps: 30px;
    --gap_sp: 30px;
    --sectionPadding: 10rem;
    --sectionPadding_sp: 3rem;
    --contentWidth: 1000px;
    --innerWidth: 848px;
}
html {
	scroll-behavior: smooth;
}
body {
    width: 100%;
    font-size: 10px;
    color: var(--txtColor);
    background-color: #f5f5f5;
    position: relative;
    font-family: "Noto Sans JP", sans-serif;
}
p {
    line-height: 1.8;

}
h2 , h3 , p {
    margin-top: 0;
    margin-bottom: 0;
}
.p_center {
    text-align: center;
}
.p_bold {
    font-weight: 600;
}
.p_right {
    text-align: right;
}
.br-sp {
    display: none;
}
a img {
    transition: 0.2s;
}
a:hover img {
    opacity: 0.6;
}
.clearfix::after {
	clear: both;
	display: block;
	content: "";
	height: 0;
	width: 0;
}
.flt_right {
    float: right;
}
.flt_left {
    float: left;
}

/* PC . SP 切り替え */
@media screen and (max-width: 798px) {
    .sp_none {
        display: none;
    }
    img {
        max-width: 100%;
        height: auto;
    }
}
@media screen and (min-width: 799px) {
    .pc_none {
        display: none;
    }
}


.wrap {
    width: 100%;
    max-width: var(--contentWidth);
    margin-left: auto;
    margin-right: auto;
}
.wrap_s {
    width: 100%;
    max-width: var(--innerWidth);
    margin-left: auto;
    margin-right: auto;
}
.mt_10 {
    margin-top: 1rem;
}
.mt_20 {
    margin-top: 2rem;
}
.mt_30 {
    margin-top: 3rem;
}
.mt_40 {
    margin-top: 4rem;
}
.mt_50 {
    margin-top: 5rem;
}
.mt_100 {
    margin-top: 10rem;
}
.mb_0 {
    margin-bottom: 0 !important;
}
.mb_10 {
    margin-bottom: 1rem;
}
.mb_15 {
    margin-bottom: 1.5rem;
}
.mb_20 {
    margin-bottom: 2rem;
}
.mb_30 {
    margin-bottom: 3rem;
}
.mb_40 {
    margin-bottom: 3rem;
}
.mb_50 {
    margin-bottom: 5rem;
}
.p12 {
    font-size: 12px;
    line-height: 200%;
}
.p13 {
    font-size: 13px;
    line-height: 200%;
}
.p14 {
    font-size: 14px;
    line-height: 200%;
}
.p16 {
    font-size: 16px;
    line-height: 200%;
}
.p18 {
    font-size: 18px;
    line-height: 200%;
}
.p20 {
    font-size: 20px;
    line-height: 180%;
}
.p22 {
    font-size: 22px;
    line-height: 200%;
}
.p24 {
    font-size: 24px;
    line-height: 200%;
}
.p26 {
    font-size: 26px;
    line-height: 180%;
}
.p30 {
    font-size: 30px;
    line-height: 180%;
}
.p40 {
    font-size: 40px;
    line-height: 150%;
}
.p50 {
    font-size: 50px;
    line-height: 150%;
}
.p_light {
    color: var(--rightColor);
}
.bg_01 {
    background-color: var(--mainColor);
}
.sec_padding {
    padding-top: calc(var(--gap) * 1.5);
    padding-bottom: calc(var(--gap) * 1.5);
}
.position_r {
    position: relative;
}
.img_shadow img {
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.25);
    border: 3px solid #fff;
}

@media screen and (max-width: 999px) {
    .wrap  {
        width: auto;
        max-width: auto;
        margin-left: 15px;
        margin-right: 15px;
    }
    .wrap_s  {
        width: auto;
        max-width: auto;
    }
    img {
        max-width: 100%;
    }
}
@media screen and (max-width: 798px) {
    .p12 , .p13 {
        font-size: 13px;
        line-height: 180%;
    }
    .p14 , .p16 {
        font-size: 15px;
        line-height: 180%;
    }
    .p18 , .p20 {
        font-size: 15px;
        line-height: 180%;
    }
    .p22 {
        font-size: 20px;
        line-height: 160%;
    }
    .p24 , .p26 {
        font-size: 23px;
        line-height: 160%;
    }
    .sec_padding {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .h2_normal {
        font-size: 22px !important;
        margin-bottom: 20px !important;
    }
}



/* ヘッダー */
#header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9999;
}
.head_wrap {
    background-color: #fff;
    max-width: 1500px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
#header h1 {
    float: left;
    padding: 13px 0 0 20px;
}
#header h1 a{
    line-height: 0!important;
    display: block;
}
#header nav {
    float: right;
}
#header ul {
    list-style: none;
    display: flex;
    line-height: 0;
}

@media screen and (max-width: 900px) {
    #header {
        height: 60px;
        overflow: hidden;
    }
    #header ul img {
        height: 60px;
        width: auto;
    }
    #header h1 img {
        width: 255px;
        height: auto;
    }
    #header h1.switch-img img {
        width: 165px;
        height: auto;
    }
}
@media screen and (max-width: 798px) {
    #header h1 {
        padding: 13px 0 0 10px;
    }
    #header h1.switch-img {
        padding: 5px;
    }
    #header ul {
        gap: 0;
    }
}
@media screen and (max-width: 400px) {
    #header h1 img {
        width: 175px;
        height: auto;
    }
    #header h1 {
        padding: 18.5px 0 0 5px;
    }
}

/* footer */

#footer {
    background-color: var(--mainColor);
}
#footer .logo {
    text-align: center;
}
.foot_top {
    color: #fff;
    padding: var(--gap) 0;
}
.footer_bottom {
    text-align: center;
    background-color: #fff;
    padding: 3rem 0;
}
.sns_ul {
    list-style: none;
    letter-spacing:-.4em;
}
.sns_ul li {
    display: inline-block;
    margin: 0 3px;
}
#foot_nav,
#foot_nav2 {
    position: fixed;
    z-index: 9999;
    right: 10px;
    opacity: 0;
    transition: 0.5s;
}
#foot_nav {
    bottom: 145px;
}
#foot_nav2 {
    bottom: 0;
}
#foot_nav.fixed,
#foot_nav2.fixed {
    opacity: 1.0;
}
@media screen and (max-width: 798px) {
    #foot_nav,
    #foot_nav2 {
        width: calc(50% - 3px);
        bottom: 3px;
    }
    #foot_nav {
        left: 5px;
    }
    #foot_nav2 {
        right: 5px;
    }
    
    #footer .logo img {
        width: 150px;
        height: auto;
    }
    #footer .logo {
        margin-bottom: 10px !important;
    }
    .foot_top {
        padding: 30px 0;
    }
    .sns_ul img {
        width: 38px;
        height: auto;
    } 
    .footer_bottom {
        padding: 20px 0 100px 0;
    }
}


/* main */
#main {
    padding-top: 78px;
}
#container {
    max-width: 1500px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background-color: #fff;
}
@media screen and (max-width: 900px) {
    #main {
        padding-top: 59px;
    }
}

/* KV */
#kv {
    position: relative;
    z-index: 1;
    padding-bottom: 80px;
    line-height: 0;
    background-image: url(../img/bg_01.jpg);
    background-position: center top;
    background-repeat: repeat;
}
#kv .kv_main {
    position: relative;
    z-index: 2;
}
#kv .kv_txt {
    position: absolute;
    z-index: 3;
    width: 100%;
    bottom: -13px;
    left: 0;
    text-align: center;
}
@media screen and (max-width: 1500px) {
    .kv_txt img {
        width: 60%;
        height: auto;
    }
}
@media screen and (max-width: 798px) {
    #kv {
        padding-bottom: 0;
        background-image: none;
    }
}

/* お悩み */
#nayami {
    text-align: center;
    padding-bottom: 2rem;
}
.nayami_h2 {
    position: relative;
    z-index: 4;
    /* margin-top: -40px; */
}
.nayami_ul {
    font-weight: 700;
    color: var(--mainColor);
    list-style: none;
}
.nayami_ul li {
    vertical-align: middle;
}
.nayami_ul li::before {
    content: url(../img/nayami_check.png);
    margin-right: 20px;
    line-height: 0;
}
.nayami_list_ul {
    list-style: none;
    display: flex;
    gap: var(--gap);
    flex-wrap: wrap;
    align-items: flex-start;
    width: 100%;
}
.nayami_list_ul li {
    width: calc((100% - var(--gap)) / 2);
}
.nayami_list_ul .title {
    text-align: center;
    font-weight: 600;
    color: var(--mainColor);
    margin: 10px 0;
}
#nayami_list {
    background-image: url(../img/bg_03.png) , url(../img/bg_02.jpg);
    background-position: center top;
    background-repeat: no-repeat , repeat;
    padding-top: calc(var(--gap) * 2);
    padding-bottom: calc(var(--gap) * 1.5);
}
@media screen and (max-width: 798px) {
    .nayami_h2 {
        margin-top: -20px;
    }
}
@media screen and (max-width: 500px) {
    .nayami_ul li {
        font-size: 4vw;
    }
    .nayami_list_ul {
        gap: 20px;
    }
    .nayami_list_ul li {
        width: 100%;
    }
    #nayami_list {
        padding-bottom: 30px;
    } 
}

/* 買取方法 */
#method {
    background-color: var(--mainColor);
    color: #fff;
}
.method_ul {
    display: flex;
    width: 100%;
    gap: var(--gap);
    flex-wrap: wrap;
    align-items: stretch;
    list-style: none;   
}
.method_ul li {
    width: calc( (100% - (var(--gap) * 2)) / 3 );
}
.h3_method {
    text-align: center;
    margin: 1rem 0;
}
.h2_normal.yellow span {
    color: #FEDD00;
    background-image: url(../img/kaitori_h2.png) , url(../img/kaitori_h2.png) !important;
}
@media screen and (max-width: 500px) {
    .method_ul {
        gap: 20px;
    }
    .method_ul li {
        width: 100%;
    }
    .method_ul .img {
        text-align: center;
    }
    .h3_method {
        margin: 0;
    }
}

/* 買取品目 */
#item {
    background-color: var(--rightColor);
}
.item_ul_01 {
    display: flex;
    width: 100%;
    gap: var(--gap);
    flex-wrap: wrap;
    align-items: stretch;
    list-style: none;
}
.item_ul_01 li {
    width: calc( (100% - (var(--gap) * 2)) / 3 );
    background-color: #fff;
    position: relative;
    z-index: 1;
}
.item_ul_02 {
    display: flex;
    width: 100%;
    margin-top: var(--gap);
    gap: 30px;
    flex-wrap: wrap;
    align-items: stretch;
    list-style: none;
}
.item_ul_02 li {
    width: calc( (100% - 90px ) / 4 );
    background-color: #fff;
    position: relative;
    z-index: 1;
    padding-bottom: 10px;
}
.item_ul_01 li::after , .item_ul_02 li::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    background-image: url(../img/hinmoku_arrow.png);
    background-position: center center;
    width: 20px;
    height: 20px;
    z-index: 3;
}
.item_ul_01 .h3_item , .item_ul_02 .h3_item {
    color: var(--mainColor);
    text-align: center;
}
.item_ul_01 .txt {
    display: block;
    padding: 0 20px 20px 20px;
    text-align: justify;
    color: #707070;
}
.item_ul_01 .img img , .item_ul_02 .img img {
    width: 100%;
    height: auto;
}
.h2_normal {
    font-size: 36px;
    line-height: 150%;
    font-weight: 600;
    text-align: center;
    color: #000;
    margin-bottom: var(--gap);
}
.h2_normal span {
    background-image: url(../img/hinmoku_h2.png) , url(../img/hinmoku_h2.png);
    background-position: left center , right center;
    background-repeat: no-repeat;
    padding: 0 40px;
    padding-bottom: 5px;
}
@media screen and (max-width: 798px) {
    .item_ul_01 {
        gap: 20px;
    }
    .item_ul_01 li {
        width: calc( (100% - 20px) / 2 );
        background-color: #fff;
        position: relative;
        z-index: 1;
    }
    .item_ul_02 {
        margin-top: 20px;
        gap: 20px;
    }
    .item_ul_02 li {
        width: calc( (100% - 20px) / 2 );
        background-color: #fff;
        position: relative;
        z-index: 1;
    }
    .item_ul_01 .txt {
        padding: 0 15px 15px 15px;
    }
}


/* 店舗について */
#about {
    width: 50%;
    position: relative;
    margin-left: auto;
    margin-right: 0;
}
#about .wrap_harf {
    padding: calc(var(--gap) * 1.5) 0;
    margin: 0 var(--gap);
}
#about::before {
    content: "";
    display: block;
    position: absolute;
    right: 100%;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: url(../img/about_bg.jpg);
    background-position: center center;
    background-size: cover;
}
.about_h2 {
    text-align: center;
}
@media screen and (max-width: 798px) {
    #about {
        width: 100%;
    }
    #about .wrap_harf {
        padding: 20px;
        margin: 0;
    }
    #about::before {
        position: relative;
        right: auto;
        left: 0;
        top: 0;
        width: 100%;
        aspect-ratio: 5 / 3;
    }
}


/* お客様の声 */
#voice {
    background-image: url(../img/voice_bg.jpg);
    background-position: center top;
    background-size: cover;
}
.h2_normal.white span {
    color: #fff;
    background-image: url(../img/kaitori_h2.png) , url(../img/kaitori_h2.png) !important;
}
.voice_ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 30px;
}
.voice_ul li {
    background-color: #fff;
    width: 100%;
    padding: 2rem 3rem 2rem 270px;
    position: relative;
    z-index: 2;
}
.voice_ul li .img {
    display: block;
    position: absolute;
    width: 222px;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 3;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.voice_ul .title {
    font-weight: 600;
    color: #000;
    position: relative;
    display: block;
    padding-right: 210px;
}
.voice_ul .title span {
    position: absolute;
    right: 0;
    top: 0;
    color: var(--mainColor);
}
.voice_ul .txt {
    text-align: justify;
}
@media screen and (max-width: 798px) {
    .voice_ul {
        gap: 20px;
    }
    .voice_ul li {
        padding: 20px;
    }
    .voice_ul li .img {
        position: relative;
        width: 222px;
        height: 231px;
        top: auto;
        left: auto;
        margin: 0 auto 10px auto;
    }
    .voice_ul .title {
        padding-right: 0;
    }
    .voice_ul .title span {
        position: relative;
        display: block;
        text-align: right;
    }
}

/* お問い合わせ */
#contact, #contact2 {
    text-align: center;
}
#contact .wrap,
#contact2 .wrap  {
    width: 100%;
    max-width: 1100px;
}
.contact_h2 {
}
.contact_title {
    font-weight: 600;
    color: var(--mainColor);
}
a.jump_point{
    height: 1px;
    display: block;
    margin-top: -80px;
    padding-top: 80px;
}
@media screen and (max-width: 900px) {
    a.jump_point{
        margin-top: -60px;
        padding-top: 60px;
    }
}
.contact_ul {
    display: flex;
    gap: 0;
    align-items: flex-start;
    list-style: none;
    gap: 30px;
    color: var(--mainColor);
}
.contact_ul li {
    width: 33.33%;
}
@media screen and (max-width: 798px) {
    #contact .wrap,
    #contact2 .wrap {
        width: auto;
    }
    .contact_ul .title{
        font-size: 22px;
        line-height: 1.4;
    }
}
@media screen and (max-width: 500px) {
    .contact_ul .title br{
        display: none;
    }
}
.contact_ul .img{
    margin-bottom: 2rem;
}
#contact2 .contact_ul .img{
    margin-bottom: 0;
}
.contact_ul img{
    width: 100%;
}
@media screen and (max-width: 500px) {
    .contact_ul {
        flex-wrap: wrap;
        gap: 20px;
    }
    .contact_ul li {
        width: 100%;
        background-color: var(--rightColor);
        padding: 20px;
        box-sizing: border-box;
    }
    .contact_ul .title {
        font-size: 4.3vw;
        margin-bottom: 10px !important;
    }
    .contact_title {
        margin-bottom: 20px !important;
    }
    .contact_ul .mb_15 {
        margin-bottom: 10px !important
    }
    .contact_ul .img{
        margin-bottom: 15px;
    }
    .contact_title {
        font-size: 4.5vw;
}

    #contact2 .contact_ul {
        flex-wrap: wrap;
        gap: 0;
    }
    #contact2 .contact_ul li {
        position: relative;
    }
    #contact2 .contact_ul li:not(:last-child)::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 40px);
        border-bottom: 1px solid #1E2088;
    }
}
/* フォーム */
.sub_h2_wrap {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content:center;
    height: 240px;
    background-image: url(../img/sub_h2.jpg);
    background-position: center center;
    background-size: cover;
}
.sub_h2_wrap h2 span {
    display: block;
}
.sub_h2_wrap h2 .eng {
    color:#FFDD00;
    font-size: 17px;
}
.sub_h2_wrap h2 .jpn {
    color:#FFF;
    font-size: 35px;
}
@media screen and (max-width: 500px) {
    .sub_h2_wrap {
        height: 180px;
    }
    .sub_h2_wrap h2 .eng {
        color:#FFDD00;
        font-size: 12px;
    }
    .sub_h2_wrap h2 .jpn {
        color:#FFF;
        font-size: 24px;
    }
}
.googlemap iframe {
    width: 100%;
    height: 300px;
}