@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho&display=swap');

/*−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−

全体

−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−*/

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  color: #685A59;
  letter-spacing: 2px;
  line-height: 1.8;
  background-color: rgba(252, 251, 247);
}

/* スマホ */
@media screen and (max-width: 520px) {
  body {
    font-size: 1.4rem;
  }
}

/*−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−

ハンバーガーメニュー

−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−*/

/*−−−−−−−−−− 三本線 −−−−−−−−−−*/
.menu {
    height: 20px;
    position: absolute;
    right: 20px;
    top: 40px;
    width: 30px;
    z-index: 99;
}
.menu__line {
    background: #685A59;
    display: block;
    height: 2px;
    position: absolute;
    transition:transform .3s;
    width: 100%;
}
.menu__line--center {
    top: 9px;
}
.menu__line--bottom {
    bottom: 0;
}
.menu__line--top.active {
    top: 8px;
    transform: rotate(45deg);
}
.menu__line--center.active {
    transform:scaleX(0);
}
.menu__line--bottom.active {
    bottom: 10px;
    transform: rotate(135deg);
}

/*−−−−−−−−−− 開メニュー −−−−−−−−−−*/
.gnav {
    background: #191921;
    display: none;
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 98;
}
.gnav__wrap {
    align-items:center;
    display: flex;
    height: 100%;
    justify-content: center;
    position: absolute;
    width: 100%;
}
.gnav__menu__item {
    color: #fff;
    margin: 40px 0;
}
.gnav__menu__item a {
    color: #fff;
    font-size: 2em;
    font-weight: bold;
    padding: 40px;
    text-decoration: none;
    transition: .5s;
}
.gnav__menu__item a:hover {
    color: #b09a75;
}

.gnav__menu__item a:visited {
    color: #fff;
}

 /* 追従 */
.header {
    position: sticky;
    top: 0;
    z-index: 99;
}

/*−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−

画像

−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−*/

img {
/* PCの右クリック禁止 */
    pointer-events: none;
 
/* SPの長押し禁止 */
    -webkit-touch-callout:none;
    -webkit-user-select:none;
    -moz-touch-callout:none;
    -moz-user-select:none;
    user-select:none;
}

main {
  overflow: hidden;
}

/*−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−

サイトタイトル

−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−*/
.start_wrap {
  width: 100%;
  height: 5%;
  background-color: #191921;
  padding: 2%;
}

.site-title_wrap {
  display: flex;
  justify-content: center;
}

.site-title_wrap img {
  width: 40%;
  animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
 
@keyframes fadeup {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.caption_text {
  color: #fff;
  font-size: 1.6rem;
  text-align: center; 
  position: relative;
  top: -8px;
  animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
 
@keyframes fadeup {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* タブレット */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .start_wrap {
    height: 450px;
    padding: 50px 15px;
  } 

  .site-title_wrap img {
    width: 500px;
}

.caption_text {
  top: 3px;
}
}

/* スマホ */
@media screen and (max-width: 520px) {
  .start_wrap {
    height: 400px;
    padding: 80px 15px;
  }

  .site-title_wrap img {
    width: 500px;
}

.caption_text {
  font-size: 1.3rem;
  top: 7px;
}
}

/*−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−

各作品セクション

−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−*/
.contents {
  padding: 5%;
}

.contents_wrap {
  max-width: 1600px;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  padding: 60px 0 0 30px;
  margin: 0 auto;
  opacity: 0; /* 最初は非表示にしておく */
}

.main_img,.main_info {
 width: 50%;
}

.main_info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.main_img img {
  /* 陰影 */
  filter: drop-shadow(5px 5px 5px #aaa);
}

/* タブレット */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .contents_wrap {
    padding: 60px 0 0 0;
  }
}

/* スマホ */
@media screen and (max-width: 520px) {
  .contents {
    padding: 30px;
  }

  .contents_wrap {
    display: block;
    padding: unset;
  }
  
  .main_img,.main_info {
   width: 100%;
  }

  .main_img img {
    margin-top: 20px;
  }
  
  .main_info {
   padding: 30px 10px;
   align-items: flex-start;
  }

  .t_cap {
    font-size: 10px;
  }
}

/*−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−

文字

−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−*/
p {
  letter-spacing: 1px;
  text-align: justify;
  font-size: 12px;
}

a {
  text-decoration: none;
}

a:visited{
  color: inherit;
}

li {
  margin-bottom: 10px;
}

/*−−−−−−−−−− 作品タイトル −−−−−−−−−−*/
.title {
  font-size: 30px;
  margin-bottom: 15px;
}


.t_cap {
  position: relative;
  top: 5px;
}

.lead_text {
 margin: 5px 0 3px;
 text-align: center;
}

.links {
  color: #685A59;
  font-size: 17px;
  margin-top: 20px;
  text-align: center;
}

.links a {
  color: #685A59;
}

.links a:visited {
  color: #685A59;
}

/* タブレット */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .title {
    font-size: 28px;
    margin-bottom: 5px;
  }

  .links {
    font-size: 16px;
    margin-top: 15px;
  }
}

/* スマホ */
@media screen and (max-width: 520px) {
  .title {
    font-size: 25px;
    margin-bottom: 5px;
  }

  .links {
    font-size: 16px;
    margin-top: 15px;
  }

  .lead_text {
    text-align: left;
    margin: 10px 0 8px;
   }
}
 
/*−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−

ボタン

−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−*/

/*−−−−−−−−−− 矢印ボタン −−−−−−−−−−*/
.lineArrow {
  position: relative;
  left: 110%;
  width: 30px;
  height: 12px;
  cursor:pointer;
  position: relative;
  text-decoration: none;
  /*下線矢印をテキストに合わせる*/
  margin: -10px 0 0 -15px;
}

.lineArrow::after {
  content: "";
  display: block;
  position: absolute;
  right: 50%;
  top: calc(50% - 5px);
  width: 420%;
  height: 12px;
  border: none;
  border-right: 1px solid #685A59;
  border-bottom: 1px solid #685A59;
   /*傾きを調節*/
  transform: skew(45deg);
  transition: .3s;
}
.lineArrow:hover::after {
  right: 50%;
  width: 130%;
}

/* PC */
@media screen and (min-width: 1025px), print {
  .url_button {
      margin-top: unset;
}
}

/* スマホ */
@media screen and (max-width: 520px) {
  .lineArrow {
    /*下線矢印をテキストに合わせる*/
    margin: -10px 0 0 -10px;
  }
  
  .lineArrow::after {
    width: 380%;
  }
}

/*−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−

フッター

−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−*/
footer {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 25px 10px 10px;
  background-color: #191921;
}

.privacy_wrap {
 padding-top: 10px;
 color: #ffffffb3;
}

.privacy_wrap a {
 text-decoration: none;
 color: #b09a75;
}

.privacy_title {
  font-size: 15px;
  margin-bottom: 6px;
}

.privacy_info {
 font-size: 13px;
}

.footer_list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 1.5em;
  list-style-type: none;
  margin-top: 20px;
}

.copyright {
  margin: 0;
  color: #ffffffb3;
  font-weight: 200;
  font-size: 10px;
}

.i.la, i.las, i.lar, i.lab {
  font-size: 20px;
  color: #b09a75;
  }

  /* スマホ */
@media screen and (max-width: 520px) {
.privacy_wrap {
    padding: 15px 30px 5px 30px;
  }

.privacy_title {
  font-size: 13px;
}

.privacy_info {
 font-size: 11px;
}

}