@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho&display=swap");
/* -------------------------------- */
/* responsive set                   */
/* -------------------------------- */
/* -------------------------------- */
/* common
/* -------------------------------- */
body,
html,
h1,
h2,
h3,
h4,
h5,
ol,
ul,
li,
p,
figure,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
}

section {
  scroll-margin-top: 100px; /* header高さ */
}

body {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.7;
  color: rgb(0, 0, 0);
}

ul {
  list-style: none;
}

img {
  display: block;
}

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

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

@media (hover: none) {
  a:hover {
    opacity: 1;
  }
}
/* --------------------------------
header
-------------------------------- */
header {
  background: rgb(242, 237, 230);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  display: flex;
  justify-content: space-between;
}
header h1 {
  height: 35px;
  font-weight: 400;
  padding: 20px 0 20px 30px;
}
@media screen and (max-width: 440px) {
  header h1 {
    height: 27px;
    padding: 20px 0 20px 20px;
  }
}
header h1 img {
  height: 100%;
  width: auto;
}
header h2 {
  font-weight: 400;
}
header h2 a {
  background: rgb(0, 0, 0);
  width: 150px;
  text-align: center;
  margin-right: 90px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  box-sizing: border-box;
  font-size: 1rem;
  text-decoration: none;
  transition: 0.4s;
}
@media screen and (max-width: 440px) {
  header h2 a {
    font-size: 0.75rem;
    width: 65px;
    margin-right: 70px;
  }
}
header h2 a span {
  position: relative;
}
header h2 a span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: #fff;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
header h2 a:hover {
  background: #404040;
}
header h2 a:hover span::after {
  transform: scale(1, 1);
}

/* global navigation */
.visuallyHidden {
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.hamburger {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  position: fixed;
  right: 30px;
  top: 20px;
  width: 30px;
  height: 32px;
  z-index: 920;
  transition: 0.4s;
}
@media screen and (max-width: 440px) {
  .hamburger {
    right: 20px;
  }
}
.hamburger-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 2px;
  background: rgb(0, 0, 0);
  transition: inherit;
}
.hamburger-line::before, .hamburger-line::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  transition: inherit;
}
.hamburger-line::before {
  top: 15px;
}
.hamburger-line::after {
  top: 30px;
}
.hamburger {
  /* open時 */
}
.hamburger[aria-expanded=true] .hamburger-line {
  transform: translateY(15px) rotate(-45deg);
}
.hamburger[aria-expanded=true] .hamburger-line::before {
  width: 0;
}
.hamburger[aria-expanded=true] .hamburger-line::after {
  transform: translateY(-20px) rotate(90deg);
  top: 20px;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgb(242, 237, 230);
  opacity: 0;
  visibility: hidden;
  transition: 0.6s;
  z-index: 900;
}
.overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  position: fixed;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  z-index: 910;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
  min-width: 900px;
}
@media screen and (max-width: 440px) {
  .modal-container {
    min-width: initial;
    top: 0%;
    left: 0%;
    transform: translate(0%, 0%);
    -webkit-transform: translate(0%, 0%);
    -ms-transform: translate(0%, 0%);
    width: 100%;
  }
}
.modal-container.active {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 440px) {
  .modal-container .menu-list {
    display: none;
  }
}
.modal-container .menu-list > li {
  margin-bottom: 50px;
}
.modal-container .menu-list > li:nth-last-of-type(1) {
  margin-bottom: 0px;
}
.modal-container .menu-list > li a {
  color: rgb(140, 140, 140);
  text-decoration: none;
  transition: 0.4s;
  position: relative;
}
.modal-container .menu-list > li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: rgb(0, 0, 0);
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.modal-container .menu-list > li a:hover {
  color: rgb(0, 0, 0);
}
.modal-container .menu-list > li a:hover::after {
  transform: scale(1, 1);
}
.modal-container .menu-list > li h2 {
  font-weight: 400;
  font-size: 1.75rem;
  margin-bottom: 10px;
}
.modal-container .menu-list > li h3 {
  font-weight: 400;
  font-size: 1.0625rem;
  margin-bottom: 7px;
}
.modal-container .menu-list > li ul li {
  padding-left: 1em;
  position: relative;
  font-size: 1.0625rem;
  margin-bottom: 10px;
}
.modal-container .menu-list > li ul li::after {
  content: "";
  background: rgb(140, 140, 140);
  height: 1px;
  width: 0.7em;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.modal-container section.sp {
  width: 100%;
  padding: 100px 30px 0;
  box-sizing: border-box;
}
.modal-container section.sp > ul > li {
  margin-bottom: 15px;
  border-bottom: rgb(140, 140, 140) 1px solid;
}
.modal-container section.sp > ul > li a {
  color: rgb(140, 140, 140);
  text-decoration: none;
  position: relative;
}
.modal-container section.sp > ul > li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: #fff;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.modal-container section.sp > ul > li h2 {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgb(0, 0, 0);
  margin-bottom: 15px;
  padding-right: 2em;
}
.modal-container section.sp > ul > li h2 a {
  color: rgb(0, 0, 0);
}
.modal-container section.sp > ul > li h3 {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgb(0, 0, 0);
  margin-bottom: 10px;
}
.modal-container section.sp > ul > li ul {
  margin-bottom: 15px;
}
.modal-container section.sp > ul > li ul li {
  padding-left: 1em;
  position: relative;
  font-size: 0.75rem;
  margin-bottom: 7px;
}
.modal-container section.sp > ul > li ul li::after {
  content: "";
  background: rgb(140, 140, 140);
  height: 1px;
  width: 0.7em;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

body.is-fixed {
  overflow: hidden;
}

/* --------------------------------
footer
-------------------------------- */
footer {
  background: #000;
  padding: 35px 0;
  margin-top: 200px;
}
@media screen and (max-width: 440px) {
  footer {
    margin-top: 100px;
    padding: 50px 30px;
  }
}
footer section {
  width: 1300px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media screen and (max-width: 440px) {
  footer section {
    width: 100%;
  }
}
footer section:nth-of-type(1) {
  background: rgb(242, 237, 230);
  padding: 115px 200px;
  border-radius: 10px;
}
@media screen and (max-width: 440px) {
  footer section:nth-of-type(1) {
    padding: 30px 25px;
  }
}
footer section:nth-of-type(1) > p:nth-of-type(1) {
  font-size: 0.875rem;
  font-weight: 400;
}
@media screen and (max-width: 440px) {
  footer section:nth-of-type(1) > p:nth-of-type(1) {
    font-size: 0.5625rem;
  }
}
footer section:nth-of-type(1) > p:nth-of-type(1) img {
  height: 14px;
  width: auto;
  display: inline;
}
@media screen and (max-width: 440px) {
  footer section:nth-of-type(1) > p:nth-of-type(1) img {
    height: 9px;
  }
}
footer section:nth-of-type(1) h2 {
  font-size: 4rem;
  font-weight: 400;
  line-height: 1;
  margin: 30px 0 30px 0;
  letter-spacing: -0.1em;
}
@media screen and (max-width: 440px) {
  footer section:nth-of-type(1) h2 {
    font-size: 1.75rem;
    text-align: center;
    margin: 25px 0;
  }
}
footer section:nth-of-type(1) h2 strong {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0em;
}
@media screen and (max-width: 440px) {
  footer section:nth-of-type(1) h2 strong {
    font-size: 1rem;
    display: block;
    margin-top: 10px;
  }
}
footer section:nth-of-type(1) h3 {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 50px;
}
@media screen and (max-width: 440px) {
  footer section:nth-of-type(1) h3 {
    font-size: 0.75rem;
    text-align: center;
    margin-bottom: 25px;
  }
}
footer section:nth-of-type(1) ul {
  display: flex;
  justify-content: space-between;
  border-top: #000 solid 1px;
  padding-top: 45px;
  margin-top: 45px;
}
@media screen and (max-width: 440px) {
  footer section:nth-of-type(1) ul {
    gap: 20px;
    padding-top: 25px;
    margin-top: 25px;
    flex-direction: column;
  }
}
footer section:nth-of-type(1) ul li {
  width: calc((100% - 40px) / 3);
  font-size: 1.25rem;
  font-weight: 400;
}
@media screen and (max-width: 440px) {
  footer section:nth-of-type(1) ul li {
    width: 100%;
    font-size: 0.875rem;
  }
}
footer section:nth-of-type(1) ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: #000;
  color: #fff;
  text-decoration: none;
  padding: 15px 25px;
  box-sizing: border-box;
  transition: 0.4s;
}
footer section:nth-of-type(1) ul li a:hover {
  background: #404040;
}
footer section:nth-of-type(1) ul li a .arrow_link {
  margin-top: -5px;
}
footer section:nth-of-type(1) ul li:nth-last-of-type(1) img {
  height: 16px;
  width: auto;
}
footer section:nth-of-type(2), footer section:nth-of-type(3) {
  display: flex;
  justify-content: space-between;
  padding: 70px 0 35px 0;
  width: 1000px;
  margin: 0 auto;
}
footer section:nth-of-type(2) ul > li, footer section:nth-of-type(3) ul > li {
  margin-bottom: 35px;
}
@media screen and (max-width: 440px) {
  footer section:nth-of-type(2) ul > li, footer section:nth-of-type(3) ul > li {
    margin-bottom: 20px;
  }
}
footer section:nth-of-type(2) ul > li a, footer section:nth-of-type(3) ul > li a {
  color: rgb(140, 140, 140);
  text-decoration: none;
  position: relative;
}
footer section:nth-of-type(2) ul > li a::after, footer section:nth-of-type(3) ul > li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: #fff;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
footer section:nth-of-type(2) ul > li a:hover, footer section:nth-of-type(3) ul > li a:hover {
  color: #fff;
}
footer section:nth-of-type(2) ul > li a:hover::after, footer section:nth-of-type(3) ul > li a:hover::after {
  transform: scale(1, 1);
}
footer section:nth-of-type(2) ul > li h2, footer section:nth-of-type(3) ul > li h2 {
  font-size: 0.875rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 15px;
}
@media screen and (max-width: 440px) {
  footer section:nth-of-type(2) ul > li h2, footer section:nth-of-type(3) ul > li h2 {
    margin-bottom: 10px;
    display: inline-block;
    padding-right: 2em;
  }
}
@media screen and (max-width: 440px) {
  footer section:nth-of-type(2) ul > li h2 a, footer section:nth-of-type(3) ul > li h2 a {
    color: #fff;
  }
}
footer section:nth-of-type(2) ul > li h3, footer section:nth-of-type(3) ul > li h3 {
  font-size: 0.75rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 10px;
}
footer section:nth-of-type(2) ul > li ul li, footer section:nth-of-type(3) ul > li ul li {
  padding-left: 1em;
  position: relative;
  font-size: 0.75rem;
  margin-bottom: 10px;
}
footer section:nth-of-type(2) ul > li ul li::after, footer section:nth-of-type(3) ul > li ul li::after {
  content: "";
  background: rgb(140, 140, 140);
  height: 1px;
  width: 0.7em;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media screen and (max-width: 440px) {
  footer section:nth-of-type(2) {
    display: none;
  }
}
footer section:nth-of-type(3) {
  display: none;
}
@media screen and (max-width: 440px) {
  footer section:nth-of-type(3) {
    display: block;
    flex-direction: column;
    width: 100%;
    padding: 60px 0 35px 0;
  }
}
footer section:nth-of-type(4) {
  border-top: #fff 1px solid;
  display: flex;
  justify-content: space-between;
  padding-top: 35px;
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 440px) {
  footer section:nth-of-type(4) {
    width: 100%;
    flex-direction: column;
    position: relative;
  }
}
@media screen and (max-width: 440px) {
  footer section:nth-of-type(4) h1 {
    order: 1;
  }
}
footer section:nth-of-type(4) h1 img {
  height: 35px;
  width: auto;
}
footer section:nth-of-type(4) ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer section:nth-of-type(4) ul:nth-of-type(1) {
  margin-left: auto;
  gap: 30px;
  border-right: #fff 1px solid;
  padding-right: 40px;
  margin-right: 40px;
}
@media screen and (max-width: 440px) {
  footer section:nth-of-type(4) ul:nth-of-type(1) {
    order: 4;
    margin-left: 0;
    border: none;
    margin-top: 35px;
    justify-content: left;
    gap: 20px;
  }
}
footer section:nth-of-type(4) ul:nth-of-type(1) li a img {
  height: 25px;
  width: auto;
  transition: 0.4s;
}
footer section:nth-of-type(4) ul:nth-of-type(1) li a:hover img {
  filter: brightness(0) invert(1);
}
footer section:nth-of-type(4) ul:nth-of-type(2) {
  gap: 30px;
}
@media screen and (max-width: 440px) {
  footer section:nth-of-type(4) ul:nth-of-type(2) {
    order: 3;
    flex-wrap: wrap;
    gap: 0px;
    justify-content: left;
    margin-top: 35px;
  }
}
@media screen and (max-width: 440px) {
  footer section:nth-of-type(4) ul:nth-of-type(2) li:nth-of-type(1) {
    width: 100%;
  }
  footer section:nth-of-type(4) ul:nth-of-type(2) li:nth-of-type(2) {
    margin-right: 20px;
  }
}
footer section:nth-of-type(4) ul:nth-of-type(2) a {
  color: rgb(140, 140, 140);
  text-decoration: none;
  transition: 0.4s;
  font-size: 0.75rem;
  line-height: 1;
  position: relative;
}
footer section:nth-of-type(4) ul:nth-of-type(2) a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: #fff;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
footer section:nth-of-type(4) ul:nth-of-type(2) a img {
  height: 1em;
  width: auto;
  display: inline-block;
  margin-left: 10px;
}
footer section:nth-of-type(4) ul:nth-of-type(2) a:hover {
  color: #fff;
}
footer section:nth-of-type(4) ul:nth-of-type(2) a:hover img {
  filter: brightness(0) invert(1);
}
footer section:nth-of-type(4) ul:nth-of-type(2) a:hover::after {
  transform: scale(1, 1);
}
@media screen and (max-width: 440px) {
  footer section:nth-of-type(4) p.pagetop {
    order: 2;
    position: absolute;
    top: 35px;
    right: 0px;
  }
}
footer section:nth-of-type(4) p.pagetop {
  margin-left: 30px;
}
footer section:nth-of-type(4) p.pagetop a {
  display: block;
  width: 35px;
}
footer section:nth-of-type(4) p.pagetop a img {
  width: 100%;
  height: auto;
}

/* 開閉 */
.accordion .accordion-title {
  position: relative;
  cursor: pointer;
  /* ＋アイコン */
}
.accordion .accordion-title::before, .accordion .accordion-title::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  width: 12px;
  height: 1px;
  background: #000;
  transition: transform 0.4s ease, opacity 0.3s ease;
}
.accordion .accordion-title {
  /* 横線 */
}
.accordion .accordion-title::before {
  transform: translateY(-50%);
}
.accordion .accordion-title {
  /* 縦線 */
}
.accordion .accordion-title::after {
  transform: translateY(-50%) rotate(90deg);
}
.accordion .accordion-title {
  /* OPEN → − */
}
.accordion .accordion-title.is-open::after {
  transform: translateY(-50%) rotate(90deg) scaleY(0);
  opacity: 0;
}
.accordion {
  /* =====================
     CONTENT
  ===================== */
}
.accordion .accordion-content {
  height: 0;
  overflow: hidden;
  transition: height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

footer .accordion .accordion-title::before, footer .accordion .accordion-title::after {
  background: #fff;
}

small {
  font-size: 0.75rem;
  text-align: center;
  padding: 10px;
  display: block;
}
@media screen and (max-width: 440px) {
  small {
    background: #000;
    color: #fff;
    padding: 0 0 50px 30px;
    text-align: left;
  }
}

/* --------------------------------
contents
-------------------------------- */
main {
  margin-top: 74px;
  background: rgb(242, 237, 230);
}
@media screen and (max-width: 440px) {
  main {
    margin-top: 67px;
  }
}

main#top {
  background: #fff;
}

#wrap_mv_ttl {
  width: 1000px;
  margin: 0 auto;
  padding: 100px 0;
  box-sizing: border-box;
}
@media screen and (max-width: 440px) {
  #wrap_mv_ttl {
    width: 100%;
    padding: 40px 30px;
  }
}
#wrap_mv_ttl p {
  font-size: 0.875rem;
  font-weight: 400;
}
@media screen and (max-width: 440px) {
  #wrap_mv_ttl p {
    font-size: 0.5625rem;
  }
}
#wrap_mv_ttl p img {
  display: inline;
  height: 14px;
  width: auto;
}
@media screen and (max-width: 440px) {
  #wrap_mv_ttl p img {
    height: 9px;
  }
}
#wrap_mv_ttl h2 {
  font-size: 2rem;
  font-weight: 400;
  margin: 30px 0 55px;
  line-height: 1;
}
@media screen and (max-width: 440px) {
  #wrap_mv_ttl h2 {
    font-size: 1rem;
    margin: 20px 0 30px;
  }
}
#wrap_mv_ttl h1 {
  font-size: 4rem;
  font-weight: 400;
  line-height: 1;
}
@media screen and (max-width: 440px) {
  #wrap_mv_ttl h1 {
    font-size: 1.625rem;
  }
}

#wrap_mv_ph {
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 440px) {
  #wrap_mv_ph {
    overflow: initial;
  }
}
#wrap_mv_ph img {
  width: 100%;
  height: auto;
  min-width: 1000px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 440px) {
  #wrap_mv_ph img {
    min-width: auto;
  }
}

.main_ttl {
  font-weight: 400;
  font-size: 2rem;
  border-bottom: rgb(0, 0, 0) solid 1px;
  position: relative;
  display: flex;
  align-items: center;
  line-height: 1;
  padding-bottom: 20px;
}
@media screen and (max-width: 440px) {
  .main_ttl {
    font-size: 1.25rem;
    flex-direction: column-reverse;
    align-items: normal;
    padding-bottom: 30px;
    margin: 0 30px;
    padding-left: 20px;
  }
}
.main_ttl:after {
  content: "";
  width: 100%;
  height: 2px;
  background: rgb(0, 0, 0);
  position: absolute;
  bottom: 3px;
  left: 0;
}
.main_ttl strong {
  font-weight: 400;
  font-size: 0.875rem;
  padding-left: 30px;
  position: relative;
}
@media screen and (max-width: 440px) {
  .main_ttl strong {
    padding-left: 1em;
    margin-bottom: 15px;
    font-size: 0.5625rem;
  }
}
@media screen and (max-width: 440px) {
  .main_ttl strong::after {
    position: absolute;
    left: 0;
    top: 50%;
    content: "";
    height: 1px;
    background: rgb(0, 0, 0);
    width: 0.7em;
  }
}

#wrap_contents {
  overflow-x: clip;
}
#wrap_contents #wrap_contents_inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  position: relative;
}
@media screen and (max-width: 440px) {
  #wrap_contents #wrap_contents_inner {
    display: block;
  }
}
#wrap_contents #wrap_contents_inner > div {
  padding-top: 85px;
}
@media screen and (max-width: 440px) {
  #wrap_contents #wrap_contents_inner > div {
    padding-top: 0px;
  }
}
#wrap_contents #wrap_contents_inner > div:nth-of-type(1) {
  flex: 0 0 340px;
  z-index: 2;
  position: sticky;
  top: 85px;
  min-height: 100vh;
  box-sizing: border-box;
}
@media screen and (max-width: 440px) {
  #wrap_contents #wrap_contents_inner > div:nth-of-type(1) {
    padding: 80px 50px 50px 50px;
    position: static;
    min-height: auto;
    background: #000;
  }
}
#wrap_contents #wrap_contents_inner > div:nth-of-type(1)::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: -100vw;
  background: #000;
  z-index: -1;
}
@media screen and (max-width: 440px) {
  #wrap_contents #wrap_contents_inner > div:nth-of-type(1)::before {
    display: none;
  }
}
#wrap_contents #wrap_contents_inner > div:nth-of-type(1) aside {
  padding-right: 55px;
}
@media screen and (max-width: 440px) {
  #wrap_contents #wrap_contents_inner > div:nth-of-type(1) aside {
    padding-right: 0px;
  }
}
#wrap_contents #wrap_contents_inner > div:nth-of-type(1) aside > h2 {
  font-size: 2rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 1.5em;
  line-height: 1;
}
@media screen and (max-width: 440px) {
  #wrap_contents #wrap_contents_inner > div:nth-of-type(1) aside > h2 {
    margin-bottom: 35px;
  }
}
#wrap_contents #wrap_contents_inner > div:nth-of-type(1) aside ul li {
  margin-bottom: 1em;
  font-size: 0.875rem;
}
#wrap_contents #wrap_contents_inner > div:nth-of-type(1) aside ul li a {
  color: rgb(140, 140, 140);
  text-decoration: none;
  position: relative;
  transition: transform 0.3s;
  display: inline-block;
}
#wrap_contents #wrap_contents_inner > div:nth-of-type(1) aside ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: #fff;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
#wrap_contents #wrap_contents_inner > div:nth-of-type(1) aside ul li a:hover {
  color: #fff;
}
#wrap_contents #wrap_contents_inner > div:nth-of-type(1) aside ul li a:hover::after {
  transform: scale(1, 1);
}
#wrap_contents #wrap_contents_inner > div:nth-of-type(1) aside ul li a p {
  display: inline-block;
  position: relative;
}
#wrap_contents #wrap_contents_inner > div:nth-of-type(1) aside ul li a p strong {
  display: block;
}
@media screen and (max-width: 440px) {
  #wrap_contents #wrap_contents_inner > div:nth-of-type(1) aside ul li a p strong {
    display: inline-block;
    margin-right: 1em;
    padding-left: 2em;
  }
}
@media screen and (max-width: 440px) {
  #wrap_contents #wrap_contents_inner > div:nth-of-type(1) aside ul li a p::before {
    content: "…";
    position: absolute;
    left: 0;
    top: 0.7em;
    color: rgb(140, 140, 140);
    height: 1px;
    width: 1em;
    line-height: 0.4em;
  }
}
#wrap_contents #wrap_contents_inner > div:nth-of-type(1) aside ul li a.active {
  color: #fff;
}
#wrap_contents #wrap_contents_inner > div:nth-of-type(1) aside ul li a.active::before {
  position: absolute;
  content: "";
  left: -15px;
  top: 0.75em;
  background: #fff;
  width: 5px;
  height: 5px;
}
#wrap_contents #wrap_contents_inner > div:nth-of-type(1) aside ul .last {
  font-size: 1.4375rem;
  margin-top: 45px;
  padding-top: 45px;
  border-top: 1px #fff solid;
}
@media screen and (max-width: 440px) {
  #wrap_contents #wrap_contents_inner > div:nth-of-type(1) aside ul .last {
    font-size: 0.9375rem;
    margin-top: 35px;
    padding-top: 35px;
    margin-bottom: 0em;
  }
}
#wrap_contents #wrap_contents_inner > div:nth-of-type(2) {
  flex: 0 0 960px;
  position: relative;
  padding-bottom: 200px;
  z-index: 1;
}
@media screen and (max-width: 440px) {
  #wrap_contents #wrap_contents_inner > div:nth-of-type(2) {
    padding-bottom: 100px;
  }
}
#wrap_contents #wrap_contents_inner > div:nth-of-type(2)::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: -100vw;
  z-index: -1;
}

#wrap_contents_02 {
  width: 1300px;
  margin: 0 auto 200px auto;
}
@media screen and (max-width: 440px) {
  #wrap_contents_02 {
    width: 100%;
  }
}

.arrow {
  position: relative;
  width: 18px;
  height: 1px;
  margin-top: 6px;
  margin-bottom: 0.2em;
  margin-left: 20px;
  border-radius: 9999px;
  background-color: #000000;
}
.arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  width: 6px;
  height: 1px;
  border-radius: 9999px;
  background-color: #000000;
  transform: rotate(45deg);
  transform-origin: calc(100% - 2px) 50%;
}

.arrow_link {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 440px) {
  .arrow_link {
    justify-content: end;
    font-size: 0.625rem;
  }
}
.arrow_link > span {
  display: block;
  overflow: hidden;
  width: 18px;
}
@media screen and (max-width: 440px) {
  .arrow_link > span {
    margin-left: 30px;
  }
}
.arrow_link > span span {
  display: block;
  width: 18px;
}
.arrow_link > span span img {
  width: 100%;
  height: auto;
  margin-top: 5px;
}

a:hover .arrow_link span span {
  animation: arrowAnime 0.6s;
}

@keyframes arrowAnime {
  0% {
    translate: 0 0;
  }
  50% {
    translate: 100% 0;
  }
  50.1% {
    translate: -100% 0;
  }
  100% {
    translate: 0 0;
  }
}
.page_link {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 440px) {
  .page_link {
    justify-content: end;
    font-size: 0.625rem;
  }
}
.page_link > span {
  display: block;
  overflow: hidden;
  width: 18px;
  height: 18px;
}
@media screen and (max-width: 440px) {
  .page_link > span {
    margin-left: 30px;
  }
}
.page_link > span span {
  display: block;
  width: 18px;
  transform: rotate(90deg);
}
.page_link > span span img {
  width: 100%;
  height: auto;
  margin-top: 5px;
}

a:hover .page_link span span {
  animation: arrowAnime02 0.6s;
}

@keyframes arrowAnime02 {
  0% {
    transform: rotate(90deg) translateX(0);
  }
  50% {
    transform: rotate(90deg) translateX(100%);
  }
  50.1% {
    transform: rotate(90deg) translateX(-100%);
  }
  100% {
    transform: rotate(90deg) translateX(0);
  }
}
a.img_scale {
  text-decoration: none;
  position: relative;
  display: block;
  overflow: hidden;
}
a.img_scale::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  opacity: 0;
  transition: 0.5s ease;
  pointer-events: none;
}
a.img_scale picture img, a.img_scale figure img {
  width: 100%;
  height: auto;
  transition: 1s all;
}
a.img_scale:hover::after {
  opacity: 1;
}
a.img_scale:hover picture img, a.img_scale:hover figure img {
  transform: scale(1.05, 1.05);
  transition: 0.5s all;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}/*# sourceMappingURL=common.css.map */