@charset "utf-8";

/* |||||||||||||||||||||||||||||||||

        CSS RESET

|||||||||||||||||||||||||||||||||| */

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6em;
}

div.mainContentMain,
div.mainContentMain *,
div.mainContentMain *::before,
div.mainContentMain *::after {
  box-sizing: border-box;
}
  
  div.mainContentMain ol,
  div.mainContentMain ul {
    list-style: none;
  }
  
  div.mainContentMain table {
    border-collapse: collapse;
    border-spacing: 0;
  }

/* |||||||||||||||||||||||||||||||||

        COMMON

|||||||||||||||||||||||||||||||||| */

/*----- ▼ 共通クラス -----*/

.bold {
  font-weight: bold;
}

.prBn {
  text-align: center;
}

div.linkButton + p.prBn {
  display: block;
  padding: 1em 0;
  border-top: 1px dashed #ddd;
}

.pageTop {
  margin: 1em 0 1.5em;
  text-align: right;
}

.pageTop + .pageTop {
  margin-top: -1em;
}

div.linkButton + a.prBanner {
  display: block;
  border-top: 1px dashed #ddd;
  transition: 0.3s;
}
  
  a.prBanner img {
    margin: 10px 0;
    transition: 0.3s;
  }
  
  div.linkButton + a.prBanner:hover img {
    opacity: 0.7;
    border-radius: 0 5px 5px 0;
  }
  
  div.linkButton + a.prBanner:active img {
    position: relative;
    top: 1px;
  }
  
  .pageTop a:link,
  .pageTop a:visited,
  .pageTop a:hover,
  .pageTop a:active {
    color: #007b43;
    text-decoration: none;
  }
  
  div.mainContentMain p.pageTop a:hover {
    text-decoration: underline;
  }

/* |||||||||||||||||||||||||||||||||

        MAIN 

|||||||||||||||||||||||||||||||||| */

/*----- ▼ メイン -----*/

div.mainContentMain {
    position: relative;
    margin: 0 auto;
    width: 690px;
    color: #444;
    font-size: 110%;
    line-height: 1.3;
    z-index: 0;
    text-align: center;
}
  
  div.mainContentMain a:link,
  div.mainContentMain a:visited,
  div.mainContentMain a:hover,
  div.mainContentMain a:active {
    color: #007b43;
    text-decoration: none;
  }
  
  div.mainContentMain a:active {
    position: relative;
    top: 1px;
  }
  
  div.mainContentMain h1 {
    margin: 0 0 0.5em;
    padding: 0.5em 1em;
    background: #0066ff;
    color: #fff;
    font-size: 130%;
    text-align: center;
    letter-spacing: 1px;
    border-radius: 3px;
  }
  
  div.mainContentMain p.att {
    margin: 5px 0 10px 0;
    color: #666;
    font-size: 90%;
    text-align: right;
  }
  
    div.mainContentMain p.att a {
      padding: 3px 10px 5px 10px;
      border-radius: 3px;
      transition: 0.3s;
    }
    
    div.mainContentMain p.att a:hover {
      background: #007b43;
      color: #fff;
    }
  
/*----- ▼ スライドショー -----*/
  
  div.mainContentMain ul.slickBox {
    margin: 0 0 1em;
    padding: 0 0 1em;
    border-bottom: 1px dashed #ddd;
  }
  
  div.mainContentMain div.slick-list {
    border: 1px solid #eee;
  }
    
    div.mainContentMain div.slick-list a {
      display: block;
      position: relative;
      transition: 0.3s;
    }
    
    div.mainContentMain div.slick-list a::before {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(rgba(0, 0, 0, 0.1), #000);
      color: #fff;
      text-align: center;
      opacity: 0;
      transition: 0.3s;
    }
    
    div.mainContentMain div.slick-list a::after {
      content: 'クリックで該当ページへ\A移動します';
      display: block;
      position: absolute;
      top: 50%;
      left: 50%;
      padding: 1em;
      width: 14em;
      margin: -3em 0 0 -7em;
      border: 5px solid #fff;
      color: #fff;
      background: rgba(0, 89, 48, 0.8);
      font-weight: bold;
      text-align: center;
      font-size: 120%;
      letter-spacing: 0.05em;
      white-space: pre;
      text-shadow: 0 0 5px #000;
      border-radius: 5px;
      opacity: 0;
      transition: 0.3s;
      filter: blur(2px);
    }
    
    div.mainContentMain div.slick-list a[href="acryl_clear.html"]::after {
      content: 'クリックで透明アクリルの\A商品ページへ移動します';
      width: 16em;
    }
    
    div.mainContentMain div.slick-list a[href="acryl_color.html"]::after {
      content: 'クリックでカラーアクリルの\A商品ページへ移動します';
      width: 16em;
    }
    
    div.mainContentMain div.slick-list a:hover::before {
      opacity: 0.5;
    }
    
    div.mainContentMain div.slick-list a:hover::after {
      opacity: 1;
      filter: blur(0); 
    }
    
    div.mainContentMain div.slick-list a:hover {
      opacity: 0.7;
    }
  
  div.mainContentMain ul.slickBox div.prev,
  div.mainContentMain ul.slickBox div.next {
    position: absolute;
    top: 150px;
    margin: -15px 0 0;
    padding: 2px 0 0;
    width: 30px;
    height: 30px;
    background: #424866;
    color: #fff;
    font-weight: bold;
    text-align: center;
    font-size: 1em;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
    transition: 0.3s;
  }
  
  div.mainContentMain ul.slickBox:hover div.prev,
  div.mainContentMain ul.slickBox:hover div.next {
    opacity: 0.5;
  }
  
  div.mainContentMain ul.slickBox div.prev:hover,
  div.mainContentMain ul.slickBox div.next:hover,
  div.mainContentMain ul.slickBox > ul.thumbnails li img:hover {
    cursor: pointer;
    opacity: 1;
  }
  
  div.mainContentMain ul.slickBox div.prev {
    left: 15px;
  }
  
  div.mainContentMain ul.slickBox div.next {
    right: 15px;
    padding-left: 2px;
  }
  
  div.mainContentMain ul.slickBox > ul.thumbnails {
    margin: 1em auto 0;
    text-align: center;
  }
  
  div.mainContentMain ul.slickBox > ul.thumbnails li {
    display: inline-block;
    margin: 0 0.5em;
  }
  
  div.mainContentMain ul.slickBox > ul.thumbnails li img {
    width: 110px;
    height: auto;
    border: 3px solid #eee;
    opacity: 0.5;
    transition: 0.3s;
  }
  
  div.mainContentMain ul.slickBox > ul.thumbnails li.slick-active img {
    border: 3px solid #424866;
    opacity: 1;
  }

/*----- ▼ リンクボタン -----*/

div.linkButton {
  text-align: center;
  letter-spacing: -0.4em; 
}
  
  div.linkButton a.orderLink {
    position: relative;
    display: inline-block;
    margin: 0 10px 20px 0;
    padding: 15px 1em 15px 2em;
    width: 220px;
    background: #cc0000;
    color: #fff;
    font-weight: bold;
    text-align: center;
    line-height: 1.6;
    letter-spacing: normal;
    border-radius: 3px;
    box-shadow: 0 3px #aa0000;
    transition: background 0.5s;
  }
  
  div.linkButton a.orderLink::before {
    content: "\025b6";
    position: absolute;
    top: 50%;
    left: 15px;
    margin-top: -10px;
    font-size: 90%;
  }
  
  div.linkButton a.orderLink:last-of-type {
    margin-right: 0;
  }
  
  div.linkButton a.orderLink:link,
  div.linkButton a.orderLink:visited,
  div.linkButton a.orderLink:hover,
  div.linkButton a.orderLink:active {
    color: #fff;
  }
  
  div.linkButton a.orderLink:hover {
    background: #dd0000;
    box-shadow: none;
    transform: translate(0, 3px);
  }
  
  div.linkButton a.contact {
    background: #006eb8;
    box-shadow: 0 3px #005893;
  }
    
  div.linkButton a.contact:hover {
    background: #0075c4;
  }
  
  div.linkButton a.template {
    background: #028760;
    box-shadow: 0 3px #007250;
  }
  
  div.linkButton a.template:hover {
    background: #029166;
  }
  
  div.linkButton a.faq {
    background: #34495e;
    box-shadow: 0 3px #22313f;
  }
  
  div.linkButton a.faq:hover {
    background: #3f556b;
  }

/*----- ▼ 特長 -----*/

div.features {
  margin: 0 0 -6px;
}
  
  div.features ul {
    letter-spacing: -0.4em; 
  }
    
    div.features li {
      display: inline-block;
      margin: 0 6px 6px 0;
      padding: 0 0 10px;
      width: 226px;
      border-bottom: 1px solid #5d627b;
      background: #fbfaf5;
      vertical-align: top;
      letter-spacing: normal;
    }
    
    div.features li.three {
      width: 99%;
    }
    
    div.features li.two {
      width: 458px;
    }
    
    div.features li:last-of-type {
      margin-right: 0;
    }
      
    div.features li:nth-of-type(3n+1) {
      margin-right: 0;
    }
      
      div.features li img {
        background: #fff;
        vertical-align: bottom;
      }
        
      div.features li img + p,
      div.features li div.imgWrap + p,
      div.features li p:first-child {
        margin: 0 0 10px;
        padding: 7px 5px;
        border-top: 3px solid #424866;
        border-bottom: 1px dotted #424866;
        background: #fbfaf5;
        color: #424866;
        font-weight: bold;
        text-align: center;
      }
      
      div.features li img + p {
        position: relative;
      }
      
      div.features li p sup {
        margin: 0.1em;
        font-size: 80%;
      }
      
      div.features li p:first-child:first-line {
        font-size: 120%;
      }
      
      div.features li:first-child p:not(:first-child) {
        margin: 0.5em 0;
        font-size: 110%;
        text-align: center;
      }
      
      div.features li:first-child p:last-child {
      }
        
      div.features li p {
        padding: 0 20px 0;
      }
        
      div.features li:nth-of-type(n+2) p + p {
        min-height: 5em;
        text-align: justify;
      }
          
        div.features li p span.red {
          color: #cc0000;
          font-weight: bold;
        }
        
        div.features li p span.small {
          font-size: 90%;
        }
        
        div.features li p span.large {
          font-size: 110%;
        }

/*----- ▼ データ・仕上がり・商品ラインナップ -----*/

div.acrylInfo {
    margin-top: 0;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 5px;
    padding: 10px;
    border-top: solid 5px #424866;
    background: #fbfaf5;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.20);
}

div.acrylInfo.lineup {
    padding: 0;
    text-align: center;
    margin-bottom: 20px;
    border: 2px solid #0066ff;
    border-top: none;
    background: #fbfaf5;
    box-shadow: none;
}

div.acrylInfo.data {
  border-top-color: #cc0000;
}
  
  div.acrylInfo > p:first-of-type {
    padding: 5px 0 14px;
    border-bottom: 1px dotted #424866;
    color: #424866;
    font-weight: bold;
    text-align: center;
    font-size: 110%;
  }
  
  div.acrylInfo.lineup > p:first-of-type {
    padding: 8px;
    border: none;
    background: #0066ff;
    color: #fff;
	      font-weight: bold;
    text-align: center;
    font-size: 130%;
  }
    
    div.acrylInfo.lineup > p:first-of-type span,
    div.acrylInfo.finish > p span {
      font-size: 90%;
      font-weight: normal;
      line-height: 1.7;
    }
  
  div.acrylInfo > p:not(:first-of-type) {
    position: relative;
    margin: 15px 0 10px;
    padding: 10px;
    border-top: 3px solid #424866;
    border-bottom: 1px dotted #424866;
    color: #424866;
    font-size: 110%;
    font-weight: bold;
    text-align: center;
  }
  
  div.acrylInfo.data > p:first-of-type {
    color: #cc0000;
    border-bottom-color: #cc0000;
  }
  
  div.acrylInfo.data > p:first-of-type::before {
    content: '！';
    display: inline-block;
    margin: 0 0.3em 0;
    padding: 0 0 1px 1px;
    width: 25px;
    height: 25px;
    background: #cc0000;
    color: #fff;
    font-size: 95%;
    text-align: center; 
    border-radius: 50%;
  }
  
  div.acrylInfo.data > p:not(:first-of-type) {
    margin-bottom: 0;
    border: none;
    background: #424866;
    color: #fff;
    font-size: 95%;
    border-radius: 3px 3px 0 0;
  }
  
  div.acrylInfo.data > p:not(:first-of-type) + img {
    margin-top: 0;
  }
  
  div.acrylInfo > div.imgWrap::before {
    bottom: 10px;
    right: 10px;
  }
  
  div.acrylInfo > div.imgWrap::after {
    top: 25px;
    left: 15px;
  }
  
  div.acrylInfo.lineup > a {
    display: inline-block;
    margin-top: 5px;
    margin-right: 0;
    margin-left: 10px;
    margin-bottom: 5px;
  }
  
  div.acrylInfo.lineup > a:first-of-type {
    margin-left: 0;
  }
  
  div.acrylInfo.lineup > a > div.linkAll {
    display: inline-block;
    position: relative;
    width: 320px;
    border: 2px solid #eee;
    background: #fff;
    text-align: center;
    vertical-align: top;
    transition: 0.3s;
  }
  
  div.acrylInfo.lineup > a > div.linkAll::before {
    content: 'クリックで\A商品詳細（価格表）へ';
    white-space: pre;
    display: block;
    position: absolute;
    top: 7px;
    right: 7px;
    padding: 7px 10px 9px;
    background: #007b43;
    color: #fff;
    font-size: 85%;
    line-height: 1.4;
    opacity: 0;
    border-radius: 3px;
    z-index: 10;
    transition: 0.3s;
    -webkit-font-smoothing: antialiased;
  }
  
  div.acrylInfo.lineup > a > div.linkAll:hover::before {
    opacity: 1;
    -webkit-font-smoothing: subpixel-antialiased;
  }
  
  div.acrylInfo.lineup > a > div.linkAll:hover {
    cursor: pointer;
    border: 2px solid #007b43;
  }
  
  div.acrylInfo.lineup > a > div.linkAll:active {
    top: 1px;
  }
    
    div.acrylInfo > img,
    div.acrylInfo > div.imgWrap img {
      display: block;
      margin: 10px auto 0;
      padding: 10px;
      border: 1px solid #eee;
      background: #fff;
      box-sizing: content-box;
    }
  
    div.acrylInfo.lineup > a > div.linkAll img {
      margin: 13px 0 0;
      transition: 0.3s;
    }
  
    div.acrylInfo.lineup > a > div.linkAll:hover img {
      opacity: 0.7;
    }
    
    div.acrylInfo.lineup > a > div.linkAll p {
    padding-left: 7px;
    padding-right: 7px;
    margin-right: 20px;
    margin-left: 20px;
    margin-bottom: 10px;
    color: #444;
    text-align: left;
    transition: 0.3s;
    }
    
    div.acrylInfo.lineup > a > div.linkAll:hover p {
      color: #007b43;
    }
    
    div.acrylInfo.lineup > a > div.linkAll p:last-of-type {
    margin-bottom: 5px;
    padding-top: 15px;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 5px;
    border-top: 1px dashed #ddd;
    font-size: 90%;
    text-align: right;
    margin-left: -1px;
    }
      
      div.acrylInfo.lineup > a > div.linkAll p:last-of-type span {
        padding: 7px 15px;
        background: #424866;
        color: #fff;
        border-radius: 3px;
        transition: 0.3s;
      }
    
    div.acrylInfo.lineup > a > div.linkAll:hover p:last-of-type span {
      background: #007b43;
    }
    
    div.acrylInfo.lineup > a > div.linkAll img + p {
    margin-bottom: 7px;
    padding: 3px 7px 7px;
    border-bottom: 2px dotted #ddd;
    color: #FF0000;
    font-size: 130%;
    font-weight: bold;
    transition: 0.3s;
    }
    
    div.acrylInfo.lineup > a > div.linkAll p + p {
      margin-top: 0;
    }
    
    div.acrylInfo.lineup > a > div.linkAll p.shipDate {
      margin-bottom: 5px;
      padding: 3px 10px 5px;
      background: #424866;
      color: #fff;
      font-size: 90%;
      border-radius: 3px;
    }
      
      div.acrylInfo.lineup > a > div.linkAll:hover p.shipDate {
        background: #007b43;
      }
      
      div.acrylInfo.lineup > a > div.linkAll:hover p a {
        color: #007b43;
      }
  
  div.acrylInfo > ul {
    display: flex;
    flex-wrap: wrap;
    margin: 10px 0 0;
    font-size: 95%;
  }
  
  div.acrylInfo > ul.wrap {
    border: 1px solid #eee;
    background: #fff;
  }
  
  div.acrylInfo > ul + ul {
    margin: 0;
  }
  
  div.acrylInfo.colorSample > ul {
    padding-bottom: 10px;
    border: 1px solid #eee;
    background: #fff;
  }
    
    div.acrylInfo > ul > li {
      margin: 0 10px 0 0;
      padding: 10px 0;
      border: 1px solid #eee;
      background: #fff;
      text-align: center;
    }
    
    div.acrylInfo.colorSample > ul > li {
      margin: 0;
      padding: 10px 0 0;
      width: 25%;
      border: none;
    }
    
    div.acrylInfo.finish > ul.three > li {
      margin-bottom: 10px;
      width: calc( calc( 100% - 20px ) / 3 );
    }
    
    div.acrylInfo.finish > ul.four > li {
      margin-bottom: 10px;
      width: calc( calc( 100% - 30px ) / 4 );
    }
    
    div.acrylInfo.finish > ul.four.wrap > li {
      margin: 0;
      width: calc( calc( 100% ) / 4 );
      border: none;
      border-right: 1px dotted #eee;
      border-bottom: 1px dotted #eee;
    }
    
    div.acrylInfo.finish > ul.three > li:nth-of-type(3n),
    div.acrylInfo.finish > ul.four > li:nth-of-type(4n) {
      margin-right: 0;
    }
    
    div.acrylInfo.finish > ul.four > li:nth-child(4n) {
      border-right: none;
    }
    
    div.acrylInfo.finish > ul.four > li:nth-child(4n+1):nth-last-child(-n+4),
    div.acrylInfo.finish > ul.four > li:nth-child(4n+1):nth-last-child(-n+4) ~ li {
      border-bottom: none;
    }
      
      div.acrylInfo > ul > li img {
        border: 2px solid #fff;
        transition: 0.3s;
      }
      
      div.acrylInfo > ul > li div.imgWrap {
        display: inline-block;
        vertical-align: bottom;
      }
      
      div.acrylInfo > ul > li div.imgWrap::before {
        bottom: 6px;
        right: 6px;
      }
      
      div.acrylInfo > ul > li div.imgWrap:hover img {
        border: 2px solid #007b43;
      }
      
      div.acrylInfo > ul > li img + p,
      div.acrylInfo > ul > li div.imgWrap + p {
        margin: 10px 0;
        padding: 7px 10px;
        border-top: 1px dashed #ddd;
        border-bottom: 1px dashed #ddd;
        color: #424866;
        background: #fcfcfc;
        font-weight: bold;
        text-align: center;
      }
      
      div.acrylInfo.colorSample > ul > li img + p,
      div.acrylInfo.colorSample > ul > li div.imgWrap + p {
        margin-bottom: 0;
        padding: 0 10px;
        border: none;
        background: #fff;
      }
        
        div.acrylInfo > ul > li ul li {
          padding: 0 10px;
        }
          
          div.acrylInfo > ul > li ul li span.label {
            display: inline-block;
            margin: 10px 0;
            padding: 5px 13px;
            background: #f3f3f3;
            color: #424866;
            font-size: 90%;
            font-weight: bold;
            text-align: center;
            border-radius: 3px;
          }
          
          div.acrylInfo > ul > li ul li:first-of-type span.label {
            margin-top: 0;
          }
        
/*----- ▼ ご注文方法 -----*/

div.orderHowto {
  margin: 5px 0 15px;
  padding: 10px 20px;
  border: 3px solid #eee;
  background: #fafafa;
  text-align: center;
}
  
  div.orderHowto p:first-of-type {
    margin-bottom: 10px;
    padding-bottom: 7px;
    border-bottom: 1px dotted #aaa;
    font-size: 90%;
  }
  
  div.orderHowto p.prBn {
    margin-bottom: 10px;
  }
  
  div.orderHowto p:first-of-type:first-line {
    font-weight: bold;
    font-size: 130%;
  }
  
  div.orderHowto ol {
    margin: 0;
    padding: 0;
    letter-spacing: -0.4em;
  }
  
    div.orderHowto li {
      display: inline-block;
      margin-bottom: 5px;
      padding: 10px;
      min-height: 150px;
      border: 1px solid #ddd;
      background: #fff;
      text-align: left;
      letter-spacing: normal;
    }
    
    div.orderHowto li img {
      float: left;
      margin-right: 10px;
      border: 1px solid #eee;
    }
      
    div.orderHowto li img + p {
      margin: 3px 5px 0 215px;
      padding: 0 5px 5px 5px;
      border-bottom: 1px dotted #aaa;
      font-weight: bold;
    }
      
    div.orderHowto li p {
      margin: 10px 10px 3px 230px;
    }
      
    div.orderHowto li p span.red {
      color: #dd0000;
    }
      
    div.orderHowto li p span.line {
      background: linear-gradient(transparent 60%, #FFF9C4 60%);
    }
      
    div.orderHowto li p.attention {
      margin-top: 15px;
      padding: 0.5em 1em 0.5em 3em;
      border: 1px solid #ddd;
      background: #fafafa;
      font-size: 90%;
      text-align: left;
      text-indent: -2em;
    }
  
  div.orderHowto > p:last-of-type {
    text-align: right;
    font-size: 85%;
  }

/*----- ▼ その他詳細 -----*/

div#itemInfo {
  text-align: center;
}
  
  div#itemInfo input[name="tab"] {
    display: none;
  }
  
  div#itemInfo label.tab {
    display: inline-block;
    margin: 0 5px 0 0;
    padding: 10px;
    width: 200px;
    border: 3px solid #eee;
    border-bottom: none;
    background: #eee;
    text-align: center;
    letter-spacing: normal;
    border-radius: 3px 3px 0 0;
  }
  
  div#itemInfo input[name="tab"]:not(:checked) +  label.tab:hover {
    cursor: pointer;
    opacity: 0.7;
    transition: 0.3s;
  }
  
  div#itemInfo label.tab:last-of-type {
    margin-right: 0;
  }
  
  div#itemInfo input[name="tab"]:checked + label.tab {
    position: relative;
    background: #fff;
    font-weight: bold;
  }
  
  div#itemInfo input[name="tab"]:checked + label.tab::after {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    bottom: -3px;
    width: 100%;
    border-bottom: solid 3px #fff;
  }
    
    div#itemInfo label.tab span {
      color: #007b43;
    }
    
    div#itemInfo input[name="tab"]:checked + label.tab span {
      padding: 0 0 3px;
      border-bottom: 2px solid #007b43;
    }
  
  div#itemInfo input#tabOverview:checked ~ div#overview,
  div#itemInfo input#tabDataGuide:checked ~ div#dataGuide,
  div#itemInfo input#tabFaq:checked ~ div#faq {
    display: block;
  }
  
  div#itemInfo div.tabContent {
    display: none;
    margin: 0 0 15px;
    padding: 10px 0 0;
    border: 3px solid #eee;
    text-align: left;
    }
    
    div#itemInfo div.tabContent > p:first-of-type {
      clear: left;
      margin: 0 10px;
      padding: 15px 0;
      border: 1px solid #ddd;
      background: #f3f3f3;
      color: #424866;
      font-weight: bold;
      text-align: center;
    }
      
    div#itemInfo a.template {
      position: relative;
      display: inline-block;
      margin: 7px 10px 0;
      padding: 15px 0;
      width: 664px;
      background: #028760;
      color: #fff;
      font-weight: bold;
      text-align: center;
      line-height: 1.6;
      letter-spacing: normal;
      border-radius: 3px;
      box-shadow: 0 3px #007250;
      transition: background 0.5s;
    }
      
    div#itemInfo a.template:hover {
      color: #fff;
      background: #029166;
      box-shadow: none;
      transform: translate(0, 3px);
    }
    
    div#itemInfo a.template::before {
      content: "\025b6";
      position: absolute;
      top: 50%;
      left: 50%;
      margin-top: -10px;
      margin-left: -8.5em;
      font-size: 90%;
    }
    
    div#itemInfo div > ul.contents {
      margin: 15px 50px 10px;
      padding: 15px 30px;
      border: 1px solid #eee;
      background: #fafafa;
    }
    
    div#itemInfo.target div > ul.contents {
      border: 2px solid #007b43;
      background: #fffff0;
    }
      
      div#itemInfo div > ul.contents li {
      }
      
      div#itemInfo div > ul.contents li:first-of-type {
        margin-top: 0;
        text-align: center;
        font-weight: bold;
      }
        
        div#itemInfo div > ul.contents li span {
          font-size: 95%;
          font-weight: normal;
        }
      
      div#itemInfo div > ul.contents li:first-of-type::after {
        content: '';
        display: block;
        margin: 0 0 10px;
        padding: 0 0 10px;
        border-bottom: 2px dotted #ddd;
      }
      
        div#itemInfo div > ul.contents li a {
          display: block;
          padding: 5px 10px;
          border-radius: 3px;
          transition: 0.3s;
        }
        
        div#itemInfo div > ul.contents li a::before {
          content: '\0000BB';
          position: relative;
          margin: 0 5px 0 0;
        }
        
        div#itemInfo div > ul.contents li a:hover {
          background: #007b43;
          color: #fff;
        }
        
        div#itemInfo div >ul.contents li a:hover::before {
          left: 1px;
        }
    
    div#itemInfo div#overview dl,
    div#itemInfo div#dataGuide dl,
    div#itemInfo div#faq dl {
      margin: 5px 10px 0;
      width: 665px;
      border-top: none;
      overflow: hidden;
    }
    
    div#itemInfo div#faq dl {
      margin-bottom: 15px;
      border-bottom: 1px dotted #aaa;
    }
        
        div#itemInfo div dl dd p.pageTop {
          margin-bottom: 0;
          font-size: 95%;
        }
      
      div#itemInfo div#overview dl dt {
        float: left;
        padding: 10px;
        width: 200px;
        border-top: 1px dotted #aaa;
        color: #424866;
        font-weight: bold;
      }
      
      div#itemInfo div#overview dl dt::before {
        content: '\025c6';
        margin: 0 0.3em 0 0;
        font-size: 70%;
      }
        
        div#itemInfo div#overview dl dt span {
          font-size: 95%;
          font-weight: normal;
        }
      
      div#itemInfo div#overview dl dt:first-of-type {
        border-top: none;
      }
      
      div#itemInfo div#overview dl dd {
        margin-left: 200px;
        padding: 10px;
        border-top: 1px dotted #aaa;
      }
      
      div#itemInfo div#overview dl dd:first-of-type {
        border-top: none;
      }
        
        div#itemInfo div#overview dl dd ul li::before {
          content: "・";
        }
        
        div#itemInfo div#overview dl dd ul li a:hover {
          text-decoration: underline;
        }
        
          div#itemInfo div#overview dl dd ul li span {
            margin: 0 0 0 7px;
            color: #777;
            font-size: 85%;
          }
      
      div#itemInfo div#dataGuide dl dt {
        padding: 10px;
        border-top: 1px dotted #aaa;
        background: #fbfaf5;
        color: #424866;
        font-weight: bold;
        transition: 0.1s;
      }
      
      div#itemInfo div#dataGuide dl dt[id^="dataGuide-"].target {
        color: #dd0000;
      }
      
      div#itemInfo div#dataGuide dl dt::before {
        content: '！';
        display: inline-block;
        margin: 0 0.5em 0 0;
        padding: 0 0 1px;
        width: 25px;
        height: 25px;
        background: #028760;
        color: #fff;
        text-align: center;
        border-radius: 50%;
      }
      
      div#itemInfo div#dataGuide dl dt[id^="dataGuide-"].target::before {
        background: #dd0000;
      }
      
      div#itemInfo div#dataGuide dl dt:first-of-type {
        margin-top: 5px;
      }
      
      div#itemInfo div#dataGuide dl dd {
        padding: 15px 20px;
        border-top: 1px dotted #aaa;
      }
      
      div#itemInfo div#dataGuide dl dt[id^="dataGuide-"].target + dd {
        background: #fffff0;
      }
      
      div#itemInfo div#dataGuide dl dt[id^="dataGuide-"].target + dd:last-of-type {
        margin-bottom: 15px;
      }
        
        div#itemInfo div#dataGuide dl dd ul {
          margin: 0.5em 0;
        }
        
          div#itemInfo div#dataGuide dl dd ul li::before {
            content: '・';
          }
        
        div#itemInfo div#dataGuide dl dd p.att {
          margin: 0.7em 0 1em;
          padding: 0.5em 1em;
          border: 1px solid #ddd;
          background: #fafafa;
          font-size: 95%;
          text-align: left;
        }
        
        div#itemInfo div#dataGuide dl dd img {
          display: block;
          margin: 10px auto;
        }
        
        div#itemInfo div#dataGuide dl dd img:first-child {
          margin-top: 0;
          margin-bottom: 15px;
        }
      
      div#itemInfo div#faq dl dt {
        position: relative;
        display: flex;
        align-items: baseline;
        padding: 10px;
        border-top: 1px dotted #aaa;
        background: #fbfaf5;
        color: #424866;
        font-weight: bold;
        transition: 0.3s;
        text-indent: 0;
      }
      
      div#itemInfo div#faq dl dt:first-of-type {
        margin-top: 0.5em;
      }
      
      div#itemInfo div#faq dl dt::before,
      div#itemInfo div#faq dl dd::before {
        display: inline-block;
        flex-shrink: 0;
        margin-right: 0.3em;
        width: 1.3em;
      }
      
      div#itemInfo div#faq dl dt::before {
        content: 'Q.';
        margin-left: 1.5em;
      }
      
      div#itemInfo div#faq dl dd::before {
        content: 'A.';
        margin-left: 0.3em;
      }
      
      div#itemInfo div#faq dl dt::after {
        content: '\00203A';
        position: absolute;
        left: 1em;
        transition: 0.2s;
      }
      
      div#itemInfo div#faq dl dt.show::after {
        transform: rotate(90deg);
      }
      
        div#itemInfo div#faq dl dt span {
          flex-shrink: 0;
          align-self: center;
          margin: 0 0 0 1em;
          color: #777;
          font-size: 80%;
          font-weight: normal;
          transition: 0.3s;
        }
        
        div#itemInfo div#faq dl dt:hover span {
          color: #dd0000;
        }
      
      div#itemInfo div#faq dl dt:hover::after {
        margin-left: 0.1em;
      }
      
      div#itemInfo div#faq dl dt.show:hover::after {
        margin-left: 0;
        margin-top: 0.1em;
      }
      
      div#itemInfo div#faq dl dt:hover {
        cursor: pointer;
        background: #f2f1ea;
      }
      
      div#itemInfo div#faq dl dd {
        overflow: hidden;
        display: flex;
        align-items: baseline;
        padding: 0 2em;
        height: 0;
        border-top: 1px dotted #aaa;
        transition: 0.2s;
        opacity: 0;
      }
      
      div#itemInfo div#faq dl dt.show + dd {
        padding: 15px 2em;
        height: auto;
        opacity: 1;
      }
        
        div#itemInfo div#faq dl dd div {
        }
        
          div#itemInfo div#faq dl dd div a:hover {
            text-decoration: underline;
          }
          
          div#itemInfo div#faq dl dd div p {
            margin: 1em 0;
          }
          
          div#itemInfo div#faq dl dd div p.heading {
            margin-bottom: 0.7em;
            padding: 0.5em;
            background: #fbfaf5;
            border: 1px solid #eee;
            color: #424866;
            font-weight: bold;
            border-radius: 3px;
          }
          
          div#itemInfo div#faq dl dd div .red {
            color: #dd0000;
          }
          
          div#itemInfo div#faq dl dd div .bold {
            font-weight: bold;
          }
          
          div#itemInfo div#faq dl dd div p.bg {
            margin-top: 0.7em;
            padding: 0.5em 1em 0.5em 2em;
            border: 1px solid #eee;
            background: #fafafa;
            font-size: 90%;
            text-indent: -1em;
          }
          
          div#itemInfo div#faq dl dd div p.bg:last-of-type {
            margin-bottom: 0;
          }
          
          div#itemInfo div#faq dl dd div p.indent {
            padding: 0.5em 1em 0.5em 3em;
            text-indent: -3em;
          }
          
          div#itemInfo div#faq dl dd div img {
            overflow: hidden;
            display: block;
            margin: 0.5em 0 0;
          }
          
          div#itemInfo div#faq dl dd div img {
            overflow: hidden;
            margin: 0.5em 0 0;
            opacity: 0;
            transition: 0.5s;
          }
          
          div#itemInfo div#faq dl dt.show + dd div img {
            opacity: 1;
          }
          
            div#itemInfo div#faq dl dd p.heading span {
              display: inline-block;
              margin: 0.3em 1em 0 8em;
              font-size: 90%;
              font-weight: normal;
              text-indent: -7em;
            }
      
/*----- ▼ 画像拡大 -----*/

div.imgWrap {
  position: relative;
  cursor: pointer;
  transition: 0.3s;
}

div.imgWrap:hover {
  cursor: pointer;
  opacity: 0.85;
}

div.imgWrap::before,
div.imgWrap::after {
  -webkit-font-smoothing: antialiased;
}

div.imgWrap:hover::before,
div.imgWrap:hover::after {
  -webkit-font-smoothing: subpixel-antialiased;
}

div.imgWrap::before {
  content: '+';
  position: absolute;
  display: block;
  bottom: 5px;
  right: 5px;
  padding: 0 0 0 1px;
  width: 30px;
  height: 30px;
  border: 2px solid #999;
  background: #999;
  color: #fff;
  text-align: center;
  opacity: 0.7;
  border-radius: 50%;
  transition: 0.3s;
}

div.imgWrap:hover::before {
  border-color: #006333;
  background: #006333;
  color: #fff;
  opacity: 1;
}

div.imgWrap::after {
  content: 'クリックで\A拡大します';
  white-space: pre;
  position: absolute;
  top: 5px;
  left: 5px;
  padding: 5px 10px;
  background: #006333;
  color: #fff;
  font-size: 90%;
  line-height: 1.4;
  opacity: 0;
  border-radius: 3px;
  transition: 0.3s;
}

div.imgWrap:hover::after {
  opacity: 1;
}

#modalBg {
  position: fixed;
  display: none;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  top: 0;
  left: 0;
  z-index: 1;
}
  
  #modalBg > div {
    position: relative;
    max-width: 90%;
    border: 2px solid #fff;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.50);
    transition: 0.3s;
  }
  
  #modalBg > div::before {
    content: '\00002B';
    position: absolute;
    display: block;
    top: -15px;
    right: -15px;
    padding: 2px 3.5px 5px 3.5px;
    width: 25px;
    height: 25px;
    border: 3px solid #bbb;
    background: #fff;
    color: #bbb;
    text-align: center;
    font-weight: bold;
    font-size: 120%;
    border-radius: 50%;
    transition: 0.3s;
    transform: rotate(45deg);
  }
  
  #modalBg > div:hover {
    border: 3px solid #007b43;
  }
  
  #modalBg > div.hoverOff:hover {
    border: 2px solid #fff;
  }
  
  #modalBg > div:hover::before {
    border-color: #007b43;
    background: #007b43;
    color: #fff;
    cursor: pointer;
  }
  
  #modalBg > div.hoverOff:hover::before {
    border-color: #bbb;
    background: #fff;
    color: #bbb;
  }
  
  #modalBg img {
    margin: 1em;
    background: #fff;
  }
  
  #modalBg > div > div {
    padding: 0.5em 1em;
    border-top: 1px dotted #ddd;
    background: #fbfaf5;
    text-align: center;
    font-size: 90%;
    line-height: 1.7;
  }
  
  #modalBg p.detail {
    display: inline-block;
    margin: 0 auto;
    max-width: 40em;
    text-align: left;
  }
  
  #modalBg p.prev,
  #modalBg p.next {
    position: absolute;
    top: 50%;
    margin: -0.75em 0;
    padding: 0 0.3em 0.2em;
    background-color: rgba(255, 255, 255, 1);
    color: #444;
    font-size: 300%;
    text-align: center;
    transition: 0.3s;
  }
  
  #modalBg p.prev:hover,
  #modalBg p.next:hover {
    background: #007b43;
    color: #fff;
    cursor: pointer;
  }
  
  #modalBg p.prev {
    left: -1em;
  }
  
  #modalBg p.next {
    right: -1em;
  }
  
/*----- ▼ 固定ボタン -----*/

div.fixButton {
  display: none;
  position: fixed;
  bottom: 0;
	margin: 0 15px 15px 725px;
  padding: 0.5em;
  border-left: 1px solid transparent;
  background: #fff;
  transition: 0.2s;
}

div.fixButton:hover {
  border-left: 1px solid #eee;
  box-shadow: 2px 2px 2px #ddd;
}
  
div.fixButton::before {
  content: '各ボタンを\Aクリックで\A該当箇所へ';
  position: absolute;
  top: -5.7em;
  left: 0;
  padding: 0.5em;
  width: 100%;
  border: 1px solid #999;
  background: #999;
  color: #fff;
  font-size: 90%;
  text-align: center;
  white-space: pre;
  opacity: 0.7;
  border-radius: 3px;
  transition: 0.3s;
  -webkit-font-smoothing: subpixel-antialiased;
}
  
div.fixButton:hover::before {
  background: #007b43;
  border: 1px solid #007b43;
  border-radius: 4px 4px 0 0;
  box-shadow: 2px 0 2px #ddd;
  opacity: 1;
}
  
div.fixButton::after {
  content: '';
  visibility: visible;
  position: absolute;
  top: 0.5em;
  left: 0.5em;
  width: calc( 100% - 1em );
  height: calc( 101% - 1em );
  background: #fff;
  opacity: 0.6;
  transition: 0.3s;
}
  
div.fixButton:hover::after {
  visibility: hidden;
  height: 0;
  opacity: 0;
}
  
div.fixButton.fadeIn,
div.fixButton.fadeOut {
  display: block;
  -webkit-animation-fill-mode:both;
  -ms-animation-fill-mode:both;
  animation-fill-mode:both;
  -webkit-animation-duration:1s;
  -ms-animation-duration:1s;
  animation-duration:1s;
}

div.fixButton.fadeIn {
  -webkit-animation-name: fixFadeIn;
  animation-name: fixFadeIn;
}

div.fixButton.fadeOut {
  -webkit-animation-name: fixFadeOut;
  animation-name: fixFadeOut;
}

@-webkit-keyframes fixFadeIn {
  0% { opacity: 0; -webkit-transform: translateY(-20px); }
  100% { opacity: 1; -webkit-transform: translateY(0); }
}

@keyframes fixFadeIn {
  0% { opacity: 0; -webkit-transform: translateY(-20px); -ms-transform: translateY(-20px); transform: translateY(-20px); }
  100% { opacity: 1; -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); }
}

@-webkit-keyframes fixFadeOut {
  0% { opacity: 1; -webkit-transform: translateY(0); }
  100% { opacity: 0; -webkit-transform: translateY(-20px); }
}

@keyframes fixFadeOut {
  0% { opacity: 1; -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); }
  100% { opacity: 0; -webkit-transform: translateY(-20px); -ms-transform: translateY(-20px); transform: translateY(-20px); }
}
  
  div.fixButton a {
    display: block;
    margin: 0.7em 0;
    padding: 0.5em 1em;
    width: 8em;
    color: #fff;
    text-align: center;
    font-size: 85%;
    border-radius: 3px;
    transition: 0.1s;
    -webkit-font-smoothing: subpixel-antialiased;
  }
  
  div.fixButton a:first-of-type {
    margin-top: 0;
  }
  
  div.fixButton a:last-of-type {
    margin-bottom: 0.2em;
  }
  
  div.fixButton a.red {
    background: #cc0000;
    box-shadow: 0 3px #aa0000;
  }
  
  div.fixButton a.blue {
    background: #006eb8;
    box-shadow: 0 3px #005893;
  }
  
  div.fixButton a.orange {
    background: #f57c00;
    box-shadow: 0 3px #e65100;
  }
  
  div.fixButton a.green {
    background: #007b43;
    box-shadow: 0 3px #007250;
  }
  
  div.fixButton a img {
    margin: 0.3em 0;
    max-width: 100%;
    height: auto;
  }
  
  div.fixButton a:link,
  div.fixButton a:visited,
  div.fixButton a:hover,
  div.fixButton a:active {
    color: #fff;
    text-decoration: none;
  }
  
  div.fixButton a:hover {
    box-shadow: none;
    text-decoration: none;
    opacity: 0.9;
    -mos-transform: translateY(3px);
    -webkit-transform: translateY(3px);
    tramsform: translateY(3px);
  }
