@charset "UTF-8";
/*
Theme Name: Angel's Egg
Version: 1.0
Author: EMIKO AMANO
*/
/* Eric Meyer's Reset CSS v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, nav {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-decoration: none;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*-------------------------------*/
/*-------------------------------*/
/*breakpointes-------------------*/
/*-------------------------------*/
/*-------------------------------*/
/*-------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

body {
  font-size: 16px;
  color: #e7e7e7;
  background-color: #000;
  background-size: 100%;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  position: relative;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  line-height: 2em;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

main {
  flex: 1;
}

img, picture {
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: bottom;
  font-size: 0;
  line-height: 0;
}

h2.h2-default {
  font-size: 1.5em;
  margin-bottom: 40px;
  letter-spacing: 0.2em;
}
h2.h2-default .char {
  background: linear-gradient(180deg, #E5C36C 25.81%, #FFF 69.35%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

a.link-default {
  text-transform: uppercase;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 0.5em 0 0;
  line-height: 1;
  position: relative;
  color: #e7e7e7;
}
a.link-default:after {
  content: "";
  position: absolute;
  bottom: 40%;
  left: 0;
  height: 1px;
  background-color: rgba(231, 231, 231, 0.5);
  left: 0;
  height: 1px;
  transition: 0.2s;
  animation-fill-mode: forwards;
  width: 0%;
}
a.link-default:hover::after {
  width: 100%;
}

.section-default {
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  .section-default {
    padding: 80px 0;
  }
}
.section-default .section_inner .section_main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 50px;
}
@media screen and (max-width: 768px) {
  .section-default .section_inner .section_main {
    max-width: 500px;
    padding: 0 30px;
  }
}

/* ローディング画面全体 */
#loading-screen {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black; /* 背景色を黒に */
  z-index: 9999; /* 他のコンテンツよりも前面に表示 */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 2s ease-out; /* 2秒でフェードアウト */
}

.br-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .br-pc {
    display: none;
  }
}

.br-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .br-sp {
    display: block;
  }
}

/* 汎用 fadeInUp クラス */
.fadeInUp {
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
}

.js-fade {
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.noise_overlay {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(img/bg_l.png);
  background-repeat: repeat;
  background-size: 200px;
  animation: noise 2s steps(10) infinite;
  line-height: 0;
  opacity: 0.2;
  overflow: hidden;
}
@keyframes noise {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100px 800px;
  }
}
@media screen and (max-width: 768px) {
  .noise_overlay {
    background-size: 200px;
  }
}

.gnav-list {
  z-index: 102;
  display: flex;
  height: 50px;
  justify-content: flex-end;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0px;
  padding: 0 20px 0 80px;
  transition: 1s;
  width: 100%;
  background-color: #000;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .gnav-list {
    right: 0;
    opacity: 0;
    pointer-events: none;
    height: 100vh;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 20px 30px;
  }
  .gnav-list.active {
    opacity: 1;
    pointer-events: all;
  }
}
.gnav-list li > a {
  color: #FFF;
  letter-spacing: 0.1em;
  padding: 0 0.5em;
  display: flex;
  height: 50px;
  align-items: center;
  justify-content: center;
  position: relative;
  line-height: 1.3;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .gnav-list li > a {
    font-size: 1.2em;
    height: auto;
    line-height: 2.8;
  }
}
.gnav-list li > a:after {
  content: "";
  position: absolute;
  bottom: 40%;
  left: 0;
  height: 1px;
  background-color: rgba(231, 231, 231, 0.5);
  transition: 0.2s;
  animation-fill-mode: forwards;
  width: 0%;
}
.gnav-list li > a:hover::after {
  width: 100%;
}

#lang-sw {
  background-color: rgba(255, 255, 255, 0.32);
  cursor: pointer;
  font-size: 0.9em;
  z-index: 105;
  position: fixed;
  left: 10px;
  top: 12.5px;
  padding: 0.5em 0.75em;
  border-radius: 1em;
  line-height: 1;
  font-family: Meiryo, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
@media screen and (max-width: 768px) {
  #lang-sw {
    top: 17.5px;
  }
}
#lang-sw span.active {
  color: #F3DFAC;
  font-weight: bold;
  pointer-events: none;
}

.nav_bar {
  display: none;
}
@media screen and (max-width: 768px) {
  .nav_bar {
    width: 100%;
    height: 60px;
    background-color: #000;
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
    display: block;
  }
}

.nav_btn {
  z-index: 104;
  height: 60px;
  width: 60px;
  position: fixed;
  top: 0;
  right: 0;
  opacity: 0;
  pointer-events: none;
  background-color: #000;
}
@media screen and (max-width: 768px) {
  .nav_btn {
    opacity: 1;
    pointer-events: all;
  }
}
.nav_btn:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background-image: url(img/icon_egg.svg);
  background-size: 30px 30px;
  background-position: 15px 8px;
  background-repeat: no-repeat;
}
.nav_btn::before {
  content: "Menu";
  position: absolute;
  font-size: 10px;
  text-align: center;
  width: 100%;
  bottom: 0;
  left: 0;
  text-transform: uppercase;
}
.nav_btn.active:after {
  background-image: url(img/icon_egg-c.svg);
}
.nav_btn.active::before {
  content: "Close";
}

.nav_list {
  z-index: 103;
  display: flex;
  height: 50px;
  justify-content: flex-end;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
}
.nav_list li > a {
  color: #FFF;
  letter-spacing: 0.25em;
  padding: 0 1em;
  display: flex;
  height: 50px;
  align-items: center;
  justify-content: center;
}

.nav_top {
  cursor: pointer;
  display: block;
  z-index: 101;
  position: fixed;
  bottom: 0px;
  right: 0px;
  width: 50px;
  height: 50px;
  background-color: #000;
  color: #e7e7e7;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav_top span {
  font-size: 14px;
  transform: scaleY(0.7);
  display: inline-block;
}

footer .footer {
  padding: 80px;
  background-image: url(img/bg_footer.jpg);
  background-size: cover;
}
@media screen and (max-width: 768px) {
  footer .footer {
    padding: 60px 20px;
  }
}
footer .footer .title_footer {
  max-width: 400px;
  margin: 0 auto 3%;
}
@media screen and (max-width: 768px) {
  footer .footer .title_footer {
    margin-bottom: 20px;
    max-width: 300px;
  }
}
footer .footer .title_footer-en {
  max-width: 120px;
  margin: 0 auto 3%;
}
@media screen and (max-width: 768px) {
  footer .footer .title_footer-en {
    margin-bottom: 20px;
  }
}
footer .footer .release_footer {
  max-width: 300px;
  margin: 0 auto 3%;
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  footer .footer .release_footer {
    max-width: 280px;
    margin-bottom: 20px;
  }
}
footer .footer .footer-texts {
  text-align: center;
  display: flex;
  flex-direction: column;
}
footer .footer .footer-texts .copyright {
  font-size: 0.8em;
  margin-top: 1em;
  line-height: 1.2;
}

#top {
  margin: 60px auto 0;
  position: relative;
  width: 100%;
  height: 53vw;
  overflow: hidden;
  background-color: #0A0B10;
}
@media screen and (max-width: 768px) {
  #top {
    height: 204vw;
  }
}
#top .main {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 46.41%;
}
@media screen and (max-width: 768px) {
  #top .main {
    top: 0%;
    left: 0%;
    width: 100%;
  }
}
#top .copy_tate {
  position: absolute;
  top: 13.87%;
  left: 43.8%;
  width: 1.09%;
}
@media screen and (max-width: 768px) {
  #top .copy_tate {
    top: 23.74%;
    left: 93.59%;
    width: 2.56%;
  }
}
#top .title {
  position: absolute;
  top: 5.89%;
  left: 52.08%;
  width: 41.67%;
}
@media screen and (max-width: 768px) {
  #top .title {
    top: 0%;
    left: 0%;
    width: 100%;
  }
}
#top .cannes {
  position: absolute;
  top: 37.34%;
  left: 67.42%;
  width: 11.07%;
}
@media screen and (max-width: 768px) {
  #top .cannes {
    top: 69.22%;
    left: 0%;
    width: 31.27%;
  }
}
#top .credit {
  position: absolute;
  top: 47.69%;
  left: 56.09%;
  width: 33.65%;
}
@media screen and (max-width: 768px) {
  #top .credit {
    top: 69.22%;
    left: 31.54%;
    width: 68.21%;
  }
}
#top .release {
  position: absolute;
  top: 64.72%;
  left: 56.07%;
  width: 33.7%;
}
@media screen and (max-width: 768px) {
  #top .release {
    top: 77.14%;
    left: 0.26%;
    width: 99.49%;
  }
}
#top .billing {
  position: absolute;
  top: 78.92%;
  left: 52.28%;
  width: 41.32%;
}
@media screen and (max-width: 768px) {
  #top .billing {
    top: 86.56%;
    left: 3.59%;
    width: 92.82%;
  }
}

#info {
  padding: 40px;
}
@media screen and (max-width: 768px) {
  #info {
    padding: 20px;
  }
}
#info .bnrs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 0 auto 20px;
}
@media screen and (max-width: 768px) {
  #info .bnrs {
    flex-wrap: wrap;
  }
}
#info .bnrs a {
  display: block;
  max-width: 320px;
  width: 100%;
  transition: 0.4s;
}
#info .bnrs a:hover {
  filter: brightness(120%);
}
#info .mvtk #mvtk-widgets-container {
  margin: 0 auto;
}

#movie {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 60px 0 80px;
  background-color: rgba(255, 255, 255, 0.1);
}
@media screen and (max-width: 768px) {
  #movie {
    padding: 40px 0 60px;
  }
}
@media screen and (max-width: 768px) {
  #movie .section_main {
    padding: 0 20px;
  }
}
#movie h2 {
  text-align: center;
  margin-bottom: 10px;
}
#movie .youtube_outer {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
#movie .youtube_outer .youtube_embed {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
#movie .youtube_outer .youtube_embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.5;
}
#movie .trailer_tab {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 2px;
}
#movie .trailer_tab li {
  font-size: 0.9em;
  width: calc(50% - 1px);
  line-height: 1.4;
  margin-bottom: 2px;
}
@media screen and (max-width: 768px) {
  #movie .trailer_tab li {
    font-size: 0.8em;
    letter-spacing: -0.02em;
    width: 100%;
  }
}
#movie .trailer_tab li:first-of-type {
  width: 100%;
}
#movie .trailer_tab li a {
  text-align: center;
  padding: 0 5px;
  transition: 0.2s;
  height: 50px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(28, 28, 34);
  color: #FFF;
  border: solid 1px #5e5e5e;
}
@media screen and (max-width: 768px) {
  #movie .trailer_tab li a {
    height: 40px;
  }
}
#movie .trailer_tab li a:hover {
  background-color: rgb(50, 51, 54);
}
#movie .trailer_tab li.active a {
  background-color: rgb(89, 89, 99);
}
#movie .trailer_tab li.active a::before {
  content: "";
  padding-right: 0.25em;
}

#intro {
  padding: 120px 0 0;
}
@media screen and (max-width: 768px) {
  #intro {
    padding: 80px 0 0;
  }
}
#intro .section_inner {
  padding: 0;
}
#intro .section_inner .section_main h3 {
  font-size: 1.3em;
  color: #F3DFAC;
  line-height: 156%;
  margin-bottom: 20px;
}
#intro .section_inner .section_main h3 p {
  margin-bottom: 10px;
}
#intro .section_inner .section_main h3 p:last-of-type {
  margin-bottom: 0;
}
#intro .section_inner .section_main h3 span {
  display: inline-block;
}
#intro .section_inner .section_main .text_body {
  z-index: 2;
  position: relative;
}
#intro .section_inner .section_main .text_body p {
  margin-bottom: 1em;
  text-align: justify;
}
#intro .section_inner .section_main .text_body p:last-of-type {
  margin-bottom: 0;
}
#intro .section_inner .img_intro {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1000px;
  margin: -3em auto 0;
  padding: 0 50px;
}
@media screen and (max-width: 768px) {
  #intro .section_inner .img_intro {
    padding: 0;
  }
  #intro .section_inner .img_intro img {
    width: 100%;
    height: 80vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

#story {
  text-align: center;
}
#story .section_inner .section_main h3 {
  font-size: 1.3em;
  color: #F3DFAC;
  margin-bottom: 20px;
}
#story .section_inner .section_main h3 p {
  line-height: 2;
  margin-bottom: 10px;
}
#story .section_inner .section_main h3 p:last-of-type {
  margin-bottom: 0;
}
#story .section_inner .section_main h3 span {
  display: inline-block;
}
#story .section_inner .section_main p {
  margin-bottom: 1.5em;
  line-height: 260%;
}
#story .section_inner .section_main p:last-of-type {
  margin-bottom: 0;
}
#story .section_inner .section_main p span {
  display: inline-block;
}

#staffcast {
  position: relative;
}
#staffcast .section_bg {
  z-index: -1;
  background-image: url(img/photo02.jpg);
  background-position: top left;
  background-repeat: no-repeat;
  height: 100vh;
  height: 100lvh;
  position: sticky;
  top: 0;
  left: 0;
  width: 80%;
  transition: background-size 10s ease;
  background-size: 85%;
}
@media screen and (max-width: 768px) {
  #staffcast .section_bg {
    background-position: top left;
    background-size: 185%;
  }
}
#staffcast .section_bg.inview {
  background-size: 80%;
}
@media screen and (max-width: 768px) {
  #staffcast .section_bg.inview {
    background-size: 180%;
  }
}
#staffcast .section_inner {
  margin-top: -80vh;
  margin-top: -80lvh;
  padding: 120px 50px;
}
@media screen and (max-width: 768px) {
  #staffcast .section_inner {
    padding: 80px 20px;
  }
}
#staffcast .section_inner .section_main {
  width: 55%;
  min-width: 600px;
  margin: 0 5% 0 auto;
}
@media screen and (max-width: 768px) {
  #staffcast .section_inner .section_main {
    min-width: unset;
    width: 100%;
  }
}
#staffcast .section_inner .section_main h3 {
  font-size: 1.125em;
  display: inline-block;
  background-color: #222;
  background: linear-gradient(180deg, #4D3100 0%, #583F00 100%);
  line-height: 1;
  margin-top: 40px;
  margin-bottom: 10px;
}
#staffcast .section_inner .section_main h3:first-of-type {
  margin-top: 0;
}
#staffcast .section_inner .section_main .names {
  line-height: 2;
  font-size: 1.125em;
  margin-bottom: 10px;
  display: flex;
  gap: 0 2em;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  #staffcast .section_inner .section_main .names {
    font-size: 1em;
  }
}
#staffcast .section_inner .section_main .names li {
  display: flex;
  flex-wrap: wrap;
}
#staffcast .section_inner .section_main .names li .role {
  color: #F3DFAC;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  #staffcast .section_inner .section_main .names li .role {
    white-space: wrap;
  }
}
#staffcast .section_inner .section_main .names li.no-rt {
  width: 100%;
}
#staffcast .section_inner .section_main .names.names-b {
  font-size: 1.5em;
  margin-bottom: 0.25em;
}
@media screen and (max-width: 768px) {
  #staffcast .section_inner .section_main .names.names-b {
    font-size: 1.25em;
  }
}

.staffcast-en .role {
  padding-right: 0.5em;
}

#news-top {
  background-color: #15202B;
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  #news-top {
    padding: 40px 0;
  }
}
#news-top .section_inner {
  max-width: 1600px;
  padding: 0 50px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #news-top .section_inner {
    padding: 0 0 0 30px;
  }
}
@media screen and (max-width: 768px) {
  .x-posts_outer {
    overflow: auto;
  }
}

.x-posts {
  display: flex;
  gap: 2%;
}
@media screen and (max-width: 768px) {
  .x-posts {
    width: calc(1200px + 6%);
  }
}
.x-posts .post-item {
  width: 23%;
}
@media screen and (max-width: 768px) {
  .x-posts .post-item {
    width: 300px;
  }
}
.x-posts .post-item .title {
  line-height: 1.2;
}
.x-posts .post-item .title::before {
  line-height: 1;
  content: "";
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
  background-image: url(img/icon_egg-c.svg);
  display: inline-block;
  margin-bottom: -3px;
}
.links {
  text-align: right;
  margin-right: 2%;
}

#x-archive {
  margin-top: 50px;
  background-color: #15202B;
  padding: 80px 50px;
}
@media screen and (max-width: 768px) {
  #x-archive {
    margin-top: 60px;
    padding: 40px 20px;
  }
}
#x-archive .post-archives {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
#x-archive .post-item {
  width: 300px;
}
@media screen and (max-width: 768px) {
  #x-archive .post-item {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}
#x-archive .post-item .title {
  line-height: 1.2;
}
#x-archive .post-item .title::before {
  line-height: 1;
  content: "";
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
  background-image: url(img/icon_egg-c.svg);
  display: inline-block;
  margin-bottom: -3px;
}
#interview {
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  #interview {
    padding: 40px 0;
  }
}
#interview h3 {
  color: #F3DFAC;
  margin-bottom: 1em;
  font-size: 1.3em;
}
#interview h3 p {
  line-height: 1.4;
}
#interview h3 p span {
  display: inline-block;
}
#interview h3 p.sub {
  font-size: 0.7em;
  margin-top: 0.25em;
}
#interview .block {
  margin-bottom: 2em;
}
#interview .qu {
  color: #c0c0c0;
  opacity: 0.8;
  margin-bottom: 0.5em;
  padding-right: 1em;
}
@media screen and (max-width: 768px) {
  #interview .qu {
    padding-right: 0;
  }
}
#interview .qu p {
  text-align: justify;
  margin-bottom: 0.25em;
}
#interview .qu p:last-of-type {
  margin-bottom: 0;
}
#interview .an {
  padding-left: 1em;
}
@media screen and (max-width: 768px) {
  #interview .an {
    padding-left: 0;
  }
}
#interview .an p {
  text-align: justify;
  margin-bottom: 0.25em;
}
#interview .an p:last-of-type {
  margin-bottom: 0;
}
#interview span.ita {
  font-style: italic;
}

#column {
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  #column {
    padding: 40px 0;
  }
}
#column h3 {
  color: #F3DFAC;
  margin-bottom: 1em;
  font-size: 1.3em;
}
#column h3 p {
  line-height: 1.4;
}
#column h3 p span {
  display: inline-block;
}
#column h3 p.sub {
  font-size: 0.7em;
}
#column p {
  text-align: justify;
  margin-bottom: 0.5em;
}
#column p:last-of-type {
  margin-bottom: 0;
}
#column p span.ita {
  font-style: italic;
}
#column p.sankou {
  font-size: 0.8em;
  margin-top: 3em;
  opacity: 0.8;
  padding-left: 2em;
  margin-left: 1em;
  border-left: solid 1px #bebebe;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  #column p.sankou {
    margin-left: 0;
    padding-left: 1em;
  }
}
#column .imgs {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 30px auto 0px;
}
#column .imgs div {
  width: calc(50% - 10px);
  height: auto;
}
@media screen and (max-width: 768px) {
  #column .imgs div {
    width: 100%;
  }
  #column .imgs div:last-of-type {
    margin-top: 20px;
  }
}
#column .img_copy {
  font-size: 0.7em;
  margin-bottom: 25px;
  opacity: 0.5;
  text-align: center;
  line-height: 1.2;
  margin-top: 1em;
}

#goods .section_inner .section_main h2 {
  text-align: center;
}
#goods .section_inner .section_main hr.b-h2 {
  width: 40px;
  margin: 0 auto 40px;
  background-color: #696969;
  height: 1px;
  text-align: center;
  border: 0;
}
#goods .section_inner .section_main hr.b-h3 {
  width: 30px;
  margin: 40px auto 40px;
  background-color: #696969;
  height: 1px;
  text-align: center;
  border: 0;
}
#goods .section_inner .section_main .goods-item .thumb {
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
}
#goods .section_inner .section_main .goods-item .thumb img {
  max-width: 600px;
  max-height: 600px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
  width: 100%;
  height: 100%;
}
#goods .section_inner .section_main .goods-item span {
  color: #F3DFAC;
}
#goods .section_inner .section_main .goods-item .goods-name {
  text-align: center;
  font-size: 1.4em;
  margin-top: 40px;
}
#goods .section_inner .section_main .goods-item .desc {
  padding: 20px 0;
  border-bottom: solid 1px #646464;
  border-top: solid 1px #646464;
  margin: 1em 0;
}
#goods .section_inner .section_main .goods-item .desc p {
  margin-bottom: 0.25em;
}
#goods .section_inner .section_main .goods-item .desc p:last-of-type {
  margin-bottom: 0;
}
#goods .section_inner .section_main .goods-item .link {
  margin-top: 0.5em;
}
#goods .section_inner .section_main .goods-item .link a {
  word-break: break-all;
  color: #F3DFAC;
  text-decoration: underline;
  transition: 0.2s;
}
#goods .section_inner .section_main .goods-item .link a:hover {
  text-decoration: none;
}
#goods .section_inner .section_main .goods-item .copyright {
  font-size: 0.8em;
  margin-top: 1em;
  opacity: 0.7;
}
#goods .section_inner .post-nav {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  margin-top: 40px;
}
#goods .section_inner .post-nav div {
  width: 100px;
}
#goods .section_inner .post-nav div a {
  display: block;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b6aa81;
  transition: 0.2s;
}
#goods .section_inner .post-nav div a:hover {
  opacity: 0.6;
}
#goods .section_inner .post-nav .prev {
  -moz-text-align-last: left;
       text-align-last: left;
}
#goods .section_inner .post-nav .back {
  text-align: center;
}
#goods .section_inner .post-nav .next {
  -moz-text-align-last: right;
       text-align-last: right;
}

#goods-archive .section_inner .section_main, #top-goods .section_inner .section_main {
  max-width: 1500px;
}
#goods-archive .section_inner .section_main h2, #top-goods .section_inner .section_main h2 {
  text-align: center;
}
#goods-archive .section_inner .section_main hr.b-h2, #top-goods .section_inner .section_main hr.b-h2 {
  width: 40px;
  margin: 0 auto 40px;
  background-color: #696969;
  height: 1px;
  text-align: center;
  border: 0;
}
#goods-archive .section_inner .section_main .goods_list, #top-goods .section_inner .section_main .goods_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 60px 30px;
}
@media screen and (max-width: 768px) {
  #goods-archive .section_inner .section_main .goods_list, #top-goods .section_inner .section_main .goods_list {
    grid-template-columns: 1fr 1fr;
    gap: 40px 20px;
  }
}
#goods-archive .section_inner .section_main .goods_list .thumb, #top-goods .section_inner .section_main .goods_list .thumb {
  background-color: #2e2e2e;
  aspect-ratio: 1/1;
  width: 100%;
  padding: 10px;
  overflow: hidden;
  transition: 0.4s;
}
#goods-archive .section_inner .section_main .goods_list .thumb img, #top-goods .section_inner .section_main .goods_list .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
  transition: 0.4s;
}
#goods-archive .section_inner .section_main .goods_list .title, #top-goods .section_inner .section_main .goods_list .title {
  transition: 0.4s;
  line-height: 1.4;
  min-height: 4em;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  color: #FFF;
  background: rgba(255, 255, 255, 0.3);
  text-align: center;
  word-break: auto-phrase;
  font-size: 0.9em;
}
@media screen and (max-width: 768px) {
  #goods-archive .section_inner .section_main .goods_list .title, #top-goods .section_inner .section_main .goods_list .title {
    font-size: 0.9em;
  }
}
#goods-archive .section_inner .section_main .goods_list a:hover .thumb, #top-goods .section_inner .section_main .goods_list a:hover .thumb {
  background-color: #505050;
}
#goods-archive .section_inner .section_main .goods_list a:hover .thumb img, #top-goods .section_inner .section_main .goods_list a:hover .thumb img {
  transform: scale(1.05);
}
#goods-archive .section_inner .section_main .goods_list a:hover .title, #top-goods .section_inner .section_main .goods_list a:hover .title {
  opacity: 0.7;
}
#goods-archive .navigation.pagination, #top-goods .navigation.pagination {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
#goods-archive .navigation.pagination .nav-links, #top-goods .navigation.pagination .nav-links {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
#goods-archive .navigation.pagination .page-numbers, #top-goods .navigation.pagination .page-numbers {
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b6aa81;
  transition: 0.2s;
  background-color: #3b3b3b;
  border-radius: 50%;
}
#goods-archive .navigation.pagination .page-numbers:hover, #top-goods .navigation.pagination .page-numbers:hover {
  background-color: #313131;
}
#goods-archive .navigation.pagination .page-numbers.current, #top-goods .navigation.pagination .page-numbers.current {
  background: #111;
  color: #fff;
  border-color: #111;
  pointer-events: none;
}
#goods-archive .navigation.pagination .page-numbers.prev, #goods-archive .navigation.pagination .page-numbers.next, #top-goods .navigation.pagination .page-numbers.prev, #top-goods .navigation.pagination .page-numbers.next {
  display: none;
}

#top-goods {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  #top-goods {
    padding: 40px 0;
  }
}
#top-goods .link-default {
  text-align: right;
  margin: 0 0 0 auto;
  margin-top: 20px;
  display: block;
}

#topics .section_inner h2 {
  text-align: center;
}
#topics .section_inner hr.b-h2 {
  width: 40px;
  margin: 0 auto 40px;
  background-color: #696969;
  height: 1px;
  text-align: center;
  border: 0;
}
#topics .section_inner .section_main .date {
  letter-spacing: 0.1em;
  opacity: 0.7;
  display: inline-block;
  border-bottom: solid 1px #696969;
  padding-bottom: 0.5em;
  margin-bottom: 20px;
}
#topics .section_inner .section_main h3.topics-title {
  font-size: 1.6em;
  margin-bottom: 1em;
}
#topics .post-nav {
  display: flex;
  justify-content: space-between;
  border-top: solid 1px #696969;
  padding-top: 10px;
  margin-top: 40px;
}
#topics .post-nav div {
  width: 100px;
}
#topics .post-nav div a {
  display: block;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b6aa81;
  transition: 0.2s;
}
#topics .post-nav div a:hover {
  opacity: 0.6;
}
#topics .post-nav .prev {
  -moz-text-align-last: left;
       text-align-last: left;
}
#topics .post-nav .back {
  text-align: center;
}
#topics .post-nav .next {
  -moz-text-align-last: right;
       text-align-last: right;
}

#topics-archive h2, #top-topics h2 {
  text-align: center;
}
#topics-archive hr.b-h2, #top-topics hr.b-h2 {
  width: 40px;
  margin: 0 auto 40px;
  background-color: #696969;
  height: 1px;
  text-align: center;
  border: 0;
}
#topics-archive .section_inner .section_main .topics_list li, #top-topics .section_inner .section_main .topics_list li {
  display: flex;
  padding: 10px 0;
  border-bottom: solid 1px #696969;
}
@media screen and (max-width: 768px) {
  #topics-archive .section_inner .section_main .topics_list li, #top-topics .section_inner .section_main .topics_list li {
    display: block;
  }
}
#topics-archive .section_inner .section_main .topics_list li p.date, #top-topics .section_inner .section_main .topics_list li p.date {
  width: 160px;
}
#topics-archive .section_inner .section_main .topics_list li a, #top-topics .section_inner .section_main .topics_list li a {
  color: #F3DFAC;
  transition: 0.2s;
  display: flex;
  flex: 1;
}
#topics-archive .section_inner .section_main .topics_list li a:hover, #top-topics .section_inner .section_main .topics_list li a:hover {
  opacity: 0.8;
}
#topics-archive .section_inner .section_main .topics_list li a .post-title, #top-topics .section_inner .section_main .topics_list li a .post-title {
  flex: 1;
}
#topics-archive .section_inner .section_main .topics_list li a .arrow, #top-topics .section_inner .section_main .topics_list li a .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  text-align: center;
  font-size: 0.7em;
  transform: scaleX(0.6);
}
#topics-archive .navigation.pagination, #top-topics .navigation.pagination {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
#topics-archive .navigation.pagination .nav-links, #top-topics .navigation.pagination .nav-links {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
#topics-archive .navigation.pagination .page-numbers, #top-topics .navigation.pagination .page-numbers {
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b6aa81;
  transition: 0.2s;
  background-color: #3b3b3b;
  border-radius: 50%;
}
#topics-archive .navigation.pagination .page-numbers:hover, #top-topics .navigation.pagination .page-numbers:hover {
  background-color: #313131;
}
#topics-archive .navigation.pagination .page-numbers.current, #top-topics .navigation.pagination .page-numbers.current {
  background: #111;
  color: #fff;
  border-color: #111;
  pointer-events: none;
}
#topics-archive .navigation.pagination .page-numbers.prev, #topics-archive .navigation.pagination .page-numbers.next, #top-topics .navigation.pagination .page-numbers.prev, #top-topics .navigation.pagination .page-numbers.next {
  display: none;
}

#top-topics {
  padding: 0px 0 40px;
}
@media screen and (max-width: 768px) {
  #top-topics {
    padding: 10px 0 40px;
  }
}
#top-topics .section_inner {
  padding: 0 50px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #top-topics .section_inner {
    padding: 0 20px;
  }
}
#top-topics .section_inner h2 {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #top-topics .section_inner h2 {
    margin-bottom: 10px;
  }
}
#top-topics .section_inner .link-default {
  text-align: right;
  margin: 0 0 0 auto;
  margin-top: 20px;
  display: block;
}
#top-topics .section_inner .section_main {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px 50px;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  #top-topics .section_inner .section_main {
    padding: 20px;
  }
}

.entry .wp-block-embed.alignwide,
.entry .wp-block-embed.alignfull {
  width: 100%;
  max-width: 100%;
}
.entry .wp-block-embed.alignfull iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.entry a {
  word-break: break-all;
  color: #F3DFAC;
  text-decoration: underline;
  transition: 0.2s;
}
.entry a:hover {
  text-decoration: none;
}
.entry p {
  margin: 1em 0;
}/*# sourceMappingURL=style.css.map */