@charset "utf-8";

:root {
    --color-black: #333333;
    --color-blue: #0073A8;
    --color-grey: #F7F7F7;
    --color-lightblue: #DEEFFF;
    --color-paleblue: #B0C4DE;
    --color-white: #FFFFFF;
}

html, body, div, span, h1, h2, h3, a, ol, ul, li, p {
    border: 0;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    letter-spacing: 0.07em;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;    
}

ol, ul {
    list-style: none;
}

img {
    vertical-align: middle;
}

a {
    color: var(--color-black);
    text-decoration: none;
}

h2 {
    border-left: 10px solid var(--color-blue);
    background-color: var(--color-lightblue);
    color: var(--color-blue);
    font-size: 1.7rem;
    font-weight: 600;
    padding: .6rem .8rem;
}

h3 {
    border-bottom: 3px solid var(--color-lightblue);
    color: var(--color-blue);
    font-size: 1.3rem;
    font-weight: 600;
    padding-bottom: 5px;
    padding-top: 40px;
    position: relative;
}

h3::after {
    border-bottom: 3px solid var(--color-blue);
    bottom: -3px;
    content: " ";
    display: block;
    left:  0;
    position: absolute;
    width: 25%;
}

section {
    padding-top: 80px;
}

section section {
    padding-top: 70px;
    margin-top: -70px;
}

.section__txt {
    margin-top: 20px;
}

/* パンくず　*/
.bredcrumbs {
    background-color: var(--color-grey);
}

.inner {
    padding: 0 20px;
}

.inner ul {
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.inner ul li {
    display: flex;
    align-items: center;
}

.inner ul li a {
    align-items: center;
}

.inner ul li a span {
    color: var(--color-black);
} 

.inner ul li + li:before {
    content: ">";
    display: inline-block;
    width: 30px;
    text-align: center;
    color: var(--color-black);
}

.bold {
    font-weight: 600;
}

/*-------------------------
  トップページ
-------------------------*/
.topHeader {
    max-width: 100%;
}

.mainTop {
    display: flex;
    display: -webkit-flex;
    margin: 30px auto;
}

.mainLogo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40%;
}

.logo__contents {
    margin: 0 0 0 auto;
    width: 90%;
}

.logoImg {
    text-align: left;
}

.logoImg img {
    height: auto;
    width: 90%;
}

.header__txt {
    color: var(--color-blue);
    font-weight: normal;
    margin-top: 20px;
}

.header__txt .txt {
    display: inline-block;
    font-size: 1.5rem;
    text-align: left;
} 

.mainImg {
    text-align: center;
    width: 60%;
}

.mainImg img {
    height: auto;
    width: 90%;
}

.top__txt {
    margin-top: 20px;
}

main.industryList__contents {
    max-width: 100%;
    width: 100%;
}

/*-------------------------
  共通
-------------------------*/
/*　ヘッダ */
header {
    max-width: 100%;
    margin: 0 auto;
}

/* 業種一覧 */
.industryHeader {
    border-left: none;
    font-size: 1.8rem;
    text-align: center;
    padding-top: 80px;
}

.industryList {
    margin: 0 auto;
    padding-top: 0;
    width: 90%;
}

.industryList__contents {
    background-color: var(--color-lightblue);
    max-width: 100%;
    padding-bottom: 80px;
}

.industryBox {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
}

.industryBox a {
    width: 20%;
}

.industry__elem {
    display: inline-flex;
    width: 100%;
}

.industry__item {
    box-sizing: border-box;
    display: flex;
    justify-content: flex-start;
    height: 100%;
    padding: 10px;
    width: 100%;
}

.industry__item:hover {
    opacity: 0.5;
    transition: 0.3s;
}

.industry__img {
    width: 30%;
}

.industry__img img {
    width: 100%;
    height: auto;
}

.industry__title {
    align-items: center;
    background-color: var(--color-white);
    color: var(--color-black);
    display: flex;
    padding-left: 10px;
    width: 60%;
}

.industry__title p {
    color: var(--color-black);
    display: inline-block;
    font-size: 1.0rem;
    position: relative;
    text-decoration: none;
    vertical-align: middle;
    width: 100%;
}

.arrow { 
    align-content: center;
    background-color: var(--color-white);
    display: flex;
    justify-content: center; 
    width: 10%;
}

.arrow img {
    width: 30%;
    height: auto;
}

/* フッタ　*/
.footer__contents {
    background-color: var(--color-blue);
    color: var(--color-white);
    padding: 50px 100px 30px;    
}

.footer__contents a {
    color: var(--color-white);
}

.site__title {
    border-bottom: 1px solid var(--color-white);
}

.site__title a {
    font-size: 1.5rem;
}

.site__prohibited {
    padding: 15px 0;
    font-size: 0.9rem;
}

.footer__policy {
    display: flex;
}

.footer__policy p {
    margin-right: 20px;
}

.copyright {
    text-align: right;
    padding-top: 20px;
}

/*-------------------------
 　動向ページ
-------------------------*/
/* ヘッダ　*/
.header__menu {
    align-content: center;
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-grey);
    height: 75px;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 10;
}

.header__contents {
    background-color: var(--color-white);
    display: flex;
}

.header__inner {
    display: flex;
    width: 40%;
}

.header__logo {
    padding: 15px;
}

.header__logo a img {
    height: auto;
    width: 100%;
}

.title__area {
    background-color: var(--color-lightblue);
    color: var(--color-blue);
    padding: 75px 0;
}

.title__area h1 {
    font-size: 2.25rem;
    text-align: center;
}

/* メイン */
main {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    max-width: 1280px;
    width: 90%;
}

.main__industry {
    margin-top: 30px;
}

.main__contents {
    width: calc(100% - 300px);
}

.articleDate {
    text-align: right;
    margin-bottom: 10px;
}

.img__contents {
    width: 100%;
}

.img__contents img {
    width: 100%;
    height: auto;
}

#pagetop {
    bottom: 40px;
    position: fixed;
    right: 50px;
    z-index: 5;
}

#pagetop a {
    background: var(--color-blue);
    border-radius: 50%;
    border: solid 1px var(--color-white);
    box-sizing: border-box;
    display: inline-block;
    color: var(--color-white);
    height: 60px;
    text-align: center;
    width: 60px;
}

#pagetop .topArrow {
    border: 2px solid var(--color-white);
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    color: var(--color-white);
    display: inline-block;
    height: 17px;
    line-height: 50px;
    position: relative;
    text-align: center;
    top: 14px;
    transform: translateY(25%) rotate(-45deg); 
    vertical-align: middle;
    width: 17px;
}

.contact__btn {
    margin: 100px auto 100px;
    text-align: center;
}

.contact__btn a:hover {
    background-color: var(--color-white);
    color: var(--color-blue);
}

.contact__btn a {
    background: var(--color-blue);
    border: 2px solid var(--color-blue);
    border-radius: 50px;
    color: var(--color-white);
    font-size: 1.3rem;
    font-weight: 600;
    padding: 20px 100px; 
    text-decoration: none;
}

.section__img {
    margin: 40px auto 0;
    text-align: center;
    width: 100%;
}
.section__img.width_90 {
    width: 90%;
}
.section__img img {
    width: 100%;
    height: auto;
}

/* 目次 */
#tableOpen {
    display: none;
}

.table-of-contents {
    background-color: var(--color-grey);
    color: var(--color-black);
    margin: 0 auto;
    padding: 30px;
    width: 70%;
}

.table-of-contents ol {
    list-style-type: decimal-leading-zero;
    margin: 0;
    padding: 0 1.2em;
}

.table-of-contents ol li {
    margin-bottom: 3px; 
}

.table-of-contents a {
    color: var(--color-blue);
}

.table-of-contents__title {
    background-color: var(--color-white-blue);
    color: var(--color-black);
    display: block;
    font-weight: 600;
    padding: 10px;
    position: relative;
    text-align: center;
    cursor: pointer;
}

.table-of-contents__list {
    max-height: 0;
    opacity: 0;
    transition: 0.5s;
    visibility: hidden;
    width: 100%;
}

.table-of-contents__list ol {
    list-style-type: circle;
}

#tableOpen:checked ~ .table-of-contents__list {
    max-height: 2000px;
    opacity: 1;
    visibility: visible;
}

.openIcon {
    display: block;
    flex-shrink: 0;
    margin-left: 6px; 
    position: absolute;
    right: 20px;
    transform-origin: center 43%;
    transition: transform 0.5s;
    top: 50%;
    width: 24px;
}

.openIcon::before,
.openIcon::after {
    background-color: var(--color-black);
    content: "";
    display: block;
    height: 3px;
    position: absolute;
    width: 15px;
}

.openIcon::before {
    left: 0;
    transform: rotate(45deg);
}
.openIcon::after {
    right: 0;
    transform: rotate(-45deg);
}

#tableOpen:checked ~ .table-of-contents__title .openIcon {
    transform: rotate(-180deg);
}

/* 監修者 */
.supervisor__content {
    background-color: var(--color-grey);
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
    position: relative;
}

.supervisor__content .supervisor__img {
    align-items: center;
    display: flex;
    justify-content: center;
    width: 30%; 
}

.supervisor__content .supervisor__img img {
    box-sizing: border-box;
    height: auto;
    padding: 15px;
    width: 80%;
}

.suprtvisor-profile__box {
    width: 70%;
    box-sizing: border-box;
}

/* 監修者の写真なし */
.supervisor__content.image_none .suprtvisor-profile__box {
    width: 100%;
    padding: 20px;
}

.supervisor__content.image_none .suprtvisor-profile__box .supervisor__profile {
    padding: 10px;
}

.supervisor__content.image_none .suprtvisor-profile__box .supervisor__detail {
    padding: 0 10px 10px;
}

/*  */

.supervisor__title {
    background-color: var(--color-blue);
    color: var(--color-white);
    font-weight: 600;
    padding: 10px 0;
    text-align: center;
    width: 100%;
}

.supervisor__profile {
    align-content: center;
    -webkit-align-content: center;
    box-sizing: border-box;
    padding: 10px 30px 10px 10px;
    text-align: left;
}

.supervisor__name {
    border-bottom: 1px solid var(--color-blue);
    color: var(--color-blue);
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
    padding-bottom: 10px;
}

.supervisor__role {
    display: block;
    font-size: 1.0rem;
    padding-top: 10px;
}

.supervisor__detail {
    align-content: center;
    box-sizing: border-box;
    padding: 0 30px 20px 10px;
}

/* 監修者の役職なし */
.suprtvisor-profile__box .supervisor__profile .role_none {
    margin-top: 20px;
}

/* 監修者(複数) */
.supervisor__content_multi {
    background-color: var(--color-grey);
    margin-top: 50px;
    padding-bottom: 1px;
}

.supervisor__title_multi {
    background-color: var(--color-blue);
    color: var(--color-white);
    font-weight: 600;
    padding: 10px 0;
    text-align: center;
}

.supervisor__box {
    display: flex;
    margin: 30px 0;
}

.supervisor__box .supervisor__img {
    width: 30%;
    align-items: center;
    display: flex;
    justify-content: center;
}

.supervisor__box .supervisor__img img {
    width: 80%;
    height: auto;
    padding: 15px;
    box-sizing: border-box;
}

.supervisor__box .suprtvisor-profile__box {
    width: 70%;
}
/* */

.service_flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
}

.service_box {
    width: 24%;
    border: 1px solid var(--color-blue);
    box-sizing: border-box;
}

.service_box ul {
    padding: 20px;
}

.service_box p {
    text-align: center;
    background-color: var(--color-blue);
    color: var(--color-white);
    padding: 5px;
    font-weight: 600;
}

.market-size__small img {
    width: 70%;
}

/* 業界におけるM&Aの件数推移 */
.source {
    text-align: right;
}

/* 業界が抱える課題と解決手段としてのM&A */
.it-assignment {
    border: 2px solid var(--color-blue);
    color: var(--color-blue);
    font-weight: 600;
    margin-top: 10px;
    padding: 10px;
}

.it-assignment ol {
    list-style: decimal;
    padding-left: 30px;
}

/* 業界のM&Aのメリット・目的 */
.merit-list {
    margin-top: 20px;
}
.merit-list li {
    margin-top: 20px;
    padding: 15px 20px;
    border: 1px solid var(--color-blue);
    border-left: 10px solid var(--color-blue);
}
.merit-list li:first-child {
    margin-top: 0;
}
.merit-list li .merit__title {
    margin-bottom: 10px;
    color: var(--color-blue);
    font-weight: 600;
}
.merit__number {
    margin-right: 0.5rem;
}

/* 業界のM&A事例●選 */
.ex__item .purpose {
    margin-top: 20px;
}

.ex__item .purpose span {
    color: var(--color-blue);
    font-weight: 600;
}

.ex__detail {
    text-align: center;
}

.seller-buyer {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

.seller, .buyer {
    box-sizing: border-box;
    width: 40%;
}

.seller span:nth-child(1) {
    background-color: var(--color-blue);
    color: var(--color-white);
    display: block;
    font-weight: 600;
    padding: 10px;
}

.buyer span:nth-child(1) {
    background-color: var(--color-paleblue);
    color: var(--color-white);
    display: block;
    font-weight: 600;
    padding: 10px;
}

.seller span:nth-child(2),
.buyer span:nth-child(2) {
    display: block;
    padding: 15px;
}

.seller {
    border: 1px solid var(--color-blue);
}

.buyer {
    border: 1px solid var(--color-paleblue);
}

.ex__icn {
    align-content: center;
    text-align: center;
    width: 20%;
}

.ex__txt {
    margin-top: 20px;
    text-align: left;
}

.icon_external_link {
    width: 15px;
    height: 15px;
    margin-left: 7px;
    position: relative;
    bottom: 2px;
}

.news-link {
    border: 1px solid var(--color-black);
    margin-top: 20px;
    padding: 15px;
}

/* 業界のM&Aにおける最近の動き */
.trend__txt {
    border: 1px solid var(--color-black);
    margin-top: 20px;
    padding: 15px;
}

.trend__txt a {
    text-decoration: underline;
}

.trend__txt .date {
    display: block;
}

/* 専門家にM&Aを相談するメリット */
.merit__tab {
    background-color: var(--color-white); 
    box-shadow: 2px 2px 2px var(--color-white);
    border: 2px solid var(--color-blue); 
    margin-bottom: 20px;
    padding: 1.2em 1em 1em;
}

.merit__tab ul li {
    color: var(--color-blue);
    font-weight: 600;
    list-style-type: disc;
    margin-left: 20px;
}

/* ストライクのM&Aコンサルタント */
.member__contents {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.member__box {
    width: 33.333%;
    padding: 0 10px;
    box-sizing: border-box;
    margin-top: 20px;
}

.member__img {
    align-content: center;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.member__img img {
    height: auto;
    width: 100%;
}

.member__text {
    box-sizing: border-box;
    padding: 10px;
    width: 100%;  
}

.role {
    font-size: 1.0rem;
    font-weight: bold;
}

.name {
    border-bottom: 3px solid var(--color-blue);
    color: var(--color-blue);
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 5px;
}

.profile {
    margin-top: 10px;
}

.open-box {
    width: 100%;
}

.open-box .open-member-box {
    display: none;
}

/* 成約インタビュー */
.interview-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; 
    margin-top: 20px; 
    row-gap: 30px;
}

.interview__item {
    border: 1px solid #d9d9d9;
    box-sizing: border-box;
    padding-bottom: 30px;
    position: relative;
    width: calc(50% - 15px);
}

.interview__img {
    width: 100%;
}

.interview__img img {
    height: auto;
    width: 100%;
}

.interview__title {
    color: var(--color-blue);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 10px auto;
}

.interview__txt {
    padding: 20px 30px;
    position: relative;
}

.interview__lead {
    box-sizing: border-box;
    margin-bottom: 10px;
}

.interview__more {
    text-align: right;
    position: absolute;
    bottom: 20px;
    right: 30px;
}

.interview__more a {
    color: var(--color-blue);
    display: inline-block;
    font-weight: 500;
    position: relative;
    padding-right: 36px;
}

.interview__more a::before, .interview__more a::after {
    bottom: 0;
    content: "";
    display: block;
    margin: auto;
    position: absolute;
    top: 2px; 
}

.interview__more a::before {
    background-color: var(--color-blue);
    border-radius: 50%;
    height: 22px;
    right: 0;
    width: 22px;
}

.interview__more a::after {
    border-top: 1px solid var(--color-white);
    border-right: 1px solid var(--color-white);
    height: 5px;
    right: 9px;
    transform: rotate(45deg);
    width: 5px;
    -webkit-transform: rotate(45deg);
}

/* 成約実績 */
.result__item {
    border: 1px solid var(--color-blue);
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px; 
    padding: 20px;
}

.result__year {
    margin-bottom: 10px;
    width: 100%;
}

.transfer-co, .takeOver-co {
    box-sizing: border-box;
    padding-bottom: 10px;
    text-align: center;
    width: 40%;
}

.transfer-co {
    border: 1px solid var(--color-blue);
}

.takeOver-co {
    border: 1px solid var(--color-paleblue);
}

.transfer-icn {
    align-content: center;
    text-align: center;
    width: 20%;
}

.transfer-co .co-name {
    background-color: var(--color-blue);
    color: var(--color-white);
    font-weight: 600;
    padding: 10px;
}

.takeOver-co .co-name {
    background-color: var(--color-paleblue);
    color: var(--color-white);
    font-weight: 600;
    padding: 10px;
}

.industry__info {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 10px 0;
}

.result-reason {
    border-top: 1px solid var(--color-blue);
    margin-top: 20px;
    width: 100%;
}

.result-reason .reason__txt:nth-child(1) {
    margin-top: 20px;
}

.reason__txt { 
    align-items: center;
    display: flex;
    margin: 10px 0;
    text-align: center;
}

.reason__txt span {
    border: 1px solid var(--color-blue);
    border-radius: 30px;
    margin-right: 10px;
    padding: 5px 20px;
    width: 150px;
}

.open-box .open-result-box, 
.open-box .open-case-box, 
.open-box .open-member-box {
    display: none;
}

.open-result, .open-case, .open-member {
    border: 1px solid var(--color-blue);
    border-radius: 25px;
    color: var(--color-blue);
    cursor: pointer;
    display: block;
    font-weight: bold;
    margin: 40px auto;
    padding: 0.8em;
    position: relative;
    text-align: center;
    width: 30%;
}
.ma_success-list a {
    background: var(--color-white);
    color: var(--color-blue);
    border: 1px solid var(--color-blue);
    border-radius: 25px;
    display: block;
    font-weight: bold;
    margin: 40px auto;
    padding: 0.8em;
    position: relative;
    text-align: center;
    width: 30%;
}

.member-on-off:checked ~ .open-member-box {
    display: flex;
    flex-wrap: wrap;
}

.result-on-off:checked ~ .open-result-box,
.case-on-off:checked ~ .open-case-box
{
    display: block;
    height: auto;
}

.result-on-off:checked ~ label,
.case-on-off:checked ~ label,
.member-on-off:checked ~ label
{
    display: none;
}

.result-on-off, .member-on-off {
    display: none;
}

/* 案件情報 */
/* .case-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 30px;
    row-gap: 30px;
}

.case__item {
    border: 1px solid var(--color-blue);
    box-sizing: border-box;
    padding: 30px;
    text-align: center;
    width: calc(50% - 15px);
}

.case__item .ss-num {
    color: var(--color-blue);
}

.case__item .case-category {
    color: var(--color-blue);
    font-size: 1.2rem;
    font-weight: 600;
}

.case__item ul {
    margin: 20px 0;
    text-align: left;
}

.case__item ul li span {
    display: inline-block;
    width: 50%;
}

.case__item ul li span:nth-child(1) {
    font-weight: 600;
}

.case__detail {
    border-top: 1px solid var(--color-blue);
    text-align: left;
}

.case__detail span {
    display: inline-block;
    margin-top: 20px;
}

.detail__btn {
    border: 1px solid var(--color-blue);
    border-radius: 30px;
    color: var(--color-blue);
    font-weight: 600;
    margin: 20px auto 0;
    padding: 5px 20px;  
    width: 150px;
} */

/* セミナー情報 */
/* .seminar-box {
    margin-top: 20px;
}

.seminar__item {
    align-content: center;
    display: flex;
}

.seminar__img {
    align-content: center;
    width: 50%;
}

.seminar__img img {
    height: auto;
    width: 100%;
}

.seminar__detail {
    padding: 20px;
    width: 50%;
}

.seminar__detail .title {
    border-bottom: 1px solid var(--color-blue);
    color: var(--color-blue);
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    padding-bottom: 10px;
} */


/* サイドバー */
.sideNav {
    margin-left: 30px;
    width: 270px;
}

.inquiry__banner {
    margin-top: 10px;
    position: sticky;
    top: 90px;
    z-index: 3;
}

.inquiry__banner img {
    border: 1px solid #bbb;
    height: auto;
    width: 100%;
}

#check {
    display: none;
}

.category__title {
    position: relative;
}

.category__title {
    background-color: var(--color-blue);
    color: var(--color-white);
    display: block;
    font-weight: 600;
    padding: 10px;
    cursor: pointer;
}

.category__contents {
    max-height: 0;
    opacity: 0;
    transition: 0.5s;
    visibility: hidden;
    width: 100%;
}

#check:checked ~ .category__contents {
    opacity: 1;
    position: sticky;
    max-height: revert;
    top: 0;
    z-index: 4;
    background-color: var(--color-lightblue);
    visibility: visible;
}

.category ul {
    background-color: var(--color-lightblue);
}

.category ul li {
    border-bottom: 1px var(--color-white) solid;
    padding: 10px;
}

.checkIcon {
    display: block;
    flex-shrink: 0;
    margin-left: 6px; 
    position: absolute;
    right: 20px;
    transform-origin: center 43%;
    transition: transform 0.5s;
    top: 50%;
    width: 24px;
}

.checkIcon::before,
.checkIcon::after {
    background-color: var(--color-white);
    content: "";
    display: block;
    height: 3px;
    position: absolute;
    width: 15px;
}
.checkIcon::before {
    left: 0;
    transform: rotate(45deg);
}
.checkIcon::after {
    right: 0;
    transform: rotate(-45deg);
}

#check:checked ~ .category__title .checkIcon {
    transform: rotate(-180deg);
}

.sp {
    display: none;
}

#about .about_list {
    display: flex;
    width: 100%;
    margin-top: 1em;
}

#about .about_list ol {
    width: 50%;
}

/* 製造業 */

.manufacture #market .section__img {
    width: 70%;
}

.manufacture #market .section__img img {
    width: 100%;
}



  
@media screen and (max-width: 1200px) {
    .main__contents {
        margin: 0 auto;
        width: 90%;
    }

    .sideNav {
        display: none;
    }

    .title__area {
        padding: 45px 10px;
    }

    /* ハンバーガーメニュー */
    .hamburger {
        cursor: pointer;
        display: block;
        height: 42px;
        position: fixed;
        right: 30px;
        text-align: center;
        top: 20px;
        width: 42px;    
        z-index: 5; 
    }

    .hamburger span:nth-child(1) {
        top: 8px;
    }

    .hamburger span:nth-child(2) {
        top: 17px;
    }

    .hamburger span:nth-child(3) {
        top: 26px;
    }

    .hamburger span {
        background: var(--color-blue);
        display: block;
        height: 2px;
        left: 6px;
        position: absolute;
        transition: 0.3s ease-in-out;
        width: 30px;
        -webkit-transition: 0.3s ease-in-out;
        -moz-transition: 0.3s ease-in-out;
    }

    nav.globalMenuSp {
        background: var(--color-blue);
        box-sizing: border-box;
        height: calc(calc(var(--vh)* 100) - 10.625vw);
        overflow: auto;
        -webkit-overflow: auto;
        position: fixed;
        right: 0;
        scroll-margin-top: 60px;
        text-align: center;
        top: 75px;
        transform: translateX(100%);
        transition: all 0.6s;
        width: 100%;
        z-index: 99;
    }

    nav.globalMenuSp.active {
        transform: translateX(0%);
    }

    .globalMenuSp .navCategory__list {
        border-bottom: 0.5px solid var(--color-white);
        color: var(--color-white);
        list-style: none;
        padding-left: 0;
    }

    .sp {
        display: block;
    }

    .nav__contact-btn {
        margin-top: 20px;
        width: 100%;
    }

    .nav__contact-btn a {
        background: var(--color-white);
        border-radius: 30px;
        color: var(--color-blue);
        display: inline-block;
        font-size: 1.3rem;
        font-weight: 600;
        padding: 10px 0;
        width: 70%;
    }

    .nav__label {
        display: flex;
        justify-content: space-between;
        padding: 1.5rem;
        cursor: pointer;
        border-top: 0.5px solid var(--color-white);
    }

    .nav-open {
        display: none;
    }

    .navCategory__contents {
        height: 0;
        overflow: hidden;
        -webkit-overflow: hidden;
        display: grid;
    }

    .navCategory__contents p {
        padding: 10px;
        text-align: left;
    }

    .navCategory__contents p a {
        color: var(--color-white); 
    } 

    .nav-open:checked + .navCategory__contents {
        height: auto;
        margin: 0 auto;
        padding: 20px 10px;
        width: 90%;
    }

    .hamburger {
        z-index: 999;
    }

    .hamburger.active span:nth-child(1) {
        top: 16px;
        left: 6px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        transform: rotate(-45deg);
        background: var(--color-blue);
    }

    .hamburger.active span:nth-child(2), .hamburger.active span:nth-child(3) {
        top: 16px;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        transform: rotate(45deg);
        background: var(--color-blue);
    }

    .sp__banner a img {
        width: 100%;
    }

    .btn__box {
        margin: 0 auto 50px;
    }

    .header__contents.close {
        background-color: var(--color-white);
        z-index: 999;
    }

    body.passive {
        overflow: hidden;
        -webkit-overflow: hidden;
    }
    .member__box {
        width: 50%;
    }
}

@media (min-width: 768px) and (max-width: 1200px) {
    .industryBox a {
        width: 33.333%;
    }
    
    .navCategory__contents {
        height: 0;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }

    .header__txt .txt {
        font-size: 1.2rem;
    }

    nav.globalMenuSp {
        height: 100vh;
    }

    .service_box ul {
        padding: 10px;
    }
}

@media only screen and (max-width: 767px) {
    /*-------------------------
    　共通
    -------------------------*/
    main {
        width: 100%;
    }

    nav.globalMenuSp {
        height: calc(calc(var(--vh)* 100) - 10.625vw);
    }

    .footer__contents {
        padding: 50px 30px 50px;
    }

    .header__txt .txt {
        font-size: 1.5rem;
    }

    .industry__contents {
        width: 100%;
    }

    .industry__title p {
        font-size: 0.7rem;
        padding-left: 5px;
        width: 90%;
    }

    .industryBox a {
        width: 50%;
        min-height: 50px;
    }

    .industry__elem {
        width: 100%;
    }

    .industry__item {
        width: 100%;
    }

    .industry__img {
        width: 30%;
        display: none;
    }

    .industry__title {
        width: 100%;
        padding: 15px 0;
    }

    .footer__policy {
        display: block;
    }

    .copyright {
        text-align: left;
        margin-top: 10px;
    }
  
    .navCategory__contents {
        grid-template-columns: 1fr 1fr;
    }

    .inner ul li a {
        display: flex;
        align-items: center; 
        justify-content: center;
    }

    .inner ul li a span {
        font-size: 0.6rem;
    }

    .service_box {
        width: calc(50% - 5px);
    }
    
    .service_box ul {
        padding: 10px 6px;
    }
    
    .service_box p {
        padding: 5px;
    }
    .service_box {
        margin-bottom: 10px; 
    }
    /*-------------------------
    　トップページ
    -------------------------*/
    .mainTop {
        display: block;
        margin-top: 50px;
    }

    .mainLogo {
        width: 90%;
        margin: 0 auto;
    }

    .logoImg img {
        width: 100%;
    }

    .logo__contents { 
        text-align: center;
        margin: 0 auto;
    }

    .header__txt {
        width: 100%;
        margin-bottom: 30px;
    }

    .mainImg {
        width: 100%;
        margin: 0 auto;
    }

    /*-------------------------
    　業界ページ
    -------------------------*/
    .title__area h1 {
        font-size: 1.6rem;
    }

    .contact__btn a {
        font-size: 1.2rem;
        padding: 20px 50px;
    }

    .table-of-contents {
        width: 80%;
    }

    .other_watch {
        font-size: 1.5rem;
    }

    #pagetop {
        bottom: 10px;
        right: 10px;
    }
    .section__img.width_90 {
        width: 100%;
    }

    /* 成約インタビュー　*/
    .interview__item {
        width: 100%;
    }

    /* 成約実績　*/
    .reason__txt span { 
        padding: 0;
        font-size: 1.0rem;
    }

    .result__item {
        display: block;
    }

    .transfer-co, .takeOver-co, .transfer-icn {
        width: 100%;
    }

    .transfer-icn {
        margin: 10px 0;
    }

    .ma_success-list a {
        width: 50%;
    }

     /* 案件情報　*/
    /* .case-box {
        display: block;
    }

    .case__item {
        width: 100%;
        margin-top: 20px;
    } */

     /* 業界のM&A事例●選　*/
    .seller-buyer {
        display: block;
    }

    .seller, .buyer, .ex__icn {
        width: 100%;
    }

    .ex__icn {
        margin: 10px auto;
    }

      /* セミナー情報　*/
    /* .seminar__item {
        display: block;
    }

    .seminar__img {
        width: 100%;
    }

    .seminar__detail {
        box-sizing: border-box;
        padding: 20px 0;
        width: 100%;
    } */

    #about .about_list {
        display: block;
        width: 100%;
    }
    
    #about .about_list ol {
        width: 100%;
    }

    /* 製造業 */

    .manufacture #market .section__img {
        width: 100%;
    }
    .market-size__small img { 
        width: 100%;
    }
} 

@media only screen and (max-width: 550px) {
    /* ストライクのM&Aコンサルタント */
    .member__box {
        width: 100%;
        margin: 30px auto 0;
        display: block;
    }

    .member__img {
        width: 100%;
    }

    .member__text {
        width: 100%;
        min-height: auto;
    }

     /* 監修者　*/
     .supervisor__content .supervisor__img {
        width: 100%;
    }

    .supervisor__content .supervisor__img img {
        width: 80%;
    }

    .supervisor__profile {
        width: 100%;
        padding: 10px;
    }

    .suprtvisor-profile__box {
        width: 100%;
        padding: 0 10px 10px 10px;
    }

    .suprtvisor-profile__box .supervisor__profile .role_none {
        margin-top: 0;
    }

    .supervisor__detail {
        width: 100%;
        padding: 0 10px 10px;
    }

    .header__txt .txt {
        font-size: 1.2rem;
    }

    /* 監修者（複数）*/
    .supervisor__box {
        display: block;
        margin: 20px 0;
    }
    
    .supervisor__box .supervisor__img {
        width:100%;
    }

    .supervisor__box .supervisor__img img {
        width: 80%;
    }
    
    .supervisor__box .suprtvisor-profile__box {
        width: 100%;
    }
}

