@charset "utf-8";


body {
  background-color: #e9e7df;
}


body,h1,h2,h3,h4,h5,h6,p,ul,li,dl,dt,dd,figure {
  margin:0;
  padding:0;
  list-style: none;
  font-family:"PT Serif", "Zen Old Mincho", -apple-system, BlinkMacSystemFont, serif;
  letter-spacing: 0.1em;
  color: #6a3906;
  line-height:1.8em;
  font-weight: 400;
  font-style: normal;
}

a {
  text-decoration: none;
}
img {
  vertical-align: bottom;
  pointer-events: none;
}
.flex {
  display:flex;
  flex-wrap: wrap;
}
.text-align-center{
  text-align: center;
}
.br_sp{
  display: block;
}
@media screen and (min-width:1000px) {
  .br_sp{
    display: none;
  } 
}


/* Loading */

#loader {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #e9e7df;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

#loader.hide {
  opacity: 0;
  visibility: hidden;
}
.loading_animation {
  width:60vw;
  margin: auto;
  text-align: center;
}
@media screen and (min-width:768px) {
  .loading_animation {
    width:30vw;
  }
}

/* 共通 */

.contents_width {
  width:1060px;
  margin:auto;
}
.ttl_h2 {
  font-size: 26px;
  margin-bottom: 18px;
  font-weight:700;
}
@media screen and (max-width:1060px){
  .contents_width {
    width:90%;
  }
}
@media screen and (max-width:768px){
  .contents_width {
    width: calc(100% - 24px);
  }
  .ttl_h2 {
    text-align:center;
  } 
}

/* 表示アニメーション */
.show {
  opacity : 0;
  transform : translate(0, 20px);
  transition : all 1s ease;
}
.showUp{
  opacity : 1;
  transform : translate(0, 0);
}

/* ----- HEADER ----- */

.header__wrap {
  position: fixed;
  width: 100%;
  height: 108px;
  background: rgba(233, 231, 223, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px); /* Safari */
  z-index: 20;
  box-shadow: 0 1px 10px rgba(93, 51, 0, 0.03);
}
.header_logo {
  display: block;
  width: 170px;
  height: auto;
  margin: auto;
  padding-right: 15px;
}

.pc_links {
  display: none;
}
.icon_links {
  margin:0 8px;
  transition: opacity 0.3s ease-in-out;
}
.icon_links:hover {
  opacity: .5;
}
.icon_links a {
  display: inline-block;
  width:40px;
  height:40px;
}
.icon_links a img {
  width:100%;
  height:100%;
  object-fit: contain;
}

.pc_menu {
  display:none;
}

.sp_icon_shop {
  position:fixed;
  top: 9px;
  right:9px;
  z-index: 20;
}
.sp_icon_shop a {
  display: inline-block;
  width:34px;
  height:34px;
}
.sp_icon_shop a img {
  width:100%;
  height:100%;
  object-fit: contain;
}


@media screen and (min-width:768px){
  .header_logo {
    width: 270px;
    margin: 16px auto 0;
    height: 52px;
  }
  .pc_links {
    display: flex;
    position:absolute;
    top:33px;
    right:10px;
  }
  .sp_icon_shop {
    display:none;
  }
  .pc_menu {
    display:block;
  }
}

.header_logo img{
  width:100%;
  height: auto;
  margin-bottom: 18px;
}

.pc_menu_link {
  display: flex;
  justify-content: center;
  align-items: center; 
}
.pc_menu_link li {
  margin: 0 1.2em 12px;
}
.pc_menu_link li a {
  color: #6a3906;
  font-size: 14px;
  font-weight:700;
  transition: all 0.3s ease;
}
.pc_menu_link li a:hover {
  color:#b49c82;
}

.hamburger{
  display: block;
  position:fixed;
  top:0;
  left:0;
  z-index: 100;
}
.header__menuIcon {
  position: absolute;
  top: 25px;
  right: 0;
  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  width: 37px;
  height: 30px;
  z-index: 1000;
  cursor: pointer;
}
@media screen and (min-width:768px) {
  .hamburger{
    display:none;
  }
  .header__menuIcon{
    top: 37px;
  }
}
.header__menuIcon span {
  display: block;
  position: absolute;
  left: 10px;
  background: #6a3906;
  width: 20px;
  height: 2px;
  border-radius: 9999px;
  transition: all 0.5s ease;
}

.header__menuIcon.open span {
  background: #6a3906;
}
.header__menuIcon span:nth-of-type(1) {
  top: 7px;
}
.header__menuIcon span:nth-of-type(2) {
  top: 15px;
}
.header__menuIcon span:nth-of-type(3) {
  top: 23px;
}
.header__menuIcon.open span:nth-of-type(1) {
  top: 18px;
  transform: rotate(45deg);
}
.header__menuIcon.open span:nth-of-type(2) { opacity: 0; }
.header__menuIcon.open span:nth-of-type(3) {
  top: 18px;
  transform: rotate(-45deg);
}

.header__menuBox {
  position: fixed;
  top: 0;
  left: 0;
  width: 30%;
  min-width: 600px;
  height: 100%;
  min-height: 100vh;
  padding: 0 5vw;
  color: #FFFFFF;
  background-color: #b49c82;
  transition: .3s;
  pointer-events: none;
  box-shadow: -1px 4px 20px rgba(0, 0, 0, 0.2); 

  /* スライドイン */
  -webkit-transform: translateX(-110%);
  -ms-transform: translateX(-110%);
  transform: translateX(-110%);
  -webkit-transform: translateX(-110%) translateZ(0);
  -webkit-transition: -webkit-transform 500ms 0s ease;
  transition: -webkit-transform 500ms 0s ease;
  transition: transform 500ms 0s ease;
  transition: transform 500ms 0s ease,
  -webkit-transform 500ms 0s ease;
  -webkit-overflow-scrolling: touch;
  z-index: 2;
}
.header__menuBox.open {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
  overflow-x: hidden;
  pointer-events: auto;
}
.header__menuBoxWrap {
  margin-top: 50px;
}
.header__menuLink li {
  margin-bottom: 40px;
}
.header__menuLink li span {
  color:#6a3906;
}
.header__menuLink .text-en{
  font-size: clamp(16px, 1.3vw, 24px);
  display: block;
  margin-bottom: -10px;
  font-weight:700;
}
.header__menuLink .text-ja{
  font-size: clamp(11px, 0.9vw, 14px);
}

@media (max-width: 768px) {
  .header__wrap {
    height: 50px;
  }
  .header__logo {
    width: 116px;
  }
  .header__menuIcon {
    left: 24px;
  }

  .header__menuBox {
    position: fixed;
    top: 0;
    right: 0;
    min-width: 70%;
    width:70%;
    height: auto;
    padding: 0;
  }
  .header__menuBoxWrap {
    margin-top: 60px;
    padding-bottom: 40px;
  }
  .header__menuLink {
    width: 75%;
    margin: auto;
  }
  .header__menuLink li {
    margin-bottom: 20px;
  }
}

.sp_links {
  width: 75%;
  margin: 50px auto;
  display: flex;
}
.sp_links .icon_links {
  margin: 0 12px 0 0;
}
.sp_links .icon_links a{
  width: 35px;
  height: 35px;
}

/* ----- MAIN ----- */
main{
  overflow: hidden;
}

.readmore a {
  display:inline-block;
  color: #6a3906;
  font-size: 16px;
  border:solid 1px #6a3906;
  padding: .2em 1em .3em;
  transition: ease .3s;
  opacity:1;
}
.readmore a::after {
  content:"";
  display: inline-block;
  width: 4.2em;
  height: 0.7em;
  background-image: url(../images/arw.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-left: 10px;
}
.readmore a:hover {
  opacity: .5;
}

/* 背景固定 */
.bg_attachment_inner {
  clip-path: inset(0);
}
.bg_attachment {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: fixed;
  top: 0;
  right: 0;
  z-index: -1;
  display: block;
  width: 100vw;
  height: calc(var(--vh, 1vh) * 100);
  height: 100dvh;
}


/* TOPICS */

.wrap_list_topics {
  flex-wrap: wrap;
  justify-content:center;
  align-items: center;
  gap: 40px;
}
.list_topics {
  gap: 2%;
  width: 100%;
}
.item_topics {
  width:32%;
  text-align: justify;
  letter-spacing: 0.04em;
  margin:auto;
}
.item_topics figure {
  width:100%;
  height:220px;
  margin: 0 0 0.3em 0;
  border-radius: 3px;
  overflow: hidden;
}
.item_topics figure img {
  width:100%;
  height:100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.date_topics {
  font-size: 10px;
}
.ttl_topics {
  font-size:13px;
  margin-bottom: 0.5em;
  letter-spacing: 0.04em;
  overflow: hidden;
  line-height: 1.5em;
}

@media screen and (min-width:768px){

  .item_topics {
    margin:0;
  }
  .item_topics a:hover figure img {
   transform: scale(1.05);
  }
}


/* ----- FOOTER ----- */

footer .bg_attachment{
  background-image: url(../images/bg_04.webp);
}
.logo_area {
  padding: 60px 0 0;
}
.ft_logo {
  width:50vw;
  height:auto;
  margin: 100px auto 20px;
}
.ft_logo img {
  width:100%;
  height:auto;
  object-fit: cover;
}
.fotter_links {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px auto 70px;
}
.copyright {
  text-align: center;
  padding: 0 0 30px;
  font-size: 11px;
}

@media (min-width: 768px){
  .ft_logo {
    width:230px;
  }
  footer .pc_menu {
    display:block;
  }
  .copyright {
    font-size: 14px;
  }
}

/* 404 page */

.error404 .sec_ttl {
  margin-top: 100px;
  text-align: center;
}