@charset "UTF-8";


/* 小　画面サイズ 900px 未満 ////////////////////////////////////////*/
@media (width < 900px) {

  .gnaviAll_pc {
    display: none;
  }

  /*G navi スマホ*/

  #mask {
    display: none;
    transition: all 0.5s;
  }

  /* ボタンのための記述 */

  .toggle-btn {
    position: fixed;
    top: 20px;
    right: 10px;
    z-index: 9998;
    cursor: pointer;
    width: 80px;
    height: 60px;
  }

  .toggle-btn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 10px;
    height: 2px;
    border-radius: 2px;
    background-color: #333;
    width: 75%;
  }

  .toggle-btn span:nth-child(1) {
    top: 15px;
  }

  .toggle-btn span:nth-child(2) {
    top: 26px;
  }

  .toggle-btn span:nth-child(3) {
    top: 37px;
  }

  .open .toggle-btn span {
    background-color: #333;
  }

  .open .toggle-btn span:nth-child(1) {
    top: 30px;
    left: 10px;
    transform: translateY(-0px) rotate(-315deg);
    width: 75%;
  }

  .open .toggle-btn span:nth-child(2) {
    opacity: 0;
  }

  .open .toggle-btn span:nth-child(3) {
    top: 30px;
    left: 10px;
    transform: translateY(0px) rotate(315deg);
    width: 75%;
  }

  /*G navi ここまで*/


  /* header ****************************/

  header {
    padding-top: 100px;
  }

  .headWrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  .headerLogo {
    width: 100%;
    text-align: left;
  }

  .headerLogo img {
    max-width: 300px;
  }

  .headerDescription {
    display: flex;
    justify-content: flex-end;
    padding-bottom: 10px;
  }

  .badgeIcon {
    display: block;
    text-align: right;
  }

  .badgeIcon img {
    width: 60px;
  }

  .slideWrapper {
    margin-top: 100px;
  }




  /* headerGrid ****************************/

  #headerContainer {
    grid-template-rows: 50% 50% 100%;
    grid-template-columns: 70% 30% 100%;
  }

  #header_A {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
  }

  #header_B {
    grid-row: 2 / 3;
    grid-column: 1 / 2;
  }

  #header_C {
    grid-row: 1 / 3;
    grid-column: 2 / 3;
  }


  /* Main Contents ////////////////////////////////////////*/

  .mainContentsWrapper {
    width: 100%;
    max-width: 1200px;
  }



  /* footer ////////////////////////////////////////*/

  .footerWrapper1 {
    width: 100%;
  }

  .footerWrapper2 {
    display: none;
  }

  .copyright {
    text-align: left;
    padding-top: 10px;
  }

  .dentokougeishiWrap img {
    width: 100%;
  }

  .unionWrap img {
    width: 100%;
  }


  .storeLink2 img {
    padding-left: 20px;
    padding-right: 20px;
  }


  /* 伝統工芸士コンテンツ ////////////////////////////////////////*/

  .dentokougeishiItem img {
    width: 100%;
    display: block;
    padding-bottom: 5px;
  }

  .dentokougeishiItem h2 {
    padding-bottom: 10px;
    font-size: 90%;
  }

  .dentokougeishiItem h1 {
    padding-top: 2.5px;
    font-size: 100%;
  }

  .dentokougeishiItem p {
    padding-top: 2.5px;
    font-size: 60%;
  }

  .dentokougeishiItem li {
    font-size: 70%;
    padding-top: 2px;
  }

  .dentokougeishiGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }


  /* ユニオン ////////////////////////////////////////*/

  .unionItem {
    padding-top: 10px;
    /* padding-bottom: 15px; */
  }

  .unionContent img {
    width: 100%;
    display: block;
  }

  .unionItem h1 {
    padding-bottom: 3px;
    line-height: 1.4em;
    font-size: 1rem;
  }

  .unionItem p {
    padding-top: 2.5px;
    padding-bottom: 1px;
    font-size: 0.75rem;
  }

  .unionItem h2 {
    padding-bottom: 10px;
  }

  .unionItem li {
    padding-top: 1px;
    line-height: 1.4em;
    font-size: 0.75rem;
    text-decoration: none;
    color: #000;
  }

  .unionIcon img {
    max-width: 30px;
  }

  .unionGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }


  .memberPageWrapper {
    width: 100%;
    padding: 0rem 1rem;
  }

  .newsArea p {
    padding-top: 10px;
  }



}



/* 中　画面サイズ 900px 以上 1200px 未満 ////////////////////////////////////////*/
@media (900px <=width < 1200px) {

  .headWrapper {
    padding-left: 20px;
    padding-right: 20px;
  }


  /*G navi PC*/

  .gnaviAll_mb {
    display: none;
  }

  .gnaviAll_pc {
    width: 100%;
    margin-top: 100px;
  }

  .gnavi__wrap {
    max-width: 1200px;
    margin: 0 auto;
  }

  .gnavi__lists {
    display: flex;
  }

  .gnavi__list {
    width: 20%;
    height: 60px;
    /* background-color: #232323; */
    position: relative;
    transition: all .3s;
  }

  .gnavi__list:hover {
    text-decoration-color: #e4826c;
    text-decoration-line: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 12px;
  }

  .gnavi__list:not(:first-child)::before {
    content: "";
    width: 1px;
    height: 50%;
    /* background-color: #fff; */
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: all .3s;
  }

  .gnavi__list:hover::before {
    background-color: #e6e6e6;
  }

  .gnavi__list a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #232323;
    letter-spacing: 0.05em;
    transition: all .3s;
    font-family: "source-han-sans-cjk-ja", sans-serif;
    font-weight: 500;
    font-style: normal;
  }

  .gnavi__list:hover a {
    color: #232323;
  }

  /*G navi ここまで*/

  /* contents  ****************************/

  #mainContainer {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }

  .secondContent {
    display: flex;
    align-items: stretch;
  }

  .dentokougeishiGrid {
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
  }

  .unionGrid {
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
  }

  .sanchiBanner {
    grid-template-columns: repeat(5, 1fr);
    width: 100%;
  }

  .newsArea p {
    padding-top: 0px;
  }


}




/* 大　画面サイズ 1200px 以上 ////////////////////////////////////////*/
@media (1200px <=width) {

  /*G navi PC*/

  .gnaviAll_mb {
    display: none;
  }

  .gnaviAll_pc {
    width: 100%;
    margin-top: 100px;
  }

  .gnavi__wrap {
    max-width: 1200px;
    margin: 0 auto;
  }

  .gnavi__lists {
    display: flex;
  }

  .gnavi__list {
    width: 20%;
    height: 60px;
    /* background-color: #232323; */
    position: relative;
    transition: all .3s;
  }

  .gnavi__list:hover {
    text-decoration-color: #e4826c;
    text-decoration-line: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 12px;
  }

  .gnavi__list:not(:first-child)::before {
    content: "";
    width: 1px;
    height: 50%;
    /* background-color: #fff; */
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: all .3s;
  }

  .gnavi__list:hover::before {
    background-color: #e6e6e6;
  }

  .gnavi__list a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #232323;
    letter-spacing: 0.05em;
    transition: all .3s;
    font-family: "source-han-sans-cjk-ja", sans-serif;
    font-weight: 500;
    font-style: normal;
  }

  .gnavi__list:hover a {
    color: #232323;
  }

  /*G navi ここまで*/

  /* contents  ****************************/

  #mainContainer {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }

  .secondContent {
    display: flex;
    align-items: stretch;
  }

  .dentokougeishiGrid {
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    padding: 0rem;
  }

  .unionGrid {
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    padding: 0rem;
  }

  .sanchiBanner {
    grid-template-columns: repeat(5, 1fr);
    max-width: 1160px;
  }

  .newsArea p {
    padding-top: 0px;
  }

}