.pc {
  display: inherit !important;
}

.sp {
  display: none !important;
}

.th_index_cont{
  position: relative;
  background-color: #fff;
  color: #333;
  z-index: 10;
}

a{
  text-decoration: none;
}

a:hover{
  text-decoration: none;
}

.wrap{
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
}

/*----- SP -----*/
@media screen and (max-width:520px){
  .pc {
    display: none !important;
  }
  
  .sp {
    display: inherit !important;
  }
  
  .th_index_cont{
    position: relative;
    background-color: #fff;
    color: #333;
    z-index: 10;
  }
  
  a{
    text-decoration: none;
  }
  
  a:hover{
    text-decoration: none;
  }
  
  .wrap{
    width: 90%;
    /*max-width: 1200px;*/
    margin: 0 auto;
  }
}

/*---------------------------------------
MV
---------------------------------------*/
.th_mv_section{
  height: 100vh;
  position: fixed;
  top:50%;
  left: 50%;
  display: block;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%,-50%);
  background-image: url(../../images/_10th/mv.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.th_mv_wrap{
  display: flex;
  position: relative;
  align-items: flex-start;
}

.th_mv_wrap .left{
  position: sticky;
  top: 0;
  width: 55%;
  height: 100vh;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.th_mv_wrap .left .th_mv_ttl{
  display: inline-block;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.th_mv_wrap .left h2{
  font-size: 40px;
  line-height: 80px;
  font-weight: 600;
  margin-bottom: 40px;
}

.th_mv_msg{
  width: 45%;
  padding: 50vh 0;
  color: #fff;
  margin: 0 0 0 auto;
  text-shadow: 0 0 16px rgba(51, 51, 51, 0.75);

}

.th_mv_msg h3{
  font-size: 32px;
  line-height: 64px;
  font-weight: 600;
  margin-bottom: 64px;
}

.th_mv_msg p{
  font-size: 20px;
  line-height: 50px;
  font-weight: 400;
  margin-bottom: 40px;
}

.fade{
  opacity: 0;
  transform: translateY(80px);
  clip-path: inset(20% 0 0 0);
  transition: all 1.2s ease;
}

.fade.active{
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0 0 0 0);
}

h4.th_ttl{
  font-size: 24px;
  margin-bottom: 40px;
  font-weight: 600;
  text-align: center;
}

p.th_text{
  font-size: 18px;
  line-height: 36px;
  text-align: center;
  margin-bottom: 32px;
}

/*----- SP -----*/
@media screen and (max-width:520px){
  .th_mv_section{
    height: 100vh;
    display: block;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    background-image: url(../../images/_10th/mv_sp_.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
  }

  .th_mv_msg{
    width: 90%;
    padding: 30vh 0;
    color: #fff;
    margin: 0 auto;
    text-shadow: 0 0 16px rgba(51, 51, 51, 0.75);
  }

  .th_mv_msg h2{
    font-size: 28px;
    line-height: 52px;
    font-weight: 600;
    margin-bottom: 32px;
  }
  
  .th_mv_msg h3{
    font-size: 22px;
    line-height: 40px;
    font-weight: 600;
    margin: 120px 0 40px;
  }
  
  .th_mv_msg p{
    font-size: 16px;
    line-height: 40px;
    font-weight: 400;
    margin-bottom: 40px;
  }
  
  .fade{
    opacity: 0;
    transform: translateY(80px);
    clip-path: inset(20% 0 0 0);
    transition: all 0.6s ease;
  }
  
  .fade.active{
    opacity: 1;
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
  }
  
  h4.th_ttl{
    font-size: 22px;
    margin-bottom: 38px;
    font-weight: 600;
    text-align: center;
  }
  
  p.th_text{
    font-size: 16px;
    line-height: 32px;
    text-align: center;
    margin-bottom: 32px;
  }
}

/*---------------------------------------
TOP MSG
---------------------------------------*/
.th_top_msg{
  display: block;
  padding: 216px 0 120px;
}

/*----- SP -----*/
@media screen and (max-width:520px){
  .th_top_msg{
    display: block;
    padding: 120px 0 48px;
  }
}

/*---------------------------------------
Philosophy
---------------------------------------*/
.th_philo_wrap{
  padding-bottom: 64px;
}
.th_philo_item{
  display: flex;
  margin-bottom: 120px;
}

.th_philo_item .left{
  width: 50%;
}

.th_philo_item .left img{
  width: 100%;
}

.th_philo_item .right{
  display: flex;
  align-items: center;
  width: 40%;
  margin-left: 10%;
}

.th_philo_item .right p{
  margin-bottom: 32px;
}

.th_philo_item .right a{
  transition: opacity 0.3s ease;
}

.th_philo_item .right a:hover{
  opacity: 0.6;
}

.th_philo_item .right .th_sub_ttl{
  font-size: 20px;
  font-weight: 600;
}

.th_philo_item .right a{
  padding-bottom: 2px;
  border-bottom: solid 1px #333;
}

.th_philo_item .right a i{
  padding-left: 4px;
  color: #333;
}

/*----- SP -----*/
@media screen and (max-width:520px){
  .th_philo_wrap{
    padding-bottom: 0px;
  }

  .th_philo_item{
    display: block;
    margin-bottom: 80px;
  }
  
  .th_philo_item .left{
    width: 100%;
    margin-bottom: 32px;
  }
  
  .th_philo_item .left img{
    width: 100%;
  }
  
  .th_philo_item .right{
    display: block;
    width: 100%;
    margin-left: 0;
  }
  
  .th_philo_item .right p{
    margin-bottom: 16px;
  }
  
  .th_philo_item .right .th_sub_ttl{
    font-size: 20px;
    font-weight: 600;
  }
  
  .th_philo_item .right a{
    padding-bottom: 2px;
    border-bottom: solid 1px #333;
  }
  
  .th_philo_item .right a i{
    padding-left: 4px;
    color: #333;
  }
}

/*---------------------------------------
pottery
---------------------------------------*/
.th_pottery_wrap{
  padding-bottom: 176px;
}

.th_pottery_msg{
  text-align: center;
  position: relative;
  height: auto;
}

.th_pottery_text_block{
  height: 100%;
}

.th_pottery_text_block::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../../images/_10th/mug_zumen.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.15;
  z-index: -1;
}

.th_pottery_msg .th_sub_ttl{
  font-size: 20px;
  font-weight: 600;
}

.th_pottery_msg p{
  font-size: 16px;
  margin-bottom: 32px;
  line-height: 32px;
}

/*----- SP -----*/
@media screen and (max-width:520px){
  .th_pottery_wrap{
    padding-bottom: 96px;
  }
  
  .th_pottery_msg{
    text-align: center;
    position: relative;
    height: auto;
  }

  .th_pottery_msg.sp img{
    width: 100%;
    margin-bottom: 40px;
    opacity: 0.5;
  }
  
  .th_pottery_text_block{
    height: 100%;
    text-align: left;
  }
  
  .th_pottery_text_block::before{
    display: none !important;
  }
  
  .th_pottery_msg .th_sub_ttl{
    font-size: 18px;
    font-weight: 600;
    text-align: center;
  }
  
  .th_pottery_msg p{
    font-size: 16px;
    margin-bottom: 32px;
    line-height: 32px;
  }
}

/* ----------  arrow ----------- */
.th_arrow_wrap{
  position: relative;
  height: 160px;
  padding: 80px 0;
}

.arrow_scroll_indicator {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.arrow_line {
  width: 1px;
  height: 160px;
  background: #ccc;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

/* 動く部分 */
.arrow_line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #333;
  animation: scrollLine 2.0s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    transform: translateY(-60px);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: translateY(160px);
    opacity: 0;
  }
}

.arrow_text{
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translateY(-50%);
  color: #999;
}

/*----- SP -----*/
@media screen and (max-width:520px){
  .th_arrow_wrap{
    position: relative;
    height: 120px;
    padding: 32px 0;
  }
  
  .arrow_scroll_indicator {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }
  
  .arrow_line {
    width: 1px;
    height: 120px;
    background: #ccc;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
  }
  
  .arrow_line::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: #333;
    animation: scrollLine 2.0s ease-in-out infinite;
  }
  
  @keyframes scrollLine {
    0% {
      transform: translateY(-60px);
      opacity: 0;
    }
    20% {
      opacity: 1;
    }
    100% {
      transform: translateY(160px);
      opacity: 0;
    }
  }
  
  .arrow_text{
    position: absolute;
    top: 50%;
    left: 54%;
    transform: translateY(-50%);
    color: #999;
  }
}


/* ----------  pottery map ----------- */
.th_map{
  position: relative;
  text-align: center;
  padding-bottom: 96px;
}

.th_map img{
  width: 80%;
}

.th_map p{
  position: absolute;
  top: 60%;
  left: 64%;
  width: 33%;
  font-size: 14px;
  line-height: 26px;
  text-align: left;
}

/*----- SP -----*/
@media screen and (max-width:520px){
  .th_map{
    position: relative;
    text-align: center;
    padding: 32px 0 0;
  }
  
  .th_map img{
    width: 100%;
  }
  
  .th_map p{
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    font-size: 14px;
    line-height: 26px;
    text-align: left;
    padding: 32px 0;
  }
}


/* ----------  pottery list ----------- */
.th_area_wrap .pc{
  padding-top: 16px;
}

.th_area_wrap .pc p{
  font-size: 18px;
  font-weight: 600;
  border-bottom: solid 1px #999;
  padding-left: 16px;
  margin-bottom: 32px;
}

.th_area_inner{
  display: flex;
  width: 100%;
  gap: 40px;
  justify-content: center;
}

.th_area_inner ol{
  width: auto;
  min-width: 400px;
}

.th_area_inner ol li{
  width: auto;
  min-width: 400px;
  font-size: 14px;
  padding: 0 16px;
  border-bottom: solid 1px #999;
}

@media screen and (max-width:520px){

  .th_area_wrap .sp{
    padding-top: 0;
  }
  
  .th_area_wrap .sp p{
    font-size: 16px;
    font-weight: 600;
    border-bottom: solid 1px #999;
    padding-left: 8px;
    margin-bottom: 16px;
  }

  .accordion_trigger{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .icon{
    position: relative;
    width: 14px;
    height: 14px;
    cursor: pointer;
    flex-shrink: 0;
    padding-right: 8px;
  }
  
  .icon::before,
  .icon::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 14px;
    height: 1px;
    background: #333;
    transform: translateY(-50%);
    transition: 0.3s ease;
  }

  .icon::after{
    transform: translateY(-50%) rotate(90deg);
  }

  .sp_accordion.active .icon::after{
    opacity: 0;
  }

  .th_area_inner{
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .sp_accordion.active .th_area_inner{
    max-height: 2000px;
  }

  .th_area_inner ol{
    width: auto;
    min-width: 0;
  }
  
  .th_area_inner ol li{
    width: auto;
    min-width: 0;
    font-size: 14px;
    padding: 0 8px;
    border-bottom: solid 1px #999;
  }
}

/*---------------------------------------
artist collaboration
---------------------------------------*/
.th_artist_wrap{
  padding: 176px 0;
  background-color: #F5F2E9;
}

.th_artist_msg{
  margin-bottom: 160px;
}

.th_artist_inner{
  display: flex;
  margin-bottom: 160px;
}

.th_artist_inner .left{
  width: 50%;
}

.th_artist_inner .left img{
  width: 100%;
}

.th_artist_inner .right{
  display: flex;
  align-items: center;
  width: 40%;
  margin-left: 10%;
  align-items: center;
}

.th_artist_inner .right p{
  margin-bottom: 32px;
}

.th_artist_inner .right .th_sub_ttl{
  font-size: 20px;
  font-weight: 600;
}

.th_artist_inner .right a{
  padding-bottom: 2px;
  border-bottom: solid 1px #999;
  transition: opacity 0.3s ease;
}

.th_artist_inner .right a:hover{
  opacity: 0.6;
}

.th_artist_inner .right a i{
  padding-left: 4px;
  color: #333;
}

.th_artist_cont{
  border-top: solid 1px #333;
  margin-bottom: 96px;
}

.th_artist_item{
  display: flex;
  gap: 40px;
  border-bottom: solid 1px #333;
  height: 100%;
}

.th_artist_item:nth-child(2n){
  flex-direction: row-reverse;
}

.img_link{
  position: relative;
  display: inline-block;
  overflow: hidden;
  width: 520px;
  min-height: 520px;
}

.th_artist_item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.3s;
}

.img_link::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: 0.3s;
}

.img_link .overlay{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  opacity: 0;
  transition: 0.3s;
}

.img_link:hover::before{
  opacity: 1;
}

.img_link:hover .overlay{
  opacity: 1;
}

.th_artist_item .text_block{
  margin: auto 0;
  padding: 16px 32px;
  width: auto;

}

.th_artist_item .text_block p.name{
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 24px;
}

.th_artist_item .text_block p.name span{
  font-size: 14px;
}

.th_artist_item .text_block p.insta{
  font-size: 14px;
  margin-top: 8px;
  padding-bottom: 4px;
}

.th_artist_item .text_block p.insta a{
  border-bottom: solid 1px #999;
  transition: opacity 0.3s ease;
}

.th_artist_item .text_block p.insta a:hover{
  opacity: 0.6;
}

.th_btn{
  text-align: center;
}

.th_btn a{
  text-align: center;
  padding: 16px 72px;
  border: solid 1px #333;
}

.th_btn a:hover{
  color: #fff;
  background-color: #333;
  opacity: 1 !important;
}

/*----- SP -----*/
@media screen and (max-width:520px){
  .th_artist_wrap{
    padding: 96px 0 112px;
    background-color: #F5F2E9;
  }
  
  .th_artist_msg{
    margin-bottom: 80px;
  }
  
  .th_artist_inner{
    display: block;
    margin-bottom: 96px;
  }
  
  .th_artist_inner .left{
    width: 100%;
    margin-bottom: 32px;
  }
  
  .th_artist_inner .left img{
    width: 100%;
  }
  
  .th_artist_inner .right{
    display: block;
    width: 100%;
    margin-left: 0;
  }
  
  .th_artist_inner .right p{
    margin-bottom: 16px;
  }
  
  .th_artist_inner .right .th_sub_ttl{
    font-size: 20px;
    font-weight: 600;
  }
  
  .th_artist_inner .right a{
    padding-bottom: 2px;
    border-bottom: solid 1px #333;
  }
  
  .th_artist_inner .right a i{
    padding-left: 4px;
    color: #333;
  }
  
  .th_artist_cont{
    border-top: solid 1px #333;
    margin-bottom: 72px;
  }
  
  .th_artist_item{
    display: block;
    border-bottom: solid 1px #333;
  }
  
  .img_link{
    position: relative;
    display: inline-block;
    overflow: hidden;
    width: 100%;
    min-height: 0;
  }
  
  .th_artist_item img{
    /*display: block;*/
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: 0.3s;
  }
  
  .img_link::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: 0.3s;
  }
  
  .img_link .overlay{
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    opacity: 0;
    transition: 0.3s;
  }
  
  .img_link:hover::before{
    opacity: 1;
  }
  
  .img_link:hover .overlay{
    opacity: 1;
  }
  
  .th_artist_item .text_block{
    margin: 0 auto;
    padding: 32px 0;
    width: 90%;
  
  }
  
  .th_artist_item .text_block p.name{
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 16px;
  }
  
  .th_artist_item .text_block p.name span{
    font-size: 14px;
  }
  
  .th_btn{
    text-align: center;
  }
  
  .th_btn a{
    text-align: center;
    padding: 16px 56px;
    border: solid 1px #333;
  }
  
  .th_btn a:hover{
    color: #fff;
    background-color: #333;
    opacity: 1 !important;
  }
}

/*---------------------------------------
stores
---------------------------------------*/
.th_stores_wrap{
  padding: 176px 0;
  width: auto;
}

.th_stores_msg{
  margin-bottom: 120px;
}

.th_stores_list{
}

.th_stores_list ul{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  justify-content: center;
  gap: 16px 24px;
}

.th_stores_list ul li{
  padding: 0 16px 16px;
  border-bottom: solid 1px #999;
}

.th_stores_list ul li strong{
  font-size: 16px;
  letter-spacing: 2px !important;
}

.th_stores_list ul li p{
  font-size: 14px !important;
  line-height: 22px !important;
  letter-spacing: 1px !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.th_stores_list ul li p span.map_btn a{
  padding: 2px 10px;
  background-color: #333;
  color: #fff;
  transition: opacity 0.3s ease;
}

.th_stores_list ul li p span.map_btn a:hover{
  opacity: 0.8;
}

/*----- SP -----*/
@media screen and (max-width:520px){
  .th_stores_wrap{
    padding: 96px 0;
    width: 90%;
  }
  
  .th_stores_msg{
    margin-bottom: 40px;
  }
  
  .th_stores_list{
  }
  
  .th_stores_list ul{
    display: block;
  }
  
  .th_stores_list ul li{
    padding: 16px 8px;
    border-bottom: solid 1px #999;
  }
  
  .th_stores_list ul li strong{
    font-size: 16px;
    letter-spacing: 2px !important;
  }
  
  .th_stores_list ul li p{
    font-size: 14px !important;
    line-height: 22px !important;
    letter-spacing: 1px !important;
  }
}

/*---------------------------------------
last msg
---------------------------------------*/
.th_last_msg{
  position: relative;
  width: 100%;
  padding-bottom: 96px;
}

.th_last_msg img{
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center;
}

.th_last_msg p.jost{
  position: absolute;
  top: 20%;
  left: 10%;
  font-size: 20px;
  color: #fff;
}

/*----- SP -----*/
@media screen and (max-width:520px){
  .th_last_msg{
    position: relative;
    width: 100%;
    padding-bottom: 72px;
  }
  
  .th_last_msg img{
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
  }
  
  .th_last_msg p.jost{
    position: absolute;
    top: 10%;
    left: 8%;
    font-size: 16px;
    line-height: 32px;
    color: #fff;
  }
}

/*---------------------------------------
contact
---------------------------------------*/
.th_contact{
  text-align: center;
  padding-bottom: 16px;
}

.th_contact p{
  font-size: 14px;
  margin-bottom: 16px;
}

/*----- SP -----*/
@media screen and (max-width:520px){
  .th_contact{
    text-align: center;
    padding-bottom: 24px;
  }
  
  .th_contact p{
    margin-bottom: 16px;
    line-height: 28px;
  }
}
