@charset "utf-8";
/* CSS Document */
.information .side_block {
  border-right: 1px solid #E8E8E8;
}

@media screen and (max-width: 1050px) {
    .information .side_block {
    border-right: none;
  }
}

.information .main_block {
  padding: 180px 30px 300px;
}

@media screen and (max-width: 767px) {
    .information .main_block {
    padding: 140px 0px 200px;
  }
}

.information .main_block .info_container {
  background-image: image-set(url("../images/information/pc_info_bg.png") 1x,url("../images/information/pc_info_bg@2x.png") 2x);
  background-image: -webkit-image-set(url("../images/information/pc_info_bg.png") 1x,url("../images/information/pc_info_bg@2x.png") 2x);
  background-size: cover;
  background-repeat: no-repeat;
}

/*pager*/
.info_pager {
  margin: 120px auto 0;
}

.info_pager {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.info_pager li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.info_pager .passive {
  transition: .3s;
}

.info_pager .passive a {
  color: #7C7979;
  transition: .3s;
}

@media (hover: hover) and (pointer: fine) {
  .info_pager .passive:hover {
   background: #8B8B8B;
  }
  
  .info_pager .passive:hover a{
   color: #fff;
  }
}

.info_pager .current {
  border: 1px solid #8B8B8B;
}

/*info detail*/
/*----------------------------------------------------------*/
@media screen and (max-width: 1050px) {
    .info_single .main_block {
    padding: 240px 40px 200px;
  }
}

@media screen and (max-width: 767px) {
    .info_single .main_block {
    padding: 180px 20px 200px;
  }
}

.info_single_page {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 200px 20px 300px;
}

@media screen and (max-width: 1050px) {
  .info_single_page {
    width: 100%;
  }
}

.info_single_page_title {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 300;
  font-style: normal;
  display: flex;
  flex-direction: column;
  background: transparent;
  margin-bottom: 100px;
}

@media screen and (max-width: 1050px) {
  .info_single_page_title {
    align-items: flex-start;
    margin-bottom: 40px;
  }
}

.info_title_en {
  font-size: 14px;
  color: #828080;
  padding-left: 80px;
  margin-bottom: -35px;
}

@media screen and (max-width: 1050px) {
  .info_title_en {
    padding: 0 120px;
  }
}

@media screen and (max-width: 767px) {
  .info_title_en {
    font-size: 12px;
    padding: 0 85px;
    margin-bottom: -20px;
  }
}

@media screen and (max-width: 767px) {
  .info_title_en {
    font-size: 11px;
    padding: 0 80px;
    margin-bottom: -20px;
  }
}

.info_title_jp {
  font-size: 40px;
  color: #5C5C5C;
  padding: 25px 80px; 
  position: relative;
}

@media screen and (max-width: 767px) {
    .info_title_jp {
    font-size: 30px;
    padding: 15px 60px; 
  }
}

@media screen and (max-width: 592px) {
    .info_title_jp {
    font-size: 28px;
    padding: 15px 60px; 
  }
}


.info_title_jp::before {
  content: '';
  display:block;
  width: 100%;
  height: 250px;
  background-image: image-set(url("../images/information/pc_info_title_bg.png") 1x,url("../images/information/pc_info_title_bg@2x.png") 2x);
  background-image: -webkit-image-set(url("../images/information/pc_info_title_bg.png") 1x,url("../images/information/pc_info_title_bg@2x.png") 2x);
  background-repeat: no-repeat;
  position: absolute;
  top: -15px;
  left: 0;
  z-index: -1;
}

@media screen and (max-width: 767px) {
    .info_title_jp::before {
    height: 100px;
    top: -20px;
  }
}

@media screen and (max-width: 592px) {
    .info_title_jp::before {
    height: 80px;
    top: -18px;
  }
}

.info_single_box {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 900px) {
  .info_single_box {
    flex-direction: column;
    gap: 80px;
  }
}

.info_main {
 width: 75%;
 max-width: 700px;
}

@media screen and (max-width: 900px) {
  .info_main {
    width: 100%;
    padding: 0;
  }
}

.info_article_title {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 15px;
  align-items: center;
  border-bottom: 1px dotted #333;
  padding-bottom: 10px;
}

.info_article_title h2 {
  width: 100%;
  font-size: 28px;
  font-weight: 300;
}

@media screen and (max-width: 767px) {
  .info_article_title h2 {
    font-size: 22px;
  }
}

@media screen and (max-width: 592px) {
  .info_article_title h2 {
    font-size: 20px;
  }
}

.info_main p {
  letter-spacing: 0.008em;
  line-height: 1.7;
  padding-top: 15px;
}

.info_sub {
  width: 20%;
}

@media screen and (max-width: 900px) {
  .info_sub {
    width: 100%;
  }
}

.info_side_title {
  background: #675F5F;
  color: #fff;
  text-align: center;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 15px;
}

@media screen and (max-width: 900px) {
  .info_side_title {
    text-align: left;
  }
}

.info_side_cont {
  padding: 0 10px;
}

.info_sub a {
  color: inherit;
  transition: .3s;
}

@media (hover: hover) and (pointer: fine) {
  .info_sub a:hover {
    opacity: .5;
  }
}

/*category page*/
.category .info_article_title h2 {
  font-size: 20px;
}

@media screen and (max-width: 767px) {
  .category .info_article_title h2 {
    font-size: 16px;
  }
}

.category .info_main article:first-child {
  margin-bottom: 20px;
}

.category .info_main a {
  color: inherit;
  transition: .3s;
}

@media (hover: hover) and (pointer: fine) {
  .category .info_main a:hover {
    opacity: .5;
  }
}














