@charset "UTF-8";

/* Webフォント
---------------------------------------------------------------------------- */

@font-face {
  font-family: 'Noto Sans Japanese';
  font-style: normal;
  font-weight: 100;
  src: url("../../fonts/NotoSansJP-Thin.woff2") format("woff2"),url("../../fonts/NotoSansJP-Thin.woff") format("woff"), url("../../fonts/NotoSansJP-Thin.ttf") format("truetype");
}

@font-face {
  font-family: 'Noto Sans Japanese';
  font-style: normal;
  font-weight: 200;
  src: url("../../fonts/NotoSansJP-Light.woff2") format("woff2"),url("../../fonts/NotoSansJP-Light.woff") format("woff"), url("../../fonts/NotoSansJP-Light.ttf") format("truetype");
}

@font-face {
  font-family: 'Noto Sans Japanese';
  font-style: normal;
  font-weight: 300;
  src: url("../../fonts/NotoSansJP-DemiLight.woff2") format("woff2"),url("../../fonts/NotoSansJP-DemiLight.woff") format("woff"), url("../../fonts/NotoSansJP-DemiLight.ttf") format("truetype");
}

@font-face {
  font-family: 'Noto Sans Japanese';
  font-style: normal;
  font-weight: 400;
  src: url("../../fonts/NotoSansJP-Regular.woff2") format("woff2"),url("../../fonts/NotoSansJP-Regular.woff") format("woff"), url("../../fonts/NotoSansJP-Regular.ttf") format("truetype");
}

@font-face {
  font-family: 'Noto Sans Japanese';
  font-style: normal;
  font-weight: 500;
  src: url("../../fonts/NotoSansJP-Medium.woff2") format("woff2"),url("../../fonts/NotoSansJP-Medium.woff") format("woff"), url("../../fonts/NotoSansJP-Medium.ttf") format("truetype");
}

@font-face {
  font-family: 'Noto Sans Japanese';
  font-style: normal;
  font-weight: 700;
  src: url("../../fonts/NotoSansJP-Bold.woff2") format("woff2"),url("../../fonts/NotoSansJP-Bold.woff") format("woff"), url("../../fonts/NotoSansJP-Bold.ttf") format("truetype");
}

@font-face {
  font-family: 'Noto Sans Japanese';
  font-style: normal;
  font-weight: 900;
  src: url("../../fonts/NotoSansJP-Black.woff2") format("woff2"),url("../../fonts/NotoSansJP-Black.woff") format("woff"), url("../../fonts/NotoSansJP-Black.ttf") format("truetype");
}

.m-notosans-thin {
  font-weight: 100;
  font-family: 'Noto Sans Japanese';
}

.m-notosans-light {
  font-weight: 200;
  font-family: 'Noto Sans Japanese';
}

.m-notosans-demi-light {
  font-weight: 300;
  font-family: 'Noto Sans Japanese';
}

.m-notosans-regular {
  font-weight: 400;
  font-family: 'Noto Sans Japanese';
}

.m-notosans-medium {
  font-weight: 500;
  font-family: 'Noto Sans Japanese';
}

.m-notosans-bold {
  font-weight: 700;
  font-family: 'Noto Sans Japanese';
}

.m-notosans-black {
  font-weight: 900;
  font-family: 'Noto Sans Japanese';
}


/* タイトル系
---------------------------------------------------------------------------- */
.m-title01 {
  padding-top: 90px;
  font-family: arial, "游ゴシック体", "游ゴシック", YuGothic, 'Noto Sans Japanese', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-weight: 700;
  color: #000;
  font-size: 54px;
  font-size: 5.4rem;
  line-height: 1.35;
  letter-spacing: 0.015em;
}

.m-title01:first-child {
  padding-top: 40px;
  padding-bottom: 65px;
}

@media screen and (max-width: 767px){
  .m-title01 {
    padding-top: 52.5px;
    font-size: 28px;
    font-size: 2.8rem;
  }
  
  .m-title01:first-child {
    padding-top: 25px;
    padding-bottom: 30px;
  }
}


/* ボタン系
---------------------------------------------------------------------------- */
.m-button01 {
}

@media screen and (max-width: 767px){
  .m-button01 {
  }
}


/* パーツ系
---------------------------------------------------------------------------- */
/*------------- .m-category-list -------------*/
.m-category-list {
  padding: 120px 20px 0 20px;
  background: #ffffff;
  position: relative;
  z-index: 2;
}

.m-category-list .container {
  max-width: 1290px;
  padding: 0 0 20px 0;
  margin: 0 auto;
  border-bottom: 1px solid #000;
  overflow-x: auto;
  overflow-y: hidden;
  white-space:nowrap;
}

.m-category-list .container::-webkit-scrollbar{
  height: 5px;
}
.m-category-list .container::-webkit-scrollbar-track{
  background: transparent;
  border: none;
  border-radius: 3px;
  box-shadow: none;
}
.m-category-list .container::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,0.3);
  border-radius: 3px;
  box-shadow: none;
}
.m-category-list dl dd {
  display: inline-block;
  margin-left: 25px;
}

.m-category-list dl dd:first-child {
  margin-left: 0;
}

.m-category-list dl dd a {
  display: inline;
  opacity: 0.3;
  font-family: arial, "游ゴシック体", "游ゴシック", YuGothic, 'Noto Sans Japanese', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-weight: 700;
  color: #000;
  font-size: 32px;
  font-size: 3.2rem;
  letter-spacing: 0.015em;
  transition: all 0.3s ease;
}

.m-category-list dl dd a:hover,
.m-category-list dl dd a.current {
  opacity: 1;
}

@media screen and (max-width: 767px){
  .m-category-list {
    padding: 50px 17.5px 0 17.5px;
    background: #ffffff;
    position: relative;
    z-index: 2;
  }

  .m-category-list .container {
    max-width: 1290px;
    padding: 0 0 15px 0;
  }
  
  .m-category-list dl dd {
    margin-left: 15px;
  }

  .m-category-list dl dd a {
    font-size: 21.26px;
    font-size: 2.126rem;
    letter-spacing: 0.015em;
    transition: all 0.3s ease;
  }

  .m-category-list dl dd a:hover,
  .m-category-list dl dd a.current {
    opacity: 1;
  }
}

/*------------- .m-tag-list -------------*/
.m-tag-list {
  padding-bottom: 65px;
  color: rgba(255,255,255,0.3);
}

.m-tag-list a {
  display: inline-block;
  margin-top: 12px;
  opacity: 0.3;
  font-weight: 500;
  color: #000;
  font-size: 22px;
  font-size: 2.2rem;
  transition: all 0.3s ease;
}

.m-tag-list a:hover {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .m-tag-list {
    padding-bottom: 30px;
  }
  .m-tag-list a {
    margin-top: 10px;
    font-size: 15px;
    font-size: 1.5rem;
  }
}


/*------------- .m-column2-box -------------*/
.m-column2-box {
  padding-top: 40px;
}

.m-column2-box dl dd {
  width: calc(50% - 20px);
  margin-top: 40px;
  margin-left: 40px;
  text-align: center;
}

.m-column2-box dl dd:nth-of-type(odd) {
  margin-left: 0;
}

.m-column2-box dl dd:nth-of-type(-n+2) {
  margin-top: 0;
}

.m-column2-box dl dd.flR {
  text-align: right;
}

.m-column2-box dl dd.w25 {
  width: calc(25% - 20px);
}

.m-column2-box dl dd.w30 {
  width: calc(33% - 20px);
}

.m-column2-box dl dd.w70 {
  width: calc(67% - 20px);
}

.m-column2-box dl dd.w75 {
  width: calc(75% - 20px);
}

.m-column2-box dl dd.table {
  display: table;
}

.m-column2-box dl dd.table p {
  display: table-cell;
  vertical-align: bottom;
  padding-bottom: 10px;
  margin-bottom: 0!important;
}

.m-column2-box dl dd a {
  display: inline-block;
  position: relative;
}

.m-column2-box dl dd a:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: rgba(0,0,0,0.7);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: all 0.3s ease;
}

.m-column2-box dl dd a:hover:before {
  opacity: 1;
}

.m-column2-box dl dd a h2 {
  height: 5rem;
  opacity: 0;
  font-family: arial, "游ゴシック体", "游ゴシック", YuGothic, 'Noto Sans Japanese', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-weight: 700;
  color: #000;
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1.35;
  letter-spacing: 0.015em;
  position: absolute;
  top: 52%;
  left: 0;
  right: 0;
  bottom: 48%;
  z-index: 2;
  margin: auto;
  transition: all 0.3s ease;
}

.m-column2-box dl dd a:hover h2 {
  opacity: 1;
  top: 0;
  bottom: 0;
}

.m-column2-box dl dd p {
  margin-bottom: 40px;
  font-weight: 700;
  color: #000;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 2;
  text-align: left;
  text-align: justify;
  text-justify: inter-ideograph;
}

.m-column2-box dl dd small {
  display: block;
  margin-bottom: 40px;
  font-weight: 500;
  color: #000;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.75;
  text-align: left;
}

@media screen and (max-width: 767px){
  .m-column2-box {
    padding-top: 17.5px;
  }
  
  .m-column2-box dl dd {
    float: none;
    width: 100%!important;
    margin-top: 17.5px;
    margin-left: 0;
  }

  .m-column2-box dl dd:nth-of-type(-n+2) {
    margin-top: 17.5px;
  }
  
  .m-column2-box dl dd:nth-of-type(1) {
    margin-top: 0;
  }
  
  .m-column2-box dl dd.flR {
    text-align: center;
  }

  .m-column2-box dl dd a:before {
    display: none;
  }

  .m-column2-box dl dd a h2 {
    display: none;
  }
  
  .m-column2-box dl dd p {
    margin-bottom: 30px;
    font-weight: 400;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.69;
  }

  .m-column2-box dl dd small {
    margin-bottom: 17.5px;
    font-weight: 500;
    color: #000;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.5;
  }
}


/*------------- .m-nextwork-box -------------*/
.m-nextwork-box {
  padding-top: 150px;
  margin-bottom: 15px;
  border-bottom: 1px solid #000;
  font-family: arial, "游ゴシック体", "游ゴシック", YuGothic, 'Noto Sans Japanese', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-weight: 700;
  color: #000;
  font-size: 32px;
  font-size: 3.2rem;
  letter-spacing: 0.015em;
}

.m-nextwork-box a {
  display: inline-block;
  padding: 0 0 15px 45px;
  background: url(../../images/common/icn_nextwork.png) no-repeat top left;
}

@media screen and (max-width: 767px) {
  .m-nextwork-box {
    padding-top: 75px;
    font-size: 21px;
    font-size: 2.1rem;
  }
  
  .m-nextwork-box a {
    display: inline-block;
    padding: 0 0 15px 35px;
    background: url(../../images/common/icn_nextwork.png) no-repeat top left / 25px auto;
  }
}