@charset "UTF-8";

/*
Theme Name: child
Theme URI:
Description:
Template: twentytwentyone
Author: makesview
Author URI: https://makes-view.co.jp/
Version: 1.0.0
*/

:root {
    --main-color: #174bd3;
    --accent-color: #4A60A8;
    --sub-color: #ECEEF5;
    --font-color: #333;
}

html,
button,
input,
select,
textarea {
    /* 不要な指定は消す */
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
}

@font-face {
    font-family: "Helvetica";
    src: url(./fonts/Helvetica-regular.ttf) format("truetype");
}

@font-face {
    font-family: "Helvetica-regularOblique";
    src: url(./fonts/Helvetica-regularOblique.ttf) format("truetype");
}

@font-face {
    font-family: "Helvetica-Bold";
    src: url(./fonts/Helvetica-Bold.ttf) format("truetype");
}

.f_en {
    font-family: "Helvetica-Bold", sans-serif;
}

.f_hel {
    font-family: "Helvetica", sans-serif;
}

.f_oblique {
    font-family: "Helvetica-regularOblique", sans-serif;
}


body {
    color: #333;
    font-size: 16px;
    line-height: 1.7;
    margin-top: 80px;
    min-width: 1340px;
}

body.home,
body.page-template-page-en {
    margin-top: unset;
}

.wrap {
    width: 1140px;
    margin: 0 auto;
}

.wrap.mid {
    width: 1240px;
}

.wrap.lr {
    width: 1340px;
}

/* 共通設定 */
.site_common_title .en {
    font-size: 72px;
    line-height: 1.2;
    letter-spacing: .025em;
    color: var(--main-color);
}

.site_common_title .jp {
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: .05em;
    font-weight: 700;
}

.site_common_btn .btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 100vmax;
    background-color: var(--main-color);
    width: 320px;
    font-size: 16px;
    letter-spacing: .015em;
    font-weight: 600;
    color: #fff;
    min-block-size: 65px;
    padding-inline: 30px 20px;
    transition: all .3s;
}

.site_common_btn .btn::after {
    content: '';
    flex-shrink: 0;
    width: 30px;
    aspect-ratio: 1;
    min-width: 0;
    background: url(./image/icon_arrow_white.svg) center center / contain no-repeat;
}

.site_common_btn .btn:hover {
    background-color: var(--accent-color);
}

/* PCヘッダー */
#pc_header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    /* background-color: var(--main-color); */
    z-index: 100;
    min-width: 1340px;
    transition: .5s;
}

body.home #pc_header,
body.page-template-page-en #pc_header {
    background-color: transparent;
}

body.home #pc_header.bg,
body.page-template-page-en #pc_header.bg {
    background-color: #fff;
}

body.home #pc_header.bg .menu_list ul li .link,
body.page-template-page-en #pc_header.bg .menu_list ul li .link {
    color: #333;
}

body.home #pc_header.bg .menu_list ul li.child .link::before,
body.home #pc_header.bg .menu_list ul li.child .link::after,
body.page-template-page-en #pc_header.bg .menu_list ul li.child .link::before,
body.page-template-page-en #pc_header.bg .menu_list ul li.child .link::after {
    background-color: #333;
}

body.home #pc_header.bg .menu_list ul li .contact,
body.page-template-page-en #pc_header.bg .menu_list ul li .contact {
    background-color: #333;
    border: 1px solid #333;
    color: #fff;
}

body.home #pc_header.bg .menu_list ul li .contact:hover,
body.page-template-page-en #pc_header.bg .menu_list ul li .contact:hover {
    background-color: #fff;
        color: #333;
}

body.home #pc_header.bg .menu_list ul li .contact::after,
body.page-template-page-en #pc_header.bg .menu_list ul li .contact::after {
    background: url(./image/icon_arrow_black.svg) center center / contain no-repeat;
}

body.home #pc_header.bg .menu_list ul li .contact:hover::after,
body.page-template-page-en #pc_header.bg .menu_list ul li .contact:hover::after{
    background: url(./image/icon_arrow_black_hover.svg) center center / contain no-repeat;
}

body.home #pc_header.bg .language_box .en,
body.page-template-page-en #pc_header.bg .language_box .en {
    color: #333;
}

#pc_header .cont {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 20px;
}

#pc_header .cont .logo a {
    width: 292px;
    display: block;
}

#pc_header .cont .logo a img {
    width: 100%;
}

#pc_header .menu_list {
    margin-left: auto;
    margin-right: 55px;
}

#pc_header .menu_list ul {
    display: flex;
    align-items: center;
    gap: 0 30px;
}

#pc_header .menu_list ul li .link {
    color: #fff;
    font-size: 16px;
    letter-spacing: .015em;
    font-weight: 600;
    display: inline-block;
    transition: all .3s;
}

#pc_header .menu_list ul li .link:hover {
    opacity: .7;
}

#pc_header .menu_list ul li.child {
    position: relative;
    cursor: pointer;
}

#pc_header .menu_list ul li.child .link {
    display: flex;
    gap: 0 .5em;
    align-items: center;
    position: relative;
}

#pc_header .menu_list ul li.child .link::after {
    content: '';
    width: 13px;
    height: 2px;
    background-color: #fff;
    display: block;
}

#pc_header .menu_list ul li.child .link::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 5px;
    width: 2px;
    height: 13px;
    background-color: #fff;
    transition: all .3s;
}

#pc_header .menu_list ul li.child:hover .link::before {
    opacity: 0;
    visibility: hidden;
}

#pc_header .menu_list ul li.child:hover .child_menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(8%);
}

#pc_header .menu_list ul li .child_menu {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% 0%;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    padding-top: 30px;
    z-index: 10;
}

#pc_header .menu_list ul li .child_menu .inner {
    border-radius: 5px;
    background-color: var(--main-color);
    padding: 30px;
}

#pc_header .menu_list ul li .child_menu .menu {
    width: 280px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    color: #fff;
    font-size: 13px;
    letter-spacing: .015em;
    font-weight: 600;
    padding-block: .5em;
    cursor: pointer;
    transition: all .3s;
}

#pc_header .menu_list ul li .child_menu .menu::after {
    content: '';
    width: 6px;
    aspect-ratio: 1;
    min-width: 0;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    rotate: -45deg;
}

#pc_header .menu_list ul li .child_menu .menu:hover {
    opacity: .7;
}

#pc_header .menu_list ul li .contact {
    border-radius: 100vmax;
    background-color: #fff;
    border: 1px solid #fff;
    font-size: 16px;
    line-height: 1;
    letter-spacing: .015em;
    font-weight: 700;
    color: var(--main-color);
    min-block-size: 40px;
    display: flex;
    align-items: center;
    gap: 0 30px;
    padding-inline: 20px 9px;
    transition: all .3s;
}

#pc_header .menu_list ul li .contact::after {
    content: '';
    display: block;
    width: 22px;
    aspect-ratio: 1;
    min-width: 0;
    background: url(./image/icon_arrow_blue.svg) center center / contain no-repeat;
    transition: all .3s;
}

#pc_header .menu_list ul li .contact:hover {
    color: #fff;
    background-color: var(--main-color);
}

#pc_header .menu_list ul li .contact:hover::after {
    background: url(./image/icon_arrow_white.svg) center center / contain no-repeat;
}

#pc_header .language_box {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

#pc_header .language_box:before {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    left: 49%;
    transform: translateX(-50%);
    background-color: #fff;
    z-index: 1;
}

#pc_header .language_box .en {
    color: #fff;
    display: inline-block;
    font-size: 15px;
    line-height: 1;
    letter-spacing: .015em;
    transition: all .3s;
}

#pc_header .language_box .en.japan {
    opacity: .6;
}

#pc_header .language_box .en.english {
    opacity: .6;
}

/* 内部ページ用　 */
#pc_header.color {
    background-color: #fff;
}

#pc_header.color .menu_list ul li.child .link {
    color: #333;
}

#pc_header.color .menu_list ul li.child .link::before,
#pc_header.color .menu_list ul li.child .link::after {
    background-color: #333;
}

#pc_header.color .menu_list ul li .link {
    color: #333;
}

#pc_header.color .menu_list ul li .contact {
    background-color: #333;
    border: 1px solid #333;
    color: #fff;
}

#pc_header.color .menu_list ul li .contact:hover {
    background-color: #fff;
    color: #333;
}

#pc_header.color .menu_list ul li .contact::after {
    background: url(./image/icon_arrow_black.svg) center center / contain no-repeat
}

#pc_header.color .menu_list ul li .contact:hover::after {
    background: url(./image/icon_arrow_black_hover.svg) center center / contain no-repeat
}

#pc_header.color .language_box .en {
    color: #333;
}

/* PC　FV */
.top_fv_sec {
    position: relative;
    height: calc(100vh - 80px);
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
}

.top_fv_sec .img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.top_fv_sec .img::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(2, 40, 139, .3);
    mix-blend-mode: darken;
}

.top_fv_sec .text_box {
    position: relative;
    z-index: 1;
}

.top_fv_sec .text_box .en {
    font-size: 64px;
    line-height: 1;
    letter-spacing: .03em;
    font-weight: 300;
    color: #fff;
}

.top_fv_sec .text_box .h1_text {
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: .1em;
    font-weight: 400;
    color: #fff;
    margin-top: .8em;
}

/* PC トップメッセージ */
.top_message_sec {
    padding-block: 120px 150px;
    position: relative;
    overflow: hidden;
}

.top_message_sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 867px;
    height: 100%;
    background: url(./image/deco_diamond1.png) center center / cover no-repeat;
}

.top_message_sec::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 528px;
    height: 521px;
    background: url(./image/deco_diamond2.png) right bottom / cover no-repeat;
}

.top_message_sec .cont {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 0 244px;
    position: relative;
    z-index: 1;
}

.top_message_sec .site_common_title {
    margin-top: 50px;
}

.top_message_sec .site_common_title .en {
    font-size: 40px;
}

.top_message_sec .site_common_title .jp {
    font-size: 20px;
}

.top_message_sec .catch_box .catch {
    font-size: 55px;
    line-height: 1.5;
    letter-spacing: .1em;
    font-weight: 700;
}

.top_message_sec .catch_box .catch .color {
    color: var(--main-color);
    font-size: 56px;
    text-decoration: underline;
    text-underline-offset: 8px;
}

.top_message_sec .text_box {
    margin-top: 33px;
}

.top_message_sec .text_box .text {
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: .015sem;
}

.top_message_sec .text_box .text+.text {
    margin-top: 1.5em;
}

.top_message_sec .site_common_btn {
    margin-top: 55px;
}

/* PC トップ事業内容 */
.top_business_sec {
    padding-block: 160px;
    position: relative;
    background-color: var(--sub-color);
}

.top_business_sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url(./image/business_bg.png) center top / contain repeat;
    mix-blend-mode: overlay;
    opacity: .45;
}

.top_business_sec .wrap {
    position: relative;
}

.business_cont ul {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0 60px;
}

.business_cont ul li:first-child,
.business_cont ul li:nth-child(3),
.business_cont ul li:nth-child(5) {
    margin-top: 60px;
}

.business_cont ul li:nth-child(2),
.business_cont ul li:nth-child(6) {
    margin-top: -20px;
}

.business_cont ul li:nth-child(4) {
    margin-top: -45px;
}

.business_cont ul li {
    width: 540px;
    flex-shrink: 0;
}

.business_cont ul li .link {
    display: block;
    border-radius: 3px;
    background-color: #fff;
    overflow: hidden;
}

.business_cont ul li .link .img {
    overflow: hidden;
    position: relative;
    isolation: isolate;
}

.business_cont ul li .link .img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: all .3s;
}

.business_cont ul li .link:hover .img img {
    scale: 1.1;
}

.business_cont ul li .link .img::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(2, 40, 139, .15);
    mix-blend-mode: darken;
    z-index: 1;
}

.business_cont ul li .link .cont {
    padding: 25px 35px 30px;
    color: var(--font-color);
}

.business_cont ul li .link .title_box.flex {
    gap: 0 .8em;
    align-items: center;
}

.business_cont ul li .link .title_box .division {
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: .015em;
    font-weight: 700;
}

.business_cont ul li .link .title_box .label {
    background-color: var(--main-color);
    font-size: 14px;
    line-height: 1;
    letter-spacing: .015em;
    font-weight: 700;
    color: #fff;
    padding: .3em .5em .5em;
    border-radius: 2px;
}

.business_cont ul li .link .text_box {
    margin-top: .5em;
}

.business_cont ul li .link .text_box .text {
    font-size: 16px;
    letter-spacing: .015em;
}

.business_cont ul li .link .arrow {
    margin: 10px 0 0 auto;
    width: 30px;
    aspect-ratio: 1;
    min-width: 0;
    position: relative;
}

.business_cont ul li .link .arrow img {
    width: 100%;
}

.business_cont ul li .link:hover .arrow::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url(./image/icon_arrow_blue.svg) center center / contain no-repeat;
    z-index: 1;
}

/* PC トップお知らせ */
.top_news_sec {
    padding-block: 160px 140px;
}

.top_news_sec .cont {
    /* display: flex; */
    justify-content: space-between;
    /* align-items: flex-start; */
}

.top_news_sec .site_common_title {
    /* display: flex; */
    /* align-items: flex-end; */
    margin-bottom: 60px;
}

.top_news_sec .site_common_title .en {
    /* writing-mode: sideways-rl; */
    /* white-space: pre; */
    /* margin-left: -18px; */
}

.top_news_sec .site_common_title .jp {
    /* margin-bottom: 40px; */
    /* writing-mode: vertical-lr; */
    /* white-space: pre; */
    position: relative;
}

.top_news_sec .site_common_title .jp::before {
    content: '';
    position: absolute;
    top: -75%;
    left: 50%;
    translate: -50% 0%;
    width: 1px;
    height: 60px;
    background-color: rgba(51, 51, 51, .1);
    display: none;
}

.top_news_sec .common_news_list {
    /* width: 965px; */
    flex-shrink: 0
}

.top_news_sec .site_common_btn .btn {
    /* margin: 55px 0 0 auto; */
    margin: 55px auto 0;
}

.common_news_list ul li .link {
    display: flex;
    align-items: center;
    padding: 30px 50px;
    background-color: #FAFAFA;
    border-radius: 3px;
    transition: all .3s;
}

.common_news_list ul li+li {
    margin-top: 10px;
}

.common_news_list ul li .link .time {
    font-size: 16px;
    line-height: 1;
    letter-spacing: .015em;
    color: var(--main-color);
    margin: .3em 30px 0 0;
    transition: all .3s;
}

.common_news_list ul li .link .content {
    color: var(--font-color);
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: .05em;
    font-weight: 700;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    margin-right: 43px;
    flex-grow: 1;
    transition: all .3s;
}

.common_news_list ul li .link .arrow {
    flex-shrink: 0;
    width: 30px;
    aspect-ratio: 1;
    min-width: 0;
    background: url(./image/icon_arrow_blue.svg) center center / contain no-repeat;
    transition: all .3s;
}

.common_news_list ul li .link:hover {
    background-color: var(--main-color);
}

.common_news_list ul li .link:hover .time {
    color: #fff;
}

.common_news_list ul li .link:hover .content {
    color: #fff;
}

.common_news_list ul li .link:hover .arrow {
    background: url(./image/icon_arrow_white.svg) center center / contain no-repeat;
}

/* PC 世界マップ */
.common_world_map {
    background-color: #FAFAFA;
    position: relative;
    padding-block: 15px 38px;
    overflow: hidden;
}

.common_world_map::before {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    translate: -50% 0%;
    width: 1462px;
    height: 160px;
    background: url(./image/global_offices.svg) center center / contain no-repeat;
}

.common_world_map .map {
    width: 1430px;
    margin-inline: auto;
    position: relative;
}

.common_world_map .map a {
    display: block;

}

.common_world_map .map a rect#bg {
    transition: all .3s;
}

.common_world_map .map a:hover rect#bg {
    fill: var(--main-color);
}

.common_world_map .map a:hover path#text {
    fill: #fff;
}

/* PC トップお問い合わせ */
.top_contact_sec {
    overflow: hidden;
}

.top_contact_sec .cont {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.top_contact_sec .cont .item {
    display: flex;
    flex-direction: column;
}

.top_contact_sec .cont .item .img {
    width: 720px;
    position: relative;
}

.top_contact_sec .cont .item .img img {
    width: 100%;
    height: 430px;
    object-fit: cover;
}

.top_contact_sec .cont .item .img::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(2, 40, 139, .3);
    mix-blend-mode: darken;
}

.top_contact_sec .cont .item:first-child .img {
    margin-left: calc(100% - 50vw);
    width: 50vw;
}

.top_contact_sec .cont .item:last-child .img {
    margin-right: calc(100% - 50vw);
    width: 50vw;
}

.top_contact_sec .cont .info_box {
    position: relative;
    z-index: 1;
    background-color: #ECEEF5;
    margin-top: -50px;
    padding: 70px 100px;
    position: relative;
    flex-grow: 2;
}

.top_contact_sec .cont .item:first-child .info_box::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 256px;
    background-color: rgba(51, 51, 51, .1);
}

.top_contact_sec .cont .title_box {
    position: relative;
    display: flex;
    gap: 0 .8em;
    align-items: first baseline;
    padding-bottom: 15px;
}

.top_contact_sec .cont .title_box::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--main-color);
}

.top_contact_sec .cont .item:last-child .title_box::before {
    background-color: var(--accent-color);
}

.top_contact_sec .cont .title_box .en {
    font-size: 40px;
    line-height: 1;
    letter-spacing: .025em;
    color: var(--main-color);
}

.top_contact_sec .cont .item:last-child .title_box .en {
    color: var(--accent-color);
}

.top_contact_sec .cont .title_box .title {
    font-size: 16px;
    letter-spacing: .05em;
    font-weight: 700;
}

.top_contact_sec .cont .text_box {
    margin-top: 25px;
}

.top_contact_sec .cont .text_box .text {
    font-size: 14px;
    letter-spacing: .015em;
}

.top_contact_sec .cont .site_common_btn .btn {
    margin-top: 25px;
    width: 278px;
    border: 2px solid var(--main-color);
}

.top_contact_sec .cont .site_common_btn .btn:hover {
    background-color: #fff;
    color: var(--main-color);
}

.top_contact_sec .cont .site_common_btn .btn:hover::after {
    background: url(./image/icon_arrow_blue.svg) center center / contain no-repeat;
}

.top_contact_sec .cont .item:last-child .site_common_btn .btn::after {
    background: url(./image/icon_arrow2_white.svg) center center / contain no-repeat;
}

.top_contact_sec .cont .item:last-child .site_common_btn .btn {
    background-color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.top_contact_sec .cont .item:last-child .site_common_btn .btn:hover {
    background-color: #fff;
    color: var(--accent-color);
}

.top_contact_sec .cont .item:last-child .site_common_btn .btn:hover::after {
    background: url(./image/icon_arrow2_blue.svg) center center / contain no-repeat;
}

/* PCフッター */
.main_footer {
    padding-block: 150px 80px;
}

.main_footer .cont {
    display: flex;
    justify-content: space-between;
}

.main_footer .ft_info .logo a {
    display: block;
    width: 292px;
}

.main_footer .ft_info .logo a img {
    width: 100%;
}

.main_footer .ft_info .box {
    margin-top: 20px;
}

.main_footer .ft_info .address,
.main_footer .ft_info .tel {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: .015em;
}

.main_footer .ft_info .tel {
    display: inline-block;
    pointer-events: none;
    color: var(--font-color);
}

.main_footer .ft_menu {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 0 70px;
}

.main_footer .ft_menu ul li:not(:first-child) .menu {
    margin-top: 18px;
}

.main_footer .ft_menu ul li .menu {
    display: inline-block;
    font-size: 16px;
    letter-spacing: .015em;
    color: var(--font-color);
    font-weight: 700;
    position: relative;
    transition: all .3s;
}

.main_footer .ft_menu ul li .menu::before {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--main-color);
    transition: all .3s;
}

.main_footer .ft_menu ul li .menu:hover {
    color: var(--main-color);
}

.main_footer .ft_menu ul li .menu:hover::before {
    width: 100%;
}

.main_footer .ft_menu ul li .sub_menu {
    display: inline-block;
    font-size: 14px;
    letter-spacing: .015em;
    color: var(--font-color);
    transition: all .3s;
    padding-left: 15px;
    position: relative;
    margin-top: 10px;
}

.main_footer .ft_menu ul li .sub_menu.space {
    margin-top: 18px;
}

.main_footer .ft_menu ul li .sub_menu:hover {
    color: var(--main-color);
}

.main_footer .ft_menu ul li .sub_menu::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    aspect-ratio: 1;
    min-width: 0;
    border-radius: 100%;
    background-color: var(--main-color);
}

.main_footer .ft_bottom {
    margin-top: 120px;
    border-top: 1px solid rgba(51, 51, 51, .1);
    padding-top: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main_footer .ft_bottom .copy {
    display: inline-block;
    font-size: 12px;
    line-height: 1;
    letter-spacing: .05em;
}

.main_footer .ft_bottom .sub_menu ul {
    display: flex;
    gap: 0 30px;
}

.main_footer .ft_bottom .sub_menu ul li .link {
    display: inline-block;
    font-size: 12px;
    line-height: 1;
    letter-spacing: .015em;
    color: var(--font-color);
    transition: all .3s;
}

.main_footer .ft_bottom .sub_menu ul li .link:hover {
    opacity: .7;
}

/* PC固定ページ 共通設定 */
.common_page_main {
    background: #fff;
    padding-block: 35px 15px;
    position: relative;
    overflow: hidden;
}

.common_page_main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 867px;
    height: 100%;
    background: url(./image/deco_diamond1.png) center center / cover no-repeat;
}

.common_page_main::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 528px;
    height: 270px;
    background: url(./image/deco_diamond2.png) center top / cover no-repeat;
}

.common_page_main .title_box {
    margin-bottom: 70px;
    text-align: center;
    position: relative;
}

.common_page_main .title_box .sub_title {
    color: var(--main-color);
    font-size: 72px;
    line-height: 1.3;
    letter-spacing: .025em;
    text-transform: uppercase;
}

.common_page_main .title_box .title {
    font-size: 24px;
    letter-spacing: .05em;
    font-weight: 700;
}

.page_company .common_page_wrap {
    padding: 160px 0 0;
}

.common_page_wrap {
    padding: 160px 0;
}

.not_found .text {
    text-align: center;
}

.reserve_text {
    text-align: center;
    font-size: 30px;
}

/* パンくず */
.breadcrumb {
    font-size: 12px;
    color: rgba(51, 51, 51, .5);
    letter-spacing: .08em;
    position: relative;
}

.breadcrumb a {
    text-decoration: underline;
    color: #333;
    margin-right: 1.5em;
}

.breadcrumb .current-item {
    margin-left: 1.5em;
}

/* PC固定ページ お問い合わせ */
.contact_form_disc {
    color: #3E3E3E;
    letter-spacing: .08em;
    font-weight: 400;
    text-align: center;
    margin-block: 0 3.8em;
}

.contact_form_disc .text {
    font-size: 16px;
    margin-block: 0 1em;
}

.contact_form_disc .caution {
    font-size: 14px;
}

.common_contact_form .form_box {
    margin-block: 0 50px;
}

.common_contact_form .form_box dl {
    display: grid;
    grid-template-columns: 26.5% 1fr;
    align-items: center;
    gap: 80px;
}

.common_contact_form .form_box dl.start {
    align-items: flex-start;
}

.common_contact_form .form_box dl+dl {
    margin-block: 1.6em 0;
}

.common_contact_form .form_box dl dt {
    display: flex;
    align-items: center;
    gap: 1.3em;
    font-size: 16px;
    letter-spacing: .08em;
    font-weight: 700;
    padding-inline: 0 0.5em;
    position: relative;
}

.common_contact_form .form_box dl dt .label {
    flex-shrink: 0;
    color: #3E3E3E;
    font-size: 12px;
    letter-spacing: .2em;
    font-weight: 700;
    border-radius: 100vmax;
    padding: 0.2em 0.9em;
}

.common_contact_form .form_box dl dt .label.hissu {
    background: #C70000;
    color: #fff;
}

.common_contact_form .form_box dl dt .label.ninni {
    background: #E0E0E0;
}

.common_contact_form .form_box dl dt::after {
    content: "";
    width: 1px;
    height: 30px;
    background: #AAA;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.common_contact_form input[type="text"],
.common_contact_form input[type="email"],
.common_contact_form #zip {
    width: 100%;
    background: #F8F8F8;
    border: 1px solid #E6E6E6;
    border-radius: 4px;
    font-size: 14px;
    letter-spacing: .08em;
    font-weight: 400;
    padding: 0.8em 1em;
}

.common_contact_form textarea {
    width: 100%;
    height: 180px;
    background: #F8F8F8;
    border: 1px solid #E6E6E6;
    border-radius: 4px;
    padding: 1em;
    font-size: 14px;
    letter-spacing: .08em;
    font-weight: 400;
}

.common_contact_form input::placeholder,
.common_contact_form textarea::placeholder {
    color: #C7C4C4;
}

.common_contact_form select {
    width: 47.5%;
    background: #F8F8F8;
    border: 1px solid #E6E6E6;
    border-radius: 4px;
    font-size: 14px;
    letter-spacing: .08em;
    padding: 1.1em 1em;
}

.common_contact_form select.empty {
    color: #C7C4C4;
}

.page_contact #btn_wrap {
    justify-content: center;
    text-align: right;
    width: 74%;
    margin: auto;
}

.page_contact #btn_wrap button {
    background-color: var(--main-color);
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    color: #fff;
    display: block;
    width: 310px;
    line-height: 60px;
    font-size: 18px;
    font-weight: 900;
    transition: .3s;
    text-align: center;
    letter-spacing: .08em;
    margin: auto;
}

.page_contact #btn_wrap button[name="submitBack"] {
    background: #333;
    margin-top: 20px;
}

.page_contact #btn_wrap button:hover {
    opacity: .8;
}

.privacy_term_outer .privacy_term_inner {
    height: 138px;
    margin: auto;
    overflow: auto;
}

.privacy_term_outer .privacy_term_inner .privacy_index {
    font-size: 14px;
}

.privacy_term_outer .privacy_term_inner .main_text {
    font-size: 13px;
    margin-bottom: 25px;
}

.privacy_term_outer .privacy_term_inner dl dt {
    font-size: 13px;
    border-left: solid 3px #ccc;
    padding-left: 1em;
    margin-bottom: 5px;
}

.privacy_term_outer .privacy_term_inner dl dd {
    font-size: 13px;
}

.privacy_term_outer .privacy_term_inner dl+dl {
    margin-top: 30px;
}

.privacy_term_outer .privacy_term_inner::-webkit-scrollbar {
    width: 8px;
}

.privacy_term_outer .privacy_term_inner::-webkit-scrollbar-track {
    background: transparent;
}

.privacy_term_outer .privacy_term_inner::-webkit-scrollbar-thumb {
    background-color: #333;
    border-radius: 10px;
}

.privacy_term_outer {
    border-top: solid 1px #e3e3e3;
    padding: 30px 0;
    border-bottom: solid 1px #e3e3e3;
    width: 60%;
    margin: 0 auto 50px;
}

.privacy_check_list .mwform-checkbox-field-text {
    padding-right: 0;
}

.privacy_check_list .error {
    font-size: 12px;
}

.privacy_term_detail {
    text-align: center;
    font-size: 13px;
    margin: 20px 0;
    position: relative;
    font-weight: 600;
}

.privacy_term_detail::after {
    content: "";
    margin: 5px auto 0;
    border: solid #333;
    border-width: 2px 2px 0 0;
    width: 10px;
    aspect-ratio: 1 / 1;
    min-width: 0;
    rotate: 135deg;
    display: block;
}

.mw_wp_form_confirm .privacy_check_list,
.mw_wp_form_confirm .privacy_term_detail {
    display: none;
}

/* ラジオボタン デザイン */
.radio_btns,
.checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em 1.5em;
    padding: .5em 0;
}

/* ラジオボタンを隠す */
.radio_btns input[type=radio].radio_btns__item {
    display: none;
}

.radio_btns label {
    display: inline-block;
    cursor: pointer;
}

/* spanの左側にボタンを配置するスペースを作る */
.radio_btns .radio_btns__item+span {
    color: #3E3E3E;
    font-size: 15px;
    letter-spacing: .08em;
    font-weight: 600;
    padding-left: 2em;
    display: inline-block;
    position: relative;
}

/* 各パーツを作成 */
.radio_btns .radio_btns__item+span::before,
.radio_btns .radio_btns__item+span::after {
    content: '';
    display: block;
    position: absolute;
    border: 1px solid #E6E6E6;
    background: #F8F8F8;
    border-radius: 50%;
    width: 20px;
    aspect-ratio: 1;
    min-width: 0;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
}

/* after上書き */
.radio_btns .radio_btns__item+span::after {
    width: 10px;
    aspect-ratio: 1;
    min-width: 0;
    top: 0px;
    left: 5px;
    border: none;
    background: #5A5A5A;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    transition: all .3s;
}

/*
  checked状態
  文字のcolorとボタンのopacityを変更
*/
.radio_btns .radio_btns__item:checked+span::after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

/* チェックボックス デザイン */
.page_contact input[type="checkbox"] {
    /* デフォルトcheckボックス非表示*/
    display: none;
}

.mwform-checkbox-field label {
    cursor: pointer;
}

.mwform-checkbox-field-text {
    color: #3E3E3E;
    font-size: 15px;
    letter-spacing: .08em;
    font-weight: 600;
    display: inline-block;
    position: relative;
    padding: 0 0 0 30px;
}

.mwform-checkbox-field-text::before,
.mwform-checkbox-field-text::after {
    content: "";
    position: absolute;
    display: block;
}

.mwform-checkbox-field-text::before {
    background: #F8F8F8;
    border: 1px solid #E6E6E6;
    border-radius: 2px;
    width: 20px;
    aspect-ratio: 1 / 1;
    min-width: 0;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.mwform-checkbox-field-text::after {
    border-width: 3px;
    border-color: transparent transparent #333 #333;
    border-style: solid;
    width: 20px;
    aspect-ratio: 2/1;
    min-width: 0;
    margin-top: -0.2em;
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(-45deg);
    opacity: 0;
}

input[type="checkbox"]:checked+.mwform-checkbox-field-text::after {
    opacity: 1;
}

.mw_wp_form .horizontal-item {
    display: inline-block;
}

.mw_wp_form .horizontal-item+.horizontal-item {
    margin-left: 0 !important;
}

/* サンクスページ */

.page_contact .thanks_textArea .name {
    font-size: 16px;
    line-height: 2;
    text-align: center;
    margin-bottom: 20px;
}

.page_contact .thanks_textArea .contact_text {
    margin: 0 auto 50px;
    width: 62%;
}

.page_contact .thanks_textArea .ichiran_link {
    background-color: var(--main-color);
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    color: #fff;
    display: block;
    width: 300px;
    line-height: 50px;
    border-radius: 4px;
    font-size: 16px;
    transition: .3s;
    margin: 0 auto;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: .08em;
    text-align: center;
}

.page_contact .thanks_textArea .ichiran_link:hover {
    opacity: .8;
}

.page_contact .thanks_textArea .contact_text .space {
    display: block;
}

.page_contact .thanks_textArea .contact_text .space {
    display: block;
    margin-top: 10px;
}

/* ステップバー デザイン */
.page_contact .progressbar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5.6em;
    margin-block: 0 3em;
}

.page_contact .progressbar .item {
    color: #3E3E3E;
    font-size: 14px;
    letter-spacing: .08em;
    font-weight: 400;
    text-align: center;
    line-height: 1.5;
    position: relative;
}

.page_contact .progressbar .item+.item::before {
    content: "";
    width: 50px;
    height: 1px;
    background: #E6E6E6;
    position: absolute;
    top: 64%;
    left: -5em;
}

.page_contact .progressbar .item .mark {
    width: 36px;
    aspect-ratio: 1;
    background: #fff;
    border: 1px solid #AFAFAF;
    border-radius: 50%;
    display: block;
    margin: 0 auto 0.5em;
    position: relative;
}

.page_contact .progressbar .item .mark::before {
    content: "";
    width: 41%;
    aspect-ratio: 1;
    background: #5A5A5A;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    opacity: 0;
}

.page_contact .progressbar .item.active .mark::before {
    opacity: 1;
}

.page_contact .progressbar .item .en {
    display: block;
    color: #A7A7A7;
    letter-spacing: 0;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

.privacy_check_list {
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.privacy_check_list .hissu {
    background: #c70200;
    color: #fff;
    padding: 2px 15px;
    font-size: 10px;
    letter-spacing: .08em;
    border-radius: 30px;
    font-weight: 600;
}

.mw_wp_form .privacy_check_list .horizontal-item {
    margin: 0;
}

/* PC固定ページ 404ページ */
#page_404 {
    text-align: center;
}

#page_404 .num {
    font-size: 100px;
    font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#page_404 .text {
    margin-bottom: 1em;
    font-size: 16px;
}

/* PC固定ページ アーカイブページ */
/* 投稿リスト表示 */
.archive_page_list>article {
    padding-bottom: 15px;
    padding-top: 15px;
    border-bottom: 1px dashed #eee;
    padding-right: 30px;
}

.archive_page_list>article:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    top: 0;
    right: 5px;
    bottom: 0;
    margin: auto;
    border: solid #ccc;
    border-width: 2px 2px 0 0;
    transform: rotate(45deg);
}

.archive_page_list>article .date {
    font-weight: bold;
    font-size: 80%;
    width: 100px;
}

.archive_page_list>article .content_area {
    width: calc(100% - 100px);
}

.archive_page_list>article .content_area .ttl {
    font-weight: bold;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.archive_page_list>article .content_area .content {
    font-size: 80%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

/* wp-pagenavi base */
.wp-pagenavi {
    text-align: center;
    margin-top: 50px;
}

.wp-pagenavi a,
.wp-pagenavi span {
    display: inline-block;
    color: #999;
    background-color: #FFF;
    border: solid 1px #e0e0d2;
    padding: 8px 15px;
    margin: 0 2px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-transition: 0.2s ease-in-out;
    -moz-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    text-align: center;
    text-decoration: none;
}

.wp-pagenavi a:hover {
    color: #FFF;
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.wp-pagenavi .current {
    color: #FFF;
    background-color: var(--main-color);
    border-color: var(--main-color);
    font-weight: bold;
}

/* PC内部ページ　事業内容 */
.page_service {
    background-color: var(--sub-color);
    position: relative;
}

.page_service::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url(./image/business_bg.png) center top / contain repeat;
    mix-blend-mode: overlay;
    opacity: .45;
}

.page_service_tab {
    position: relative;
}

.page_service_tab ul {
    display: grid;
    grid-template-columns: repeat(3, 320px);
    gap: 20px 30px;
    justify-self: center;
}

.page_service_tab ul li .tab {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-block-size: 65px;
    font-size: 16px;
    letter-spacing: .015em;
    font-weight: 600;
    color: #fff;
    background-color: var(--main-color);
    border-radius: 100vmax;
    padding-inline: 30px 20px;
    transition: all .3s;
}

.page_service_tab ul li .tab:hover {
    background-color: var(--accent-color);
}

.page_service_tab ul li .tab::after {
    content: '';
    flex-shrink: 0;
    width: 30px;
    aspect-ratio: 1;
    min-width: 0;
    background: url(./image/icon_arrow_white.svg) center center / cover no-repeat;
    rotate: 90deg;
}

.page_service_sec {
    margin-top: 80px;
    position: relative;
}

.service_item {
    background-color: #fff;
    border-radius: 5px;
    padding: 60px 50px;
}

.service_item+.service_item {
    margin-top: 50px;
}

.service_item .item_title {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.service_item .title_box {
    border-left: 3px solid var(--main-color);
    padding-left: 30px;
}

.service_item .title_box .en {
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: .025em;
    color: var(--main-color);
    display: none;
}

.service_item .title_box .title {
    font-size: 32px;
    letter-spacing: .05em;
    font-weight: 700;
    line-height: 1.4;
}

.service_item .title_box .title .small {
    font-size: .75em;
}

.service_item .item_title .mail {
    display: flex;
    align-items: center;
    gap: 0 .8em;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: .015em;
    font-weight: 700;
    color: var(--main-color);
    margin-left: auto;
}

.service_item .item_title .mail::before {
    content: '';
    flex-shrink: 0;
    width: 30px;
    aspect-ratio: 1;
    min-width: 0;
    background: url(./image/icon_mail2.svg) center center / contain no-repeat;
}

.service_item .item_title .link {
    display: flex;
    align-items: center;
    gap: 0 .8em;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: .015em;
    font-weight: 700;
    color: var(--main-color);
    margin: 5px auto 0 0;
    width: fit-content;
}

.service_item .item_title .link::before {
    content: '';
    flex-shrink: 0;
    width: 30px;
    aspect-ratio: 1;
    min-width: 0;
    background: url(./image/icon_link.svg) center center / contain no-repeat;
}

.service_item .desc_box {
    margin-top: 25px;
    background-color: #FAFAFA;
    padding: 25px 20px;
}

.service_item .desc_box .text {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: .015em;
}

.service_item .item_list {
    margin-top: 35px;
}

.service_item .item_list ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px 22px;
}

.service_item .item_list ul li .img {
    height: 245px;
}

.service_item .item_list ul li .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service_item .item_list ul li .label {
    background-color: var(--main-color);
    color: #fff;
    font-size: 16px;
    letter-spacing: .05em;
    line-height: 1.2;
    font-weight: 700;
    text-align: center;
    padding: .4em 0;
}

.service_item .item_list ul li .label .small {
    font-size: .75em;
}

.service_item .item_list ul li:nth-child(even) .label {
    background-color: var(--accent-color);
}

.service_item .item_list ul li .text_box {
    margin-top: .8em;
}

.service_item .item_list ul li .text_box .text {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: .015em;
}

.service_item .item_inner {
    margin-top: 60px;
}

/* PC内部ページ　会社概要 */
.page_company .common_page_wrap {
    padding: 50px 0 160px;
}

.page_common_title {
    font-size: 42px;
    letter-spacing: .05em;
    color: var(--main-color);
    font-weight: 700;
    text-align: center;
    position: relative;
    padding-bottom: .2em;
}

.page_common_title::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--main-color);
    bottom: 0;
    left: 50%;
    translate: -50% 0%;
}

.page_common_title .small {
    display: block;
    font-size: 0.6em;
}

.company_info_sec .desc_box {
    margin-top: 50px;
}

.company_info_sec .desc_box .text {
    text-align: center;
    font-size: 18px;
    letter-spacing: .015em;
}

.company_info_sec .img {
    overflow: hidden;
    height: 300px;
    margin-top: 25px;
}

.company_info_sec .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.company_profile_sec {
    margin-top: 180px;
    padding-block: 150px;
    background-color: var(--sub-color);
}

.company_profile_sec .cont {
    margin-top: 50px;
    background-color: #fff;
}

.company_profile_sec .cont dl {
    display: flex;
    border-bottom: 2px solid rgba(51, 51, 51, .1);
}

.company_profile_sec .cont dl:last-child {
    border-bottom: none;
}

.company_profile_sec .cont dl dt,
.company_profile_sec .cont dl dd {
    padding: 1.5em 2em;
}

.company_profile_sec .cont dl dt {
    width: 20%;
    flex-shrink: 0;
    background-color: #FAFAFA;
    font-size: 16px;
    letter-spacing: .015em;
    font-weight: 700;
    color: var(--main-color);
}

.company_profile_sec .cont dl dt .small {
    display: block;
    font-size: .75em;
    font-weight: 400;
    color: rgba(51, 51, 51, .5);
}

.company_profile_sec .cont dl dd {
    font-size: 16px;
    letter-spacing: .015em;
}

.company_profile_sec .site_common_btn .btn {
    margin: 35px auto 0;
}

.page_company .common_world_map .map a:hover path#text {
    fill: var(--main-color);
}

.page_company .common_world_map .map a:hover rect#bg {
    fill: #fff;
}

.company_store_sec {
    padding-block: 150px;
}

.company_store_sec .store_list {
    margin-top: 50px;
}

.company_store_sec .store_list ul li+li {
    margin-top: 30px;
}

.company_store_sec .store_list ul li {
    border-radius: 5px;
    background-color: #FAFAFA;
    padding: 50px;
    display: grid;
    grid-template-columns: 390px 1fr;
    gap: 0 40px;
}

.company_store_sec .store_list ul li .img {
    height: 350px;
}

.company_store_sec .store_list ul li .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company_store_sec .store_list ul li .store {
    color: var(--main-color);
    font-size: 20px;
    letter-spacing: .015em;
    font-weight: 700;
    border-left: 3px solid var(--main-color);
    padding-left: .8em;
}

.company_store_sec .store_list ul li .address_box {
    margin-top: 1em;
}

.company_store_sec .store_list ul li .address {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: .015em;
}

.company_store_sec .store_list ul li .tel {
    display: inline-block;
    color: var(--font-color);
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0em;
    font-weight: 700;
    pointer-events: none;
    margin-top: .7em;
}

.company_store_sec .store_list ul li .tel .num {
    font-size: 1.2em;
}

.company_store_sec .store_list ul li .map {
    margin-top: 25px;
    height: 180px;
}

.company_store_sec .store_list ul li .map iframe {
    width: 100%;
    height: 100%;
}

.company_world_sec {
    padding-block: 100px 150px;
    background-color: #FAFAFA;
}

.company_world_sec .world_list {
    margin-top: 50px;
}

.company_world_sec .world_list ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
}

.company_world_sec .world_list ul li {
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    height: 100%;
}

.company_world_sec .world_list ul li .img img {
    width: 100%;
    aspect-ratio: 3/2;
    min-width: 0;
    object-fit: cover;
}

.company_world_sec .world_list ul li .text_area {
    margin-top: 15px;
    padding: 25px;
}

.company_world_sec .world_list ul li .title_box {
    border-bottom: 1px solid rgba(51, 51, 51, .1);
}

.company_world_sec .world_list ul li .title_box .country {
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: .015em;
    font-weight: 700;
    color: var(--main-color);
    display: flex;
    align-items: first baseline;
    gap: 0 .4em;
}

.company_world_sec .world_list ul li .title_box .country::before {
    content: '';
    flex-shrink: 0;
    width: 13px;
    aspect-ratio: 1;
    min-width: 0;
    background: url(./image/icon_pin.svg) center center / contain no-repeat;
}

.company_world_sec .world_list ul li .title_box .capital {
    font-size: 20px;
    letter-spacing: .015em;
    font-weight: 700;
}

.company_world_sec .world_list ul li .info_box {
    margin-top: 10px;
}

.company_world_sec .world_list ul li .info_box .spot {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: .015em;
    font-weight: 700;
    padding-left: 12px;
    position: relative;
}

.company_world_sec .world_list ul li .info_box .spot::before {
    content: '';
    position: absolute;
    top: 7.5px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background-color: var(--font-color);
}

.company_world_sec .world_list ul li .info_box .address {
    margin-block: 1.2em;
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: .015em;
}

.company_world_sec .world_list ul li .info_box .tel,
.company_world_sec .world_list ul li .info_box .fax,
.company_world_sec .world_list ul li .info_box .mail {
    font-size: 14px;
    letter-spacing: 0em;
    line-height: 1.5;
    margin-top: .5em;
}

.company_world_sec .world_list ul li .info_box .label {
    background-color: var(--accent-color);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .015em;
    padding: .4em .7em .3em;
    border-radius: 3px;
    line-height: 1;
    text-align: center;
    margin-right: .5em;
    width: 14%;
    display: inline-block;
}

.single-post {
    margin-top: 200px;
}

/* PC内部ページ　グループ会社 */
.group_sec .item {
    border-top: 1px solid rgba(51, 51, 51, .1);
    padding-block: 50px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0 100px;
    align-items: flex-start;
}

.group_sec .item .company_name {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: .015em;
    font-weight: 700;
    border-left: 3px solid var(--main-color);
    padding-left: 1em;
    flex-shrink: 0;
}

.group_sec .item .info_box {
    width: 100%;
}

.group_sec .item .info_box dl {
    display: flex;
    border-bottom: 1px solid rgba(51, 51, 51, .1);
}

.group_sec .item .info_box dl:first-child {
    border-top: 1px solid rgba(51, 51, 51, .1);
}

.group_sec .item .info_box dl dt,
.group_sec .item .info_box dl dd {
    padding: 1em 1.5em;
}

.group_sec .item .info_box dl dt {
    width: 22%;
    background-color: var(--sub-color);
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .05em;
    font-weight: 700;
    flex-shrink: 0;
}

.group_sec .item .info_box dl dd {
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: .05em;
}

/* PC内部ページ　強み */
.strengths_sec {
    padding-bottom: 150px;
}

.strengths_sec .desc_box {
    margin-top: 50px;
}

.strengths_sec .desc_box .text {
    text-align: center;
    font-size: 18px;
    line-height: 1.9;
    letter-spacing: .015em;
    font-weight: 700;
}

.strengths_sec .image_box {
    margin-top: 30px;
    height: 380px;
}

.strengths_sec .image_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.strengths_reason_sec {
    padding-block: 150px;
    background-color: var(--sub-color);
}

.strengths_reason_sec .desc_box {
    margin-top: 50px;
}

.strengths_reason_sec .desc_box .text {
    text-align: center;
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: .015em;
}

.strengths_reason_sec .cont {
    margin-top: 60px;
}

.strengths_reason_sec .cont .item {
    background-color: #fff;
    border-radius: 5px;
    padding: 50px;
    display: flex;
    gap: 0 50px;
}

.strengths_reason_sec .cont .item+.item {
    margin-top: 40px;
}

.strengths_reason_sec .cont .item:nth-child(even) {
    flex-direction: row-reverse;
    justify-content: space-between;
}

.strengths_reason_sec .cont .item .img {
    width: 300px;
    flex-shrink: 0;
}

.strengths_reason_sec .cont .item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.strengths_reason_sec .cont .item .heading_box {
    position: relative;
    margin-bottom: 1em;
}

.strengths_reason_sec .cont .item .heading_box .num {
    position: absolute;
    top: -30px;
    left: 0;
    font-size: 58px;
    line-height: 1;
    letter-spacing: .015em;
    color: rgba(74, 96, 168, .2);
    pointer-events: none;
}

.strengths_reason_sec .cont .item .heading_box .heading {
    font-size: 28px;
    line-height: 1.5;
    letter-spacing: .015em;
    font-weight: 700;
}

.strengths_reason_sec .cont .item .text_box .text {
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: .015em;
}

/* PC内部ページ　代表挨拶・企業理念 */

.page_message .common_page_wrap {
    padding: 50px 0 160px;
}

.page_message .massage_sec {
    padding-bottom: unset;
}

.massage_sec {
    padding-bottom: 150px;
}

.massage_sec .cont {
    display: flex;
    align-items: center;
    gap: 0 45px;
    margin-top: 50px;
}

.massage_sec .cont .img {
    margin-left: -100px;
    width: 460px;
    height: 555px;
    margin-bottom: 30px;
    flex-shrink: 0;
}

.massage_sec .cont .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.massage_sec .cont .catch {
    color: var(--main-color);
    font-size: 26px;
    line-height: 1.5;
    letter-spacing: .015em;
    font-weight: 700;
}

.massage_sec .cont .text_box {
    margin-top: 30px;
}

.massage_sec .cont .text_box .text {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: .05em;
}

.massage_sec .cont .text_box .text+.text {
    margin-top: .8em;
}

.massage_sec .cont .president {
    margin-top: 45px;
    margin-left: auto;
    width: 177px;
}

.massage_sec .cont .president img {
    width: 100%;
}

.philosophy_sec .desc_box {
    margin-top: 45px;
    background-color: var(--sub-color);
    border-radius: 5px;
    padding: 50px;
}

.philosophy_sec .desc_box .catch {
    text-align: center;
    font-size: 45px;
    line-height: 1.5;
    letter-spacing: .015em;
    font-weight: 700;
}

.philosophy_sec .desc_box .catch .line {
    color: var(--main-color);
    font-size: 46px;
    text-decoration: underline;
    text-underline-offset: 8px;
}

.philosophy_sec .desc_box .text_box {
    margin-top: 40px;
}

.philosophy_sec .desc_box .text_box .text {
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: .015em;
}

.philosophy_sec .desc_box .site_common_btn .btn {
    margin: 45px auto 0;
}

/* PCカスタム投稿募集要項 */
.archive_job_description .no_show {
    text-align: center;
    font-size: 32px;
    letter-spacing: .015em;
    font-weight: 700;
}

.archive_job_description ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 45px;
}

.archive_job_description .page_common_title:nth-of-type(2) {
    margin-top: 80px;
}

.archive_job_description ul li a {
    display: block;
    border: 1px solid rgba(51, 51, 51, .5);
    padding: 20px 30px;
    color: var(--font-color);
    background-color: #FAFAFA;
}

.archive_job_description ul li a .title {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: .015em;
    font-weight: 700;
    color: var(--main-color);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.archive_job_description ul li a .occupation {
    margin-top: .6em;
    font-size: 15px;
    letter-spacing: .015em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.archive_job_description ul li a .text {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0 .3em;
    font-size: 14px;
    line-height: 1;
    letter-spacing: .015em;
    font-weight: 700;
    margin-top: 2em;
}

.archive_job_description ul li a .text::after {
    flex-shrink: 0;
    content: '';
    width: 18px;
    aspect-ratio: 1;
    min-width: 0;
    background: url(./image/icon_arrow2_white.svg) center center / contain no-repeat;
    transition: all .3s;
}

.archive_job_description ul li a:hover .text::after {
    background: url(./image/icon_arrow_blue.svg) center center / contain no-repeat;
}

.job_description_sec .cont {
    background-color: var(--sub-color);
    padding: 80px;
    border-radius: 5px;
}

.job_description_sec .cont .title {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: .015em;
    font-weight: 700;
    border-left: 3px solid var(--main-color);
    padding-left: .8em;
}

.job_description_sec .cont .list {
    margin-top: 40px;
}

.job_description_sec .cont .list dl {
    display: grid;
    grid-template-columns: 220px 1fr;
    background-color: #fff;
    border-bottom: 1px solid rgba(51, 51, 51, .1);
}

.job_description_sec .cont .list dl:last-child {
    border-bottom: none;
}

.job_description_sec .cont .list dl dt,
.job_description_sec .cont .list dl dd {
    padding: 2em;
}

.job_description_sec .cont .list dl dt {
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: .015em;
    font-weight: 700;
    position: relative;
}

.job_description_sec .cont .list dl dt::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    translate: 0% -50%;
    width: 1px;
    height: 50%;
    background-color: rgba(51, 51, 51, .1);
}

.job_description_sec .cont .list dl dd {
    font-size: 16px;
    letter-spacing: .015em;
    white-space: pre-wrap;
}

.job_description_sec .button_box {
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.job_description_sec .site_common_btn:last-child .btn {
    background: #333;
}

/* PC内部ページ　先輩社員のインタビュー */
.interview_sec .desc_box {
    background-color: var(--sub-color);
    border-radius: 5px;
    padding: 50px;
}

.interview_sec .desc_box .text {
    text-align: center;
    font-size: 20px;
    line-height: 1.8;
    letter-spacing: .05em;
    font-weight: 700;
}

.interview_sec .cont {
    display: grid;
    grid-template-columns: 420px 1fr;
    align-items: center;
    gap: 0 60px;
    margin-top: 80px;
}

.interview_sec .cont .img {
    position: relative;
}

.interview_sec .cont .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.interview_sec .cont .img .name {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--main-color);
    width: fit-content;
    height: auto;
    font-size: 16px;
    line-height: 1;
    letter-spacing: .05em;
    color: #fff;
    font-weight: 700;
    padding: .7em;
}

.interview_sec .cont .img .name .small {
    font-size: .7em;
    margin-right: .6em;
}

.interview_sec .cont .text_box .text {
    font-size: 16px;
    line-height: 2;
    letter-spacing: .015em;
}

.interview_sec .cont .text_box .text+.text {
    margin-top: 1em;
}

/* PC内部ページ　会社沿革・西澤の歩み */
.history_profile_sec .desc_box {
    margin-top: 50px;
}

.history_profile_sec .desc_box .text {
    text-align: center;
    font-size: 18px;
    line-height: 1.9;
    letter-spacing: .015em;
    font-weight: 700;
}

.history_profile_sec .img {
    margin-top: 30px;
    height: 480px;
}

.history_profile_sec .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.history_timeline {
    margin-top: 100px;
    position: relative;
}

.history_timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 90px;
    height: 97.5%;
    width: 2px;
    background-color: var(--sub-color);

}

.history_timeline .heading {
    padding: .3em 1em;
    font-size: 18px;
    letter-spacing: .015em;
    font-weight: 700;
    color: #fff;
    background-color: var(--main-color);
    display: inline-block;
    margin-block: 50px;
    position: relative;
    margin-left: 30px;
}

.history_timeline .heading:first-child {
    margin-block: 0 50px;
}

.history_timeline .item {
    display: flex;
    gap: 0 50px;
}

.history_timeline .item+.item {
    margin-top: 80px;
}

.history_timeline .item .years_box {
    flex-shrink: 0;
    position: relative;
    padding-right: 40px;
}

.history_timeline .item .years_box::before {
    content: '';
    position: absolute;
    right: -5px;
    top: 12px;
    width: 18px;
    aspect-ratio: 1;
    min-width: 0;
    border-radius: 100%;
    border: 3px solid var(--main-color);
    background-color: #fff;
}

.history_timeline .item .years_box .years {
    font-size: 24px;
    letter-spacing: .015em;
    color: var(--main-color);
}

.history_timeline .item .content {
    width: 100%;
    border-radius: 5px;
    border: 1px solid rgba(51, 51, 51, .1);
    padding: 30px 50px;
}

.history_timeline .item .content .title {
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: .015em;
    font-weight: 700;
    border-left: 3px solid var(--main-color);
    padding-left: 1em;
}

.history_timeline .item .content .text_box {
    margin-top: 15px;
    background-color: #FAFAFA;
    padding: 25px 20px;
}

.history_timeline .item .content .text_box .text {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: .015em;
}

.history_timeline .item .content .history_img {
    margin-top: 30px;
}

.history_timeline .item .content .history_img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.history_profile_sec .history_info {
    background-color: var(--sub-color);
    padding: 50px 60px;
    margin-top: 150px;
    border-radius: 5px;
}

.history_profile_sec .history_info .heading {
    border-bottom: 2px solid var(--main-color);
    font-size: 24px;
    line-height: 1.75;
    letter-spacing: .015em;
    font-weight: 700;
    display: inline-block;
}

.history_profile_sec .history_info .list_box {
    margin-top: 50px;
}

.history_profile_sec .history_info .list_box ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 30px;
}

.history_profile_sec .history_info .list_box ul li {
    background-color: #fff;
    border-radius: 5px;
}

.history_profile_sec .history_info .list_box ul li .num {
    background-color: var(--main-color);
    width: 45px;
    aspect-ratio: 1;
    min-width: 0;
    border-radius: 100%;
    display: grid;
    place-content: center;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0em;
    color: #fff;
    margin: -20px auto 0;
}

.history_profile_sec .history_info .list_box ul li .title {
    text-align: center;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: .015em;
    font-weight: 700;
    margin-top: .8em;
}


.history_profile_sec .history_info .list_box ul li .text_box {
    padding: 20px;
}

.history_profile_sec .history_info .list_box ul li .text_box .text {
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: .015em;
    color: #A7A7A7;
}

/* PC内部ページ　採用情報 */
.recruit_profile_sec .cont .item+.item {
    margin-top: 80px;
}

.recruit_profile_sec .cont .item {
    display: flex;
    gap: 0 60px;
    align-items: center;
}

.recruit_profile_sec .cont .item:nth-child(odd) {
    flex-direction: row-reverse;
    justify-content: space-between;
}

.recruit_profile_sec .cont .item .img {
    width: 420px;
    flex-shrink: 0;
}

.recruit_profile_sec .cont .item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.recruit_profile_sec .cont .item .catch_box .catch {
    font-size: 26px;
    line-height: 1.6;
    letter-spacing: .015em;
    font-weight: 700;
    color: var(--main-color);
    border-bottom: 1px solid rgba(51, 51, 51, .1);
    padding-bottom: .4em;
}

.recruit_profile_sec .cont .item .catch_box .en {
    font-size: 22px;
    line-height: 1;
    letter-spacing: .015em;
    /* color: var(--sub-color); */
    color: #a1afdf;
    margin-top: .8em;
}

.recruit_profile_sec .cont .item .text_box {
    margin-top: 30px;
}

.recruit_profile_sec .cont .item .text_box .text {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: .015em;
}

.recruit_flow_sec {
    margin-top: 130px;
    padding-block: 120px;
    background-color: var(--sub-color);
    position: relative;
}

.recruit_flow_sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url(./image/business_bg.png) center top / contain repeat;
    mix-blend-mode: overlay;
    opacity: .45;
}

.recruit_flow_sec .flow_list {
    position: relative;
    z-index: 1;
    margin-top: 50px;
}

.recruit_flow_sec .flow_list ul li {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 0 50px;
    border-bottom: 3px solid var(--main-color);
    padding: 50px 30px;
    background-color: #fff;
    border-radius: 5px 5px 0 0;
    position: relative;
}

.recruit_flow_sec .flow_list ul li:nth-child(even) {
    border-bottom: 3px solid var(--accent-color);
}

.recruit_flow_sec .flow_list ul li:not(:last-child)::before {
    content: '';
    position: absolute;
    height: 30px;
    width: 90px;
    bottom: -32px;
    left: 50%;
    translate: -50% 0%;
    background-color: var(--main-color);
    clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.recruit_flow_sec .flow_list ul li:nth-child(even)::before {
    background-color: var(--accent-color);
}

.recruit_flow_sec .flow_list ul li+li {
    margin-top: 50px;
}

.recruit_flow_sec .flow_list ul li .img img {
    width: 100%;
    aspect-ratio: 3/2;
    min-width: 0;
    object-fit: cover;
    border-radius: 5px;
}

.recruit_flow_sec .flow_list ul li .num_box .num {
    font-size: 30px;
    line-height: 1;
    letter-spacing: .015em;
    color: var(--main-color);
}

.recruit_flow_sec .flow_list ul li:nth-child(even) .num_box .num {
    color: var(--accent-color);
}

.recruit_flow_sec .flow_list ul li .num_box .num .size {
    font-size: 1.5em;
    margin-left: .1em;
}

.recruit_flow_sec .flow_list ul li .text_box {
    margin-top: 1em;
}

.recruit_flow_sec .flow_list ul li .text_box .text {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: .015em;
}

.recruit_btn_sec {
    padding-top: 150px;
}

.recruit_btn_sec .list_box ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 40px;
}

.recruit_btn_sec .list_box ul li .link {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 5px;
    background-color: #FAFAFA;
    height: 100%;
}

.recruit_btn_sec .list_box ul li .link .img {
    height: 250px;
    overflow: hidden;
    flex-shrink: 0;
}

.recruit_btn_sec .list_box ul li .link .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s;
}

.recruit_btn_sec .list_box ul li .link:hover .img img {
    scale: 1.1;
}

.recruit_btn_sec .list_box ul li .text_box {
    padding: 30px;
}

.recruit_btn_sec .list_box ul li .text_box .title {
    text-align: center;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: .015em;
    font-weight: 700;
    color: var(--main-color);
}

.recruit_btn_sec .list_box ul li .btn {
    margin: 30px auto 0;
    border-radius: 100vmax;
    background-color: var(--main-color);
    padding: .5em 60px;
    width: fit-content;
    transition: all .3s;
    border: 2px solid var(--main-color);
}

.recruit_btn_sec .list_box ul li .btn .text {
    color: #fff;
    font-size: 18px;
    letter-spacing: .015em;
    font-weight: 700;
    transition: all .3s;
}

.recruit_btn_sec .list_box ul li:hover .btn {
    background-color: #fff;
}

.recruit_btn_sec .list_box ul li:hover .btn .text {
    color: var(--main-color);
}

/* 英語版ページ調整 */
#pc_header.english .cont {
    padding-block: 25px;
}

.page_en .top_message_sec .catch_box .catch {
    font-size: 45px;
}

.page_en .top_message_sec .catch_box .catch .color {
    font-size: 46px;
}

.page_en .service_item .item_list ul li .label .small {
    font-size: .6em;
}

.page_en .history_profile_sec .history_info {
    padding: 50px;
}

.page_en .company_profile_sec .cont dl dt {
    width: 24%;
}




@media (max-width: 750px) {

    .wrap,
    .wrap.mid,
    .wrap.lr {
        max-width: 90%;
    }

    a[href $='.pdf']::before {
        width: 7vw;
        height: 8vw;
        margin-right: 2.5vw;
    }

    a[href $='.pdf']:hover {
        text-decoration: underline;
    }

    body {
        font-size: 13px;
        margin-top: 64px;
        min-width: 100%;
    }

    /* 共通設定 */
    .site_common_title .en {
        font-size: 8vw;
    }

    .site_common_title .jp {
        font-size: 4vw;
    }

    .site_common_btn .btn {
        width: 75vw;
        font-size: 3.8vw;
        min-block-size: 14vw;
        padding-inline: 7vw 5vw;
    }

    .site_common_btn .btn::after {
        width: 6vw;
    }

    .site_common_btn .btn:hover {
        background-color: var(--main-color);
    }


    /* SPヘッダー */
    #sp_header {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 64px;
        background: var(--main-color);
        z-index: 999;
        padding: 9px 60px 9px 10px;
        display: flex;
        align-items: center;
    }

    #sp_header .logo {
        line-height: 0;
    }

    #sp_header .logo a {
        display: block;
    }

    #sp_header .logo img {
        height: 18px;
    }

    #sp_header .language_box {
        display: flex;
        align-items: center;
        gap: 0 18px;
        margin-left: auto;
        position: relative;
    }

    #sp_header .language_box.english {
        margin-right: 10px;
    }

    #sp_header .language_box::before {
        content: '';
        position: absolute;
        width: 1px;
        height: 100%;
        left: 49%;
        transform: translateX(-50%);
        top: 0;
        background-color: #fff;
    }

    #sp_header .language_box .en {
        display: inline-block;
        font-size: 14px;
        line-height: 1;
        letter-spacing: .015em;
        font-weight: 700;
        color: #fff;
    }

    #sp_header .language_box .en.english,
    #sp_header .language_box .en.japan {
        opacity: .6;
    }

    #sp_header .mail {
        margin-left: 10px;
        background-color: #fff;
        border-radius: 3px;
        padding: 10px 11px 5px;
    }

    #sp_header .mail .icon {
        width: 20px;
        margin-inline: auto;
        line-height: 1;
    }

    #sp_header .mail .icon img {
        width: 100%;
    }

    #sp_header .mail .text {
        margin-top: 5px;
        font-size: 10px;
        line-height: 1;
        letter-spacing: .015em;
        color: var(--main-color);
    }


    /* SP　FV */
    .top_fv_sec {
        height: unset;
        padding-block: 95.3vw 12vw;
    }

    .top_fv_sec .text_box .en {
        font-size: 8vw;
        line-height: 1.2;
    }

    .top_fv_sec .text_box .h1_text {
        font-size: 5.5vw;
    }

    /* PC トップメッセージ */
    .top_message_sec {
        padding-block: 10vw 18vw;
    }

    .top_message_sec::before {
        width: 95vw;
        height: 88vw;
    }

    .top_message_sec::after {
        width: 56vw;
        height: 56vw;
    }

    .top_message_sec .cont {
        grid-template-columns: repeat(1, auto);
        gap: 6vw 0;
    }

    .top_message_sec .site_common_title {
        margin-top: 5vw;
    }

    .top_message_sec .site_common_title .en {
        font-size: 6vw;
    }

    .top_message_sec .site_common_title .jp {
        font-size: 4.5vw;
    }

    .top_message_sec .catch_box .catch {
        font-size: 9vw;
    }

    .top_message_sec .catch_box .catch .color {
        font-size: 9.2vw;
    }

    .top_message_sec .text_box {
        margin-top: 33px;
    }

    .top_message_sec .text_box .text {
        font-size: 4.2vw;
    }

    .top_message_sec .text_box .text+.text {
        margin-top: 1.5em;
    }

    .top_message_sec .site_common_btn {
        margin-top: 5vw;
    }

    /* SP トップ事業内容 */
    .top_business_sec {
        padding-block: 15vw;
    }

    .top_business_sec::before {
        background: url(./image/business_bg_sp.png) center top / contain repeat;
    }

    .business_cont ul {
        flex-direction: column;
        gap: 4vw 0;
        margin-top: 5vw;
    }

    .business_cont ul li:first-child,
    .business_cont ul li:nth-child(3),
    .business_cont ul li:nth-child(5) {
        margin-top: 0;
    }

    .business_cont ul li:nth-child(2),
    .business_cont ul li:nth-child(6) {
        margin-top: 0;
    }

    .business_cont ul li:nth-child(4) {
        margin-top: 0;
    }

    .business_cont ul li {
        width: 100%;
    }

    .business_cont ul li .link .img img {
        height: 40vw;
    }

    .business_cont ul li .link:hover .img img {
        scale: 1;
    }

    .business_cont ul li .link .cont {
        padding: 5vw 6vw;
    }

    .business_cont ul li .link .title_box .division {
        font-size: 4.2vw;
        color: var(--main-color);
    }

    .business_cont ul li .link .title_box .label {
        font-size: 3.2vw;
    }

    .business_cont ul li .link .text_box .text {
        font-size: 3.6vw;
    }

    .business_cont ul li .link .arrow {
        margin: 1vw 0 0 auto;
        width: 6vw;
    }

    .business_cont ul li .link .arrow img {
        display: none;
    }

    .business_cont ul li .link .arrow::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url(./image/icon_arrow_blue.svg) center center / contain no-repeat;
        z-index: 1;
    }

    /* SP トップお知らせ */
    .top_news_sec {
        padding-block: 18vw;
    }

    .top_news_sec .cont {
        flex-direction: column;
    }

    .top_news_sec .site_common_title {
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-bottom: unset;
    }

    .top_news_sec .site_common_title .en {
        writing-mode: unset;
        margin-left: 0;
    }

    .top_news_sec .site_common_title .jp {
        margin-bottom: 8vw;
        writing-mode: unset;
    }

    .top_news_sec .site_common_title .jp::before {
        display: none;
    }

    .top_news_sec .common_news_list {
        width: 100%;
    }

    .top_news_sec .site_common_btn .btn {
        margin: 6vw auto 0;
    }

    .common_news_list ul li .link {
        display: block;
        padding: 4vw 5vw;
    }

    .common_news_list ul li+li {
        margin-top: 3vw;
    }

    .common_news_list ul li .link .time {
        font-size: 3.3vw;
    }

    .common_news_list ul li .link .content {
        font-size: 3.8vw;
        margin-right: 0;
        margin-top: 2.5vw;
    }

    .common_news_list ul li .link .arrow {
        width: 5vw;
    }

    .common_news_list ul li .link:hover {
        background-color: #FAFAFA;
    }

    .common_news_list ul li .link:hover .time {
        color: var(--main-color);
    }

    .common_news_list ul li .link:hover .content {
        color: var(--font-color);
    }

    .common_news_list ul li .link:hover .arrow {
        background: url(./image/icon_arrow_white.svg) center center / contain no-repeat;
    }

    .common_news_list ul li .link .time_box {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0 .5em;
    }

    /* SP 世界マップ */
    .common_world_map {
        padding-block: 0 18vw;
    }

    .common_world_map::before {
        bottom: -1vw;
        width: 100%;
        height: 9vw;
        background: url(./image/global_offices_sp.svg) center center / contain no-repeat;
    }

    .common_world_map .map {
        width: 1430px;
        margin-inline: auto;
        position: relative;
    }

    .sp_world_list .img img {
        width: 100%;
    }

    .sp_world_list ul {
        margin-top: -13vw;
        position: relative;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 3vw;
    }

    .sp_world_list ul li .link {
        display: block;
        border-radius: 100vmax;
        background-color: #fff;
        color: var(--main-color);
        font-size: 4vw;
        font-weight: 700;
        letter-spacing: .015em;
        padding: 3.5vw 5vw;
        position: relative;
    }

    .sp_world_list ul li .link::before {
        content: '';
        position: absolute;
        top: 50%;
        right: 3vw;
        transform: translateY(-50%);
        width: 2vw;
        aspect-ratio: 1;
        min-width: 0;
        border-right: 2px solid var(--main-color);
        border-bottom: 2px solid var(--main-color);
        rotate: -45deg;
    }

    /* SP トップお問い合わせ */
    .top_contact_sec .cont {
        grid-template-columns: repeat(1, 100%);
        gap: 8vw 0;
    }

    .top_contact_sec .cont .item {
        flex-direction: column;
    }

    .top_contact_sec .cont .item .img {
        width: 100vw;
    }

    .top_contact_sec .cont .item .img img {
        height: 48vw;
    }

    .top_contact_sec .cont .item:first-child .img {
        margin: 0 calc(50% - 50vw);
        width: 100vw;
    }

    .top_contact_sec .cont .item:last-child .img {
        margin: 0 calc(50% - 50vw);
        width: 100vw;
    }

    .top_contact_sec .cont .info_box {
        margin-top: -6vw;
        padding: 13vw 5vw 8vw;
    }

    .top_contact_sec .cont .item:first-child .info_box::before {
        display: none;
    }

    .top_contact_sec .cont .title_box {
        flex-direction: column;
        gap: 1vw 0;
        align-items: center;
        padding-bottom: 0;
    }

    .top_contact_sec .cont .title_box::before {
        bottom: unset;
        left: 43%;
        top: -12.5vw;
        rotate: 90deg;
    }

    .top_contact_sec .cont .title_box .en {
        font-size: 8vw;
    }

    .top_contact_sec .cont .title_box .title {
        font-size: 4vw;
    }

    .top_contact_sec .cont .text_box {
        margin-top: 5vw;
    }

    .top_contact_sec .cont .text_box .text {
        font-size: 3.5vw;
        text-align: center;
    }

    .top_contact_sec .cont .site_common_btn .btn {
        margin: 4vw auto 0;
        width: 63vw;
    }

    .top_contact_sec .cont .site_common_btn .btn:hover {
        background-color: var(--main-color);
        color: #fff;
    }

    .top_contact_sec .cont .site_common_btn .btn:hover::after {
        background: url(./image/icon_arrow_white.svg) center center / contain no-repeat;
    }

    .top_contact_sec .cont .item:last-child .site_common_btn .btn:hover {
        background-color: var(--accent-color);
        color: #fff;
    }

    .top_contact_sec .cont .item:last-child .site_common_btn .btn:hover::after {
        background: url(./image/icon_arrow2_white.svg) center center / contain no-repeat;
    }

    /* SPフッター */
    .main_footer {
        padding-block: 20vw 18vw;
    }

    .main_footer .cont {
        flex-direction: column;
        gap: 8vw 0;
    }

    .main_footer .ft_info .logo a {
        width: 80vw;
        margin-inline: auto;
    }

    .main_footer .ft_info .box {
        margin-top: 4vw;
    }

    .main_footer .ft_info .address,
    .main_footer .ft_info .tel {
        font-size: 3.6vw;
        text-align: center;
    }

    .main_footer .ft_info .tel {
        width: fit-content;
        margin-inline: auto;
        display: block;
        pointer-events: painted;
    }

    .main_footer .ft_menu {
        grid-template-columns: repeat(1, auto);
        gap: 0;
        margin-top: 3vw;
    }

    .main_footer .ft_menu ul:nth-child(1) li:first-child .menu {
        border-top: none;
    }

    .main_footer .ft_menu ul li:not(:first-child) .menu {
        margin-top: 0;
    }

    .main_footer .ft_menu ul li .menu {
        font-size: 4.3vw;
        display: block;
        border-top: 1px solid rgba(51, 51, 51, .1);
        padding-block: .6em;
    }

    .main_footer .ft_menu ul li .menu:hover {
        color: var(--font-color);
    }

    .main_footer .ft_menu ul li .menu:hover::before {
        width: 0;
    }

    .main_footer .ft_menu ul li .sub_menu {
        font-size: 3.5vw;
        margin-top: 1vw;
        padding: 2vw 0 0 4vw;
        margin-left: 1vw;
    }

    .main_footer .ft_menu ul li:last-child .sub_menu {
        margin-bottom: 3vw;
    }

    .main_footer .ft_menu ul li .sub_menu.space {
        margin-top: 0;
    }

    .main_footer .ft_menu ul li .sub_menu:hover {
        color: var(--font-color);
    }

    .main_footer .ft_menu ul li .sub_menu::before {
        width: 1.4vw;
        top: 50%;
    }

    .main_footer .ft_bottom {
        margin-top: 0;
        padding-top: 10vw;
        flex-direction: column-reverse;
        gap: 4vw 0;
    }

    .main_footer .ft_bottom .copy {
        font-size: 2.8vw;
    }

    .main_footer .ft_bottom .sub_menu ul {
        gap: 0 8vw;
    }

    .main_footer .ft_bottom .sub_menu ul li .link {
        font-size: 3.2vw;
    }

    .main_footer .ft_bottom .sub_menu ul li .link:hover {
        opacity: 1;
    }







    /* SP固定ページ 共通設定 */
    .common_page_main {
        padding-block: 15vw 4vw;
    }

    .common_page_main::before {
        width: 100vw;
        left: -25vw;
        height: 130%;
        top: -5vw;
    }

    .common_page_main::after {
        width: 50vw;
        height: 30vw;
    }

    .common_page_main .title_box {
        margin-bottom: 9vw;
    }

    .common_page_main .title_box .sub_title {
        font-size: 9.5vw;
    }

    .common_page_main .title_box .title {
        font-size: 4.8vw;
    }

    .page_company .common_page_wrap {
        padding: 20vw 0 0;
    }

    .common_page_wrap {
        padding: 20vw 0;
    }

    .reserve_text {
        font-size: 6vw;
    }

    /* パンくず */
    .breadcrumb {
        font-size: 3vw;
    }

    .breadcrumb a {
        margin-right: 1em;
    }

    .breadcrumb .current-item {
        margin-left: 1em;
    }

    /* SP固定ページ お問い合わせ */
    .contact_form_disc {
        margin-block: 0 2em;
    }

    .contact_form_disc .text {
        font-size: 3.6vw;
        margin-block: 0 0.8em;
    }

    .contact_form_disc .caution {
        font-size: 3.1vw;
        letter-spacing: .06em;
    }

    .common_contact_form .form_box {
        margin-block: 0 10vw;
    }

    .common_contact_form .form_box dl {
        grid-template-columns: 1fr;
        gap: 0.6em;
    }

    .common_contact_form .form_box dl+dl {
        margin-block: 1.3em 0;
    }

    .common_contact_form .form_box dl dt {
        flex-direction: row-reverse;
        justify-content: space-between;
        font-size: 4.1vw;
        padding-inline: 0;
    }

    .common_contact_form .form_box dl dt .label {
        font-size: 3.1vw;
    }

    .common_contact_form .form_box dl dt::after {
        content: none;
    }

    .common_contact_form input[type="text"],
    .common_contact_form input[type="email"],
    .common_contact_form #zip {
        font-size: 3.6vw;
    }

    .common_contact_form select {
        width: 100%;
        font-size: 3.6vw;
    }

    .common_contact_form textarea {
        height: 33vw;
        font-size: 3.6vw;
    }

    .radio_btns,
    .checkboxes {
        gap: 0.5em 2.5em;
    }

    .page_contact #btn_wrap button {
        width: 83%;
        line-height: 15.5vw;
        font-size: 4.6vw;
    }

    .page_contact #btn_wrap button[name="submitBack"] {
        margin-top: 4vw;
    }

    .mwform-checkbox-field.horizontal-item {
        display: block;
    }

    .page_contact #btn_wrap {
        width: 100%;
        text-align: center;
    }

    .privacy_check_list .mwform-checkbox-field-text {
        font-size: 3.8vw;
        padding-left: 11vw;
    }

    .mw_wp_form .privacy_check_list .horizontal-item {
        margin-right: 4vw;
    }

    .privacy_check_list .hissu {
        padding: 0.3vw 4vw;
    }

    .privacy_check_list {
        margin-bottom: 6vw;
    }

    .privacy_term_detail {
        font-size: 3.4vw;
        margin: 5vw 0;
    }

    .privacy_term_outer {
        width: 96%;
        padding: 5vw 0;
    }

    .privacy_term_outer .privacy_term_inner .main_text {
        font-size: 3.4vw;
        line-height: 1.6;
        margin-bottom: 5vw;
    }

    .privacy_term_outer .privacy_term_inner dl dt {
        font-size: 3.5vw;
        margin-bottom: 1.5vw;
    }

    .privacy_term_outer .privacy_term_inner dl dd {
        font-size: 3.5vw;
        line-height: 1.6;
    }

    .privacy_term_outer .privacy_term_inner dl+dl {
        margin-top: 7vw;
    }

    .privacy_term_detail::after {
        width: 2.5vw;
        margin: 1.5vw auto 0;
    }

    /* サンクスページ */
    .page_contact .thanks_textArea .name {
        font-size: 4vw;
        margin-bottom: 3vw;
    }

    .page_contact .thanks_textArea .contact_text {
        font-size: 3.5vw;
        margin-bottom: 2em;
        width: 100%;
    }

    .page_contact .thanks_textArea .ichiran_link {
        width: 80%;
        line-height: 12vw;
        font-size: 4vw;
    }

    /* ステップバー デザイン */
    .page_contact .progressbar {
        gap: 4.5em;
        margin-block: 0 2.5em;
    }

    .page_contact .progressbar .item {
        font-size: 3.1vw;
    }

    .page_contact .progressbar .item+.item::before {
        width: 5.7vw;
        top: 63%;
        left: -3.3em;
    }

    .page_contact .progressbar .item .mark {
        width: 7.7vw;
        margin: 0 auto 0.4em;
    }

    /* SP固定ページ 404ページ */
    #page_404 .num {
        font-size: 20vw;
        line-height: 1.5;
    }

    #page_404 .text {
        font-size: 3.5vw;
    }

    /* SP投稿ページ アーカイブページ */
    .archive_page_list>article {
        padding-right: 20px;
    }

    .archive_page_list>article .date {
        width: 80px;
    }

    .archive_page_list>article .content_area {
        width: calc(100% - 80px);
    }

    .archive_page_list>article:after {
        width: 7px;
        height: 7px;
    }

    /* SP固定ページ サイトマップ */
    ul#sitemap_list li {
        margin: 0;
    }

    body #sitemap_list li a {
        font-size: 4vw;
        padding: 1vw 2vw;
        line-height: 9vw;
        margin-bottom: 1vw;
    }

    body #sitemap_list li.home-item {
        margin-bottom: 4vw;
    }

    body #sitemap_list {
        padding: 0;
    }

    /* SP内部ページ　事業内容 */
    .page_service::before {
        background: url(./image/business_bg_sp.png) center top / contain repeat;
    }

    .page_service_tab ul {
        grid-template-columns: repeat(2, 44vw);
        gap: 3vw 2vw;
    }

    .page_service_tab ul li .tab {
        min-block-size: 12vw;
        font-size: 3.4vw;
        padding-inline: 4vw 3vw;
    }

    .page_service_tab ul li .tab:hover {
        background-color: var(--main-color);
    }

    .page_service_tab ul li .tab::after {
        width: 5vw;
    }

    .page_service_sec {
        margin-top: 8vw;
    }

    .service_item {
        padding: 7vw 5vw;
    }

    .service_item+.service_item {
        margin-top: 8vw;
    }

    .service_item .item_title {
        flex-direction: column;
        align-items: flex-start;
        gap: 5vw 0;
    }

    .service_item .title_box {
        padding-left: 4vw;
    }

    .service_item .title_box .en {
        font-size: 4.3vw;
    }

    .service_item .title_box .title {
        font-size: 5.5vw;
    }

    .service_item .item_title .mail,
    .service_item .item_title .link {
        font-size: 3.3vw;
        margin-left: 0;
    }

    .service_item .item_title .mail::before,
    .service_item .item_title .link::before {
        width: 6vw;
    }

    .service_item .desc_box {
        margin-top: 5vw;
        padding: 4vw 3vw;
    }

    .service_item .desc_box .text {
        font-size: 3.4vw;
    }

    .service_item .item_list {
        margin-top: 5vw;
    }

    .service_item .item_list ul {
        grid-template-columns: repeat(1, 1fr);
        gap: 7vw 0;
    }

    .service_item .item_list ul li .img {
        height: 40vw;
    }

    .service_item .item_list ul li .label {
        font-size: 3.5vw;
    }

    .service_item .item_list ul li .text_box .text {
        font-size: 3.5vw;
    }

    .service_item .item_inner {
        margin-top: 8vw;
    }

    /* SP内部ページ　会社概要 */
    .page_company .common_page_wrap {
        padding: 6vw 0 20vw;
    }

    .page_common_title {
        font-size: 6.8vw;
        padding-bottom: .5em;
    }

    .page_common_title::before {
        width: 8vw;
    }

    .company_info_sec .desc_box {
        margin-top: 7vw;
    }

    .company_info_sec .desc_box .text {
        font-size: 3.8vw;
    }

    .company_info_sec .img {
        height: 45vw;
        margin-top: 6vw;
    }

    .company_profile_sec {
        margin-top: 22vw;
        padding-block: 15vw;
    }

    .company_profile_sec .cont {
        margin-top: 7vw;
    }

    .company_profile_sec .cont dl dt,
    .company_profile_sec .cont dl dd {
        padding: 1em;
    }

    .company_profile_sec .cont dl dt {
        width: 28%;
        font-size: 3.4vw;
    }

    .company_profile_sec .cont dl dd {
        font-size: 3.4vw;
    }

    .company_profile_sec .site_common_btn .btn {
        margin: 8vw auto 0;
    }

    .company_store_sec {
        padding-block: 20vw;
    }

    .company_store_sec .store_list {
        margin-top: 7vw;
    }

    .company_store_sec .store_list ul li+li {
        margin-top: 5vw;
    }

    .company_store_sec .store_list ul li {
        padding: 6vw;
        grid-template-columns: 1fr;
        gap: 6vw 0;
    }

    .company_store_sec .store_list ul li .img {
        height: unset;
    }

    .company_store_sec .store_list ul li .img img {
        height: 38vw;
    }

    .company_store_sec .store_list ul li .store {
        font-size: 4.4vw;
    }

    .company_store_sec .store_list ul li .address {
        font-size: 3.6vw;
    }

    .company_store_sec .store_list ul li .tel {
        font-size: 4vw;
        pointer-events: painted;
    }

    .company_store_sec .store_list ul li .tel .num {
        font-size: 1.2em;
    }

    .company_store_sec .store_list ul li .map {
        margin-top: 6vw;
        height: 40vw;
    }

    .company_world_sec {
        padding-block: 15vw;
    }

    .company_world_sec .world_list {
        margin-top: 7vw;
    }

    .company_world_sec .world_list ul {
        grid-template-columns: repeat(1, 1fr);
        gap: 5vw 3vw;
    }

    .company_world_sec .world_list ul li .img img {
        aspect-ratio: 2/1;
    }

    .company_world_sec .world_list ul li .text_area {
        margin-top: 0;
        padding: 5vw 4vw;
    }

    .company_world_sec .world_list ul li .title_box .country {
        font-size: 3.6vw;
    }

    .company_world_sec .world_list ul li .title_box .country::before {
        width: 3.6vw;
    }

    .company_world_sec .world_list ul li .title_box .capital {
        font-size: 4vw;
    }

    .company_world_sec .world_list ul li .info_box {
        margin-top: 3vw;
    }

    .company_world_sec .world_list ul li .info_box .spot {
        font-size: 3.4vw;
        padding-left: 2.8vw;
    }

    .company_world_sec .world_list ul li .info_box .spot::before {
        content: '';
        position: absolute;
        top: 7.5px;
        left: 0;
        width: 6px;
        height: 6px;
        border-radius: 100%;
        background-color: var(--font-color);
    }

    .company_world_sec .world_list ul li .info_box .address {
        font-size: 3.4vw;
    }

    .company_world_sec .world_list ul li .info_box .tel,
    .company_world_sec .world_list ul li .info_box .fax,
    .company_world_sec .world_list ul li .info_box .mail {
        font-size: 3.3vw;
    }

    .company_world_sec .world_list ul li .info_box .label {
        font-size: 3vw;
        width: 18%;
    }

    .single-post {
        margin-top: 25vw;
    }

    /* PC内部ページ　グループ会社 */
    .group_sec .item {
        grid-template-columns: 1fr;
        padding-block: 10vw;
        flex-direction: column;
        gap: 5vw 0;
    }

    .group_sec .item .company_name {
        font-size: 4vw;
    }

    .group_sec .item .info_box dl {
        display: flex;
        border-bottom: 1px solid rgba(51, 51, 51, .1);
    }

    .group_sec .item .info_box dl dt,
    .group_sec .item .info_box dl dd {
        padding: 1em;
    }

    .group_sec .item .info_box dl dt {
        width: 30%;
        font-size: 3.4vw;
    }

    .group_sec .item .info_box dl dd {
        font-size: 3.3vw;
    }

    /* PC内部ページ　強み */
    .strengths_sec {
        padding-bottom: 20vw;
    }

    .strengths_sec .desc_box {
        margin-top: 7vw;
    }

    .strengths_sec .desc_box .text {
        font-size: 3.8vw;
    }

    .strengths_sec .image_box {
        margin-top: 5vw;
        height: 45vw;
    }

    .strengths_reason_sec {
        padding-block: 20vw;
    }

    .strengths_reason_sec .desc_box {
        margin-top: 7vw;
    }

    .strengths_reason_sec .desc_box .text {
        font-size: 3.6vw;
    }

    .strengths_reason_sec .cont {
        margin-top: 5vw;
    }

    .strengths_reason_sec .cont .item {
        padding: 7vw;
        flex-direction: column;
        gap: 6vw 0;
    }

    .strengths_reason_sec .cont .item+.item {
        margin-top: 8vw;
    }

    .strengths_reason_sec .cont .item:nth-child(even) {
        flex-direction: column;
    }

    .strengths_reason_sec .cont .item .img {
        width: 100%;
        height: 35vw;
    }

    .strengths_reason_sec .cont .item .heading_box .num {
        top: -6vw;
        font-size: 15vw;
    }

    .strengths_reason_sec .cont .item .heading_box .heading {
        font-size: 4.2vw;
    }

    .strengths_reason_sec .cont .item .text_box .text {
        font-size: 3.6vw;
    }

    /* SP内部ページ　代表挨拶・企業理念 */
    .page_message .common_page_wrap {
        padding: 6vw 0 20vw;
    }

    .massage_sec {
        padding-bottom: 22vw;
    }

    .massage_sec .cont {
        flex-direction: column;
        gap: 6vw 0;
        margin-top: 7vw;
    }

    .massage_sec .cont .img {
        margin-left: 0;
        width: 100%;
        height: 60vw;
        margin-bottom: 6vw;
        margin: 0 calc(50% - 50vw);
    }

    .massage_sec .cont .catch {
        font-size: 5.8vw;
        text-align: center;
    }

    .massage_sec .cont .text_box {
        margin-top: 6vw;
    }

    .massage_sec .cont .text_box .text {
        font-size: 3.6vw;
        letter-spacing: 0em;
    }

    .massage_sec .cont .president {
        margin-top: 8vw;
        width: 35vw;
    }

    .philosophy_sec .desc_box {
        margin-top: 7vw;
        padding: 8vw 4vw;
    }

    .philosophy_sec .desc_box .catch {
        font-size: 5.6vw;
        line-height: 1.7;
    }

    .philosophy_sec .desc_box .catch .line {
        font-size: 5.8vw;
    }

    .philosophy_sec .desc_box .text_box {
        margin-top: 8vw;
    }

    .philosophy_sec .desc_box .text_box .text {
        font-size: 3.6vw;
        text-align: left;
    }

    .philosophy_sec .desc_box .site_common_btn .btn {
        margin: 8vw auto 0;
    }

    /* SP カスタム投稿 募集要項 */
    .archive_job_description .no_show {
        font-size: 5.5vw;
    }

    .archive_job_description ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 4vw 3vw;
        margin-top: 7vw;
    }

    .archive_job_description .page_common_title:nth-of-type(2) {
        margin-top: 20vw;
    }

    .archive_job_description ul li a {
        padding: 4vw 3vw;
    }

    .archive_job_description ul li a .title {
        font-size: 3.8vw;
    }

    .archive_job_description ul li a .occupation {
        font-size: 3.6vw;
    }

    .archive_job_description ul li a .text {
        font-size: 3vw;
    }

    .archive_job_description ul li a .text::after {
        width: 4vw;
        background: url(./image/icon_arrow_blue.svg) center center / contain no-repeat;
    }

    .job_description_sec .cont {
        padding: 8vw 5vw;
    }

    .job_description_sec .cont .title {
        font-size: 5vw;
    }

    .job_description_sec .cont .list {
        margin-top: 7vw;
    }

    .job_description_sec .cont .list dl {
        grid-template-columns: 1fr;
        border-bottom: none;
    }

    .job_description_sec .cont .list dl dt {
        font-size: 4.2vw;
        padding: 1.5em 2em;
    }

    .job_description_sec .cont .list dl dt::before {
        top: unset;
        bottom: 0;
        right: unset;
        left: 50%;
        translate: -50% 0%;
        width: 90%;
        height: 1px;
    }

    .job_description_sec .cont .list dl dd {
        font-size: 3.5vw;
        white-space: unset;
    }

    /* SP内部ページ　先輩社員のインタビュー */
    .interview_sec .desc_box {
        padding: 7vw 5vw;
    }

    .interview_sec .desc_box .text {
        font-size: 4.2vw;
        text-align: left;
    }

    .interview_sec .cont {
        grid-template-columns: 1fr;
        gap: 6vw 0;
        margin-top: 10vw;
    }

    .interview_sec .cont .img .name {
        font-size: 3.8vw;
    }

    .interview_sec .cont .text_box .text {
        font-size: 3.8vw;
    }

    /* SP内部ページ　会社沿革・西澤の歩み */
    .history_profile_sec .desc_box {
        margin-top: 7vw;
    }

    .history_profile_sec .desc_box .text {
        font-size: 4vw;
        text-align: left;
    }

    .history_profile_sec .img {
        margin-top: 5vw;
        height: 45vw;
    }

    .history_timeline {
        margin-top: 20vw;
    }

    .history_timeline::before {
        left: 16.8vw;
        height: 97.1%;

    }

    .history_timeline .heading {
        font-size: 4.2vw;
        margin-block: 7vw;
        margin-left: 0;
        width: 100%;
        text-align: center;
    }

    .history_timeline .heading:first-child {
        margin-block: 0 7vw;
    }

    .history_timeline .item {
        gap: 0 5vw;
    }

    .history_timeline .item+.item {
        margin-top: 12vw;
    }

    .history_timeline .item .years_box {
        padding-right: 7vw;
    }

    .history_timeline .item .years_box::before {
        top: 1.8vw;
        width: 4.3vw;
        border: 2px solid var(--main-color);
    }

    .history_timeline .item .years_box .years {
        font-size: 4.8vw;
    }

    .history_timeline .item .content {
        padding: 5vw 4vw;
    }

    .history_timeline .item .content .title {
        font-size: 4vw;
    }

    .history_timeline .item .content .text_box {
        margin-top: 3vw;
        padding: 4vw 3vw;
    }

    .history_timeline .item .content .text_box .text {
        font-size: 3.3vw;
        line-height: 1.7;
    }

    .history_timeline .item .content .history_img {
        margin-top: 6vw;
    }

    .history_timeline .item .content .history_img img {
        height: 45vw;
    }

    .history_profile_sec .history_info {
        padding: 6vw 4vw;
        margin-top: 18vw;
    }

    .history_profile_sec .history_info .heading {
        font-size: 4.8vw;
        margin-inline: auto;
        width: fit-content;
        display: block;
    }

    .history_profile_sec .history_info .list_box {
        margin-top: 10vw;
    }

    .history_profile_sec .history_info .list_box ul {
        grid-template-columns: repeat(1, 1fr);
        gap: 8vw 0;
    }

    .history_profile_sec .history_info .list_box ul li .num {
        width: 12vw;
        font-size: 5.5vw;
        margin: -5vw auto 0;
    }

    .history_profile_sec .history_info .list_box ul li .title {
        font-size: 4.5vw;
    }

    .history_profile_sec .history_info .list_box ul li .text_box {
        padding: 4vw;
    }

    .history_profile_sec .history_info .list_box ul li .text_box .text {
        font-size: 3.5vw;
    }

    /* SP内部ページ　採用情報 */
    .recruit_profile_sec .cont .item+.item {
        margin-top: 12vw;
    }

    .recruit_profile_sec .cont .item {
        flex-direction: column;
        gap: 5vw 0;
    }

    .recruit_profile_sec .cont .item:nth-child(odd) {
        flex-direction: column;
    }

    .recruit_profile_sec .cont .item .img {
        width: 100%;
    }

    .recruit_profile_sec .cont .item .img img {
        height: 45vw;
    }

    .recruit_profile_sec .cont .item .catch_box .catch {
        font-size: 5.2vw;
    }

    .recruit_profile_sec .cont .item .catch_box .en {
        font-size: 3.8vw;
    }

    .recruit_profile_sec .cont .item .text_box {
        margin-top: 5vw;
    }

    .recruit_profile_sec .cont .item .text_box .text {
        font-size: 3.8vw;
    }

    .recruit_flow_sec {
        margin-top: 20vw;
        padding-block: 18vw;
    }

    .recruit_flow_sec .flow_list {
        margin-top: 7vw;
    }

    .recruit_flow_sec .flow_list ul li {
        grid-template-columns: 1fr;
        gap: 6vw 0;
        padding: 7vw 5vw;
    }

    .recruit_flow_sec .flow_list ul li:not(:last-child)::before {
        height: 6vw;
        width: 15vw;
        bottom: -6vw;
    }

    .recruit_flow_sec .flow_list ul li+li {
        margin-top: 8vw;
    }

    .recruit_flow_sec .flow_list ul li .num_box .num {
        font-size: 6vw;
    }

    .recruit_flow_sec .flow_list ul li .text_box .text {
        font-size: 3.6vw;
    }

    .recruit_btn_sec {
        padding-top: 18vw;
    }

    .recruit_btn_sec .list_box ul {
        grid-template-columns: repeat(1, 1fr);
        gap: 5vw 0;
    }

    .recruit_btn_sec .list_box ul li .link .img {
        height: 45vw;
    }

    .recruit_btn_sec .list_box ul li .link:hover .img img {
        scale: 1;
    }

    .recruit_btn_sec .list_box ul li .text_box {
        padding: 5vw;
    }

    .recruit_btn_sec .list_box ul li .text_box .title {
        font-size: 4.5vw;
    }

    .recruit_btn_sec .list_box ul li .btn {
        margin: 6vw auto 0;
        padding: .5em 12vw;
    }

    .recruit_btn_sec .list_box ul li .btn .text {
        font-size: 3.8vw;
    }

    .recruit_btn_sec .list_box ul li:hover .btn {
        background-color: var(--main-color);
    }

    .recruit_btn_sec .list_box ul li:hover .btn .text {
        color: #fff;
    }

    /* 英語版ページ調整 */
    .page_en .top_message_sec .catch_box .catch {
        font-size: 7vw;
    }

    .page_en .top_message_sec .catch_box .catch .color {
        font-size: 7.1vw;
    }


    .page_en .history_profile_sec .history_info {
        padding: 5vw 4vw;
    }

    .page_en .company_profile_sec .cont dl dt {
        width: 35%;
    }

    .job_description_sec .button_box {
        gap: 20px;
        margin-top: 40px;
    }


}