@charset "UTF-8";

/*　*************************************
共通
************************************* */
:root {
    /* ヘッダーの高さを変数として管理 */
    --header-height: 100px;
    --header-height-sp: 60px;

    /* 色の設定 */
    --main-color: #0062c2;
    --main-color-light: #E5EFF8;
}


html {
    box-sizing: border-box;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin: 0 !important;
    scroll-behavior: smooth;
    color: #28374b;
    letter-spacing: 0.05em;
    line-height: 1.8;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
}

@media screen and (max-width: 572px) {
    html {
        font-size: 14px;
    }
}

.f-serif {
    font-family: "Shippori Mincho", serif;
}

.container {
    overflow: hidden;
}

.wrap {
    margin-inline: auto;
    padding: 0 40px;
    width: min(100%, 1200px);
}

@media screen and (max-width: 768px) {
    .wrap {
        padding: 0 20px;
    }
}

.wrap-tb {
    margin-inline: auto;
    padding: 0 20px;
    width: min(100%, 1004px);
}

.wrap-tb-s {
    margin-inline: auto;
    padding: 0 20px;
    width: min(100%, 808px);
}

.scroll-off {
    overflow: hidden;
}

.sec-pd-50 {
    padding: 50px 0;
}

.sec-pd-30 {
    padding: 30px 0;
}

.mt-80 {
    margin-top: 80px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-10 {
    margin-top: 10px;
}

@media screen and (max-width: 572px) {
    .mt-80 {
        margin-top: 60px;
    }

    .mt-50 {
        margin-top: 40px;
    }

    .mt-30 {
        margin-top: 20px;
    }
}




/* *************************************
改行関連 
************************************* */
.mb-disp {
    display: none;
}

@media screen and (max-width: 572px) {
    .mb-disp {
        display: block;
    }
}

.sp-disp {
    display: none;
}

@media screen and (max-width: 572px) {
    .sp-disp {
        display: block;
    }
}

/* *************************************
ボタン 
************************************* */
.link-btn {
    min-width: 350px;
    width: fit-content;
    background-color: #fff;
    color: var(--main-color);
    text-align: center;
    padding: 1rem;
    display: block;
    transition: .3s ease;
    border: 1px solid var(--main-color);
}

.link-btn:hover {
    background-color: var(--main-color);
    color: #fff;
    border: 1px solid #fff;
}

.link-btn.mini {
    min-width: 240px;
    padding: .75rem;
}

.link-text {
    display: inline-block;
    color: var(--main-color);
    transition: .3s ease;
}

.link-text:hover {
    opacity: .7;
}

@media screen and (max-width: 572px) {
    .link-btn {
        min-width: 260px;
    }

    .link-btn.mini {
        min-width: 180px;
    }
}

/* *************************************
ページ上部に戻るボタン 
************************************* */
.scroll-top {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
    display: block flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 30px;
    right: 20px;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.3);
    transition: 0.7s;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
}

@media screen and (max-width: 572px) {
    .scroll-top {
        width: 50px;
        height: 50px;
        bottom: 30px;
    }
}

.scroll-top.is-show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    box-shadow: none;
}

.scroll-top::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-left: 2px solid var(--main-color);
    border-top: 2px solid var(--main-color);
    transform: rotate(45deg) translate(2px, 2px);
}

/* *************************************
見出し関連 
************************************* */
.heading>h2 {
    font-size: 2rem;
    font-weight: bold;
}

.heading .h-line {
    height: 3px;
    width: 50px;
}

.b-blue {
    background-color: var(--main-color);
}

.b-white {
    background-color: #fff;
}

.c-blue {
    color: var(--main-color);
}

.c-white {
    color: #fff;
}

.heading-sub>h3 {
    font-size: 1.75rem;
}

.heading-sub .h-line {
    height: 1px;
    width: 50px;
}

.heading.l-flex {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media screen and (max-width: 572px) {
    .heading.l-flex {
        gap: 5px;
        flex-direction: column;
        align-items: flex-start;
    }
}

/* *************************************
ヘッダー 
************************************* */
.header {
    height: var(--header-height);
    padding: 0 0 0 60px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #fff;
    z-index: 10;
}

@media screen and (max-width: 1024px) {
    .header {
        height: var(--header-height-sp);
        padding: 0 0 0 40px;
    }
}

@media screen and (max-width: 572px) {
    .header {
        padding: 0 0 0 20px;
    }
}


/* *************************************
ロゴ 
************************************* */
h1 img{
    width: 300px;
}


@media screen and (max-width: 572px) {
    h1 img{
        width: 200px;
    }
}

.header-logo {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    transition: .3s ease;
}

.header-logo:hover {
    opacity: .7;
}

@media screen and (max-width: 572px) {
    .header-logo {
        font-size: 1.5rem;
    }
}

/* *************************************
************************************* */


.header-info {
    margin-left: auto;
}

.header-info .tel {
    text-align: right;
    font-size: 2rem;
    font-weight: bold;
    color: var(--main-color);
    line-height: 1.4;
}

@media screen and (max-width: 1024px) {
    .header-info .tel {
        display: none;
    }
}

.header-info .tel::before {
    content: 'TEL';
    font-size: 1.5rem;
    margin-right: 10px;
}

.header .nav .nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header .nav .nav-list>li>a {
    display: block;
    padding: .5rem 0;
    font-weight: bold;
    transition: .3s ease;
}

.header .nav .nav-list>li>a:hover {
    opacity: .7;
}

.header .nav .nav-list>li .is-active {
    color: var(--main-color);
}

@media screen and (max-width: 1024px) {
    .header .nav {
        display: none;
    }
}

.header .btn-contact {
    background-color: var(--main-color);
    color: #fff;
    display: block;
    text-align: center;
    line-height: var(--header-height);
    width: 180px;
    margin-left: 40px;
    font-weight: bold;
    transition: .3s ease;
}

.header .btn-contact:hover {
    opacity: .7;
}

@media screen and (max-width: 1024px) {
    .header .btn-contact {
        display: none;
    }
}

/* *************************************
ファーストビュー 
************************************* */
.fv {
    height: calc(100vh - var(--header-height));
    position: relative;
    margin-top: var(--header-height);
}

@media screen and (max-width: 1024px) {
    .fv {
        height: calc(100vh - var(--header-height-sp));
        margin-top: var(--header-height-sp);
    }
}

.fv .fv-Swiper {
    height: 100%;
}

.fv .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fv-title {
    position: absolute;
    bottom: 80px;
    left: 60px;
    z-index: 5;
    font-weight: bold;
    line-height: 1.8;
}

.fv-title>h2 {
    background-color: #ffffffda;
    font-size: 2rem;
    padding: 0 20px;
    width: fit-content;
}

.fv-title>p {
    background-color: #ffffffda;
    margin-top: 10px;
    font-size: 1.5rem;
    padding: 0 20px;
}

@media screen and (max-width: 572px) {
    .fv-title {
        background-color: #ffffffda;
        bottom: 0;
        left: 0;
        width: 100%;
    }

    .fv-title>h2 {
        background-color: transparent;
        padding: 15px 20px 10px;
        line-height: 1.4;
        width: 100%;
    }

    .fv-title>p {
        background-color: transparent;
        font-size: 1.25rem;
        margin-top: 0;
        padding: 10px 20px 15px;
    }
}

/* *************************************
メインビュー 
************************************* */
.mv {
    height: 250px;
    width: 100%;
    position: relative;
    margin-top: var(--header-height);
}

.mv>img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.mv .mv-title {
    font-size: 2rem;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 100px;
    transform: translate(0, -50%);
}

@media screen and (max-width: 1024px) {
    .mv {
        margin-top: var(--header-height-sp);
    }

    .mv .mv-title {
        left: 60px;
    }
}

@media screen and (max-width: 572px) {
    .mv {
        height: 160px;
    }

    .mv .mv-title {
        left: 20px;
    }
}

/* *************************************
あいさつ
************************************* */
.greeting {
    padding: 80px 0;
}

.greeting .flex {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.greeting .heading {
    margin-bottom: 20px;
}

.greeting .greeting-msg {
    flex: 1;
}

.greeting .greeting-msg>p>span {
    background-color: var(--main-color-light);
}

.greeting .greeting-msg>p a {
    text-decoration: underline;
    transition: .3s ease;
}

.greeting .greeting-msg>p a:hover {
    opacity: .7;
}

.greeting .greeting-msg>p:not(:nth-of-type(1)) {
    margin-top: 2rem;
}

.greeting .greeting-image {
    width: 45%;
    height: 16 / 9;
}

.greeting .greeting-image>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 572px) {
    .greeting {
        padding: 60px 0;
    }

    .greeting .flex {
        flex-direction: column;
    }

    .greeting .greeting-image {
        width: 100%;
    }
}

/* *************************************
私たちの事業 
************************************* */
.service {
    background-color: var(--main-color-light);
    padding: 80px 0;
}

@media screen and (max-width: 572px) {
    .service {
        padding: 60px 0;
    }
}

/* *************************************
私たちの事業 新聞事業 買取事業
************************************* */
.newspaper {
    margin-top: 30px;
}

.service-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 1.5rem;
    margin-top: 10px;
}

.service-item {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
}

.service-item .item-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
}

.service-item .item-image>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s ease;
    transform-origin: center;
}

.service-item:hover .item-image>img {
    transform: scale(1.07);
}

/* .service-item .item-image>img:hover {
    transform: scale(1.07);
} */

.service-item .item-image>.arrow {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: #0062c2;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item .item-image>.arrow>img {
    width: 10px;
    display: block;
    transform: translateX(2px);
}

.service-item .item-block {
    background-color: #fff;
    padding: 1rem;
}

.service-item .item-block>h4 {
    color: var(--main-color);
    font-size: 1.25rem;
    font-weight: bold;
}

.service-item .item-block>p {
    margin-top: 5px;
}

@media screen and (max-width: 572px) {
    .service-content {
        gap: 1.5rem;
        grid-template-columns: repeat(1, 1fr);
    }

    .service-item {
        display: block;
    }
}

.purchase {
    margin-top: 50px;
}

.contact-area {
    background-color: var(--main-color);
    color: #fff;
    width: 100%;
}

.contact-area .text {
    margin: 10px 0 30px 70px;
}

.contact-area .link-btn {
    margin: 30px auto 0;
}

@media screen and (max-width: 572px) {
    .contact-area {
        padding: 30px 20px;
    }

    .contact-area .text {
        margin: 10px 0 0;
    }
}

/* ***********************************
採用情報、企業情報、アクセス
*********************************** */
.info {
    margin-top: 80px;
}

.info-content .info-item {
    display: flex;
    border: 1px solid var(--main-color-light);
}

.info-content .info-item:not(:first-child) {
    margin-top: 30px;
}

.info-content .info-item .item-head {
    background-color: var(--main-color-light);
    padding: 1.5rem;
    width: 250px;
}

.info-content .info-item .item-head .heading>h2 {
    font-size: 1.5rem;
}

.info-content .info-item .item-block {
    flex: 1;
    padding: 1.5rem;
}

.info-content .info-item .item-block .link-btn {
    margin-top: 20px;
}

@media screen and (max-width: 572px) {
    .info {
        margin-top: 60px;
    }

    .info-content .info-item {
        display: flex;
        flex-direction: column;
    }

    .info-content .info-item .item-head {
        padding: 1rem 20px .75rem;
        width: 100%;
    }
}

/* ***********************************
フッター
*********************************** */
.footer {
    background-color: #eeeeef;
    padding: 50px 0;
}

.footer .wrap {
    display: flex;
}

.footer .footer-info {
    width: 60%;
}

.footer .footer-info .info-title {
    font-size: 2rem;
    font-weight: bold;
}

.footer .footer-info .info-title>a {
    display: block;
    transition: .3s ease;
}

.footer .footer-info .info-title>a:hover {
    opacity: .7;
}

.footer .footer-info .info-list {
    margin-top: 20px;
}

.footer .footer-info .info-list>li:not(:first-child) {
    margin-top: .5rem;
}

.footer .nav .nav-list>li:not(:first-child) {
    margin-top: .5rem;
}

.footer .footer-info .info-list>li span {
    display: inline-block;
    margin-right: 2rem;
}

.footer .nav .nav-list a {
    transition: .3s ease;
}

.footer .nav .nav-list a:hover {
    opacity: .7;
}


@media screen and (max-width: 572px) {
    .footer {
        padding: 30px 0;
    }

    .footer .wrap {
        flex-direction: column;
    }

    .footer .footer-info {
        width: 100%;
    }

    .footer .footer-info .info-list>li span {
        margin-right: 1rem;
    }

    .footer .nav {
        margin-top: 30px;
    }
}

/* ***********************************
Copyright
*********************************** */
.copyright {
    padding: 1rem 20px;
    text-align: center;
}


/* ***********************************
serviceページ
*********************************** */
.page-msg {
    padding: 60px 0;
}

.page-msg p {
    margin-top: 10px;
}

/* ***********************************
serviceページ page-sec
*********************************** */
.page-sec {
    padding: 80px 0;
    background-color: var(--main-color-light);
}

.sec-content {
    margin-top: 10px;
}

.sec-item {
    display: flex;
}

.sec-item:not(:first-child) {
    margin-top: 30px;
}

.sec-item-image {
    width: 300px;
    height: auto;
}

.sec-item-image>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sec-item-block {
    flex: 1;
    padding: 1.5rem;
    background-color: #fff;
}

.sec-item-block>h4 {
    color: var(--main-color);
    font-size: 1.25rem;
    font-weight: bold;
}

.sec-item-block>p {
    margin-top: 5px;
}

@media screen and (max-width: 572px) {
    .page-sec {
        padding: 60px 0;
        background-color: var(--main-color-light);
    }

    .sec-item {
        flex-direction: column;
    }

    .sec-item-image {
        width: 100%;
        height: auto;
    }
}

/* ***********************************
serviceページ　会社情報
*********************************** */
.sec-company {
    padding: 80px 0;
}

.sec-company-content {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--main-color);
    margin-top: 30px;
}

.sec-company-content dt {
    border-left: 1px solid var(--main-color);
    border-top: 1px solid var(--main-color);
    padding: 1rem 2rem;
    width: 25%;
    color: var(--main-color);
    font-weight: 400;
}

.sec-company-content dd {
    border-right: 1px solid var(--main-color);
    border-top: 1px solid var(--main-color);
    padding: 1rem 2rem;
    width: 75%;
}

@media screen and (max-width: 572px) {
    .sec-company {
        padding: 60px 0;
    }

    .sec-company-content dt {
        border-right: 1px solid var(--main-color);
        padding: 1rem 1rem .5rem;
        width: 100%;
    }

    .sec-company-content dd {
        border-top: none;
        border-left: 1px solid var(--main-color);
        padding: 0 2rem 1rem;
        width: 100%;
    }
}

/* ***********************************
プライバシーポリシーページ
*********************************** */
.privacy {
    padding-top: 80px;
    padding-bottom: 80px;
}

.privacy p {
    margin-top: 1.25rem;
}

.privacy>h3 {
    margin-top: 2em;
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.5;
    border-left: 5px solid var(--main-color);
    padding: 0 .5em;
}

.privacy>ul {
    margin: 1rem 0 0 2rem;
}

.privacy>ul>li>span {
    display: inline-block;
    margin-right: 1rem;
}

.privacy>ul>li:not(:first-child) {
    margin-top: 0.5rem;
}

@media screen and (max-width: 572px) {
    .privacy {
        padding-top: 30px;
        padding-bottom: 60px;
    }

    .privacy>ul {
        margin: 1rem 0 0 0;
    }
}

/* ***********************************
モバイル表示　右上お問い合わせボタン
*********************************** */
.fix-contact {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 120px;
    height: var(--header-height-sp);
    background-color: var(--main-color);
    color: #fff;
    font-size: 14px;
    z-index: 30;
}

@media screen and (max-width: 1024px) {
    .fix-contact {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media screen and (max-width: 572px) {
    .fix-contact {
        width: 80px;
    }
}

/* ***********************************
ハンバーガーメニュー
*********************************** */
.hamburger {
    width: var(--header-height-sp);
    height: var(--header-height-sp);
    padding: 20px 15px;
    margin-left: auto;
    position: fixed;
    top: 0;
    right: 130px;
    /* background-color: var(--main-color); */
    background-color: #fff;
    z-index: 30;
    display: none;
}

@media screen and (max-width: 1024px) {
    .hamburger {
        display: block;
    }
}

@media screen and (max-width: 572px) {
    .hamburger {
        right: 90px;
    }
}

.hamburger.on-click .inner span:nth-child(1) {
    top: 50%;
    translate: 0 -50%;
    rotate: 390deg;
}

.hamburger.on-click .inner span:nth-child(2) {
    opacity: 0;
}

.hamburger.on-click .inner span:nth-child(3) {
    top: 50%;
    translate: 0 -50%;
    rotate: -390deg;
}

.hamburger .inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.hamburger .inner span {
    width: 100%;
    height: 2px;
    background-color: var(--main-color);
    position: absolute;
    transition: 0.3s;
}

.hamburger .inner span:nth-child(1) {
    top: 0;
}

.hamburger .inner span:nth-child(2) {
    top: 50%;
    translate: 0 -50%;
}

.hamburger .inner span:nth-child(3) {
    bottom: 0;
}

.hamburger .inner>p {
    position: absolute;
    top: 110%;
    left: 50%;
    transform: translateX(-50%);
}

@media screen and (max-width: 572px) {
    .hamburger .inner>p {
        top: 115%;
        font-size: 0.875rem;
    }
}

.ham-menu {
    display: flex;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    position: fixed;
    z-index: 20;
    transition: 0.3s;
    background-color: #fff;
}

.ham-menu.is-show {
    opacity: 1;
    visibility: visible;
}

.ham-menu-inner {
    width: 100%;
    overflow-y: auto;
    position: relative;
}

.ham-menu-logo {
    display: block;
    text-align: center;
    margin-top: 100px;
    font-size: 2rem;
    font-weight: bold;
}

.ham-menu-logo>a {
    display: inline-block;
    height: 100%;
}

.ham-menu-logo>a>img {
    height: 100%;
}

.ham-menu-logo>h2>img {
    width: 70%;
}

.ham-menu .nav {
    display: flex;
    align-items: flex-start;
    width: 100%;
    margin-top: 30px;
}

.ham-menu .nav-list {
    width: 100%;
}

.ham-menu .nav-list>li {
    font-size: 1rem;
}

.ham-menu .nav-list>li .is-active {
    color: var(--main-color);
}

.ham-menu .nav-list>li:not(:first-child) {
    margin-top: 1em;
}

.ham-menu .nav-list>li>a {
    display: block;
    text-align: center;
    font-weight: bold;
}

.ham-menu .tel {
    margin-top: 30px;
    font-size: 2.25rem;
    text-align: center;
    display: block;
    font-weight: bold;
    color: var(--main-color);
}

.ham-menu .tel>span {
    font-size: 1.75rem;
    display: inline-block;
    margin-right: 10px;
}