@charset "UTF-8";
/*
CSS Document
version: 6.1
Last Update: 2022-11-11
*/
/* ====================================

    Base

==================================== */
/* for SmartPhone
_____________________________________*/
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', '游ゴシック  Medium', meiryo, sans-serif;
    line-height: 1.5em;
    color: #222;
    font-size: 16px;
    font-weight: 300;
    width: 100%;
    min-width: 320px;
    margin: 0;
    padding: 0;
    border: none;
    box-sizing: border-box;
    /* background: #f2e9d6; */
    background-color: white;
}
table {
    font-size: inherit;
    font: 100%;
}
a {
    text-decoration: none;
}
a:hover {
    opacity: 0.8;
}
h1, h2 {
    font-weight: 800;
}
h3, h4 {
    font-weight: 500;
}
h5, h6 {
    font-weight: 300;
}
ul, ol {
    list-style: none;
}
input {
    vertical-align: middle
}
.cf:before, .cf:after {
    content: "";
    display: table;
}
.cf:after {
    clear: both;
}
.cf {
    *zoom: 1;
}
p {
    line-height: 1.5em;
    padding-bottom: 0.5em;
}
p > span {
    display: inline-block;
    white-space: nowrap;
}
.p05 {
    padding: 5px;
}
.p10 {
    padding: 10px;
}
.p20 {
    padding: 20px;
}
.p30 {
    padding: 30px;
}
#wrapper img {
    width: 100%;
}
img.full {
    width: 100%;
    height: auto;
}
img.sp-full {
    width: 100%;
    height: auto;
}
img.half {
    width: 50%;
    height: auto;
}
.alignleft {
    float: left;
}
.alignright {
    float: right;
}
.sp-only {
    display: block;
}
.pc-only {
    display: none;
}
/* for PC
_____________________________________*/
@media print, screen and (min-width: 768px) {
    body {
        min-width: 100%;
    }
    img.sp-full {
        width: auto;
    }
    .sp-only {
        display: none;
    }
    .pc-only {
        display: block;
    }
}
/* End for PC */
/* ====================================

    Layout

==================================== */
/* for SmartPhone 
_____________________________________*/
header {
    position: relative;
    width: 100%;
    /*max-width: 1000px;*/
    height: 50px;
    /* background: #f2e9d6; */
    background-color: white;
    margin: 0 auto;
}
main {
    width: 100%;
    /*max-width: 1000px;*/
    margin: 0 auto;
}
h1#Pagetitle {
    width: 150px;
    height: 50px;
    margin: 0 0 0 0;
    overflow: hidden;
}
h1#Pagetitle a {
    display: block;
    width: 150px;
    height: 0;
    padding: 50px 0 0 0;
    text-indent: -99999px;
    background: url("../images/logo-kanteikyoku.png") center center no-repeat;
    background-size: auto 40px;
}
#ShopName {
    position: absolute;
    display: inline-block;
    top: 0;
    right: 1em;
    font-size: 16px;
    font-weight: 700;
    color: #222;
    line-height: 50px;
}
#ShopName a {
    color: #222;
}
#ShopName span {
	position: relative;
	display: inline-block;
	top: -13px;
	right: -3px;
	transform: rotate(-10deg);
	font-size: 50%;
	color: #c00;
}
/* Hamburger Menu for SP */
.article-contents {
    position: fixed;
    top: 0;
    right: 0;
    padding: 12px;
    width: 50px;
    height: 50px;
    background: none;
    z-index: 99;
}
.menu-trigger, .menu-trigger span {
    display: inline-block;
    transition: all .2s;
    box-sizing: border-box;
}
.menu-trigger {
    position: relative;
    width: 26px;
    height: 26px;
}
.menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #222;
}
.menu-trigger span:nth-of-type(1) {
    top: 4px;
}
.menu-trigger span:nth-of-type(2) {
    top: 12px;
}
.menu-trigger span:nth-of-type(3) {
    bottom: 4px;
}
.menu-trigger.active span {}
.menu-trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(8px) rotate(-45deg);
    transform: translateY(8px) rotate(-45deg);
    background-color: #f2e9d6;
}
.menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-8px) rotate(45deg);
    transform: translateY(-8px) rotate(45deg);
    background-color: #f2e9d6;
}
/* MENU */
#main-navigation {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    background: #222;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, .8);
    z-index: 98;
}
#menu-content {
    width: 86%;
    margin: 50px auto 30px;
}
#menu-content li a {
    height: 50px;
    line-height: 50px;
    color: #fff;
    font-size: 18px;
}
#menu-content li a i {
    color: #f80;
    margin: 0 4px 0 0;
}
/* Title */
#eventTitle {
    position: relative;
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0 auto;
    overflow: hidden;
	background: #84e1ff url("../images/bg-sky-1000.jpg") center top / 500px auto repeat;
}
#eventTitle #Title {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: auto;
    padding: 0;
    margin: 0 auto;
    overflow: hidden;
}
#eventTitle img {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: auto;
}
/* for PC
_____________________________________*/
@media print, screen and (min-width: 768px) {
    /* Base */
    body {}
    /* Hamberger Button */
    .article-contents {
        display: none;
    }
    /* MENU */
    #main-navigation {
        display: block;
        position: absolute;
        top: 0;
        left: 50%;
        right: 0;
        width: 50%;
        height: 50px;
        padding: 0;
        background: none;
        border-bottom: none;
        box-shadow: none;
        z-index: 1;
    }
    #menu-content {
        width: auto;
        margin: 0;
        padding: 0 24px 0 0;
        text-align: right;
    }
    #menu-content li {
        display: inline-block;
        height: 50px;
        line-height: 50px;
        color: #222;
        font-size: 14px;
        margin: 0 0 0 30px;
    }
    #menu-content li a {
        height: 50px;
        line-height: 50px;
        color: #222;
        font-size: 14px;
        margin: 0;
    }
    #menu-content li a i {
        color: #f80;
        margin: 0 4px 0 0;
    }
    #menu-content li a:hover {
        text-decoration: underline;
    }
    /* Title */
    #PageTitle {
        position: relative;
        width: 100%;
        height: auto;
    }
    #eventTitle {
        background: #84e1ff url("../images/bg-sky-1000.jpg") center top repeat;
    }
    @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx){
        #eventTitle {
            background: #84e1ff url("../images/bg-sky-1000@2x.jpg") center top repeat;
            background-size: 1000px 10px;
        }
    }
}
/* End for PC */
/* ====================================

    Contents

==================================== */
/* for SmartPhone
_____________________________________*/
/* Main */
#wrapper {
    position: relative;
    width: 100%;
    min-height: 50vh;
    margin: 0;
    overflow: hidden;
}
section {
    clear: both;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.fullwidth {
    /* original value for website */
    width: 100%;
}
.contentwidth {
    /* original value for website */
    width: 86%;
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
    padding: 0 0 20px;
}
#Breadcrumb {
    display: none;
}
section h3 {
    font-family: 'Noto Serif JP', serif;
    width: 100%;
    height: auto;
    padding: 10px 0;
    margin: 16px auto 16px;
    line-height: 1.6em;
    text-align: center;
    /* color: #222; */
    font-size: 18px;
    font-weight: 600;
    overflow: hidden;
    background-color: whitesmoke;
}
section h3 > span {
    display: inline-block;
    white-space: nowrap;
}
section h4 {
    font-family: 'Noto Serif JP', serif;
    height: auto;
    margin: 2em auto 0.5em;
    line-height: 1.4em;
    text-align: center;
    font-size: 17px;
    font-weight: 600;
}
section p {
    height: auto;
    margin: 0 auto 0.5em;
    line-height: 1.75em;
    font-size: 15px;
    font-weight: 300;
    text-align: justify;
}
/* 外部リンク */
.external-link {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 20px auto;
}
.external-link a {
    display: block;
    padding: 0.5em 1em;
    color: white;
    font-size: 15px;
    line-height: 1.5em;
    text-align: center;
    background: #222;
    border-radius: 6px;
}
.external-link a::after {
    content: "\f360";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: white;
    margin-left: 0.5em;
}
/* 注釈 */
.notice {
    margin: 20px auto;
    text-align: justify;
    line-height: 1.5em;
    font-size: 90%;
    padding: 1em;
    border: 1px solid rgba(0,0,0,.5);
}
/* Image */
.content-image {
    width: 100%;
    margin: 16px auto;
}
.content-image-small {
    width: 100%;
    margin: 16px auto;
}
.content-image img {
    width: 100%;
    margin: 16px auto 0;
}
.content-image img:first-of-type {
    margin: 0 auto 0;
}
.cap-on-layer {
    position: relative;
}
.cap-on-note {
    position: absolute;
    display: inline-block;
    bottom: 0px;
    left: 0px;
    padding: 4px 6px;
    font-size: 13px;
    line-height: 1.25em;
    text-align: justify;
    color: #fff;
    background: rgba(0,0,0,.6);
}
/* 金相場 */
#Gold {
    margin: 0 auto;
}
/* 電気工具 */
ElectricTools {
    margin: 0 auto;
}

/* ナビ */
#mainNavi {
    width: 90%;
    max-width: 900px;
    margin: 20px auto;
}
#mainNavi ul {
    list-style: none;
    display: flex;
    justify-content: center;
    width: 100%;
}
#mainNavi li {
    flex-basis: 200px;
    max-width: 200px;
}
#mainNavi li a {
    display: block;
    padding: 6px;
    color: #222;
}
#mainNavi li#nav-buying a::before {
    content: "";
    display: block;
    height: 100px;
    overflow: visible;
    background: url("../images/icon-buying@2x.png") center bottom no-repeat;
    background-size: contain;
}
#mainNavi li#nav-selling a::before {
    content: "";
    display: block;
    height: 100px;
    overflow: visible;
    background: url("../images/icon-selling@2x.png") center bottom no-repeat;
    background-size: contain;
}
#mainNavi li#nav-shichi a::before {
    content: "";
    display: block;
    height: 100px;
    overflow: visible;
    background: url("../images/icon-shichi@2x.png") center bottom no-repeat;
    background-size: contain;
}
#mainNavi li h3 {
    text-align: center;
    font-size: 19px;
    line-height: 1.0em;
    padding: 8px 0;
}
#mainNavi li p {
    text-align: justify;
    font-size: 13px;
    line-height: 1.25em;
}
/* 買取 */
#Buying {
    background: none;
    border-top: 5px solid #573794;
}
#Buying h2 {
    margin: 16px auto 16px;
    line-height: 1.4em;
    padding: 0.5em 0;
    text-align: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
    background: #573794 url("../images/bg-purple.png");
}
.phone-guide {}
.phone-guide h4 {
    padding: 0 0 0 0;
    margin: 16px auto 10px;
    line-height: 1.4em;
    text-align: center;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}
.phone-guide h4 > span {
    display: inline-block;
}
.phone-guide a {
    display: block;
    margin: 12px auto;
    width: 100%;
    padding: 14px 0;
    line-height: 1.1em;
    text-align: center;
    color: #fff;
    background-color: #3b1d70;
    font-size: 18px;
    font-weight: bold;
    border-radius: 6px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .3);
}
/* 販売 */
#Selling {
    background: none;
    border-top: 5px solid #ba299c;
}
#Selling h2 {
    margin: 16px auto 16px;
    line-height: 1.4em;
    padding: 0.5em 0;
    text-align: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
    background: #ba299c url("../images/bg-rose.png");
}
/* 質入れ */
#Shichi {
    background: none;
    border-top: 5px solid #008899;
}
#Shichi h2 {
    margin: 16px auto 16px;
    line-height: 1.4em;
    padding: 0.5em 0;
    text-align: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
    background: #008899 url("../images/bg-green.png");
}
#Shichi li {
    clear: both;
    display: block;
    overflow: hidden;
}
#Shichi li h5 {
    padding: 0;
    margin: 12px auto 8px;
    text-align: left;
    height: 24px;
    font-weight: bold;
}
#Shichi h5.subtitle {
    padding: 0;
    margin: 24px auto 8px;
    text-align: left;
    height: 24px;
    font-weight: bold;
}
#Shichi li h5 span {
    display: inline;
    color: #222;
    font-size: 18px;
    line-height: 24px;
    text-align: left;
    height: 24px;
    border-bottom: 1px solid #80c3cc;
}
#Shichi li h5 span.in-circle {
    display: inline-block;
    background-color: #008899;
    color: #fff;
    font-size: 14px;
    line-height: 14px;
    text-align: center;
    height: 24px;
    width: 24px;
    padding: 5px;
    border-radius: 12px;
    margin-right: 4px;
    border: none;
}
#Shichi li div.left-side {
    float: left;
    width: 60%;
    margin-right: 5%;
}
#Shichi li div.right-side {
    float: left;
    width: 35%;
}
#Shichi li div.right-side img {
    width: 100%;
}
#Interest {
    width: 100%;
    table-layout: auto;
    border-spacing: 1px;
    border-collapse: collapse;
}
#Interest tbody tr th {
    font-weight: 400;
    padding: 4px 1em;
    text-align: center;
    color: #fff;
    background-color: #333;
    border: 1px solid #999;
}
#Interest tbody tr th:first-child {
    width: auto;
}
#Interest tbody tr td {
    font-weight: 400;
    padding: 4px 1em;
    text-align: center;
    color: #222;
    border: 1px solid #999;
}
#Shichi .red {
    color: red;
}

/* バナー */
.banner {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 30px;
}
.banner img {
	width: 100%;
	height: auto;
}
/* Link Button */
.linkbtn-box {
    width: 86%;
    text-align: center;
    margin: 20px auto 30px;
}
a.linkbtn {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 6px auto;
    line-height: 1.2em;
    font-size: 14px;
    padding: 14px 0 12px;
    font-weight: 500;
    color: #fff;
    background: #222;
    border-radius: 4px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, .3);
}
a.under-linkbtn {
    display: inline-block;
    font-size: 13px;
    line-height: 1.5em;
    color: #fff;
}
/* WEBクーポン */
#webCoupon {
    width: 100%;
}
#webCoupon img {
    width: 100%;
}
/* for PC
_____________________________________*/
@media print, screen and (min-width: 900px) {
    /* Main */
    #wrapper {
        position: relative;
        width: 100%;
        margin: 0 auto;
    }
    section {
        clear: both;
        margin: 0 auto;
        position: relative;
        overflow: hidden;
    }
    .fullwidth {
        /* original value for website */
        width: 100%;
    }
    .contentwidth {
        /* original value for website */
        max-width: 900px;
        padding: 0 0 40px;
    }
    section h3 {
        padding: 15px 0;
        margin: 25px auto 25px;
        font-size: 30px;
    }
    section h3 > span {}
    section h4 {
        font-size: 18px;
    }
    section p {
        font-size: 17.5px;
    }
    /* 外部リンク */
    .external-link {
        width: 90%;
        max-width: 900px;
        margin: 30px auto;
    }
    .external-link a {
        font-size: 20px;
        border-radius: 10px;
    }
    .external-link a::after {
    }
    /* Image */
    .content-image {
        width: 100%;
        margin: 0 auto 20px;
    }
    .content-image-small {
        width: 50%;
        max-width: 450px;
        margin: 0 auto 20px;
    }
    .content-image-left {
        display: block;
        float: left;
        margin: 0 2% 20px 0;
    }
    .content-image-right {
        display: block;
        float: right;
        margin: 0 0 20px 2%;
    }
    .content-image img {
        width: 100%;
        margin: 20px auto 0;
    }
    .content-image img:first-of-type {
        margin: 0 auto 0;
    }
    .cap-on-layer {}
    .cap-on-note {}
    /* 新型コロナウイルス対策 */
    .corona {
        padding: 30px 40px;
    }
    .corona h3 {
        padding: 0 0 30px;
    }
    .corona p {
        font-size: 18px;
    }
    /* 電話 */
    a[href^="tel:"] {
        pointer-events: none;
    }
    /* ナビ */
    #mainNavi li {
        flex-basis: 300px;
        max-width: 300px;
    }
    #mainNavi li a {
        padding: 12px;
    }
    #mainNavi li h3 {
        font-size: 24px;
        padding: 12px 0;
    }
    #mainNavi li p {
        font-size: 15px;
    }
    /* 金相場 */
    #Gold {
        margin: 20px auto 0;
        max-width: 1000px;
    }
    /* 電気工具 */
    #ElectricTools {
        margin: 20px auto 50px;
        max-width: 1000px;
    }

    /* 買取 */
    #Buying {}
    #Buying h2 {
        margin: 28px auto 16px;
        font-size: 36px;
        padding: 0.5em 0;
    }
    .phone-guide {}
    .phone-guide h4 {
        margin: 24px auto 10px;
        font-size: 24px;
    }
    .phone-guide h4 > span {
        display: inline-block;
    }
    .phone-guide a {
        margin: 16px auto 24px;
        width: 100%;
        padding: 24px 0;
        font-size: 24px;
        line-height: 1.5em;
        box-shadow: none;
    }
    /* 販売 */
    #Selling {}
    #Selling h2 {
        margin: 28px auto 16px;
        font-size: 36px;
        padding: 0.5em 0;
    }
    /* 質入れ */
    #Shichi {}
    #Shichi h2 {
        margin: 28px auto 16px;
        font-size: 36px;
        padding: 0.5em 0;
    }
    #Shichi li div.left-side {
        width: 700px;
        margin-right: 50px;
    }
    #Shichi li div.right-side {
        width: 150px;
    }
    #Interest tbody tr th:first-child {
        width: 70%;
    }
    /* SP500スクエアバナー */
    .banner {
        width: 100%;
        max-width: 1000px;
        margin: 0 auto 30px;
    }
    /* Link Button */
    .linkbtn-box {
        clear: both;
        margin: 30px auto 60px
    }
    a.linkbtn {
        margin: 20px auto;
        line-height: 40px;
        font-size: 16px;
        padding: 16px 0 14px;
    }
    a.under-linkbtn {}
    /* WEBクーポン */
    #webCoupon {
        width: 100%;
        max-width: 1000px;
        margin: 40px auto;
    }
}
/* End for PC */
/* ====================================

    Info, Map

==================================== */
/* for SmartPhone
_____________________________________*/
#information {
    width: 100%;
    margin: 0;
    color: #222;
}
#information h3 {
    background: none;
}
/* 新型コロナウイルス対策 */
.corona {
    margin: 30px auto;
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, .5);
    border: 1px solid rgba(0, 0, 0, 0.5);
}
.corona h3 {
    margin: 0 auto;
    padding: 0 0 12px;
    background: none !important;
}
.corona p {
    font-size: 14px;
    line-height: 1.5em;
    padding: 0;
}
/* 店舗情報 */
#information table {
    table-layout: auto;
    box-sizing: border-box;
    border-collapse: collapse;
    border-spacing: 0;
    width: 86%;
    max-width: 900px;
    margin: 0 auto 30px;
    padding: 0;
	border: 1px solid #999;
}
#information table th {
    width: 25%;
    color: #222;
    font-weight: 500;
    background: none;
    padding: 12px;
    border-top: 1px solid #999;
}
#information table td {
    color: #222;
    font-weight: 300;
    background: none;
    border-top: 1px solid #999;
}
#information table tr:first-child th,
#information table tr:first-child td {
	border-top: none;
}
#information table tbody td {
    padding: 12px;
}
#information table tfoot td {
    padding: 0;
    background: none;
}
.place-photo {
    display: block;
    width: 86%;
    max-width: 500px;
    margin: 0 auto;
    padding: 0;
}
.place-photo img {
    display: block;
    width: 100%;
}
.guidemap {
    padding: 0;
	width: 100%;
}
.g-map {
    width: 100%;
    max-width: 900px;
    height: 450px;
    border: none;
    margin: 0 auto;
}
/* 外部地図アプリ */
.maplink {
    display: block;
    text-align: center;
    font-size: 14px;
    margin: 15px auto;
}
a.btn-applemap, a.btn-googlemap {
    display: inline-block;
    margin: 0 2px;
    width: 130px;
    height: 30px;
    line-height: 30px;
    border-radius: 2px;
    color: #fff;
    background: #222;
    overflow: hidden;
}
/* for PC */
@media print, screen and (min-width: 768px) {
    /* Info, 案内図 */
    #information table {
        max-width: 900px;
        margin: 0 auto 60px;
		border: 1px solid #999;
    }
}
/* CSS Document */
/* for SmartPhone */
/* ==================

    フッター

================== */
footer {
    clear: both;
    margin: 0 0 100px;
    width: 100%;
    position: relative;
    text-align: center;
    padding: 0;
}
/* 許認可 */
.permission {
	clear: both;
    display: block;
    margin: 0 auto;
    width: 100%;
    padding: 0.5em 1em;
    height: auto;
    line-height: 1.3em;
    color: #333;
    text-align: center;
    font-size: 14px;
}
.permission > span {
    display: inline-block;
}
/* コピーライト */
.copyright {
    clear: both;
    display: block;
    margin: 0;
    width: 100%;
    padding: 15px 0;
    height: 10px;
    line-height: 10px;
    color: #333;
    text-align: center;
    font-size: 12px;
}
.copyright a {
    color: #246;
}
/* ページトップへ */
.pageback {
    position: relative;
    margin: 0;
    width: 100%;
    height: auto;
    overflow: hidden;
    text-align: center;
}
.pageback a {
    display: inline-block;
    margin: 30px auto 30px;
    line-height: 1.2em;
    text-align: center;
    overflow: hidden;
    background: none;
    font-size: 20px;
    color: #222;
}
.gotop {
    position: relative;
    margin: 0;
    width: 100%;
    height: auto;
    overflow: hidden;
    text-align: center;
}
.gotop a {
    display: inline-block;
    margin: 20px auto 40px;
    line-height: 40px;
    text-align: center;
    overflow: hidden;
    background: none;
    font-size: 36px;
    color: #222;
}
/* for PC */
@media print, screen and (min-width: 900px) {
    /* フッター */
    footer {
        clear: both;
        margin: 0 0 120px;
        width: 100%;
        position: relative;
        text-align: center;
        padding: 0;
    }
    /* コピーライト */
    .copyright {
        clear: both;
        display: block;
        margin: 0;
        padding: 15px 0 30px;
        height: 1.2em;
        line-height: 1.2em;
        text-align: center;
        font-size: 12px;
    }
    /* ページトップへ */
    .pageback {}
    .gotop {
        position: absolute;
        right: 30px;
        top: auto;
        bottom: 20px;
        width: 60px;
        height: 60px;
        line-height: 60px;
        background: none;
    }
    .gotop:hover {
        top: auto;
        bottom: 22px;
    }
    .gotop a {
        font-size: 32px;
        color: #333;
        margin: 0;
        width: 60px;
        height: 60px;
    }
} /* End for PC */