@charset "utf-8";
html{
    scroll-padding-top: 136px;
}
body {
    overflow-x: hidden;
}
/*pcは固定ヘッダーの高さ分*/
@media screen and (max-width: 1350px) {
    html{
    scroll-padding-top: 116px;
    }
}
@media screen and (max-width: 1200px) {
    html{
    scroll-padding-top: 84px;
    }
}
/*tb・spは固定ヘッダー＋下層menu固定(約50px)の高さ分*/
@media screen and (max-width: 800px) {
    html{
    scroll-padding-top: 140px;/*moto70px*/
    }
}
@media screen and (max-width: 480px) {
    html{
    scroll-padding-top: 110px;/*moto60px*/
    }
}
/*コンテンツ枠組み*/
.content_wrap {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    /*追加↓*/
    flex-direction: row;
}
.content_wrap section {
    padding: 0 0 3em 0;
}
.content_wrap section:not(:nth-child(1)) {
    padding: 3em 0;
}
.content_wrap section:last-child:not(:only-child) {
    padding: 3em 0 6em 0;
}
.content_wrap section:nth-child(odd) {
    position: relative;
    background: none;
}
.content_wrap section:nth-child(odd)::before {
    content: "";
    position: absolute;
    top: 0;
    left: calc((100vw - 1440px)/-2);
    width: 100vw;
    height: 100%;
    background-color: #f7f8f9;
    z-index: -1;
}

.content_wrap.contact {
    display: block;
}
main {
    width: 75%;
    max-width: 1000px;
}
.align-left {
    padding-left: calc((100% - 1440px) / 2 + 0px);
}
.sidebar {
    width: 20%;
    max-width: 300px;
}
.sidebar-inner {
    position: sticky;
    top: 142px;
    /* max-height: calc(100vh - 100px); */
}

.sidebar-inner .sidebar-menu {
    /* margin: 0 0 3em 0; */
    padding: 0 0 3em 0;
    /*↓追加*/
   /* display: none; */
}
.sidebar-inner .sidebar-menu .sidebar-item {
    padding: 0 0 1em 0;
}
.sidebar-inner h5 {
    font-size: var(--fsize-20);
    font-weight: 500;
    padding: 1em 0 .2em 0;
    margin: 0 0 1em 0;
    position: relative;
}

.sidebar-inner ul {
    line-height: 2.1;
    padding-left: 1em;
}
.sidebar-inner ul a {
    color: #372b37;
}
.sidebar-inner ul a:hover {
    opacity: 0.8;
}
.sidebar-accordion {
    /* display: none; */
    width: 20%;
}
/*追加↓*/
.sidebar-btnwrap {
    display: none;
} 
/* .sidebar-inner.common.sidebar-content {
    display: block !important;
}*/
 
@media screen and (max-width: 1440px) {
    .content_wrap {
        max-width: 95%;
    }
    .content_wrap section:nth-child(odd)::before {
        /* left: 50%;
        transform: translateX(calc(-50% - (100vw * 0.76 - 100%)/2)); */
        left: -2.5vw;
        transform: unset;
    }
    /* .content_wrap #book section:nth-child(odd)::before {
        left: -2.6%;
        transform: unset;
    } */
    .align-left {
        padding-inline: 2%;
    }
}
@media screen and (max-width: 1300px) {
    .sidebar-inner {
        top: 126px;
    }
    .sidebar-inner .sidebar-menu {
       margin: 0 0 1.5em 0;
    }
    .sidebar-inner .sidebar-menu .sidebar-item {
       padding: 0 0 .5em 0;
    }
    .sidebar-inner h5 {
       padding: .8em 0 .2em 0;
       margin: 0 0 .5em 0;
       font-size: var(--fsize-18);
    }
}
@media screen and (max-width: 1200px) {
    .sidebar-inner {
        top: 94px;
    }
    .sidebar-inner h5 {
        font-size: var(--fsize-16);
    }
    .sidebar-inner ul {
        padding: .5em;
    }
}
@media screen and (max-width: 1000px) {
    .sidebar-inner ul {
        font-size: var(--fsize-14);
    }
}
@media screen and (max-width: 800px) {
    .content_wrap {
        flex-direction: column-reverse;
        /* flex-direction: column; */
    }
    .content_wrap section {
        padding: 0 0 2em 0;
    }
    .content_wrap section:nth-child(odd)::before {
        left: 50%;
        transform: translateX(-50%);
    }
    .content_wrap section:last-child:not(:only-child) {
        padding: 2em 0 4em 0;
    }
    main {
        width: 100%;
    }
    .sidebar {
        width: 100%;
        max-width: none;
        margin: 0 0 2em 0;
        display: none;/*追加箇所*/
    }
    /* .sidebar-inner .sidebar-menu li {
        padding: 0 0 1em 0;
    } */
    .sidebar-inner ul {
        line-height: 2.5;
    }
    .sidebar-inner h5 {
        margin: 0;
        padding: .5em 0 .2em 0;
    }
    /*以下6つ追加箇所*/
    .sidebar-accordion { 
        display: block;
        background-color: #f7f8f9; 
        position: sticky;
        top: 84px;
        z-index: 9;
        width: 100%;
        border-radius: 4px;
    }
    .sidebar-toggle {
        color: var(--color-white);
        background-color: var(--color-blue);
        border: none;
        border-radius: 4px;
        margin: 1em 0;
        font-size: var(--fsize-14);
        padding: .4em 1em .4em .6em;
        cursor: pointer;
        position: relative;
    }
    .sidebar-toggle::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 5px;
    width: 5px;
    height: 5px;
    margin: auto;
    border-top: 1px solid var(--color-white);
    border-right: 1px solid var(--color-white);
    transform: rotate(135deg);
    box-sizing: border-box;
    transition: all 0.3s;
    }
    .sidebar-toggle.is-open::after {
    transform: rotate(-45deg);
    transition: all 0.3s;
    }
    .sidebar-toggle span {
        font-size: var(--fsize-12);
        margin: 0 0 0 .5em;
    }
    .sidebar-toggle:hover {
        opacity: 0.8;
    }
 .sidebar-content {
        padding: 0 1em;
        background-color: #f7f8f9;
        inset: 0;
    position: fixed;
    top: 138px;
    max-height: calc(100vh - 138px);   
    left: 0;
    right: 0;
    z-index: 1000;   /* フッターより上 */
    display: none;   /* JS の slideToggle と互換 */
    }
/*↓追加*/
    .sidebar-btnwrap {
        display: block;
        margin-bottom: 20px;
    }
   
/* .sidebar-content {
    max-height: 100vh;
    height: calc(100vh - 84px); 
    overflow-y: auto;
    
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
    position: relative;
} */
 .body-fixed {
  position: fixed;
  width: 100%;
  overflow: hidden; 
}
  .sidebar-content.open {
        display: block;
    }
     /* .sidebar-content.open {
  opacity: 1;
  visibility: visible;
} */
    .sidebar-content .sidebar-inner {
        position: static;
    }
    body:has(.sidebar-content.open) {
        overflow-y: hidden;
    } 

}
@media screen and (max-width: 480px) {
    .content_wrap section {
        padding: 0 0 1em 0;
    }
    .sidebar-content {
        top: 104px;
        max-height: calc(100vh - 104px);
    }
    .sidebar-accordion {
        top: 66px; 
    }
    .sidebar-toggle {
        margin: 0.5em 0;
    }
}

/*下層ページ共通パーツ*/
.sub_mv {
    height: 225px;
    display: flex;
    align-items: center;
    margin-top: 136px;
}
.sub_mv h2 {
    font-size: var(--fsize-32);
    display: flex;
    flex-direction: column;
    letter-spacing: 0.08em;
    position: relative;
    line-height: 1.3;
}

.sub_mv h2 span {
    font-family: var(--font-en);
    font-size: var(--fsize-16);
    color: #372b37;
    font-weight: 400;
    letter-spacing: 0.04em;
}
.sub_mv h2::after {
    content: '';
    width: 100px;
    height: 100px;
    position: absolute;
    right: -4em;
    top: 0;
    bottom: 0;
    margin: auto 0;
}
h3 {
    color: var(--color-white);
    font-size: var(--fsize-28);
    letter-spacing: 0.06em;
    display: flex;
    align-items: center;
    border-radius: 4px;
    width: 100%;
    min-height: 68px;
    padding-inline: 18px;
    padding-block: 12px;
    margin: 0 0 1em 0;
    line-height: 1.3;
}

h4 {
    font-size: var(--fsize-22);
    margin: 1.8em 0 1em 18px;
    position: relative;
}
h4::before {
    content: '';
    position: absolute;
    width: 5px;
    height: 30px;
    border-radius: 2px;
    left: -18px;
}
h5 {
    font-size: var(--fsize-20);
    font-weight: 500;
    color: #372b37;
    position: relative;
    padding: .5em 0;
    border-bottom: 1px solid #e2e2e2;
    margin: unset;
    line-height: 1.5;
}
h5::before {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 20%;
    height: 1px;
    content: '';
}
h6 {
    font-size: var(--fsize-18);
    font-weight: 500;
    color: #372b37;
    position: relative;
    margin: 1.5em 0 0 1.2em;
}
h6::before {
    content: '◆';
    position: absolute;
    width: auto;
    height: auto;
    left: -1.2em;
}
h4, h5, h6 {
    letter-spacing: 0.04em;
}
/*ページ毎の色変更箇所*/
.sub_mv.management h2 ,
#management h4 ,
#management h6::before ,
#management caption span ,
#management .editor ul li::marker ,
#management ol.katakana-iroha > li::before ,
#management ol.decimal > li::before ,
#management thead {
    color: #5e8c3e;
}
#management h4::before ,
#management th {
    background-color: #d3ddca;
}
#management h3 ,
#management h5::before ,
.sidebar-inner.management h5::before {
    background-color: #5e8c3e;
}
#management td ,
#management .text_box {
    background-color: #edf2e8;
}
.sub_mv.management {
    background-color: rgba(94,140,62,0.24);
}
.sub_mv.management h2::after {
    background: url("../img/square_green.svg") no-repeat center / contain;
}
.sidebar-inner.management .sidebar-menu .sidebar-item {
     border-top: 2px dashed #5e8c3e;
}
.sidebar-inner.management .sidebar-menu .sidebar-item:last-child {
    border-bottom: 2px dashed #5e8c3e;
}

/*赤（建築鉄骨）*/
.sub_mv.arkinfo h2 ,
#arkinfo h4 ,
#arkinfo h6::before ,
#arkinfo caption span ,
#arkinfo .editor ul li::marker ,
#arkinfo ol.katakana-iroha > li::before ,
#arkinfo ol.decimal > li::before ,
#arkinfo thead {
    color: #863148;
}
#arkinfo h4::before ,
#arkinfo th {
    background-color: #e5c9cc;
}
#arkinfo h3 ,
#arkinfo h5::before ,
.sidebar-inner.arkinfo h5::before {
    background-color: #863148;
}
#arkinfo td ,
#arkinfo .text_box {
    background-color: #f4e8e9;
}
.sub_mv.arkinfo {
    background-color: rgba(134,49,22,0.24);
}
.sub_mv.arkinfo h2::after {
    background: url("../img/square_red.svg") no-repeat center / contain;
}
.sidebar-inner.arkinfo .sidebar-menu .sidebar-item {
     border-top: 2px dashed #863148;
}
.sidebar-inner.arkinfo .sidebar-menu .sidebar-item:last-child {
    border-bottom: 2px dashed #863148;
}
/*オレンジ（工場）*/
.sub_mv.qminfo h2 ,
#qminfo h4 ,
#qminfo h6::before ,
#qminfo caption span ,
#qminfo .editor ul li::marker ,
#qminfo ol.katakana-iroha > li::before ,
#qminfo ol.decimal > li::before ,
#qminfo thead {
    color: #b46112;
}
#qminfo h4::before ,
#qminfo th {
    background-color: #f0d2a6;
}
#qminfo h3 ,
#qminfo h5::before ,
.sidebar-inner.qminfo h5::before {
    background-color: #b46112;
}
#qminfo td ,
#qminfo .text_box {
    background-color: #fbf4ea;
}
#qminfo table {
  border-collapse: collapse
}
#qminfo th,
#qminfo td {
  border-right: 1.5px solid #b0a89f;
  border-bottom: 1.5px solid #b0a89f;
}
/* 最終列 */
#qminfo tr th:last-child,
#qminfo tr td:last-child {
  border-right: none;
}
/* 最終行 */
#qminfo tbody tr:last-child th,
#qminfo tbody tr:last-child td {
  border-bottom: none;
}

.sub_mv.qminfo {
    background-color: rgba(180,97,18,0.24);
}
.sub_mv.qminfo h2::after {
    background: url("../img/square_orange.svg") no-repeat center / contain;
}
.sidebar-inner.qminfo .sidebar-menu .sidebar-item {
     border-top: 2px dashed #b46112;
}
.sidebar-inner.qminfo .sidebar-menu .sidebar-item:last-child {
    border-bottom: 2px dashed #b46112;
}
/*深緑（書籍）*/
main#book {
    max-width: initial;
    width: 100%;
}
.sub_mv.book h2 ,
#book h4 ,
#book h6::before ,
#book caption span ,
#book .editor ul li::marker ,
#book ol.katakana-iroha > li::before ,
#book ol.decimal > li::before ,
#book thead {
    color: #18453d;
}
#book h4::before ,
#book th {
    background-color: #b6cbc7;
}
#book h3 ,
#book h5::before ,
.sidebar-inner.book h5::before {
    background-color: #18453d;
}
#book td ,
#book .text_box {
    background-color: #e6f0ee;
}
#book th {
    border-right: 1px solid #FFF;
}
#book th:last-of-type {
    border-right: none;
}
#book td {
    text-align: center;
    border-right: 1px solid #FFF;
    border-bottom: 1px solid #FFF;
}
#book td:nth-of-type(2) {
    width: 10%;
}
#book td:last-of-type {
    text-align: left;
    border-right: none;
}
#book tr:last-child td {
    border-bottom: none;
}
.sub_mv.book {
    background-color: rgba(24,69,61,0.24);
}
.sub_mv.book h2::after {
    background: url("../img/square_deepgreen.svg") no-repeat center / contain;
}
.sidebar-inner.book .sidebar-menu .sidebar-item {
     border-top: 2px dashed #18453d;
}
.sidebar-inner.book .sidebar-menu .sidebar-item:last-child {
    border-bottom: 2px dashed #18453d;
}

/*グレー（申請書）*/
main#notification {
    max-width: initial;
    width: 100%;
}
.sub_mv.notification h2 ,
#notification h4 ,
#notification h6::before ,
#notification caption span ,
#notification .editor ul li::marker ,
#notification ol.katakana-iroha > li::before ,
#notification ol.decimal > li::before ,
#notification thead {
    color: #444;
}
#notification h4::before ,
#notification th {
    background-color: #d6d6d6;
}
#notification h3 ,
#notification h5::before ,
.sidebar-inner.notification h5::before {
    background-color: #444;
}
#notification td ,
#notification .text_box {
    background-color: #f0f0f0;
}
#notification th {
    border-right: 1px solid #FFF;
    border-bottom: 1px solid #FFF;
}
#notification tbody th {
    text-align: unset;
}
/* #notification th:last-of-type {
    border-right: none;
} */
#notification td {
    text-align: center;
    border-right: 1px solid #FFF;
    border-bottom: 1px solid #FFF;
}
#notification .editor img {
    width: auto;
}
.sub_mv.notification {
    background-color: rgba(68,68,68,0.24);
}
.sub_mv.notification h2::after {
    background: url("../img/square_gray.svg") no-repeat center / contain;
}
.sidebar-inner.notification .sidebar-menu .sidebar-item {
     border-top: 2px dashed #444;
}
.sidebar-inner.notification .sidebar-menu .sidebar-item:last-child {
    border-bottom: 2px dashed #444;
}
/*青（センター概要）*/
.sub_mv.center h2 ,
#center h4 ,
#center h6::before ,
#center caption span ,
#center .editor ul li::marker ,
#center ol.katakana-iroha > li::before ,
#center ol.decimal > li::before ,
#center thead {
    color: #0d446e;
}
#center h4::before ,
#center th {
    background-color: #b8c8d7;
}
#center h3 ,
#center h5::before ,
.sidebar-inner.center h5::before {
    background-color: #0d446e;
}
#center td ,
#center .text_box {
    background-color: #e8eef3;
}
.sub_mv.center {
    background-color: rgba(13,68,110,0.24);
}
.sub_mv.center h2::after {
    background: url("../img/square_blue.svg") no-repeat center / contain;
}
.sidebar-inner.center .sidebar-menu .sidebar-item {
     border-top: 2px dashed #0d446e;
}
.sidebar-inner.center .sidebar-menu .sidebar-item:last-child {
    border-bottom: 2px dashed #0d446e;
}
#center .flex {
    display: flex;
    flex-wrap: wrap;
    margin-left: 2em;
    padding: 0;
    box-sizing: border-box;
}
#center .flex li {
    width: calc( 50% - 2em );
    padding-right: 2em;
}

/*その他のページ（共通）*/
.sub_mv.common h2 ,
#common h4 ,
#common h6::before ,
#common caption span ,
#common .editor ul li::marker ,
#common ol.katakana-iroha > li::before ,
#common ol.decimal > li::before ,
#common thead {
    color: #1d2088;
}
#common h4::before ,
#common th {
    background-color: #b8c8d7;
}
#common h3 ,
#common h5::before ,
.sidebar-inner.common h5::before {
    background-color: #1d2088;
}
#common td ,
#common .text_box {
    background-color: #e8eef3;
}
.sub_mv.common {
    background-color: rgba(29,32,136,0.24);
}
.sub_mv.common h2::after {
    background: url("../img/square_common.svg") no-repeat center / contain;
}
.sidebar-inner.common .sidebar-menu .sidebar-item {
    border-top: 2px dashed #1d2088;
    padding: 1em 0;
}
.sidebar-inner.common .sidebar-menu .sidebar-item:last-child {
    border-bottom: 2px dashed #1d2088;
}

/*パンくずリスト*/
.breadcrumb-list {
    color: #767676;
    font-size: var(--fsize-15);
    background-color: #f7f8f9;
}
.breadcrumb-list li {
    list-style: none;
    font-weight: 300;
}
.breadcrumb-list li a {
    color: #767676;
    position: relative;
}
.breadcrumb-list li a:hover {
    font-weight: 400;
}
.breadcrumb-list li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor; /* ←文字色と同じ色 */
  transition: all 0.3s;
  opacity: 0;
}
.breadcrumb-list li a:hover::before {
    opacity: 1;
}
.breadcrumb-menu {
    display: flex;
    margin: unset;
    gap: .5em;
    padding: 2.5em 0;
    letter-spacing: 0.04em;
    flex-wrap: wrap;
}
.breadcrumb-menu .breadcrumb-item {
    margin-left: 0;
    display: inline-block;
}
.breadcrumb-item:not(:last-child):after {
    content: '>';
    margin: 0 10px 0 15px;
}
.breadcrumb-menu li {
    display: inline-block;
}
.breadcrumb-menu li:last-child {
    margin-left: 0;
}
.editor ul {
    line-height: 1.8;
    padding: 0 0 0 1em;
    margin: 0 0 2.6em 0;
    list-style-type: disc;
}
ol {
    line-height: 1.8;
    padding: unset;
}
ol li {
    margin-left: 1.2em;
}
ol.katakana-iroha {
  list-style: none;
  counter-reset: iroha;
  margin-left: -1em;
}
ol.katakana-iroha > li {
  counter-increment: iroha;
  margin-left: 1em;
  position: relative;
}
ol.katakana-iroha > li::before {
  content: counter(iroha, katakana-iroha) ")";
  font-weight: 500;
}
ol.decimal {
  list-style: none;
  counter-reset: arabic;
}
ol.decimal > li {
  counter-increment: arabic;
  margin-left: 2.5em;
  position: relative;
  margin-bottom: 1em;
}
ol.decimal > li::before {
  content: "※"counter(arabic, decimal) ".";
  position: absolute;
  left: -2.5em;
}
ol.katakana {
  list-style: none;
  counter-reset: kana;
}
ol.katakana > li {
  counter-increment: kana;
  margin-left: 2.5em;
  position: relative;
}
ol.katakana > li::before {
  content: counter(kana, katakana) ")";
  position: absolute;
  left: -2.5em;
}

.editor p {
    margin: 0 0 1.5em 0;
    padding-top: .6em;
    line-height: 1.8;
}
table {
  width: 100%;
  margin: 1em 0 2em 0;
}
table tr {
    width: 100%;
    line-height: 1.8;
    vertical-align: baseline;
}
table caption {
    text-align: left;
    margin-bottom: 1em;
    font-size: var(--fsize-20);
    font-weight: 500;
}

thead th {
    font-weight: 500;
    text-align: center;
}
tbody th {
    text-align: left;  
}
th {
  padding: .7em 1em;
  font-weight: 400;
  /* white-space: nowrap; */
  min-width: 155px;
}
td {
  font-size: var(--fsize-16);
  padding: .5em 1em;
  vertical-align: middle;
}
/* .js_scroll.block td {
    white-space: nowrap;
} */
.editor table tbody strong {
    font-weight: 800;
}
.text_box {
    padding: .5em 1em;
    margin: 1em 0 0 0;
}
.editor a {
    color: #1d2088;
    font-weight: 600;
    position: relative;
}
.editor a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor; /* ←文字色と同じ色 */
  transition: all 0.3s;
  opacity: 0;
}
.editor a:hover::before {
    opacity: 1;
}
/*PDF画像のときは下線を出さない*/
.editor a:has(img)::before {
  display: none;
}
.editor a:has(img):hover {
    opacity: .8;
}
.editor a.pdf {
    position: relative;
    margin: .2em 1em .2em 0;
    display: inline-flex;
}
.editor a.pdf::after {
    content: '';
    position: absolute;
    background: url("../img/icon_blank.svg") no-repeat center / contain;
    width: .8em;
    height: .8em;
    top: 50%;
    right: -1em;
    transform: translateY(-50%);
}

.editor a.btn {
    color: #fdfdfd;
    background-color: #1d2088;
    padding: 1em 2.5em;
    border-radius: 8px;
    position: relative;
    margin: 0 1em 1.5em 0;
    display: block;
    width: fit-content;
    max-width: 100%;
    letter-spacing: 0.06em;
}
.editor a.btn:hover {
    opacity: 0.8;
}
.editor a.btn::before {
    content: '';
    position: absolute;
    background: url("../img/icon_pdf.svg") no-repeat center / contain;
    width: 1.2em;
    height: 1.2em;
    top: 0;
    bottom: 0;
    left: .8em;
    margin: auto;
    opacity: 1;
}
.editor a.btn.link::before {
    content: none;
}
.editor a.btn::after {
    content: '';
    position: absolute;
    background: none;
    top: 0;
    bottom: 0;
    right: 1em;
    width: 7px;
    height: 7px;
    margin: auto;
    border-top: 1px solid var(--color-white);
    border-right: 1px solid var(--color-white);
    transform: rotate(45deg);
}
.editor .editor_box {
    display: flex;
}
.editor img.aligncenter  {
	display: block;
	margin-inline-start: auto;
	margin-inline-end: auto;
}
.editor img.alignright {
    display: block;
	margin-inline-start: auto;
}
br.sp {
    display: none;
}
@media screen and (max-width: 1450px) {
    .sub_mv {
        margin-top: 130px;
    }
}
@media screen and (max-width: 1350px) {
    .sub_mv {
        margin-top: 116px;
    }
    td {
        min-width: 120px;
    }
}
@media screen and (max-width: 1200px) {
    .sub_mv {
        margin-top: 84px;
    }
    h3 {
        font-size: var(--fsize-26);
        min-height: 60px;
    }
    h5 {
        font-size: var(--fsize-18);
    }
    h6 {
        font-size: var(--fsize-16);
    }
    table {
        margin: 1em 0;
    }
    td {
        font-size: var(--fsize-14);
    }
    .editor td p {
        font-size: var(--fsize-14);
    }
    .editor p {
        margin: .5em 0 1em 0;
    }
}
@media screen and (max-width: 1000px) {
    .sub_mv h2::after {
        right: 0;
        top: -2em;
    }
    .editor .editor_box {
        display: inline-block;
    }
}
@media screen and (max-width: 800px) {
    .breadcrumb-menu {
        padding: 1.5em 0;
    }
    .breadcrumb-menu li {
        font-size: var(--fsize-13);
    }
    .sub_mv {
        height: 200px;
    }
    .sub_mv h2 {
        font-size: var(--fsize-28);
    }
    .sub_mv h2 span {
        font-size: var(--fsize-14);
    }
    h3 {
        font-size: var(--fsize-24);
        min-height: 56px;
    }
    h4 {
        font-size: var(--fsize-20);
    }
    ul li {
        font-size: var(--fsize-15);
    }
    ol li {
        font-size: var(--fsize-15);
    }
    .editor p {
        font-size: var(--fsize-15);
    }
    table {
        font-size: var(--fsize-15);
    }
    .js_scroll.block th {
        display: block;
    }
    .js_scroll.block td {
        display: block;
        white-space: wrap;
    }
    br.tb {
        display: block;
    }
}
@media screen and (max-width: 480px) {
    .breadcrumb-menu {
        padding: 1em 0;
        gap: 0;
        display: block;
    }
    .breadcrumb-menu li {
        font-size: var(--fsize-12);
    }
    .breadcrumb-item:not(:last-child):after {
        margin: 0 4px 0 6px;
    }
    .sub_mv {
        justify-content: center;
        height: 180px;
        margin-top: 66px;
    }
    .sub_mv h2 {
        font-size: var(--fsize-24);
    }
    .sub_mv h2::after {
        width: 70px;
        height: 70px;
        top: -50px;
    }
    h3 {
        font-size: var(--fsize-22);
        min-height: 50px;
    }
    h4 {
        font-size: var(--fsize-18);
    }
    h5 {
        font-size: var(--fsize-16);
    }
    ol.katakana > li {
        margin-left: 1.5em;
    }
    ol.katakana > li::before {
        left: -1.5em;
    }
    th {
        padding: .6em;
    }
    td {
        padding: .5em;
        min-width: 120px;
    }
    .js_scroll.scroll-hint.is-scrollable {
        margin-bottom: 1em;
    }
    br.sp {
        display: block;
    }
    #center .flex li {
        width: calc( 100% - 2em );
    }
}
/*svgの色変更テスト*/
/* #management .square .cls-1 {
    fill: #5e8c3e;
    opacity: .6;
}
#management .square .cls-2 {
        fill: none;
        stroke: #5e8c3e !important;
        stroke-miterlimit: 10;
      } */

/*コンテンツページ背景*/
.back {
    background-color: #f7f8f9;
}

/*新着情報*/
.content_wrap .news_wrap .category_wrap .news_category {
    font-size: var(--fsize-14);
    background-color: #f5f5f7;
    border-radius: 4px;
    padding: .3em .8em;
    white-space: nowrap;
}
.content_wrap .news_wrap .category_wrap .news_category.information {
    border: 2px solid #0d446e;
    padding: .3em .5em;
}
.content_wrap .news_wrap .category_wrap .news_category.management {
    border: 2px solid #5e8c3e;
    padding: .3em 1.5em;
}
.content_wrap .news_wrap .category_wrap .news_category.product {
    border: 2px solid #662e8e;
    padding: .3em 1.5em;
}
.content_wrap .news_wrap .category_wrap .news_category.ultrasound {
    border: 2px solid #863148;
    padding: .3em 1em;
}
.content_wrap .news_wrap .category_wrap .news_category.qminfo {
    border: 2px solid #b46112;
    padding: .3em 1.5em;
}
.content_wrap .news_wrap .category_wrap {
    display: flex;
    gap: .5em;
}

#common a {
    color: #1d2088;
    font-weight: 600;
    position: relative;
    font-size: var(--fsize-20);
}
#common a.btn {
    font-size: var(--fsize-16);
    font-weight: 500;
    color: var(--color-white);
    background-color: var(--color-blue);
    border: 1px solid var(--color-blue);
    padding: 1em 3.5em;
    border-radius: 6px;
    position: relative;
    letter-spacing: 0.06em;
}
#common a.btn.red {
    background-color: #863148;
    border: 1px solid #863148;
}
#common p a {
    font-size: var(--fsize-16);
}
#common .editor a.btn {
    color: var(--color-white);
}
#common .editor a.btn:hover {
    opacity: 0.7;
    background-color: var(--color-blue);
    color: var(--color-white);
}
#common .editor .btn_box {
    display: flex;
}
#common a.btn:hover {
    background-color: var(--color-white);
    color: var(--color-blue);
    border: 1px solid var(--color-blue);
}
#common a.btn.red:hover {
    background-color: #863148;
     border: 1px solid #863148;
}

#common a:hover {
    opacity: 0.7;
}
#common .editor img {
    margin: 1em 0;
}
#common h4 {
    margin: 2em 0 0 18px;
}

/* .content_wrap #common section:nth-child(odd)::before {
    content: none;
} */
/* .content_wrap.page #common section:nth-child(odd)::before {
    content: '';
} */
/* .content_wrap #common section:nth-child(1) {
    padding: 0;
} */
/* .content_wrap.page #common section:nth-child(1) {
    padding: 0 0 3em;
} */
.content_wrap.page main#common {
    max-width: unset;
    width: 100%;
}
.content_wrap #common section:not(:nth-child(1)) {
    padding: 3em 0;
}
.content_wrap.page #common section:not(:nth-child(1)) {
    padding: 3em 0;
}
.content_wrap #common section:last-child {
    padding: 3em 0 6em 0;
}
/*年別アーカイブ用*/
.content_wrap #common section:only-child {
    padding-top: 0;
}
#common dl {
    position: relative;
    padding: 0 0 .5em 0;
    border-bottom: 1px solid #e2e2e2;
    margin: 1.2em 0 0 1.2em;
    line-height: 1.5;
}
#common dl.infolist {
    border-bottom: none;
}
#common dl::before {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 20%;
    height: 1px;
    content: '';
    background-color: #1d2088;
}
#common dl.infolist::before {
    background-color:  transparent;
}
#common dl.text_box::before {
    background-color:  transparent;
}
#common dl dt {
    display: flex;
    gap: 3%;
    align-items: center;
}
#common dl dd {
    margin: 1em 0 0.5em 0;
}
#common dl dd > p:first-of-type {
    font-size: var(--fsize-20);
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.04em;
}
#common dl dd > a:first-of-type + p ,
#common dl dd > p:first-of-type + p {
    font-size: var(--fsize-16);
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.02em;
    margin: .5em 0;
}
.sidebar-inner.common h5 {
    padding: 0 0 .2em 0;
}
#common .news_wrap {
    display: flex;
    gap: 3%;
    align-items: center;
    
}
#common .news_wrap.detail {
     border-bottom: 1px solid #e2e2e2;
     position: relative;
     padding: 0 0 1em 1em;
}
#common .news_wrap.detail::before {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 20%;
    height: 1px;
    content: '';
    background-color: #1d2088;
}
@media screen and (max-width: 800px) {
#common .editor .btn_box {
    flex-direction: column;
}
}
/*下層ページの冒頭の抜粋お知らせ用*/
.news_lower {
    background-color: #f7f8f9;
    padding-bottom: 2em;
}
.news_lower.align-left {
   padding-right: calc((100% - 1440px) / 2 + 0px); 
}
.news_lower .news_inner {
    padding: 0 2em 1.5em 1em;
    background-color: #eee;
    border-radius: 4px;
}
.news_lower .news_inner p {
    line-height: 1.6;
    margin: .3em 0;
}
.news_lower .management {
    border: 1px solid #5e8c3e;
}
.news_lower .arkinfo {
    border: 1px solid #863148;
}
.news_lower .qminfo {
    border: 1px solid #b46112;
}
.news_lower .news_title {
    padding: 0;
    border: none;
}
.news_lower .news_title {
    color: #444;
    align-items: flex-end;
    padding-bottom: .3em;
}
.news_lower .news_title span {
    font-size: var(--fsize-22);
    margin-left: 1em;
}
.news_lower .news_title.management {
    border-bottom: 1px dashed #5e8c3e;
}
.news_lower .news_title.management span {
    color: #5e8c3e;
}
.news_lower .news_title.arkinfo {
    border-bottom: 1px dashed #863148;
}
.news_lower .news_title.arkinfo span {
    color: #863148;
}
.news_lower .news_title.qminfo {
    border-bottom: 1px dashed #b46112;
}
.news_lower .news_title.qminfo span {
    color: #b46112;
}
/* .news_lower a {
    color: #1d2088;
    padding: 0 0 0 1em;
}
.news_lower a:hover {
    opacity: 0.7;
} */
.news_lower .news_item div {
   display: flex;
   align-items: baseline;
   gap: 1em;
}
.news_lower .news_item div p {
    font-weight: 500;
}
.news_lower .news_item dd {
    margin: 0;
    line-height: 1.5;
}
.news_lower time{
    font-size: var(--fsize-16);
    letter-spacing: 0.04em;
    white-space: nowrap;
}
/*検索結果ページ用*/
.search-key p {
    margin: 0;
}
.search-list {
    padding: 0;
}
.search-list li {
    border-bottom: 1px solid #ccc;
}
.search-list p {
    line-height: 1.6;
}
/*404ページ用*/
.not_found p {
    margin: 0;
    line-height: 1.6;
}
.not_found .btn {
    display: inline-block;
    margin-top: 3em;
}
/*ページネーション*/
/*------------------------------------------
 pagination
--------------------------------------------*/
.pagination {
	width: 100%;
	margin: 80px auto 0;
	font-size: var(--fsize-16);
    font-weight: 500;
}
.pagination ul {
	display:-webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	flex-wrap: wrap;
    padding: 0;
}
.pagination ul li {
	margin: 0 .5%;
	padding-inline-start: 0;
}
.pagination ul li span {
	display:-webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	align-items: center;
	color: var(--color-blue);
	width: 40px;
	height: 44px;
	line-height: 1;
	border-radius: 10px;
}
.pagination ul li span.current {
	color: #FFF;
	border: 1px solid var(--color-blue);
	background-color: var(--color-blue);
}
.pagination ul li a {
	position: relative;
	display:-webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 44px;
	line-height: 1;
	color: var(--color-blue);
	border: 1px solid var(--color-blue);
	background-color: #FFF;
	text-decoration: none;
	border-radius: 10px;
}
.pagination ul li a:hover {
	border: 1px solid var(--color-blue);
	background: var(--color-blue);
	color: #FFF;
	opacity: 1;
}
/*上と同じだが上書きされてしまうため追記*/
#common .pagination ul li a:hover {
    border: 1px solid var(--color-blue);
	background: var(--color-blue);
	color: #FFF;
	opacity: 1;
}
.pagination a.next,
.pagination a.prev {
	width: auto;
	padding: 0 1em;
}
.pagination a.next::after {
	content: '';
	display: inline-block;
	width: 9px;
	height: 14px;
	margin-inline-start: .3em;
	background: url(../img/arrow1.svg) no-repeat center center;
	background-size: contain;
	transition: all .5s ease;
}
.pagination a.next:hover::after {
	background: url(../img/arrow1-w.svg) no-repeat center center;
	background-size: contain;
}
.pagination a.prev::before {
	content: '';
	display: inline-block;
	width: 9px;
	height: 14px;
	scroll-margin-inline-end: .3em;
	background: url(../img/arrow1.svg) no-repeat center center;
	background-size: contain;
	transform: rotate(180deg);
	transition: all .5s ease;
}
.pagination a.prev:hover::before {
	background: url(../img/arrow1-w.svg) no-repeat center center;
	background-size: contain;
	transform: rotate(180deg);
}
@media screen and (max-width: 800px) {
    .news_lower time {
       font-size: var(--fsize-14);
    }
}
@media screen and (max-width: 480px) {
    .pagination {
        margin-block-start: 40px;
    }
    .pagination a.next,
    .pagination a.prev {
        padding-inline: .5em;
    }
    .pagination ul li a,
    .pagination ul li span {
        width: 30px;
    }
}
@media screen and (max-width: 1400px) {
.news_lower.align-left {
        padding-inline: 2%;
    }
}
@media screen and (max-width: 1000px) {
    .content_wrap #common section:last-child {
        padding: 3em 0 4em 0;
    }
    #common a {
        font-size: var(--fsize-18);
    }
    #common dl dd > p:first-of-type {
    font-size: var(--fsize-18);
    }
    #common dl dd > a:first-of-type + p ,
    #common dl dd > p:first-of-type + p {
    font-size: var(--fsize-15);
}
    #common dl dt time {
        font-size: var(--fsize-14);
    }
}
@media screen and (max-width: 800px) {
    .content_wrap #common section:not(:nth-child(1)) {
        padding: 1em 0;
    }
    .content_wrap #common section:nth-child(1) {
        padding: 0 0 1em 0;
    }
    .content_wrap #common section:last-child {
        padding: 1em 0 4em 0;
    }
    #common h4 {
        margin: 1em 0 0 18px;
    }
    #common dl {
        margin: .8em 0 0 1em;
}
    #common dl dd {
        margin: .5em 0;
}
    #common dl dt time {
        font-size: var(--fsize-13);
    }
    #common dl dd > a:first-of-type + p, 
    #common dl dd > p:first-of-type + p {
        font-size: var(--fsize-14);
        line-height: 1.65;
    }
.content_wrap .news_wrap .category_wrap .news_category {
    font-size: var(--fsize-13);
}
.content_wrap .news_wrap .category_wrap .news_category.information {
    padding: .2em .4em;
}
.content_wrap .news_wrap .category_wrap .news_category.management {
    padding: .2em 1em;
}
.content_wrap .news_wrap .category_wrap .news_category.product {
    padding: .2em 1em;
}
.content_wrap .news_wrap .category_wrap .news_category.ultrasound {
    padding: .2em .8em;
}
.sidebar-inner.common h5 {
    padding: .5em 0 .2em 0;
}
/*下層ページ冒頭のお知らせ*/
.news_lower .news_inner {
    padding: 0 1em 1em 1em;
}
.news_lower .news_inner p {
    margin: 0;
}
.news_lower .news_title {
    font-size: var(--fsize-22);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 1em;
}
.news_lower .news_title.management {
    border-bottom: none;
}
.news_lower .news_title.arkinfo {
    border-bottom: none;
}
.news_lower .news_title.qminfo {
    border-bottom: none;
}
.news_lower .news_title span {
    font-size: var(--fsize-18);
    margin-left: 0;
    margin-top: .2em;
    padding-bottom: .2em;
    line-height: 1.3;
}
.news_lower .news_title.management span {
    border-bottom: 1px dashed #5e8c3e;
}
.news_lower .news_title.arkinfo span {
    border-bottom: 1px dashed #863148;
}
.news_lower .news_title.qminfo span {
    border-bottom: 1px dashed #b46112;
}
.news_lower .news_menu {
    padding-inline-start: 0;
}
.news_lower .news_menu .news_item {
    line-height: 1.3;
}
.news_lower .news_item div {
    flex-direction: column;
    gap: 0;
}
.news_lower p {
   padding-top: .5em; 
}
/*検索結果ページ用*/
.search-list li {
   margin-bottom: 2em;   
}
}
@media screen and (max-width: 480px) {
    .content_wrap #common section:last-child {
        padding: 1em 0 3em 0;
    }
    #common .news_wrap {
        font-size: var(--fsize-14);
    }
    #common dl {
        margin: .8em 0 0 .5em;
    }
    #common a {
        font-size: var(--fsize-16);
    }
    #common dl dd > p:first-of-type {
    font-size: var(--fsize-16);
    }
    #common a.btn {
        padding: 1em 2.4em;
    } 
    #common h3 {
        min-height: 64px;
    }
    /* .editor img {
        width: 100%;
    } */
     /*pdfアイコンが大きくなってしまう*/
}

/*お問い合わせ*/
#common .form-item {
    margin: 2em 0 0 1.2em;
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid #e2e2e2;
    position: relative;
    padding: 0 0 1.5em 0;
}
#common .form-item::before {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 20%;
    height: 1px;
    content: '';
    background-color: #1d2088;
}
#common.common.contact {
    margin: 0 auto;
    width: 75%;
}
#common.common.contact dt {
    font-size: var(--fsize-22);
    position: relative;
    color: #1d2088;
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
    background-color: transparent;
}
#common.common.contact dt::before {
    content: '';
    position: absolute;
    width: 5px;
    height: 30px;
    border-radius: 2px;
    left: -18px;
    background-color: #b8c8d7;
}
#common.common.contact .text_box dt {
    width: 300px;
}
#common.common.contact .text_box dt::before {
    content: none;
}
#common.common.contact dt span {
    font-size: var(--fsize-14);
    color: #333;
    border: 2px solid #a5415b;
    background-color: #f5f5f7;
    padding: .2em .6em;
    margin: 0 2em 0 0;
    font-weight: 400;
}
#common.common.contact dd ,
#common.common.contact textarea {
    width: 65%;
    padding: .3em;
    background-color: transparent;
}
#common .tel-wrap {
  width: 65%; /* 既存の input と同じ幅 */
  display: flex;
  gap: .4em; /* ハイフンの間隔 */
  align-items: center;
}
#common .tel-wrap span {
    /* width: 30%; */
    flex: 1;        /* 均等に3分割される */
  padding: .2em;  /* 既存の入力欄と揃える */
}

#common .tel-wrap span {
  flex: none;
}
#common.common.contact .text_box {
    padding: 1.5em;
    background-color: #e2e2e2;
}
#common.common.contact .text_box a {
    font-size: var(--fsize-16);
    position: relative;
}
#common.common.contact .text_box .notice {
    margin: 1em 0 1em 2em;
}
#common.common.contact .text_box a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor; /* ←文字色と同じ色 */
  transition: all 0.3s;
  opacity: 0;
}
#common.common.contact .text_box a:hover::before {
    opacity: 1;
}
#common.common.contact .text_box .checkbox_box {
    display: flex;
    margin: 0 0 0 2em;
}
#common.common.contact .text_box .checkbox_box p {
    margin: unset;
}
#common.common.contact .text_box .checkbox_box dd {
    width: unset;
    margin: 0 .5em 0 0;
}
#common.common.contact .btn button {
    position: relative;
    display: inline-block;
    background: none;
  border: none;
  padding: 0;
  margin: 0;
}
#common.common.contact .btn button {
    margin: 3em 0 5em 0;
    background-color: var(--color-blue);
    color: var(--color-white);
    position: relative;
    cursor: pointer;
    font-size: var(--fsize-16);
    font-weight: 500;
    border: 1px solid var(--color-blue);
    padding: 1em 3.5em;
    border-radius: 6px;
    letter-spacing: 0.06em;
    width: fit-content;
}
#common.common.contact .btn button:hover {
    opacity: 0.8;
    transition: all 0.3s;
}
/*送信確認ボタンの矢印*/
#common.common.contact .btn button::after {
    content: '';
    position: absolute;
    background: none;
    top: 0;
    bottom: 0;
    right: 1em;
    width: 7px;
    height: 7px;
    margin: auto;
    border-top: 1px solid var(--color-white);
    border-right: 1px solid var(--color-white);
    transform: rotate(45deg);
}
#common.common.contact .btn input.wpcf7-submit {
  background: none;
  border: none;
  padding: 0;
  color: #fff;
  font-size: var(--fsize-16);
  cursor: pointer;
}
.wpcf7-spinner {
    position: absolute;
    overflow: hidden;
}
textarea::placeholder {
    line-height: 1.5;
}
/* CF7のspanをブロック要素に */
.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
/* input / textarea は親いっぱいに */
.wpcf7-form-control {
  width: 100%;
  box-sizing: border-box;
  padding: .3em;
}
/* TEL全体 */
#common .tel-wrap {
  width: 65%;
  display: flex;
  align-items: center;
  gap: .4em;
}
/* spanを3等分 */
#common .tel-wrap .wpcf7-form-control-wrap {
  flex: 1;
}
/* ハイフンは幅を持たせない */
#common .tel-wrap > span:not(.wpcf7-form-control-wrap) {
  flex: none;
}
#common.common.contact dd {
  width: 65%;
  margin: 0;
}
#common.common.contact dd.notice {
    width: 100%;
}
#common.common.contact dd.notice a.pdf {
    position: relative;
    margin: .2em 1em .2em 0;
    display: inline-flex;
}
#common.common.contact dd.notice a.pdf::after {
    content: '';
    position: absolute;
    background: url("../img/icon_blank.svg") no-repeat center / contain;
    width: .8em;
    height: .8em;
    top: 50%;
    right: -1em;
    transform: translateY(-50%);
}
#common.common.contact textarea {
  width: 100%;
  background-color: #fff;
  border-radius: 2px;
}

@media screen and (max-width: 1000px) {
 #common.common.contact {
        width: 90%;
}
}
@media screen and (max-width: 800px) {
    #common .form-item {
        flex-direction: column;
        gap: 1em;
        margin: 1em 0;
    }
    #common.common.contact {
        width: 85%;
    }
    #common.common.contact input ,
    #common.common.contact textarea ,
    #common.common.contact dd {
    width: 100%;
}
    .tel-wrap {
    width: 95%;
}
    #common.common.contact label {
        font-size: var(--fsize-18);
        justify-content: unset;
        gap: 1em;
        width: 100%;
}
#common.common.contact p {
    line-height: 1.5;
}
#common.common.contact label span {
    font-size: var(--fsize-13);
}
#common.common.contact .text_box label {
    width: 100%;
}
#common.common.contact .text_box div p {
    margin: unset;
}
 #common.common.contact input, #common.common.contact textarea {
        padding: .2em;
    }
    input::placeholder {
        font-size: var(--fsize-14);
    }
    textarea::placeholder {
        font-size: var(--fsize-14);
    }
    #common.common.contact .text_box .notice {
        margin: 1em 0 1em 1em;
}
#common.common.contact .text_box .checkbox_box {
    margin: 0 0 0 1em;
}
#common.common.contact .text_box {
        padding: 1em;
    }
#common.common.contact .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  white-space: nowrap;
}
}
@media screen and (max-width: 480px) {
    #common.common.contact {
        width: 90%;
    }
    #common.common.contact input ,
    #common.common.contact textarea {
    width: 100%;
}
    .tel-wrap {
    width: 100%;
}
    #common.common.contact p {
        font-size: var(--fsize-15);
    }
    #common.common.contact label {
        font-size: var(--fsize-16);
    }
    #common.common.contact dt,
    #common.common.contact .text_box dt {
        width: 100%;
        justify-content: flex-start;
    }
    .common.contact input, .common.contact textarea {
        width: 100%;
    }
    #common.common.contact .text_box {
        padding: 1em 0.5em;
    }
    .tel-wrap {
        width: 100%;
    }
    .form-item {
        margin: 1.5em 0;
        gap: .5em;
    }
}