/*
Theme Name: Pi Base Thema
Theme URI:
Description:
Author:PLUSIDEA
Author URI:https://plusidea.co.jp/
Version:2.0
*/

@charset "utf-8";

/*----------------------------------------------------------------------
base
----------------------------------------------------------------------*/

html {
    min-width: 320px;
    font-size: 100%;
    height: 100%;
}


/*webフォント読み込むまで非表示*/


 html body {
    opacity: 0;
}

html.loading-delay body,
html.wf-active body {
    transition: 0.4s;
    opacity: 1;
} 

body,
input,
textarea {
    font-family: 'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", -apple-system, BlinkMacSystemFont, sans-serif;
    /* font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif; */
    font-style: normal;
    font-weight: 400;
    /*letter-spacing: 0.05em;*/
}

body {
    color: #242424;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100vh; /* カスタムプロパティ未対応ブラウザ用のフォールバック */
    min-height: calc(var(--vh, 1vh) * 100);
}

/*safariの場合*/

::-webkit-full-page-media,
:future,
:root html {
    height: -webkit-fill-available;
}

::-webkit-full-page-media,
:future,
:root body {
    min-height: -webkit-fill-available;
}


/*safariの場合ここまで*/

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: auto;
}

a {
    text-decoration: none;
    color: #242424;
}

a,
a img,
a svg,
a svg path {
    transition: 0.3s;
}

a:hover img,
a:hover {
    opacity: 0.7;
}

span.big {
    font-size: 1.5em;
}

span.red {
    color: #ff3333;
    font-weight: bold;
}

table {
    border-collapse: collapse;
}

h1 {
    font-size: 2em;
}

h2 {
    font-size: 1.5em;
}

h3 {
    font-size: 1.17em;
}

dh {
    color: #555;
    font-size: 20px;
    font-weight: bold;
}

strong {
    font-weight: bold;
}

input,
textarea,
button,
input[type="submit"] {
    -webkit-appearance: none;
    border-radius: 0;
}

input[type="checkbox"] {
    -webkit-appearance: auto;
}




/*----------------------------------------------------------------------
all
----------------------------------------------------------------------*/

.inner {
    width: 1200px;
    max-width: 92%;
    margin: auto;
}

.w_max {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.fff {
    color: #fff;
}

.id_link_contents {
    height: 0;
    opacity: 0;
    pointer-events: none;
    z-index: -999999;
    /* 高さは要調整 */
    padding-top: 90px;
    margin-top: -90px;
}

.fade_up {
    opacity: 0;
}

.loading-delay .fade_up,
.wf-active .fade_up {
    animation: fade-up-item 0.5s ease-out forwards;
}

.is_fade_up {
    opacity: 0;
}

.is_fade_up.is_fade_up_start {
    animation: fade-up-item 0.5s ease-out forwards;
    animation-delay: 0.1s;
}

@keyframes fade-up-item {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.is_fade_left {
    opacity: 0;
}

.is_fade_left.is_fade_left_start {
    animation: fade-left-item 0.5s ease-out forwards;
    animation-delay: 0.1s;
}

@keyframes fade-left-item {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.is_fade_right {
    opacity: 0;
}

.is_fade_right.is_fade_right_start {
    animation: fade-right-item 0.5s ease-out forwards;
    animation-delay: 0.1s;
}

@keyframes fade-right-item {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade_in {
    opacity: 0;
}

.loading-delay .fade_in,
.wf-active .fade_in {
    animation: fade-in-item 0.8s ease-out forwards;
}

.is_fade_in {
    opacity: 0;
}

.is_fade_in.is_fade_in_start {
    animation: fade-in-item 0.5s ease-out forwards;
    animation-delay: 0.1s;
}

@keyframes fade-in-item {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.fade_in_zoom {
    opacity: 0;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
}

.loading-delay .fade_in_zoom,
.wf-active .fade_in_zoom {
    animation: fade-in-zoom-item 0.5s ease-out forwards;
}

@keyframes fade-in-zoom-item {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}


p.no_post {
    padding: 80px 0;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    width: 100%;
}

.min {
    font-family: 'Noto Serif JP', serif;
    font-style: normal;
    font-weight: 400;
    letter-spacing: initial;
}

span.em1 {
    margin-left: 1em;
}

span.em2 {
    margin-left: 2em;
}

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

header#header {
    position: fixed;
    z-index: 9999;
    width: 100%;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

header#header,
div#header_bottom_contents {
    height: 90px;
}

.header_contents {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header_contents:after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0.9;
}

.inner.header_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
}

.header_logo {
    padding-left: 20px;
    flex-shrink: 0;
}

.header_box.pc-only {
    width: 100%;
    padding: 0 24px;
    box-sizing: border-box;
}


.header_box.pc-only ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 700px;
    margin: auto;
}

.header_box.pc-only ul li {
}

.header_box.pc-only ul li.is_drop {
    position: relative;
}

.header_box.pc-only ul li a {
    position: relative;
    padding: 8px 0;
    /*font-weight: 500;*/
    font-size: 14px;
    display: flex;
    align-items: center;
    color: #000;
    justify-content: flex-start;
}



.header_box.pc-only ul li a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5px;
    width: 0%;
    height: 1px;
    background-color: #000;
    margin: auto;
    transition: 0.3s;
}

.header_box.pc-only ul li a:hover {
    opacity: 1;
}

.header_box.pc-only ul li a:hover:after {
    width: 100%;
}

.header_box.pc-only ul li.is_drop a:after {
    display: none;
}

.header_box.pc-only ul ul.drop_menu {
    position: absolute;
    width: auto;
    flex-direction: column;
    margin: auto;
    padding: 16px;
    background-color: #fff;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}

.header_box.pc-only ul li.is_drop.is_active ul.drop_menu {
    opacity: 1;
    pointer-events: all;
}

.header_box.pc-only ul ul.drop_menu li {
    margin-bottom: 15px;
    width: 100%;
}

.header_box.pc-only ul ul.drop_menu li:last-child {
    margin-bottom: 0;
}

.header_box.pc-only ul ul.drop_menu li a {
    font-weight: 500;
    font-size: 12px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    white-space: nowrap;
}

.header_box.pc-only ul ul.drop_menu li a:before {
    content: "";
    position: relative;
    width: 4px;
    height: 2px;
    background: #000;
    margin-right: 15px;
}

.header_box.pc-only ul ul.drop_menu li a:after {
    bottom: -3px;
}

.header_box.pc-only ul li.is_drop a img {
    width: 9.09px;
    margin-left: 3px;
}

.header_tel {
    flex-shrink: 0;
}

.header_tel .pc-only {
    text-align: center;
}

.header_tel .pc-only a {
    /*font-weight: 500;*/
    font-size: 19px;
    color: #0062b2;
}

.header_tel .pc-only p {
    /*font-weight: 500;*/
    font-size: 12px;
    color: #000;
}

.header_contact {
    flex-shrink: 0;
}

.header_contact.pc-only {
    height: 90px;
    width: 200px;
    flex-shrink: 0;
    margin-left: 24px;
}

.header_contact.pc-only a {
    width: 100%;
    height: 100%;
    background-color: #0062b2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
}

.header_contact.pc-only a img {
    margin: 0;
    width: 30px;
    margin-right: 12px;
}



/*----- modal menu -----*/

header .header_box.sp-only {
    width: 64px;
    height: 54px;
    background-color: #0062b2;
}

.modal_btn_wrapper {
    /*調整が必要*/
    position: relative;
    z-index: 999999;
}

button.menu-trigger,
button.menu-trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
}

button.menu-trigger {
    position: relative;
    width: 20px;
    height: 20px;
    background: none;
    border: none;
    appearance: none;
    cursor: pointer;
}

button.menu-trigger.active {
    width: 20px;
    height: 29px;
}

button.menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
}

button.menu-trigger span:nth-of-type(1) {
    top: 0;
}

button.menu-trigger span:nth-of-type(2) {
    top: 0;
    bottom: 0;
    width: 100%;
    left: inherit;
    right: 0;
    margin: auto;
}

button.menu-trigger span:nth-of-type(3) {
    bottom: 0;
    width: 50%;
    left: inherit;
    right: 0;
}

button.menu-trigger.active span:nth-of-type(1) {
    transform: translateY(13px) rotate(-45deg);
    width: 20px;
}

button.menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
}

button.menu-trigger.active span:nth-of-type(3) {
    transform: translateY(-13px) rotate(45deg);
    width: 20px;
}

.modal.js-modal {
    /* height: calc(100vh - 68px); */
    height: 100%;
    /*min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);*/
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    top: 0;
    width: 100%;
}

.modal__bg.js-modal-close {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    background-color: #0062b2;
}

.modal_inner {
    height: 100%;
    position: relative;
    z-index: 1;
    width: 92%;
    box-sizing: border-box;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    overscroll-behavior-y: contain;
}

.modal_inner::-webkit-scrollbar {
    display:none;
}

.modal__content {
    height: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 64px 0;
    width: 100%;
    max-width: 343px;
    margin: auto;
}

.modal__content ul {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.modal__content ul li {
    border-bottom: 1px solid #fff;
    padding: 24px 0;
    width: 100%;
}

.modal__content ul li:first-child {
    border-top: 1px solid #fff;
}

.modal__content ul li a {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

img.icon_modal_arrow {
    width: 11px;
    height: auto;
    margin: 0;
    margin-left: auto;
}

img.icon_modal_arrow.active {
    transform: rotate(180deg);
}

ul.modal_drop_menu {
    padding-top: 24px;
}

.modal__content ul ul.modal_drop_menu li {
    padding: 0;
    border: 0;
    margin-bottom: 16px;
}

.modal__content ul ul.modal_drop_menu li:last-child {
    margin-bottom: 0;
}

.modal__content ul ul.modal_drop_menu li a {
    position: relative;
}

.modal__content ul ul.modal_drop_menu li a:before {
    content: "";
    position: relative;
    width: 5px;
    height: 2px;
    background-color: #fff;
    margin: 0 5px;
}

img.icon_modal_link {
    width: 10px;
    margin-left: 9px;
}

.modal_contact {
    width: 100%;
    margin: 32px 0;
}

.modal_contact a {
    border: 1px solid #fff;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-sizing: border-box;
}

.modal_contact a svg {
    width: 30px;
    height: auto;
    margin-right: 25px;
}

.modal_contact a p {
    font-weight: bold;
    font-size: 12px;
}

.modal_contact a:hover {
    color: #0062b2;
    background-color: #fff;
    opacity: 1;
}

.modal_contact a:hover svg path {
    fill: #0062b2;
}

.modal_logo {
    width: 184px;
    max-width: 100%;
}

/*@media screen and (max-width: 500px) {
    button.menu-trigger {
        width: 21px;
        height: 21px;
    }
    button.menu-trigger.active span:nth-of-type(1) {
        transform: translateY(9px) rotate( -45deg);
        width: 21px;
    }
    button.menu-trigger.active span:nth-of-type(3) {
        transform: translateY(-9px) rotate( 45deg);
        width: 21px;
    }
}*/




/*----- end modal menu -----*/


/*----------------------------------------------------------------------
slider
----------------------------------------------------------------------*/
/*
.main_wrapper {
    display: flex;
    justify-content: space-between;
}

.main_wrapper main {
    width: 100%
}

.main_wrapper aside.sidebar {
    position: relative;
    flex-shrink: 0;
    margin-left: 15px;
}

.main_wrapper aside.sidebar,
.main_wrapper aside.sidebar .sidebar_inner {
    width: 280px;
}
*/

/*----------------------------------------------------------------------
main
----------------------------------------------------------------------*/

/*-------------------
mv
-------------------*/

main section {
    position: relative;
}

.swiper_contents {
    width: 100%;
    height: auto;
    overflow: hidden;
}

section.mv .slider__pagination {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    margin: auto;
    width: max-content;
    z-index: 1;
}

section.mv .slider__pagination span.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    margin: 0 4px;
    opacity: 1;
    border: 1px solid #fff;
    background-color: #000;
    transition: 0.3s;
}

section.mv .slider__pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    border-color: #000;
    background-color: #fff;
}

.mv_scroll.pc-only {
    position: absolute;
    right: 28px;
    bottom: -52px;
    z-index: 1;
}

.mv_scroll_flex {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.mv_scroll_flex a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 10px;
}

.mv_scroll_flex a p {
    writing-mode: vertical-rl;
    font-size: 10px;
    font-weight: bold;
}

.mv_scroll_line {
    width: 10px;
    height: 110px;
    margin-top: 17px;
    position: relative;
}

.mv_scroll_line:before {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    background-color: #242424;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 20px;
}

.mv_scroll_line:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #242424;
    left: 0;
    opacity: 0;
    top: -5px;
    border-radius: 20px;
    animation: mvScroll 2s ease-in-out infinite;
}

@keyframes mvScroll {
    0% {
        opacity: 0;
        top: -5px;
    }
    20% {
        opacity: 1;
        top: -5px;
    }
    80% {
        opacity: 1;
        top: 105px;
    }
    100% {
        opacity: 0;
        top: 105px;
    }
}

.swiper_contents .swiper-slide img {
    width: 100%;
}

/*-------------------
s1
-------------------*/

section.s1 {
    padding: 65px 0 20px;
    background-color: #f3f7f9;
}

.s_title {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 65px;
}

.s_title h2 {
    font-size: 30px;
    margin-bottom: 14px;
}

.s_title p {
    font-size: 18px;
    color: #242424;
    display: flex;
    align-items: center;
    justify-content: center;
}

.s_title p:before,
.s_title p:after {
    content: "";
    position: relative;
    display: block;
    align-items: center;
    justify-content: center;
    width: 5px;
    height: 2px;
    margin: 0 10px;
    background-color: #242424;
}

.s1_contents {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
}

a.s1_content {
    width: calc(100% / 3);
}

.s1_img {
    width: 100%;
    /*height: 274px;*/
    height: 21.406vw;
    overflow: hidden;
}

a.s1_content img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: 0.8s;
}

a.s1_content:hover img {
    transform:scale(1.2,1.2);
}

a.s1_content h2 {
    font-size: 30px;
    text-align: left;
    margin-bottom: 34px;
}

.s1_info {
    width: 100%;
    box-sizing: border-box;
    padding: 20px 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.s1c_text {
    width: 100%;
    max-width: 366px;
    border-bottom: 1px solid #242424;
    padding-bottom: 12px;
    min-height: 100px;
    margin-bottom: 32px;
}

.s1c_text p {
    font-size: 14px;
    line-height: 21px;
}

.s1_more {
    width: 100%;
    max-width: 366px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.s1_more p {
    font-size: 16px;
    letter-spacing: 0.1em;
}

.s1_more svg {
    padding-right: 8px;
    width: 6.6px;
    height: auto;
}

a:hover .s1_more svg {
    transform: translate(10px,0);
}



/*-------------------
s2
-------------------*/

section.s2 {
    overflow: hidden;
}

.s2_bg {
    width: 100%;
    position: absolute;
    left: 0;
    /*bottom: 0;*/
    top: 0;
    z-index: -1;
}

.s2_bg img {
    width: 100%;
}

.s2c_top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 64px 0;
}

.s2ct_bg {
    flex-shrink: 0;
    width: 56.25vw;
    height: 482px;
}

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

.s2ct_info {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    padding-left: 56.25vw;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-right: 76px;
}

.s2ct_info_inner {
    width: 100%;
    max-width: 483px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.s2ct_logos {
    width: 665px;
    position: relative;
}

.s2ct_logos img {
    position: absolute;
    top: 0;
    left: 27px;
    width: 569.5px;
}

.s2ctl_text {
    padding-top: 40px;
    padding-bottom: 31px;
    position: relative;
}

.s2ctl_text p {
    padding: 5px;
    background-color: #fff;
    font-size: 24px;
    white-space: normal;
    word-break: keep-all;
    margin-bottom: 30px;
}

.s2ctl_text h2 {
    font-size: 44px;
    padding-left: 33px;
}

.s2ct_text {
    width: 100%;
    padding-left: 15px;
    box-sizing: border-box;
}

.s2ct_text p.s2ctt_p {
    margin-bottom: 65px;
    font-size: 18px;
    /* line-height: 31px; */
    line-height: 1.7;
}

.s2ct_text a.readmore {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: max-content;
    margin-left: auto;
}

.s2ct_text a.readmore p {
    font-size: 16px;
    letter-spacing: 0.1em;
}

.s2ct_text a.readmore svg {
    width: 6.6px;
    height: auto;
    margin-left: 17px;
}

.s2ct_text a.readmore:hover svg {
    transform: translate(10px,0);
}

.s2c_bottom {
    padding: 65px 0 120px;
}

.n_c_t_p {
    width: 100%;
    /*width: 732px;*/
    /*max-width: 57.188vw;*/
    height: 1em;  /*この高さを超えたら...で省略される*/
    overflow: hidden;
    line-height: 1;
    font-size: 14px;
}

.inner.fp_news_inner {
    width: 936px;
}

.news_contents {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.news_contents ul {
    width: 100%;
}

.news_contents ul li {
    width: 100%;
    padding: 25px 0;
    border-bottom: 0.5px solid #242424;
}

.news_contents ul li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding-right: 30px;
    box-sizing: border-box;
}

.news_contents ul li a time {
    margin-right: 40px;
    font-size: 14px;
    flex-shrink: 0;
}

.news_c_title {
    width: 100%;
}

.news_c_title.news_c_title_pdf {

}

.news_c_title.news_c_title_pdf p.n_c_t_p {
    width: initial;
    display: inline;
}

.news_c_title.news_c_title_pdf img {
    margin: 0;
    display: inline;
    margin-bottom: -2px;
}

.news_c_title.news_c_title_pdf span.news_pdf_text {
    display: inline;
    font-size: 14px;
    margin-left: 0.5em;
}

.news_contents ul li a svg {
    width: 7.98px;
    height: auto;
    margin-left: 55px;
    flex-shrink: 0;
}

.news_contents ul li a:hover svg {
    transform: translate(10px,0);
}

a.news_more {
    margin-top: 35px;
    margin-left: auto;
    text-decoration: underline;
}




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

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

.footer_contact {
    color: #fff;
    padding: 135px 0;
    background-size: cover;
    background-position: center;
}

.inner.f_c_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 936px;
}

.f_c_left h2 {
    margin-bottom: 24px;
    font-size: 26px;
    line-height: 1;
}

.f_c_left h3 {
    margin-bottom: 60px;
    font-size: 18px;
    line-height: 1;
}

.f_c_left p {
    font-size: 18px;
    line-height: 32.4px;
}

.f_c_tel {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 18px;
}

.f_c_tel p {
    font-size: 18px;
}

.f_c_tel a {
    color: #fff;
    font-size: 32px;
    margin-left: 7px;
}

.f_c_time {
    margin-bottom: 32px;
}

p.fct_p1 {
    margin-bottom: 13px;
    font-size: 16px;
}

p.fct_p2 {
    font-size: 16px;
}

.f_c_right a.f_c_a {
    width: 329px;
    height: 55px;
    background-color: #fff;
    border: 1px solid #fff;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
}

.f_c_right a.f_c_a:hover {
    background-color: #000;
    border: 1px solid #fff;
    color: #fff;
    opacity: 1;
}


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


.top_scroll_btn {
    position: absolute;
    top: -30px;
    right: 0;
    z-index: 1;
    background-color: #fff;
}

.top_scroll_btn a {
    width: 60px;
    height: 60px;
    background-color: #0062b2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top_scroll_btn a svg {
    width: 23.62px;
    height: auto;
}

footer#footer {
    position: relative;
    padding: 65px 0 20px;
}

.inner.footer_inner {
    width: 1000px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 50px;
}

a.f_logo {
    width: 370px;
    max-width: 100%;
    display: block;
    margin-bottom: 23px;
}

.f_left ul li {
    font-size: 12px;
    margin-bottom: 16px;
    color: #000;
}

.f_left ul li.fl_links {
    margin-top: 30px;
    line-height: 1.4;
}

.f_left ul li.fl_links a {
    color: #0261b2;
    text-decoration: underline;
}

.f_right {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

ul.f_r_ul {
    min-width: 232px;
    border-left: 1px solid #c0c1c1;
    padding: 17px 8px;
    box-sizing: border-box;
}

ul.f_r_ul li {
    margin-bottom: 16px;
}

ul.f_r_ul li:last-child {
    margin-bottom: 0;
}

ul.f_r_ul li p,
ul.f_r_ul li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 12px;
    color: #000;
}

img.f_arrow {
    margin: 0;
    width: 7.39px;
    margin-right: 8px;
}

svg.f_icon_link {
    width: 10px;
    height: auto;
    margin-left: 8px;
}

ul.f_r_ul_ul {
    margin: 16px 0 24px 10px;
}

ul.f_r_ul_ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

ul.f_r_ul_ul li a:before {
    content: "";
    position: relative;
    width: 4px;
    height: 2px;
    background: #000;
    margin-right: 11px;
}

.copyright {
    font-size: 12px;
    text-align: center;
    color: #000;
}

footer#footer.f_contact {
    background-color: #F2F2F2;
}

/*----------------------------------------------------------------------

media query

----------------------------------------------------------------------*/

.pc-only {
    display: block;
}

.sp-only {
    display: none;
}
.pc600-only {
    display: block;
}

.sp600-only {
    display: none;
}

@media screen and (max-width: 1280px) {

    a.s1_content h2 {
        font-size: 2.344vw;
        margin-bottom: 2.656vw;
    }

    .s1c_text {
        padding-bottom: 0.938vw;
        min-height: 7.813vw;
        margin-bottom: 2.5vw;
    }

    .s1c_text p {
        font-size: 1.094vw;
        line-height: 1.641vw;
    }

    .s2ct_text p.s2ctt_p {
        margin-bottom: 5.078vw;
        font-size: 1.406vw;
    }

    .s2ct_info {
        padding-right: 5.938vw;
    }

    /*    
    a.s1_content h2 {
        font-size: 30px;
        margin-bottom: 34px;
    }

    .s1c_text {
        padding-bottom: 12px;
        min-height: 100px;
        margin-bottom: 32px;
    }

    .s1c_text p {
        font-size: 14px;
        line-height: 21px;
    }

    .s2ct_text p.s2ctt_p {
        margin-bottom: 65px;
        font-size: 18px;
    }

    .s2ct_info {
        padding-right: 76px;
    }
    */

}

@media screen and (max-width: 1160px) {
    header .pc-only {
        display: none;
    }
    header .sp-only {
        display: block;
    }
    header#header, div#header_bottom_contents {
        height: 54px;
    }
    header .header_box.sp-only {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .header_logo img {
        width: 184px !important;
    }
    .header_tel {
        margin-left: auto;
        margin-right: 19px;
    }
    .header_tel .sp-only a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .header_tel .sp-only a svg {
        width: 22px;
        height: auto;
        margin-bottom: 5px;
    }

    .header_tel .sp-only a p {
        font-size: 12px;
        color: #0062b2;
        font-weight: 500;
        transition: 0.2s;
    }

    .header_tel .sp-only a:hover {
        opacity: 1;
    }

    .header_tel .sp-only a:hover svg path {
        fill: #000;
    }

    .header_tel .sp-only a:hover p {
        color: #000;
    }







}


@media screen and (max-width: 880px) {


    .inner.f_c_inner {
        flex-direction: column;
        width: 345px;
    }

    .f_c_left {
        margin-bottom: 33px;
        width: 100%;
    }

    .f_c_left h2 {
        margin-bottom: 22px;
        font-size: 18px;
    }

    .f_c_left h3 {
        margin-bottom: 42px;
        font-size: 14px;
    }

    .f_c_left p {
        font-size: 15px;
        line-height: 28px;
    }

    .f_c_right {
        width: 100%;
    }

    .f_c_tel {
        margin-bottom: 22px;
    }

    .f_c_tel p {
        font-size: 14px;
    }

    .f_c_tel a {
        font-size: 24px;
        margin-left: 5px;
    }

    .f_c_time {
        margin-bottom: 33px;
    }

    p.fct_p1 {
        margin-bottom: 16px;
        font-size: 16px;
    }

    p.fct_p2 {
        font-size: 16px;
    }

    .f_c_right a.f_c_a {
        width: 329px;
        max-width: 100%;
        height: 55px;
        font-size: 16px;
        margin: auto;
    }

    footer#footer {
        position: relative;
        padding: 40px 0 10px;
    }

    .inner.footer_inner {
        flex-direction: column;
        width: 345px;
    }

    .f_left {
        width: 100%;
        padding-bottom: 18px;
        margin-bottom: 33px;
        border-bottom: 1px solid #c0c1c1;
    }

    a.f_logo {
        width: 323px;
        margin-bottom: 26px;
    }

    .f_left ul li {
        font-size: 10px;
        margin-bottom: 18px;
        color: #000;
    }

    .f_right {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        width: 100%;
    }

    ul.f_r_ul {
        min-width: initial;
        border-left: 0;
        padding: 0;
        box-sizing: border-box;
    }
}

@media screen and (max-width: 830px) {

    .is2_imgs.item02_is2_imgs {
        flex-direction: column;
        align-items: center;
    }

}

@media screen and (max-width: 767px) {
    .pc-only {
        display: none;
    }
    .sp-only {
        display: block;
    }
    a,
    a img,
    a svg,
    a svg path {
        transition: 0.2s;
    }
    /*px*/

    section.mv .slider__pagination {
        bottom: 9px;
    }

    section.mv .slider__pagination span.swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        margin: 0 3px;
    }
    .id_link_contents {
        padding-top: 54px;
        margin-top: -54px;
    }

    a:hover .s1_more svg {
        transform: translate(5px,0);
    }

    .s2ct_text a.readmore:hover svg {
        transform: translate(5px,0);
    }

    .news_contents ul li a:hover svg {
        transform: translate(5px,0);
    }


    .footer_contact {
        color: #fff;
        padding: 75px 0 75px;
        background-size: cover;
        background-image: url(./img/f_contact_bg_sp.jpg) !important;
    }

}

@media screen and (max-width: 767px) {

    section.s1 {
        padding: 10.667vw 0 0;
    }

    .s_title {
        margin-bottom: 10.667vw;
    }

    .s_title h2 {
        font-size: 8vw;
        margin-bottom: 3.733vw;
    }

    .s_title p {
        font-size: 4.5vw;
    }

    .s1_contents {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }

    a.s1_content {
        width: 92%;
        margin-bottom: 10.667vw;
    }

    .s1_img {
        height: 58.933vw;
    }

    .s1_info {
        padding: 6.4vw 2.133vw 0;
    }

    a.s1_content h2 {
        font-size: 6.4vw;
        margin-bottom: 8.533vw;
    }

    .s1c_text {
        padding-bottom: 2.133vw;
        min-height: initial;
        margin-bottom: 6.133vw;
        max-width: 100%;
    }

    .s1c_text p {
        font-size: 3.2vw;
        line-height: 4.8vw;
    }

    .s1_more {
        width: max-content;
        max-width: initial;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin-left: auto;
    }

    .s1_more p {
        font-size: 3.733vw;
    }

    .s1_more svg {
        padding-right: 0;
        width: 1.333vw;
        height: auto;
        margin-left: 2.133vw;
    }

    .s2_bg {
        display: none;
    }

    .s2c_top {
        flex-direction: column;
        padding: 40px 0;
    }

    .s2ct_bg {
        width: 100%;
        height: 66.933vw;
    }

    .s2ct_info {
        position: relative;
        padding: 0;
        width: 92%;
        margin: auto;
        margin-top: -21.333vw;
    }

    .s2ct_info_inner {
        width: 100%;
        max-width: 100%;
        align-items: center;
    }

    .s2ct_logos {
        width: 100%;
        position: relative;
    }

    .s2ct_logos img {
        width: 76.267vw;
        left: 0;
        right: 0;
    }

    .s2ctl_text {
        padding-top: 12vw;
        padding-bottom: 9.067vw;
        position: relative;
    }

    .s2ctl_text p {
        padding: 0;
        background-color: initial;
        font-size: 3.2vw;
        text-align: center;
        margin-bottom: 5.867vw;
    }

    .s2ctl_text h2 {
        font-size: 6.1vw;
        padding-left: 0;
        text-align: center;
    }

    .s2ct_text {
        padding-left: 0;
    }

    .s2ct_text p.s2ctt_p {
        margin-bottom: 6.4vw;
        font-size: 3.2vw;
        text-align: center;
    }

    .s2ct_text a.readmore p {
        font-size: 3.733vw;
    }

    .s2ct_text a.readmore svg {
        width: 1.413vw;
        height: auto;
        margin-left: 1.867vw;
    }

    .s2c_bottom {
        padding: 10.667vw 0;
    }

    .news_contents ul li {
        padding: 4.267vw 0;
    }

    .news_contents ul li a {
        padding-right: 0;
        flex-wrap: wrap;
    }

    .news_contents ul li a time {
        margin-right: auto;
        margin-bottom: 4.533vw;
        font-size: 3.2vw;
        flex-shrink: 0;
        width: 100%;
    }

    .news_c_title {
        width: 74.933vw;
    }

    .n_c_t_p {
        width: 100%;
        height: 11.733vw;
        overflow: hidden;
        font-size: 3.733vw;
        line-height: 5.6vw;
        display: inline;
    }

    .news_contents ul li a svg {
        width: 1.419vw;
        height: auto;
        margin-left: auto;
        flex-shrink: 0;
    }

    a.news_more {
        margin-top: 9.333vw;
        font-size: 3.733vw;
    }

}

@media screen and (max-width: 375px) {

    /*
    section.s1 {
        padding: 40px 0 0;
    }

    .s_title {
        margin-bottom: 40px;
    }

    .s_title h2 {
        font-size: 30px;
        margin-bottom: 14px;
    }

    .s_title p {
        font-size: 18px;
    }

    .s1_contents {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }

    a.s1_content {
        width: 92%;
        margin-bottom: 40px;
    }

    .s1_img {
        height: 221px;
    }

    .s1_info {
        padding: 24px 8px 0;
    }

    a.s1_content h2 {
        font-size: 24px;
        margin-bottom: 32px;
    }

    .s1c_text {
        padding-bottom: 8px;
        min-height: initial;
        margin-bottom: 23px;
        max-width: 100%;
    }

    .s1c_text p {
        font-size: 12px;
        line-height: 18px;
    }

    .s1_more {
        width: max-content;
        max-width: initial;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin-left: auto;
    }

    .s1_more p {
        font-size: 14px;
    }

    .s1_more svg {
        padding-right: 0;
        width: 5px;
        height: auto;
        margin-left: 8px;
    }

    .s2c_top {
        flex-direction: column;
    }

    .s2ct_bg {
        width: 100%;
        height: 251px;
    }

    .s2ct_info {
        position: relative;
        padding: 0;
        width: 92%;
        margin: auto;
        margin-top: -80px;
    }

    .s2ct_info_inner {
        width: 100%;
        max-width: 100%;
        align-items: center;
    }

    .s2ct_logos {
        width: 100%;
        position: relative;
    }

    .s2ct_logos img {
        width: 286px;
        left: 0;
        right: 0;
    }

    .s2ctl_text {
        padding-top: 45px;
        padding-bottom: 34px;
        position: relative;
    }

    .s2ctl_text p {
        padding: 0;
        background-color: initial;
        font-size: 12px;
        text-align: center;
        margin-bottom: 22px;
    }

    .s2ctl_text h2 {
        font-size: 32px;
        padding-left: 0;
        text-align: center;
    }

    .s2ct_text {
        padding-left: 0;
    }

    .s2ct_text p.s2ctt_p {
        margin-bottom: 24px;
        font-size: 12px;
        text-align: center;
    }

    .s2ct_text a.readmore p {
        font-size: 14px;
    }

    .s2ct_text a.readmore svg {
        width: 5.3px;
        height: auto;
        margin-left: 7px;
    }

    .s2c_bottom {
        padding: 40px 0;
    }

    .news_contents ul li {
        padding: 16px 0;
    }

    .news_contents ul li a {
        padding-right: 0;
        flex-wrap: wrap;
    }

    .news_contents ul li a time {
        margin-right: auto;
        margin-bottom: 17px;
        font-size: 12px;
        flex-shrink: 0;
        width: 100%;
    }

    .news_c_title {
        width: 281px;
    }

    .n_c_t_p {
        width: 100%;
        height: 44px;
        overflow: hidden;
        font-size: 14px;
        line-height: 21px;
    }

    .news_contents ul li a svg {
        width: 5.32px;
        height: auto;
        margin-left: auto;
        flex-shrink: 0;
    }

    a.news_more {
        margin-top: 35px;
        font-size: 14px;
    }
    */

}


/*スマホ横の場合*/


/*@media only screen and (max-device-height: 480px) and (orientation: landscape) {}*/


/*media queryここまで*/


/*IEの場合*/


/* IE11 は最初に *::-ms-backdrop, をつける */


/* IE10 より前はそのまま */


/*@media all and (-ms-high-contrast:none){
    *::-ms-backdrop, .class {
        padding-top: 15px ;
    }

    .class {
        padding-top: 15px ;
    }

}*/


/*Firefoxの場合*/


/*@-moz-document url-prefix() {
}*/


/*safariの場合*/


/*::-webkit-full-page-media, :future, :root クラス名 {
}*/


/*--------------------------------------------------------------------
下層ページ
--------------------------------------------------------------------*/

/*-------------------
ページ共通
-------------------*/



/*------------------パンくずリストここから------------*/


.inner.breadcrumb_inner {
    width: 1092px;
    padding: 15px 0;
}

.breadcrumg-area {
    width: 100%;
}

.breadcrumg-area ul {
    padding-left: 0;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
}

.breadcrumg-area ul li {
    display: inline;
    position: relative;
    padding-left: 17px;
    margin-left: 10px;
    font-size: 13px;
}

.breadcrumg-area ul li::before {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    content: "";
    color: #333;
    width: 6.6px;
    height: 11px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(./img/icon_right_arrow.svg);
}

.breadcrumg-area ul li:first-child {
    padding-left: 0;
    margin-left: 0;
}

.breadcrumg-area ul li:first-child::before {
    display: none;
}

/*------------------パンくずリストここまで------------*/

section.page_mv {
    width: 100%;
    height: 288px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page_mv_bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

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

main.pages {
    height: auto;
    overflow: hidden;
}

section.page_mv h2,
section.page_mv h1 {
    position: relative;
    font-size: 44px;
    color: #fff;
    font-weight: 600;
}


.inner.pages_inner {
    width: 972px;
}

.page_title {
    margin: 64px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.page_title h2 {
    font-size: 84px;
    color: #f5f5f5;
    font-weight: bold;
    white-space: nowrap;
}

.page_title p {
    padding-bottom: 15px;
    position: relative;
    font-size: 32px;
    color: #23318d;
    font-weight: 600;
    margin-top: -0.7em;
}

.page_title p:after {
    position: absolute;
    content: "";
    width: 50px;
    height: 1px;
    background-color: #23318d;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    pointer-events: none;
}

.page_contents {
    margin-bottom: 80px;
    display: block;
}

main.pages.pages_post_page .page_contents {
    font-size: 16px;
    line-height: 1.7;
}

main.pages.pages_post_page .page_contents img {
    height: auto;
}

main.pages.pages_post_page .page_contents li,
main.pages.pages_post_page .page_contents p {
    font-size: 1em;
}

main.pages.pages_post_page .page_contents p {
    margin-block-start: 1em;
    margin-block-end: 1em;
}

main.pages.pages_post_page .page_contents h1,
main.pages.pages_post_page .page_contents h2 {
    font-size: 32px;
    margin-block-start: 45px;
    margin-block-end: 25px;
    font-weight: 500;
    color: #0062b2;
    border-top: 3px;
    border-bottom: 3px;
    border-style: solid;
    padding: 5px 15px;
}

main.pages.pages_post_page .page_contents h3 {
    font-size: 30px;
    margin-block-start: 45px;
    margin-block-end: 25px;
    font-weight: 500;
    color: #0062b2;
    border-bottom: 3px;
    border-style: solid;
    padding: 5px 15px;
}

main.pages.pages_post_page .page_contents h6,
main.pages.pages_post_page .page_contents h5,
main.pages.pages_post_page .page_contents h4 {
    display: block;
    margin-block-start: 45px;
    margin-block-end: 25px;
    font-weight: 500;
    font-size: 24px;
    color: #0062b2;
    padding-left: 12px;
    border-left: 4px;
    border-style: solid;
}

main.pages.pages_post_page .page_contents ul {
    display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 1.5em;
}

main.pages.pages_post_page .page_contents ol {
    display: block;
    list-style-type: decimal;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 1.5em;
}

main.pages.pages_post_page .page_contents table {
    display: table;
    border-collapse: collapse;
    box-sizing: border-box;
    text-indent: initial;
    border-spacing: 2px;
    border-color: grey;
}

main.pages.pages_post_page .page_contents tbody {
    display: table-row-group;
    vertical-align: middle;
    border-color: inherit;
}

main.pages.pages_post_page .page_contents thead {
    border-bottom: 3px solid;
}

main.pages.pages_post_page .page_contents tfoot {
    border-top: 3px solid;
}

main.pages.pages_post_page .page_contents th {
    display: table-cell;
    vertical-align: inherit;
    font-weight: bold;
    text-align: -internal-center;
}

main.pages.pages_post_page .page_contents td {
    border-collapse: separate;
    text-indent: initial;
    border-spacing: 2px;
}

main.pages.pages_post_page .page_contents figcaption {
    color: #555;
    font-size: 13px;
    text-align: center;
}

main.pages.pages_post_page .page_contents a {
    color: #0062B2;
    text-decoration: underline;
}

main.pages.pages_post_page .page_contents em {
    font-style: italic;
}

.wp-block-table td,
.wp-block-table th {
    border: 1px solid;
    padding: .5em;
    word-break: normal;
    font-size: 12px;
}

@media screen and (max-width: 767px) {

    section.page_mv {
        height: 65.6vw;
    }

    section.page_mv h2,
    section.page_mv h1 {
        font-size: 8.533vw;
    }

    .page_title h2 {
        font-size: 8.533vw;
    }

    .page_title p {
        padding-bottom: 4vw;
        font-size: 6.4vw;
        margin-top: -0.3em;
    }

/*
    section.page_mv {
        height: 246px;
    }

    section.page_mv h2,
    section.page_mv h1 {
        font-size: 32px;
    }

    .page_title h2 {
        font-size: 32px;
    }

    .page_title p {
        padding-bottom: 15px;
        font-size: 24px;
        margin-top: -0.7em;
    }
*/
}

@media screen and (max-width: 600px) {

    .pc600-only {
        display: none;
    }

    .sp600-only {
        display: block;
    }


    .inner.breadcrumb_inner {
        padding: 15px 0;
    }

    .breadcrumg-area ul li {
        font-size: 10px;
    }

    section.page_mv {
        height: 246px;
    }

    /*.page_title h2 {
        font-size: 32px;
    }

    .page_title p {
        padding-bottom: 15px;
        font-size: 24px;
        margin-top: -0.3em;
    }*/

    .page_title {
        margin: 40px 0;
        text-align: center;
    }

    .page_contents {
        margin-bottom: 40px;
    }

    main.pages.pages_post_page .page_contents {
        font-size: 12px;
        line-height: 1.8;
    }

    main.pages.pages_post_page .page_contents h1,
    main.pages.pages_post_page .page_contents h2 {
        font-size: 16px;
        margin-block-start: 40px;
        margin-block-end: 20px;
        font-weight: 500;
        color: #0062b2;
        border-top: 3px;
        border-bottom: 3px;
        border-style: solid;
        padding: 5px 15px;
    }

    main.pages.pages_post_page .page_contents h3 {
        font-size: 14px;
        margin-block-start: 40px;
        margin-block-end: 20px;
        font-weight: 500;
        color: #0062b2;
        border-bottom: 3px;
        border-style: solid;
        padding: 5px 15px;
    }

    main.pages.pages_post_page .page_contents h6,
    main.pages.pages_post_page .page_contents h5,
    main.pages.pages_post_page .page_contents h4 {
        display: block;
        margin-block-start: 40px;
        margin-block-end: 20px;
        font-weight: 500;
        font-size: 12px;
        color: #0062b2;
        padding-left: 12px;
        border-left: 4px;
        border-style: solid;
    }

    main.pages.pages_post_page .page_contents figcaption {
        font-size: 10px;
    }

}

/*----------------------------------------------------------------------
sitemap サイトマップ
----------------------------------------------------------------------*/

main.pages_post_page.pages_sitemap .page_contents a {
    color: #242424;
}

/*----------------------------------------------------------------------
information 新着情報一覧
----------------------------------------------------------------------*/

.inner.information_inner {
    width: 879px;
}

.news_select_wrapper {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.news_select_text {
    font-size: 16px;
    color: #000;
    margin-right: 10px;
}

.news_select {
    position: relative;
}

.news_select select {
    border: 1px solid #d9d9d9;
    border-radius: 0;
    height: 39px;
    padding: 0 10px;
    padding-right: 30px;
    font-size: 16px;
    color: #000;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.news_select select::-ms-expand {
  display: none;
}

.news_select svg {
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 12.92px;
    height: auto;
    pointer-events: none;
}

.archive_title {
    border-left: 4px solid #0062b2;
    padding-left: 10px;
    font-size: 18px;
    color: #0062b2;
    line-height: 1.2em;
    padding-bottom: 1px;
    font-weight: 500;
    margin-bottom: 20px;
}

.pagination_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 63px;
    width: 100%;
}

.pagination_wrapper .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination_wrapper .nav-links .page-numbers {
    width: 40px;
    height: 40px;
    border: 1px solid #0062b2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 8px;
    font-size: 18px;
    color: #0062b2;
    box-sizing: border-box;
}

.pagination_wrapper .nav-links .page-numbers.current,
.pagination_wrapper .nav-links a.page-numbers:hover {
    border: 1px solid #0062b2;
    background-color: #0062b2;
    color: #fff;
    opacity: 1;
}

.pagination_wrapper .nav-links .page-numbers svg {
    width: 6.07px;
    height: auto;
}

.pagination_wrapper .nav-links a.page-numbers:hover svg path {
    fill: #fff;
}

.pagination_wrapper .nav-links .page-numbers.dots {
    padding-top: 10px;
}

@media screen and (max-width: 600px) {

    .pagination_wrapper {
        margin-top: 40px;
    }

    .news_select_wrapper {
        margin-bottom: 15px;
    }

    .pagination_wrapper .nav-links .page-numbers {
        width: 6.897vw;
        height: 6.897vw;
        margin: 0 1.379vw;
        font-size: 3.103vw;
    }

    .pagination_wrapper .nav-links .page-numbers.dots {
        padding-top: 1.724vw;
    }

    .pagination_wrapper .nav-links .page-numbers svg {
        width: 1.047vw;
    }

    /*
    .pagination_wrapper .nav-links .page-numbers {
        width: 40px;
        height: 40px;
        margin: 0 8px;
        font-size: 18px;
    }

    .pagination_wrapper .nav-links .page-numbers.dots {
        padding-top: 10px;
    }

    .pagination_wrapper .nav-links .page-numbers svg {
        width: 6.07px;
    }

    */
}

/*----------------------------------------------------------------------
sigle page 記事詳細
----------------------------------------------------------------------*/

.single_page_contents {
    margin-top: 63px;
}

.inner.single_inner {
    width: 972px;
}

.sigle_cat_date {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.single_cats {
    margin-left: auto;
}

.sigle_title {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.sigle_title h1 {
    font-weight: bold;
    font-size: 32px;
    line-height: 1.8;
}

.single_thumbnail {
    margin-bottom: 55px;
}

.pdf_open_btn,
.news_back_btn {
    margin-top: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
}

main.pages.pages_post_page .page_contents .pdf_open_btn a,
main.pages.pages_post_page .page_contents .news_back_btn a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    width: 250px;
    height: 44px;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid;
    box-sizing: border-box;
}

main.pages.pages_post_page .page_contents .news_back_btn a {
    background-color: #0062b2;
    border-color: #0062b2;
}

main.pages.pages_post_page .page_contents .pdf_open_btn a {
    background-color: #FF0000;
    border-color: #FF0000;
}

main.pages.pages_post_page .page_contents .news_back_btn a:hover {
    background-color: #fff;
    color: #0062b2;
    opacity: 1;
}

main.pages.pages_post_page .page_contents .pdf_open_btn a:hover {
    background-color: #fff;
    color: #FF0000;
    opacity: 1;
}

main.sigle_page .wp-block-table td,
main.sigle_page .wp-block-table th {
    border: 2px solid #fff;
    background-color: #f6f6f6;
    color: #000;
}

main.sigle_page .wp-block-table tr td:first-child {
    background-color: #f4f4f9;
}

@media screen and (max-width: 600px) {

    .single_page_contents {
        margin-top: 40px;
    }

    .sigle_cat_date {
        margin-bottom: 24px;
    }

    .sigle_title {
        margin-bottom: 24px;
    }

    .sigle_title h1 {
        font-size: 16px;
    }

    .single_thumbnail {
        margin-bottom: 24px;
    }

    .pdf_open_btn, .news_back_btn {
        margin-top: 40px;
    }

}


/*----------------------------------------------------------------------
contact お問い合わせ
----------------------------------------------------------------------*/

.inner.contact_inner {
    width: 871px;
}

.contact_form_top {
    margin-bottom: 64px;
    text-align: center;
}

.contact_form_top p {
    font-size: 24px;
    margin-bottom: 29px;
    font-weight: bold;
}

.contact_form_top p:last-child {
    margin-bottom: 0;
}

.contact_form_top p span {
    color: #0062B2;
}

.contact_form_wrapper {
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    width: 100%;
    box-sizing: border-box;
    padding: 65px 85px;
}

.contact_form_wrapper table {
    width: 100%;
}

.contact_form_wrapper table tr {
    line-height: 1.3;
    color: #000;
    border-bottom: 1px solid #aaa;
}

.contact_form_wrapper table th p {
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact_form_wrapper table th {
    text-align: left;
    padding: 35px 25px;
    box-sizing: border-box;
    width: 240px;
    min-width: 240px;
    vertical-align: top;
}

.contact_form_wrapper table td {
    padding: 35px 25px;
    padding-left: 20px;
}

.contact_form_wrapper table th span.ct-red {
    width: 35px;
    height: 26px;
    border-radius: 2px;
    background: #f55;
    font-size: 12px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact_form_wrapper table textarea,
.contact_form_wrapper table input {
    border: 1px solid #ccc;
    border-radius: 2px;
    padding: 10px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
    outline: none;
}

.contact_form_wrapper table input {
    height: 46px;
}

.contact_form_wrapper table textarea {
    height: 99px;
    resize: none;
}

.contact_form_wrapper table textarea#your-address {
    height: 70px;
}

.contact_form_wrapper table tr:first-child th,
.contact_form_wrapper table tr:first-child td {
    padding-top: 0;
}

.contact-submit-btn {
    margin-top: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

button.contact-submit {
    height: 60px;
    background-color: #0062b2;
    border: 1px solid #0062b2;
    width: 100%;
    box-sizing: border-box;
    font-weight: 500;
    font-size: 18px;
    color: #fff;
    transition: 0.3s;
}

button.contact-submit:hover {
    background-color: #fff;
    border-color: #0062b2;
    color: #0062b2;
}


.mw_wp_form_complete h2 {
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.mw_wp_form_complete p {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
}

.mw_wp_form_complete p a {
    margin-top: 40px;
    width: 300px;
    max-width: 100%;
    height: 60px;
    background-color: #0062b2;
    border: 1px solid #0062b2;
    box-sizing: border-box;
    font-weight: 500;
    font-size: 18px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mw_wp_form_complete p a:hover {
    background-color: #fff;
    border-color: #0062b2;
    color: #0062b2;
    opacity: 1;
}


@media screen and (max-width: 850px) {

    .contact_form_wrapper {
        padding: 40px;
    }

    .contact_form_wrapper table tr {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 16px 8px;
        width: 100%;
        box-sizing: border-box;
    }
    .contact_form_wrapper table tr:first-child {
        padding-top: 0;
    }

    .contact_form_wrapper table th {
        padding: 0;
        width: 100%;
        min-width: initial;
        margin-bottom: 15px;
    }

    .contact_form_wrapper table th p {
        justify-content: flex-start;
    }

    .contact_form_wrapper table th span.ct-red {
        margin-left: 8px;
    }

    .contact_form_wrapper table td {
        padding: 0;
        width: 100%;
    }

}

@media screen and (max-width: 500px) {

    .contact_form_top {
        margin-bottom: 40px;
        text-align: center;
    }

    .contact_form_top p {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .contact_form_wrapper {
        padding: 32px 8px;
    }

    .contact_form_wrapper table th p {
        font-size: 16px;
    }

    .contact_form_wrapper table th span.ct-red {
        height: 18px;
        font-size: 10px;
    }

    .contact_form_wrapper table textarea {
        height: 200px;
    }

    .contact-submit-btn {
        margin-top: 32px;
        padding: 0 8px;
        box-sizing: border-box;
    }

    button.contact-submit {
        height: 44px;
        font-size: 16px;
    }

    .mw_wp_form_complete p {
        font-size: 14px;
    }

    .mw_wp_form_complete p a {
        height: 44px;
        font-size: 16px;
    }

}

/*----------------------------------------------------------------------
location 拠点一覧
----------------------------------------------------------------------*/

.inner.loc_inner {
    width: 1020px;
}

.loc_map {
    width: 810px;
    max-width: 100%;
    margin: auto;
    margin-bottom: 64px;
}

.loc_content {
    margin-bottom: 64px;
}

.loc_c_title {
    margin-bottom: 44px;
}

.loc_c_title h2 {
    font-size: 24px;
    font-weight: bold;
}

.loc_content table {
    width: 100%;
}

.loc_content table tr {
    border-bottom: 1px solid #0062b2;
}

.loc_content table tr:first-child {
    border-top: 1px solid #0062b2;
}

.loc_content table td {
    font-size: 14px;
    padding: 26px 16px;
    box-sizing: border-box;
}

.loc_content table td.td_title {
    width: 195px;
    min-width: 195px;
    font-size: 18px;
    vertical-align: middle;
}

.loc_content table td.td_info {
    width: 100%;
    padding-left: 0;
}

.loc_content table td.td_tel_link {
    width: 290px;
    min-width: 290px;
    padding-left: 0;
}

.td_zip_map {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 18px;
}

.td_zip_map a {
    margin-left: 13px;
    width: 47px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0062b2;
    color: #fff;
    border: 1px solid #0062b2;
    box-sizing: border-box;
}

.td_zip_map a:hover {
    background-color: #fff;
    color: #0062b2;
    border-color: #0062b2;
}

td.td_tel_link ul li {
    margin-bottom: 18px;
}

td.td_tel_link ul.td_ul_hp li {
    margin-bottom: 8px;
}

td.td_tel_link ul.td_ul_hp li:last-child,
td.td_tel_link ul li:last-child {
    margin-bottom: 0;
}

li.td_hp a {
    color: #0062B2;
}

@media screen and (max-width: 980px) {

    .loc_content table td.td_tel_link {
        width: 200px; 
        min-width: 200px;
    }

}

@media screen and (max-width: 880px) {

    .loc_content table tr {
        width: 100%;
        display: flex;
        flex-direction: column;
        padding: 32px 24px;
        box-sizing: border-box;
    }

    .loc_content table td.td_title {
        padding-left: 0;
    }

    .td_add p {
        line-height: 1.8;
    }

    .loc_content table td.td_tel_link {
        width: 100%;
    }

}

@media screen and (max-width: 600px) {

    .loc_c_title {
        margin-bottom: 40px;
    }

    .loc_content {
        margin-bottom: 40px;
    }

    .loc_content table td.td_title {
        padding: 0;
        margin-bottom: 24px;
    }

    .loc_content table td.td_info {
        padding: 0;
        /*margin-bottom: 24px;*/
        margin-bottom: 0;
    }

    .loc_content table td.td_tel_link {
        padding: 0;
    }

    td.td_tel_link ul.td_ul_hp li,
    td.td_tel_link ul li {
        margin-bottom: 10px;
    }

    .loc_c_title h2 {
        padding-left: 10px;
    }

}


/*----------------------------------------------------------------------
items injection-molding 射出成形
----------------------------------------------------------------------*/

.inner.items_inner {
    width: 1052px;
}

section.items_s.items_s1 {
    background-color: #f3f7f9;
    padding: 64px 0;
}

section.items_s .page_title {
    margin-top: 0;
    white-space: nowrap;
    word-break: keep-all;
}

section.items_s.items_s1 .page_title h2 {
    color: #000;
    opacity: 0.05;
}

.is_top_text {
    margin-bottom: 64px;
}

.is_top_text p {
    font-size: 17px;
    line-height: 1.8;
    text-align: center;
    font-weight: bold;
}

.is1_imgs {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.is1_img {
    width: 520px;
}

.is1_img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.is1_img .i06_imgs_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.is1_img .i06_imgs_wrapper img {
    width: 50%;
}

.is1_img p {
    text-align: center;
    font-size: 18px;
    margin-top: 24px;
}

.is1_imgs_bottom_p {
    text-align: center;
    font-size: 18px;
    margin-top: 24px;
}

section.items_s.items_s2 {
    padding: 64px 0;
}

.is2_imgs {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    margin: auto;
    margin-bottom: -23px;
}

.is2_imgs.item01_is2_imgs {
    width: 850px;
}

.is2_img {
    width: 170px;
    margin-bottom: 23px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.is2_imgs.item01_is2_imgs span.is2_img_hidden {
    width: 100%;
}

.is2_img img {
    width: 170px;
    height: 170px;
    object-fit: cover;
    margin-bottom: 18px;
}

.is2_img p {
    text-align: center;
    font-size: 18px;
    white-space: nowrap;
}

section.items_s.items_s3 {
    padding: 115px 0 96px;
}

.items_s3_bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

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

section.items_s.items_s3 .inner.items_inner {
    position: relative;
    z-index: 1;
}

.items_s3_title {
    color: #fff;
    text-align: center;
    margin-bottom: 64px;
}

.items_s3_title h2 {
    margin-bottom: 24px;
    letter-spacing: 0.1em;
    opacity: 0.5;
    font-size: 80px;
    font-weight: bold;
}

.items_s3_title p {
    font-size: 42px;
    letter-spacing: 0.1em;
    font-weight: bold;
}

.items_s3_contents {
    width: 918px;
    max-width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    margin: auto;
}

.items_s3_content {
    width: 100%;
    position: relative;
    padding: 32px;
    box-sizing: border-box;
}

.items_s3_content:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0.7;
}

.items_s3_content .items_s3_content_inner {
    position: relative;
}

.items_s3_content_inner p {
    font-size: 24px;
    line-height: 1.8;
    color: #000;
    font-weight: bold;
}

.item01_table_wrapper td,
.item01_table_wrapper th {
    padding-top: 20px;
}

.item01_table_wrapper td p,
.item01_table_wrapper th p{
    font-size: 23px;
}

.item01_table_wrapper th {
    text-align: left;
    /* word-break: keep-all; */
    padding-right: 10px;
}

.item01_table_wrapper th p {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    white-space: nowrap;
}

.item01_table_wrapper th p span {
    margin-left: auto;
}



@media screen and (max-width: 1150px) {

    .is1_img {
        width: 45.217vw;
    }

    .is1_img img {
        height: 27.826vw;
    }

}

@media screen and (max-width: 1050px) {

    .inner.items_inner .page_title h2 {
        font-size: 8vw;
    }

}

@media screen and (max-width: 980px) {

    .is2_imgs.item01_is2_imgs span.is2_img_hidden {
        width: 170px;
    }

    .is2_imgs.item01_is2_imgs {
        width: 400px;
    }

}

@media screen and (max-width: 767px) {

    .inner.items_inner .page_title h2 {
        font-size: 8.533vw;
    }

.item01_table_wrapper tr {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.item01_table_wrapper td {
    padding-top: 0;
}

}

@media screen and (max-width: 600px) {

    .is_top_text {
        margin-bottom: 40px;
    }

    .is_top_text p {
        font-size: 16px;
        line-height: 1.5;
    }

    .is1_imgs {
        flex-direction: column;
        align-items: center;
        margin-bottom: -24px;
    }

    .is1_img {
        width: 100%;
        margin-bottom: 24px;
    }

    .is1_img img {
        /*height: 211px;*/
        height: 56.267vw;
    }

    .is1_img p {
        text-align: center;
        font-size: 12px;
        margin-top: 16px;
    }

    .is1_imgs_bottom_p {
        text-align: center;
        font-size: 12px;
        margin-top: 16px;
    }

    section.items_s.items_s2 {
        padding: 40px 0;
    }

    .is2_imgs,
    .is2_imgs.item01_is2_imgs {
        width: 343px;
    }

    .is2_img {
        width: 160px;
    }

    .is2_img img {
        width: 160px;
        height: 160px;
        margin-bottom: 16px;
    }

    .is2_img p {
        font-size: 12px;
    }

    section.items_s.items_s3 {
        padding: 80px 0;
    }

    .items_s3_title {
        margin-bottom: 40px;
    }

    .items_s3_title h2 {
        font-size: 40px;
        margin-bottom: 16px;
    }

    .items_s3_title p {
        font-size: 24px;
    }

    .items_s3_content {
        padding: 32px 16px;
    }

    .items_s3_content_inner p {
        font-size: 16px;
        text-align: center;
    }

    .item01_table_wrapper td p, .item01_table_wrapper th p {
        font-size: 16px;
        text-align: left;
    }

}

@media screen and (max-width: 375px) {

    .is2_img {
        width: 42.667vw;
    }

    .is2_img img {
        width: 42.667vw;
        height: 42.667vw;
    }

}

/*----------------------------------------------------------------------
vacuum-forming 真空成形
----------------------------------------------------------------------*/

.is2_imgs.item02_is2_imgs {
    width: 800px;
}

.is2_img.is2_img_w {
    width: 360px;
}

.is2_img_w_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.is2_img_w_inner img {
    margin-left: 0;
    margin-right: 0;
}


@media screen and (max-width: 580px) {
    .is2_imgs.item02_is2_imgs {
        width: 343px;
        flex-direction: column;
        align-items: center;
    }
    .is2_img.is2_img_w {
        max-width: 100%;
    }
}

/*----------------------------------------------------------------------
extrusion-molding 押出成形
----------------------------------------------------------------------*/

section.items_s.items_s3.items_s3_3col .inner.items_inner {
    width: 1100px;
}

section.items_s.items_s3.items_s3_3col  .items_s3_contents {
    width: 100%;
}

.items_s3_3col .items_s3_content {
    /* width: 360px; */
    width: 32.7%;
    min-height: 287px;
    padding: 26px;
    padding-top: 85px;
}

.items_s3_3col .items_s3_content_inner h3 {
    text-align: center;
    font-size: 26px;
    margin-bottom: 50px;
    font-weight: bold;
}

.items_s3_3col .items_s3_content_inner p {
    font-size: 16px;
}

.is2_imgs.item03_is2_imgs {
    width: 400px;
}

@media screen and (max-width: 1100px) {

    section.items_s.items_s3.items_s3_3col .items_s3_contents {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        margin-bottom: -24px;
    }

    .items_s3_3col .items_s3_content {
        width: 800px;
        max-width: 100%;
        margin-bottom: 24px;
        padding: 32px;
        min-height: initial;
    }

    .items_s3_3col .items_s3_content .items_s3_content_inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }

    .items_s3_3col .items_s3_content_inner h3 {
        margin-bottom: 34px;
    }

}

@media screen and (max-width: 600px) {

    .items_s3_3col .items_s3_content_inner p {
        text-align: left;
    }

    .items_s3_3col .items_s3_content {
        padding: 32px 16px;
    }

}

@media screen and (max-width: 580px) {

    .is2_imgs.item03_is2_imgs {
        width: 343px;
    }

    .items_s3_3col .items_s3_content_inner h3 {
        font-size: 24px;
    }

}

/*----------------------------------------------------------------------
expansion-molding 発泡成形とは
----------------------------------------------------------------------*/

.is2_imgs.item04_is2_imgs {
    width: 694px;
}

.items_s3_3col.p4_3col .items_s3_content {
    padding-top: 40px;
}

.items_s3_3col.p4_3col .items_s3_content_inner h3 {
    margin-bottom: 40px;
    white-space: nowrap;
}

.items_s3_3col.p4_3col .items_s3_content .items_s3_content_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.item_04_page .items_s1_contents .is1_imgs {
    justify-content: center;
}

.items_s3_3col .items_s3_content_inner h3.is_long {
    font-size: 22px;
}

@media screen and (max-width: 1100px) {

    .items_s3_3col .items_s3_content_inner h3.is_long {
        font-size: 26px;
    }

}

@media screen and (max-width: 580px) {

    .is2_imgs.item04_is2_imgs {
        width: 343px;
    }

    .items_s3_3col.p4_3col .items_s3_content_inner h3 {
        margin-bottom: 35px;
        font-size: 24px;
    }

    .items_s3_3col.p4_3col .items_s3_content_inner h3.is_long {
        font-size: 21px;
    }

}

@media screen and (max-width: 365px) {

    .items_s3_3col.p4_3col .items_s3_content_inner h3.is_long,
    .items_s3_3col.p4_3col .items_s3_content_inner h3 {
        /*font-size: 19px;*/
        font-size: 5.067vw;
    }

}

/*----------------------------------------------------------------------
fields 工業包装領域
----------------------------------------------------------------------*/

section.items_s.item06_s.i06_bg_gy {
    background-color: #f3f7f9;
}

section.items_s.item06_s.i06_bg_gy .page_title h2 {
    color: #000;
    opacity: 0.05;
}

section.items_s.item06_s {
    padding: 64px 0;
}

.is2_imgs.item06_is2_imgs {
    justify-content: center;
}

.is2_imgs.item06_is2_imgs .is2_img {
    margin-left: 25px;
    margin-right: 25px;
}

.item06_label {
    margin: 64px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    box-sizing: border-box;
    border-top: 3px solid #0062b2;
    border-bottom: 3px solid #0062b2;
}

.item06_label h3 {
    font-size: 32px;
    color: #0062b2;
}

.is1_img.item06_is1_img {
    position: relative;
}

.item06_is1_img_text:before {
    content: "";
    position: absolute;
    background: linear-gradient( 90deg, #036 0%, #0062b2 50.2%, #036 100%);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.item06_is1_img_text {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    /*min-height: 122px;*/
    padding: 14px 38px;
    box-sizing: border-box;
    text-align: center;
}

.item06_is1_img_text h4, .item06_is1_img_text p {
    position: relative;
    color: #fff;
}

.item06_is1_img_text h4 {
    font-size: 23px;
    font-weight: bold;
    /*margin-bottom: 12px;*/
}

.item06_is1_img_text p {
    margin-top: 0;
    font-size: 12px;
    line-height: 1.5;
    font-weight: bold;
}

.item06_is2_imgs02_text p {
    text-align: center;
    font-size: 18px;
    white-space: nowrap;
}

.is1_imgs.item06_is1_imgs.single_flex {
    justify-content: center;
}

.is2_imgs.item06_is2_imgs .is2_img img {
    margin-bottom: 0;
}

section.items_s.item06_s .is_top_text {
    margin: 40px 0;
}

.is1_imgs.item06_is1_imgs_3col .is1_img.item06_is1_img {
    width: 32.5%;
}

a.item_p_a {
    color: #0261b2;
    text-decoration: underline;
}

@media screen and (max-width: 1150px) {

    .item06_is1_img_text {
        /*min-height: 10.609vw;*/
        padding: 1.217vw 3.304vw;
    }

    .item06_is1_img_text h4 {
        font-size: 2vw;
        /*margin-bottom: 1.043vw;*/
    }

    .item06_is1_img_text p {
        font-size: 1.043vw;
    }

/*
    .item06_is1_img_text {
        min-height: 122px;
        padding: 14px 38px;
    }

    .item06_is1_img_text h4 {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .item06_is1_img_text p {
        font-size: 12px;
    }
*/

}

@media screen and (max-width: 970px) {

    .is2_imgs.item06_is2_imgs .is2_img {
        margin-left: 0;
        margin-right: 0;
    }

    .is2_imgs.item06_is2_imgs {
        justify-content: space-between;
        width: 380px;
    }

    .is1_imgs.item06_is1_imgs {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        margin-bottom: -24px;
    }

    .is1_img.item06_is1_img {
        margin-bottom: 24px;
        width: 520px;
        max-width: 100%;
    }

    .is1_img.item06_is1_img img {
        height: 320px;
    }

    .item06_is1_img_text {
        /*min-height: 122px;*/
        padding: 14px 38px;
    }

    .item06_is1_img_text h4 {
        font-size: 23px;
        /*margin-bottom: 12px;*/
    }

    .item06_is1_img_text p {
        font-size: 12px;
    }

    .is1_imgs.item06_is1_imgs_3col .is1_img.item06_is1_img {
        width: 520px;
    }

}

@media screen and (max-width: 600px) {

    /*.is2_imgs.item06_is2_imgs.item06_is2_imgs02 .is2_img {
        margin-bottom: 0;
    }*/

    .is2_imgs.item06_is2_imgs.item06_is2_imgs02 {
        margin-bottom: 0;
    }

    .item06_is2_imgs02_text p {
        font-size: 12px;
    }

    .item06_label {
        margin: 40px 0;
    }

    .item06_label h3 {
        font-size: 24px;
        color: #0062b2;
    }

    .is1_img.item06_is1_img {
        width: 100%;
    }

    .is1_imgs.item06_is1_imgs_3col .is1_img.item06_is1_img {
        width: 100%;
    }

    .is1_img.item06_is1_img img {
        height: 85.6vw;
    }

    .item06_is1_img_text {
        /*min-height: 32.533vw;*/
        padding: 4.267vw 2.133vw;
    }

    .item06_is1_img_text h4 {
        font-size: 3.8vw;
        /*margin-bottom: 3.2vw;*/
    }

    .item06_is1_img_text p {
        font-size: 3.2vw;
    }


    /*
    .is1_img img {
        height: 321px;
    }

    .item06_is1_img_text {
        min-height: 122px;
        padding: 16px 8px;
    }

    .item06_is1_img_text h4 {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .item06_is1_img_text p {
        font-size: 12px;
    }
    */



}



/*----------------------------------------------------------------------
高島の強み
----------------------------------------------------------------------*/

section.strengths_contents {
    margin-bottom: 96px;
}

.strengths_content {
    position: relative;
}

.str_c_bg {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}

.str_c_bg img {
    width: 50%;
    margin: 0;
    height: 531px;
    object-fit: cover;
}

.inner.strengths_c_inner {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    width: 1000px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.str_c_info_wrapper {
    width: 530px;
    height: 407px;
    position: relative;
}

.str_c_info_wrapper:after {
    content: "";
    position: absolute;
    left: 13px;
    top: 8px;
    width: 100%;
    height: 100%;
    background: linear-gradient(255deg ,#0062b2 0%, #001a33 100%);
    opacity: 0.7;
}

.str_c_info {
    background-color: #fff;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    padding: 97px 60px;
    box-sizing: border-box;
}

.str_c_info .num {
    position: absolute;
    top: -27px;
    left: 22px;
    font-size: 67px;
    color: #0062b2;
    font-weight: bold;
}

.str_c_info h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 34px;
}

.str_c_info p {
    font-size: 16px;
    line-height: 1.8;
}

.is_reverse .str_c_bg {
    justify-content: flex-start;
}

.is_reverse .inner.strengths_c_inner {
    justify-content: flex-end;
}

@media screen and (max-width: 760px) {

    section.strengths_contents {
        margin-bottom: 48px;
    }

    .strengths_content {
        margin-bottom: 48px;
    }

    .inner.strengths_c_inner {
        position: relative;
        top: initial;
        left: initial;
        right: initial;
        margin-top: -250px;
    }

    .str_c_bg img {
        width: 80%;
        margin: 0;
        height: 400px;
        object-fit: cover;
    }

}


@media screen and (max-width: 600px) {


    .str_c_bg img {
        width: 92%;
        height: 76vw;
    }

    .is_reverse .str_c_bg,
    .str_c_bg {
        justify-content: center;
    }

    .inner.strengths_c_inner {
        position: relative;
        top: initial;
        left: initial;
        right: initial;
        margin-top: -2.133vw;
    }

    .str_c_info_wrapper {
        width: 89.333vw;
        height: auto;
    }

    .str_c_info {
        padding: 14.4vw 9.067vw;
    }

    .str_c_info_wrapper:after {
        left: 2.667vw;
    }

    .is_reverse .inner.strengths_c_inner {
        justify-content: flex-start;
    }

    .str_c_info .num {
        top: -5vw;
        left: 4vw;
        font-size: 11.2vw;
    }

    .str_c_info h3 {
        font-size: 4.8vw;
        margin-bottom: 5.867vw;
    }

    .str_c_info p {
        font-size: 3.733vw;
    }

/*
    .str_c_bg img {
        width: 92%;
        height: 285px;
    }

    .is_reverse .str_c_bg,
    .str_c_bg {
        justify-content: center;
    }

    .inner.strengths_c_inner {
        position: relative;
        top: initial;
        left: initial;
        right: initial;
        margin-top: -8px;
    }

    .str_c_info_wrapper {
        width: 335px;
        height: auto;
    }

    .str_c_info {
        padding: 54px 34px;
    }

    .str_c_info_wrapper:after {
        left: 10px;
    }

    .is_reverse .inner.strengths_c_inner {
        justify-content: flex-start;
    }

    .str_c_info .num {
        top: -17px;
        left: 14px;
        font-size: 42px;
    }

    .str_c_info h3 {
        font-size: 18px;
        margin-bottom: 22px;
    }

    .str_c_info p {
        font-size: 14px;
    }
*/
}

/*----------------------------------------------------------------------
items functional-foam-material 機能性発泡材料
item_07_page
----------------------------------------------------------------------*/

.bg_gy {
    background-color: #f3f7f9;
    padding: 1px 0;
}

.bg_gy .page_title h2 {
    color: #000;
    opacity: 0.05;
}

.ffm_s1_contents {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: auto;
    margin-bottom: 64px;
    width: 1052px;
    max-width: 100%;
}

.ffm_s1_content {
    width: 500px;
    max-width: 48%;
}

.ffm_s1_text {
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    width: 100%;
    box-sizing: border-box;
}

.ffm_s1_text h2 {
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 24px;
}

.ffm_s1_text p {
    font-size: 16px;
    line-height: 1.8;
}

.ffm_white {
    padding: 64px 0;
}

.ffm_stc_title h2 {
    margin-bottom: 64px;
    text-align: center;
    padding: 15px 0;
    font-size: 32px;
    color: #0062b2;
    border-top: 3px solid  #0062b2;
    border-bottom: 3px solid #0062b2;
}

.ffm_stc_img {
    max-width: 100%;
    margin-bottom: 64px;
}

.ffm_stc_img img {
    width: 850px;
}

.ffm_stc_text {
    margin-bottom: 64px;
}

.ffm_stc_text p {
    font-size: 17px;
    line-height: 1.8;
    text-align: center;
    font-weight: bold;
}

.ffm_stc_text.ffm_stc_text_big p {
    font-size: 24px;
    line-height: 1.8;
}

.white_wrapper {
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    padding: 30px;
    width: 100%;
    box-sizing: border-box;
}

.ffm_s_contents {
    margin-bottom: 64px;
}

.ffm_s_content.white_wrapper {
    margin-bottom: 64px;
}

.ffm_s_flex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

section.ffm_s.ffm_s2 .ffm_s_f_right {
    width: 483px;
    max-width: 45%;
    margin-left: 30px;
    flex-shrink: 0;
}

.ffm_s_f_left h3 {
    font-size: 24px;
    line-height: 1.8;
    margin-bottom: 20px;
}

p.ffm_s_l_p {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 30px;
}

p.ffm_s_l_p span {
    margin: 0 0.5em;
}

.ffm_s_l_flex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.ffm_s_l_text {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
}

.ffm_s_l_img img {
    margin: 0;
    width: 203px;
    height: 155px;
    object-fit: contain;
}

.ffm_s2_p {
    margin-top: 28px;
}

.ffm_s2_p p {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.8;
}

.ffm_s_l_flex.s_l_flex_col {
    flex-direction: column;
}

.ffm_s_l_flex.s_l_flex_col .ffm_s_l_img {
    margin-left: auto;
}

.ffm_s_f_right.ffm_c2_right {
    width: 956px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 55%;
    margin-top: 70px;
    margin-bottom: 70px;
}

.ffm_s_f_right.ffm_c2_right img {
    object-fit: contain;
    max-width: 37%;
    margin: 0;
}

img.ffm_c2_r_01 {
    width: 229px;
    height: 172px;
}

img.ffm_c2_r_02 {
    width: 228px;
    height: 174px;
}

.ffm_s_content.ffm_s3_c_03 {
    margin-bottom: 15px;
}

.ffm_s_content.ffm_s3_c_03 h2 {
    font-weight: bold;
    font-size: 24px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.ffm_s_content.ffm_s3_c_03 p {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.8;
}

.ffm_s_content.ffm_s3_c_03 p span {
    margin: 0 0.5em;
}

p.white_wrapper_bottom_p {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.8;
}

section.ffm_s.ffm_s2 .ffm_s_contents {
    margin-bottom: 0;
}

section.ffm_s.ffm_s4 .ffm_s_contents img {
    width: 1052px;
}

.inner.ffm_inner,
.inner.ffm_s_inner {
    width: 1100px;
}

.ffm_s3_c_01 .ffm_s_f_left {
    width: 100%;
    max-width: 455px;
}

.ffm_s3_c_01 .ffm_s_f_right {
    width: 483px;
    max-width: 48%;
    margin-left: 30px;
    flex-shrink: 0;
}

.ffm_s3_c_01 .ffm_s_l_img {
    margin-top: 20px;
}

.ffm_s3_c_01 .ffm_s_l_img img {
    width: 314px;
    height: auto;
}

section.ffm_s.ffm_s5 {
    padding-top: 63px;
}

.ffm_s.ffm_s5 .ffm_stc_title h2 {
    border: 0;
    padding: 0;
    padding-bottom: 15px;
    position: relative;
    font-size: 31px;
}

.ffm_s.ffm_s5 .ffm_stc_title h2:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 50px;
    height: 1px;
    background-color: #23318d;
    margin: auto;
}

.ffm_s5_flex {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.ffm_s5_flex.s5_flex_c {
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.ffm_s5_flex.s5_flex_c img {
    width: auto;
    height: 160px;
    margin: 0 5px;
}

.ffm_s5_subtitle {
    margin-bottom: 64px;
}

.ffm_s5_subtitle h3 {
    font-size: 24px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.ffm_s5_subtitle p {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.ffm_s5_left {
    flex-shrink: 0;
    margin-right: 40px;
}

.ffm_s5_left {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.8;
}

.ffm_s5_left p {
    font-size: 16px;
}

.ffm_arrow_bottom {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.ffm_s5_subtitle h3 {
    font-size: 24px;
    line-height: 1.8;
    margin: auto;
    margin-bottom: 20px;
    text-align: center;
    width: max-content;
    max-width: 100%;
    position: relative;
}

.ffm_s5 .ffm_stc_text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.ffm_stc_text ul li {
    font-size: 17px;
    line-height: 1.8;
    font-weight: bold;
    text-indent: -1em;
    padding-left: 1em;
}

.ffm_s5_block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ffm_s5_block p {
    font-size: 17px;
    line-height: 1.8;
    font-weight: 500;
}

.ffm_s5_chart {
    margin-top: 60px;
}

.ffm_s5_flex.s5_flex_reverse {
    flex-direction: column-reverse;
}

.ffm_s5_flex.s5_flex_reverse .ffm_s5_right img {
    width: 433px;
}

.ffm_s5_white {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    width: 100%;
    box-sizing: border-box;
}

.ffm_s5_white p {
    font-size: 16px;
    line-height: 1.8;
}

sub {
    vertical-align: sub;
    font-size: smaller;
}

sup {
    font-size: smaller;
}



@media screen and (max-width: 1140px) {

    .ffm_s1 .page_title h2 {
        font-size: 7vw;
    }

    p.ffm_s_l_p span {
        display: block;
        margin: 10px 80px;
        width: max-content;
        transform: rotate(90deg);
    }

}

@media screen and (max-width: 767px) {

    .ffm_s1_contents {
        flex-direction: column;
        margin-bottom: 10px;
    }

    .ffm_s1_content {
        max-width: 100%;
        margin: auto;
        margin-bottom: 25px;
    }

    .ffm_s1_text {
        margin-bottom: 40px;
        padding: 30px 16px;
    }

    .ffm_s1_text h2 {
        font-size: 18px;
        margin-bottom: 24px;
    }

    .ffm_stc_title h2 {
        margin-bottom: 40px;
        padding: 20px 0;
        font-size: 24px;
    }

    .ffm_stc_img {
        margin-bottom: 40px;
    }

    .ffm_stc_text {
        margin-bottom: 40px;
    }

    .ffm_s_content.white_wrapper {
        margin-bottom: 40px;
        padding: 30px 15px;
    }

    .ffm_s_flex {
        flex-direction: column;
        align-items: center;
    }

    .ffm_s_f_left h3 {
        font-size: 18px;
        margin-bottom: 24px;
    }

    p.ffm_s_l_p {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .ffm_s_l_text {
        flex-shrink: 0;
        margin-right: 20px;
    }

    .ffm_s_l_img img {
        height: auto;
        object-fit: contain;
    }

    section.ffm_s.ffm_s2 .ffm_s_f_right {
        margin: auto;
        margin-top: 24px;
        max-width: 100%;
    }

    .ffm_s2_p {
        margin-top: 24px;
    }

    .ffm_s2_p p {
        font-weight: 500;
        font-size: 10px;
        line-height: 1.5;
    }

    .ffm_stc_text p {
        font-size: 16px;
    }

    .ffm_stc_text.ffm_stc_text_big p {
        font-size: 18px;
    }

    .ffm_s3_c_01 .ffm_s_f_right {
        max-width: 100%;
        margin: auto;
        margin-top: 24px;
    }

    .ffm_s_f_right.ffm_c2_right {
        max-width: 100%;
        margin: auto;
        margin-top: 24px;
    }

    .ffm_s_f_right.ffm_c2_right img {
        max-width: 43%;
        height: auto;
    }

    .ffm_arrow {
        width: 14px;
    }

    .ffm_arrow svg {
        width: 100%;
        height: auto;
    }

    section.ffm_s.ffm_s5 {
        padding-top: 40px;
    }

    .ffm_s.ffm_s5 .ffm_stc_title h2 {
        font-size: 24px;
        line-height: 1.3;
    }

    .ffm_s5_subtitle h3 {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 40px;
    }

    .ffm_s5_left p {
        font-size: 14px;
    }

    .ffm_s5_flex {
        flex-direction: column;
    }

    .ffm_s5_left {
        font-size: 14px;
        margin: 0;
        margin-bottom: 24px;
    }

    .ffm_stc_text ul li {
        font-size: 16px;
    }

    .ffm_s5_block p {
        font-size: 14px;
    }

    .ffm_s5_white {
        padding: 30px 15px;
    }

    .ffm_arrow_bottom svg {
        width: 18px;
        height: auto;
    }

    .ffm_arrow_bottom {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .ffm_s5_flex.s5_flex_reverse .ffm_s5_left {
        display: none;
    }

    .ffm_s_contents {
        margin-bottom: 40px;
    }

    .ffm_s5_subtitle {
        margin-bottom: 40px;
    }

    .ffm_s5_contents_wrapper {
        margin-bottom: 64px;
    }

    .ffm_s_content.ffm_s3_c_03 {
        margin-bottom: 15px;
    }

    .ffm_s_l_flex.s_l_flex_col .ffm_s_l_img {
        margin: auto;
        margin-top: 20px;
    }

    .ffm_s_content.ffm_s3_c_03 p span {
        display: block;
        margin: 10px 80px;
        width: max-content;
        transform: rotate(90deg);
    }
    .ffm_s5_flex.s5_flex_c img {
        margin-bottom: 10px;
        width: 100%;
        max-width: 350px;
        height: auto;
    }
}

/*----------------------------------------------------------------------
design-technology 高島の設計技術
item_07_page_02
----------------------------------------------------------------------*/

.item_07_page_02 section.ffm_s.ffm_s5 {
    padding-top: 0;
}


/*----------------------------------------------------------------------
high-performance-foam-cushioning-material 高機能発泡緩衝材
item_07_page_03
----------------------------------------------------------------------*/

.item_07_page_03 section.ffm_s.ffm_s5 {
    padding-top: 0;
}

.page_title.min.en_small h2 {
    font-size: 50px;
}

@media screen and (max-width: 1200px) {

    .page_title.min.en_small h2 {
        font-size: 4.2vw;
    }

}

@media screen and (max-width: 767px) {

    .page_title.min.en_small h2 {
        font-size: 7vw;
    }

}















/*-------------------
aaaaaaaaaaaaaa
-------------------*/