div.ccm-page {
  font-family: "Roboto","Noto Sans JP", sans-serif;/*"vdl-v7marugothic"*/
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  color: var(--main-color2);
  word-wrap: break-word;
}

div.ccm-page img{
  margin: 0;
  padding: 0;
  display: inline-block;
  width: 100% \9;
  max-width: 100%;
  height: auto;
}
div.ccm-page p {
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.5;
}
div.ccm-page div {
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.5;
}
div.ccm-page hr {
  border-top: 1px solid #ccc;
  margin-block-start: 1.5em;
  margin-block-end: 1.5em;
}
div.ccm-page table {
  width: 100%;
}

div.ccm-page table th,
div.ccm-page table td {
  vertical-align: top;
}
div.ccm-page a {
  color: var(--main-color3);
  transition: all 0.2s ease;
  text-decoration: none;
}
div.ccm-page a:hover {
  color: #f0a152;
}
/*--------*/
body{
  overflow-x: hidden;
}
div.ccm-page .header-wrap {/*ヘッター上*/
  position: fixed;
  top:0px;
  left:0px;
  width: 100%;
  height: 100px;
}
@media screen and ( max-width:1025px ){/*800*/
  div.ccm-page .header-wrap{
    position: static;
    height: 100px;
    background-color: var(--main-color1);
    z-index: 100;
  }
}

div.ccm-page .header-links-area {
  display: flex;
  width: 100%;
  height: 100%;
}
div.ccm-page .header-wrap .header-logo{/*ヘッターのロゴ*/
  background-color: var(--main-color1);
  display: flex;
  align-items: center;
  width: 250px;
  height: 100px;
}
@media screen and ( max-width:1025px ){/*800*/
  div.ccm-page .header-wrap .header-logo{
    height: 100px;
  }
}
div.ccm-page .header-wrap-left {/*ヘッター左（グローバルナビ）*/
  position: fixed;
  top: 100px;
  left: 0;
  width: 250px;
  height: 100vh;
  background-color: var(--main-color7);
  transition: all .4s;
  z-index: 100;
}
@media screen and ( max-width:1025px ){/*800*/
  div.ccm-page .header-wrap-left{
    top: 0;
    width: 0;
    white-space: nowrap;
    overflow: hidden;
  }
  div.ccm-page .header-wrap-left.view{
    width: 100%;
  }  
}
@media screen and ( max-width:500px ){

}
div.ccm-page .main-wrap{/*メイン*/
  position: relative;
  width: 100%;
  max-width: calc(100% - 250px);
  margin-left: 250px;
  min-height: 100vh;
}
@media screen and ( max-width:1025px ){

}
@media screen and ( max-width:1025px ){/*800*/
  div.ccm-page .main-wrap{
    max-width: 100%;
    margin-left: 0;
  }  
}
@media screen and ( max-width:500px ){

}
div.ccm-page .main-wrap .header-top{/*ヘッター上のリンクボタン（グローバルエリアだがdefault.php内）*/
  position: absolute;
  top: 0;
  left: 0px;
  width: 100%;
  height: 130px;
}
@media screen and ( max-width:800px ){
  div.ccm-page .main-wrap .header-top{
    display: none;
  }
}

div.ccm-page .hamburger-wrap{/*ハンバーガーメニュー（jsにて切り替え）*/
  display: none;
}
@media screen and ( max-width:1025px ){/*800*/
  div.ccm-page .hamburger-wrap{
    display: block;
    position: fixed;
    top:20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border-color: transparent;
    caret-color:transparent;
    cursor: pointer;
    background-color: var(--main-color7);
    z-index: 100;
  }
  .hamburger-wrap span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background: var(--main-color1);
    width: 45%;
  }
  .hamburger-wrap span:nth-of-type(1) {
    top:15px; 
  }
  .hamburger-wrap span:nth-of-type(2) {
    top:23px; 
  }
  .hamburger-wrap span:nth-of-type(3) {
    top:31px; 
  }
  .hamburger-wrap.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  .hamburger-wrap.active span:nth-of-type(2) {
    opacity: 0;
  }
  .hamburger-wrap.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
}
/*--------*/
div.ccm-page .footer-wrap{
  margin-left: 250px;
  background-color: #f5f3ef;
  border-top: 1px solid #dddddd;
}
@media screen and ( max-width:1025px ){/*800*/
  div.ccm-page .footer-wrap{
    margin-left: 0;
  }  
}
div.ccm-page .footer-wrap .footer-bottom{
  text-align: center;
  font-size: 0.8em;
  padding: 1em 0.5em;
  font-family: sans-serif;
  color: var(--main-color1);
  background-color: var(--main-color6);
}