@charset "utf-8";

body {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1rem;
}

body.active {
    height: 100%;
    overflow: hidden;
}

main {
    overflow-x: hidden;
}

a {
    word-break: break-all;
}

/*----- header START -----*/

header {
    width: 100%;
    color: #fff;
    background: #000;
    position: fixed;
    z-index: 999;
    padding: 0 0 0 40px;
}

header.active {
    background: #000 !important;
}

header>div {
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin: 0 auto;
}

header .bg_blind {
    width: 100%;
    height: 100vh;
    position: absolute;
    visibility: hidden;
    z-index: -1;
}

header .bg_blind.active {
    visibility: visible;
}

header>div>p>a {
    transition: 0.3s;
}

header>div>p>a:hover {
    opacity: 0.5;
}

header>div>p>a>img {
    width: 200px;
}

header .h_nav {
    display: flex;
    align-items: center;
}

header .h_nav>ul {
    display: flex;
    gap: 20px 35px;
}

header .h_nav>ul>li {
    display: flex;
    justify-content: center;
    position: relative;
}

header .h_nav>ul>li>a.btn_drop {
    position: relative;
    cursor: pointer;
}

header .h_nav>ul>li>a.btn_drop::before {
    content: "";
    width: 0;
    height: 2px;
    background: #fff;
    position: absolute;
    right: 0;
    bottom: -8px;
    transition: 0.3s;
}

header .h_nav>ul>li>a.btn_drop.active::before {
    width: 100%;
    left: 0;
}

header .h_nav>ul>li>div {
    width: 200px;
    display: flex;
    justify-content: center;
    white-space: nowrap;
    background: rgba(0, 0, 0, 80%);
    position: absolute;
    top: 23px;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}

header .h_nav>ul>li>div.active {
    top: 53px;
    visibility: visible;
    opacity: 1;
}

header .h_nav>ul>li>div>ul {
    display: flex;
    flex-flow: column;
    gap: 20px;
    padding: 20px 0;
}

header .h_nav>ul>li>div>p {
    display: none;
}

header .h_nav>ul>li>div>ul>li>a {
    transition: 0.3s;
}

header .h_nav>ul>li>div>ul>li>a:hover {
    opacity: 0.3;
}

header .h_nav .btn_h_back {
    display: none;
}

header a.btn_contact {
    width: 180px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    border-right: 0;
    position: relative;
    padding-left: 10px;
}

header a.btn_contact:hover {
    color: #000;
}

header a.btn_contact:hover::after {
    border-top: 2px solid #000;
    border-right: 2px solid #000;
}

header a.btn_contact::before {
    content: "";
    width: 0;
    height: 40px;
    background: #fff;
    position: absolute;
    right: 0;
    z-index: -1;
    transition: 0.3s;
}

header a.btn_contact:hover::before {
    width: 100%;
    left: 0;
}

header .h_nav>ul>li.here>a.btn_drop::before {
    width: 100%;
}

header a.btn_contact_sp.btn_white {
    display: none;
}

header .btn_h_menu {
    display: none;
}

/*----- header END -----*/

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

footer {
    width: 100%;
    position: relative;
    z-index: 1;
}

footer a {
    transition: 0.3s;
}

footer .breadcrumbs {
    width: 100%;
    background: #eee;
    padding: 0 40px;
}

footer .breadcrumbs>nav {
    width: 100%;
    max-width: 1600px;
    min-height: 50px;
    display: flex;
    align-items: center;
    padding: 5px 0;
    margin: 0 auto;
}

footer .breadcrumbs>nav>ol {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 30px;
}

footer .breadcrumbs>nav>ol>li {
    position: relative;
}

footer .breadcrumbs>nav>ol>li::after {
    content: "＞";
    position: absolute;
    margin: 0 0 0 10px;
}

footer .breadcrumbs>nav>ol>li:last-of-type:after {
    display: none;
}

footer .breadcrumbs>nav>ol>li:last-of-type {
    font-weight: bold;
}

footer .breadcrumbs>nav>ol>li>a:hover {
    opacity: 0.5;
}

footer .content {
    width: 100%;
    color: #fff;
    background: #000;
    position: relative;
    z-index: 3;
    padding: 40px;
}

footer .content>div {
    width: 100%;
    max-width: 1600px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin: 0 auto;
}

footer .content>div .left {
    display: flex;
    flex-flow: column;
}

footer .content>div .left>p:nth-of-type(1) {
    margin-bottom: 30px;
}

footer .content>div .left>p:nth-of-type(1) img {
    width: 250px;
    height: auto;
}

footer .content>div .left>p:nth-of-type(2) {
    margin-bottom: 40px;
}

footer .content>div .left>ul {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

footer .content>div .left>ul>li>a:hover {
    opacity: 0.5;
}

footer .content>div .right {
    display: flex;
    flex-flow: column;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}

footer .content>div .right>a {
    width: 300px;
    height: 50px;
}

footer .content>div .right>p {
    font-size: 0.7rem;
}

footer .btn_top {
    display: none;
    position: fixed;
    bottom: 50px;
    right: 50px;
    cursor: pointer;
    z-index: 2;
}

footer .btn_top>a {
    width: 50px;
    height: 50px;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 0.8rem;
    background: #fff;
    font-weight: bold;
    border: 1px solid #DEDEDE;
    border-radius: 10px;
    position: relative;
    transition: 0.3s;
}

footer .btn_top>a:hover {
    opacity: 0.5;
}

footer .btn_top>a::before {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid #B10F41;
    border-right: 2px solid #B10F41;
    transform: rotate(-45deg);
}

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

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

a.link_common {
    color: #B10F41;
    transition: 0.3s;
}

a.link_common:hover {
    opacity: 0.5;
}

a.link_blank,
a.link_blank_red,
a.link_blank_black,
a.link_pdf {
    display: inline-flex;
    align-items: center;
    position: relative;
}

a.link_blank::after {
    content: "";
    width: 12px;
    height: 12px;
    background: url(/common/images/common/icon_link_blank.svg) no-repeat center center / contain;
    margin: 0 0 0 5px;
}

a.link_blank_black::after {
    content: "";
    width: 12px;
    height: 12px;
    background: url(/common/images/common/icon_link_blank.svg) no-repeat center center / contain;
    filter: brightness(0);
    margin: 0 0 0 5px;
}

a.link_blank_red::after {
    content: "";
    width: 12px;
    height: 12px;
    background: url(/common/images/common/icon_link_blank_red.svg) no-repeat center center / contain;
    margin: 0 0 0 5px;
}

a.link_pdf::after {
    content: "";
    width: 17px;
    height: 17px;
    background: url(/common/images/common/icon_pdf.svg) no-repeat center center / contain;
    margin: 0 0 0 5px;
}

.text_category {
    font-family: "Inter", sans-serif;
    font-size: 1.6rem;
    margin-bottom: 30px;
}

.text_title_l,
.ve_box h2 {
    font-family: 'Noto Serif JP', sans-serif;
    font-size: 42px;
    line-height: 60px;
    margin-top: -10px;
    margin-bottom: 30px;
}

.text_title_m,
.ve_box h3 {
    font-family: 'Noto Serif JP', sans-serif;
    font-size: 36px;
    line-height: 51px;
    margin-bottom: 30px;
}

.text_title_s,
.ve_box h4 {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: bold;
    line-height: 27px;
    margin-bottom: 20px;
}

.text_title_sub {
    font-family: "Inter", sans-serif;
    font-size: 32px;
    margin-bottom: 30px;
}


.text_s {
    font-size: 0.8rem !important;
}

.text_en {
    font-family: "Inter", sans-serif !important;
}

.text_go {
    font-family: "Noto Sans JP", sans-serif !important;
}

.text_c {
    text-align: center !important;
}

.text_r {
    text-align: right !important;
}

.element_c {
    display: block;
    margin-right: auto;
    margin-left: auto;
}

.line_over_dtdd {
    display: flex;
    flex-wrap: wrap;
}

.line_over_dtdd>dt,
.line_over_dtdd>dd {
    border-top: 1px solid #ddd;
    padding-top: 50px;
    margin-top: 50px;
}

.line_over_dtdd>dt:nth-of-type(1),
.line_over_dtdd>dd:nth-of-type(1) {
    padding-top: 50px;
    margin-top: 0;
}

.line_over_dtdd>dt {
    width: 300px;
    font-weight: bold;
}

.line_over_dtdd>dd {
    width: calc(100% - 300px);
}

.line_under {
    width: 100vw;
    border-bottom: 1px solid #ddd;
    position: relative;
    padding-bottom: 80px;
    margin: 0 calc(50% - 50vw) 80px;
}

.line_under_list>li {
    border-bottom: 1px solid #ddd;
    padding-bottom: 50px;
    margin-bottom: 50px;
}

.line_under_list>li:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.w_100 {
    width: 100%;
    max-width: 100px !important;
}

.w_200 {
    width: 100%;
    max-width: 200px !important;
}

.w_300 {
    width: 100%;
    max-width: 300px !important;
}

.w_400 {
    width: 100%;
    max-width: 400px !important;
}

.w_500 {
    width: 100%;
    max-width: 500px !important;
}

.w_600 {
    width: 100%;
    max-width: 600px !important;
}

.w_700 {
    width: 100%;
    max-width: 700px !important;
}

.w_800 {
    width: 100%;
    max-width: 800px !important;
}

.w_900 {
    width: 100%;
    max-width: 900px !important;
}

.g_2 {
    display: grid;
    grid-template-columns: 1fr 1fr !important;
}

.g_2_common {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
}

.g_2 img,
.g_2_common img {
    width: 100%;
    display: block;
}

.g_2_common.radius img {
    border-radius: 5px;
}

.g_2_common.radius>div:nth-of-type(2) {
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 30px;
}

.gap_30 {
    gap: 30px;
}

.gap_50 {
    gap: 50px;
}

.mb_10 {
    margin-bottom: 10px !important;
}

.mb_20 {
    margin-bottom: 20px !important;
}

.mb_30 {
    margin-bottom: 30px !important;
}

.mb_40 {
    margin-bottom: 40px !important;
}

.mb_50 {
    margin-bottom: 50px !important;
}

.mb_60 {
    margin-bottom: 60px !important;
}

.mb_70 {
    margin-bottom: 70px !important;
}

.mb_80 {
    margin-bottom: 80px !important;
}

section {
    width: 100%;
    padding: 0 40px;
}

section>div {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

section p,
section dt,
section dd,
section li {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    line-height: 27px;
}

.header_space {
    height: 90px;
}

.header_space.wp,
.header_space.solid {
    margin-bottom: 80px;
}

.grid_content {
    display: grid;
    grid-template-columns: 20% 1fr;
    gap: 0 30px;
}

.hero_box {
    width: 100%;
    margin-bottom: 80px;
}

.hero_box>div {
    width: 100%;
    height: 340px;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 40%) 30%, rgba(0, 0, 0, 0));
}

.hero_box>div>h1 {
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 50px;
    font-weight: 600;
    text-align: center;
    line-height: 35px;
}

.hero_box>div>h1 span {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 18px;
}

.intro_menu {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 50px;
    margin-bottom: 30px;
}

.intro_menu p>img {
    width: 100%;
    border-radius: 10px;
}

.grid_common {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.grid_common>li {
    position: relative;
}

.grid_common>li img {
    width: 100%;
}

.grid_common>li>a,
.slick_common a {
    transition: 0.3s;
}

.grid_common>li>a:hover,
.slick_common a:hover {
    opacity: 0.5;
}

.grid_common>li>a>div,
.slick_common a>div {
    width: 100%;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    color: #fff;
    background: rgba(0, 0, 0, 70%);
    position: absolute;
    bottom: 0;
    padding: 15px;
}

.grid_common>li>a>div>p,
.slick_common a>div>p {
    font-size: 16px;
    font-weight: bold;
    line-height: 24px;
    margin-bottom: 10px;
}

.grid_common>li>a>div>p.busho,
.slick_common a>div>p.busho {
    font-size: 14px;
    font-weight: 200;
    margin-bottom: 0;
}


.grid_common>li>a>div>p.name,
.slick_common a>div>p.name {
    font-size: 18px;
}

.grid_common>li>a>div>ul,
.slick_common a>div>ul,
.list_journal {
    display: flex;
    color: #fff;
    font-size: 0.8rem;
    line-height: 24px;
}

.list_journal {
    color: #000;
}

.grid_common>li>a>div>ul>li:nth-of-type(1),
.slick_common a>div>ul>li:nth-of-type(1),
.list_journal>li:nth-of-type(1) {
    font-family: 'Inter RB', 'Noto Sans JP', sans-serif;
    font-weight: 600;
    position: relative;
    padding: 0 20px 0 0;
    margin: 0 5px 0 0;
}

.grid_common>li>a>div>ul>li:nth-of-type(1)::after,
.slick_common a>div>ul>li:nth-of-type(1)::after,
.list_journal>li:nth-of-type(1)::after {
    content: "｜";
    position: absolute;
    right: 0;
}

.grid_common>li>a>div>ul>li:nth-of-type(2),
.slick_common a>div>ul>li:nth-of-type(2),
.list_journal>li:nth-of-type(2) {
    margin: 0 10px 0 0;
}

.grid_common.img_circle>li>a>p,
.slick_common.img_circle a>p {
    display: block;
    width: 100%;
    max-width: 397px;
    position: relative;
}

.grid_common>li>a>p::before,
.grid_common.img_circle>li>a>p::before,
.slick_common a>p::before,
.slick_common.img_circle a>p::before {
    content: "";
    display: block;
    padding-top: 100%;
}

.grid_common>li>a>p>img,
.slick_common a>p>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.grid_common.img_circle>li>a>p>img,
.slick_common.img_circle a>p>img {
    width: 100%;
    height: 100%;
    border-radius: 100vw;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.slick_common {
    margin: 0 0 50px;
}

.slick_common a {
    display: block;
    position: relative;
}

.slick_common,
.slick-list {
    margin: 0 -2px;
}

.slick_common,
.slick-slide {
    margin: 0 1px;
}

.slick_common .slick-dots,
.slick_list .slick-dots {
    display: flex;
    gap: 3px;
    text-align: left;
    bottom: -30px;
}

.slick_common .slick-dots li,
.slick_list .slick-dots li {
    width: 100%;
    max-width: 70px;
    height: auto;
    margin: 0;
    padding: 0;
}

.slick_common .slick-dots li button:before,
.slick_list .slick-dots li button:before {
    display: none;
}

.slick_common .slick-dots li button,
.slick_list .slick-dots li button {
    width: 100%;
    height: 3px;
    padding: 0;
    background: #000;
}

.slick_common .slick-dots li.slick-active button,
.slick_list .slick-dots li.slick-active button {
    background: #B10F41;
}

.slick-dotted.slick-slider {
    margin-bottom: 60px;
}

.journal_content_box {
    display: flex;
    flex-flow: column;
    gap: 50px;
}

.journal_s_box {
    display: grid;
    grid-template-columns: 1fr 180px;
    gap: 30px;
}

.journal_sl_box {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    border: 1px solid #ddd;
    padding: 20px;
}

.journal_sl_box>p>img {
    width: 100%;
}

.journal_sl_box>div>a:nth-of-type(1) {
    color: #B10F41;
    margin-bottom: 20px;
    transition: 0.3s;
}

.journal_sl_box>div>a.btn_arrow:nth-of-type(1) {
    color: #000;
}

.journal_sl_box>div>a:nth-of-type(1):hover {
    opacity: 0.5;
}

.service_content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.service_content>li,
.journal_s_box,
.dl_box {
    background: #eee;
    padding: 20px;
}

.service_content>li>p,
.journal_s_box>div>p,
.journal_sl_box>div>p,
.dl_box>div>p {
    line-height: 24px;
}

.service_content>li>p:nth-of-type(1),
.journal_s_box>div>p:nth-of-type(1),
.journal_sl_box>div>p:nth-of-type(1),
.dl_box>div>p:nth-of-type(1) {
    font-family: "Inter", sans-serif;
    border-bottom: 1px solid #707070;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.service_content>li>p:nth-of-type(2),
.journal_s_box>div>p:nth-of-type(3),
.journal_sl_box>div>p:nth-of-type(2) {
    margin-bottom: 20px;
}

.service_content>li>h4,
.service_content>li>h3,
.journal_s_box>div>h3,
.journal_sl_box>div>h3 {
    font-size: 18px;
    font-weight: bold;
    line-height: 27px;
    margin-bottom: 20px;
}

.journal_s_box>p>img {
    width: 100%;
    height: 180px;
    border-radius: 10px;
    object-fit: cover;
}

.news_list>ul:nth-of-type(1) {
    display: flex;
    flex-flow: column;
    gap: 30px;
    margin-bottom: 30px;
}

.news_list>ul:nth-of-type(1)>li {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 10px 50px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 30px;
}

.news_list>ul:nth-of-type(1)>li>a {
    line-height: 1.5;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: 0.3s;
}

.news_list>ul:nth-of-type(1)>li>a:hover {
    opacity: 0.5;
}

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

.list_box li,
.slick_list li {
    display: flex;
    flex-flow: column;
    border: 1px solid #ddd;
}

.slick-initialized .slick-slide {
    display: flex;
    flex-flow: column;
}

.slick_list .slick-track {
    display: flex;
}

.slick_list .slick-slide {
    height: auto;
}

.list_box li>a:hover {
    opacity: 0.5;
}

.list_box li>a img,
.slick_list li>a img {
    width: 100%;
}

.list_box li>div,
.slick_list li>div {
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    padding: 20px;
}

.list_box li>div>div>h3,
.slick_list li>div>div>h3 {
    font-size: 18px;
    font-weight: bold;
    line-height: 24px;
    margin-bottom: 20px;
}

.list_box li>div>div>p,
.slick_list li>div>div>p {
    min-height: 55px;
    line-height: 24px;
    margin-bottom: 20px;
}

.ve_box p {
    margin-bottom: 20px;
}

.ve_box p:last-of-type {
    margin-bottom: 0;
}

.ve_box figure {
    margin-top: 20px;
}

.ve_box img {
    width: 100%;
}

.page_box {
    width: fit-content;
    display: flex;
    margin: 0 auto;
}

.page_box {
    font-family: "Inter", sans-serif;
}

.page_box a,
.page_box>li>span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    transition: 0.3s;
}

.page_box>li>span {
    padding: 0 0 8px 0;
}

.page_box a:hover {
    opacity: 0.5;
}

.page_box>p>a {
    border: 1px solid #ddd;
}

.page_box>p.prev>a,
.page_box>p.next>a {
    position: relative;
}

.page_box>p.prev>a::before,
.page_box>p.next>a::before {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid #B10F41;
    border-right: 2px solid #B10F41;
    position: absolute;
}

.page_box>p.prev>a::before {
    transform: rotate(-135deg);
    margin: 0 0 0 3px;
}

.page_box>p.next>a::before {
    transform: rotate(45deg);
    margin: 0 3px 0 0;
}

.page_box>li.here {
    color: #B10F41;
}

.logo_box {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 40px;
}

.logo_box>li>img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.only_sp {
    display: none !important;
}

.tag {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag>li {
    background: #EAE9E9;
    border-radius: 5px;
    cursor: pointer;
    padding: 2px 10px;
    transition: 0.3s;
}

.tag>li.here {
    color: #fff;
    background: #B10F41;
}

.tag>li:hover {
    color: #fff;
    background: #B10F41;
}

.btn_white,
.btn_red,
.btn_tp {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: 0.3s;
}

.btn_white {
    width: 100%;
    max-width: 290px;
    height: 40px;
    border: 1px solid #DEDEDE;
}

.btn_white.link_blank::after {
    background: url(/common/images/common/icon_link_blank_red.svg) no-repeat center center / contain;
    border-top: none;
    border-right: none;
    transform: rotate(0deg);
}

.btn_white.link_blank:hover::after {
    border-top: none;
    border-right: none;
    filter: brightness(100);
}

.btn_red {
    color: #fff;
    background: #B10F41;
    border: 1px solid #fff;
}

.btn_tp {
    width: 100%;
    max-width: 290px;
    height: 40px;
    color: #fff;
    border: 1px solid #DEDEDE;
}

.btn_white::before,
.btn_tp::before {
    content: "";
    width: 0;
    height: 40px;
    background: #B10F41;
    position: absolute;
    right: 0;
    z-index: -1;
    transition: 0.3s;
}

.btn_white::after,
.btn_red::after,
.btn_tp::after {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    right: 10px;
    transform: rotate(45deg);
    transition: 0.3s;
}

header .btn_contact::after {
    content: "";
    width: 8px;
    height: 8px;
    margin-left: 5px;
    transform: rotate(45deg);
    transition: 0.3s;
}

.btn_white::after {
    border-top: 2px solid #B10F41;
    border-right: 2px solid #B10F41;
}

header .btn_contact::after,
.btn_red::after,
.btn_tp::after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

.btn_white:hover {
    color: #fff;
}

.btn_white:hover::before,
.btn_tp:hover::before {
    width: 100%;
    left: 0;
}

.btn_white:hover::after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

.btn_red:hover {
    opacity: 0.5;
}

.btn_arrow,
.sitemap_box>ul>li a {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    transition: 0.3s;
}

.btn_arrow:hover,
.sitemap_box>ul>li a:hover {
    opacity: 0.5;
}

.btn_arrow::after,
.sitemap_box>ul>li a::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid #B10F41;
    border-right: 2px solid #B10F41;
    transform: rotate(45deg);
    margin: 2px 0 0;
}

.btn_vision {
    display: flex;
    flex-flow: column;
    gap: 10px;
}

.btn_vision>li>a {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid #DEDEDE;
    position: relative;
    transition: 0.3s;
}

.btn_vision>li>a:hover {
    opacity: 0.5;
}

.btn_vision>li.green>a {
    background: #347B27;
}

.btn_vision>li.blue>a {
    background: #006280;
}

.btn_vision>li.red>a {
    background: #B10F41;
}

.btn_vision>li>a::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    position: absolute;
    right: 14px;
}

.btn_vision>li>a.link_blank::after {
    width: 12px;
    height: 12px;
    border-top: none;
    border-right: none;
    position: absolute;
    transform: rotate(0deg);
    right: 10px;
    margin: 0;
}

.btn_vision>li>a.link_pdf::after {
    width: 14px;
    height: 14px;
    border-top: none;
    border-right: none;
    position: absolute;
    transform: rotate(0deg);
    filter: invert(1);
    right: 10px;
    margin: 0;
}

.btn_center {
    width: fit-content;
    display: none;
    align-items: center;
    background: #fff;
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 50%));
    position: fixed;
    bottom: 30px;
    left: 50%;
    z-index: 2;
    transform: translateX(-50%);
    padding: 5px;
}

.btn_center>ul {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 1px;
}

.btn_center>ul>li {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid #DEDEDE;
}

.btn_center>ul>li>a {
    width: 250px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    position: relative;
    transition: 0.3s;
}

.btn_center>ul>li>a:hover {
    opacity: 0.5;
}

.btn_center>ul>li.green>a {
    background: #347B27;
}

.btn_center>ul>li.blue>a {
    background: #006280;
}

.btn_center>ul>li.red>a {
    background: #B10F41;
}

.btn_center>ul>li>a::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    position: absolute;
    right: 10px;
}

.btn_center>ul>li:nth-of-type(-n+2)>a.link_blank::after {
    position: absolute;
    right: 10px;
    margin: 0;
}

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

@media (max-width:1200px) {

    /*----- header START -----*/

    header .h_nav>ul {
        gap: 20px;
    }

    header .h_nav>ul>li>a.btn_drop {
        font-size: 0.9rem;
    }

    /*----- header END -----*/

}

@media (max-width:1024px) {

    /*----- header START -----*/

    header {
        padding: 0 20px;
    }

    header>div {
        height: 60px;
    }

    header .h_nav {
        width: 100%;
        height: 100vh;
        color: #000;
        opacity: 0;
        visibility: hidden;
        position: absolute;
        top: 60px;
    }

    header .h_nav.active {
        opacity: 1;
        visibility: visible;
        transition: 0.3s;
    }

    header .h_nav.active::after {
        content: "";
        width: 100vw;
        height: 100vh;
        background: #fff;
        position: absolute;
        top: 0;
        left: -20px;
        z-index: -1;
    }

    header .h_nav a.link_blank::after {
        width: 14px;
        height: 14px;
        filter: brightness(0);
    }

    header .h_nav>ul {
        width: 100%;
        flex-flow: column;
        align-items: flex-start;
        position: absolute;
        top: 40px;
    }

    header .h_nav>ul>li {
        width: 100%;
        justify-content: flex-start;
        position: initial;
    }

    header .h_nav>ul>li>a.btn_drop {
        font-size: 1.2rem;
        font-weight: bold;
    }

    header .h_nav>ul>li>a.btn_drop::before {
        height: 2px;
        background: #000000;
    }

    header .h_nav>ul>li>div {
        width: 100%;
        flex-flow: column;
        justify-content: flex-start;
        background: #fff;
        top: 0;
        left: -10px;
    }

    header .h_nav>ul>li>div.active {
        height: 100vh;
        top: 0;
        left: 0;
        z-index: 1;
    }

    header .h_nav>ul>li>div>p {
        display: block;
        font-size: 1.2rem;
        font-weight: bold;
        margin: 0 0 20px 0;
    }

    header .h_nav>ul>li>div>ul {
        padding: 0;
    }

    header .h_nav .btn_h_back {
        width: fit-content;
        display: flex;
        align-items: center;
        position: relative;
        cursor: pointer;
        margin: 0 0 20px 0;
        transition: 0.3s;
    }

    header .h_nav .btn_h_back:hover {
        opacity: 0.5;
    }

    header .h_nav .btn_h_back::before {
        content: "";
        width: 8px;
        height: 8px;
        border-top: 2px solid #B10F41;
        border-right: 2px solid #B10F41;
        transform: rotate(-135deg);
        margin: 0 10px 0 0;
    }

    header a.btn_contact {
        display: none;
    }

    header a.btn_contact_sp.btn_white {
        max-width: 100%;
        display: flex;
        visibility: hidden;
        margin-top: 10px;
        transition: 0.3s;
    }

    header a.btn_contact_sp.btn_white.active {
        visibility: visible;
    }

    header .btn_h_menu {
        width: 24px;
        height: 24px;
        display: flex;
        flex-flow: column;
        justify-content: center;
        gap: 5px;
        cursor: pointer;
        position: relative;
        transition: 0.3s;
    }

    header .btn_h_menu:hover {
        opacity: 0.3;
    }

    header .btn_h_menu span:nth-of-type(1) {
        width: 24px;
        height: 2px;
        background: #fff;
        transition: 0.3s;
    }

    header .btn_h_menu span:nth-of-type(2) {
        width: 18px;
        height: 2px;
        background: #fff;
        transition: 0.3s;
    }

    header .btn_h_menu span:nth-of-type(3) {
        width: 12px;
        height: 2px;
        background: #fff;
        transition: 0.3s;
    }

    header .btn_h_menu.active span:nth-of-type(1) {
        transform: rotate(45deg);
        position: absolute;
    }

    header .btn_h_menu.active span:nth-of-type(2) {
        opacity: 0;
    }

    header .btn_h_menu.active span:nth-of-type(3) {
        width: 24px;
        transform: rotate(-45deg);
        position: absolute;
    }

    /*----- header END -----*/

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

    footer .btn_top {
        bottom: 10px;
        right: 10px;
    }

    footer .btn_top.wp {
        bottom: 120px;
    }

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

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

    section {
        width: 100%;
        padding: 0 20px;
    }

    .header_space {
        height: 60px;
    }

    .header_space.wp,
    .header_space.solid {
        margin-bottom: 50px;
    }

    .list_box {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid_common>li>a>div>ul,
    .slick_common a>div>ul,
    .list_journal {
        font-size: 0.7rem;
    }

    .grid_common.img_circle>li>a>p,
    .slick_common.img_circle a>p {
        width: 100%;
        max-width: 100%;
    }

    .grid_common {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid_content {
        grid-template-columns: 1fr;
    }

    .service_content {
        grid-template-columns: 1fr 1fr;
    }

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

}

@media (max-width:768px) {

    /*----- header START -----*/

    header {
        padding: 0 20px;
    }

    header .h_nav.active::after {
        left: -20px;
    }

    /*----- header END -----*/

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

    footer .breadcrumbs {
        padding: 0 20px;
    }

    footer .content {
        padding: 40px 20px;
    }

    footer .content>div {
        flex-flow: column;
        justify-content: center;
    }

    footer .content>div>div>ul {
        flex-flow: column;
    }

    footer .content>div .right>a {
        width: 100%;
        font-size: 14px;
    }

    footer .content>div .right>p {
        width: 100%;
        text-align: center;
    }

    footer .content>div .left>p:nth-of-type(1) {
        margin-bottom: 10px;
    }

    footer .content>div .left>p:nth-of-type(1) img {
        width: 200px;
    }

    footer .content>div .left>p:nth-of-type(2) {
        font-size: 14px;
        margin-bottom: 20px;
    }

    footer .content>div .left>ul {
        gap: 15px;
        font-size: 14px;
    }

    footer .btn_top.wp {
        bottom: 80px;
    }

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


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


    .text_category {
        font-size: 24px;
    }

    .text_title_l,
    .ve_box h2 {
        font-size: 32px;
        line-height: 46px;
    }

    .text_title_m,
    .ve_box h3 {
        font-size: 24px;
        line-height: 35px;
    }

    .text_title_s,
    .ve_box h4 {
        margin-bottom: 15px;
    }

    .g_2 {
        grid-template-columns: 1fr !important;
    }

    .g_2_common {
        grid-template-columns: 1fr;
    }

    .g_2_common img {
        margin-left: auto;
        margin-right: auto;
    }

    .hero_box {
        margin-bottom: 50px;
    }

    .hero_box>div {
        height: 200px;
        margin-bottom: 50px;
    }

    .hero_box>div>h1 {
        font-size: 36px;
    }

    .list_box {
        grid-template-columns: 1fr;
    }

    .grid_common {
        grid-template-columns: 1fr;
    }

    .intro_menu {
        grid-template-columns: 1fr;
    }

    .intro_menu .btn_vision {
        display: none;
    }

    .page_box>li>a,
    .page_box>li>span,
    .page_box>p>a {
        width: 30px;
        height: 30px;
    }

    .service_content,
    .journal_s_box,
    .journal_sl_box {
        grid-template-columns: 1fr;
    }

    .journal_s_box>p>img {
        height: auto;
    }

    .journal_sl_box>p {
        order: 2;
    }

    .news_list>ul:nth-of-type(1)>li {
        grid-template-columns: 1fr;
    }

    .logo_box {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px 20px;
    }

    .only_pc {
        display: none !important;
    }

    .only_sp {
        display: block !important;
    }

    .btn_white {
        max-width: 100%;
    }

    .btn_center {
        width: 100%;
        bottom: 0;
    }

    .btn_center>ul>li {
        flex: 1;
    }

    .btn_center>ul>li>a {
        width: 100%;
        height: 50px;
        font-size: 0.8rem;
    }

    .btn_center>ul>li:nth-of-type(-n+2)>a.link_blank::after {
        right: 5px;
    }

    .line_over_dtdd>dd:nth-of-type(1) {
        padding-top: 0;
    }

    .line_over_dtdd>dt {
        padding-top: 50px;
        margin-top: 50px;
        margin-bottom: 10px;
    }

    .line_over_dtdd>dd {
        border-top: none;
        padding-top: 0;
        margin-top: 0;
    }

    .line_over_dtdd>dt {
        width: 100%;
    }

    .line_over_dtdd>dd {
        width: 100%;
    }

    .line_under {
        padding-bottom: 50px;
        margin: 0 calc(50% - 50vw) 50px;
    }

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

}