/****
共通スタイル
***/
html {
  /* アンカーリンクの調整 */
  scroll-padding-top: 75px;
}


html, body {
  height: 100%; /* 全体の高さを確保 */
  margin: 0;
}

body {
  margin: 0 auto;
  display: flex;
  flex-direction: column; 
  min-height: 100vh;
  font-size: 1.05rem !important;
}
main{
  flex: 1;
}
a{
  word-break: break-word;
}

/* トップに戻るボタン */
#template-footer .top-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #29a7e1;
        display: flex;
    align-items: center !important;
    justify-content: center !important;
}

#template-footer .top-button img{
transform: rotate(270deg);
}

html {
  scroll-behavior: smooth;
}
body {
  height: auto;
}

.move-page-top {
  position: fixed;
  right: 20px;
  bottom: -120px;
  animation: progress linear;
  animation-timeline: scroll();
  transition: bottom 1s ease;
  z-index: 999;
}
@keyframes progress {
  0% {
    bottom: -120px;
  }
  2% {
    bottom: -120px;
  }
  3% {
    bottom: 0px;
  }
  4% {
    bottom: 20px;
  }
  100% {
    bottom: 20px;
  }
}




/****
ナビゲーションメニュー(ヘッダー)
***/

header{
    padding: 5px 0 20px;
}
nav{
    width: 1200px;
    margin: 0 auto;
}
.header-logo{
  width: 170px;
}
nav ul{
  margin: 0px;
  padding:0px;
}
nav ul li{
  list-style: none;
  margin-right: 20px;
}
nav ul li a{
  text-decoration: none;
  color: #203744;
}
nav ul li a:hover{
    color: #203744;
}

.mail-btn{
  background-image: url(../images/menu-icon-mail.svg);
  background-repeat: no-repeat;
  padding-left: 27px;
  background-size: 19px;
  background-position-y: center;
    font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight:500;
  font-style: normal;
}
.link-btn{
  background-image: url(../images/menu-icon-link.svg);
  background-repeat: no-repeat;
  padding-left: 27px;
  background-size: 18px;
  background-position-y: 5px;
    font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight:500;
  font-style: normal;
}
.home-btn{
  background-image: url(../images/menu-icon-home.svg);
  background-repeat: no-repeat;
  padding-left: 27px;
  background-size: 19px;
  background-position-y: center;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
nav ul li.contact-btn{
  background-color: #14A0DC;
  padding: 11px 26px 11px 22px;
    font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight:600;
  font-style: normal;
}
nav ul li.contact-btn a{
  color: #ffffff;
  background-image: url(../images/menu-icon-contact.svg);
  background-repeat: no-repeat;
  padding-left: 34px;
  background-size: 23px;
  background-position-y: center;
}
.tel-icon{
  width: 32px;
  margin-right: 6px;
}
nav ul.tel{
  text-align: right;
  margin: 0;
}
nav ul.tel li:nth-child(1),
nav ul.tel li:nth-child(3){
  font-size: 0.8rem;
  margin: 0px;
}
nav ul.tel li:nth-child(2){
  color:  #14A0DC;
  font-family: "Archivo Black", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.7rem;
  line-height: 20px;
  margin: 2px 0;
}

.main-menu,
.footer-main-menu{
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight:600;
  font-style: normal;
  margin-top: 20px;
  font-size: 1.09rem;
}
.main-menu ul li a{
  display: flex;
  align-items: center;
  color: #203744;
}
.main-menu ul li:nth-child(4){
  margin: 0px;
}
.main-menu li img,
.footer-main-menu li img{
  width: 12px;
  margin-right: 15px;
}
.nav-menu{
  display: block;
}
.secondary-menu-link{
  padding-bottom: 5px;
  background-image: linear-gradient(#203744, #203744);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 0 1px; /* 下線のサイズ（横幅、高さ） */
  transition: background-size 0.3s;
}
.secondary-menu-link:hover {
  background-position: bottom left;
  background-size: 100% 1px;
}

.menu-bar-netapp{
  padding-bottom: 7px;
  padding-right: 5px;
    background-image: linear-gradient(#2C5CA9, #2C5CA9);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 0 1px; /* 下線のサイズ（横幅、高さ） */
  transition: background-size 0.3s;
}
.menu-bar-netapp:hover {
  background-position: bottom left;
  background-size: 100% 1px;
}

.menu-bar-rec{
  padding-bottom: 7px;
  padding-right: 5px;
    background-image: linear-gradient(#253872, #253872);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 0 1px; /* 下線のサイズ（横幅、高さ） */
  transition: background-size 0.3s;
}
.menu-bar-rec:hover {
  background-position: bottom left;
  background-size: 100% 1px;
}

.menu-bar-guide{
  padding-bottom: 7px;
  padding-right: 5px;
    background-image: linear-gradient(#F4A01A, #F4A01A);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 0 1px; /* 下線のサイズ（横幅、高さ） */
  transition: background-size 0.3s;
}
.menu-bar-guide:hover {
  background-position: bottom left;
  background-size: 100% 1px;
}

.menu-bar-spass{
  padding-bottom: 7px;
  padding-right: 5px;
    background-image: linear-gradient(#EF958A, #EF958A);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 0 1px; /* 下線のサイズ（横幅、高さ） */
  transition: background-size 0.3s;
}
.menu-bar-spass:hover {
  background-position: bottom left;
  background-size: 100% 1px;
}
.footer-right{
  display: flex;
}
.footer-right li{
  list-style: none;
}
.footer-main-menu img{
  display: inline;

}



/*************************/
/*サイドメニュー*/
/*************************/
.r-menu{
    position: absolute;
    top: 10rem;
    right: 3%;
    z-index: 900;
    margin-right: 10px;
}
.floating {
  /* アニメーションの設定 */
  animation: fuwafuwa 8s infinite ease-in-out;
  background: #ffffff;
  border-radius: 20px;
  padding: 9px 20px 18px;
  margin-right: 20px;
  background-color: rgb(252 251 251 / 82%);
}
.r-menu ul{
  margin: 0px;
  padding: 0px;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 400!important;
    font-style: normal;
    font-size: 1.1rem;
}
.r-menu ul li{
  list-style: none;
  background-repeat: no-repeat;
  background-size: 8px;
  background-position-y: center;
  padding-left: 20px;
  margin-top: 5px;
}
.r-menu ul li a{
  text-decoration: none;
  color: #000000;
}
.r-menu ul.toppage li{
  background-image: url(../images/menu-icon-ckip.svg);
}
.r-menu ul.toppage li a{
  background-image: linear-gradient(#29A7E1, #29A7E1);
}
.r-menu ul.netapppage li{
  background-image: url(../images/menu-icon-netapp.svg);
}
.r-menu ul.netapppage li a{
  background-image: linear-gradient(#2557A6, #2557A6);
}
.r-menu ul.recpage li{
  background-image: url(../images/menu-icon-rec.svg);
}
.r-menu ul.recpage li a{
  background-image: linear-gradient(#1B2853, #1B2853);
}
.r-menu ul.guidepage li{
  background-image: url(../images/menu-icon-guide.svg);
}
.r-menu ul.guidepage li a{
  background-image: linear-gradient(#EB9B21, #EB9B21);
}
.r-menu ul.spasspage li{
  background-image: url(../images/menu-icon-spass.svg);
}
.r-menu ul.spasspage li a{
  background-image: linear-gradient(#F08E8B, #F08E8B);
}



.r-menu ul li a.secondary-menu-link{
  padding-bottom: 4px;
}
@keyframes fuwafuwa {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px); /* 上に15px移動 */
  }
}


/****
フッター
***/

footer{
    background: #F0F8FF;
    padding: 20px;
    margin-top: 30px;
    display: table;
    width: 100%;
}
#footer-wrap{
  width: 1200px;
  margin: 20px auto 10px;
}
.security_logo{
  display: flex;
  align-items: center;
  margin-top: 35px;
}
.security_logo img{
  height: 77px;
  margin: 0px 5px;
  padding: 8px;
}

.footer-logo{
  width: 145px;
  margin: 0px;
}
.footer-pm-logo,
.footer-isms-logo{
  background-color: #ffffff;
}
.footer-left ul{
  margin: 15px 0px 0px 20px;
  padding: 0px;
  display: flex;
}
.footer-left ul li{
  margin-right: 30px;
}
.footer-left ul li a,
.footer-right ul li a{
  text-decoration: none;
  color: #203744;
}
.footer-secondary-menu li,
.footer-main-menu li{
  margin-bottom: 13px;
}
.footer-main-menu {
  margin: 0px;
  padding: 0px;
}
ul.footer-main-menu li .menu-bar-netapp,
ul.footer-main-menu li .menu-bar-rec,
ul.footer-main-menu li .menu-bar-guide,
ul.footer-main-menu li .menu-bar-spass {
  padding-bottom: 6px;
}

/* 
アクセス時のエフェクト（白）
CSS読み込み⇒load-effect.jpでCSSを解除
*/
html {
  visibility: hidden;
  opacity: 0;
}

html.is-loaded {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/*ページトップ*/

/* 
二階層目 
*/
/* 共通 */
a[href$=".pdf"]{
    background: url(../images/pdf_icon.png) no-repeat left;
    padding-left: 30px;
    padding-bottom: 1px;
}

.entry-wrapper{
    width: 1200px;
    margin: 0 auto;
}

.entry-title {
  position: relative;
  padding-left: 30px; 
  font-size: 1.8rem;
  font-weight: bold;
      margin: 60px 0;
}

.entry-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 8px;
    background-color: #2ea7e0;
}

.entry-content p {
    margin-bottom: 15px;
}

.entry-content h2{
      color: #336699;
    font-size: 21px;
    font-weight: bold;
    margin-bottom: 20px;
    border-left: 7px double #336699;
    padding-left: 15px;
}

.entry-content h3 {
    background: #f0f0f0 none repeat scroll 0 0;
    border-bottom: medium none;
    border-radius: 5px;
    padding: 0.6em 0.7em 0.5em;
    margin-bottom: 1em;
    color: #616161;
    font-size: 21px;
}

.entry-content img{
  margin: 15px 0;
}

/* お知らせ */
.news-content h3{
      margin-top: 30px;
    margin-bottom: 20px;
}

.news-content h4{
      background: #14a0dc;
    color: #fff;
    font-weight: bold;
    margin: 40px 0 15px;
    padding: 10px;
    font-size: 1rem;
}

/* 印刷ボタン */
.print-btn{
    width: fit-content;
    margin: 30px 0;
}

.print-btn a{
  background: #f0f0f0 !important;
  color: #000;
  text-decoration: unset;
  background: none;
      padding: 10px 15px;
}

/* メールがうまく届かない方：アコーディオン */
#sec-mail {
    background-color: #fff;
    border: 2px solid #93b728;
    padding: 0 0 13px;
    margin-bottom: 20px;
}

#sec-mail h2 {
      color: unset;
    border: none;
    background-color: #f4f3df;
    font-size: 130%;
    font-weight: bold;
    line-height: 1.37;
    padding: 0.8em 0.7em 0.7em;
}

.accordion{
      margin: 13px 18px;
}

.accordion dt {
  transition: 0.3s;
  background: rgba(0, 0, 0, 0) url(../domain/image/mail_icon.png) no-repeat scroll left center / 35px auto;
    border-bottom: 1px solid #bcd5dc;
    border-radius: 0;
    padding: 0.8em 40px 0.8em 55px;
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 0.08em;
    position: relative;
    cursor: pointer;
    line-height: 130%;
}

.accordion dt::after {
  content: "\02228";
  position: absolute;
 top: 30%;
    right: 10px;
  transition: 0.3s;
  color: #14a0dc;
  font-weight: 900;
}

.accordion dt.active::after {
  content: "\02227";
}
.accordion dd {
  margin: 0;
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease, padding 0.3s ease;
}

.accordion dd div{
      padding: 10px;
}

/* マニュアルページ */
.domain-content {
  display: flex;
  gap: 40px; /* 余白 */
}

.manualpage {
  flex: 3; /* 残り幅を使う */
}

.domain-content aside {
  flex: 1;
  width: 300px; /* 固定幅にする場合 */
}

.domain-content #template-domain-menu h3{
  background: unset;
    color: unset;
    margin-bottom: 0;
    padding-top: 0;
}

.manualpage h2{
      position: relative;
    border-top: 1px solid #DCE5EB;
    padding-top: 34px;
    padding-left: 0;
    margin-bottom: 40px;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.6;
        border-left: unset;
        color: unset;
}

.manualpage h2::before{
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    height: 5px;
    width: 100px;
    background-color: #005491;
}

.manualpage .icon{
    width: 40px;
    height: auto;
    border: unset;
    margin: 10px;
}

.manualpage img{
  max-width: 300px;
  height: auto;
}

.manualpage ol {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
}

.manual-step {
  counter-increment: step;
  margin-bottom: 24px;
}

.manual-step h3 {
  position: relative;
      padding-left: 50px;
}

/* 番号 */
.manual-step h3::before {
    content: counter(step)'.';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
#template-domain-menu  ul {
    padding-left: 40px;
    margin-bottom: 40px;
    list-style: none;
}

#template-domain-menu ul li {
    line-height: 2.5em;
    padding-left: 15px;
}

#template-domain-menu .domain-docomo li{
      background: rgba(0, 0, 0, 0) url(../domain/image/docomo_marker.png) no-repeat scroll left center;
}

#template-domain-menu .domain-au li{
      background: rgba(0, 0, 0, 0) url(../domain/image/au_marker.png) no-repeat scroll left center;
}

#template-domain-menu .domain-softbank li{
      background: rgba(0, 0, 0, 0) url(../domain/image/softbank_marker.png) no-repeat scroll left center;
}

#template-domain-menu .domain-ymobile li{
      background: rgba(0, 0, 0, 0) url(../domain/image/ymobile_marker.png) no-repeat scroll left center;
}

/* 推奨環境 */
.recommend-content table {
    border: 1px solid #bcd5dc;
    margin: 0 -1px 24px 0;
    text-align: left;
    width: 100%;
}

.recommend-content table ul{
  margin-bottom: unset;
  list-style: none;
  padding-left: unset;
}

.recommend-content th {
        background: #f0f0f0 none repeat scroll 0 0;
    border-top: 1px solid #bcd5dc;
       color: #616161;
    font-weight: bold;
    padding: 9px 24px;
}

.recommend-content tr td {
    border-top: 1px solid #bcd5dc;
    padding: 6px 24px;
}

/* お客様の声 */
.voice-content h3{
  margin-bottom: 15px;
    position: relative;
    display: flex;
    align-items: center;
    background: unset;
    color: unset;
}

.voice-content h3::before {
content: "Q";
    color: #ffff;
    font-size: 1.8rem;
    background: #C7DDEC;
    width: 50px;
    height: 50px;
    border-radius: 200%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.voice-content img{
  width: 230px;
}

.voice-content section{
  margin-bottom: 40px;
  gap: 100px;
}

.voice-content .voice-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(390px, 1fr));
  gap: 32px;
  margin-top: 50px;
}

.voice-content .voice-card {
  display: block;
  padding: 25px;
  border-radius: 20px;
  background: #ffffff;
  text-decoration: none;
  color: #222;
  position: relative;
  transition: 0.25s ease;
    box-shadow: -1px -1px 12px #e9ecef;
}

.voice-content .voice-card:hover {
     transform: translateY(2px);
}

/* ヘッダー */
.voice-content  .voice-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.voice-content  .voice-system {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #253872;
}

 .voice-content .voice-system img {
    width: 40px;
    height: 40px;
    margin: 0;
}

.voice-content  .voice-type {
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
}

.voice-content .voice-type.middle {
  background: #dbeafe;
  color: #1e40af;
}

.voice-content .voice-type.high {
  background: #fde2e2;
  color: #9f1239;
}

.voice-content .voice-message {
      font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: 24px;
}

.voice-content .voice-person {
  display: flex;
  align-items: center;
  gap: 16px;
}

.voice-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #ddd;
}

.voice-avatar img {
width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center -44%;
    display: block;
    margin: 0;
    image-rendering: auto;
    backface-visibility: hidden;
    transform: scale(1.3);
}


.voice-content .voice-school,
.voice-content .voice-name {
  color: #555;
}

.voice-action {
  position: absolute;
  right: 24px;
  bottom: 24px;
}

.circle-btn {
    width: 43px;
    height: 43px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    margin-top: 15px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 0 #e4dfdf;
}

.voice-rec .circle-btn{
  background-color: #253872;
}

/************************
　　　タブレット
*************************/

/*1024p以下で背景が黄色に　タブレット*/
@media screen and (max-width: 1024px) {
  /* 
  共通
  */
  /* 非表示 */
  .r-menu,
  #template-footer img,
  #template-footer .footer-main-menu,
  #template-footer .footer-secondary-menu,
  #template-footer .security_logo{
    display: none;
  }

  /* display:block */
  .top-button img,
  .domain-content{
    display: block !important;
  }

  /* 横幅固定無効 */
  nav,
  .entry-wrapper,
  #footer-wrap{
    width: 95%;
  }

  /* margin無効 */
#footer-wrap,
  .footer-left ul{
  margin: unset;
}

/* 
domain
*/
.domain-content aside{
  margin-top: 80px;
}

/* 
利用校の声
*/


/* 
footer
 */
#template-footer div{
      justify-content: center !important;
  text-align: center !important;
}

.footer-left ul{
  margin-bottom: 10px;
}

.footer-left ul li:last-child{
  margin-right: unset;
}


}/* ←@media終わり */




/************************
　　　スマホ
*************************/

/*599px以下で背景色がピンクに スマホ*/
@media screen and (max-width: 599px) {

   .news-content img{
    width: 100% !important;
    max-width: 500px;
  }

  .news-content .d-flex{
        flex-direction: column;
    align-items: center;
  }
  
   .news-content .gap-3{
    gap:0 !important;
   }

 .manual-step .manual-img{
    display: block !important;
  }
  

        .footer-left ul{
          flex-direction: column;
    align-items: center;
    }

    .footer-left ul li{
      margin-right: 0;
    }

}

/************************
　　　印刷画面
*************************/
@media print {

  .concept-r h2 {
    font-size: calc(1.325rem + .7vw) !important;
}

  #template-header,
  .top-button,
  .floating,
  .concept,
  .top-renkei-img .top-renkei-zu,
  .top-renkei-txt,
  footer{
    display: none;
  }

  .concept-sp,
  .top-renkei-img-tb{
    display: block !important;
  }

  .concept-wrap{
    margin-top: 100px !important;
  }

  .concept-r {
    margin-left: 40px !important;
}
  
  .concept-sp{
    width: 400px;
  }

  .concept-sp img{
  width: stretch;
  }

  .slideshow-container,
  .concept-wrap,
  .top-jisseki-assessment,
  .top-support-wrap,
  .top-security,
  .top-news-wrap,
  .entry-wrapper{
    width: 1000px !important;
  }

    .renkei-zu{
      width: 950px !important;
    }

  .stats-group-rec{
    width: 930px !important;
  }

  .our-services .our-services-wrap{
        margin: 0 60px !important;
    max-width: 1000px !important;
  }

  .top-security ul.top-security-tokkyo li{
    font-style: 1.2rem;
  }

  ul.security-list li{
    width: 160px !important;
  }

  .top-news-wrap{
     margin: 0 60px !important;
  }

  .system-link ul li img{
    width: 400px !important;
  }

.manual-step,
.voice-content section{
    break-inside: avoid;
  }

}