    @charset "UTF-8";
    * {
        margin: 0;
    }
    
    a {
        text-decoration: none;
        color: rgb(109, 109, 109);
    }
    
    ul {
        list-style: none;
    }
    
    @media screen and (max-width: 719px) {
        /* 719pxまでの幅の場合に適応される */
        /* 全体 */
        .title_band {
            background-color: rgb(26, 26, 65);
            padding: 30px 0;
            color: white;
            text-align: center;
            width: 100%;
            font-size: 100%;
        }
        .triangle {
            width: min-content;
            border-top: 40px solid rgb(26, 26, 65);
            border-right: 40px solid transparent;
            border-left: 40px solid transparent;
            margin: 0 auto;
        }
        /* ここまで 全体 */
        /* ヘッダー */
        .header {
            display: flex;
            background-color: white;
            position: fixed;
            height: 100px;
            width: 100%;
            z-index: 99;
            align-items: center;
        }
        h1 {
            font-size: 80%;
            font-weight: lighter;
            padding-left: 1%;
        }
        .logo {
            margin: 0 auto;
            text-align: left;
            margin-left: 10%;
        }
        .logo img {
            width: 30%;
        }
        /*　ハンバーガーボタン　*/
        .hamburger {
            display: block;
            position: fixed;
            z-index: 3;
            right: 30px;
            top: 30px;
            width: 42px;
            height: 42px;
            cursor: pointer;
            text-align: center;
        }
        .hamburger span {
            display: block;
            position: absolute;
            width: 30px;
            height: 2px;
            left: 6px;
            background: #555;
            -webkit-transition: 0.3s ease-in-out;
            -moz-transition: 0.3s ease-in-out;
            transition: 0.3s ease-in-out;
        }
        .hamburger span:nth-child(1) {
            top: 10px;
        }
        .hamburger span:nth-child(2) {
            top: 20px;
        }
        /* ナビ開いてる時のボタン */
        .hamburger.active span:nth-child(1) {
            top: 16px;
            left: 6px;
            -webkit-transform: rotate(-45deg);
            -moz-transform: rotate(-45deg);
            transform: rotate(-45deg);
        }
        .hamburger.active span:nth-child(2) {
            top: 16px;
            -webkit-transform: rotate(45deg);
            -moz-transform: rotate(45deg);
            transform: rotate(45deg);
        }
        nav.globalMenuSp {
            position: fixed;
            z-index: 2;
            top: 0;
            right: 0;
            color: #000;
            background: rgba(255, 255, 255, 0.5);
            text-align: center;
            transform: translateX(100%);
            transition: all 0.6s;
            width: 100%;
        }
        nav.globalMenuSp ul {
            background: rgba(255, 255, 255, 0.5);
            margin: 0;
            padding: 0;
            width: 100%;
        }
        nav.globalMenuSp ul li {
            list-style-type: none;
            padding: 2% 0;
            width: 100%;
            border-bottom: 1px solid #fff;
        }
        nav.globalMenuSp ul li:last-child {
            padding-bottom: 0;
            border-bottom: none;
        }
        nav.globalMenuSp ul li:hover {
            background: #ddd;
        }
        nav.globalMenuSp ul li a {
            display: block;
            color: #000;
            padding: 1em 0;
            text-decoration: none;
        }
        /* このクラスを、jQueryで付与・削除する */
        nav.globalMenuSp.active {
            transform: translateX(0%);
        }
        nav.global {
            display: none;
        }
        /* ここまで ヘッダー */
        /* メインビジュアル */
        #main_visual {
            background-image: url('../img/main_visual.jpg');
            margin: 0;
            width: 100%;
            height: 100%;
            background-repeat: no-repeat;
            background-size: contain;
            background-position: center center;
            padding: 35% 0;
            margin-bottom: 10%;
        }
        .main_txt {
            color: #fff;
            background-color: rgba(0, 0, 0, 0.466);
            padding: 3% 0;
        }
        .main_txt {
            text-align: center;
            font-size: 100%;
            letter-spacing: 0.4rem;
        }
        .font-10 {
            font-size: 40%;
            letter-spacing: 0.1rem;
        }
        .font200 {
            font-size: 70%;
            text-align: center;
            margin: 35px auto 50px auto;
            letter-spacing: 0.15rem;
            line-height: 1rem;
            font-weight: bold;
        }
        .strong {
            display: flex;
            flex-wrap: wrap;
            width: 95%;
            justify-self: center;
            text-align: center;
            margin: 0 auto;
            margin-bottom: -75%;
        }
        .strong_box {
            background-color: rgb(24, 24, 116);
            width: 40%;
            margin-right: 1.5%;
            margin-left: 1.5%;
            color: white;
            font-weight: bold;
            padding: 5% 0;
            font-size: 50%;
            margin: 0 auto;
            margin-top: 5%;
        }
        /* ここまで メインビジュアル */
        /* 私たちについて */
        #us {
            margin-top: 50%;
        }
        .difference {
            display: block;
            justify-content: center;
            width: 100%;
            margin: 0 auto;
            margin-bottom: 75px;
        }
        .difference-left {
            width: 100%;
            margin: 0 auto;
        }
        .difference-img {
            display: none;
        }
        .difference-right {
            width: 100%;
            margin: 0 auto;
        }
        .difference-right h3 {
            text-align: center;
            color: white;
            background-color: rgb(26, 26, 65);
            padding: 15px;
            font-size: 100%;
        }
        .difference-right ul {
            padding-left: 5px;
            padding-right: 5px;
        }
        .difference-right ul li {
            font-size: 100%;
            margin-top: 25px;
            letter-spacing: 0.2rem;
            margin-bottom: 7px;
            font-weight: bold;
        }
        .difference-right ul p {
            display: none;
        }
        /* 店舗詳細情報 */
        #information {
            margin-top: -100px;
            padding-top: 100px;
        }
        .information-content {
            display: block;
            justify-content: center;
        }
        .information-left {
            width: 100%;
            margin: 0 auto;
        }
        .information-left h3 {
            font-size: 150%;
            border-bottom: 0.1px solid rgb(218, 218, 218);
        }
        .information-left dl {
            border-bottom: 0.1px solid rgb(218, 218, 218);
            padding: 25px 0;
            margin-left: 2%;
            margin-right: 2%;
        }
        .information-left dl dt {
            line-height: 225%;
            margin-left: 2%;
            margin-right: 2%;
        }
        .item-title {
            color: rgb(121, 121, 121);
        }
        .information-right {
            width: 100%;
            margin: 0 auto;
        }
        .information-right p {
            font-size: 120%;
            font-weight: bold;
            margin-top: 1.8rem;
        }
        /* バイヤー紹介 */
        .intoroduce_buyer {
            margin: 50px auto;
            width: 85%;
        }
        .intoroduce_buyer h3 {
            text-align: center;
            font-size: 200%;
            margin-bottom: 30px;
            margin-top: 30px;
        }
        .intoroduce {
            display: flex;
            justify-content: center;
        }
        .introduce_txt {
            width: 70%;
            margin: auto 0;
        }
        .buyer-img {
            width: 30%;
        }
        .buyer-img img {
            width: 80%;
            margin: 0 auto;
        }
        /* ここまでバイヤー紹介 */
        /* ここまで 店舗詳細情報 */
        /* 買取対象商品 */
        #buy {
            margin-top: -100px;
            padding-top: 100px;
        }
        /* 上部ギャラリー  */
        .img-gallery {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 50px;
        }
        .img-1,
        .img-2,
        .img-3,
        .img-4,
        .img-5,
        .img-6 {
            width: 100%;
        }
        .card-1,
        .card-2,
        .card-3,
        .card-4,
        .card-5,
        .card-6 {
            width: 48%;
            margin-left: 0.1%;
            margin-right: 0.1%;
            position: relative;
        }
        .card-1 p,
        .card-2 p,
        .card-3 p,
        .card-4 p,
        .card-5 p,
        .card-6 p {
            position: absolute;
            text-align: center;
            top: 45%;
            left: 0;
            right: 0;
            margin: auto;
            color: white;
            font-weight: bold;
            font-size: 75%;
            letter-spacing: 0.2rem;
        }
        /* ここまで上部ギャラリー  */
        /* 下部ギャラリー */
        .break {
            background: lightgray;
            margin: 100px auto;
            padding-top: 50px;
            padding-bottom: 50px;
        }
        .card-7,
        .card-8,
        .card-9,
        .card-10,
        .card-11 {
            width: 65%;
            position: relative;
            margin: 0 auto;
            margin-top: 3%;
        }
        .break-title {
            text-align: center;
            background: rgb(26, 26, 65);
            color: white;
            font-size: 75%;
            font-weight: bold;
            padding: 5%;
        }
        /* ここまで下部ギャラリー */
        /* ここまで買取対象商品 */
        /* 買取の流れ */
        #flow {
            margin-top: -100px;
            padding-top: 100px;
        }
        .flow-card {
            width: 80%;
            display: block;
            justify-content: center;
            margin: 0 auto;
            margin-top: 50px;
            box-shadow: 2px 2px 3px 3px #ccc;
        }
        .flow-left {
            width: 100%;
            height: auto;
            margin: auto;
        }
        .flow-left img {
            width: 100%;
            display: block;
            margin: auto;
        }
        .flow-right {
            width: 100%;
            height: auto;
        }
        .flow-right ol {
            margin-top: 5%;
            margin-left: 0;
            padding: 1%;
        }
        .flow-right ol li {
            list-style: none;
            line-height: 150%;
            font-size: 100%;
            margin-bottom: 2%;
        }
        .flow-right p {
            margin: 0 6%;
            font-size: 60%;
        }
        /* 感染症対策 */
        .covid-card {
            display: block;
            width: 80%;
            margin: 0 auto;
            margin-top: 100px;
            text-align: center;
            box-shadow: 2px 2px 3px 3px #ccc;
            padding-bottom: 80px;
        }
        .covid-card h3 {
            font-size: 150%;
            padding: 15px;
            background-color: black;
            color: white;
            text-align: center;
        }
        .covid-card ul {
            width: 95%;
        }
        .covid-card ul li {
            list-style-type: disc;
            float: left;
            text-align: center;
            margin-left: auto;
            margin-right: 7%;
            padding-top: 6%;
            font-size: 60%;
        }
        /* ここまで感染症対策 */
        /* 本人確認 */
        .authentification-card {
            display: block;
            width: 80%;
            margin: 0 auto;
            margin-top: 100px;
            box-shadow: 2px 2px 3px 3px #ccc;
        }
        .authentification-card h3 {
            font-size: 150%;
            padding: 15px;
            background-color: rgb(191, 5, 19);
            color: white;
            text-align: center;
        }
        .authentification-content {
            display: block;
            justify-content: center;
            padding: 5% 0;
        }
        .authen-left {
            width: 100%;
            margin: auto;
        }
        .authen-left img {
            width: 90%;
            display: block;
            margin: auto;
            padding-top: 20%;
            padding-bottom: 10%;
        }
        .authen-right {
            width: 100%;
        }
        .authen-right ul {
            width: 75%;
            padding-top: 10%;
            padding-bottom: 20%;
        }
        .authen-right ul li {
            list-style-type: none;
            margin-left: 20px;
            margin-top: 10px;
        }
        /* ここまで本人確認 */
        /* 出張買取 */
        .visit-buy {
            text-align: center;
            margin-top: 75px;
            margin-bottom: 100px;
        }
        .visit-buy h3 {
            font-size: 100%;
            margin-top: 50px;
            margin-bottom: 20px;
        }
        .visit-buy p.visit {
            font-size: 100%;
            margin-top: 50px;
        }
        .telephone {
            display: block;
            font-size: 120%;
            margin: 5%;
        }
        .tel-link {
            display: inline-block;
            border-radius: 8px;
            background: rgb(24, 24, 116);
            padding: 15px;
            color: white;
            box-shadow: 0px 3px 0px rgb(161, 161, 161);
            transition: .1s;
        }
        .tel-link:hover {
            color: white;
            box-shadow: none;
            background: rgb(24, 24, 116);
            transform: translate3d(0, 3px, 0);
        }
        /* ここまで出張買取 */
        /* ここまで買取の流れ */
        /* お客様の声 */
        #customer {
            margin-top: -100px;
            padding-top: 100px;
            margin-bottom: 200px;
        }
        .slider {
            margin-top: 75px;
        }
        .voice-card {
            display: block;
            border: 0.1px solid rgb(218, 218, 218);
            margin-left: 1%;
            margin-right: 1%;
            height: auto;
            width: 90%;
        }
        .voice-content {
            margin: 25px;
            height: 475px;
        }
        .voice-title {
            text-align: center;
            border-bottom: 0.1px solid rgb(218, 218, 218);
            line-height: 200%;
            font-weight: bold;
            margin-top: 25px;
        }
        .sex {
            text-align: center;
            border-bottom: 0.1px solid rgb(218, 218, 218);
            line-height: 200%;
            margin-top: 25px;
        }
        .shop {
            text-align: center;
            border-bottom: 0.1px solid rgb(218, 218, 218);
            line-height: 200%;
            margin-top: 25px;
        }
        .voice-txt {
            text-decoration: underline 0.1px rgb(218, 218, 218);
            margin-top: 25px;
            font-size: 80%;
            letter-spacing: 0.2rem;
        }
        /* ここまでお客様の声 */
        /* Q&A */
        #QA {
            background-color: rgb(26, 26, 65);
            width: 100vw;
            position: relative;
            left: 50%;
            transform: translateX(-50%);
            margin-top: -100px;
            padding-top: 120px;
            padding-bottom: 70px;
            display: block;
        }
        .qa_title {
            color: white;
            height: auto;
            margin: 0 auto;
            font-size: 200%;
            letter-spacing: 0.1rem;
            text-align: center;
            margin-top: -15%;
            margin-bottom: 10%;
        }
        .menu {
            margin: 0 auto;
            width: 90%;
        }
        .menu p {
            display: block;
            padding: 15px;
            color: white;
        }
        label {
            display: block;
            margin-top: 25px;
            padding: 15px;
            line-height: 1.5;
            color: rgb(26, 26, 65);
            background: white;
            cursor: pointer;
        }
        #first-label {
            margin-top: 0;
        }
        input {
            display: none;
        }
        .menu ul {
            margin: 0;
            padding: 0;
            background: rgb(103, 103, 119);
            list-style: none;
            align-items: center;
        }
        .menu li {
            height: 0;
            overflow: hidden;
            -webkit-transition: all 0.5s;
            -moz-transition: all 0.5s;
            -ms-transition: all 0.5s;
            -o-transition: all 0.5s;
            transition: all 0.5s;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        #menu_bar01:checked~#links01 li,
        #menu_bar02:checked~#links02 li,
        #menu_bar03:checked~#links03 li,
        #menu_bar04:checked~#links04 li,
        #menu_bar05:checked~#links05 li,
        #menu_bar06:checked~#links06 li,
        #menu_bar07:checked~#links07 li,
        #menu_bar08:checked~#links08 li {
            opacity: 1;
            padding-top: 6.5rem;
            padding-bottom: 6.5rem;
            padding-left: 1rem;
            padding-right: 1rem;
        }
        /* お問い合わせ */
        #contact {
            margin-top: -100px;
            padding-top: 100px;
            text-align: center;
        }
        #contact h2 {
            margin-top: 75px;
            margin-bottom: 20px;
        }
        .contact-time {
            margin-top: 20px;
        }
        /* ここまでお問い合わせ */
        /* フッター */
        footer {
            margin-top: 75px;
            padding-top: 50px;
            padding-bottom: 50px;
            background: rgb(219, 219, 219);
            text-align: center;
        }
        /* フッターお問い合わせ */
        /* フッターお問い合わせ */
    }
    
    @media screen and (min-width: 720px) and (max-width: 979px) {
        /* 480pxまでの幅の場合に適応される */
        /* 全体 */
        .title_band {
            background-color: rgb(26, 26, 65);
            padding: 30px 0;
            color: white;
            text-align: center;
            width: 100%;
            font-size: 135%;
        }
        .triangle {
            width: min-content;
            border-top: 40px solid rgb(26, 26, 65);
            border-right: 40px solid transparent;
            border-left: 40px solid transparent;
            margin: 0 auto;
        }
        /* ここまで 全体 */
        /* ヘッダー */
        .header {
            display: flex;
            background-color: white;
            position: fixed;
            height: 100px;
            width: 100%;
            z-index: 99;
            align-items: center;
        }
        h1 {
            text-align: center;
            font-size: 80%;
            font-weight: lighter;
        }
        .logo {
            margin: 0 auto;
            text-align: center;
            margin-left: 85px;
        }
        .logo img {
            width: 150px
        }
        /*　ハンバーガーボタン　*/
        .hamburger {
            display: block;
            position: fixed;
            z-index: 3;
            right: 50px;
            top: 30px;
            width: 42px;
            height: 42px;
            cursor: pointer;
            text-align: center;
        }
        .hamburger span {
            display: block;
            position: absolute;
            width: 30px;
            height: 2px;
            left: 6px;
            background: #555;
            -webkit-transition: 0.3s ease-in-out;
            -moz-transition: 0.3s ease-in-out;
            transition: 0.3s ease-in-out;
        }
        .hamburger span:nth-child(1) {
            top: 10px;
        }
        .hamburger span:nth-child(2) {
            top: 20px;
        }
        /* ナビ開いてる時のボタン */
        .hamburger.active span:nth-child(1) {
            top: 16px;
            left: 6px;
            -webkit-transform: rotate(-45deg);
            -moz-transform: rotate(-45deg);
            transform: rotate(-45deg);
        }
        .hamburger.active span:nth-child(2) {
            top: 16px;
            -webkit-transform: rotate(45deg);
            -moz-transform: rotate(45deg);
            transform: rotate(45deg);
        }
        nav.globalMenuSp {
            position: fixed;
            z-index: 2;
            top: 0;
            right: 0;
            color: #000;
            background: rgba(255, 255, 255, 0.5);
            text-align: center;
            transform: translateX(100%);
            transition: all 0.6s;
            width: 60%;
        }
        nav.globalMenuSp ul {
            background: rgba(255, 255, 255, 0.5);
            margin: 0;
            padding: 0;
            width: 100%;
        }
        nav.globalMenuSp ul li {
            list-style-type: none;
            padding: 2% 0;
            width: 100%;
            border-bottom: 1px solid #fff;
        }
        nav.globalMenuSp ul li:last-child {
            padding-bottom: 0;
            border-bottom: none;
        }
        nav.globalMenuSp ul li:hover {
            background: #ddd;
        }
        nav.globalMenuSp ul li a {
            display: block;
            color: #000;
            padding: 1em 0;
            text-decoration: none;
        }
        /* このクラスを、jQueryで付与・削除する */
        nav.globalMenuSp.active {
            transform: translateX(0%);
        }
        nav.global {
            display: none;
        }
        /* ここまで ヘッダー */
        /* メインビジュアル */
        #main_visual {
            background-image: url('../img/main_visual.jpg');
            margin: 0;
            width: 100%;
            height: 100%;
            background-repeat: no-repeat;
            background-size: contain;
            background-position: center center;
            padding: 35% 0;
            margin-bottom: 10%;
        }
        .main_txt {
            color: #fff;
            background-color: rgba(0, 0, 0, 0.466);
            padding: 3% 0;
            margin-top: -10%;
        }
        .main_txt {
            text-align: center;
            font-size: 180%;
            letter-spacing: 0.4rem;
        }
        .font-10 {
            font-size: 60%;
            letter-spacing: 0.1rem;
        }
        .font200 {
            font-size: 150%;
            text-align: center;
            margin: 35px auto 50px auto;
            letter-spacing: 0.15rem;
            line-height: 3rem;
            font-weight: bold;
        }
        .strong {
            width: 95%;
            margin: 0 auto;
            margin-top: -15%;
        }
        .strong_box {
            background-color: rgb(24, 24, 116);
            float: left;
            width: 17%;
            margin-right: 1.5%;
            margin-left: 1.5%;
            color: white;
            text-align: center;
            margin-top: 20%;
            padding: 30px 0;
            font-size: 50%;
        }
        /* ここまで メインビジュアル */
        /* 私たちについて */
        .difference {
            display: flex;
            justify-content: center;
            width: 90%;
            margin: 0 auto;
            margin-bottom: 75px;
        }
        .difference-left {
            width: 45%;
            margin: 0 auto;
        }
        .difference-img {
            width: 100%
        }
        .difference-right {
            width: 45%;
            margin: 0 auto;
        }
        .difference-right h3 {
            text-align: center;
            color: white;
            background-color: rgb(26, 26, 65);
            padding: 15px;
            font-size: 100%;
        }
        .difference-right ul {
            padding-left: 5px;
            padding-right: 5px;
        }
        .difference-right ul li {
            font-size: 100%;
            margin-top: 25px;
            letter-spacing: 0.2rem;
            margin-bottom: 7px;
            font-weight: bold;
        }
        .difference-right ul p {
            display: none;
        }
        /* 店舗詳細情報 */
        #information {
            margin-top: -100px;
            padding-top: 100px;
        }
        .information-content {
            display: flex;
            justify-content: center;
        }
        .information-left {
            width: 45%;
            margin-right: 2%;
            margin-left: 3%;
        }
        .information-left h3 {
            font-size: 150%;
            border-bottom: 0.1px solid rgb(218, 218, 218);
        }
        .information-left dl {
            border-bottom: 0.1px solid rgb(218, 218, 218);
            padding: 25px 0;
        }
        .information-left dl dt {
            line-height: 200%;
        }
        .item-title {
            color: rgb(121, 121, 121);
        }
        .information-right {
            width: 45%;
            margin-left: 2%;
            margin-right: 3%;
        }
        .information-right p {
            font-size: 120%;
            font-weight: bold;
            margin-top: 1.8rem;
        }
        /* バイヤー紹介 */
        .intoroduce_buyer {
            margin: 50px auto;
            width: 80%;
        }
        .intoroduce_buyer h3 {
            text-align: center;
            font-size: 200%;
            margin-bottom: 30px;
            margin-top: 30px;
        }
        .intoroduce {
            display: flex;
            justify-content: center;
        }
        .introduce_txt {
            margin: auto 0;
        }
        .buyer-img {
            width: 120px;
            padding-right: 50px;
        }
        .buyer-img img {
            width: 100%;
        }
        /* ここまでバイヤー紹介 */
        /* ここまで 店舗詳細情報 */
        /* 買取対象商品 */
        #buy {
            margin-top: -100px;
            padding-top: 100px;
        }
        /* 上部ギャラリー  */
        .img-gallery {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 50px;
        }
        .img-1,
        .img-2,
        .img-3,
        .img-4,
        .img-5,
        .img-6 {
            width: 100%;
        }
        .card-1,
        .card-2,
        .card-3,
        .card-4,
        .card-5,
        .card-6 {
            width: 33%;
            margin-left: 0.1%;
            margin-right: 0.1%;
            position: relative;
        }
        .card-1 p,
        .card-2 p,
        .card-3 p,
        .card-4 p,
        .card-5 p,
        .card-6 p {
            position: absolute;
            text-align: center;
            top: 45%;
            left: 0;
            right: 0;
            margin: auto;
            color: white;
            font-size: 150%;
            letter-spacing: 0.2rem;
        }
        /* ここまで上部ギャラリー  */
        /* 下部ギャラリー */
        .break {
            background: lightgray;
            margin: 100px auto;
            padding-top: 50px;
            padding-bottom: 50px;
        }
        .card-7,
        .card-8,
        .card-9,
        .card-10,
        .card-11 {
            width: 15%;
            margin-left: 2%;
            margin-right: 2%;
            position: relative;
        }
        .break-title {
            text-align: center;
            background: rgb(26, 26, 65);
            color: white;
            font-size: 75%;
            font-weight: bold;
            padding: 5%;
        }
        /* ここまで下部ギャラリー */
        /* ここまで買取対象商品 */
        /* 買取の流れ */
        #flow {
            margin-top: -100px;
            padding-top: 100px;
        }
        .flow-card {
            width: 80%;
            display: flex;
            justify-content: center;
            margin: 0 auto;
            margin-top: 50px;
            box-shadow: 2px 2px 3px 3px #ccc;
        }
        .flow-left {
            width: 50%;
            height: auto;
            margin: auto;
        }
        .flow-left img {
            width: 80%;
            display: block;
            margin: auto;
        }
        .flow-right {
            width: 50%;
            height: auto;
        }
        .flow-right ol {
            margin-top: 5%;
            margin-left: 0;
        }
        .flow-right ol li {
            list-style: none;
            line-height: 150%;
            font-size: 100%;
            margin-bottom: 2%;
        }
        .flow-right p {
            margin-left: 60px;
            font-size: 60%;
        }
        /* 感染症対策 */
        .covid-card {
            display: block;
            width: 80%;
            margin: 0 auto;
            margin-top: 100px;
            text-align: center;
            box-shadow: 2px 2px 3px 3px #ccc;
            padding-bottom: 80px;
        }
        .covid-card h3 {
            font-size: 150%;
            padding: 15px;
            background-color: black;
            color: white;
            text-align: center;
        }
        .covid-card ul {
            width: 95%;
        }
        .covid-card ul li {
            list-style-type: disc;
            float: left;
            text-align: center;
            margin-left: 6%;
            margin-right: auto;
            padding-top: 6%;
            font-size: 60%;
        }
        /* ここまで感染症対策 */
        /* 本人確認 */
        .authentification-card {
            display: block;
            width: 80%;
            margin: 0 auto;
            margin-top: 100px;
            box-shadow: 2px 2px 3px 3px #ccc;
        }
        .authentification-card h3 {
            font-size: 150%;
            padding: 15px;
            background-color: rgb(191, 5, 19);
            color: white;
            text-align: center;
        }
        .authentification-content {
            display: flex;
            justify-content: center;
            padding: 5% 0;
        }
        .authen-left {
            width: 50%;
            margin: auto;
        }
        .authen-left img {
            width: 80%;
            display: block;
            margin: auto;
        }
        .authen-right {
            width: 50%;
        }
        .authen-right ul {
            width: 75%;
        }
        .authen-right ul li {
            float: left;
            list-style-type: none;
            margin-left: 20px;
            margin-top: 10px;
        }
        /* ここまで本人確認 */
        /* 出張買取 */
        .visit-buy {
            text-align: center;
            margin-top: 75px;
            margin-bottom: 100px;
        }
        .visit-buy h3 {
            font-size: 180%;
            margin-top: 50px;
            margin-bottom: 20px;
        }
        .visit-buy p.visit {
            font-size: 120%;
            margin-top: 50px;
        }
        .telephone {
            display: inline;
            margin-left: 20px;
            margin-right: 20px;
            font-size: 120%;
        }
        .tel-link {
            display: inline-block;
            border-radius: 8px;
            background: rgb(24, 24, 116);
            padding: 15px;
            color: white;
            box-shadow: 0px 3px 0px rgb(161, 161, 161);
            transition: .1s;
        }
        .tel-link:hover {
            color: white;
            box-shadow: none;
            background: rgb(24, 24, 116);
            transform: translate3d(0, 3px, 0);
        }
        /* ここまで出張買取 */
        /* ここまで買取の流れ */
        /* お客様の声 */
        #customer {
            margin-top: -100px;
            padding-top: 100px;
            margin-bottom: 200px;
        }
        .slider {
            margin-top: 75px;
        }
        .voice-card {
            display: block;
            border: 0.1px solid rgb(218, 218, 218);
            margin-left: 50px;
            margin-right: 50px;
            height: auto;
        }
        .voice-content {
            margin: 50px;
            height: 450px;
        }
        .voice-title {
            text-align: center;
            border-bottom: 0.1px solid rgb(218, 218, 218);
            line-height: 200%;
            font-weight: bold;
        }
        .sex {
            text-align: center;
            border-bottom: 0.1px solid rgb(218, 218, 218);
            line-height: 200%;
            margin-top: 25px;
        }
        .shop {
            text-align: center;
            border-bottom: 0.1px solid rgb(218, 218, 218);
            line-height: 200%;
            margin-top: 25px;
        }
        .voice-txt {
            text-decoration: underline 0.1px rgb(218, 218, 218);
            margin-top: 25px;
            font-size: 80%;
            letter-spacing: 0.2rem;
        }
        /* ここまでお客様の声 */
        /* Q&A */
        #QA {
            background-color: rgb(26, 26, 65);
            width: 100vw;
            position: relative;
            left: 50%;
            transform: translateX(-50%);
            margin-top: -100px;
            padding-top: 120px;
            padding-bottom: 100px;
            display: flex;
        }
        .qa_title {
            color: white;
            height: auto;
            margin: 0 auto;
            font-size: 200%;
            letter-spacing: 0.1rem;
        }
        .menu {
            margin: 0 auto;
            width: 60%;
        }
        .menu p {
            display: block;
            padding: 15px;
            color: white;
        }
        label {
            display: block;
            margin-top: 25px;
            padding: 25px;
            line-height: 1;
            color: rgb(26, 26, 65);
            background: white;
            cursor: pointer;
        }
        #first-label {
            margin-top: 0;
        }
        input {
            display: none;
        }
        .menu ul {
            margin: 0;
            padding: 0;
            background: rgb(103, 103, 119);
            list-style: none;
            align-items: center;
        }
        .menu li {
            height: 0;
            overflow: hidden;
            -webkit-transition: all 0.5s;
            -moz-transition: all 0.5s;
            -ms-transition: all 0.5s;
            -o-transition: all 0.5s;
            transition: all 0.5s;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        #menu_bar01:checked~#links01 li,
        #menu_bar02:checked~#links02 li,
        #menu_bar03:checked~#links03 li,
        #menu_bar04:checked~#links04 li,
        #menu_bar05:checked~#links05 li,
        #menu_bar06:checked~#links06 li,
        #menu_bar07:checked~#links07 li,
        #menu_bar08:checked~#links08 li {
            opacity: 1;
            padding-top: 4rem;
            padding-bottom: 4rem;
            padding-left: 1rem;
            padding-right: 1rem;
        }
        /* お問い合わせ */
        #contact {
            margin-top: -100px;
            padding-top: 100px;
            text-align: center;
        }
        #contact h2 {
            margin-top: 75px;
            margin-bottom: 20px;
        }
        .contact-time {
            margin-top: 20px;
        }
        /* ここまでお問い合わせ */
        /* フッター */
        footer {
            margin-top: 75px;
            text-align: center;
            padding: 50px;
            background: rgb(219, 219, 219);
        }
        /* フッターお問い合わせ */
        /* フッターお問い合わせ */
    }
    
    @media screen and (min-width: 980px) and (max-width: 1239px) {
        /* 320pxまでの幅の場合に適応される */
        /* 全体 */
        .title_band {
            background-color: rgb(26, 26, 65);
            padding: 30px 0;
            color: white;
            text-align: center;
            width: 100%;
            font-size: 135%;
        }
        .triangle {
            width: min-content;
            border-top: 40px solid rgb(26, 26, 65);
            border-right: 40px solid transparent;
            border-left: 40px solid transparent;
            margin: 0 auto;
        }
        /* ここまで 全体 */
        /* ヘッダー */
        .header {
            display: flex;
            background-color: white;
            position: fixed;
            height: 100px;
            width: 100%;
            z-index: 99;
            align-items: center;
        }
        h1 {
            text-align: center;
            font-size: 80%;
            font-weight: lighter;
        }
        .logo {
            margin: 0 auto;
            text-align: center;
            margin-left: 85px;
        }
        .logo img {
            width: 150px
        }
        /*　ハンバーガーボタン　*/
        .hamburger {
            display: block;
            position: fixed;
            z-index: 3;
            right: 50px;
            top: 30px;
            width: 42px;
            height: 42px;
            cursor: pointer;
            text-align: center;
        }
        .hamburger span {
            display: block;
            position: absolute;
            width: 30px;
            height: 2px;
            left: 6px;
            background: #555;
            -webkit-transition: 0.3s ease-in-out;
            -moz-transition: 0.3s ease-in-out;
            transition: 0.3s ease-in-out;
        }
        .hamburger span:nth-child(1) {
            top: 10px;
        }
        .hamburger span:nth-child(2) {
            top: 20px;
        }
        /* ナビ開いてる時のボタン */
        .hamburger.active span:nth-child(1) {
            top: 16px;
            left: 6px;
            -webkit-transform: rotate(-45deg);
            -moz-transform: rotate(-45deg);
            transform: rotate(-45deg);
        }
        .hamburger.active span:nth-child(2) {
            top: 16px;
            -webkit-transform: rotate(45deg);
            -moz-transform: rotate(45deg);
            transform: rotate(45deg);
        }
        nav.globalMenuSp {
            position: fixed;
            z-index: 2;
            top: 0;
            right: 0;
            color: #000;
            background: rgba(255, 255, 255, 0.5);
            text-align: center;
            transform: translateX(100%);
            transition: all 0.6s;
            width: 60%;
        }
        nav.globalMenuSp ul {
            background: rgba(255, 255, 255, 0.5);
            margin: 0;
            padding: 0;
            width: 100%;
        }
        nav.globalMenuSp ul li {
            list-style-type: none;
            padding: 2% 0;
            width: 100%;
            border-bottom: 1px solid #fff;
        }
        nav.globalMenuSp ul li:last-child {
            padding-bottom: 0;
            border-bottom: none;
        }
        nav.globalMenuSp ul li:hover {
            background: #ddd;
        }
        nav.globalMenuSp ul li a {
            display: block;
            color: #000;
            padding: 1em 0;
            text-decoration: none;
        }
        /* このクラスを、jQueryで付与・削除する */
        nav.globalMenuSp.active {
            transform: translateX(0%);
        }
        nav.global {
            display: none;
        }
        /* ここまで ヘッダー */
        /* メインビジュアル */
        #main_visual {
            background-image: url('../img/main_visual.jpg');
            margin: 0;
            width: 100%;
            height: 100%;
            background-repeat: no-repeat;
            background-size: contain;
            background-position: center center;
            padding: 22% 0;
            margin-bottom: 10%;
        }
        .main_txt {
            color: #fff;
            background-color: rgba(0, 0, 0, 0.466);
            padding: 50px;
        }
        .main_txt {
            text-align: center;
            font-size: 200%;
            letter-spacing: 0.4rem;
        }
        .font-10 {
            font-size: 60%;
            letter-spacing: 0.1rem;
        }
        .font200 {
            font-size: 180%;
            text-align: center;
            margin: 35px auto 50px auto;
            letter-spacing: 0.15rem;
            line-height: 3rem;
            font-weight: bold;
        }
        .strong {
            width: 95%;
            margin: 0 auto;
            margin-top: -15%;
        }
        .strong_box {
            background-color: rgb(24, 24, 116);
            float: left;
            width: 17%;
            margin-right: 1.5%;
            margin-left: 1.5%;
            color: white;
            text-align: center;
            margin-top: 175px;
            padding: 30px 0;
            font-size: 70%;
        }
        /* ここまで メインビジュアル */
        /* 私たちについて */
        .difference {
            display: flex;
            justify-content: center;
            width: 90%;
            margin: 0 auto;
            margin-bottom: 75px;
        }
        .difference-left {
            width: 45%;
            margin: 0 auto;
        }
        .difference-img {
            width: 100%
        }
        .difference-right {
            width: 45%;
            margin: 0 auto;
        }
        .difference-right h3 {
            text-align: center;
            color: white;
            background-color: rgb(26, 26, 65);
            padding: 15px;
            font-size: 150%;
        }
        .difference-right ul {
            padding-left: 5px;
            padding-right: 5px;
        }
        .difference-right ul li {
            font-size: 100%;
            margin-top: 25px;
            letter-spacing: 0.2rem;
            margin-bottom: 7px;
            font-weight: bold;
        }
        .difference-right ul p {
            font-size: 80%;
            letter-spacing: 0.1rem;
            line-height: 170%;
            padding-left: 25px;
        }
        /* 店舗詳細情報 */
        #information {
            margin-top: -100px;
            padding-top: 100px;
        }
        .information-content {
            display: flex;
            justify-content: center;
        }
        .information-left {
            width: 45%;
            margin-right: 2%;
            margin-left: 3%;
        }
        .information-left h3 {
            font-size: 150%;
            border-bottom: 0.1px solid rgb(218, 218, 218);
        }
        .information-left dl {
            border-bottom: 0.1px solid rgb(218, 218, 218);
            padding: 25px 0;
        }
        .information-left dl dt {
            line-height: 200%;
        }
        .item-title {
            color: rgb(121, 121, 121);
        }
        .information-right {
            width: 45%;
            margin-left: 2%;
            margin-right: 3%;
        }
        .information-right p {
            font-size: 120%;
            font-weight: bold;
            margin-top: 1.8rem;
        }
        /* バイヤー紹介 */
        .intoroduce_buyer {
            margin: 50px auto;
            width: 80%;
        }
        .intoroduce_buyer h3 {
            text-align: center;
            font-size: 200%;
            margin-bottom: 30px;
            margin-top: 30px;
        }
        .intoroduce {
            display: flex;
            justify-content: center;
        }
        .introduce_txt {
            margin: auto 0;
        }
        .buyer-img {
            width: 120px;
            padding-right: 50px;
        }
        .buyer-img img {
            width: 100%;
        }
        /* ここまでバイヤー紹介 */
        /* ここまで 店舗詳細情報 */
        /* 買取対象商品 */
        #buy {
            margin-top: -100px;
            padding-top: 100px;
        }
        /* 上部ギャラリー  */
        .img-gallery {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 50px;
        }
        .img-1,
        .img-2,
        .img-3,
        .img-4,
        .img-5,
        .img-6 {
            width: 100%;
        }
        .card-1,
        .card-2,
        .card-3,
        .card-4,
        .card-5,
        .card-6 {
            width: 33%;
            margin-left: 0.1%;
            margin-right: 0.1%;
            position: relative;
        }
        .card-1 p,
        .card-2 p,
        .card-3 p,
        .card-4 p,
        .card-5 p,
        .card-6 p {
            position: absolute;
            text-align: center;
            top: 45%;
            left: 0;
            right: 0;
            margin: auto;
            color: white;
            font-size: 150%;
            letter-spacing: 0.2rem;
        }
        /* ここまで上部ギャラリー  */
        /* 下部ギャラリー */
        .break {
            background: lightgray;
            margin: 100px auto;
            padding-top: 50px;
            padding-bottom: 50px;
        }
        .card-7,
        .card-8,
        .card-9,
        .card-10,
        .card-11 {
            width: 15%;
            margin-left: 20px;
            margin-right: 20px;
            position: relative;
        }
        .break-title {
            text-align: center;
            background: rgb(26, 26, 65);
            color: white;
            font-size: 80%;
            font-weight: bold;
            padding: 15px;
        }
        /* ここまで下部ギャラリー */
        /* ここまで買取対象商品 */
        /* 買取の流れ */
        #flow {
            margin-top: -100px;
            padding-top: 100px;
        }
        .flow-card {
            width: 80%;
            display: flex;
            justify-content: center;
            margin: 0 auto;
            margin-top: 50px;
            box-shadow: 2px 2px 3px 3px #ccc;
        }
        .flow-left {
            width: 50%;
            height: auto;
        }
        .flow-left img {
            width: 100%;
            vertical-align: middle;
        }
        .flow-right {
            width: 50%;
            height: auto;
        }
        .flow-right ol {
            margin-top: 5%;
            margin-left: 0;
        }
        .flow-right ol li {
            list-style: none;
            line-height: 150%;
            font-size: 100%;
            margin-bottom: 2%;
        }
        .flow-right p {
            margin-left: 60px;
            font-size: 60%;
        }
        /* 感染症対策 */
        .covid-card {
            display: block;
            width: 80%;
            margin: 0 auto;
            margin-top: 100px;
            text-align: center;
            box-shadow: 2px 2px 3px 3px #ccc;
            padding-bottom: 80px;
        }
        .covid-card h3 {
            font-size: 150%;
            padding: 15px;
            background-color: black;
            color: white;
            text-align: center;
        }
        .covid-card ul {
            width: 95%;
        }
        .covid-card ul li {
            list-style-type: disc;
            float: left;
            text-align: center;
            margin-left: 8%;
            margin-right: auto;
            padding-top: 25px;
            font-size: 80%;
        }
        /* ここまで感染症対策 */
        /* 本人確認 */
        .authentification-card {
            display: block;
            width: 80%;
            margin: 0 auto;
            margin-top: 100px;
            box-shadow: 2px 2px 3px 3px #ccc;
        }
        .authentification-card h3 {
            font-size: 150%;
            padding: 15px;
            background-color: rgb(191, 5, 19);
            color: white;
            text-align: center;
        }
        .authentification-content {
            display: flex;
            justify-content: center;
            padding: 5% 0;
        }
        .authen-left {
            width: 50%;
            margin: auto;
        }
        .authen-left img {
            width: 80%;
            display: block;
            margin: auto;
        }
        .authen-right {
            width: 50%;
        }
        .authen-right ul {
            width: 75%;
        }
        .authen-right ul li {
            float: left;
            list-style-type: none;
            margin-left: 20px;
            margin-top: 10px;
        }
        /* ここまで本人確認 */
        /* 出張買取 */
        .visit-buy {
            text-align: center;
            margin-top: 75px;
            margin-bottom: 100px;
        }
        .visit-buy h3 {
            font-size: 180%;
            margin-top: 50px;
            margin-bottom: 20px;
        }
        .visit-buy p.visit {
            font-size: 120%;
            margin-top: 50px;
        }
        .telephone {
            display: inline;
            margin-left: 20px;
            margin-right: 20px;
            font-size: 120%;
        }
        .tel-link {
            display: inline-block;
            border-radius: 8px;
            background: rgb(24, 24, 116);
            padding: 15px;
            color: white;
            box-shadow: 0px 3px 0px rgb(161, 161, 161);
            transition: .1s;
        }
        .tel-link:hover {
            color: white;
            box-shadow: none;
            background: rgb(24, 24, 116);
            transform: translate3d(0, 3px, 0);
        }
        /* ここまで出張買取 */
        /* ここまで買取の流れ */
        /* お客様の声 */
        #customer {
            margin-top: -100px;
            padding-top: 100px;
            margin-bottom: 200px;
        }
        .slider {
            margin-top: 75px;
        }
        .voice-card {
            display: block;
            border: 0.1px solid rgb(218, 218, 218);
            margin-left: 50px;
            margin-right: 50px;
            height: auto;
        }
        .voice-content {
            margin: 50px;
            height: 450px;
        }
        .voice-title {
            text-align: center;
            border-bottom: 0.1px solid rgb(218, 218, 218);
            line-height: 200%;
            font-weight: bold;
        }
        .sex {
            text-align: center;
            border-bottom: 0.1px solid rgb(218, 218, 218);
            line-height: 200%;
            margin-top: 25px;
        }
        .shop {
            text-align: center;
            border-bottom: 0.1px solid rgb(218, 218, 218);
            line-height: 200%;
            margin-top: 25px;
        }
        .voice-txt {
            text-decoration: underline 0.1px rgb(218, 218, 218);
            margin-top: 25px;
            font-size: 80%;
            letter-spacing: 0.2rem;
        }
        /* ここまでお客様の声 */
        /* Q&A */
        #QA {
            background-color: rgb(26, 26, 65);
            width: 100vw;
            position: relative;
            left: 50%;
            transform: translateX(-50%);
            margin-top: -100px;
            padding-top: 120px;
            padding-bottom: 100px;
            display: flex;
        }
        .qa_title {
            color: white;
            height: auto;
            margin: 0 auto;
            font-size: 200%;
            letter-spacing: 0.1rem;
        }
        .menu {
            margin: 0 auto;
            width: 60%;
        }
        .menu p {
            display: block;
            padding: 15px;
            color: white;
        }
        label {
            display: block;
            margin-top: 25px;
            padding: 25px;
            line-height: 1;
            color: rgb(26, 26, 65);
            background: white;
            cursor: pointer;
        }
        #first-label {
            margin-top: 0;
        }
        input {
            display: none;
        }
        .menu ul {
            margin: 0;
            padding: 0;
            background: rgb(103, 103, 119);
            list-style: none;
            align-items: center;
        }
        .menu li {
            height: 0;
            overflow: hidden;
            -webkit-transition: all 0.5s;
            -moz-transition: all 0.5s;
            -ms-transition: all 0.5s;
            -o-transition: all 0.5s;
            transition: all 0.5s;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        #menu_bar01:checked~#links01 li,
        #menu_bar02:checked~#links02 li,
        #menu_bar03:checked~#links03 li,
        #menu_bar04:checked~#links04 li,
        #menu_bar05:checked~#links05 li,
        #menu_bar06:checked~#links06 li,
        #menu_bar07:checked~#links07 li,
        #menu_bar08:checked~#links08 li {
            opacity: 1;
            padding-top: 4rem;
            padding-bottom: 4rem;
            padding-left: 1rem;
            padding-right: 1rem;
        }
        /* お問い合わせ */
        #contact {
            margin-top: -100px;
            padding-top: 100px;
            text-align: center;
        }
        #contact h2 {
            margin-top: 75px;
            margin-bottom: 20px;
        }
        .contact-time {
            margin-top: 20px;
        }
        /* ここまでお問い合わせ */
        /* フッター */
        footer {
            margin-top: 75px;
            text-align: center;
            padding: 50px;
            background: rgb(219, 219, 219);
        }
        /* フッターお問い合わせ */
        /* フッターお問い合わせ */
    }
    
    @media screen and (min-width: 1240px) {
        /* 320pxまでの幅の場合に適応される */
        /* 全体 */
        .title_band {
            background-color: rgb(26, 26, 65);
            padding: 30px 0;
            color: white;
            text-align: center;
            width: 100%;
            font-size: 135%;
        }
        .triangle {
            width: min-content;
            border-top: 40px solid rgb(26, 26, 65);
            border-right: 40px solid transparent;
            border-left: 40px solid transparent;
            margin: 0 auto;
        }
        /* ここまで 全体 */
        /* ヘッダー */
        .header {
            display: flex;
            background-color: white;
            position: fixed;
            height: 100px;
            width: 100%;
            z-index: 99;
            align-items: center;
        }
        h1 {
            text-align: center;
            font-size: 80%;
            font-weight: lighter;
        }
        .logo {
            margin: 0 auto;
            text-align: center;
            margin-left: 85px;
        }
        .logo img {
            width: 150px
        }
        nav.global {
            margin-right: 25px;
            display: block;
        }
        nav ul {
            display: flex;
            justify-content: center;
            align-items: center;
            list-style: none;
        }
        nav ul li {
            float: left;
            margin-right: 60px;
        }
        nav ul li a:link,
        nav ul li a:visited,
        nav ul li a:hover,
        nav ul li a:active {
            color: rgb(24, 24, 116);
        }
        .hamburger {
            display: none;
        }
        .globalMenuSp {
            display: none;
        }
        /* ここまで ヘッダー */
        /* メインビジュアル */
        #main_visual {
            background-image: url('../img/main_visual.jpg');
            margin: 0;
            width: 100%;
            height: 100%;
            background-repeat: no-repeat;
            background-size: contain;
            background-position: center center;
            padding: 22% 0;
        }
        .main_txt {
            color: #fff;
            background-color: rgba(0, 0, 0, 0.466);
            padding: 50px;
        }
        .main_txt {
            text-align: center;
            font-size: 200%;
            letter-spacing: 0.4rem;
        }
        .font-10 {
            font-size: 60%;
            letter-spacing: 0.1rem;
        }
        .font200 {
            font-size: 200%;
            text-align: center;
            margin: 35px auto 50px auto;
            letter-spacing: 0.15rem;
            line-height: 3rem;
            font-weight: bold;
        }
        .strong {
            width: 90%;
            margin: 0 auto;
        }
        .strong_box {
            background-color: rgb(24, 24, 116);
            float: left;
            width: 17%;
            margin-right: 1.5%;
            margin-left: 1.5%;
            color: white;
            text-align: center;
            margin-top: 175px;
            padding: 30px 0;
            font-size: 85%;
        }
        /* ここまで メインビジュアル */
        /* 私たちについて */
        .difference {
            display: flex;
            justify-content: center;
            width: 90%;
            margin: 0 auto;
            margin-bottom: 75px;
        }
        .difference-left {
            width: 45%;
            margin: 0 auto;
        }
        .difference-img {
            width: 100%
        }
        .difference-right {
            width: 45%;
            margin: 0 auto;
        }
        .difference-right h3 {
            text-align: center;
            color: white;
            background-color: rgb(26, 26, 65);
            padding: 15px;
            font-size: 150%;
        }
        .difference-right ul {
            padding-left: 5px;
            padding-right: 5px;
        }
        .difference-right ul li {
            font-size: 120%;
            margin-top: 25px;
            letter-spacing: 0.2rem;
            margin-bottom: 7px;
            font-weight: bold;
        }
        .difference-right ul p {
            font-size: 90%;
            letter-spacing: 0.1rem;
            line-height: 170%;
            padding-left: 25px;
        }
        /* 店舗詳細情報 */
        #information {
            margin-top: -100px;
            padding-top: 100px;
        }
        .information-content {
            display: flex;
            justify-content: center;
        }
        .information-left {
            width: 45%;
            margin-right: 2%;
            margin-left: 3%;
        }
        .information-left h3 {
            font-size: 150%;
            border-bottom: 0.1px solid rgb(218, 218, 218);
        }
        .information-left dl {
            border-bottom: 0.1px solid rgb(218, 218, 218);
            padding: 25px 0;
        }
        .information-left dl dt {
            line-height: 200%;
        }
        .item-title {
            color: rgb(121, 121, 121);
        }
        .information-right {
            width: 45%;
            margin-left: 2%;
            margin-right: 3%;
        }
        .information-right p {
            font-size: 120%;
            font-weight: bold;
            margin-top: 1.8rem;
        }
        /* バイヤー紹介 */
        .intoroduce_buyer {
            margin: 50px auto;
            width: 80%;
        }
        .intoroduce_buyer h3 {
            text-align: center;
            font-size: 200%;
            margin-bottom: 30px;
            margin-top: 30px;
        }
        .intoroduce {
            display: flex;
            justify-content: center;
        }
        .introduce_txt {
            margin: auto 0;
        }
        .buyer-img {
            width: 120px;
            padding-right: 50px;
        }
        .buyer-img img {
            width: 100%;
        }
        /* ここまでバイヤー紹介 */
        /* ここまで 店舗詳細情報 */
        /* 買取対象商品 */
        #buy {
            margin-top: -100px;
            padding-top: 100px;
        }
        #buy h3 {
            margin-top: 25px;
            font-size: 200%;
            text-align: center;
        }
        /* 上部ギャラリー  */
        .img-gallery {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 50px;
        }
        .img-1,
        .img-2,
        .img-3,
        .img-4,
        .img-5,
        .img-6 {
            width: 100%;
        }
        .card-1,
        .card-2,
        .card-3,
        .card-4,
        .card-5,
        .card-6 {
            width: 33%;
            margin-left: 0.1%;
            margin-right: 0.1%;
            position: relative;
        }
        .card-1 p,
        .card-2 p,
        .card-3 p,
        .card-4 p,
        .card-5 p,
        .card-6 p {
            position: absolute;
            text-align: center;
            top: 45%;
            left: 0;
            right: 0;
            margin: auto;
            color: white;
            font-size: 150%;
            letter-spacing: 0.2rem;
        }
        /* ここまで上部ギャラリー  */
        /* 下部ギャラリー */
        .break {
            background: lightgray;
            margin: 100px auto;
            padding-top: 50px;
            padding-bottom: 50px;
        }
        .break h3 {}
        .card-7,
        .card-8,
        .card-9,
        .card-10,
        .card-11 {
            width: 15%;
            margin-left: 20px;
            margin-right: 20px;
            position: relative;
        }
        .break-title {
            text-align: center;
            background: rgb(26, 26, 65);
            color: white;
            font-size: 120%;
            font-weight: bold;
            padding: 15px;
        }
        /* ここまで下部ギャラリー */
        /* ここまで買取対象商品 */
        /* 買取の流れ */
        #flow {
            margin-top: -100px;
            padding-top: 100px;
        }
        .flow-card {
            width: 80%;
            display: flex;
            justify-content: center;
            margin: 0 auto;
            margin-top: 50px;
            box-shadow: 2px 2px 3px 3px #ccc;
        }
        .flow-left {
            width: 40%;
            height: auto;
        }
        .flow-left img {
            width: 100%;
            vertical-align: middle;
        }
        .flow-right {
            width: 60%;
            height: auto;
        }
        .flow-right ol {
            margin-top: 20px;
            margin-left: 20px;
        }
        .flow-right ol li {
            list-style: none;
            font-size: 100%;
            line-height: 175%;
            font-size: 110%;
            margin-bottom: 10px;
        }
        .flow-right p {
            margin-left: 60px;
            font-size: 75%;
            margin-bottom: 10px;
        }
        /* 感染症対策 */
        .covid-card {
            display: block;
            width: 80%;
            margin: 0 auto;
            margin-top: 100px;
            text-align: center;
            box-shadow: 2px 2px 3px 3px #ccc;
            padding-bottom: 80px;
        }
        .covid-card h3 {
            font-size: 150%;
            padding: 15px;
            background-color: black;
            color: white;
            text-align: center;
        }
        .covid-card ul {}
        .covid-card ul li {
            list-style-type: disc;
            float: left;
            text-align: center;
            margin-left: 8%;
            margin-right: auto;
            padding-top: 25px;
        }
        /* ここまで感染症対策 */
        /* 本人確認 */
        .authentification-card {
            display: block;
            width: 80%;
            margin: 0 auto;
            margin-top: 100px;
            box-shadow: 2px 2px 3px 3px #ccc;
            padding-bottom: 180px;
        }
        .authentification-card h3 {
            font-size: 150%;
            padding: 15px;
            background-color: rgb(191, 5, 19);
            color: white;
            text-align: center;
        }
        .authen-left {
            width: 50%;
            float: left;
        }
        .authen-left img {
            width: 100%;
        }
        .authen-right {
            width: 50%;
            float: right;
        }
        .authen-right ul {
            width: 75%;
            margin-top: 50px;
        }
        .authen-right ul li {
            float: left;
            list-style-type: none;
            margin-left: 20px;
            margin-top: 10px;
        }
        /* ここまで本人確認 */
        /* 出張買取 */
        .visit-buy {
            text-align: center;
            margin-top: 75px;
            margin-bottom: 100px;
        }
        .visit-buy h3 {
            font-size: 200%;
            margin-top: 50px;
            margin-bottom: 20px;
        }
        .visit-buy p.visit {
            font-size: 120%;
            margin-top: 50px;
        }
        .telephone {
            display: inline;
            margin-left: 20px;
            margin-right: 20px;
            font-size: 120%;
        }
        .tel-link {
            display: inline-block;
            border-radius: 8px;
            background: rgb(24, 24, 116);
            padding: 15px;
            color: white;
            box-shadow: 0px 3px 0px rgb(161, 161, 161);
            transition: .1s;
        }
        .tel-link:hover {
            color: white;
            box-shadow: none;
            background: rgb(24, 24, 116);
            transform: translate3d(0, 3px, 0);
        }
        /* ここまで出張買取 */
        /* ここまで買取の流れ */
        /* お客様の声 */
        #customer {
            margin-top: -100px;
            padding-top: 100px;
            margin-bottom: 200px;
        }
        .slider {
            margin-top: 75px;
        }
        .voice-card {
            display: block;
            border: 0.1px solid rgb(218, 218, 218);
            margin-left: 50px;
            margin-right: 50px;
            height: auto;
        }
        .voice-content {
            margin: 50px;
            height: 450px;
        }
        .voice-title {
            text-align: center;
            border-bottom: 0.1px solid rgb(218, 218, 218);
            line-height: 200%;
            font-weight: bold;
        }
        .sex {
            text-align: center;
            border-bottom: 0.1px solid rgb(218, 218, 218);
            line-height: 200%;
            margin-top: 25px;
        }
        .shop {
            text-align: center;
            border-bottom: 0.1px solid rgb(218, 218, 218);
            line-height: 200%;
            margin-top: 25px;
        }
        .voice-txt {
            text-decoration: underline 0.1px rgb(218, 218, 218);
            margin-top: 25px;
            font-size: 80%;
            letter-spacing: 0.2rem;
        }
        /* ここまでお客様の声 */
        /* Q&A */
        #QA {
            background-color: rgb(26, 26, 65);
            width: 100vw;
            position: relative;
            left: 50%;
            transform: translateX(-50%);
            margin-top: -100px;
            padding-top: 120px;
            padding-bottom: 100px;
            display: flex;
        }
        .qa_title {
            color: white;
            height: auto;
            margin: 0 auto;
            font-size: 200%;
            letter-spacing: 0.1rem;
        }
        .menu {
            margin: 0 auto;
            width: 60%;
        }
        .menu p {
            display: block;
            padding: 15px;
            color: white;
        }
        label {
            display: block;
            margin-top: 25px;
            padding: 25px;
            line-height: 1;
            color: rgb(26, 26, 65);
            background: white;
            cursor: pointer;
        }
        #first-label {
            margin-top: 0;
        }
        input {
            display: none;
        }
        .menu ul {
            margin: 0;
            padding: 0;
            background: rgb(103, 103, 119);
            list-style: none;
            align-items: center;
        }
        .menu li {
            height: 0;
            overflow: hidden;
            -webkit-transition: all 0.5s;
            -moz-transition: all 0.5s;
            -ms-transition: all 0.5s;
            -o-transition: all 0.5s;
            transition: all 0.5s;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        #menu_bar01:checked~#links01 li,
        #menu_bar02:checked~#links02 li,
        #menu_bar03:checked~#links03 li,
        #menu_bar04:checked~#links04 li,
        #menu_bar05:checked~#links05 li,
        #menu_bar06:checked~#links06 li,
        #menu_bar07:checked~#links07 li,
        #menu_bar08:checked~#links08 li {
            opacity: 1;
            padding-top: 4rem;
            padding-bottom: 4rem;
            padding-left: 1rem;
            padding-right: 1rem;
        }
        /* お問い合わせ */
        #contact {
            margin-top: -100px;
            padding-top: 100px;
            text-align: center;
        }
        #contact h2 {
            margin-top: 75px;
            margin-bottom: 20px;
        }
        .contact-time {
            margin-top: 20px;
        }
        /* ここまでお問い合わせ */
        /* フッター */
        footer {
            margin-top: 75px;
            text-align: center;
            padding: 50px;
            background: rgb(219, 219, 219);
        }
        /* フッターお問い合わせ */
        /* フッターお問い合わせ */
    }