:root {
    --text-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}

@font-face {
    font-family: "Avenir-Roman";
    src: url("https://cdn.shopify.com/s/files/1/0679/3759/9739/files/Avenir-Roman.woff?v=1704767349") format("woff");
}

/* ----------------------------reset ---------------------------- */
html,
body,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section,
summary,
time,
mark,
audio,
video,
main {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    background: transparent;
}

body {
    font-family: var(--text-family);
    font-size: 12px;
    line-height: 2;
    letter-spacing: 1.25px;
    color: #333333;
    text-align: left;
    -webkit-text-size-adjust: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 80px;
}
@media screen and (max-width: 749px) {
    body {
        padding-top: 60px;
    }
}
body.is-fixed {
    position: fixed;
    left: 0;
    width: 100%;
}

main {
    display: block; /*IE*/
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
}

li {
    list-style-type: none;
}

a {
    outline: none;
    color: inherit;
    text-decoration: none;
}

*:focus {
    outline: none;
}

strong {
    font-weight: 500;
}

img {
    width: 100%;
    height: auto;
    vertical-align: middle;
}

svg {
    width: 100%;
    height: auto;
    vertical-align: middle;
}

button {
    background: transparent;
    border: 0;
    border-radius: 0;
}

/* iOS */
input[type="submit"],
input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    -moz-appearance: auto;
    appearance: auto;
    border: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
    display: none;
}

input[type="submit"]:focus,
input[type="button"]:focus {
    outline-offset: -2px;
}

input,
select,
textarea {
    -webkit-appearance: none;
    border-radius: 0 !important;
}

.cf {
    zoom: 1;
}

.cf:before,
.cf:after {
    content: "";
    display: table;
}

.cf:after {
    clear: both;
}

a {
    color: inherit;
}
a:link,
a:active,
a:visited {
    text-decoration: none;
}
@media (any-hover: hover) {
    a {
        -webkit-transition: opacity 0.2s;
        transition: opacity 0.2s;
    }
    a:hover {
        opacity: 0.8;
    }
}

@media screen and (min-width: 750px) {
    a[href^="tel:"] {
        display: inline-block;
        pointer-events: none;
    }
    a,
    a * {
        outline: 1px solid transparent;
    }
}
/* ---------------------------- js-preload ---------------------------- */
.js-preload * {
    -webkit-transition: none !important;
    transition: none !important;
}

/* ----------------------------header ---------------------------- */
.header_corp {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    height: 80px;
    background: transparent;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: background-color 0.8;
    transition: background-color 0.8;
}
@media screen and (max-width: 749px) {
    .header_corp {
        height: 60px;
    }
}
.header_corp *,
.header_corp *::before,
.header_corp *::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.header_corp.is-white {
    background: #fff;
}

.header_corp_logo {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 22px;
    width: 110px;
}
@media screen and (max-width: 749px) {
    .header_corp_logo {
        left: 12px;
        width: 70px;
    }
}

.header_corp_toggle_button {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 20px;
    width: 60px;
    height: 60px;
    cursor: pointer;
    background: #fff;
    -webkit-box-shadow: 3px 0 16px rgba(0, 19, 48, 0.2);
    box-shadow: 3px 0 16px rgba(0, 19, 48, 0.2);
    border-radius: 100vh;
    z-index: 11;
}
@media (any-hover: hover) {
    .header_corp_toggle_button {
        -webkit-transition: opacity 0.2s;
        transition: opacity 0.2s;
    }
    .header_corp_toggle_button:hover {
        opacity: 0.8;
    }
}
@media screen and (max-width: 749px) {
    .header_corp_toggle_button {
        width: 50px;
        height: 50px;
    }
}
.header_corp_toggle_button span {
    position: absolute;
    width: 38px;
    height: 3px;
    background: #333333;
    -webkit-transition: top 0.3s ease-out, -webkit-transform 0.3s ease-out;
    transition: top 0.3s ease-out, -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out, top 0.3s ease-out;
    transition: transform 0.3s ease-out, top 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
@media screen and (max-width: 749px) {
    .header_corp_toggle_button span {
        width: 25px;
        height: 2px;
    }
}
.header_corp_toggle_button span:nth-child(1) {
    top: 21px;
    left: 11px;
}
@media screen and (max-width: 749px) {
    .header_corp_toggle_button span:nth-child(1) {
        top: 20px;
        left: 12px;
    }
}
.header_corp_toggle_button span:nth-child(2) {
    top: 38px;
    left: 11px;
}
@media screen and (max-width: 749px) {
    .header_corp_toggle_button span:nth-child(2) {
        top: 28px;
        left: 12px;
    }
}
.header_corp_toggle_button.is-action {
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}
@media screen and (max-width: 749px) {
    .header_corp_toggle_button.is-action {
        right: 5px;
    }
}
.header_corp_toggle_button.is-action span {
    background: #fff;
}
.header_corp_toggle_button.is-action span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 30px;
}
@media screen and (max-width: 749px) {
    .header_corp_toggle_button.is-action span:nth-child(1) {
        top: 24px;
    }
}
.header_corp_toggle_button.is-action span:nth-child(2) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 30px;
}
@media screen and (max-width: 749px) {
    .header_corp_toggle_button.is-action span:nth-child(2) {
        top: 24px;
    }
}

.header_corp_menu {
    position: fixed;
    top: 0;
    left: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    height: 100%;
    min-height: 500px;
    background: #003366;
    visibility: hidden;
    -webkit-transition: visibility 0.1s linear 0s;
    transition: visibility 0.1s linear 0s;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 100px 30px;
    color: #fff;
}
@media screen and (max-width: 749px) {
    .header_corp_menu {
        padding: 109px 20px 40px;
        display: block;
    }
}
.header_corp_menu.is-action {
    visibility: visible;
}

.header_corp_menu_logo {
    position: absolute;
    top: 37px;
    left: 22px;
    width: 140px;
}
@media screen and (max-width: 749px) {
    .header_corp_menu_logo {
        top: 18px;
        left: 12px;
        width: 70px;
    }
}

.header_corp_menu__wrap {
    max-width: 1240px;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
}
@media screen and (max-width: 749px) {
    .header_corp_menu__wrap {
        gap: 30px;
    }
}
.header_corp_menu__wrap > * {
    width: calc((100% - 40px) / 3);
}
@media screen and (max-width: 749px) {
    .header_corp_menu__wrap > * {
        width: 100%;
    }
}

.header_corp_menu__list {
    border-top: 1px solid #a8afb9;
    padding-top: 39px;
}
@media screen and (max-width: 749px) {
    .header_corp_menu__list {
        border-top: none;
        padding-top: 0;
    }
}

.header_corp_menu__item a {
    display: block;
}
.header_corp_menu__item:nth-child(n + 2) {
    margin-top: 30px;
}

.header_corp_menu__english {
    font-size: 24px;
    font-family: "Avenir-Roman";
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.04em;
}
@media screen and (max-width: 749px) {
    .header_corp_menu__english {
        font-size: 20px;
    }
}

.header_corp_menu__japanese {
    font-size: 14px;
    margin-top: 13px;
}
@media screen and (max-width: 749px) {
    .header_corp_menu__japanese {
        font-size: 13px;
        margin-top: 6px;
    }
}

/* ----------------------------footer ---------------------------- */
.footer_corp {
    position: relative;
    padding: 100px 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: #f0f1f4;
    margin-top: 197px;
}
@media screen and (max-width: 749px) {
    .footer_corp {
        padding: 54px 0;
        margin-top: 94px;
    }
}
.footer_corp *,
.footer_corp *::before,
.footer_corp *::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.footer_corp .inner {
    display: grid;
    grid-template-areas: "area1 area4 area5" "area2 area4 area5" "area3 area4 area5";
    grid-template-columns: auto 34.7% 34.7%;
    grid-template-rows: auto auto auto;
    gap: 0 4%;
}
@media screen and (max-width: 1149px) {
    .footer_corp .inner {
        grid-template-areas: "area1 area1" "area4 area5" "area2 area2" "area3 area3";
        grid-template-columns: 48% 48%;
        grid-template-rows: auto -webkit-max-content -webkit-max-content auto;
        grid-template-rows: auto max-content max-content auto;
        gap: 0 4%;
    }
}
@media screen and (max-width: 749px) {
    .footer_corp .inner {
        display: block;
    }
}

.footer_corp_logo {
    grid-area: area1;
    width: 160px;
}
@media screen and (max-width: 1149px) {
    .footer_corp_logo {
        margin: 0 auto 80px;
    }
}
@media screen and (max-width: 749px) {
    .footer_corp_logo {
        width: 110px;
        margin: 0 auto 50px;
    }
}

.footer_corp__privacy {
    grid-area: area2;
    font-size: 14px;
    font-family: var(--text-family);
    font-weight: 600;
    line-height: 1;
    margin-top: 60px;
}
@media screen and (max-width: 1149px) {
    .footer_corp__privacy {
        margin-top: 80px;
        border-top: 1px solid #a8afb9;
        padding-top: 60px;
        letter-spacing: 0;
    }
}
@media screen and (max-width: 749px) {
    .footer_corp__privacy {
        margin-top: 40px;
        padding-top: 49px;
    }
}

.footer_corp__copy {
    grid-area: area3;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.06em;
    margin-top: 27px;
    font-family: "Avenir-Roman";
    font-weight: 900;
}
@media screen and (max-width: 1149px) {
    .footer_corp__copy {
        margin-top: 90px;
        text-align: center;
    }
}
@media screen and (max-width: 749px) {
    .footer_corp__copy {
        margin-top: 60px;
        font-size: 11px;
    }
}

.footer_corp_schick {
    grid-area: area4;
}

.footer_corp_bulldog {
    grid-area: area5;
}
@media screen and (max-width: 749px) {
    .footer_corp_bulldog {
        margin-top: 50px;
    }
}

.footer_corp_button a {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: min(2vw, 16px);
    font-family: var(--text-family);
    font-weight: 600;
    text-align: center;
    border-bottom: 1px solid #a8afb9;
    line-height: 1;
    letter-spacing: 0.05em;
}
@media screen and (max-width: 749px) {
    .footer_corp_button a {
        font-size: 13px;
    }
}
.footer_corp_button a::after {
    content: "";
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    right: 0;
    width: 16px;
    height: 16px;
    background: url(https://cdn.shopify.com/s/files/1/0480/1488/5017/files/company-common_icon_arrow01.svg?v=1711415619) no-repeat center center/contain;
}
@media screen and (max-width: 749px) {
    .footer_corp_button a::after {
        width: 12px;
        height: 12px;
    }
}
.footer_corp_button.m-schick a {
    border-top: 2px solid #003366;
    padding: 29px 25px 28px 94px;
}
@media screen and (max-width: 749px) {
    .footer_corp_button.m-schick a {
        padding: 30px 30px 30px 70px;
    }
}
.footer_corp_button.m-schick a::before {
    content: "";
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    left: 0;
    width: 70px;
    height: 25px;
    background: url(https://cdn.shopify.com/s/files/1/0480/1488/5017/files/company-common_logo.svg?v=1711415619) no-repeat center center/contain;
}
@media screen and (max-width: 749px) {
    .footer_corp_button.m-schick a::before {
        width: 60px;
        height: 20px;
    }
}
.footer_corp_button.m-bulldog a {
    border-top: 2px solid #076436;
    padding: 29px 25px 28px 64px;
}
@media screen and (max-width: 749px) {
    .footer_corp_button.m-bulldog a {
        padding: 30px 30px 30px 49px;
    }
}
.footer_corp_button.m-bulldog a::before {
    content: "";
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    left: 0;
    width: 44px;
    height: 41px;
    background: url(https://cdn.shopify.com/s/files/1/0480/1488/5017/files/company-index_logo_bulldog.png?v=1711415600) no-repeat center center/contain;
}
@media screen and (max-width: 749px) {
    .footer_corp_button.m-bulldog a::before {
        width: 36px;
        height: 33px;
    }
}

.footer_corp_sns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-right: 21px;
    margin-top: 23px;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
}
@media screen and (max-width: 1149px) {
    .footer_corp_sns {
        padding-right: 0;
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        gap: 24px;
    }
}
@media screen and (max-width: 749px) {
    .footer_corp_sns {
        margin-top: 40px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 34px;
    }
}

.footer_corp_sns__title {
    font-size: 16px;
    line-height: 1;
    font-family: "Avenir-Roman";
    font-weight: 900;
    margin-bottom: 20px;
}
@media screen and (max-width: 749px) {
    .footer_corp_sns__title {
        margin-bottom: 26px;
    }
}

.footer_corp_sns__item.m-mt {
    padding-top: 36px;
}
@media screen and (max-width: 749px) {
    .footer_corp_sns__item.m-mt {
        padding-top: 0;
    }
}

.footer_corp_sns__flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 23px;
    padding-left: 2px;
}
@media screen and (max-width: 1149px) {
    .footer_corp_sns__flex {
        gap: 15px;
    }
}
@media screen and (max-width: 749px) {
    .footer_corp_sns__flex {
        gap: 22px;
    }
}
.footer_corp_sns__flex li.facebook {
    width: 28px;
}
.footer_corp_sns__flex li.x {
    width: 24px;
}
.footer_corp_sns__flex li.instagram {
    width: 28px;
}
.footer_corp_sns__flex li.youtube {
    width: 32px;
    padding: 2px 0;
}
.footer_corp_sns__flex li a {
    display: block;
}

.footer_corp__pagetop {
    position: fixed;
    bottom: 70px;
    right: 50px;
    z-index: 98;
    width: 70px;
    height: 70px;
    -webkit-transition: top 0.3s, bottom 0.3s;
    transition: top 0.3s, bottom 0.3s;
}
@media screen and (max-width: 749px) {
    .footer_corp__pagetop {
        right: 20px;
        width: 45px;
        height: 45px;
    }
}
.footer_corp__pagetop.is-absolute {
    position: absolute;
    bottom: auto;
    top: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.footer_corp__pagetop a {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 100vh;
    -webkit-box-shadow: 3px 0 16px rgba(0, 19, 48, 0.2);
    box-shadow: 3px 0 16px rgba(0, 19, 48, 0.2);
}
@media screen and (max-width: 749px) {
    .footer_corp__pagetop a {
        -webkit-box-shadow: 2px 0 8px rgba(0, 19, 48, 0.2);
        box-shadow: 2px 0 8px rgba(0, 19, 48, 0.2);
    }
}

/* ----------------------------common ---------------------------- */
.main_contents {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    line-break: strict;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.main_contents *,
.main_contents *::before,
.main_contents *::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.nobreak {
    display: inline-block;
}

@media (any-hover: hover) {
    .hover {
        -webkit-transition: opacity 0.2s;
        transition: opacity 0.2s;
    }
    .hover:hover {
        opacity: 0.8;
    }
}

.inner {
    max-width: 1320px;
    width: 100%;
    padding: 0 40px;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.background_gray {
    background: #f0f1f4;
}

.text_num {
    color: #003366;
    font-family: "Avenir-Roman";
    font-weight: 900;
    padding-right: 0.6em;
    font-size: 140%;
}

.underline_yellow {
    padding-bottom: 3px;
    border-bottom: 2px solid #b7a843;
    font-family: var(--text-family);
    font-weight: 600;
}

@media screen and (max-width: 749px) {
    .onlypc {
        display: none !important;
    }
    .inner {
        padding: 0 20px;
    }
}
@media screen and (min-width: 750px) {
    .onlysp {
        display: none !important;
    }
}
@media screen and (max-width: 899px) {
    .onlymintabmini {
        display: none;
    }
}
@media screen and (min-width: 900px) {
    .onlytabmini {
        display: none;
    }
}
@media screen and (max-width: 1319px) {
    .onlyminpc {
        display: none;
    }
}
/* ---------------------------- title ---------------------------- */
.heading_primary {
    margin: 93px 0;
}
@media screen and (max-width: 749px) {
    .heading_primary {
        margin: 50px 0;
    }
}
.heading_primary.white {
    color: #fff;
}
.heading_primary.white .heading_primary__subtitle::before {
    background: #fff;
}

.heading_primary__title {
    font-size: 80px;
    font-weight: 900;
    letter-spacing: 0.02em;
    line-height: 1;
    text-transform: uppercase;
    font-family: "Avenir-Roman";
}
@media screen and (max-width: 1099px) {
    .heading_primary__title {
        font-size: 65px;
    }
}
@media screen and (max-width: 749px) {
    .heading_primary__title {
        font-size: 50px;
    }
}

.heading_primary__subtitle {
    position: relative;
    font-size: 24px;
    letter-spacing: 0.06em;
    padding-left: 30px;
    line-height: 1.2;
    margin-top: 30px;
}
@media screen and (max-width: 1099px) {
    .heading_primary__subtitle {
        font-size: 20px;
        padding-left: 20px;
    }
}
@media screen and (max-width: 749px) {
    .heading_primary__subtitle {
        font-size: 16px;
        padding-left: 16px;
        margin-top: 15px;
    }
}
.heading_primary__subtitle::before {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    width: 6px;
    height: 100%;
    background: #333333;
}
@media screen and (max-width: 749px) {
    .heading_primary__subtitle::before {
        width: 4px;
    }
}

.heading_primary_small__title {
    font-size: 54px;
    font-weight: 900;
    letter-spacing: 0.02em;
    line-height: 1;
    text-transform: uppercase;
    font-family: "Avenir-Roman";
}
@media screen and (max-width: 1099px) {
    .heading_primary_small__title {
        font-size: 44px;
    }
}
@media screen and (max-width: 749px) {
    .heading_primary_small__title {
        font-size: 34px;
    }
}

.heading_primary_small__subtitle {
    position: relative;
    font-size: 16px;
    letter-spacing: 0.06em;
    padding-left: 20px;
    line-height: 1.2;
    margin-top: 23px;
}
@media screen and (max-width: 1099px) {
    .heading_primary_small__subtitle {
        font-size: 18px;
        padding-left: 15px;
    }
}
@media screen and (max-width: 749px) {
    .heading_primary_small__subtitle {
        font-size: 13px;
        padding-left: 16px;
        margin-top: 15px;
    }
}
.heading_primary_small__subtitle::before {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    width: 4px;
    height: 100%;
    background: #333333;
}
@media screen and (max-width: 749px) {
    .heading_primary_small__subtitle::before {
        width: 4px;
    }
}

.heading_secondary {
    margin: 33px 0;
}
@media screen and (max-width: 749px) {
    .heading_secondary {
        margin: 20px 0;
    }
}

.heading_secondary__title {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 0.02em;
    line-height: 1;
    text-transform: uppercase;
    font-family: "Avenir-Roman";
}
@media screen and (max-width: 749px) {
    .heading_secondary__title {
        font-size: 20px;
    }
}

.heading_secondary__subtitle {
    font-size: 16px;
    letter-spacing: 0.06em;
    margin-top: 11px;
}
@media screen and (max-width: 749px) {
    .heading_secondary__subtitle {
        font-size: 13px;
        margin-top: 5px;
    }
}

.title_black28 {
    font-size: 28px;
    letter-spacing: 0.06em;
    font-family: var(--text-family);
    font-weight: 600;
}
@media screen and (max-width: 899px) {
    .title_black28 {
        font-size: 24px;
    }
}
@media screen and (max-width: 749px) {
    .title_black28 {
        font-size: 20px;
    }
}

.heading_background__title {
    font-size: 64px;
    font-family: "Avenir-Roman";
    line-height: 1;
    font-weight: bold;
}
.safari .heading_background__title {
    letter-spacing: -0.02em;
}

.ipad .heading_background__title {
    font-size: 64px;
}

@media screen and (max-width: 749px) {
    .heading_background__title {
        font-size: 46px;
    }
    .safari .heading_background__title {
        font-size: 45px;
    }
}

.heading_background__subtitle {
    font-size: 16px;
    line-height: 1;
    margin-top: 14px;
    font-family: var(--text-family);
    font-weight: 600;
}
@media screen and (max-width: 749px) {
    .heading_background__subtitle {
        font-size: 13px;
        padding: 5px;
        margin-top: 10px;
    }
}

/* ---------------------------- button ---------------------------- */
.button_blue01 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 19px;
    text-align: center;
    border-radius: 100vh;
    background: #003366;
    color: #fff;
    font-size: 16px;
    font-family: var(--text-family);
    font-weight: 600;
    letter-spacing: 0.06em;
}
@media screen and (max-width: 749px) {
    .button_blue01 {
        padding: 8px;
        font-size: 10px;
    }
}

.button_blue_arrow01 {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 19px 50px;
    text-align: center;
    border-radius: 100vh;
    background: #003366;
    color: #fff;
    font-size: 16px;
    font-family: var(--text-family);
    font-weight: 600;
    letter-spacing: 0.04em;
}
@media screen and (max-width: 749px) {
    .button_blue_arrow01 {
        padding: 8px 35px;
        font-size: 12px;
    }
}
.button_blue_arrow01::before {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 33px;
    width: 11px;
    height: 17px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9.9799805 16.159668"><path fill="%23ffffff" d="M1.9000244,0L0,1.8999023l6.1800537,6.1799316L0,14.2597656l1.9000244,1.8999023,8.0799561-8.0800781L1.9000244,0Z" /></svg>') no-repeat center center/contain;
}
@media screen and (max-width: 749px) {
    .button_blue_arrow01::before {
        right: 17px;
        width: 8px;
        height: 13px;
    }
}

.button_transparent_arrow01 {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 19px 50px;
    text-align: center;
    border-radius: 100vh;
    border: 1px solid #a8afb9;
    font-size: 16px;
    font-family: var(--text-family);
    font-weight: 600;
    letter-spacing: 0.06em;
}
@media screen and (max-width: 749px) {
    .button_transparent_arrow01 {
        padding: 10px 40px;
        font-size: 13px;
    }
}
.button_transparent_arrow01::before {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 33px;
    width: 11px;
    height: 17px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9.9799805 16.159668"><path fill="%23333333" d="M1.9000244,0L0,1.8999023l6.1800537,6.1799316L0,14.2597656l1.9000244,1.8999023,8.0799561-8.0800781L1.9000244,0Z" /></svg>') no-repeat center center/contain;
}
@media screen and (max-width: 749px) {
    .button_transparent_arrow01::before {
        right: 23px;
        width: 8px;
        height: 13px;
    }
}

.button_howtouse {
    height: 110px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid #fff;
    border-radius: 10px;
    color: #fff;
    font-size: 20px;
    font-family: var(--text-family);
    font-weight: 600;
    letter-spacing: 0.06em;
    background: #003366;
}
@media screen and (max-width: 749px) {
    .button_howtouse {
        height: 80px;
        border-radius: 5px;
        font-size: 16px;
    }
}

.button_howtouse__inner {
    position: relative;
    padding-left: 53px;
}
@media screen and (max-width: 749px) {
    .button_howtouse__inner {
        padding-left: 35px;
    }
}
.button_howtouse__inner::before {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    width: 30px;
    height: 45px;
    background: url("https://cdn.shopify.com/s/files/1/0480/1488/5017/files/company-common_icon_razor.svg?v=1711415619") no-repeat center center/contain;
}
@media screen and (max-width: 749px) {
    .button_howtouse__inner::before {
        width: 21px;
        height: 35px;
    }
}

.button_white_arrow01 {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 19px 50px;
    text-align: center;
    border-radius: 100vh;
    border: 1px solid #a8afb9;
    font-size: 16px;
    font-family: var(--text-family);
    font-weight: 600;
    letter-spacing: 0.06em;
}
@media screen and (max-width: 749px) {
    .button_white_arrow01 {
        padding: 10px 40px;
        font-size: 13px;
    }
}
.button_white_arrow01::before {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 33px;
    width: 11px;
    height: 17px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9.9799805 16.159668"><path fill="%23ffffff" d="M1.9000244,0L0,1.8999023l6.1800537,6.1799316L0,14.2597656l1.9000244,1.8999023,8.0799561-8.0800781L1.9000244,0Z" /></svg>') no-repeat center center/contain;
}
@media screen and (max-width: 749px) {
    .button_white_arrow01::before {
        right: 23px;
        width: 8px;
        height: 13px;
    }
}

.banner_section {
    padding: 100px 0;
}
@media screen and (max-width: 749px) {
    .banner_section {
        padding: 50px 0;
    }
}
.banner_section .inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
}
@media screen and (max-width: 749px) {
    .banner_section .inner {
        display: block;
        gap: unset;
    }
}

.banner_section__item {
    width: calc(50% - 10px);
}
@media screen and (max-width: 749px) {
    .banner_section__item {
        width: 100%;
    }
    .banner_section__item:nth-child(n + 2) {
        margin-top: 10px;
    }
}

.button_safety,
.button_mailmagazine {
    height: 110px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 10px;
    color: #fff;
    font-size: 20px;
    font-family: var(--text-family);
    font-weight: 600;
    letter-spacing: 0.06em;
    background: #003366;
    border: 1px solid #fff;
}
@media screen and (max-width: 749px) {
    .button_safety,
    .button_mailmagazine {
        height: 80px;
        border-radius: 5px;
        font-size: 16px;
    }
}

.button_safety__inner {
    position: relative;
    padding-left: 53px;
}
@media screen and (max-width: 749px) {
    .button_safety__inner {
        padding-left: 39px;
    }
}
.button_safety__inner::before {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    width: 33px;
    height: 44px;
    background: url("https://cdn.shopify.com/s/files/1/0480/1488/5017/files/company-common_icon_safety.svg?v=1711415618") no-repeat center center/contain;
}
@media screen and (max-width: 749px) {
    .button_safety__inner::before {
        width: 26px;
        height: 35px;
    }
}

.button_mailmagazine__inner {
    position: relative;
    padding-left: 53px;
}
@media screen and (max-width: 749px) {
    .button_mailmagazine__inner {
        padding-left: 39px;
    }
}
.button_mailmagazine__inner::before {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    width: 33px;
    height: 43px;
    background: url("https://cdn.shopify.com/s/files/1/0480/1488/5017/files/company-common_icon_mailmagazine.svg?v=1711415619") no-repeat center center/contain;
}
@media screen and (max-width: 749px) {
    .button_mailmagazine__inner::before {
        width: 27px;
        height: 39px;
    }
}

.button_arrow_circle01 a {
    position: relative;
    font-size: 16px;
    line-height: 1;
    width: 188px;
    height: 70px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: var(--text-family);
    font-weight: 600;
}
@media screen and (max-width: 749px) {
    .button_arrow_circle01 a {
        font-size: 13px;
        width: 130px;
        height: 45px;
    }
}
.button_arrow_circle01 a::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 70px;
    height: 70px;
    border-radius: 100vh;
    border: 1px solid #a8afb9;
}
@media screen and (max-width: 749px) {
    .button_arrow_circle01 a::before {
        width: 45px;
        height: 45px;
    }
}
.button_arrow_circle01 a::after {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 29px;
    width: 12px;
    height: 16px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9.9799805 16.159668"><path fill="%23333333" d="M1.9000244,0L0,1.8999023l6.1800537,6.1799316L0,14.2597656l1.9000244,1.8999023,8.0799561-8.0800781L1.9000244,0Z" /></svg>') no-repeat center center/contain;
}
@media screen and (max-width: 749px) {
    .button_arrow_circle01 a::after {
        right: 19px;
        width: 7px;
        height: 12px;
    }
}

/* ---------------------------- menu ---------------------------- */
.menu_card {
    border-top: 1px solid #b2b9c1;
    padding-top: 27px;
}
@media screen and (max-width: 749px) {
    .menu_card {
        padding-top: 40px;
    }
}

.menu_card__title {
    font-family: "Avenir-Roman";
    font-weight: 900;
    letter-spacing: 0.04em;
    font-size: 18px;
    margin-bottom: 23px;
}
@media screen and (max-width: 749px) {
    .menu_card__title {
        font-size: 16px;
    }
}

.menu_card__link {
    font-size: 14px;
    font-family: var(--text-family);
    font-weight: 600;
    letter-spacing: 0.06em;
}
@media screen and (min-width: 750px) and (max-width: 1299px) {
    .menu_card__link {
        font-size: clamp(12px, 1.0769230769vw, 14px);
    }
}
@media screen and (max-width: 749px) {
    .menu_card__link {
        font-size: 13px;
    }
}

.menu_card__link + .menu_card__link {
    margin-top: 27px;
}

.menu_card__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 16px 18px;
    margin: 18px 0 28px;
}
@media screen and (min-width: 750px) and (max-width: 1299px) {
    .menu_card__list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
@media screen and (max-width: 749px) {
    .menu_card__list {
        margin: 17px 0 25px;
        gap: 16px 12px;
    }
}
.menu_card__list li {
    position: relative;
    padding-left: 20px;
    width: calc(42% - 9px);
}
@media screen and (min-width: 750px) and (max-width: 1299px) {
    .menu_card__list li {
        width: 100%;
    }
}
@media screen and (max-width: 749px) {
    .menu_card__list li {
        padding-left: 18px;
        width: calc(50% - 6px);
    }
}
.menu_card__list li::before {
    content: "";
    position: absolute;
    top: 13px;
    left: 0;
    width: 12px;
    height: 1px;
    border-top: 1px solid #333333;
}
@media screen and (max-width: 749px) {
    .menu_card__list li::before {
        top: 11px;
        width: 10px;
    }
}
.menu_card__list li a {
    font-size: 14px;
    letter-spacing: 0.06em;
}
@media screen and (max-width: 749px) {
    .menu_card__list li a {
        font-size: 13px;
    }
}

.menu_card__sns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 28px;
    margin-top: 48px;
}
@media screen and (max-width: 749px) {
    .menu_card__sns {
        gap: 23px;
        margin-top: 40px;
    }
}
.menu_card__sns li.facebook {
    width: 28px;
}
.menu_card__sns li.x {
    width: 24px;
}
.menu_card__sns li.instagram {
    width: 28px;
}
.menu_card__sns li.youtube {
    width: 32px;
}
.menu_card__sns li a {
    display: block;
}

/* ---------------------------- product_list ---------------------------- */
.product_list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
}
@media screen and (max-width: 899px) {
    .product_list {
        display: block;
    }
}

.product_list_item {
    width: calc((100% - 40px) / 3);
    background: #fff;
    border-radius: 10px;
}
@media screen and (max-width: 899px) {
    .product_list_item {
        width: 100%;
    }
    .product_list_item:nth-child(n + 2) {
        margin-top: 20px;
    }
}
@media screen and (max-width: 749px) {
    .product_list_item {
        border-radius: 5px;
    }
    .product_list_item:nth-child(n + 2) {
        margin-top: 10px;
    }
}
.product_list_item a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 40px 30px;
}
@media screen and (max-width: 899px) {
    .product_list_item a {
        position: relative;
        -webkit-box-orient: unset;
        -webkit-box-direction: unset;
        -webkit-flex-direction: unset;
        -ms-flex-direction: unset;
        flex-direction: unset;
        padding: 24px 38px;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}
@media screen and (max-width: 749px) {
    .product_list_item a {
        padding: 16px 18px;
    }
}
.product_list_item a .button_blue_arrow01 {
    margin-top: auto;
    width: 100%;
}
@media screen and (max-width: 899px) {
    .product_list_item a .button_blue_arrow01 {
        position: absolute;
        bottom: 24px;
        right: 38px;
        margin: 0;
        width: 240px;
    }
}
@media screen and (max-width: 749px) {
    .product_list_item a .button_blue_arrow01 {
        right: 18px;
        width: 120px;
    }
}

.product_list_item__image {
    position: relative;
    width: 100%;
    aspect-ratio: 340/272;
}
@media screen and (max-width: 899px) {
    .product_list_item__image {
        width: 35%;
    }
}
@media screen and (max-width: 749px) {
    .product_list_item__image {
        width: 90px;
        aspect-ratio: 168/180;
    }
}
.product_list_item__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.product_list_item__title {
    font-size: 16px;
    letter-spacing: 0.06em;
    line-height: 1.75;
    margin: 34px 0;
    word-break: break-word;
}
@media screen and (max-width: 899px) {
    .product_list_item__title {
        width: 65%;
        padding: 0 0 90px 20px;
        margin: 0;
    }
}
@media screen and (max-width: 749px) {
    .product_list_item__title {
        width: calc(100% - 90px);
        padding: 0 0 60px 10px;
        font-size: 13px;
        line-height: 1.7692307692;
    }
}

.product_list.ranking .product_list_item {
    position: relative;
}
.product_list.ranking .product_list_item::before {
    content: var(--ranking_number);
    position: absolute;
    top: -10px;
    left: 10px;
    z-index: 1;
    width: 44px;
    height: 63px;
    -webkit-clip-path: polygon(100% 0%, 100% 100%, 50% 81%, 0 100%, 0 0);
    clip-path: polygon(100% 0%, 100% 100%, 50% 81%, 0 100%, 0 0);
    background: var(--ranking_color);
    color: #fff;
    padding-top: 17px;
    text-align: center;
    font-size: 24px;
    font-family: "Avenir-Roman";
    font-weight: 900;
    line-height: 1;
}
@media screen and (max-width: 899px) {
    .product_list.ranking .product_list_item::before {
        left: -10px;
    }
}
@media screen and (max-width: 749px) {
    .product_list.ranking .product_list_item::before {
        top: -5px;
        left: -5px;
        width: 24px;
        height: 35px;
        padding-top: 11px;
        font-size: 13px;
    }
}
.product_list.ranking .product_list_item:nth-child(1) {
    --ranking_number: "01";
    --ranking_color: #b7a843;
}
.product_list.ranking .product_list_item:nth-child(2) {
    --ranking_number: "02";
    --ranking_color: #9299a0;
}
.product_list.ranking .product_list_item:nth-child(3) {
    --ranking_number: "03";
    --ranking_color: #b28762;
}

/* ---------------------------- breadcrumb ---------------------------- */
.breadcrumb {
    padding: 10px 40px;
}
@media screen and (max-width: 749px) {
    .breadcrumb {
        padding: 9px 0 9px 15px;
    }
}

.breadcrumb__wrap {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    padding-bottom: 5px;
}

.breadcrumb__item {
    font-size: 12px;
    color: #999999;
    display: inline;
    line-height: 1.3;
    padding: 0;
}
@media screen and (max-width: 749px) {
    .breadcrumb__item {
        font-size: 10px;
    }
}
.breadcrumb__item:not(:last-child) {
    margin-right: 13px;
}
@media screen and (max-width: 749px) {
    .breadcrumb__item:not(:last-child) {
        margin-right: 6px;
    }
}
.breadcrumb__item:not(:last-child)::after {
    content: "";
    display: inline-block;
    margin-left: 7px;
    width: 6px;
    height: 6px;
    border-top: 1px solid #999999;
    border-right: 1px solid #999999;
    -webkit-transform: rotate(45deg) translateY(-1px);
    transform: rotate(45deg) translateY(-1px);
}
@media screen and (max-width: 749px) {
    .breadcrumb__item:not(:last-child)::after {
        margin-left: 5px;
    }
}
.breadcrumb__item a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ---------------------------- magazine_section_list ---------------------------- */
.magazine_section_list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
}
@media screen and (max-width: 899px) {
    .magazine_section_list {
        display: block;
        gap: unset;
    }
}

.magazine_section_list_item {
    width: calc((100% - 40px) / 3);
}
@media screen and (max-width: 899px) {
    .magazine_section_list_item {
        width: 100%;
    }
    .magazine_section_list_item:nth-child(n + 2) {
        margin-top: 20px;
    }
}
@media screen and (max-width: 749px) {
    .magazine_section_list_item {
        width: 100%;
    }
    .magazine_section_list_item:nth-child(n + 2) {
        margin-top: 10px;
    }
}
.magazine_section_list_item a {
    display: block;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
}
@media screen and (max-width: 749px) {
    .magazine_section_list_item a {
        border-radius: 5px;
    }
}

.magazine_section_list_item__image {
    width: 100%;
    aspect-ratio: 400/226;
}
.magazine_section_list_item__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.magazine_section_list_item__textarea {
    padding: 32px 28px;
}
@media screen and (max-width: 749px) {
    .magazine_section_list_item__textarea {
        padding: 12px 20px;
    }
}

.magazine_section_list_item__title {
    font-size: 16px;
    height: 56px;
    line-height: 1.75;
    letter-spacing: 0.06em;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
}
@media screen and (max-width: 749px) {
    .magazine_section_list_item__title {
        font-size: 16px;
        height: auto;
        line-height: 1.75;
    }
}

.magazine_section_list_item__tag {
    font-size: 12px;
    color: #7a96b5;
    letter-spacing: 0.06em;
    margin-top: 11px;
    font-family: var(--text-family);
    font-weight: 600;
}
@media screen and (max-width: 749px) {
    .magazine_section_list_item__tag {
        font-size: 11px;
        margin-top: 2px;
    }
}

/* ---------------------------- corp_sub_mv ---------------------------- */
.corp_sub_mv {
    padding-top: 54px;
}
@media screen and (max-width: 749px) {
    .corp_sub_mv {
        padding-top: 42px;
    }
}
.corp_sub_mv__title {
    font-family: "Avenir-Roman";
    font-weight: 600;
    font-size: 80px;
    line-height: 1;
    letter-spacing: 0;
}
@media screen and (max-width: 749px) {
    .corp_sub_mv__title {
        font-size: 54px;
    }
}
.corp_sub_mv__text {
    font-family: var(--text-family);
    font-weight: 600;
    font-size: 20px;
    line-height: 2.1;
    margin-top: 5px;
    letter-spacing: 0.06em;
}
@media screen and (max-width: 749px) {
    .corp_sub_mv__text {
        font-size: 16px;
        margin-top: 2px;
    }
}
.corp_sub_mv__image {
    margin-top: 88px;
}
@media screen and (max-width: 749px) {
    .corp_sub_mv__image {
        margin-top: 40px;
    }
}
.corp_sub_mv__info {
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0.06em;
    margin-top: 90px;
}
@media screen and (max-width: 749px) {
    .corp_sub_mv__info {
        font-size: 13px;
        line-height: 1.7692307692;
        margin-top: 39px;
    }
}
.corp_sub_mv__info sup {
    font-size: 10px;
}
@media screen and (max-width: 749px) {
    .corp_sub_mv__info sup {
        vertical-align: text-bottom;
    }
}

/* ---------------------------- corp_sub_anchor ---------------------------- */
.corp_sub_anchor {
    margin-top: 100px;
}
@media screen and (max-width: 749px) {
    .corp_sub_anchor {
        margin-top: 46px;
    }
}
.corp_sub_anchor__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 16px;
}
@media screen and (max-width: 749px) {
    .corp_sub_anchor__list {
        gap: 10px;
    }
}
.corp_sub_anchor__item a {
    font-family: "Avenir-Roman";
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0;
    display: block;
    border: 1px solid #a8afb9;
    padding: 25px 45px;
    border-radius: 40px;
}
@media screen and (max-width: 749px) {
    .corp_sub_anchor__item a {
        font-size: 13px;
        letter-spacing: 0.02em;
        padding: 15px 22px;
    }
}

/* ----------------------------corporate ---------------------------- */
body {
    padding-top: 0;
}

body:has(.corp_mv) .main_contents {
    padding-top: 0;
}

.corp_mv {
    position: relative;
    overflow: hidden;
}
.corp_mv_slide {
    display: block;
    width: 100%;
    aspect-ratio: 1240/559;
}
@media screen and (max-width: 749px) {
    .corp_mv_slide {
        margin: 0;
        aspect-ratio: 375/515;
    }
}
.corp_mv__item {
    width: 100%;
    margin-left: auto;
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    display: block;
    overflow: hidden;
    --duration: 3s;
    --delay: 4s;
  }
  @media screen and (min-width: 750px) {
      .corp_mv__item {
          width: 84.3%;
          border-radius: 0 0 0 60px;
          --duration: 5s;
    }
}
.corp_mv__item::after {
    content: "";
    display: block;
    position: absolute;
    --bird-size: 120px;
    top: 100%;
    left: calc(0% - var(--bird-size));
    will-change: top, left;
    width: var(--bird-size);
    height: var(--bird-size);
    background: url(https://cdn.shopify.com/s/files/1/0679/3759/9739/files/company-index_ill_mv01.svg?v=1714796807) no-repeat center center/contain;
    z-index: 100;
    opacity: 0;
}
@media screen and (max-width: 749px) {
    .corp_mv__item::after {
        top: calc(100% - 80px);
        width: 80px;
        height: 80px;
    }
}
.corp_mv__turn-img {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 10;
    transform-origin: left bottom;
	opacity: 0;
    /* transform-origin: left 100vmax; */
    box-shadow: -4px 2px 40px 10px rgba(0, 19, 48, 0.2);
}
/*============================
// animation start
//============================*/
.corp_mv__item.is-visible {
    z-index: 10;
}
.corp_mv__item.is-visible::after {
    z-index: 11;
}
.corp_mv__item.is-turn {
    animation: clipPath var(--duration) linear 0s 1 normal forwards;
    z-index: 11;
}
@keyframes clipPath {
    0% {
        clip-path: polygon(-100% 0%, 100% 0%, 100% 200%);
    }
    100% {
        clip-path: polygon(0% -100%, 100% 0%, 200% 100%);
    }
}
/* @keyframes clipPath {
    0% {
        clip-path: polygon(-100vmax 0vmax, 100vmax 0vmax, 100vmax 200vmax);
    }
    100% {
        clip-path: polygon(0vmax -100vmax, 100vmax 0vmax, 200vmax 100vmax);
    }
} */
.corp_mv__item.is-turn::after {
    animation: birdTranslate var(--duration) linear 0s 1 normal forwards, birdBounce var(--duration) linear 0s 1 normal forwards;
    z-index: 12;
}
@keyframes birdTranslate {
    0% {
        top: 100%;
        left: calc(0% - var(--bird-size));
        opacity: 1;
    }
    100% {
        top: calc(-100% - var(--bird-size));
        left: calc(200% + var(--bird-size) / 2);
        opacity: 1;
    }
}
/* @keyframes birdTranslate {
    0% {
        top: calc(100vmax - var(--bird-size) / 2);
        left: calc(-55vmax - var(--bird-size) / 2);
        opacity: 1;
    }
    100% {
        top: calc(-100vmax - var(--bird-size) / 2);
        left: calc(145vmax + var(--bird-size) / 2);
        opacity: 1;
    }
} */
/* @keyframes birdBounce {
    0% {
        transform: translateY(0);
    }
    12% {
        transform: translateY(-40px);
    }
    25% {
        transform: translateY(40px);
    }
    50% {
        transform: translateY(-40px);
    }
    100% {
        transform: translateY(0);
    }
} */
.corp_mv__item.is-turn .corp_mv__turn-img {
	opacity: 1;
    animation: turnOver var(--duration) linear 0s 1 normal forwards;
}
@keyframes turnOver {
    0% {
        transform: translate(0%, 0%) scale(1, 1) rotate(180deg);
    }
    100% {
        transform: translate(200%, -200%) scale(1, 1) rotate(180deg);
    }
}
/* @keyframes turnOver {
    0% {
        transform: translate(0vmax, 0vmax) scale(-1, 1) rotate(90deg);
    }
    100% {
        transform: translate(200vmax, -200vmax) scale(-1, 1) rotate(90deg);
    }
} */
/*============================
// animation end
//============================*/
.corp_mv__turn-img::before {
	content: "";
	background-color: #fff;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	z-index: 1;
}
.corp_mv__image {
    width: 100%;
    height: 100%;
    display: block;
}
.corp_mv__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.corp_mv__textarea {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 10px;
    padding: 0 37px;
    z-index: 20;
}
@media screen and (max-width: 749px) {
    .corp_mv__textarea {
        top: auto;
        left: auto;
        width: 100%;
        -webkit-transform: none;
        transform: none;
        margin-top: -54.333333vw;
        padding: 0 21px;
    }
}

.corp_mv__title {
    width: 49.8958333333vw;
    padding-top: 6.09375vw;
}
.corp_mv__title picture {
    display: block;
}
@media screen and (max-width: 1099px) {
    .corp_mv__title {
        width: 35.595105673vw;
        padding-top: 7.786429366vw;
    }
}
@media screen and (max-width: 749px) {
    .corp_mv__title {
        width: 100%;
        padding-top: 0;
    }
}

.corp_bnrarea {
    max-width: 780px;
    aspect-ratio: 780/190;
    width: calc(100% - 80px);
    border-radius: 10px;
    overflow: hidden;
    margin: 100px auto 0;
}
@media screen and (max-width: 749px) {
    .corp_bnrarea {
        width: 89.3333333333vw;
        height: 26.6666666667vw;
        aspect-ratio: unset;
        border-radius: 5px;
        margin: 50px auto 0;
    }
}
.corp_bnrarea a {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    background: #003366;
    color: #fff;
}
.corp_bnrarea a::before {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: min(4.6511627907vw, 40px);
    width: min(8.1395348837vw, 70px);
    height: min(8.1395348837vw, 70px);
    border: 1px solid #fff;
    border-radius: 100vh;
}
@media screen and (max-width: 749px) {
    .corp_bnrarea a::before {
        content: none;
    }
}
.corp_bnrarea a::after {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: min(8.023255814vw, 69px);
    width: min(1.1627906977vw, 10px);
    height: min(2.0930232558vw, 18px);
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9.9799805 16.159668"><path fill="%23ffffff" d="M1.9000244,0L0,1.8999023l6.1800537,6.1799316L0,14.2597656l1.9000244,1.8999023,8.0799561-8.0800781L1.9000244,0Z" /></svg>') no-repeat center center/contain;
}
@media screen and (max-width: 749px) {
    .corp_bnrarea a::after {
        content: none;
    }
}

.corp_bnrarea_iamge {
    width: 60%;
    height: 100%;
}
@media screen and (max-width: 749px) {
    .corp_bnrarea_iamge {
        width: 67%;
    }
}
.corp_bnrarea_iamge img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.corp_bnrarea__textarea {
    width: 40%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 0 3px 5%;
}
@media screen and (max-width: 749px) {
    .corp_bnrarea__textarea {
        width: 33%;
        padding-left: 5.5%;
    }
}

.corp_bnrarea__title {
    font-size: min(4.8837209302vw, 42px);
    line-height: 1;
    font-family: "Avenir-Roman";
    font-weight: bold;
}
@media screen and (max-width: 749px) {
    .corp_bnrarea__title {
        font-size: 5.8666666667vw;
    }
}

.corp_bnrarea__text {
    font-size: min(1.8604651163vw, 16px);
    line-height: 1;
    padding: min(1.0465116279vw, 9px) 0 0 min(0.5813953488vw, 5px);
}
@media screen and (max-width: 749px) {
    .corp_bnrarea__text {
        font-size: 3.4666666667vw;
        padding: 1.3333333333vw 0 0;
    }
}

.corp_no1 {
    margin-top: 100px;
}
@media screen and (max-width: 749px) {
    .corp_no1 {
        margin-top: 30px;
    }
}

.corp_no1__flex {
    display: grid;
    grid-template-areas: "area1 area2" "area1 area3" "area1 area4";
    grid-template-columns: 160px calc(95% - 160px);
    grid-template-rows: -webkit-max-content -webkit-max-content -webkit-max-content;
    grid-template-rows: max-content max-content max-content;
    gap: 0 5%;
}
@media screen and (max-width: 899px) {
    .corp_no1__flex {
        display: block;
        width: 100%;
    }
}
.corp_no1__flex sup {
    font-family: var(--text-family);
    font-size: 10px;
    display: inline-block;
}

.corp_no1__image {
    grid-area: area1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
@media screen and (max-width: 899px) {
    .corp_no1__image {
        width: 120px;
        margin: 0 auto;
        display: block;
    }
}

.corp_no1__title {
    grid-area: area2;
    font-size: 24px;
    font-family: var(--text-family);
    font-weight: 600;
    padding-top: 23px;
}
@media screen and (max-width: 899px) {
    .corp_no1__title {
        padding-top: 25px;
    }
}
@media screen and (max-width: 749px) {
    .corp_no1__title {
        font-size: 16px;
        line-height: 1.5;
    }
}
.corp_no1__title sup {
    translate: 0 -0.5rem;
}
@media screen and (max-width: 899px) {
    .corp_no1__title sup {
        translate: none;
        font-size: 10px;
    }
}

.corp_no1__text {
    grid-area: area3;
    font-size: 16px;
    line-height: 1.75;
    font-family: var(--text-family);
    font-weight: 600;
    margin-top: 3px;
    letter-spacing: 0.06em;
}
@media screen and (max-width: 749px) {
    .corp_no1__text {
        font-size: 13px;
        line-height: 1.7692307692;
        margin-top: 9px;
        letter-spacing: 0.06em;
    }
}

.corp_vision {
    margin-top: 200px;
}
@media screen and (max-width: 749px) {
    .corp_vision {
        margin-top: 94px;
        overflow-x: hidden;
    }
}

.corp_vision__flex {
    display: grid;
    grid-template-areas: "area1 area2" "area1 area3" "area1 area4";
    grid-template-columns: 52% 44%;
    grid-template-rows: -webkit-max-content -webkit-max-content -webkit-max-content;
    grid-template-rows: max-content max-content max-content;
    gap: 0 4%;
}
@media screen and (max-width: 899px) {
    .corp_vision__flex {
        display: block;
        width: 88%;
        margin-left: auto;
    }
}

.corp_vision__image {
    grid-area: area1;
}
@media screen and (max-width: 899px) {
    .corp_vision__image {
        margin: 30px -40px 0 0;
    }
}
@media screen and (max-width: 749px) {
    .corp_vision__image {
        margin: 25px -20px 0 0;
    }
}

.corp_vision .heading_background {
    grid-area: area2;
}

.corp_vision__text {
    grid-area: area3;
    font-size: 16px;
    line-height: 1.75;
    margin-top: 50px;
    letter-spacing: 0.07em;
}
@media screen and (max-width: 749px) {
    .corp_vision__text {
        font-size: 13px;
        line-height: 1.7692307692;
        margin-top: 25px;
    }
}

.corp_vision .button_arrow_circle01 {
    grid-area: area4;
    margin-top: 53px;
}
@media screen and (max-width: 899px) {
    .corp_vision .button_arrow_circle01 {
        margin-top: 23px;
    }
}
.corp_vision .button_arrow_circle01 a {
    margin-left: auto;
}

.corp_brand {
    margin-top: 200px;
}
@media screen and (max-width: 749px) {
    .corp_brand {
        margin-top: 94px;
        overflow-x: hidden;
    }
}

.corp_brand__flex {
    display: grid;
    grid-template-areas: "area2 area1" "area3 area1" "area4 area1" "area5 area1";
    grid-template-columns: 44% 52%;
    grid-template-rows: -webkit-max-content -webkit-max-content -webkit-max-content -webkit-max-content;
    grid-template-rows: max-content max-content max-content max-content;
    gap: 0 4%;
}
@media screen and (max-width: 899px) {
    .corp_brand__flex {
        display: block;
        width: 88%;
        margin-right: auto;
    }
}

.corp_brand__image {
    grid-area: area1;
}
@media screen and (max-width: 899px) {
    .corp_brand__image {
        margin: 30px 0 0 -40px;
    }
}
@media screen and (max-width: 749px) {
    .corp_brand__image {
        margin: 25px 0 0 -20px;
    }
}

.corp_brand .heading_background {
    grid-area: area2;
}

.corp_brand__text {
    grid-area: area3;
    font-size: 16px;
    line-height: 1.75;
    margin-top: 50px;
    letter-spacing: 0.03em;
}
@media screen and (max-width: 749px) {
    .corp_brand__text {
        font-size: 13px;
        line-height: 1.7692307692;
        margin-top: 25px;
    }
}
.corp_brand__text sup {
    font-size: 12px;
}
@media screen and (max-width: 749px) {
    .corp_brand__text sup {
        font-size: 10px;
    }
}

.corp_brand__note {
    grid-area: area4;
    font-size: 12px;
    line-height: 1.6666666667;
    margin-top: 31px;
    letter-spacing: 0.05em;
}
@media screen and (max-width: 749px) {
    .corp_brand__note {
        letter-spacing: -0.003em;
        margin-top: 8px;
    }
}

.corp_brand .button_arrow_circle01 {
    grid-area: area5;
    margin-top: 53px;
}
@media screen and (max-width: 899px) {
    .corp_brand .button_arrow_circle01 {
        margin-top: 23px;
    }
}
.corp_brand .button_arrow_circle01 a {
    margin-left: auto;
}

.corp_brand__buttonarea {
    margin: 90px auto 0;
    max-width: 800px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
@media screen and (max-width: 749px) {
    .corp_brand__buttonarea {
        display: block;
        width: 88%;
        margin: 30px auto 0 0;
    }
}

.corp_brand__button {
    width: 47.5%;
}
@media screen and (max-width: 749px) {
    .corp_brand__button {
        width: 100%;
    }
}
.corp_brand__button a {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: min(2vw, 16px);
    font-family: var(--text-family);
    font-weight: 600;
    text-align: center;
    border-bottom: 1px solid #a8afb9;
    line-height: 1;
    letter-spacing: 0.05em;
}
@media screen and (max-width: 749px) {
    .corp_brand__button a {
        font-size: 13px;
    }
}
.corp_brand__button a::after {
    content: "";
    position: absolute;
    top: 24px;
    right: 0;
    width: 16px;
    height: 16px;
    background: url(https://cdn.shopify.com/s/files/1/0480/1488/5017/files/company-common_icon_arrow01.svg?v=1711415619) no-repeat center center/contain;
}
@media screen and (max-width: 749px) {
    .corp_brand__button a::after {
        width: 12px;
        height: 12px;
    }
}
.corp_brand__button.m-schick a {
    padding: 24px 25px 26px 104px;
}
@media screen and (max-width: 749px) {
    .corp_brand__button.m-schick a {
        padding: 24px 25px 24px 78px;
    }
}
.corp_brand__button.m-schick a::before {
    content: "";
    position: absolute;
    top: 17px;
    left: calc(50% - 140px);
    width: 69px;
    height: 30px;
    background: url(https://cdn.shopify.com/s/files/1/0480/1488/5017/files/company-common_logo.svg?v=1711415619) no-repeat center center/contain;
}
@media screen and (max-width: 749px) {
    .corp_brand__button.m-schick a::before {
        top: 21px;
        left: calc(50% - 113px);
        width: 58px;
        height: 19px;
    }
}
@media screen and (max-width: 749px) {
    .corp_brand__button.m-bulldog {
        margin-top: 4px;
    }
}
.corp_brand__button.m-bulldog a {
    padding: 24px 25px 26px 75px;
}
@media screen and (max-width: 749px) {
    .corp_brand__button.m-bulldog a {
        padding: 24px 25px 26px 64px;
    }
}
.corp_brand__button.m-bulldog a::before {
    content: "";
    position: absolute;
    top: 12px;
    left: calc(50% - 136px);
    width: 44px;
    height: 41px;
    background: url(https://cdn.shopify.com/s/files/1/0480/1488/5017/files/company-index_logo_bulldog.png?v=1711415600) no-repeat center center/contain;
}
@media screen and (max-width: 749px) {
    .corp_brand__button.m-bulldog a::before {
        top: 15px;
        left: calc(50% - 112px);
        width: 36px;
        height: 33px;
    }
}

.corp_about {
    margin-top: 200px;
}
@media screen and (max-width: 749px) {
    .corp_about {
        margin-top: 94px;
    }
}

.corp_about__flex {
    margin-top: 55px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
}
@media screen and (max-width: 749px) {
    .corp_about__flex {
        margin-top: 25px;
        gap: 10px;
    }
}

.corp_about__item {
    width: calc((100% - 60px) / 4);
}
@media screen and (max-width: 749px) {
    .corp_about__item {
        width: calc(50% - 5px);
    }
}
.corp_about__item a {
    width: 100%;
    aspect-ratio: 1/1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
    color: #fff;
    font-size: min(1.7910447761vw, 24px);
    font-family: var(--text-family);
    font-weight: 600;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    text-align: center;
}
@media screen and (max-width: 749px) {
    .corp_about__item a {
        font-size: 16px;
        line-height: 1.5;
        border-radius: 5px;
    }
}
.corp_about__item:nth-child(1) a {
    background-image: url(https://cdn.shopify.com/s/files/1/0480/1488/5017/files/company-index_bg_about01.jpg?v=1711415600);
}
.corp_about__item:nth-child(2) a {
    background-image: url(https://cdn.shopify.com/s/files/1/0480/1488/5017/files/company-index_bg_about02.jpg?v=1713932098);
}
.corp_about__item:nth-child(3) a {
    background-image: url(https://cdn.shopify.com/s/files/1/0480/1488/5017/files/company-index_bg_about03.jpg?v=1713927708);
}
.corp_about__item:nth-child(4) a {
    background-image: url(https://cdn.shopify.com/s/files/1/0480/1488/5017/files/company-index_bg_about04.jpg?v=1713927690);
}

.corp_career {
    position: relative;
    margin-top: 190px;
    overflow-x: hidden;
    padding-bottom: 200px;
}
@media screen and (max-width: 749px) {
    .corp_career {
        margin-top: 94px;
        padding-bottom: 100px;
    }
}
.corp_career::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    translate: -50% 0;
    width: 100vw;
    height: calc(100% - 314px);
    background: #003366;
    z-index: -1;
}
@media screen and (max-width: 749px) {
    .corp_career::before {
        height: calc(98.5% - 170px);
    }
}

.corp_career__text {
    font-size: 16px;
    line-height: 1.75;
    margin-top: 52px;
    letter-spacing: 0.06em;
}
@media screen and (max-width: 749px) {
    .corp_career__text {
        font-size: 13px;
        line-height: 1.7692307692;
        margin-top: 16px;
    }
}

.corp_career__flex {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 54px 20px;
    margin-top: 54px;
    color: #fff;
}
@media screen and (max-width: 899px) {
    .corp_career__flex {
        display: block;
    }
}
@media screen and (max-width: 749px) {
    .corp_career__flex {
        margin-top: 25px;
    }
}

.corp_career_item {
    position: relative;
}
.corp_career_item a {
    display: block;
}
.corp_career_item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    aspect-ratio: 1220/582;
    border-radius: 10px;
    background-color: #fff;
}
@media screen and (max-width: 899px) {
    .corp_career_item {
        width: 88%;
    }
    .corp_career_item:nth-child(n + 2) {
        margin: 50px auto 0 0;
    }
    .corp_career_item:nth-child(even) {
        margin: 50px 0 0 auto;
    }
}
@media screen and (max-width: 749px) {
    .corp_career_item:nth-child(n + 2) {
        margin: 29px auto 0 0;
    }
    .corp_career_item:nth-child(even) {
        margin: 29px 0 0 auto;
    }
}

.corp_career_item__image {
    position: relative;
    width: 100%;
    aspect-ratio: 1220/582;
}
.corp_career_item__image img {
    border-radius: 10px;
}
@media screen and (max-width: 749px) {
    .corp_career_item__image img {
        border-radius: 5px;
    }
}

.corp_career_item__year {
    font-size: 12px;
    margin-top: 40px;
    letter-spacing: 0.03em;
    line-height: 1;
}
@media screen and (max-width: 749px) {
    .corp_career_item__year {
        font-size: 11px;
        margin-top: 19px;
    }
}

.corp_career_item__name {
    font-size: 20px;
    font-family: var(--text-family);
    font-weight: 600;
    margin-top: 13px;
}
@media screen and (max-width: 749px) {
    .corp_career_item__name {
        font-size: 16px;
        margin-top: 0;
    }
}

.corp_career_item__text {
    font-size: min(1.7777777778vw, 16px);
    line-height: 1.75;
    margin-top: 10px;
    letter-spacing: 0.06em;
}
@media screen and (max-width: 749px) {
    .corp_career_item__text {
        font-size: 13px;
        line-height: 1.7692307692;
        margin-top: 4px;
    }
}

.corp_career_join {
    margin-top: 95px;
    border: 1px solid #a8afb9;
    padding: 78px 20px;
    display: grid;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 55px;
    grid-template-columns: auto 437px 280px;
    display: grid;
    grid-template-areas: "area1 area2 area3";
    color: #fff;
}
@media screen and (max-width: 1199px) {
    .corp_career_join {
        gap: 30px;
        grid-template-rows: 1fr auto;
        grid-template-columns: auto 280px;
        grid-template-areas: "area1 area1" "area2 area3";
    }
}
@media screen and (max-width: 899px) {
    .corp_career_join {
        padding: 40px;
        display: block;
    }
}
@media screen and (max-width: 749px) {
    .corp_career_join {
        margin-top: 45px;
        padding: 27px 15px 30px;
    }
}

.corp_career_join__title {
    grid-area: area1;
    font-family: "Avenir-Roman";
    font-weight: 900;
    font-size: 56px;
    line-height: 1;
}
@media screen and (max-width: 749px) {
    .corp_career_join__title {
        font-size: 28px;
    }
}

.corp_career_join__text {
    grid-area: area2;
    font-size: 16px;
    line-height: 1.75;
}
@media screen and (max-width: 899px) {
    .corp_career_join__text {
        margin-top: 30px;
    }
}
@media screen and (max-width: 749px) {
    .corp_career_join__text {
        font-size: 13px;
        line-height: 1.7692307692;
        margin-top: 17px;
        letter-spacing: 0.06em;
    }
}

.corp_career_join__button {
    grid-area: area3;
}
@media screen and (max-width: 899px) {
    .corp_career_join__button {
        max-width: 360px;
        margin: 30px auto 0;
    }
}
@media screen and (max-width: 749px) {
    .corp_career_join__button {
        max-width: 180px;
        margin: 27px auto 0;
    }
}

.corp_sustaina {
    margin-top: 200px;
}
@media screen and (max-width: 749px) {
    .corp_sustaina {
        margin-top: 94px;
        overflow-x: hidden;
    }
}

@media screen and (min-width: 900px) {
    .corp_sustaina .heading_background__title {
        font-size: min(6.6115702479vw, 64px);
    }
    .ipad .corp_sustaina .heading_background__title {
        font-size: min(6.4462809917vw, 64px);
    }
}

.corp_sustaina__flex {
    display: grid;
    grid-template-areas: "area1 area2" "area1 area3" "area1 area4";
    grid-template-columns: 52% 44%;
    grid-template-rows: -webkit-max-content -webkit-max-content -webkit-max-content;
    grid-template-rows: max-content max-content max-content;
    gap: 0 4%;
}
@media screen and (max-width: 899px) {
    .corp_sustaina__flex {
        display: block;
        width: 90%;
        margin-left: auto;
    }
}

.corp_sustaina__image {
    grid-area: area1;
}
@media screen and (max-width: 899px) {
    .corp_sustaina__image {
        margin: 30px -40px 0 0;
    }
}
@media screen and (max-width: 749px) {
    .corp_sustaina__image {
        margin: 25px -20px 0 0;
    }
}

.corp_sustaina .heading_background {
    grid-area: area2;
}

.corp_sustaina__text {
    grid-area: area3;
    font-size: 16px;
    line-height: 1.75;
    margin-top: 50px;
    letter-spacing: 0.07em;
}
@media screen and (max-width: 749px) {
    .corp_sustaina__text {
        font-size: 13px;
        line-height: 1.7692307692;
        margin-top: 25px;
    }
}

.corp_sustaina .button_arrow_circle01 {
    grid-area: area4;
    margin-top: 53px;
}
@media screen and (max-width: 899px) {
    .corp_sustaina .button_arrow_circle01 {
        margin-top: 23px;
    }
}
.corp_sustaina .button_arrow_circle01 a {
    margin-left: auto;
}

.corp_news {
    margin-top: 190px;
}
@media screen and (max-width: 749px) {
    .corp_news {
        margin-top: 94px;
    }
}

.corp_news_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
}
@media screen and (max-width: 899px) {
    .corp_news_list {
        display: block;
        margin-top: 30px;
    }
}
@media screen and (max-width: 749px) {
    .corp_news_list {
        margin-top: 30px;
    }
}

.corp_news_list_item a {
    display: block;
}
@media screen and (max-width: 899px) {
    .corp_news_list_item {
        width: 88%;
    }
    .corp_news_list_item:nth-child(n + 2) {
        margin: 50px auto 0 0;
    }
    .corp_news_list_item:nth-child(even) {
        margin: 50px 0 0 auto;
    }
}
@media screen and (max-width: 749px) {
    .corp_news_list_item:nth-child(n + 2) {
        margin: 25px auto 0 0;
    }
    .corp_news_list_item:nth-child(even) {
        margin: 25px 0 0 auto;
    }
}

.corp_news_list_item__image {
    width: 100%;
    aspect-ratio: 800/382;
}
.corp_news_list_item__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 10px;
}
@media screen and (max-width: 749px) {
    .corp_news_list_item__image img {
        border-radius: 5px;
    }
}

.corp_news_list_item__date {
    color: #003366;
    font-size: 12px;
    line-height: 1;
    margin-top: 41px;
    letter-spacing: 0.03em;
}
@media screen and (max-width: 749px) {
    .corp_news_list_item__date {
        font-size: 11px;
        margin-top: 17px;
    }
}

.corp_news_list_item__title {
    font-size: 16px;
    line-height: 1.75;
    margin-top: 16px;
    letter-spacing: 0.06em;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-break: break-word;
}
@media screen and (max-width: 749px) {
    .corp_news_list_item__title {
        font-size: 13px;
        line-height: 1.7692307692;
        margin-top: 7px;
    }
}

.corp_note {
    margin-top: 183px;
}
@media screen and (max-width: 749px) {
    .corp_note {
        margin-top: 88px;
    }
}

.corp_note__list {
    font-size: 10px;
    letter-spacing: 0.05em;
    line-height: 1.75;
}

.main_contents {
    padding-top: 80px;
}
@media screen and (max-width: 749px) {
    .main_contents {
        padding-top: 60px;
    }
}

/* ---------------------------- news_list ---------------------------- */
.news_section {
    padding: 100px 0 195px;
}
@media screen and (max-width: 749px) {
    .news_section {
        padding: 50px 0 100px;
    }
}

.news_category_title {
    font-size: 28px;
    letter-spacing: 0.06em;
    font-family: var(--text-family);
    font-weight: 600;
    margin-top: 85px;
}
@media screen and (max-width: 899px) {
    .news_category_title {
        font-size: 24px;
    }
}
@media screen and (max-width: 749px) {
    .news_category_title {
        font-size: 20px;
        margin-top: 40px;
    }
}

.news_category_link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 11px 12px;
    margin-top: 45px;
}
@media screen and (max-width: 749px) {
    .news_category_link {
        gap: 8px;
        margin-top: 18px;
    }
}
.news_category_link li a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 12px 20px;
    font-size: 14px;
    text-align: center;
    letter-spacing: 0.04em;
    border-radius: 100vh;
    border: 1px solid #b2b9c1;
    line-height: 1.2;
    word-break: break-word;
}
@media screen and (max-width: 749px) {
    .news_category_link li a {
        padding: 12px 17px;
        font-size: 13px;
    }
}
.news_category_link li.current a {
    border: 1px solid #333333;
    background: #333333;
    color: #fff;
}

.news_section_list {
    margin-top: 60px;
}
@media screen and (max-width: 749px) {
    .news_section_list {
        margin-top: 31px;
    }
}

.news_pager {
    position: relative;
    margin: 95px auto 0;
    width: 320px;
    height: 70px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
@media screen and (max-width: 749px) {
    .news_pager {
        margin: 50px auto 0;
        width: 240px;
        height: 45px;
    }
}

.news_pager__text {
    font-size: 16px;
    text-align: center;
    line-height: 1;
}
@media screen and (max-width: 749px) {
    .news_pager__text {
        font-size: 13px;
    }
}

.news_pager__prev,
.news_pager__next {
    position: absolute;
    top: 0;
    width: 70px;
    height: 70px;
}
@media screen and (max-width: 749px) {
    .news_pager__prev,
    .news_pager__next {
        width: 45px;
        height: 45px;
    }
}
.news_pager__prev a,
.news_pager__next a {
    position: relative;
    display: block;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    height: 100%;
    border-radius: 100vh;
    border: 1px solid #a8afb9;
}
.news_pager__prev a::before,
.news_pager__next a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 1;
    width: 12px;
    height: 12px;
    border-top: 3px solid #333333;
}
@media screen and (max-width: 749px) {
    .news_pager__prev a::before,
    .news_pager__next a::before {
        width: 10px;
        height: 10px;
        border-top: 2px solid #333333;
    }
}

.news_pager__prev {
    left: 0;
}
.news_pager__prev a::before {
    border-left: 3px solid #333333;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
    margin-left: 3px;
}
@media screen and (max-width: 749px) {
    .news_pager__prev a::before {
        border-left: 2px solid #333333;
        margin-left: 2px;
    }
}

.news_pager__next {
    right: 0;
}
.news_pager__next a::before {
    border-right: 3px solid #333333;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
    margin-left: -3px;
}
@media screen and (max-width: 749px) {
    .news_pager__next a::before {
        border-right: 2px solid #333333;
        margin-left: -2px;
    }
}

/* ---------------------------- news_post ---------------------------- */
.news_post_section {
    padding: 97px 0 0;
}
@media screen and (max-width: 749px) {
    .news_post_section {
        padding: 41px 0 0;
    }
}

.news_post_heading {
    width: calc(100% - 320px);
    padding-right: clamp(50px, 7.5757575758vw, 100px);
}
@media screen and (max-width: 1099px) {
    .news_post_heading {
        width: 100%;
        padding-right: 0;
    }
}

.news_post_heading__flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 29px;
    gap: 0 40px;
}
@media screen and (max-width: 749px) {
    .news_post_heading__flex {
        margin-top: 12px;
    }
}

.news_post_heading__tag {
    font-size: 14px;
    color: #7a96b5;
    letter-spacing: 0.04em;
    line-height: 1;
}
@media screen and (max-width: 749px) {
    .news_post_heading__tag {
        font-size: 11px;
    }
}

.news_post_heading__date {
    font-size: 14px;
    color: #7a96b5;
    letter-spacing: 0.04em;
    line-height: 1;
}
@media screen and (max-width: 749px) {
    .news_post_heading__date {
        font-size: 11px;
    }
}

.news_post_heading__title {
    font-size: 28px;
    font-family: var(--text-family);
    font-weight: 600;
    letter-spacing: 0.02em;
    word-break: break-word;
    line-height: 1.75;
}
@media screen and (max-width: 749px) {
    .news_post_heading__title {
        font-size: 20px;
    }
}

.news_post_col2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 55px;
}
@media screen and (max-width: 1099px) {
    .news_post_col2 {
        display: block;
    }
}
@media screen and (max-width: 749px) {
    .news_post_col2 {
        margin-top: 28px;
    }
}

.news_post_main {
    width: calc(100% - 320px);
    padding-right: clamp(50px, 7.5757575758vw, 100px);
    word-break: break-word;
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0.06em;
    display: flow-root;
    margin-bottom: 0;
}
@media screen and (max-width: 1099px) {
    .news_post_main {
        width: 100%;
        padding-right: 0;
    }
}
@media screen and (max-width: 749px) {
    .news_post_main {
        font-size: 13px;
        line-height: 1.7692307692;
    }
}
.news_post_main a:not(.news_post_main_bnr a) {
    text-decoration: underline;
    text-underline-offset: 3px;
}
.news_post_main img {
    max-width: 100%;
    height: auto;
}
.news_post_main > * {
    margin-top: 51px;
}
@media screen and (max-width: 749px) {
    .news_post_main > * {
        margin-top: 25px;
    }
}
.news_post_main > *:first-child {
    margin: 0;
}
.news_post_main table {
    max-width: 100%;
    border-bottom: 1px solid #ccd0d6;
    border-left: 1px solid #ccd0d6;
}
.news_post_main table th,
.news_post_main table td {
    border-top: 1px solid #ccd0d6;
    border-right: 1px solid #ccd0d6;
}
@media screen and (max-width: 749px) {
    .news_post_main table th,
    .news_post_main table td {
        font-size: 11px;
    }
}
.news_post_main table th {
    color: #000;
    background: #f0f1f4;
    text-align: center;
    padding: 7px 30px;
}
@media screen and (max-width: 749px) {
    .news_post_main table th {
        padding: 4px 12px;
    }
}
.news_post_main table td {
    padding: 23px 30px;
    vertical-align: top;
}
@media screen and (max-width: 749px) {
    .news_post_main table td {
        padding: 11px 12px;
    }
}
.news_post_main h1,
.news_post_main h2,
.news_post_main h3,
.news_post_main h4,
.news_post_main h5,
.news_post_main h6,
.news_post_main .h0,
.news_post_main .h1,
.news_post_main .h2,
.news_post_main .h3,
.news_post_main .h4,
.news_post_main .h5,
.news_post_main .h6 {
    font-family: var(--text-family);
    font-weight: 600;
    margin: 80px 0 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
@media screen and (max-width: 749px) {
    .news_post_main h1,
    .news_post_main h2,
    .news_post_main h3,
    .news_post_main h4,
    .news_post_main h5,
    .news_post_main h6,
    .news_post_main .h0,
    .news_post_main .h1,
    .news_post_main .h2,
    .news_post_main .h3,
    .news_post_main .h4,
    .news_post_main .h5,
    .news_post_main .h6 {
        margin-top: 40px;
    }
    .news_post_main h1 + *,
    .news_post_main h2 + *,
    .news_post_main h3 + *,
    .news_post_main h4 + *,
    .news_post_main h5 + *,
    .news_post_main h6 + *,
    .news_post_main .h0 + *,
    .news_post_main .h1 + *,
    .news_post_main .h2 + *,
    .news_post_main .h3 + *,
    .news_post_main .h4 + *,
    .news_post_main .h5 + *,
    .news_post_main .h6 + * {
        margin-top: 20px;
    }
}
.news_post_main h1,
.news_post_main .h1 {
    font-size: 24px;
}
@media screen and (max-width: 749px) {
    .news_post_main h1,
    .news_post_main .h1 {
        font-size: 20px;
    }
}
.news_post_main h2,
.news_post_main .h2 {
    font-size: 22px;
}
@media screen and (max-width: 749px) {
    .news_post_main h2,
    .news_post_main .h2 {
        font-size: 18px;
    }
}
.news_post_main h3,
.news_post_main .h3 {
    font-size: 20px;
}
@media screen and (max-width: 749px) {
    .news_post_main h3,
    .news_post_main .h3 {
        font-size: 16px;
    }
}
.news_post_main h4,
.news_post_main .h4 {
    font-size: 18px;
}
@media screen and (max-width: 749px) {
    .news_post_main h4,
    .news_post_main .h4 {
        font-size: 15px;
    }
}
.news_post_main h5,
.news_post_main .h5 {
    font-size: 17px;
}
@media screen and (max-width: 749px) {
    .news_post_main h5,
    .news_post_main .h5 {
        font-size: 14px;
    }
}
.news_post_main h6,
.news_post_main .h6 {
    font-size: 16px;
}
@media screen and (max-width: 749px) {
    .news_post_main h6,
    .news_post_main .h6 {
        font-size: 13px;
    }
}
.news_post_main strong {
    font-family: var(--text-family);
    font-weight: 600;
}
.news_post_main h4 + p,
.news_post_main .h4 + p,
.news_post_main h5 + p,
.news_post_main .h5 + p,
.news_post_main h6 + p,
.news_post_main .h6 + p {
    margin-top: 0.5em;
}

.news_post_main_bnr a {
    display: grid;
    grid-template-areas: "area1 area2" "area1 area3";
    grid-template-columns: 180px auto;
    grid-template-rows: -webkit-max-content -webkit-max-content;
    grid-template-rows: max-content max-content;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: #f0f1f4;
    overflow: hidden;
}
@media screen and (max-width: 749px) {
    .news_post_main_bnr a {
        grid-template-areas: "area1 area2" "area3 area3";
        grid-template-columns: 75px auto;
        grid-template-rows: 63px -webkit-max-content;
        grid-template-rows: 63px max-content;
        padding: 20px 20px 17px !important;
        border-radius: 5px;
    }
}

.news_post_main_bnr__image {
    grid-area: area1;
}
.news_post_main_bnr__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.news_post_main_bnr__title {
    font-size: 16px;
    letter-spacing: 0.06em;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-break: break-word;
    grid-area: area2;
    padding: 30px 30px 0 30px;
}
@media screen and (max-width: 749px) {
    .news_post_main_bnr__title {
        font-size: 13px;
        line-height: 1.7692307692;
        -webkit-line-clamp: 3;
        padding: 0 0 0 15px;
    }
}

.news_post_main_bnr__text {
    font-size: 12px;
    line-height: 1.6666666667;
    letter-spacing: 0.06em;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
    grid-area: area3;
    padding: 13px 30px 40px 30px;
}
@media screen and (max-width: 749px) {
    .news_post_main_bnr__text {
        font-size: 11px;
        line-height: 1.6363636364;
        -webkit-line-clamp: 4;
        padding: 15px 0 0;
    }
}

.news_post_side {
    width: 320px;
}
@media screen and (max-width: 1099px) {
    .news_post_side {
        width: 100%;
        margin-top: 95px;
    }
}

.news_post_side__title {
    font-size: 16px;
    font-family: var(--text-family);
    font-weight: 600;
    line-height: 1.5;
}
.news_post_side__title::before {
    display: block;
    width: 0;
    height: 0;
    margin-top: calc((1 - 1.5) * 0.5em);
    content: "";
}
.news_post_side__title::after {
    display: block;
    width: 0;
    height: 0;
    margin-bottom: calc((1 - 1.5) * 0.5em);
    content: "";
}

.news_post_side_category {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px 7px;
    margin-top: 28px;
}
@media screen and (max-width: 749px) {
    .news_post_side_category {
        gap: 8px;
        margin-top: 18px;
    }
}
.news_post_side_category li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 12px 20px;
    font-size: 14px;
    text-align: center;
    letter-spacing: 0.04em;
    border-radius: 100vh;
    border: 1px solid #b2b9c1;
    line-height: 1.2;
    word-break: break-word;
    cursor: pointer;
}
@media (any-hover: hover) {
    .news_post_side_category li {
        -webkit-transition: opacity 0.2s;
        transition: opacity 0.2s;
    }
    .news_post_side_category li:hover {
        opacity: 0.8;
    }
}
@media screen and (max-width: 749px) {
    .news_post_side_category li {
        padding: 12px 17px;
        font-size: 13px;
    }
}
.news_post_side_category li.is-active {
    border: 1px solid #333333;
    background: #333333;
    color: #fff;
}

.news_post_side__box + .news_post_side__box {
    margin-top: 57px;
}
@media screen and (max-width: 749px) {
    .news_post_side__box + .news_post_side__box {
        margin-top: 46px;
    }
}

.news_post_side_new {
    margin-top: 27px;
    display: none;
}
.news_post_side_new.is-show {
    display: block;
}
@media screen and (max-width: 749px) {
    .news_post_side_new {
        margin-top: 21px;
    }
}

.news_post_side_new_item a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.news_post_side_new_item:nth-child(n + 2) {
    margin-top: 24px;
}

.news_post_side_new_item__image {
    width: 90px;
    aspect-ratio: 9/5;
}
.news_post_side_new_item__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 10px;
}

.news_post_side_new_item__textarea {
    width: calc(100% - 90px);
    padding-left: 20px;
}
@media screen and (max-width: 749px) {
    .news_post_side_new_item__textarea {
        padding-left: 15px;
    }
}

time {
    font-size: 12px;
    font-family: var(--text-family);
    font-weight: 600;
    display: block;
    line-height: 1;
    color: #7a96b5;
    margin-bottom: 10px;
}
@media screen and (max-width: 749px) {
    time {
        font-size: 11px;
        margin-bottom: 15px;
    }
}

.news_post_side_new_item__title {
    font-size: 14px;
    line-height: 1.7142857143;
    letter-spacing: 0.06em;
    word-break: break-word;
}
.news_post_side_new_item__title::before {
    display: block;
    width: 0;
    height: 0;
    margin-top: calc((1 - 1.7) * 0.5em);
    content: "";
}
.news_post_side_new_item__title::after {
    display: block;
    width: 0;
    height: 0;
    margin-bottom: calc((1 - 1.7) * 0.5em);
    content: "";
}
@media screen and (max-width: 749px) {
    .news_post_side_new_item__title {
        font-size: 13px;
        line-height: 1.7692307692;
        -webkit-line-clamp: 2;
    }
}

.news_post_side_new_item__tag {
    color: #7a96b5;
    font-size: 12px;
    font-family: var(--text-family);
    font-weight: 600;
    margin-top: 5px;
}
@media screen and (max-width: 749px) {
    .news_post_side_new_item__tag {
        font-size: 11px;
    }
}

.news_recommendation_section {
    padding: 188px 0 198px;
}
@media screen and (max-width: 749px) {
    .news_recommendation_section {
        padding: 88px 0 100px;
    }
}

.news_recommendation_section__button {
    width: 350px;
    margin: 58px auto 0;
}
@media screen and (max-width: 749px) {
    .news_recommendation_section__button {
        width: 260px;
        margin: 30px auto 0;
    }
}

.btn-wrapper {
    margin: 100px auto 0;
    max-width: 280px;
}
@media screen and (max-width: 749px) {
    .btn-wrapper {
        margin-top: 45px;
        max-width: 210px;
    }
}

.btn {
    font-size: 16px;
    font-family: var(--text-family);
    font-weight: 600;
    display: grid;
    place-content: center;
    min-height: 70px;
    text-decoration: none !important;
    color: currentColor;
    border: 1px solid #a8afb9;
    border-radius: 100px;
    width: 100%;
    padding: 0 50px;
    position: relative;
    line-height: 1.2;
}
@media (any-hover: hover) {
    .btn {
        -webkit-transition: opacity 0.2s;
        transition: opacity 0.2s;
    }
    .btn:hover {
        opacity: 0.8;
    }
}
@media screen and (max-width: 749px) {
    .btn {
        min-height: 50px;
        font-size: 13px;
        padding: 0 40px;
    }
}
.btn::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 12px;
    height: 12px;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    right: 35px;
}
@media screen and (max-width: 749px) {
    .btn::after {
        width: 8px;
        height: 8px;
        right: 25px;
    }
}

.data_mv {
    padding-top: 54px;
}
@media screen and (max-width: 749px) {
    .data_mv {
        padding-top: 42px;
    }
}
.data_mv__title {
    font-family: "Avenir-Roman";
    font-weight: 600;
    font-size: 80px;
    line-height: 1;
    letter-spacing: 0;
}
@media screen and (max-width: 749px) {
    .data_mv__title {
        font-size: 54px;
    }
}
.data_mv__text {
    font-family: var(--text-family);
    font-weight: 600;
    font-size: 20px;
    line-height: 2.1;
    margin-top: 5px;
    letter-spacing: 0.06em;
}
@media screen and (max-width: 749px) {
    .data_mv__text {
        font-size: 16px;
        margin-top: 2px;
    }
}
.data_mv__image {
    margin-top: 88px;
}
@media screen and (max-width: 749px) {
    .data_mv__image {
        margin-top: 40px;
    }
}

.data_section {
    padding-top: 92px;
}
@media screen and (max-width: 749px) {
    .data_section {
        padding-top: 43px;
    }
}
.data_section__text {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.75;
    letter-spacing: 0.06em;
}
@media screen and (max-width: 749px) {
    .data_section__text {
        font-size: 16px;
    }
}
.data_section__text sup {
    font-size: 10px;
    letter-spacing: 0.04em;
}
.data_section_list {
    margin-top: 93px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 55px 40px;
}
@media screen and (max-width: 749px) {
    .data_section_list {
        margin-top: 44px;
        gap: 44px;
    }
}
.data_section_list_item {
    width: calc((100% - 80px) / 3);
}
@media screen and (max-width: 1099px) {
    .data_section_list_item {
        width: calc((100% - 80px) / 2);
    }
}
@media screen and (max-width: 749px) {
    .data_section_list_item {
        width: 100%;
    }
}
.data_section_list_item_box {
    aspect-ratio: 1/1;
    border-radius: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 9%;
    background-color: #dcf0fc;
}
@media screen and (max-width: 749px) {
    .data_section_list_item_box {
        margin: 0 20px;
    }
}
.data_section_list_item__image {
    width: 230px;
}
@media screen and (max-width: 749px) {
    .data_section_list_item__image {
        width: 60%;
    }
}
.data_section_list_item__title {
    font-family: "Avenir-Roman", var(--text-family);
    font-weight: 600;
    color: #003366;
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: 0.06em;
}
@media screen and (max-width: 1099px) {
    .data_section_list_item__title {
        font-size: clamp(16px, 2.1818181818vw, 25px);
    }
}
@media screen and (max-width: 749px) {
    .data_section_list_item__title {
        font-size: 15px;
    }
}
.data_section_list_item__title strong {
    font-weight: 700;
    font-size: 42px;
    left: 0.04em;
    line-height: 1;
}
@media screen and (max-width: 1099px) {
    .data_section_list_item__title strong {
        font-size: clamp(36px, 4.0909090909vw, 46px);
    }
}
@media screen and (max-width: 749px) {
    .data_section_list_item__title strong {
        font-size: 32px;
    }
}
.data_section_list_item__title .sub {
    font-size: 36px;
    font-weight: inherit;
}
@media screen and (max-width: 1099px) {
    .data_section_list_item__title .sub {
        font-size: clamp(32px, 3.7272727273vw, 42px);
    }
}
@media screen and (max-width: 749px) {
    .data_section_list_item__title .sub {
        font-size: 27.5px;
    }
}
.data_section_list_item__title .big {
    font-size: 24px;
}
@media screen and (max-width: 749px) {
    .data_section_list_item__title .big {
        font-size: 18px;
    }
}
.data_section_list_item__title sup {
    font-size: 10px;
}
.data_section_list_item__text {
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0.04em;
    margin-top: 30px;
}
@media screen and (max-width: 749px) {
    .data_section_list_item__text {
        font-size: 13px;
        letter-spacing: 0.06em;
        margin-top: 13px;
    }
}
.data_section_list_item__text sup {
    font-size: 10px;
}

.data_note {
    padding-top: 88px;
}
@media screen and (max-width: 749px) {
    .data_note {
        padding-top: 40px;
    }
}
.data_note__list li {
    font-size: 10px;
    line-height: 1.75;
    letter-spacing: 0.04em;
}
@media screen and (max-width: 749px) {
    .data_note__list li {
        letter-spacing: 0.06em;
    }
}

.brand_no1 {
    margin-top: 100px;
}
@media screen and (max-width: 749px) {
    .brand_no1 {
        margin-top: 50px;
    }
}

.brand_no1__flex {
    display: grid;
    grid-template-areas: "area1 area2";
    grid-template-columns: 160px calc(95% - 160px);
    grid-template-rows: -webkit-max-content -webkit-max-content -webkit-max-content;
    grid-template-rows: max-content max-content max-content;
    gap: 0 5%;
}
@media screen and (max-width: 899px) {
    .brand_no1__flex {
        display: block;
        width: 100%;
    }
}
.brand_no1__flex sup {
    font-family: var(--text-family);
    font-size: 10px;
    display: inline-block;
}
@media screen and (max-width: 749px) {
    .brand_no1__flex sup {
        vertical-align: text-bottom;
    }
}

.brand_no1__image {
    grid-area: area1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
@media screen and (max-width: 899px) {
    .brand_no1__image {
        width: 120px;
        margin: 0 auto;
        display: block;
    }
}

.brand_no1__title {
    grid-area: area2;
    font-size: 20px;
    font-family: var(--text-family);
    font-weight: 600;
    padding-top: 46px;
    letter-spacing: 0.03em;
    line-height: 1.7;
}
@media screen and (max-width: 899px) {
    .brand_no1__title {
        padding-top: 25px;
    }
}
@media screen and (max-width: 749px) {
    .brand_no1__title {
        font-size: 13px;
        line-height: 1.7692307692;
        letter-spacing: 0.06em;
    }
}

.brand_anchor {
    margin-top: 82px;
}
@media screen and (max-width: 749px) {
    .brand_anchor {
        margin-top: 43px;
    }
}

.brand_section {
    margin-top: 200px;
}
@media screen and (max-width: 749px) {
    .brand_section {
        margin-top: 98px;
    }
}
.brand_section:nth-of-type(even) .brand_section__flex {
    grid-template-areas: "area1 area2" "area1 area3" "area4 area4" "area5 area5";
    grid-template-columns: 52% 44%;
}
@media screen and (max-width: 899px) {
    .brand_section:nth-of-type(even) .brand_section__flex {
        margin-right: initial;
        margin-left: auto;
        grid-template-areas: none;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
}
@media screen and (max-width: 899px) {
    .brand_section:nth-of-type(even) .brand_section__image {
        margin: 30px -40px 0 0;
    }
}
@media screen and (max-width: 749px) {
    .brand_section:nth-of-type(even) .brand_section__image {
        margin: 25px -20px 0 0;
    }
}

.brand_section__flex {
    display: grid;
    grid-template-areas: "area2 area1" "area3 area1" "area4 area4" "area5 area5";
    grid-template-columns: 44% 52%;
    grid-template-rows: -webkit-max-content -webkit-max-content -webkit-max-content -webkit-max-content;
    grid-template-rows: max-content max-content max-content max-content;
    gap: 0 4%;
}
@media screen and (max-width: 899px) {
    .brand_section__flex {
        width: 88%;
        margin-right: auto;
        grid-template-areas: none;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
}

.brand_section__image {
    grid-area: area1;
}
@media screen and (max-width: 899px) {
    .brand_section__image {
        margin: 30px 0 0 -40px;
        grid-area: auto;
        -webkit-box-ordinal-group: 4;
        -webkit-order: 3;
        -ms-flex-order: 3;
        order: 3;
    }
}
@media screen and (max-width: 749px) {
    .brand_section__image {
        margin: 25px 0 0 -20px;
    }
}

.brand_section .heading_background {
    grid-area: area2;
    padding-top: 24px;
}
@media screen and (max-width: 899px) {
    .brand_section .heading_background {
        grid-area: auto;
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
        padding-top: 0;
    }
}

.brand_section .heading_background__title span {
    display: block;
    font-size: 36px;
    margin-top: -13px;
}
@media screen and (max-width: 749px) {
    .brand_section .heading_background__title span {
        font-size: 20px;
        margin-top: 0;
        padding-bottom: 3px;
        letter-spacing: 0.01em;
    }
}

@media screen and (max-width: 749px) {
    .brand_section .heading_background__subtitle {
        padding: 3px 0;
    }
}

.brand_section__title {
    grid-area: area3;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.75;
    margin-top: 33px;
    letter-spacing: 0.04em;
}
@media screen and (max-width: 899px) {
    .brand_section__title {
        grid-area: auto;
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
    }
}
@media screen and (max-width: 749px) {
    .brand_section__title {
        font-size: 13px;
        line-height: 1.7692307692;
        margin-top: 25px;
    }
}
.brand_section__title span {
    padding-left: 15px;
    display: block;
    position: relative;
}
@media screen and (max-width: 749px) {
    .brand_section__title span {
        padding-left: 10px;
    }
}
.brand_section__title span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background-color: #003366;
}
.brand_section__title sup {
    font-size: 10px;
}
@media screen and (max-width: 749px) {
    .brand_section__title sup {
        vertical-align: text-bottom;
    }
}

.brand_section__text {
    grid-area: area4;
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0.04em;
    margin-top: 54px;
}
@media screen and (max-width: 899px) {
    .brand_section__text {
        grid-area: auto;
        -webkit-box-ordinal-group: 5;
        -webkit-order: 4;
        -ms-flex-order: 4;
        order: 4;
    }
}
@media screen and (max-width: 749px) {
    .brand_section__text {
        font-size: 13px;
        line-height: 1.7692307692;
        letter-spacing: 0.06em;
        margin-top: 25px;
    }
}
.brand_section__text sup {
    font-size: 10px;
}
@media screen and (max-width: 749px) {
    .brand_section__text sup {
        vertical-align: text-bottom;
    }
}
.brand_section__text span {
    display: block;
    font-size: 10px;
    line-height: 1.75;
    margin-top: 28px;
    letter-spacing: 0.04em;
}
@media screen and (max-width: 749px) {
    .brand_section__text span {
        margin-top: 8px;
    }
}

.brand_section__note {
    grid-area: area4;
    font-size: 12px;
    line-height: 1.6666666667;
    margin-top: 31px;
    letter-spacing: 0.05em;
}
@media screen and (max-width: 749px) {
    .brand_section__note {
        letter-spacing: -0.003em;
        margin-top: 8px;
    }
}

.brand_section .button_arrow_circle01 {
    grid-area: area5;
    margin-top: 59px;
}
.brand_section .button_arrow_circle01.is-bulldog {
    grid-area: area3;
    margin-top: 30px;
}
@media screen and (max-width: 899px) {
    .brand_section .button_arrow_circle01.is-bulldog {
        grid-area: auto;
        -webkit-box-ordinal-group: 5;
        -webkit-order: 4;
        -ms-flex-order: 4;
        order: 4;
    }
}
@media screen and (max-width: 899px) {
    .brand_section .button_arrow_circle01 {
        margin-top: 23px;
        grid-area: auto;
        -webkit-box-ordinal-group: 6;
        -webkit-order: 5;
        -ms-flex-order: 5;
        order: 5;
    }
}
.brand_section .button_arrow_circle01 a {
    position: relative;
    font-size: 16px;
    line-height: 1;
    width: 213px;
    height: 70px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: auto;
    font-family: var(--text-family);
    font-weight: 600;
}
@media screen and (max-width: 749px) {
    .brand_section .button_arrow_circle01 a {
        font-size: 13px;
        width: 156px;
        height: 45px;
    }
}
.brand_section .button_arrow_circle01 a::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 70px;
    height: 70px;
    border-radius: 100vh;
    border: 1px solid #a8afb9;
}
@media screen and (max-width: 749px) {
    .brand_section .button_arrow_circle01 a::before {
        width: 45px;
        height: 45px;
    }
}
.brand_section .button_arrow_circle01 a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 27px;
    width: 16px;
    height: 16px;
    background: url(https://cdn.shopify.com/s/files/1/0480/1488/5017/files/company-common_icon_arrow01.svg?v=1711415619) no-repeat center center/contain;
}
@media screen and (max-width: 749px) {
    .brand_section .button_arrow_circle01 a::after {
        width: 12px;
        height: 12px;
        right: 17px;
    }
}

.brand_section__list {
    grid-area: area5;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0 40px;
    margin-top: 35px;
}
@media screen and (max-width: 899px) {
    .brand_section__list {
        grid-area: auto;
        -webkit-box-ordinal-group: 6;
        -webkit-order: 5;
        -ms-flex-order: 5;
        order: 5;
    }
}
@media screen and (max-width: 749px) {
    .brand_section__list {
        margin-top: 26px;
    }
}
.brand_section__list.is-proline .brand_section__item {
    padding: 20px 0;
}
@media screen and (max-width: 749px) {
    .brand_section__list.is-proline .brand_section__item {
        padding: 14.5px 0;
    }
}
.brand_section__list.is-amenities .brand_section__item {
    padding: 18px 0;
}
@media screen and (max-width: 749px) {
    .brand_section__list.is-amenities .brand_section__item {
        padding: 14.5px 0;
    }
}

.brand_section__item {
    width: calc(50% - 20px);
    border-bottom: 1px solid #ccd0d6;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0 40px;
}
@media screen and (max-width: 899px) {
    .brand_section__item {
        width: 100%;
    }
}
@media screen and (max-width: 749px) {
    .brand_section__item {
        gap: 0 20px;
    }
}

.brand_section__item__image {
    max-width: 160px;
    width: 30%;
}
@media screen and (max-width: 749px) {
    .brand_section__item__image {
        min-width: 80px;
    }
}

.brand_section__item__box {
    width: 70%;
}
@media screen and (max-width: 749px) {
    .brand_section__item__box {
        min-height: 95px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.brand_section__item__title {
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0.04em;
    font-weight: 600;
    padding-bottom: 10px;
}
@media screen and (max-width: 749px) {
    .brand_section__item__title {
        font-size: 13px;
        line-height: 1.7692307692;
        padding-bottom: 3px;
    }
}

.brand_section__item__text {
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0.04em;
}
@media screen and (max-width: 749px) {
    .brand_section__item__text {
        font-size: 13px;
        line-height: 1.7692307692;
    }
}

.brand_note {
    padding-top: 196px;
}
@media screen and (max-width: 749px) {
    .brand_note {
        padding-top: 97px;
    }
}

.brand_note__list li {
    font-size: 10px;
    line-height: 1.75;
    letter-spacing: 0.04em;
}
@media screen and (max-width: 749px) {
    .brand_note__list li {
        letter-spacing: 0.06em;
    }
}

.vision_mv .corp_sub_mv__title {
    letter-spacing: 0.02em;
}

.vision_section {
    margin-top: 200px;
}
@media screen and (max-width: 749px) {
    .vision_section {
        margin-top: 98px;
    }
}

.vision_section__item + .vision_section__item {
    margin-top: 90px;
}
@media screen and (max-width: 749px) {
    .vision_section__item + .vision_section__item {
        margin-top: 40px;
    }
}

.vision_section__title .en {
    font-size: 32px;
    font-family: "Avenir-Roman";
    font-weight: bold;
    line-height: 1;
}
@media screen and (max-width: 749px) {
    .vision_section__title .en {
        font-size: 20px;
    }
}
.vision_section__title .ja {
    font-size: 16px;
    letter-spacing: 0.06em;
    display: block;
    position: relative;
    padding-left: 41px;
    margin-top: 12px;
}
@media screen and (max-width: 749px) {
    .vision_section__title .ja {
        font-size: 13px;
        margin-top: 5px;
        padding-left: 31px;
    }
}
.vision_section__title .ja:before {
    content: "";
    height: 1px;
    width: 32px;
    position: absolute;
    left: 0;
    bottom: 9px;
    background-color: #000;
}
@media screen and (max-width: 749px) {
    .vision_section__title .ja:before {
        width: 26px;
        bottom: 8px;
    }
}

.vision_section__text {
    font-size: 28px;
    font-weight: bold;
    margin-top: 14px;
    letter-spacing: 0.06em;
    line-height: 1.7142857143;
}
@media screen and (max-width: 749px) {
    .vision_section__text {
        font-size: 16px;
        line-height: 1.75;
        margin-top: 16px;
    }
}
.vision_section__text span {
    font-family: "Avenir-Roman";
    color: #003366;
    display: block;
    letter-spacing: 0.03em;
    padding-bottom: 10px;
}
@media screen and (max-width: 749px) {
    .vision_section__text span {
        font-size: 16px;
        letter-spacing: 0.04em;
        line-height: 1.625;
    }
}

.vision_section__note {
    font-size: 16px;
    letter-spacing: 0.06em;
    line-height: 1.75;
    margin-top: 83px;
    padding-bottom: 70px;
}
@media screen and (max-width: 749px) {
    .vision_section__note {
        font-size: 13px;
        line-height: 1.7692307692;
        margin-top: 38px;
        padding-bottom: 33px;
    }
}

.vision_greeting {
    background: url(https://cdn.shopify.com/s/files/1/0480/1488/5017/files/company_vision_bg.jpg?v=1713774340) no-repeat center center/cover;
    margin-top: 120px;
    padding-top: 190px;
}
@media screen and (max-width: 749px) {
    .vision_greeting {
        margin-top: 60px;
        padding-top: 95px;
    }
}
.vision_greeting .inner {
    position: relative;
    margin-bottom: -197px;
    padding-bottom: 260px;
}
@media screen and (max-width: 749px) {
    .vision_greeting .inner {
        margin-bottom: -144px;
        padding-bottom: 0;
    }
}
.vision_greeting .heading_background__subtitle {
    padding: 5px 0;
}

.vision_greeting__title {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.7142857143;
    margin-top: 50px;
    letter-spacing: 0.04em;
}
@media screen and (max-width: 749px) {
    .vision_greeting__title {
        font-size: 20px;
        line-height: 1.75;
        letter-spacing: 0.02em;
        margin-top: 24px;
    }
}
.vision_greeting__title span {
    padding-left: 22px;
    display: block;
    position: relative;
}
@media screen and (max-width: 749px) {
    .vision_greeting__title span {
        padding-left: 14px;
    }
}
.vision_greeting__title span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background-color: #003366;
}

.vision_greeting__box {
    margin-top: 95px;
}
@media screen and (max-width: 749px) {
    .vision_greeting__box {
        margin-top: 43px;
    }
}

.vision_greeting__text {
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0.04em;
}
@media screen and (max-width: 749px) {
    .vision_greeting__text {
        font-size: 13px;
        letter-spacing: 0.06em;
        line-height: 1.7692307692;
    }
}
.vision_greeting__text + .vision_greeting__text {
    margin-top: 25px;
}
@media screen and (max-width: 749px) {
    .vision_greeting__text + .vision_greeting__text {
        margin-top: 17px;
    }
}
.vision_greeting__text sup {
    font-size: 10px;
}
@media screen and (max-width: 749px) {
    .vision_greeting__text sup {
        vertical-align: text-bottom;
    }
}

.vision_greeting__info {
    font-size: 20px;
    line-height: 1.75;
    letter-spacing: 0.04em;
    font-weight: 600;
    margin-top: 53px;
}
@media screen and (max-width: 749px) {
    .vision_greeting__info {
        margin-top: 23px;
        font-size: 16px;
    }
}
.vision_greeting__info img {
    width: 200px;
}
@media screen and (max-width: 749px) {
    .vision_greeting__info img {
        width: clamp(140px, 41%, 280px);
    }
}
.vision_greeting__info span {
    font-size: 16px;
    display: block;
    font-weight: 400;
    margin-top: 18px;
    padding-bottom: 6px;
}
@media screen and (max-width: 749px) {
    .vision_greeting__info span {
        font-size: 13px;
        margin-top: 10px;
        padding-bottom: 3px;
    }
}

.vision_greeting___note {
    margin-top: 48px;
}
@media screen and (max-width: 749px) {
    .vision_greeting___note {
        margin-top: 18px;
    }
}
.vision_greeting___note li {
    font-size: 10px;
    line-height: 1.75;
    letter-spacing: 0.04em;
}
@media screen and (max-width: 749px) {
    .vision_greeting___note .onlytabmini {
        display: none;
    }
}

.vision_greeting___image {
    width: min(32%, 422px);
    position: absolute;
    right: 40px;
    bottom: 0;
}
@media screen and (max-width: 749px) {
    .vision_greeting___image {
        width: 62%;
        position: relative;
        right: initial;
        margin: 0 auto;
        margin-top: 48px;
    }
}

/* for modern brouser */
.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
}

/* IE7,MacIE5 */
.clearfix {
    display: inline-block;
}

/* WinIE6 below, Exclude MacIE5 \*/
* html .clearfix {
    height: 1%;
}

.clearfix {
    display: block;
}

.technology_section {
    margin-top: 190px;
}
@media screen and (max-width: 749px) {
    .technology_section {
        margin-top: 92px;
    }
}
@media screen and (max-width: 749px) {
    .technology_section .heading_background__subtitle {
        padding: 3px 0;
    }
}

.technology_section__title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.75;
    margin-top: 33px;
    letter-spacing: 0.04em;
    margin-top: 60px;
}
@media screen and (max-width: 899px) {
    .technology_section__title {
        grid-area: auto;
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
    }
}
@media screen and (max-width: 749px) {
    .technology_section__title {
        font-size: 13px;
        line-height: 1.7692307692;
        margin-top: 25px;
    }
}
.technology_section__title span {
    padding-left: 15px;
    display: block;
    position: relative;
}
@media screen and (max-width: 749px) {
    .technology_section__title span {
        padding-left: 10px;
    }
}
.technology_section__title span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background-color: #003366;
}
.technology_section__title sup {
    font-size: 10px;
}
@media screen and (max-width: 749px) {
    .technology_section__title sup {
        vertical-align: text-bottom;
    }
}

.technology_innovation__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 0 41px;
    margin-top: 94px;
}
@media screen and (max-width: 899px) {
    .technology_innovation__list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-top: 46px;
        gap: 41px 0;
    }
}
@media screen and (max-width: 749px) {
    .technology_innovation__list {
        gap: 21px 0;
    }
}

.technology_innovation__item {
    width: 32%;
    border-bottom: 1px solid #ccd0d6;
}
@media screen and (max-width: 899px) {
    .technology_innovation__item {
        border-bottom: none;
        width: 88%;
    }
}
@media screen and (max-width: 899px) {
    .technology_innovation__item:nth-of-type(odd) {
        margin-right: auto;
    }
}
@media screen and (max-width: 899px) {
    .technology_innovation__item:nth-of-type(odd) .technology_innovation__image {
        margin-left: -40px;
    }
}
@media screen and (max-width: 749px) {
    .technology_innovation__item:nth-of-type(odd) .technology_innovation__image {
        margin-left: -20px;
    }
}
@media screen and (max-width: 899px) {
    .technology_innovation__item:nth-of-type(even) {
        margin-left: auto;
    }
}
@media screen and (max-width: 899px) {
    .technology_innovation__item:nth-of-type(even) .technology_innovation__image {
        margin-right: -40px;
    }
}
@media screen and (max-width: 749px) {
    .technology_innovation__item:nth-of-type(even) .technology_innovation__image {
        margin-right: -20px;
    }
}

.technology_innovation__title {
    font-weight: 600;
}
.technology_innovation__title .num {
    font-family: "Avenir-Roman";
    font-size: 36px;
    line-height: 1;
    letter-spacing: 0.04em;
    display: block;
}
@media screen and (max-width: 749px) {
    .technology_innovation__title .num {
        font-size: 28px;
    }
}
.technology_innovation__title .ja {
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: 0.06em;
    display: block;
    margin-top: 20px;
}
@media screen and (max-width: 749px) {
    .technology_innovation__title .ja {
        font-size: 16px;
        line-height: 1.5;
        margin-top: 5px;
    }
}

.technology_innovation__image {
    margin-top: 36px;
}
@media screen and (max-width: 899px) {
    .technology_innovation__image {
        width: calc(100% + 40px);
    }
}
@media screen and (max-width: 749px) {
    .technology_innovation__image {
        width: calc(100% + 20px);
        margin-top: 15px;
    }
}

.technology_innovation__text {
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0.04em;
    margin-top: 32px;
    padding-bottom: 32px;
}
@media screen and (max-width: 749px) {
    .technology_innovation__text {
        margin-top: 14px;
        padding-bottom: 0;
        width: calc(100% + 20px);
        font-size: 13px;
        line-height: 1.7692307692;
        letter-spacing: 0.06em;
        padding-right: 20px;
    }
}

.technology_founding__wrap {
    margin-top: 62px;
}
@media screen and (max-width: 749px) {
    .technology_founding__wrap {
        margin-top: 39px;
    }
}

.technology_founding__box {
    border-bottom: 1px solid #ccd0d6;
    padding: 40px 0;
    display: grid;
    grid-template-areas: "area1 area2" "area1 area3";
    grid-template-columns: 200px calc(100% - 240px);
    grid-template-rows: auto 1fr;
    gap: 0 40px;
}
@media screen and (max-width: 749px) {
    .technology_founding__box {
        display: block;
        border-bottom: none;
        padding: 10px 0;
    }
}
@media screen and (max-width: 749px) {
    .technology_founding__box:nth-of-type(1) .technology_founding__image {
        float: left;
        margin-right: 18px;
        margin-bottom: 10px;
    }
}
@media screen and (max-width: 749px) {
    .technology_founding__box:nth-of-type(2) .technology_founding__image {
        float: right;
        margin-left: 18px;
        margin-bottom: 10px;
    }
}

.technology_founding__image {
    grid-area: area1;
}
@media screen and (max-width: 749px) {
    .technology_founding__image {
        width: 150px;
    }
}
.technology_founding__image figcaption {
    font-size: 10px;
    line-height: 1.75;
    letter-spacing: 0.02rem;
    margin-top: 17px;
}
@media screen and (max-width: 749px) {
    .technology_founding__image figcaption {
        margin-top: 9px;
        padding-left: 2px;
    }
}

.technology_founding__text {
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0.04em;
    padding-top: 27px;
}
@media screen and (max-width: 749px) {
    .technology_founding__text {
        font-size: 13px;
        line-height: 1.7692307692;
        letter-spacing: 0.06em;
        padding-top: 0;
    }
}
@media screen and (max-width: 749px) {
    .technology_founding__text + .technology_founding__text {
        padding-top: 16px;
    }
}
.technology_founding__text.is-upper {
    grid-area: area2;
}
.technology_founding__text.is-lower {
    grid-area: area3;
}
.technology_founding__text span {
    font-weight: 600;
    padding-bottom: 3px;
    border-bottom: 2px solid #b7a843;
}

@media screen and (max-width: 749px) {
    .technology_growth {
        margin-top: 80px;
    }
}
.technology_growth .inner {
    position: relative;
}

.technology_growth__box {
    margin-top: 90px;
}
@media screen and (max-width: 749px) {
    .technology_growth__box {
        margin-top: 43px;
    }
}

.technology_growth__text {
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0.04em;
}
@media screen and (max-width: 749px) {
    .technology_growth__text {
        font-size: 13px;
        line-height: 1.7692307692;
        letter-spacing: 0.06em;
        max-width: 87%;
    }
}
.technology_growth__text:first-of-type {
    max-width: 55%;
}
@media screen and (max-width: 899px) {
    .technology_growth__text:first-of-type {
        max-width: initial;
    }
}
@media screen and (max-width: 749px) {
    .technology_growth__text:first-of-type {
        max-width: 87%;
    }
}
.technology_growth__text + .technology_growth__text {
    margin-top: 25px;
}
@media screen and (max-width: 749px) {
    .technology_growth__text + .technology_growth__text {
        margin-top: 17px;
    }
}

.technology_growth__image {
    position: absolute;
    top: 5px;
    right: 40px;
    width: min(37%, 490px);
}
@media screen and (max-width: 899px) {
    .technology_growth__image {
        position: relative;
        right: initial;
        width: 100%;
        margin-top: 60px;
    }
}
@media screen and (max-width: 749px) {
    .technology_growth__image {
        margin-right: -20px;
        margin-left: auto;
        width: 94%;
        margin-top: 20px;
    }
}

@media screen and (max-width: 749px) {
    .technology_history {
        margin-top: 102px;
    }
}

.technology_history__list {
    margin-top: 52px;
    position: relative;
}
@media screen and (max-width: 899px) {
    .technology_history__list {
        margin-top: 27px;
        padding-top: 30px;
    }
}
.technology_history__list:before {
    content: "";
    width: 2px;
    height: 100%;
    background-color: #333333;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}
@media screen and (max-width: 899px) {
    .technology_history__list:before {
        right: initial;
        left: -1px;
    }
}

.technology_history__item {
    border-top: 1px solid #ccd0d6;
    width: 50%;
    display: grid;
    grid-template-areas: "area1 area3" "area2 area3";
    grid-template-columns: 1fr auto;
    grid-template-rows: auto 1fr;
    padding: 30px 0 59px;
    position: relative;
}
@media screen and (max-width: 899px) {
    .technology_history__item {
        width: 100%;
        padding: 17px 0 26px;
    }
}
.technology_history__item::before {
    content: "";
    width: 16px;
    height: 16px;
    background-color: #333333;
    border-radius: 50%;
    border: 3px solid #fff;
    position: absolute;
    top: -8px;
}
@media screen and (max-width: 899px) {
    .technology_history__item::before {
        width: 12px;
        height: 12px;
        border: 2px solid #fff;
        top: -6px;
    }
}
.technology_history__item:nth-of-type(odd) {
    float: left;
    padding-right: 78px;
}
@media screen and (max-width: 1099px) {
    .technology_history__item:nth-of-type(odd) {
        padding-right: 40px;
    }
}
@media screen and (max-width: 899px) {
    .technology_history__item:nth-of-type(odd) {
        float: initial;
        padding-left: 28px;
        padding-right: 0;
    }
}
.technology_history__item:nth-of-type(odd)::before {
    right: -8px;
}
@media screen and (max-width: 899px) {
    .technology_history__item:nth-of-type(odd)::before {
        left: -6px;
    }
}
.technology_history__item:nth-of-type(even) {
    float: right;
    padding-left: 78px;
}
@media screen and (max-width: 1099px) {
    .technology_history__item:nth-of-type(even) {
        padding-left: 40px;
    }
}
@media screen and (max-width: 899px) {
    .technology_history__item:nth-of-type(even) {
        float: initial;
        padding-left: 28px;
    }
}
.technology_history__item:nth-of-type(even)::before {
    left: -8px;
}
@media screen and (max-width: 899px) {
    .technology_history__item:nth-of-type(even)::before {
        left: -6px;
    }
}
.technology_history__item:first-of-type {
    margin-top: 69px;
}
@media screen and (max-width: 899px) {
    .technology_history__item:first-of-type {
        margin-top: 0;
    }
}
.technology_history__item:nth-of-type(2) {
    margin-top: 160px;
}
@media screen and (max-width: 899px) {
    .technology_history__item:nth-of-type(2) {
        margin-top: 0;
    }
}

.technology_history__more {
    padding: 20px 0 20px 2px;
    margin-bottom: 30px;
    margin-left: -2px;
    background-color: #fff;
    position: relative;
}
.technology_history__more span {
    display: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    pointer-events: auto;
    width: 130px;
    height: 50px;
    border: 1px solid #a8afb9;
    border-radius: 25px;
    background-color: #fff;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
@media screen and (max-width: 899px) {
    .technology_history__more span {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
}

.technology_history__title {
    grid-area: area1;
    font-weight: 600;
    font-family: "Avenir-Roman";
    font-size: 36px;
    line-height: 1;
    letter-spacing: 0.04em;
    padding-top: 20px;
}
@media screen and (max-width: 749px) {
    .technology_history__title {
        font-size: 28px;
        padding-top: 0;
    }
}

.technology_history__text {
    grid-area: area2;
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0.04em;
    padding-top: 13px;
}
@media screen and (max-width: 749px) {
    .technology_history__text {
        font-size: 13px;
        line-height: 1.7692307692;
        letter-spacing: 0.06em;
        padding-top: 9px;
    }
}

.technology_history__image {
    grid-area: area3;
    width: 140px;
    margin-left: 45px;
}
@media screen and (max-width: 899px) {
    .technology_history__image {
        margin-left: 20px;
    }
}
@media screen and (max-width: 749px) {
    .technology_history__image {
        width: 100px;
        margin-top: 3px;
        margin-bottom: 4px;
    }
}

.technology_history__note {
    clear: both;
    text-align: center;
    font-family: "Avenir-Roman";
    font-size: 36px;
    line-height: 1;
    letter-spacing: 0.01em;
    font-weight: 600;
    margin-top: 36px;
}
@media screen and (max-width: 749px) {
    .technology_history__note {
        text-align: left;
        font-size: 28px;
        margin-top: 18px;
    }
}

.technology_note {
    padding-top: 190px;
}
@media screen and (max-width: 749px) {
    .technology_note {
        padding-top: 91px;
    }
}

.technology_note__list li {
    font-size: 10px;
    line-height: 1.75;
    letter-spacing: 0.04em;
}
@media screen and (max-width: 749px) {
    .technology_note__list li {
        letter-spacing: 0.06em;
    }
}

.culture_section {
    margin-top: 195px;
}
@media screen and (max-width: 749px) {
    .culture_section {
        margin-top: 98px;
    }
}
@media screen and (max-width: 899px) {
    .culture_section:nth-of-type(odd) {
        padding-left: 40px;
    }
}
@media screen and (max-width: 899px) {
    .culture_section:nth-of-type(odd) .culture_section__image {
        margin-right: -40px;
        width: calc(100% + 40px);
    }
}
@media screen and (max-width: 749px) {
    .culture_section:nth-of-type(odd) .culture_section__image {
        margin-right: -20px;
        width: calc(100% + 20px);
    }
}
@media screen and (max-width: 899px) {
    .culture_section:nth-of-type(even) {
        padding-right: 40px;
    }
}
.culture_section:nth-of-type(even) .culture_section__block {
    grid-template-areas: "area2 area1";
    grid-template-columns: 44.5% 52.5%;
}
@media screen and (max-width: 899px) {
    .culture_section:nth-of-type(even) .culture_section__block {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}
@media screen and (max-width: 899px) {
    .culture_section:nth-of-type(even) .culture_section__image {
        margin-left: -40px;
        width: calc(100% + 40px);
    }
}
@media screen and (max-width: 749px) {
    .culture_section:nth-of-type(even) .culture_section__image {
        margin-left: -20px;
        width: calc(100% + 20px);
    }
}
@media screen and (max-width: 899px) {
    .culture_section:nth-of-type(even).culture_people {
        padding-right: 0;
    }
}
@media screen and (max-width: 749px) {
    .culture_section .heading_background__title {
        font-size: 46px;
        letter-spacing: 0.01em;
        line-height: 1.0869565217;
    }
}
.culture_section .heading_background__subtitle {
    letter-spacing: 0.06em;
}
@media screen and (max-width: 749px) {
    .culture_section .heading_background__subtitle {
        line-height: 1.7692307692;
        padding: 0;
        margin-top: 6px;
    }
}

@media screen and (max-width: 749px) {
    .culture_own .heading_background__subtitle {
        margin-top: 16px;
    }
}

.culture_people__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    margin-top: 63px;
}
@media screen and (max-width: 899px) {
    .culture_people__list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
@media screen and (max-width: 749px) {
    .culture_people__list {
        margin-top: 23px;
        gap: 25px;
    }
}

.culture_people__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 31px 0;
}
@media screen and (max-width: 749px) {
    .culture_people__item {
        gap: 14px 0;
    }
}
@media screen and (max-width: 899px) {
    .culture_people__item:nth-of-type(odd) .culture_people__image {
        margin-left: -40px;
        padding-right: 40px;
    }
}
@media screen and (max-width: 749px) {
    .culture_people__item:nth-of-type(odd) .culture_people__image {
        margin-left: -20px;
        padding-right: 40px;
    }
}
@media screen and (max-width: 899px) {
    .culture_people__item:nth-of-type(odd) .culture_people__text {
        padding-right: 40px;
    }
}
@media screen and (max-width: 899px) {
    .culture_people__item:nth-of-type(even) .culture_people__image {
        margin-right: -40px;
        margin-left: auto;
        padding-left: 40px;
    }
}
@media screen and (max-width: 749px) {
    .culture_people__item:nth-of-type(even) .culture_people__image {
        margin-right: -20px;
        padding-left: 40px;
    }
}
@media screen and (max-width: 899px) {
    .culture_people__item:nth-of-type(even) .culture_people__text {
        padding-left: 40px;
    }
}
.people_note {
    padding-top: 200px;
}
@media screen and (max-width: 749px) {
    .people_note {
        padding-top: 100px;
    }
}

.culture_section__block {
    display: grid;
    grid-template-areas: "area1 area2";
    grid-template-columns: 52.5% 44.5%;
    grid-template-rows: auto;
    gap: 3%;
    margin-top: 60px;
}
@media screen and (max-width: 899px) {
    .culture_section__block {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        gap: 30px;
    }
}
@media screen and (max-width: 749px) {
    .culture_section__block {
        margin-top: 18px;
        gap: 12px;
    }
}

.culture_section__image {
    grid-area: area1;
    width: 100%;
}

.culture_section__box {
    grid-area: area2;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.culture_section__text {
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0.04em;
}
@media screen and (max-width: 749px) {
    .culture_section__text {
        font-size: 13px;
        line-height: 1.7692307692;
        letter-spacing: 0.06em;
    }
}
.culture_section__text + .culture_section__text {
    margin-top: 25px;
}
@media screen and (max-width: 749px) {
    .culture_section__text + .culture_section__text {
        margin-top: 18px;
    }
}
.culture_section__text span {
    font-weight: 600;
    padding-bottom: 3px;
    border-bottom: 2px solid #b7a843;
}

.culture_note {
    padding-top: 194px;
}
@media screen and (max-width: 749px) {
    .culture_note {
        padding-top: 88px;
    }
}

.culture_note__list li {
    font-size: 10px;
    line-height: 1.75;
    letter-spacing: 0.04em;
}
@media screen and (max-width: 749px) {
    .culture_note__list li {
        letter-spacing: 0.06em;
    }
}

.company_section {
    margin-top: 190px;
}
@media screen and (max-width: 749px) {
    .company_section {
        margin-top: 92px;
    }
}
@media screen and (max-width: 749px) {
    .company_section .heading_background__title {
        font-size: 46px;
        letter-spacing: 0.01em;
        line-height: 1.0869565217;
    }
}
.company_section .heading_background__subtitle {
    letter-spacing: 0.06em;
}
@media screen and (max-width: 749px) {
    .company_section .heading_background__subtitle {
        line-height: 1.7692307692;
        padding: 0;
        margin-top: 6px;
    }
}

.company_wrap {
    margin-top: 180px;
    padding-top: 20px;
}
@media screen and (max-width: 749px) {
    .company_wrap {
        margin-top: 72px;
        padding-top: 30px;
    }
}

.company_wrap__info {
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0.06em;
    border-top: 1px solid #ccd0d6;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
@media screen and (max-width: 749px) {
    .company_wrap__info {
        font-size: 13px;
        line-height: 1.7692307692;
        letter-spacing: 0.06em;
    }
}
.company_wrap__info dt,
.company_wrap__info dd {
    border-bottom: 1px solid #ccd0d6;
    padding: 33.7px 0;
}
@media screen and (max-width: 749px) {
    .company_wrap__info dt,
    .company_wrap__info dd {
        padding: 23.7px 0;
    }
}
.company_wrap__info dt {
    width: 24%;
    font-weight: 600;
}
@media screen and (max-width: 749px) {
    .company_wrap__info dt {
        width: 100%;
        letter-spacing: 0.16em;
        border-bottom: none;
        padding-bottom: 10px;
    }
}
.company_wrap__info dd {
    width: 76%;
}
@media screen and (max-width: 749px) {
    .company_wrap__info dd {
        width: 100%;
        padding-top: 0;
    }
}

.company_wrap__item + .company_wrap__item {
    margin-top: 29px;
}
@media screen and (max-width: 749px) {
    .company_wrap__item + .company_wrap__item {
        margin-top: 21px;
    }
}

.company_wrap__title {
    font-weight: 600;
}

.company_wrap__text {
    margin-top: 11px;
}
@media screen and (max-width: 749px) {
    .company_wrap__text {
        margin-top: 7px;
    }
}

.company_section__address,
.company_section__text {
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0.06em;
    font-style: normal;
}
@media screen and (max-width: 749px) {
    .company_section__address,
    .company_section__text {
        font-size: 13px;
        line-height: 1.7692307692;
        letter-spacing: 0.06em;
    }
}

.company_section__address {
    margin-top: 55px;
}
@media screen and (max-width: 749px) {
    .company_section__address {
        margin-top: 20px;
    }
}
.company_section__address span {
    display: block;
    font-weight: 600;
    padding-bottom: 12px;
}
@media screen and (max-width: 749px) {
    .company_section__address span {
        letter-spacing: 0.12em;
        padding-bottom: 8px;
    }
}

.company_section__text {
    margin-top: 57px;
}
@media screen and (max-width: 749px) {
    .company_section__text {
        margin-top: 18px;
    }
}

.company_section__map {
    margin-top: 52px;
}
@media screen and (max-width: 749px) {
    .company_section__map {
        margin-top: 25px;
    }
}
.company_section__map iframe {
    width: 100%;
    vertical-align: top;
}
@media screen and (max-width: 749px) {
    .company_section__map iframe {
        height: 280px;
    }
}

.company_section__box {
    margin-top: 55px;
    padding: 0 2.2%;
}
@media screen and (max-width: 749px) {
    .company_section__box {
        margin-top: 26px;
        padding: calc(31.5% + 35px) 0 calc(33% + 17.5px);
        position: relative;
    }
}
@media screen and (max-width: 374px) {
    .company_section__box {
        padding: 42% 0 38%;
    }
}

.company_section__list {
    margin: 0.3% 5.8% 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 0 1%;
}
@media screen and (max-width: 749px) {
    .company_section__list {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        margin: 0;
        display: block;
    }
}

.company_section__item {
    width: 100%;
}
@media screen and (max-width: 749px) {
    .company_section__item {
        width: 29.7%;
        position: absolute;
    }
}
.company_section__item:nth-of-type(1) {
    top: 74%;
    left: 18%;
}
.company_section__item:nth-of-type(2) {
    top: 74%;
    right: 18%;
}
.company_section__item:nth-of-type(3) {
    top: 0;
    left: 0;
}
.company_section__item:nth-of-type(4) {
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.company_section__item:nth-of-type(5) {
    top: 0;
    right: 0;
}

.company_section__figure img {
    padding: 0 9.5%;
}
@media screen and (max-width: 749px) {
    .company_section__figure img {
        padding: 0;
    }
}
.company_section__figure figcaption {
    text-align: center;
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0.06em;
    margin-top: 5%;
}
@media screen and (max-width: 1099px) {
    .company_section__figure figcaption {
        font-size: 10px;
        line-height: 1.75;
        margin-top: 6%;
    }
}
@media screen and (max-width: 374px) {
    .company_section__figure figcaption {
        font-size: 2.7vw;
    }
}

/*---------- people_list ----------*/
.people_section {
    margin-top: 200px;
}
@media screen and (max-width: 749px) {
    .people_section {
        margin-top: 98px;
    }
}

@media screen and (max-width: 749px) {
    .people_section .heading_background__subtitle,
    .people_career .heading_background__subtitle {
        padding: 5px 0;
    }
}

.people_section__box {
    margin-top: 50px;
}
@media screen and (max-width: 749px) {
    .people_section__box {
        margin-top: 17px;
    }
}

.people_section__text {
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0.04em;
}
@media screen and (max-width: 749px) {
    .people_section__text {
        font-size: 13px;
        line-height: 1.7692307692;
        letter-spacing: 0.06em;
    }
}
.people_section__text + .people_section__text {
    margin-top: 26px;
}
@media screen and (max-width: 749px) {
    .people_section__text + .people_section__text {
        margin-top: 18px;
    }
}

.people_career {
    margin-bottom: -197px;
}
@media screen and (max-width: 749px) {
    .people_career {
        margin-bottom: -94px;
    }
}

/*---------- people ----------*/
.people_mv {
    position: relative;
}
.people_mv.is-right .inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
@media screen and (max-width: 1099px) {
    .people_mv.is-right .inner {
        display: block;
    }
}

.people_mv__text {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.7142857143;
    letter-spacing: 0.02em;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
@media screen and (max-width: 1319px) {
    .people_mv__text {
        font-size: 32px;
    }
}
@media screen and (max-width: 1099px) {
    .people_mv__text {
        position: relative;
        top: initial;
        -webkit-transform: none;
        transform: none;
        margin-top: 42px;
    }
}
@media screen and (max-width: 749px) {
    .people_mv__text {
        font-size: 20px;
        line-height: 1.75;
    }
}

@media screen and (max-width: 749px) {
    .safari .people_mv__text {
        letter-spacing: -0.02em;
    }
}

.people_title {
    position: relative;
    margin-top: -100px;
}
@media screen and (max-width: 1319px) {
    .people_title {
        margin-top: -60px;
    }
}
@media screen and (max-width: 1099px) {
    .people_title {
        margin-top: 41px;
    }
}

.people_title__box {
    background-color: #003366;
    width: 384px;
    height: 334px;
    padding: 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
@media screen and (max-width: 749px) {
    .people_title__box {
        width: 100%;
        height: auto;
        padding: 26px 20px;
    }
}

.people_title__info {
    color: #fff;
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0.04em;
}
@media screen and (max-width: 749px) {
    .people_title__info {
        font-size: 13px;
        line-height: 1.7692307692;
        letter-spacing: 0.06em;
    }
}

.people_title__name {
    color: #fff;
    margin-top: 24px;
}
@media screen and (max-width: 749px) {
    .people_title__name {
        margin-top: 16px;
    }
}
.people_title__name .ja {
    font-size: 20px;
    font-weight: 600;
}
@media screen and (max-width: 749px) {
    .people_title__name .ja {
        font-size: 16px;
    }
}
.people_title__name .en {
    font-size: 14px;
    letter-spacing: 0.04em;
}
@media screen and (max-width: 749px) {
    .people_title__name .en {
        font-size: 11px;
        letter-spacing: 0.06em;
        margin-top: 4px;
    }
}

.people_content__block {
    margin-top: 187px;
}
@media screen and (max-width: 1099px) {
    .people_content__block {
        width: 88%;
    }
}
@media screen and (max-width: 749px) {
    .people_content__block {
        margin-top: 92px;
    }
}
.people_content__block:nth-of-type(odd) {
    margin-right: 0;
    margin-left: auto;
}
@media screen and (max-width: 1099px) {
    .people_content__block:nth-of-type(even) .people_content__image {
        margin-left: -40px;
    }
}
@media screen and (max-width: 749px) {
    .people_content__block:nth-of-type(even) .people_content__image {
        margin-left: -20px;
    }
}
.people_content__block.is-point {
    margin-top: 93px;
}
@media screen and (max-width: 1099px) {
    .people_content__block.is-point {
        width: 100%;
    }
}
@media screen and (max-width: 749px) {
    .people_content__block.is-point {
        margin-top: 42px;
    }
}
.people_content__block.is-image {
    display: grid;
    grid-template-rows: -webkit-max-content -webkit-max-content;
    grid-template-rows: max-content max-content;
    gap: 0 4%;
}
.people_content__block.is-image-right {
    grid-template-areas: "area1 area3" "area2 area3";
    grid-template-columns: 44% 52%;
}
@media screen and (max-width: 1099px) {
    .people_content__block.is-image-right {
        grid-template-areas: "area3" "area1" "area2";
        grid-template-columns: 1fr;
    }
}
.people_content__block.is-image-left {
    grid-template-areas: "area3 area1" "area3 area2";
    grid-template-columns: 52% 44%;
}
@media screen and (max-width: 1099px) {
    .people_content__block.is-image-left {
        grid-template-areas: "area3" "area1" "area2";
        grid-template-columns: 1fr;
    }
}

.people_content__title {
    grid-area: area1;
    font-size: 20px;
    line-height: 1.7;
    letter-spacing: 0.02em;
    font-weight: 600;
}
@media screen and (max-width: 749px) {
    .people_content__title {
        font-size: 16px;
        line-height: 1.75;
    }
}
.people_content__title sup {
    font-size: 10px;
}

@media screen and (max-width: 749px) {
    .safari .people_content__title {
        letter-spacing: -0.04em;
    }
}

.people_content__text {
    grid-area: area2;
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0.04em;
    margin-top: 44px;
}
@media screen and (max-width: 749px) {
    .people_content__text {
        font-size: 13px;
        line-height: 1.7692307692;
        letter-spacing: 0.06em;
        margin-top: 16px;
    }
}
.people_content__text span {
    font-weight: 600;
    padding-bottom: 3px;
    border-bottom: 2px solid #b7a843;
}
.people_content__text sup {
    font-size: 10px;
}
.people_content__image {
    grid-area: area3;
    margin-top: 6px;
}
@media screen and (max-width: 1099px) {
    .people_content__image {
        margin-top: 0;
        margin-bottom: 25px;
        width: calc(100% + 40px);
    }
}
@media screen and (max-width: 749px) {
    .people_content__image {
        width: calc(100% + 20px);
    }
}

.people_content__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 60px;
    gap: 35px;
    border: 1px solid #ccd0d6;
    margin-top: 30px;
}
@media screen and (max-width: 1099px) {
    .people_content__list {
        grid-template-columns: 1fr;
    }
}
@media screen and (max-width: 749px) {
    .people_content__list {
        margin-top: 25px;
        padding: 27px 19px;
        gap: 28px;
    }
}

.people_content__item {
    letter-spacing: 0.02em;
    font-weight: 600;
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 0 20px;
}
@media screen and (max-width: 749px) {
    .people_content__item {
        grid-template-columns: 45px 1fr;
        gap: 0 15px;
    }
}
.people_content__item .num {
    font-size: 20px;
    font-family: "Avenir-Roman";
    line-height: 1;
    color: #fff;
    background-color: #003366;
    width: 60px;
    height: 60px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
}
@media screen and (max-width: 749px) {
    .people_content__item .num {
        font-size: 16px;
        width: 45px;
        height: 45px;
    }
}
.people_content__item .text {
    font-size: 16px;
    line-height: 1.75;
    padding-top: 1px;
}
.people_content__item .text sup {
    font-size: 10px;
}
@media screen and (max-width: 1099px) {
    .people_content__item .text {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
}
@media screen and (max-width: 749px) {
    .people_content__item .text {
        font-size: 13px;
        line-height: 1.7692307692;
        display: block;
    }
}
@media screen and (max-width: 749px) {
    .people_content__item .text br {
        display: block;
    }
}

.safari .people_content__item .text {
    letter-spacing: -0.02em;
}

.people_other {
    margin-bottom: -197px;
}
@media screen and (max-width: 749px) {
    .people_other {
        margin-bottom: -94px;
    }
}
.people_other::before {
    height: calc(100% - 230px);
}
@media screen and (max-width: 749px) {
    .people_other::before {
        height: calc(98.5% - 116px);
    }
}
@media screen and (max-width: 749px) {
    .people_other .heading_background__subtitle {
        padding: 5px 0;
    }
}

.people_other__flex {
    grid-template-columns: repeat(3, 1fr);
}
/*---------- safety ----------*/
.safety_section.corp_safety_section {
    padding: 54px 0 0;
}
@media screen and (max-width: 749px) {
    .safety_section.corp_safety_section {
        padding: 42px 0 0;
    }
}
.safety_emphasis .safety_lead_text_caption {
    vertical-align: super;
}
/*---------- vision ----------*/
.vision_note {
    padding-top: 210px;
}
@media screen and (max-width: 749px) {
    .vision_note {
        padding-top: 155px;
    }
}

.vision_note__list li {
    font-size: 10px;
    line-height: 1.75;
    letter-spacing: 0.04em;
    display: flex;
    justify-content: flex-end;
}
@media screen and (max-width: 749px) {
    .vision_note__list li {
        letter-spacing: 0.06em;
        justify-content: flex-start;
    }
}

/*---------- sustainability ----------*/
.p-susTop-B__icon {
    width: auto;
}
/*---------- career-information ----------*/
@media screen and (max-width: 749px) {
    .career-info__mail {
        font-size: 12px;
    }
    .career-info__mail a {
        text-decoration: none !important;
    }
}
/*---------- privacy-policy ----------*/
.main_contents.corp_privacy-policy_section {
    margin-top: -80px;
}
@media screen and (max-width: 749px) {
    .main_contents.corp_privacy-policy_section {
        margin-top: -60px;
    }
}
.shopify-policy__container {
    max-width: 65ch;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}
.shopify-policy__title {
    text-align: center;
}
.shopify-policy__title h1 {
    font-size: 24px;
}
.shopify-policy__body h2 {
    font-size: 1.5em;
}

/*# sourceMappingURL=corporate.css.map */
