@charset "utf-8";

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 1.2px;
    color: #333333;
}

/* -----------font-----------*/

/* -----------icomoon-----------*/
img {
    width: 100%;
    height: auto;
}
.sp {
    display: block;
}
.pc {
    display: none;
}

/* -----------共通-----------*/
.to_top {
    position: fixed;
    right: 15px;
    bottom: 40px;
}
.to_top img {
    width: 32px;
    aspect-ratio: 1;
}

/* 下層ページ共通MV */
.lower_mv {
    width: 100vw;
    height: 250px;
    background: url(../img/top_mv.webp) no-repeat center 70% / cover;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* 下層ページ共通タイトル */
.page_title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
}
.page_title .page_title_text {
    width: fit-content;
    margin: 60px auto 30px;
    font-size: 24px;
    font-weight: 500;
    color: #002E6C;
    position: relative;
    z-index: 10;
}
.page_title .page_title_en {
    font-size: 65px;
    font-weight: 300;
    line-height: 1;
    opacity: 0.15;
    color: #5A5A5A;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    z-index: 1;
}

/* -----------SP header-----------*/
header {
    width: 100vw;
    position: fixed;
    z-index: 1000;
    top: 0;
    padding: 13px 24px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.57);
}
header .header_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}
header .header_logo {
    font-size: 17px;
    font-weight: bold;
    text-decoration: none;
    color: #000;
    flex-shrink: 0;
    letter-spacing: 0;
}

header .hamburger {
    width: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: absolute;
    right: 11px;
}
header .hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: #000;
    transition: 0.3s;
}
header .hamburger.active {
    gap: 0;
}
header .hamburger.active span:nth-of-type(1) {
    transform: translateY(1px) rotate(45deg);
}
header .hamburger.active span:nth-of-type(2) {
    display: none;
}
header .hamburger.active span:nth-of-type(3) {
    transform: translateY(-1px) rotate(-45deg);
}

header .header_menu {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    background: #fff;
    transform: translateX(100%);
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}
header .header_menu ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

header .header_menu ul li.current {
    width: fit-content;
    list-style: none;
    position: relative;
}
header .header_menu ul li.current::before {
    content: "ー";
    position: absolute;
    font-size: 20px;
    font-weight: 400;
    left: -25px;
    top: 0;
}
header .header_menu ul li.current::after {
    content: "ー";
    position: absolute;
    font-size: 20px;
    font-weight: 400;
    right: -25px;
    top: 0;
}
header .header_menu ul li a {
    display: block;
    color: #090909;
    font-size: 20px;
    font-weight: 300;
    text-decoration: none;
    position: relative;
}

header .header_menu ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #000;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

header .header_menu ul li a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

@media (any-hover: hover) {
    header .header_menu ul li a:hover::after {
        transform: scaleX(1);
        transform-origin: left;
    }
}
header .header_menu.active {
    transform: translateX(0%);
}


header .header_menu .contact_btn {
    position: relative;
    overflow: hidden;
    transition: color 0.3s;
    z-index: 1;
}
header .header_menu .contact_btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 100%;
    background: #fff;
    transform: translate(-50%, -50%);
    transition: width 0.3s;
    z-index: -1;
}
header .header_menu .contact_btn:focus-visible {
    color: #D4AF37;
}
header .header_menu .contact_btn:focus-visible::before {
    width: 100%;
}

@media (any-hover: hover) {
    header .header_menu .contact_btn:hover {
        color: #D4AF37;
    }
    header .header_menu .contact_btn:hover::before {
        width: 100%;
    }
}

/* -----------footer-----------*/
.footer_contact {
    padding: 70px 20px;
    background: url(../img/footer_contact_bg.webp)no-repeat center/cover;
}
.footer_contact .footer_contact_wrap {
    max-width: 940px;
    background: #fff;
    padding: 20px 20px 70px;
    font-weight: bold;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
}
.footer_contact h2 {
    font-size: 25px;
    font-weight: 300;
}
.footer_contact .footer_contact_text {
    font-size: 15px;
    font-weight: 300;
    text-align: center;
    max-width: 500px;
}

.footer_contact .footer_contact_btn {
    font-size: 15px;
    color: #1C3553;
    font-weight: 300;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    border: 1px solid #1C3553;
    padding: 15px 38px;
    margin: 25px auto 0;
    position: relative;
    overflow: hidden;
    transition: color 0.3s;
    z-index: 1;
}

.footer_contact .footer_contact_btn:focus-visible {
    color: #fff;
}
.footer_contact .footer_contact_btn:focus-visible::before {
    width: 100%;
}

@media (any-hover: hover) {
    .footer_contact .footer_contact_btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 100%;
        background: #1C3553;
        transform: translate(-50%, -50%);
        transition: width 0.3s;
        z-index: -1;
    }
    .footer_contact .footer_contact_btn:hover {
        color: #fff;
    }
    .footer_contact .footer_contact_btn:hover::before {
        width: 100%;
    }
}

footer {
    width: 100vw;
    background: #1C3553;
    padding: 50px 12px 0px;
    box-sizing: border-box;
}
footer .footer_wrap {
    display: flex;
    flex-direction: column;
    gap: 35px;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}
footer .footer_logo {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}

footer .footer_menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
footer .footer_menu a {
    font-size: 15px;
    font-weight: 300;
    color: #fff;
    text-decoration: none;
}
footer .footer_wrap_info p {
    font-size: 15px;
    font-weight: 300;
    color: #fff;
    text-align: center;
}

footer small {
    color: #fff;
    font-size: 10px;
    line-height: 2;
    display: block;
    text-align: center;
}

/* -----------top-----------*/

.top_mv {
    width: 100vw;
    height: 100vh;
    background: url(../img/top_mv.webp) no-repeat center center / cover;
    display: flex;
    justify-content: center;
    align-items: center;
}
.top_mv h2 {
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 3px 2px rgba(0, 0, 0, 1);
}

.top_news {
    background: #5A5A5A;
    padding: 50px 20px;
}
.top_news .top_news_wrap {
    max-width: 675px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 52px;
}
.top_news h2 {
    font-size: 25px;
    font-weight: 300;
    color: #fff;
    text-align: center;
}
.top_news ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.top_news ul li {
    width: 100%;
    list-style: none;
}
.top_news ul li a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #fff;
    display: flex;
    flex-direction: column;
    padding: 8px 10px;
    gap: 10px;
    position: relative;
    overflow: hidden;
    transition: color 0.3s;
    z-index: 1;
}
.top_news ul li a .top_news_item_date {
    font-size: 15px;
    font-weight: 300;
    line-height: 30px;
}
.top_news ul li a .top_news_item_title {
    font-size: 15px;
    font-weight: 300;
}
.top_news .top_news_btn {
    width: 287px;
    font-size: 15px;
    font-weight: 300;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border: 1px solid #fff;
    padding: 15px 0px;
    margin: 25px auto 0;
    position: relative;
    overflow: hidden;
    transition: color 0.3s;
    z-index: 1;
}


.top_news .top_news_btn:focus-visible,
.top_news ul li a:focus-visible {
    color: #5A5A5A;
}
.top_news .top_news_btn:focus-visible::before,
.top_news ul li a:focus-visible::before {
    width: 100%;
}

@media (any-hover: hover) {
    .top_news ul li a::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 100%;
        background: #fff;
        transform: translate(-50%, -50%);
        transition: width 0.3s;
        z-index: -1;
    }
    .top_news .top_news_btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 100%;
        background: #fff;
        transform: translate(-50%, -50%);
        transition: width 0.3s;
        z-index: -1;
    }
    .top_news ul li a:hover,
    .top_news .top_news_btn:hover {
        color: #5A5A5A;
    }
    .top_news ul li a:hover::before,
    .top_news .top_news_btn:hover::before {
        width: 100%;
    }
}

.top_company {
    background: linear-gradient(to bottom, #1C3553 60%, #fff 60%);
    padding: 30px 20px;
}
.top_company .top_company_about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.top_company .top_company_about h2 {
    width: 200px;
    font-size: 25px;
    font-weight: 300;
    color: #fff;
    text-align: center;
    border-bottom: 1px solid #fff;
}
.top_company .top_company_about p {
    font-size: 16px;
    font-weight: 300;
    color: #fff;
}

.top_company .top_company_wrap {
    max-width: 1057px;
    margin: 0 auto;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    margin: 40px auto 0px;
}
.top_company .top_company_content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    background: #fff;
    padding: 20px;
    box-sizing: border-box;
}
.top_company .top_company_content p {
    max-width: 420px;
    font-size: 15px;
    font-weight: 300;
    color: #050505;
    text-align: left;
    margin: 0 auto;
    line-height: 37.5px;
}
.top_company .top_company_content_btn {
    display: block;
    width: min(287px, 100%);
    font-size: 15px;
    font-weight: 300;
    color: #fff;
    background: #D4AF37;
    padding: 20px 0px;
    text-align: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color 0.3s;
    border: 1px solid #D4AF37;
    z-index: 1;
}

.top_company .top_company_content_btn:focus-visible {
    color: #D4AF37;
}
.top_company .top_company_content_btn:focus-visible::before {
    width: 100%;
}

@media (any-hover: hover) {
    .top_company .top_company_content_btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 100%;
        background: #fff;
        transform: translate(-50%, -50%);
        transition: width 0.3s;
        z-index: -1;
    }
    .top_company .top_company_content_btn:hover {
        color: #D4AF37;
    }
    .top_company .top_company_content_btn:hover::before {
        width: 100%;
    }
}

.top_company .top_company_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.top_products {
    padding: 50px 20px;
}
.top_products .top_products_wrap {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 52px;
}
.top_products .top_products_wrap h2 {
    font-size: 25px;
    font-weight: 300;
    color: #002E6C;
    text-align: center;
}
.top_products .top_products_wrap p {
    font-size: 15px;
    font-weight: 300;
    color: #050505;
    text-align: left;
}
.top_products .top_products_content {
    padding: 75px 40px;
    background: url(../img/top_products_bg.webp) no-repeat center center / cover;
}
.top_products .top_products_content_icons {
    max-width: 240px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 26px;
    margin: 45px auto 0;
}
.top_products .top_products_content_icons img {
    width: 82px;
    object-fit: contain;
    display: block;
}


/* -----------company-----------*/
.company_about {
    padding: 54px 20px 100px;
}
.company_about .company_about_text {
    font-size: 15px;
    font-weight: 300;
    color: #050505;
    text-align: center;
}
.company_about .company_about_wrap {
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}
.company_about .company_about_wrap_item {
    width: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    border-bottom: 1px solid #1C3553;
    padding: 20px 10px;
}
.company_about .company_about_wrap_item .item_label {
    width: 200px;
    flex-shrink: 0;
    font-size: 15px;
    font-weight: bold;
    color: #1C3553;
}
.company_about .company_about_wrap_item .item_text {
    font-size: 15px;
    font-weight: 300;
    flex-grow: 1;
    line-height: 30px;
    color: #050505;
}
.company_about .company_about_wrap_item .map_wrap {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex-direction: column;
}
.company_about .company_about_wrap_item .map {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    color: #050505;
}
.company_about .company_about_wrap_item .map .map_icon {
    width: 19px;
}
.company_about .company_about_wrap_images {
    max-width: 780px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    margin: 90px auto 0;
}
.company_about .company_about_wrap_images_item {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.company_about .company_about_images_item:nth-of-type(1) {
    width: 27%;
    object-fit: cover;
}
.company_about .company_about_images_item:nth-of-type(2) {
    width: 40%;
    object-fit: cover;
}
.company_about .company_about_images_item:nth-of-type(3) {
    width: 27%;
    object-fit: cover;
}


/* -----------news-----------*/
.news_list {
    padding: 50px 20px 100px;
}
.news_list .news_list_wrap {
    max-width: 760px;
    margin: 0 auto;
}

.news_list .news_list_wrap_ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.news_list .news_list_wrap_ul li {
    width: 100%;
    list-style: none;
}
.news_list .news_list_wrap_ul li a {
    color: #1C3553;
    text-decoration: none;
    border-bottom: 1px solid #1C3553;
    display: flex;
    flex-direction: column;
    padding: 8px 10px;
    position: relative;
    overflow: hidden;
    transition: color 0.3s;
    z-index: 1;
}

.news_list .news_list_wrap_ul li .news_list_item:focus-visible {
    color: #fff;
}
.news_list .news_list_wrap_ul li .news_list_item:focus-visible::before {
    width: 100%;
}

@media (any-hover: hover) {
    .news_list .news_list_wrap_ul li a::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 100%;
        background: #1C3553;
        transform: translate(-50%, -50%);
        transition: width 0.3s;
        z-index: -1;
    }
    .news_list .news_list_wrap_ul li .news_list_item:hover {
        color: #fff;
    }
    .news_list .news_list_wrap_ul li .news_list_item:hover::before {
        width: 100%;
    }
}
.news_list .news_list_wrap_ul li a .news_list_item_date {
    font-size: 15px;
    font-weight: 300;
    line-height: 30px;
}
.news_list .news_list_wrap_ul li a .news_list_item_title {
    font-size: 15px;
    font-weight: 300;
}
.news_list .news_list_btn {
    width: 287px;
    font-size: 15px;
    font-weight: 300;
    color: #1C3553;
    text-align: center;
    text-decoration: none;
    border: 1px solid #1C3553;
    padding: 15px 0px;
    margin: 25px auto 0;
}

/* アイキャッチ画像のスタイリング */
.news_single_thumbnail {
    margin-bottom: 2rem;
    width: 100%;
}

.news_single_thumbnail img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

@media screen and (max-width: 768px) {
    .news_single_thumbnail {
        margin-bottom: 1.5rem;
    }
}


/* ページネーション */
.pagination {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pagination .page-numbers {
    display: inline-block;
    padding: 8px 13px;
    color: rgba(60, 84, 102, 0.5);
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    border: none;
}
.pagination ul.page-numbers {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0 10px;
}
.pagination .page-numbers.prev,
.pagination .page-numbers.next {
    color: #1C3553;
    cursor: pointer;
    padding: 0;
}
.pagination .page-numbers.prev i,
.pagination .page-numbers.next i,
.pagination a.page-numbers.prev i,
.pagination a.page-numbers.next i {
    display: inline-block;
    font-size: 16px;
    line-height: 1;
    vertical-align: middle;
}
.pagination a .fa-solid::before,
.pagination a .fa-solid::before {
    color: #1C3553;
}
.pagination .page-numbers.disabled {
    color: rgba(60, 84, 102, 0.5);
    cursor: not-allowed;
    pointer-events: none;
}
.pagination .page-numbers.current {
    color: #1C3553;
}
.pagination ul.page-numbers li a {
    border: none;
    color: rgba(60, 84, 102, 0.5);
}

/* -----------news_single-----------*/
.news_single {
    padding: 80px 20px 100px;
}
.news_single .news_single_wrap {
    max-width: 640px;
    margin: 0 auto;
}
.news_single .news_single_wrap .news_single_date {
    font-size: 15px;
    font-weight: 300;
    color: #1C3553;
    line-height: 30px;
}
.news_single .news_single_wrap .news_single_title {
    font-size: 30px;
    font-weight: 500;
    color: #002E6C;
    text-align: center;
    margin: 0 auto 30px;
}
.news_single .news_single_content {
    font-size: 15px;
    font-weight: 300;
    color: #1C3553;
    line-height: 30px;
}
.news_single .news_single_back {
    margin: 0 auto;
}
.news_single .news_single_back a {
    width: 287px;
    font-size: 15px;
    font-weight: 300;
    color: #002E6C;
    text-decoration: none;
    border: 1px solid #002E6C;
    padding: 15px 0px;
    text-align: center;
    display: block;
    margin: 60px auto 0;
    position: relative;
    overflow: hidden;
    transition: color 0.3s;
    z-index: 1;
}

.news_single .news_single_back a:focus-visible {
    color: #fff;
}
.news_single .news_single_back a:focus-visible::before {
    width: 100%;
}


@media (any-hover: hover) {
    .news_single .news_single_back a::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 100%;
        background: #002E6C;
        transform: translate(-50%, -50%);
        transition: width 0.3s;
        z-index: -1;
    }
    .news_single .news_single_back a:hover {
        color: #fff;
    }
    .news_single .news_single_back a:hover::before {
        width: 100%;
    }
}

.news_single .news_single_content h2.wp-block-heading {
    font-size: 20px;
    font-weight: bold;
    margin: 20px 0 12px;
    color: #1C3553;
    border-bottom: solid 3px #1C3553;
}
.news_single .news_single_content h3.wp-block-heading {
    font-size: 18px;
    font-weight: bold;
    margin: 15px 0 8px;
    color: #1C3553;
    border-left: solid 5px #1C3553;
    text-align: left;
    padding-left: 5px;
}


/* -----------contact-----------*/
.contact {
    background: rgba(90, 90, 90, 0.08);
    padding: 70px 20px 80px;
    margin: 0 22px 144px;
}
.contact .contact_wrap {
    max-width: 820px;
    margin: 0 auto;
}
.contact .contact_title {
    font-size: 30px;
    line-height: 60px;
    font-weight: bold;
    color: #1C3553;
    text-align: center;
}
.contact .contact_text {
    font-size: 15px;
    line-height: 30px;
    color: #050505;
    text-align: center;
}


.contact form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px auto 0 0;
}
.contact form .label_wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.contact form .label {
    font-size: 15px;
    line-height: 30px;
}
.contact form .label.required .label_name::after {
    content: "必須";
    font-size: 10px;
    line-height: 20px;
    font-weight: bold;
    color: #fff;
    background: #F23827;
    padding: 2px 4px;
    margin: 0 0 0 14px;
    position: relative;
    top: -1px;
}
.contact form .label.optional .label_name::after {
    content: "任意";
    font-size: 10px;
    line-height: 20px;
    font-weight: bold;
    color: #fff;
    background: #A0A0A0;
    padding: 2px 4px;
    margin: 0 0 0 2px;
    position: relative;
    top: -1px;
}
.contact form input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #505050;
    box-sizing: border-box;
    resize: none;
    font-size: 15px;
    line-height: 30px;
    background: transparent;
}
.contact form .message {
    font-size: 12px;
    line-height: 24px;
    text-align: center;
    margin: 20px auto 25px;
}
.contact form .message a {
    color: #050505;
    text-decoration: none;
}
.contact form .submit {
    max-width: 300px;
    font-size: 16px;
    line-height: 38px;
    color: #fff;
    background: #1C3553;
    border: 1px solid #1C3553;
    border-radius: 100px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    transition: color 0.3s;
    z-index: 1;
    cursor: pointer;
}
.contact form .submit:focus-visible {
    color: #1C3553;
    background: transparent;
}
.contact form .submit:focus-visible::before {
    width: 300px;
    height: 300px;
}

@media (any-hover: hover) {
    .contact form .submit::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: #fff;
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
        z-index: -1;
    }
    .contact form .submit:hover {
        color: #1C3553;
        background: transparent;
    }
    .contact form .submit:hover::before {
        width: 300px;
        height: 300px;
    }
}


/* -----------privacypolicy-----------*/
.privacypolicy {
    padding: 80px 20px 100px;
}
.privacypolicy .privacypolicy_wrap {
    max-width: 820px;
    margin: 0 auto;

}
.privacypolicy .privacypolicy_title {
    font-size: 30px;
    line-height: 60px;
    font-weight: bold;
    color: #1C3553;
    text-align: center;
    margin: 0 auto 40px;
}
.privacypolicy .privacypolicy_content {
    font-size: 15px;
    line-height: 30px;
    color: #050505;
}
.privacypolicy .privacypolicy_content_title {
    font-size: 15px;
    line-height: 30px;
    color: #050505;
    font-weight: bold;
    border-left: 5px solid #1C3553;
    padding-left: 10px;
}






/* -----------ipad-----------*/
@media screen and (min-width:640px) {

    .sp {
        display: block;
    }
    .pc {
        display: none;
    }

    /* -----------共通-----------*/
    .to_top {
        right: 20px;
        bottom: 10px;
    }
    .to_top img {
        width: 50px;
    }

    /* -----------ipad header-----------*/

    /* -----------footer-----------*/

    /* -----------top-----------*/
    .top_company .top_company_wrap {
        flex-direction: row;
        align-items: stretch;
    }
    .top_company .top_company_content {
        width: 50%;
        flex-shrink: 0;
        flex-grow: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .top_company .top_company_wrap img {
        width: 50%;
        height: auto;
        object-fit: cover;
    }


    .top_products {
        padding: 100px 20px;
    }
    .top_products .top_products_content {
        padding: 75px 90px;
    }

}

/* -----------PC-----------*/
@media screen and (min-width:960px) {

    body {
        font-size: 18px;
    }
    .sp {
        display: none;
    }
    .pc {
        display: block;
    }

    /* -----------共通-----------*/
    .lower_mv {
        height: 450px;
    }

    .page_title .page_title_text {
        font-size: 30px;
        margin: 120px auto;
    }
    .page_title .page_title_en {
        font-size: 110px;
        transform: translate(-50%, -60%);
    }

    /* -----------PC header-----------*/
    header .header_wrap {
        justify-content: space-between;
    }

    header .header_logo {
        width: 20%;
        max-width: 320px;
    }

    header .header_menu {
        height: unset;
        position: relative;
        transform: translateX(0);
        background: transparent;
        justify-content: flex-end;
    }
    header .header_menu ul {
        flex-direction: row;
        align-items: center;
        gap: 18px;
    }
    header .header_menu ul li {
        list-style: none;
    }
    header .header_menu ul li.current::after,
    header .header_menu ul li.current::before {
        display: none;
    }
    header .header_menu ul li a {
        display: block;
        width: fit-content;
        color: #000;
        text-decoration: none;
        font-size: 15px;
        font-weight: 300;
    }
    header .header_menu.top_page ul li a {
        color: #000;
    }
    header .header_menu .instagram_btn {
        width: 140px;
        line-height: 30px;
        text-align: center;
        background: #DC9231;
        border-radius: 10px;
        padding: 18px 0px 20px;
        color: #fff;
        text-shadow: none;
    }
    header .header_menu .contact_btn {
        width: 140px;
        font-size: 15px;
        line-height: 30px;
        text-align: center;
        background: #D4AF37;
        border-radius: 10px;
        padding: 20px 0px 20px;
        color: #fff;
        text-shadow: none;
    }

    header .hamburger {
        display: none;
    }

    /* -----------footer-----------*/
    .top_contact .top_contact_wrap {
        padding: 60px 30px;
    }

    footer {
        margin: 50px 0 0 ;
    }
    footer .footer_menu {
        flex-direction: row;
        gap: 0;
    }
    footer .footer_menu li a {
        padding: 0 15px;
        border-left: 1px solid #fff;
    }
    footer .footer_menu li:last-of-type a {
        border-right: 1px solid #fff;
    }
    footer small {
        padding: 15px 0 0;
    }

    /* -----------top-----------*/
    .top_mv h2 {
        font-size: 60px;
    }
    .top_news {
        padding: 97px 20px 76px;
    }
    .top_news ul li a {
        align-items: center;
        flex-direction: row;
        gap: 45px;
    }

    .top_company .top_company_about {
        max-width: 1057px;
        flex-direction: row;
        gap: 50px;
        margin: 0 auto;
    }
    .top_company .top_company_about h2 {
        flex-shrink: 0;
        line-height: 110px;
        border-bottom: none;
        border-right: 1px solid #fff;
    }

    .top_products .top_products_content {
        padding: 75px 116px;
    }
    .top_products .top_products_content_icons {
        max-width: unset;
    }


    /* -----------company-----------*/
    .company_about .company_about_wrap_item {
        flex-direction: row;
        gap: 0;
    }
    .company_about .company_about_wrap_item .map_wrap {
        flex-direction: row;
    }
    .company_about .company_about_wrap_item .map {
        padding: 0 0 0 10px;
    }
    

    /* -----------news-----------*/
    .news_list .news_list_wrap_ul li a {
        flex-direction: row;
        gap: 10px;
    }
    .news_list .news_list_wrap_ul li a .news_list_item_date {
        width: 120px;
    }

    /* -----------news_single-----------*/
    .news_single .news_single_wrap .news_single_title {
        margin: 0 auto 60px;
    }

    /* -----------contact-----------*/
    .contact .white_inner {
        padding: 30px 140px 0px;
    }
    .contact form {
        margin: 50px auto 0 auto;
    }
    .contact form .label_wrap {
        flex-direction: row;
    }
    .contact form .label_wrap .label {
        flex-grow: 1;
    }
}


@media screen and (min-width:1025px) {

    .sp {
        display: none;
    }
    .pc {
        display: block;
    }

    /* -----------共通-----------*/

    /* -----------PC header-----------*/

    /* -----------footer-----------*/

    /* -----------top-----------*/
}