@charset "utf-8";
.pc{display: block;}
.sp{display: none;}
.object-fit-image{
  position: relative;
  height: 0;
  padding-top: 100%;
  overflow: hidden;
}
.object-fit-image>div{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.object-fit-contain {
  font-family: 'object-fit: contain;';
  object-fit: contain;
  height: 100%;
  width: 100%;
}
.object-fit-cover {
  font-family: 'object-fit: cover;';
  object-fit: cover;
  height: 100%;
  width: 100%;
  display: block;
}
.wrapper{
  width: 100%;
  max-width: 1150px;
  margin: auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.flexbox{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  min-height: 0px;
}
.flex_1{
  flex: 1;
}
.indent{
  padding-left: 1em;
  text-indent: -1em;
}
.clearfix{
  clear: both;
}
.btn01{
}
.btn01 a{
  display: table-cell;
  min-width: 100px;
  padding: 13px 20px 10px;
  text-align: center;
  border: 1px solid #000;
}

@media screen and (min-width:768px){

}
@media screen and (max-width:767px){
  .pc{display: none;}
  .sp{display: block;}
  .wrapper{
    padding: 0 10px;
  }
}

.col4::before,
.col4::after{
  content: "";
  height: 0;
  order: 1;
}
.col4 li,
.col4::before,
.col4::after{
  width: 23%;
}
@media screen and (min-width:768px){
  .col4 li:nth-child(n+5){
    margin-top: 30px;
  }
}
@media screen and (max-width:767px){
  .col4 li,
  .col4::before,
  .col4::after{
    width: 31%;
  }
  .col4 li:nth-child(n+4){
    margin-top: 15px;
  }
}


.scale_bg img{
  transition: .2s;
}
.scale_bg:hover img{
  transform: scale(1.05);
}


header{
  padding-top: 55px;
  margin-bottom: 40px;
}
nav li a{
  padding: 0 20px;
  display: block;
  font-size: 20px;
  text-align: center;
}
@media screen and (max-width:767px){
  header{
    padding-top: 24px;
    margin-bottom: 14px;
  }
}
@media screen and (max-width:767px){
  header{
    margin-bottom: 0;
  }
}
/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn{
  display: none;
	position: fixed;/*ボタン内側の基点となるためrelativeを指定*/
    top:2vh;
    right:2vw;
    z-index: 9999;
	cursor: pointer;
    width: 50px;
    height:50px;
}
/*ボタン内側*/
.openbtn .openbtn-area{
    transition: all .6s;/*アニメーションの設定*/
	width:50px;
	height:50px;
}
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background: #333;
  	width: 45%;
  }
.openbtn span:nth-of-type(1) {
	top:15px;
}
.openbtn span:nth-of-type(2) {
	top:23px;
}
.openbtn span:nth-of-type(3) {
	top:31px;
}
/*activeクラスが付与されると .openbtn-areaが360度回転し、その中の線が回転して×に*/
.openbtn.active .openbtn-area{
	transform: rotate(0deg);
}
.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}
.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}
.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
@media screen and (max-width:767px) {
  nav{
    display: none;
  }
  nav ul{
    flex-direction: column;
  }
  nav li+li{
    margin-top: 15px;
  }
  .openbtn{
    display: block;
  }
  #g-nav.burger_open{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
  	top: 0;
    left: 0;
    display: block;
  	width:100%;
    height: 100vh;
  }
  .circle-bg{
    position: fixed;
	  z-index:3;
    /*丸の形*/
    width: 100px;
    height: 100px;
    left: -100px;
    /*border-radius: 50%;
	  animation: bgchange 40s ease infinite;*/
    /*丸のスタート位置と形状*/
	  /*transform: scale(0);
    top:calc(50% - 50px);
    left:calc(50% - 50px);
    transition: all .6s;*/
    background: #fff;
  }
  .circle-bg.circle_active{
    transform: scale(50);
  }
  #g-nav-list{
    display: none;
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  #g-nav.burger_open #g-nav-list{
    display: block;
  }
  #g-nav ul {
	  opacity: 0;
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
  #g-nav.burger_open ul {
      opacity:1;
  }
}



.sec_header{
  margin-bottom: 30px;
}
.sec_header h2{
  font-size: 27px;
  font-weight: bold;
  line-height: 54px;
  letter-spacing: 1px;
  border-left: 4px solid #000;
  padding-left: 23px;
}
@media screen and (max-width:767px){
  .sec_header{
    margin-bottom: 24px;
  }
  .sec_header h2{
    font-size: 23px;
    line-height: 34px;
    border-left-width: 2px;
    padding-left: 15px;
  }
}
@media screen and (max-width:500px){
  .sec_header h2{
    font-size: 16px;
    padding-left: 11px;
  }
}




.bg_gray{
  background: #E8E8E8;
}

.maker_name{
  align-items: flex-end;
  border-bottom: 1px solid #707070;
  padding: 20px 0 15px;
}
.maker_name .maker_name_left{
  width: 140px;
}
.maker_name img{
  width: 100%;
}
.maker_name .maker_name_right{
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1px;
  word-break: break-all;
}
@media screen and (max-width:767px){
  .maker_name{
    padding-bottom: 10px;
  }
  .maker_name .maker_name_left{
    width: 100px;
  }
  .maker_name .maker_name_right{
    font-size: 17px;
  }
}
@media screen and (max-width:500px){
  .maker_name{
    flex-direction: column;
  }
  .maker_name .maker_name_left{
    margin: 0 auto 20px;
  }
  .maker_name .maker_name_right{
    font-size: 14px;
  }
}


.list01 .list_heading{
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: .04em;
  text-align: center;
  color: #fff;
  background: #000;
  height: 47px;
  padding: 2px 10px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  word-break: break-all;
}
.list01 .object-fit-image{
  padding-top: 81.5%;
  background: #fff;
}
@media screen and (max-width:767px){
  .list01 .list_heading{
    font-size: 13px;
    height: 31px;
  }
}
@media screen and (max-width:500px){
  .list01 .list_heading{
    font-size: 10px;
    height: 24px;
  }
}





.accordion {
	width: 100%;
  height: 100%;
	overflow: hidden;
}
.accordion.on+.accordion{
  border-top: 0;
}
.accordion+.accordion{
  border-top: 1px solid #CBCBCB;
}
.accordion .accordion_header{
  align-items: center;
  background: #E8E8E8;
  padding: 17px 20px 17px 24px;
  cursor: pointer;
  /*This will give ample space to the last item to move
	instead of falling down/flickering during hovers.*/
}
.bg_gray .accordion .accordion_header{
  background: #fff;
}
.accordion .accordion_btn{
  border: 2px solid #707070;
  width: 36px;
  height: 36px;
  position: relative;
  box-sizing: border-box;
  margin-left: 20px;
}
.accordion .accordion_btn::before{
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: #707070;
  top: calc(50% - 1px);
  left: calc(50% - 10px);
}
.accordion .accordion_btn::after{
  display: block;
  content: "";
  position: absolute;
  width: 2px;
  height: 20px;
  background: #707070;
  top: calc(50% - 10px);
  left: calc(50% - 1px);
}
.accordion.on .accordion_btn::after{
  display: none;
}
.accordion .accordion_content{
  position: relative;
  opacity: 0;
  /*Transitions to give animation effect*/
  transition: opacity 1s;
  -webkit-transition: opacity 1s;
  -moz-transition: opacity 1s;
  /*If you hover on the images now you should be able to
  see the basic accordian*/
}
.accordion.on .accordion_content{
  display: block;
  opacity: 1;
  transition: opacity 1s;
  -webkit-transition: opacity 1s;
  -moz-transition: opacity 1s;
}
.accordion .accordion_content>ul{
  align-items: flex-start;
  padding: 40px 0 63px;
}
.accordion .accordion_header h3{
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}
.accordion .accordion_content .object-fit-image{
  border: 1px solid #707070;
  margin-bottom: 10px;
}
.accordion .accordion_content p{
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .06em;
}
.accordion .accordion_content .price{
  font-size: 14px;
}
.accordion>ul>li>div{
  height: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
}
.accordion .color{
  justify-content: flex-start;
  margin-bottom: 10px;
}
.accordion .color span{
  width: 24px;
  height: 24px;
  border: 1px solid #707070;
  margin-top: 10px;
  margin-right: 10px;
}
.accordion .color_O{background: #ff4600;}
.accordion .color_G{background: #d4cd00;}
.accordion .color_S{background: #8a8a8a;}
.accordion .color_P{background: #a900ff;}
.accordion .color_BK{background: #000;}
.accordion .color_B{background: #405EF1;}
.accordion .color_R{background: #ff0000;}
.accordion .color_RA{background: #8a8a8a;}
@media screen and (min-width:768px){
  /*.accordion .accordion_content {
    height: 0;
  }
  .accordion .accordion_header:hover+.accordion_content {
    display: flex;
    height: unset;
  }*/
  /*Lets apply hover effects now*/
  /*The LI hover style should override the UL hover style*/
  /*.accordion>ul>li:hover{
    width: 70%;
  }*/
  .accordion>ul>li h3{
    left: 5vw;
    transform: translateX(-50%);
    padding-top: 50px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
  .accordion>ul>li>div{
    width: calc(100vw - 20%);
  }
}

@media screen and (min-width:1001px){
}
@media screen and (max-width:1000px){
  .accordion .col4 li,
  .accordion .col4::before,
  .accordion .col4::after{
    width: 31%;
  }
  .accordion .col4 li:nth-child(n+4){
    margin-top: 30px;
  }
}
@media screen and (max-width:767px) {
  .accordion .accordion_header{
    padding: 12px 15px;
  }
  .accordion .accordion_header h3{
    font-size: 17px;
  }
  .accordion .accordion_content>ul{
    padding: 30px 0 40px;
  }
  .accordion .col4 li{
    width: 48%;
  }
  .accordion .col4 li:nth-child(n+3){
    margin-top: 25px;
  }
  .accordion .accordion_btn{
    width: 25px;
    height: 25px;
  }
  .accordion .accordion_btn::before{
    width: 15px;
    left: calc(50% - 7.5px);
  }
  .accordion .accordion_btn::after{
    height: 15px;
    top: calc(50% - 7.5px);
  }
}
@media screen and (max-width:500px) {
  .accordion .accordion_header h3{
    font-size: 14px;
  }
  .accordion .accordion_content p{
    font-size: 11px;
    overflow-wrap: anywhere;
  }
  .accordion .accordion_content .price{
    font-size: 12px;
  }
  .accordion .color span{
    width: 18px;
    height: 18px;
    margin-top: 8px;
    margin-right: 8px;
  }
}





#home #mv{
  margin-bottom: 100px;
}
#home #mv .mv{
  background-image: url(../images/mv_home.jpg);
  background-repeat:no-repeat;
  background-position: 50% 100%;
  background-size: 100%;
  height: 0;
  padding-top: 23%;
  position: relative;
}
#home #mv .mv::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
#home #mv .mvtxt{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#home #mv h1{
  font-size: 31px;
  font-weight: bold;
  line-height: 50px;
  letter-spacing: .33em;
  text-align: center;
  color: #fff;
}
@media screen and (max-width:767px){
  #home #mv{
    margin-bottom: 0;
  }
  #home #mv .wrapper{
    padding: 0;
  }
  #home #mv .mv{
    background-size: cover;
    padding-top: 256px;
  }
  #home #mv h1 span{
    display: block;
  }
}
#home .sec_header{
  margin-bottom: 60px;
}
@media screen and (max-width:767px){
  #home .sec_header{
    margin-bottom: 30px;
  }
}

#home #sec01{
  padding: 100px 0 140px;
}
@media screen and (max-width:767px){
  #home #sec01{
    padding: 36px 0 115px;
  }
}

#archive .maker_name{
  margin-bottom: 55px;
}
#archive .cat_list{
  display: table;
  width: 100%;
}
#archive .cat_list li{
  width: calc(100% / 6);
  height: 35px;
  border-left: 1px solid #000;
  box-sizing: border-box;
  display: block;
  float: left;
  margin-bottom: 13px;
}
#archive .cat_list li:nth-of-type(6n),
#archive .cat_list li:last-child{
  border-right: 1px solid #000;
}
#archive .cat_list li a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 17px;
  line-height: 1;
  letter-spacing: 1px;
  padding: 0 5px;
  box-sizing: border-box;
  overflow-wrap: anywhere;
}
#archive h3{
  display: table;
  text-align: center;
  min-width: 265px;
  margin: 0 auto 65px;
  padding: 10px 30px 12px;
  border: 1px solid #707070;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 1px;
}
#archive .sec{
  padding: 87px 0 97px;
}
#archive .sec:last-child{
  padding-bottom: 220px;
}
@media screen and (max-width:1000px) and (min-width:601px){
  #archive .cat_list li{
    width: calc(100% / 3);
  }
  #archive .cat_list li:nth-of-type(3n){
    border-right: 1px solid #000;
  }
}
@media screen and (max-width:767px){
  #archive .maker_name{
    margin-bottom: 50px;
  }
  #archive .sec{
    padding: 40px 0;
  }
  #archive h3{
    font-size: 20px;
    min-width: 200px;
    margin-bottom: 25px;
    padding: 8px 25px 9px;
  }
  #archive .cat_list li a{
    font-size: 15px;
  }
  #archive .sec:last-child{
    padding-bottom: 90px;
  }
}
@media screen and (max-width:600px){
  #archive h3{
    font-size: 15px;
    padding: 5px 20px 6px;
  }
  #archive .cat_list li{
    width: calc(100% / 2);
  }
  #archive .cat_list li:nth-of-type(2n){
    border-right: 1px solid #000;
  }
}


#single .maker_name{
  margin-bottom: 40px;
}
#single #mv{
  margin-bottom: 70px;
}
#single #mv img{
  width: 100%;
}
@media screen and (max-width:767px){
  #single .maker_name{
    margin-bottom: 30px;
  }
  #single #mv{
    margin-bottom: 20px;
  }
}
#single .sec{
  padding: 100px 0;
}
#single .sec:nth-of-type(1){
  padding-top: 0;
}
#single .accordion_content li{
  position: relative;
}
#single .material{
  position: absolute;
  top: 1px;
  left: 1px;
  padding: 5px 25px;
  font-size: 18px;
  font-weight: bold;
  z-index: 1000;
}
#single .material.material01{
  background: #3200FF;
  color: #fff;
}
#single .material.material02{
  background: #E4FF00;
}
#single .material.material03{
  background: #ff0000;
  color: #fff;
}
#single .size{
  margin-bottom: 8px;
  color: #666;
  font-size: 0;
}
#single .size>div{
    font-weight: 400;
    font-size: 12px;
  display: inline-block;
  line-height: 1.2;
  margin-right: 20px;
}
#single .bikou{
  font-size: 12px;
  color: #666;
  padding-top: 8px;
}
#single .bikou span{
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.3;
}

@media screen and (max-width:767px){
  #single .sec{
    padding: 50px 0;
  }
  #single .sec:nth-of-type(1){
    padding-top: 20px;
  }
  #single .material{
    padding: 5px 15px;
    font-size: 14px;
  }
}
@media screen and (max-width:767px){
  #single .size div{
  }
}
@media screen and (max-width:500px){
#single .size>div,
#single .bikou {
    font-size: 11px;
}
}

.additional_page .sec_header {
margin-bottom: 40px;
}
.additional_page p {
font-size: 16px;
line-height: 1.5;
margin-bottom: 3em;
}
@media screen and (max-width: 767px) {
.additional_page .sec_header {
margin-bottom: 24px;
}
.additional_page p {
font-size: 15px;
}
}
@media screen and (max-width: 500px) {
.additional_page p {
font-size: 14px;
}
}

.additional_page_image {
display: table;
border: 1px solid #ccc;
box-sizing: border-box;
}
.additional_page_image img {
display: block;
max-width: 100%;
height: auto;
}

.additional_page_hb {
display: table;
margin: 60px auto 80px;
    font-size: 18px;
    font-weight: bold;
    line-height: 45px;
    letter-spacing: 0;
    text-align: center;
    color: #fff;
    background: #000;
    height: 46px;
    border: 2px solid #000;
    padding: 0 64px 1px 50px;
}

.list_info {
display: flex;
flex-wrap: wrap;
}
.list_info>div {
width: 50%;
display: flex;
flex-direction: column;
justify-content: center;
font-size: 12px;
line-height: 1.2;
letter-spacing: 0.02em;
padding: 0.3em;
box-sizing: border-box;
}
.list_info>div.list_info_type {
background-color: #f00;
color: #fff;
}
.list_info>div.list_info_year {
background-color: #ff0;
}
@media screen and (max-width: 1000px) {
.list_info>div {
font-size: 10px;
}
}
@media screen and (max-width: 880px) {
.list_info>div {
width: 100%;
}
}

.accordion_header_txt {
align-items: center;
flex-wrap:wrap;
}
.accordion_header_txt h3 {
white-space: nowrap;
}
@media screen and (max-width: 767px) {
.accordion_header_txt {
font-size: 14px;
}
}
@media screen and (max-width: 640px) {
.accordion_header_txt {
flex-direction: column;
align-items: flex-start;
font-size: 13px;
}
}
@media screen and (max-width: 375px) {
.accordion_header_txt {
font-size: 12px;
}
}


