@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,700&subset=japanese');

/* 共通部分
--------------------------- */

html{
    font-size: 100%;
}
body{
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1;
    color: #000000;
}
a{
    text-decoration: none;
    color: #0171E2;
}
p{
    height: auto;
    display: block;
    line-height: 1.5em;
    text-align: left;
    font-size: 20px;
}
img{
    max-width: 100%;
    height:auto
}
*{
    box-sizing:border-box;
  }
li{
    list-style: none;
}
img {
	image-rendering: -webkit-optimize-contrast;
}
.article_list_container{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: start;
}
.article-list-item{
    width: 100%;
    float: left;
    padding: 0 10px;
}

/* h2タイトル */
/* 変更した */
.top-wrapper{
    max-width:1440px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

.title-container {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0px 0 20px 0;
}
.title-with-line {
    font-size: 40px;
    font-weight:500;
    color: #000000;
    white-space: nowrap;
    margin: 0;
    padding-right: 15px;
}
.line {
    flex-grow: 1; /* 残りのスペースを埋める */
    height: 2px;
    width: 100%;
    background: linear-gradient(to right, #130A3F, #433EFD, #0DC1EC); /* グラデーションの背景色 */
}


/* index.html--------------------------------------------- */
/* HEADER
--------------------------- */
.logo{
    margin: 16px auto 12px auto;
}

.header{
    align-items: center;
    height: 67px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    box-shadow: 0px 2px 0px #E6E6E6;
    position:fixed;
    top:0;
    z-index:10;
    background-color: #fff;
}
.header-content{
    align-items: center;
    height: 67px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    box-shadow: 0px 2px 0px #E6E6E6;
    margin: 0 auto;
    max-width: 1440px;
    top:0;
    z-index:20;
    background-color: #fff;
    padding: 0px 90px;
}
/* サービスメニュー */
.header-service{
    margin: 30px 0px;
}
.service-intro-text{
    letter-spacing: 2px;
    font-size: 16px;
    text-transform: capitalize;
    color: #000000;
    font-weight: normal;
}
.header-hover-menu {
    position: relative;
}
.header-hover-menu__item-box {
    border-radius: 4px;
    display: block;
    left: -4px;
    opacity: 0;
    padding-top: 0px;
    position: absolute;
    top: 42px;
    transform: translateY(2px);
    transition: opacity .1s ease-out,transform .1s ease-out,visibility .1s;
    visibility: hidden;
    z-index: 99999;
}
.header-hover-menu:hover .header-hover-menu__item-box {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}
.header-hover-menu__item.header-hover-menu__item--services {
    min-width: 120px;
}
.header-hover-menu__item {
    background-color: #fff;
    /* border-radius: 8px; */
    box-shadow: 0 0 16px #4c566c26;
    box-sizing: border-box;
}
.header-hover-menu-service {
    align-items: center;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-start;
    padding: 15px 15px;
    margin-top: 0;
    background: #fff;
    color: #000000;
    border-color: #fff;
    transition: 0.2s ease-in-out;
    font-weight: normal;
    border: 1.0px solid #fff;
}
.header-hover-menu-service:hover{
    background: #fff;
    color: #1A1F4A;
}
.header-hover-menu-service:hover:after {
    right: 1.4rem;
}
.header-hover-menu-service__title {
    color: #000000;
    font-size: 15px;
    font-weight: normal;
}
.header-hover-menu-service:hover .header-hover-menu-service__title{
    color: #000000;
    font-size: 15px;
    font-weight: normal;
}
.header-hover-menu-service:hover .header-hover-menu-service__icon {
    padding-right: 10px;
    filter: none;
}
.download-container{
    display: flex;
    justify-content: center;
    align-items:center;
    position: relative;
    margin: auto;
    padding: auto;
}
.contact-container{
    display: flex;
    justify-content: center;
    align-items:center;
    position: relative;
    margin: auto;
    padding: auto;
}
.header-text{
    padding-left: 5px;
}
.header-smartphone{
    display: none;
}
.header-box{
    height: 67px;
    width: 100%;
}
.main-nav{
    display: flex;
    font-size: 15px;
    list-style: none;
    font-weight: normal;
    align-items: center;
}
.main-nav li{
    margin-left: 25px;
}
.main-nav a{
    color: #000000;
    padding: 30px 0px;
    position: relative;
}
.main-nav a::after{
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #130A3F, #433EFD, #0DC1EC);
    bottom: 6px;               /*アンダーラインがaタグの下端から現れる*/
    transform: scale(0, 1);     /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
    transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
    transition: transform 0.3s; /*変形の時間*/
}   
.main-nav a:hover::after {
    transform: scale(1, 1);     /*ホバー後、x軸方向に1（相対値）伸長*/
}

/* .wrapper{
    padding: 0 90px;
} */
.download-button{
    padding-right: 1.9px;
    align-items: center;
}
.contact-button{
    padding-right: 1.9px;
    align-items: center;
}
.privacy-policy-text{
    margin-top: 10px;
    font-size: 12px;
    color: #1A1F4A;
    text-align: left;
    line-height: 1.5;
}
.privacy-policy-text a{
    font-size: 12px;
    color: #1A1F4A;
    text-decoration: underline;
}

.top-container{
    padding: 0 150px;
    margin: 0 auto;
    color:#1D2249;
    width: 100%;
}
.top-container h2{
    font-size: 55px;
    line-height: 2;
}
.top-container p{
    font-size: 25px;
    line-height: 1.5;
}
/* 箇条書き */
.top-container ol {
    margin-top: 20px;
    counter-reset:number; /*数字をリセット*/
    list-style-type: none!important; /*数字を一旦消す*/
  }
.top-container ol li {
    position: relative;
    line-height: 2.35;
    font-weight: 900;
    font-size: 25px;
    padding-left: 55px;
  }
.top-container ol li:before{
    /* 以下数字をつける */
    position: absolute;
    counter-increment: number;
    content: counter(number);
    /*以下数字のデザイン変える*/
    display:inline-block;
    background: #1D2249;
    color: white;
    font-weight: 900;
    border-radius: 50%;
    left: 0;
    width: 43px;
    height: 43px;
    line-height: 44px;
    text-align: center;
    /*以下 上下中央寄せのため*/
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .sarani{
    color:#0171E2;
    font-weight: 300;
}
.top-container > .button-results{
    display: none;
}
/* 活用事例
--------------------------- */
.results-wrapper{
    max-width:1440px;
    width: 100%;
    margin:  auto;
    background-color:#F9F9F9;
    padding: 90px;
    text-align: center;
}
.results-container{
    margin: 0 auto;
    color:#1D2249;
    width: 100%;
    padding:0;
}
.results-container h2{
    font-size: 35px;
    line-height: 2;
    text-align: center;
}
.results-container p{
    font-size: 20px;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 40px;
}
.results{
    width: 25%;
    line-height: 0;
    float: left;
    padding:15px 15px;
    height:220px;
}
.results-image{
    background-color: #fff;
    border-top: 1px solid #1D2249;
    border-left: 1px solid #1D2249;
    border-right: 1px solid #1D2249;
}
.results-text{
    display:block;
    background-color: #fff;
    border: 1px solid #1D2249;
    text-align: center;
    line-height: 40px;
    color:#0171E2;
    font-weight: 300;
}
.button-results {
    display: inline-block;
    text-align: center;
    vertical-align:center;
    background: #1D2249;
    border-radius: 2px;
    position: relative;
    margin: 50px auto 0 auto;
    height: auto;
    padding: 10px 25px;
    color: #FFFFFF;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    border: 1.5px solid #1D2249;
}
.button-results:hover {
  background: #fff;
  color: #1D2249;
  border: 1.5px solid #1D2249;
}
.button-results:hover:after {
  right: 1.4rem;
}

/* メタバース総研の紹介
--------------------------- */
.syoukai-wrapper{
    max-width:1440px;
    width: 100%;
    height:750px;
    margin:  auto;
    background-image:url(images/syoukai.jpg);
    background-size:cover; 
    text-align: center;
    padding: 50px 150px 0 150px;
}
.syoukai-container{
    margin: 0 auto;
    color:#1D2249;
    width: 100%;
}
.syoukai-container h2{
    font-size: 35px;
    line-height: 2;
}
.syoukai-container p{
    font-size: 20px;
    line-height: 1.5;
    margin: 5px 0;
}
.sarani-unei{
    font-size: 20px;
    line-height: 1.5;
    color:#0171E2;
}
/* メタバース総研の運営 */
.unei{
    width: 50%;
    line-height: 1;
    float: left;
    padding:30px 20px;   
}
.unei h3{
    font-size: 25px;
    color:#fff;
    background-color: #1D2249;
    width: auto;
    height: auto;
    padding: 15px 0;
    margin-bottom: 10px; 
}
/* メタバースコンサルティング */
.consulting{
    width: 50%;
    line-height: 1;
    float: left;
    padding:30px 20px;   
}
.consulting h3{
    font-size: 25px;
    color:#fff;
    background-color: #1D2249;
    width: auto;
    height: auto;
    padding: 15px 0;
    margin-bottom: 10px;
}
/* お問い合わせ
--------------------------- */
.otoiawase-wrapper{
    max-width:1440px;
    width: 100%;
    margin: auto;
    background-color:#F9F9F9;
    padding:70px;
    text-align: center;
}
.otoiawase-container{
    margin: 0 auto;
    color:#1D2249;
    width: 100%;
    padding:0;
}
.otoiawase-container h2{
    font-size: 35px;
    line-height: 2;
    text-align: center;
}
.otoiawase-container p{
    font-size: 20px;
    line-height: 1.5;
    text-align: center;
}
.button-otoiawase {
    display: inline-block;
    text-align: center;
    vertical-align:center;
    background: #1D2249;
    border-radius: 2px;
    position: relative;
    margin: 25px auto 0 auto;
    width: 200px;
    height: auto;
    padding: 10px 25px;
    color: #FFFFFF;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    border: 1.5px solid #1D2249;
}
.button-otoiawase:hover {
  background: #fff;
  color: #1D2249;
  border: 1.5px solid #1D2249;
}
.button-otoiawase:hover:after {
  right: 1.4rem;
}
/* お役立ち資料DL
--------------------------- */
.siryoudl-wrapper{
    max-width:1440px;
    width: 100%;
    padding:50px 0 320px 0;
    background-size:cover; 
    margin:  auto;
}
.siryoudl-container{
    padding: 0 150px;
    margin: 0 auto;
    color:#1D2249;
    width: 100%;
}
.siryoudl-container h2{
    font-size: 35px;
    line-height: 2;
    text-align: center;
}
.siryoudl-container p{
    font-size: 20px;
    line-height: 1.8;
}
.siryoudl-img-container{
    width: 50%;
    float: left;
    padding:30px 30px;
}
.siryoudl-img{
    width: 390px;
    height: 215px;
    float: right;
}
.dl-text{
    width: 50%;
    float: left;
    padding:50px 10px 50px 10px;
    height: auto;
}
.button-siryoudl {
    display: inline-block;
    text-align: center;
    vertical-align:center;
    background: #1D2249;
    border-radius: 2px;
    position: relative;
    margin: 25px auto 0 auto;
    width: 200px;
    height: auto;
    padding: 10px 25px;
    color: #FFFFFF;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    border: 1.5px solid #1D2249;
}
.button-siryoudl:hover {
  background: #fff;
  color: #1D2249;
  border: 1.5px solid #1D2249;
}
.button-siryoudl:hover:after {
  right: 1.4rem;
}

/* arcicle.html--------------------------------------------- */
/* .article-page{
    display: flex;
    flex-direction: column;
}
.article-wrapper{
    max-width:1140px;
    width: 100%;
    height:max-content;
    margin: auto;
    background-color: #FFFFFF;
    background-size:contain; 
    text-align: center;
    padding: 0 20px 0 55px;
}
.article-container{
    margin: 0 auto;
    display: flex;
    float: left;
    color:#1D2249;
    width: 100%;
    height:max-content;
} */
/* 記事本文
--------------------------- */
.article{
    margin-top: 50px;
    width: 100%;
    height: auto;
}
.toc_container{
    width: 100%;
    height: auto;
}
.article-main{
    width: 77%;
    line-height: 1.7;
    float: left;
    padding:20px 20px 0px 0;
    text-align: left;
    height:max-content;
    border-right:2px solid #E6E6E6; 
}
.pankuzu{
    font-size: 11px;
}
.article-main h1{
    font-size: 27px;
    padding-bottom: 8px;
}
.date{
    float: left;
    font-size: 14px;
    color: black;
}
.article-info{
    float: left;
}
.article-info a{
    background-color: #E4E7FF;
    font-size: 11px;
    padding: 2px 6px 1px 6px;
    font-weight: 900;
    float: left;
    margin-right: 10px;
    text-align: center;
    color: #1A1F4A;
}
.article-info-icon{
    background-color: transparent;
    float: right;
    padding-bottom: 7px;
}
.copyBtn {
    float: right;
    padding-left: 4.5px;
    cursor: pointer;
}
.article-main h2{
    font-size: 25px;
    color: #fff;
    background-color: #1A1F4A;
    padding: 5px 10px;
    margin: 10px 0;
    line-height: 2;
}
.article-main h3{
    font-size: 23px;
    color: #1A1F4A;
    background-color: #E4E7FF;
    padding: 5px 10px;
    margin: 10px 0;
    line-height: 2;
}
.article-main h4{
    font-size: 20px;
    color: #1A1F4A;
    padding: 5px 10px;
    margin: 10px 0;
    border-left: 4px solid #1A1F4A;
    line-height: 2;
}
.article-main ul{
    list-style: disc inside;
}
.article-main li{
    list-style: disc;
    list-style-position: inside;
}
.article-main li li{
    list-style: circle;
    list-style-position: inside;
}
.article-main ul ul{
    padding-left:1em;
    list-style: circle inside;
}
.article-main ul ul ul{
    list-style: square inside;
}
.article-info-icon-end{
    background-color: transparent;
    display: inline-block;
    height: 50px;
}
.article-info-icon-end p{
    display: inline-block;
    padding-right: 10px;
    height:50px;
    line-height:50px;
    vertical-align:center;
    font-size: 15px;
    font-weight: 700;
}
.article-info-icon-end-sns{
    display: inline-block;
    vertical-align:-13.5%;
}
.sns-logo{
    width: 21px;
    height: 21px;
}
/* お役立ち資料 */
.oyakudachi-siryo{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.oyakudachi-siryo-item-l{
    width: 50%;
    height: auto;
    padding-right: 10px;
    padding-bottom: 10px;
}
.oyakudachi-siryo-item-r{
    width: 50%;
    height: auto;
    padding-left: 10px;
    padding-bottom: 10px;
}
/* 関連するサービス
--------------------------- */
.kanren-service{
    height: 480px;
}
.knowledge-consulting{
    width: 50%;
    line-height: 1;
    float: left;
    padding-right: 10px;
}
.knowledge-unei{
    width: 50%;
    line-height: 1;
    float: left;
    padding-left: 10px;   
}
.kanren-service h2{
    margin-bottom: 0;
}
.kanren-service h3{
    padding-left: 0;
    text-align: center;
}
.knowledge-service-text{
    text-align: center;
    padding-top:10px;
    line-height: 1.3;
}
.knowledge-service-text p{
    font-size: 17px;
}
.sarani-knowledge p{
    font-size: 17px;
    text-align: center;
    padding-top: 5px;
}
/* 関連するナレッジ
--------------------------- */
.kanren-knowledge{
    height: 480px;
}
.knowledge-kanren-knowledge-1{
    width: 50%;
    line-height: 1;
    float: left;
    padding-right: 10px;
}
.knowledge-kanren-knowledge-2{
    width: 50%;
    line-height: 1;
    float: left;
    padding-left: 10px;
}
.kanren-knowledge h2{
    margin-bottom: 0;
}
.kanren-knowledge h3{
    padding-left: 0;
    text-align: center;
}
.kanren-knowledge-text{
    text-align: center;
    padding-top:10px;
    line-height: 1.3;
}
.sarani-knowledge p{
    font-size: 16px;
    text-align: center;
    padding-top: 5px;
}
[class^="wp-block-image"] {
    max-width: 100%;
    height: auto;
}
.wp-block-image img{
    max-width: 100%;
    height: auto;

}
/* このナレッジの著者
--------------------------- */
.author{
    background-color: #F9F9F9;
    margin-top: 20px;
    padding: 30px 60px 0 60px;
    height: 400px;
}
.author-title{
    font-size: 25px;
    font-weight: 900;
    text-align: center;
    padding-bottom: 20px;
}
.author-icon{
    flex-shrink: 0;
}
.author-icon img{
    width: 170px;
    height: 170px;
    margin-right: 30px;
    border-radius: 50%;
}
.author-info{
    height: 170px;
    display: flex;
}
.author-info-text{
    height: 170px;
    padding: 15px 0;
}
.role{
    font-size: 13px;
}
.name{
    font-size: 25px;
}
/* サイドバー
--------------------------- */
/* .article-sidebar{
    width: 33%;
    position: sticky;
    top: 70px;
    height: max-content;
    padding-left: 20px;
}
.sidebar-image-box{
    width: 100%;
    position: sticky;
    top: 0;
    margin-top: 3px;
    height: 100%;
}
.sidebar-banner{
    margin-top: 3px;
    width: 400px;
} */

/* CTAパネル
--------------------------- */
.cta-panel-wrapper{
    max-width: 1440px;
    width: 100%;
    margin: auto;
}
.cta-panel{
    width: 99%;
    display: flex;
    color: #fff;
    text-align: center;
    float: left;
}
.cta-common{
    width: calc(100% / 3);
    float: left;
    background-color: #1A1F4A;
    padding: 50px 15px 50px 15px;
    border-right:1.5px solid #fff; 
    line-height: 1.5; 
    flex-grow: 1;
}
.cta-common p{
    color: #fff;
}
.cta-title{
    font-size: 25px;
    font-weight: 900;
    padding-bottom: 20px;
    color: #FFFFFF;
}
.cta-image{
    /* width: 100%;
    height: 220px; */
    /* max-width: 390px; */
    width: 100%;
    height: auto;
    margin: 25px auto;
    display: block;
}
.cta-text{
    padding: 0 30px;
    font-size: 20px;
}
.cta-button{
    display: inline-block;
    background: #1A1F4A;
    border-radius: 2px;
    position: relative;
    margin: 0 auto 0 auto;
    width: 230px;
    height: auto;
    padding: 10px 10px;
    color: #FFFFFF;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    border: 1.5px solid #fff;
}
.cta-button:hover {
  background: #fff;
  color: #1A1F4A;
  border: 1.5px solid #1A1F4A;
}
.cta-button:hover:after {
  right: 1.4rem;
}
/* knowledge.html--------------------------------------------- */
/* ナレッジを探す
--------------------------- */
.search-wrapper{
    max-width:1440px;
    width: 100%;
    margin:  auto;
    background-color:#F9F9F9;
    padding:45px;
    height: 475px;
    color: #1A1F4A;
    line-height: 1.5;
}
.search-text{
    text-align: center;
}
.search-text h1{
    padding-bottom: 20px;
}
.search-text p{
    line-height: 1.5;
}
.knowledge-search{
    text-align: center;
    margin:20px 0 40px 0;	
    }
.search-box{	
    outline:0;
    height:45px;
    padding:0 15px; 
    width:925px;
    background:#fff;
    border: 1px solid #1D2249;
    }
.search-button{
    width:80px;
    height:45px;
    border-radius: 3px;
    background:#1A1F4A;
    color:#fff;
    font-weight:bold;
    font-size:16px;
    border:none;
    }
.search-button:hover{
    background:#fff;
    color:#1A1F4A;
    border: 1px solid #1D2249;
}
.knowledge-tag-list{
    float: left;
    padding-left: 148px;
}
.knowledge-tag-list p{
    margin-bottom: 20px;
}
.knowledge-tag-category{
    font-size: 20px;
    color:#1A1F4A;
    font-weight: 900;
}
.knowledge-tag{
    background-color: #E4E7FF;
    font-size: 17px;
    font-weight: 900;
    padding: 3px 9px;
    margin-right: 15px;
    color:#1A1F4A;
}

/*wp-pagenavi base*/
.wp-pagenavi {
	clear: both;
	text-align:center;
    padding:30px;
}
.wp-pagenavi a, .wp-pagenavi span {
	color: #1A1F4A;
	background-color: #FFF;
	border: solid 1px #1A1F4A;
	padding: 10px 13px;
	margin: 0 6px;
	white-space: nowrap;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
	text-align: center;
	text-decoration:none;
}
.wp-pagenavi span.current{
	color: #FFF;
	background-color: #1A1F4A;
	border-color: #1A1F4A;
}
/* 新着ナレッジ
--------------------------- */
.knowledge-article{
    overflow:hidden;
}
.knowledge-article h1{
    font-size: 20px;
    font-weight: 900;
    border-bottom: 1px solid #1A1F4A;
    padding-bottom: 20px;
}
.knowledge-article-title{
    float: left;
}
.no-knowledge{
    text-align: right;
    font-weight: 100;
}
.search-NoResult{
    padding-top:10%;
}
.thumbnail{
    width: 33.3%;
    float: left;
    padding: 0 10px;
}
.thumbnail-image{
    padding: 30px 0 10px 0;
}
.knowledge-article-info a{
    background-color: #E4E7FF;
    color: #1A1F4A;
    font-size: 5px;
    font-weight: 900;
    padding: 0px 4px;
    float: left;
    line-height:15px;
    margin-right: 5px;
}
.knowledge-article-info > .archive_permalink{
    display: none;
}
.knowledge-all-tag > archive_permalink{
    display: none;
}
.knowledge-all-tag a{
    color: #1A1F4A;
}
.article-date{
    text-align: right;
    color: #1A1F4A;
    line-height:10px;
    font-size: 10px;
}
.article-title{
    text-align: left;
    padding: 8px 0;
    font-weight: 900;
    line-height: 1.5;
    color: #1A1F4A;
}
.article-title a{
    color: #1A1F4A;
}
.knowledge-button{
    text-align: center;
}
.button-article {
    display: inline-block;
    text-align: center;
    vertical-align:center;
    background: #1D2249;
    border-radius: 2px;
    position: relative;
    margin: 35px auto 75px auto;
    height: auto;
    padding: 10px 25px;
    color: #FFFFFF;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    border: 1.5px solid #1D2249;
}
.button-article:hover {
  background: #fff;
  color: #1D2249;
  border: 1.5px solid #1D2249;
}
.button-article:hover:after {
  right: 1.4rem;
}
.button-archive-box{
    text-align: center;
}
.button-archive{
    margin:20px auto 40px auto;
}
/* knowledge-all.html--------------------------------------------- */
.knowledge-all-wrapper{
    max-width:1440px;
    width: 100%;
    margin:  auto;
    background-color:#FFF;
    padding:45px 190px;
}
/* learn.html--------------------------------------------- */
.learn-wrapper{
    max-width:1440px;
    width: 100%;
    height:max-content;
    margin: auto;
    background-color: #FFFFFF;
    background-size:contain; 
    text-align: center;
}
.learn-sidebar{
    width: 21%;
    line-height: 1.3;
    float: left;
    text-align: left;
    height:max-content;
}
.learn-sidebar-step{
    background-color: #E4E7FF;
    color: #1A1F4A;
    padding-left: 10px;
    font-size: 14px;
    font-weight: 900;
    height: 40px;
    line-height:40px;
    border-bottom: solid 1px #FFF;
}
.learn-sidebar-text{
    background-color: #F9F9F9;
    color: #1A1F4A;
    padding-left: 15px;
    font-size: 13px;
    font-weight:100;
    height: 40px;
    line-height:40px;
    border-bottom: solid 1px #FFF;
}
.learn-sidebar-text a{
    color: #1A1F4A;
}
.learn-main{
    width: 79%;
    float: right;
    text-align: left;
    padding: 30px 0 0 40px;
    line-height: 1.8;
    border-left:2px solid #E6E6E6; 
}
.learn-main h1{
    line-height: 1.5;
}
.learn-text-1{
    padding-top:10px;
}
.learn-text-2{
    padding-bottom:20px;
}
.learn-main-text a{
    color:#3789BD;
}
.learn-line-container p{
    border: solid 2px #1A1F4A;
    text-align: center;
}
.learn-main-text-container{
    width: 93%;
    float: left;  
    padding-left: 15px;
}
.learn-main-text-container h2{
    font-size: 25px;    
}
.learn-main-text-container-box{
    padding-bottom: 18px;
}
.learn-line-container{
    width: 7%;
    float: left;   
    font-size: 17px;
    font-weight: 900;
    margin-top: 5px;
}
.learn-line{
    width: 1px;
    height: 200px;
    margin-left: 35px;
    border-left: solid 2px #1A1F4A;
    transform: skewY(135deg);
}
.learn-line-short{
    width: 1px;
    height: 175px;
    margin-left: 35px;
    border-left: solid 2px #1A1F4A;
    transform: skewY(135deg);
}
.learn-line-business{
    width: 1px;
    height: 662px;
    margin-left: 35px;
    border-left: solid 2px #1A1F4A;
    transform: skewY(135deg);
}
.learn-line-business-middle{
    width: 1px;
    height: 490px;
    margin-left: 35px;
    border-left: solid 2px #1A1F4A;
    transform: skewY(135deg);
}
.learn-line-business-short{
    width: 1px;
    height: 115px;
    margin-left: 35px;
    border-left: solid 2px #1A1F4A;
    transform: skewY(135deg);
}
/* お問い合わせ
--------------------------- */
.contact-wrapper{
    max-width:1440px;
    width: 100%;
    margin:  auto;
    background-color:#FFF;
    padding:25px 250px;
    height: fit-content;
    text-align: center;
}
.contact-wrapper h2{
    font-size:30px;
}
.contact-text{
    padding: 15px 0;
    line-height: 1.7;
}
.contact-page{
    text-align: center;
    font-weight: 900;
}
.contact-page p{
    text-align: left;
}
.contact-page span{
    color:#FF0A08;
    font-size:8px;
}
.contact-input{
    width:100%;
    margin:6px 0 20px 0;
    padding:4px 7px 4px 7px;
    font-size:16px;
    background-color: #F9F9F9;
    border:solid 1px #CBD6E2;
    border-radius: 2px;
    font-weight: 100;
}
.textarea-contact{
    width:100%;
    height: 140px;   
    margin:6px 0 20px 0;
    padding:4px 7px 4px 7px;
    font-size:16px;
    background-color: #F9F9F9;
    border:solid 1px #CBD6E2;
    border-radius: 2px;
    font-weight: 100;
}
/* 会社情報--------------------------------------------- */
.company-wrapper{
    max-width:1440px;
    width: 100%;
    margin:  auto;
    background-color:#FFF;
    padding:25px 10px;
    height: fit-content;
    text-align: center;     
}
.company-text{
    line-height: 1.6;
    padding:15px 0;
}

.company-contact{
    color:#3789BD;
}
/* 個別無料相談ページ
--------------------------- */
.soudan-wrapper{
    padding: 0px 100px;
    margin: auto;
    background-color: #FFFFFF;
    text-align: center;
    max-width: 1280px;
}
.soudan-main{
    width: 100%;
    line-height: 1.7;
    float: left;
    text-align: left;
    height:max-content;
    padding-bottom: 20px;
}
.soudan-main h2{
    font-size: 25px;
    color: #fff;
    background-color: #1A1F4A;
    padding: 5px 10px;
    margin: 10px 0;
    line-height: 2;
}
.soudan-main h3{
    font-size: 23px;
    color: #1A1F4A;
    background-color: #E4E7FF;
    padding: 5px 10px;
    margin: 10px 0;
    line-height: 2;
}
.soudan-main h4{
    font-size: 20px;
    color: #1A1F4A;
    padding: 5px 10px;
    margin: 10px 0;
    border-left: 4px solid #1A1F4A;
    line-height: 2;
}
.soudan-main li{
    list-style: disc;
    list-style-position: inside;
}
.soudan-main ul li ul{
    padding-left:1em;
}
.soudan-main ul li ul li{
    list-style:circle;
    list-style-position:inside;
}
.soudan-main ul li ul li ul{
    padding-left:2em;
}
.soudan-main ul li ul li ul li{
    list-style:square;
    list-style-position:inside;
}
.soudan-main table{
    width: 100%;
    border-collapse: collapse;
}
.soudan-main table tr{
    border-top: solid 1px #E6E6E6;
    border-bottom: solid 1px #E6E6E6;
}
.soudan-main table tr th{
    background-color: #F9F9F9;
    border-bottom: solid 1px #E6E6E6;
}
.soudan-main table tr td{
    background-color: #fff;
    border-bottom: solid 1px #E6E6E6;
}
.soudan-banner-container{
    display: flex;
    max-width:1440px;
    align-items: center;
    width: 100%;
    margin: auto;
    gap: 30px;
}
.soudan-banner-content{
    width: 60%;
    text-align: left;
}
.soudan-author-container{
    margin-top: 20px;
    height: 200px;
}
.soudan-image-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    gap: 20px 20px;
}
.soudan-banner-container{
    padding: 20px 0px;
}
.soudan-image-list img{
    width: calc(50% - 10px);;
}
/* タブレット */
@media screen and (max-width:1000px) {
    .top-sub-wrapper{
        background-image:url(../images/top-3d.webp);
        background-size:80%; 
        background-position: center top 60%;
        padding:0;
        height: 600px;
    }
    .top-container{
    padding: 0 50px;
    margin: 0 auto;
    color:#1D2249;
    width: 100%;
    }
    .top-container h2{
    font-size: 40px;
    line-height: 2;
    }
    .top-container p{
        font-size: 20px;
        line-height: 1.5;
    }
    .top-container > .button-results{
        display: inline-block;
        margin: 390px auto 10px auto;
    }
    
    /* 箇条書き */
    .top-container ol{
        display: none;
    }
      /* 活用事例 */
      .results-wrapper{
        padding:20px;
    }
    .results-container p{
        font-size: 18px;
        margin-bottom: 20px;
    }
    .results{
        width: 25%;
        line-height: 0;
        float: left;
        padding:10px 10px;
        height:150px;
        margin-bottom: 20px;
    }
    .results-text{
        display:block;
        background-color: #fff;
        border: 1px solid #1D2249;
        text-align: center;
        line-height: 40px;
        color:#0171E2;
        font-weight: 300;
        font-size: 15px;
    }
    .button-results {
        display: inline-block;
        text-align: center;
        vertical-align:center;
        background: #1D2249;
        border-radius: 2px;
        position: relative;
        margin: 20px auto 10px auto;
        height: auto;
        padding: 10px 25px;
        color: #FFFFFF;
        transition: 0.3s ease-in-out;
        font-weight: 600;
        border: 1.5px solid #1D2249;
    }    
    /* メタバース総研の紹介
    --------------------------- */
    .syoukai-wrapper{
        max-width:1440px;
        width: 100%;
        height:650px;
        margin: 0 auto;
        background-image:url(images/syoukai.jpg);
        background-size:cover; 
        text-align: center;
        padding: 30px 30px 0 30px;
        }
    .syoukai-container{
        margin: 0 auto;
        color:#1D2249;
        width: 100%;
        }
    .syoukai-container h2{
        font-size: 35px;
        line-height: 2;
        }
    .syoukai-container p{
        font-size: 20px;
        line-height: 1.5;
        margin: 5px 0;
        }
    .sarani-unei{
        font-size: 20px;
        line-height: 1.5;
        color:#0171E2;
        }
    .unei p{
        margin: 10px 0;
        }
    .consulting p{
        margin: 10px 0;
        }
    /* お問い合わせ
    --------------------------- */
    .otoiawase-wrapper{
        padding:30px 10px;
        }
    .otoiawase-container p{
        padding: 0 10px;
        }
    /* お役立ち資料
    --------------------------- */
    .siryoudl-wrapper{
        max-width:1440px;
        width: 100%;
        padding:30px 0 320px 0;
        background-size:cover; 
        margin:  auto;
        }
    .siryoudl-container{
        padding: 0 60px;
        margin: 0 auto;
        color:#1D2249;
        width: 100%;
        }
    .siryoudl-container h2{
        font-size: 35px;
        line-height: 2;
        text-align: center;
        }
    .siryoudl-container p{
        font-size: 16px;
        line-height: 1.8;
        }
    .siryoudl-img-container{
        width: 50%;
        float: left;
        padding:30px 30px;
        }
    .siryoudl-img{
        width: 390px;
        height: 215px;
        float: right;
        }
    .dl-text{
        width: 50%;
        float: left;
        padding:50px 0 50px 0;
        height: auto;
        }
    .button-siryoudl {
        display: inline-block;
        text-align: center;
        vertical-align:center;
        background: #1D2249;
        border-radius: 2px;
        position: relative;
        margin: 25px auto 0 auto;
        width: 200px;
        height: auto;
        padding: 10px 25px;
        color: #FFFFFF;
        transition: 0.3s ease-in-out;
        font-weight: 600;
        border: 1.5px solid #1D2249;
        }
    .button-siryoudl:hover {
    background: #fff;
    color: #1D2249;
    border: 1.5px solid #1D2249;
        }
    .button-siryoudl:hover:after {
    right: 1.4rem;
        }
    /* フッター
    --------------------------- */
    .footer-mobile{
        display: none;
    }
    .footer-wrapper{
        max-width:1440px;
        width: 100%;
        padding:80px 0 80px 0;
        background-size:cover; 
        margin:  auto;
        background-color: #F9F9F9;
        height: 380px;
        clear: both;
        }
    .footer-container{
        padding: 0 50px;
        margin: 0 auto;
        color:#1D2249;
        width: 100%;
        }
    .footer-list{
        float: left;
        max-width: 25%;
    }
    .footer-bold{
        font-weight: bold;
        }
    .footer-list li{
        padding: 0 0 20px 50px;
        }
    .main-nav{
        display: none;
        }
    /* 記事本文
    --------------------------- */
    .article-thumbnail{
        height: 300px;
        }
    .kanren-service{
        height: 390px;
        }
    .kanren-service h3{
        font-size: 20px;
        }
    .kanren-knowledge{
        height: 360px;
        }
    /* 著者
    --------------------------- */
    .author{
        background-color: #F9F9F9;
        padding: 30px 30px 0 30px;
        height: 300px;
        }
    .author-info-text{
        font-size: 14px;
        }
    /* CTAパネル
    --------------------------- */
    .cta-text{
        padding: 0;
    }
    /* 新着ナレッジ
    --------------------------- */
    .knowledge-all-wrapper{
        max-width:1460px;
        width: 100%;
        margin:  auto;
        background-color:#FFF;
        padding:45px 20px;
    }
    .search-box{	
        width:440px;
        height: 40px;
    }
    .search-button{
        height:40px;
    }
    /* ナレッジを探す
    --------------------------- */
    .search-wrapper{
        max-width:1440px;
        width: 100%;
        margin:  auto;
        background-color:#F9F9F9;
        padding:20px;
        height: 400px;
        color: #1A1F4A;
    }
    .search h1{
        padding-bottom: 20px;
    }
    .knowledge-tag-list{
        float: left;
        padding-left: 50px;
    }
    .knowledge-tag-category{
        font-size: 14px;
    }
    .knowledge-tag{
        font-size: 12px;
    }
    .knowledge-all-thumbnail{
        height:105px;
    }
    .learn-sidebar{
        display:none;
    }
    .learn-sidebar-step{
        display:none;
    }
    .learn-sidebar-text{
        display:none;
    }
    .learn-sidebar-text a{
        display:none;
    }
    .learn-main{
        width: 100%;
        float: center;
        text-align: left;
        padding: 20px;
        border-left:none; 
    }
    .learn-main h1{
        font-size: 30px;
    }
    .learn-main-text a{
        color:#3789BD;
    }
    .learn-line-container p{
        display:none;
    }
    .learn-main-text-container{
        width: 100%;
        padding-left: 0px;
    }
    .learn-line-container{
        display:none;
    }
    .learn-line{
        display:none;
    }
    .learn-line-short{
        display:none;
    }
    /* お問い合わせ
    --------------------------- */
    .contact-wrapper{
        padding:25px 150px; 
    }
    /* 相談 */
    .soudan-wrapper{
        width: 100%;
        margin: auto;
        padding: 0 20px;
    }
}
/* スマホ */
@media screen and (max-width:650px) {
    .logo{
        width: 80px;
        margin: auto;
        /* padding-top:5px */
    }
    .header{
        height: 60px;
    }
    .header-box{
        height: 52px;
    }
    .top-wrapper{
        /* width: 90%; */
        padding: 0px 20px;
        margin: 20px auto;
        /* padding:0px; */
    }
    .top-container{
        padding: 0 10px;
    }
    .top-sub-wrapper{
        background-image:url(../images/top-3d.webp);
        background-size:80%; 
        background-position: center top 60%;
        padding:0;
        height: 410px;
        padding:20px 0 20px 0;
    }
    .top-container p{
        padding: 0 10px;
        font-size: 15px;
    }
    .top-container h2{
        font-size: 30px;
        padding: 10px 10px 0 10px;
    }
    .top-container > .button-results{
        display: inline-block;
        margin: 200px auto 10px auto;
    }
     /* 活用事例 */
     .results-wrapper{
        padding:20px;
    }
    .results-container h2{
        font-size: 25px;
    }
    .results-container p{
        font-size: 15px;
        margin-bottom: 10px;
    }
    .results{
        width: 50%;
        padding: 5px;
        height: 140px;
        margin-bottom: 5px;
    }
    .results-image{
        width: 177px;
    }
    .button-results {
        margin: 20px auto 40px auto;
    } 
     /* メタバース総研の紹介
    --------------------------- */
    .syoukai-wrapper{
        padding: 20px;
        height: max-content;
    }
    .syoukai-container h2{
        font-size: 25px;
    }
    .syoukai-container p{
        font-size: 15px;
    }
    /* メタバース総研の運営 */
    .unei{
        width: 100%;
        float: none;
        line-height: 1;
        padding:10px 0px;   
    }
    .unei h3{
        font-size: 20px;
        padding: 15px 0;
        margin-bottom: 10px; 
    }
    .sarani-unei{
        font-size: 15px;
        line-height: 1.5;
        color:#0171E2;
    }
    /* メタバースコンサルティング */
    .consulting{
        float: none;
        width: 100%;
        line-height: 1;
        padding:10px 0px;   
    }
    .consulting h3{
        font-size: 20px;
        padding: 15px 0;
        margin-bottom: 10px;
    }
    /* お問い合わせ
    --------------------------- */
    .otoiawase-wrapper{
        padding:20px 20px 30px 20px;
    }
    .otoiawase-container{
        margin: 0 auto;
        color:#1D2249;
        width: 100%;
        padding:0;
    }
    .otoiawase-container h2{
        font-size: 25px;
    }
    .otoiawase-container p{
        font-size: 15px;
        line-height: 1.5;
    }
    .button-otoiawase {
        margin: 15px auto 0 auto;
    }
    /* お役立ち資料
    --------------------------- */
    .siryoudl-wrapper{
        padding:20px 0 20px 0;
        background-size:cover; 
        margin:  auto;
    }
    .siryoudl-container{
        padding: 0 20px;
    }
    .siryoudl-container h2{
        font-size: 25px;
    }
    .siryoudl-container p{
        font-size: 15px;
    }
    .siryoudl-img-container{
        width: 100%;
        padding:10px 10px;
    }
    .siryoudl-img{
        width: 390px;
        height: 215px;
    }
    .dl-text{
        width: 100%;
        padding:15px 15px 30px 15px;
        text-align: center;
    }
    .button-siryoudl {
        margin: 15px auto 0 auto;
    }
    /* arcicle.html--------------------------------------------- */
    .article-wrapper{
        /* height:3000px; */
        padding: 0 10px 0 10px;
    }
    .article-container{
        margin: 0 auto;
        color:#1D2249;
        width: 100%;
        display: flex;
        height:max-content;
    }
    /* 記事本文
    --------------------------- */
    .article-main{
        width: 100%;
        line-height: 1.7;
        float: left;
        padding:5px 5px;
        text-align: left;
        height:max-content;
        border-right:none; 
    }
    .pankuzu{
        font-size: 11px;
    }
    .article-main h1{
        font-size: 25px;
        line-height: 1.4;
    }
    .date{
        display: none;
    }
    .article-info a{
        font-size: 10px;
        padding: 2px 6px 1px 6px;
        margin-right: 5px;
    }
    .article-info-icon{
        background-color: transparent;
        float: right;
        padding-bottom: 7px;
    }
    .article-thumbnail{
        height: 202px;
    }
    .article-main h2{
        font-size: 25px;
        color: #fff;
        background-color: #1A1F4A;
        padding: 5px 10px;
        margin: 10px 0;
        line-height: 1.4;
    }
    .article-main h3{
        font-size: 23px;
        color: #1A1F4A;
        background-color: #E4E7FF;
        padding: 5px 10px;
        margin: 10px 0;
        line-height: 1.4;
    }
    .article-main h4{
        font-size: 20px;
        color: #1A1F4A;
        padding: 5px 10px;
        margin: 10px 0;
        border-left: 4px solid #1A1F4A;
        line-height: 1.4;
    }
    /* お役立ち資料 */
    .oyakudachi-siryo{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
    }
    .oyakudachi-siryo-item-l{
        width: 100%;
        height: auto;
        padding:0px 0px 10px 0px;
    }
    .oyakudachi-siryo-item-r{
        width: 100%;
        height: auto;
        padding:0px 0px 10px 0px;
    }
    /* 関連するサービス
    --------------------------- */
    .kanren-service{
        height: max-content;
    }
    .knowledge-consulting{
        width: 100%;
        float: none;
        display: center;
        padding: 0;   
        height: max-content;
    }
    .knowledge-unei{
        width: 100%;
        float: none;
        display: center;
        padding: 0;   
        height: max-content;
    }
    .kanren-service h2{
        margin-bottom: 0;
    }
    .kanren-service h3{
        padding-left: 0;
        text-align: left;
        padding-left: 10px;
    }
    .knowledge-service-text{
        text-align: center;
        padding-top:10px;
        line-height: 1.3;
    }
    .sarani-knowledge p{
        font-size: 16px;
        text-align: center;
        padding-top: 5px;
    }
    /* 関連するナレッジ
    --------------------------- */
    .kanren-knowledge{
        height: 800px;
    }
    .knowledge-kanren-knowledge-1{
        width: 100%;
        float: none;
        padding: 0;   
        height: max-content;
    }
    .knowledge-kanren-knowledge-2{
        width: 100%;
        float: none;
        padding: 0;   
    }
    .kanren-knowledge h2{
        margin-bottom: 10px;
    }
    .kanren-knowledge h3{
        padding-left: 10px;
        text-align: left;
    }
    .kanren-knowledge-text{
        text-align: center;
        padding-top:10px;
        line-height: 1.3;
    }
    .sarani-knowledge p{
        font-size: 16px;
        text-align: center;
        padding-top: 5px;
    }
    /* このナレッジの著者
    --------------------------- */
    .author{
        width: 100%;
        height: 480px;
        padding: 20px 10px;
    }
    .author-title{
        font-size: 25px;
        text-align: center;
        padding-bottom: 20px;
    }
    .author-info{
        text-align: center;
        margin:0 auto;
        width: 100%;
        float: center;
        display: block;
    }
    .author-icon{
        display:inline-block;
        text-align: center;
    }
    .author-info-text{
        height: 170px;
        padding: 15px 0;
        float: right;
    }
    .role{
        display: block;
        font-size: 13px;
    }
    .name{
        font-size: 25px;
    }
    .people-intro{
        padding-bottom: 10x;
    }
    /* 相談
    --------------------------- */
    .soudan-banner-container{
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: auto;
        padding: 0 10px;
    }
    .soudan-banner-content{
        width: 100%;
        /* text-align: left; */
    }
    .soudan-author-container{
        width: 100%;
        height: 480px;
        padding: 20px 10px;
    }
    .soudan-image-list{
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        gap: 10px 0px;
    }
    .soudan-banner-container{
        padding: 20px 0px;
    }
    .soudan-image-list img{
        width: 100%;
    }
    .author-icon{
        flex-shrink: 0;
    }
    .soudan-main table{
        width: 100%;
        border-collapse: collapse;
    }
    .soudan-main table tr{
        border-top: solid 1px #E6E6E6;
        border-bottom: solid 1px #E6E6E6;
    }
    .soudan-main table tr th{
        background-color: #F9F9F9;
        border-bottom: solid 1px #E6E6E6;
        display: block;
        width: 100%;
    }
    .soudan-main table tr td{
        background-color: #fff;
        border-bottom: solid 1px #E6E6E6;
        display: block;
        width: 100%;
    }
    /* サイドバー
    --------------------------- */
    .article-sidebar{
        display: none;
    }
    /* CTAパネル
    --------------------------- */
    .cta-panel-wrapper{
        width: 100%;
        margin:  auto;
    }
    .cta-panel{
        width: 100%;
        height: max-content;
        float: none;
        display: inline;
    }
    .cta-common{
        width: 100%;
        line-height: 1;
        float: left;
        padding: 20px 15px 25px 15px;
        border-right:0px;   
        line-height: 1.5;
        border-right: none;
        border-bottom: 1.5px solid #fff; 
    }
    .cta-title{
        font-size: 25px;
        font-weight: 900;
        padding-bottom: 20px;
        color: #FFFFFF;
    }
    .cta-image{
        width: 100%;
        max-width: 390px;
        margin: 25px auto;
        display: block;
    }
    .cta-text{
        padding: 0 10px;
        font-size: 17px;
    }
    .cta-button{
        display: inline-block;
        background: #1A1F4A;
        border-radius: 2px;
        position: relative;
        margin: 0 auto 0 auto;
        width: 250px;
        height: auto;
        padding: 10px 25px;
        color: #FFFFFF;
        transition: 0.3s ease-in-out;
        font-weight: 600;
        font-size: 15px;
        border: 1.5px solid #fff;
    }
    .cta-button:hover {
        background: #fff;
        color: #1A1F4A;
        border: 1.5px solid #1A1F4A;
    }
    .cta-button:hover:after {
        right: 1.4rem;
    }
    /* 新着ナレッジ
    --------------------------- */
    .knowledge-all-wrapper{
        padding:15px 10px 10px 10px;
    }
    .search-box{	
        width:200px;
        }
    .knowledge-search{
        text-align: center;
        margin: 20px 0 20px 0;
    }
    .knowledge-article h1{
        font-size: 13px;
        padding-bottom: 10px;
    }
    .thumbnail{
        width: 50%;
        width: 0 auto;
        padding: 0 10px;
    }
    .thumbnail-image{
        padding: 15px 0 5px 0;
    }
    .knowledge-all-thumbnail{
        width: 374px;
    }
    .knowledge-article-info{
        display: none;
    }
    .knowledge-all-tag{
        background-color: #E4E7FF;
        color: #1A1F4A;
        font-size: 14px;
        font-weight: 900;
        padding: 3px 7px;
        margin-right: 5px;
        float: left;
        line-height:15px;
    }
    .article-date{
        text-align: right;
        color: #1A1F4A;
    }
    .article-title{
        text-align: left;
        padding: 0 8px 0 0;
        font-weight: 900;
        line-height: 1.5;
        color: #1A1F4A;
        font-size: 12px;
    }
    .wp-pagenavi a, .wp-pagenavi span {
        padding: 7px 9px;
    }
    /* ナレッジを探す
    --------------------------- */
    .search-wrapper{
        padding:25px 10px 10px 10px;
        height: 220px;
    }
    .search-text h1{
        font-size: 25px;
    }
    .knowledge-tag-list{
        display: none;
    }
    .knowledge-tag-category{
        display: none;
    }
    .knowledge-tag-category{
        font-size: 10px;
    }
    .knowledge-tag{
        font-size: 11px;
        margin:0 3px 0 0;
        padding: 3px 5px;
    }
}
@media screen and (max-width:650px) {
    /* お問い合わせ
    --------------------------- */
    .contact-wrapper{
        padding:25px 20px; 
    }
    /* ハンバーガーメニュー
    --------------------------- */
  /* Navbar & Navmenu color */
  :root {
    --background-navbar: #FFF;
  }
  .header{
    display: none;
  }
  .header-smartphone{
    background: var(--background-navbar);
    position: fixed;
    top: 0px;
    width: 100%;
    height: 52px;
    display: flex;
    z-index: 10;
    box-shadow: 0px 2px 0px #E6E6E6;
  }
  
  /* Nav items */
  .menu {
    list-style: none;
    position: fixed;
    width: 100%;
    height: auto;
    top: 0;
    margin-top: 52px;
    padding: 0 0 10px 0;
    clear: both;
    background: var(--background-navbar);
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
    transform: scale(1, 0);
    transform-origin: top;
    overflow: scroll;
  }
  
  /* Hamburger menu button */
  .menu-btn:checked ~ .menu {
    transform: scale(1, 1);
    transform-origin: top;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
  
  /* Hamburger menbu text */
  .menu a {
    text-decoration: none;
    font-weight: normal;
    letter-spacing: 2px;
    font-size: 16px;
    text-transform: capitalize;
    color: #000000;
    opacity: 0;
    transition: 0.5s;
  }
  
  .menu-btn {
    display: none;
  }
  
  .menu-icon {
    display: inline-block;
    position: relative;
    cursor: pointer;
    padding: 24px 14px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  
  .navicon {
    background: #000000;
    display: block;
    height: 3px;
    width: 26px;
    position: relative;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
  
  .navicon:before,
  .navicon:after {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    background: #000000;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
  
  .navicon:before {
    top: 9px;
  }
  
  .navicon:after {
    bottom: 9px;
  }
  
  /* Hamburger Menu Animation Start */
  .menu-btn:checked ~ .menu-icon .navicon:before {
    transform: rotate(-45deg);
  }
  
  .menu-btn:checked ~ .menu-icon .navicon:after {
    transform: rotate(45deg);
  }
  
  .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before {
    top: 0;
  }
  .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
    bottom: 0;
  }
  
  .menu-btn:checked ~ .menu-icon .navicon {
    background: rgba(0, 0, 0, 0);
    transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
  /* Hamburger Menu Animation End */
  
  /* Navbar Container */
  .navtext-container {
    width: 100%;
    height: 52px;
    box-sizing: border-box;
    display: flex;
    padding-left: 2.5%;
    align-items: center;
  }

  .second-service-menu__item{
    margin: 0px;
  }
  /* ハンバーガーメニューの表示 */
  .menu .menu-parent {
    padding: 15px 0;
    margin: 0 40px;
    opacity: 0;
    transition: 0.5s;
    position: relative; /* 擬似要素がこの要素に基づいて配置されるように */
    }

    .menu .menu-parent::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px; /* ボーダーの高さ */
        background: linear-gradient(to right, #130A3F, #433EFD, #0DC1EC);
    }
  .menu-btn:checked ~ .menu a,
  .menu-btn:checked ~ .menu .menu-parent {
    opacity: 1;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
  }

  .a-menu{
    display: flex;
    justify-content: space-between;
    color: #000000;
  }

  .menu-child{
    height: 0px;
    opacity: 0;
    overflow: hidden;
    padding: 0px;
  }
  .header-smartphone input {
    display: none;
  }
  .menu-btn-child:checked ~ .menu-child{
    height: auto;
    opacity: 1;
    transition: padding .25s,opacity .25s, visibility .25s, height .25s;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .checked{
    display: none;
  }
  .menu-btn-child:checked ~ .menu-child .checked{
    display: block;
  }
  .menu-btn-child:checked ~ .menu-child .not-checked{
    display: none;
  }
  .second-service-menu__item{
    padding-top: 10px;
  }
  .second-service-menu__item a{
    font-size: 14px;
  }
  .second-service-menu__item:first-child{
    padding-top: 25px;
  }
  .second-service-menu__item:last-child{
    padding-bottom: 10px;
  }

  
  .title-container:first-child {
    display: flex;
    align-items: center;
    width: 100%; /* コンテナを全幅に */
    padding: 20px 0 20px 0;
    }

  .title-container {
    display: flex;
    align-items: center;
    width: 100%; /* コンテナを全幅に */
    padding: 60px 0 20px 0;
    }
  .title-with-line {
    font-size: 25px;
    font-weight:500;
    color: #000000;
    white-space: nowrap;
    margin: 0;
    padding-right: 15px;
    }
    .line {
        flex-grow: 1; /* 残りのスペースを埋める */
        height: 2px;
        width: 100%;
        background: linear-gradient(to right, #130A3F, #433EFD, #0DC1EC); /* グラデーションの背景色 */
    }
    p{
        height: auto;
        display: block;
        font-size: 14px;
        line-height: 1.5em;
        text-align: left;
    }
}
