@charset "UTF-8";
/*-------------base-------------*/
/*Webフォント読み込み*/
@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Hina+Mincho&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
/*使用Webフォント*/
/*使用カラー*/
/*フォントサイズ*/
/*サイト全体のフォント指定*/
html {
  font-size: 10px;
}

body {
  font-family: "Arial", "Zen Kaku Gothic New", "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 1.7;
  color: #01051D;
}
body br.pc {
  display: block;
}
@media screen and (max-width: 540px) {
  body br.pc {
    display: none;
  }
}
body br.sp {
  display: none;
}
@media screen and (max-width: 540px) {
  body br.sp {
    display: block;
  }
}

/*-------------mixin-------------*/
/*-------------base-------------*/
/*-------------ブレイクポイント-------------*/
/*-------------本文-------------*/
/*-------------フリップアニメーション-------------*/
@keyframes flip-anime {
  0% {
    opacity: 0;
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(-30deg);
  }
  100% {
    opacity: 1;
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
  }
}
@keyframes flip-x {
  0% {
    opacity: 0;
    transform: rotateX(-90deg);
  }
  100% {
    opacity: 1;
    transform: rotateX(0deg);
  }
}
/*-------------フェードアップ-------------*/
/*-------------フェードイン-------------*/
/*-------------フェードアップ左-------------*/
/*-------------フェードアップ右-------------*/
/*-------------回転アニメージョン-------------*/
@keyframes rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*-------------左側から流れるアニメーション-------------*/
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/*-------------ズームイン-------------*/
@keyframes zoomIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/*-------------ホバー透過-------------*/
/*-------------画像設定-------------*/
/*-------------擬似要素-------------*/
/*-------------flex space-between-------------*/
/*-------------ボタン-------------*/
/*-------------前のページへ戻るボタン-------------*/
/*-------------トップボタン-------------*/
/*-------------グラデーション背景-------------*/
/*-------------コンテンツ幅-------------*/
/*-------------コンテンツ余白-------------*/
/*-------------ニュース、コラムパーツ-------------*/
/*-------------ページャー-------------*/
/*-------------フォーム入力欄-------------*/
/*-------------フォームテキスト-------------*/
/*-------------チェックボックス-------------*/
/*-------------お知らせリスト-------------*/
/*-------------page-------------*/
/*-------------base-------------*/
/*-------------mixin-------------*/
/*-------------ローディング-------------*/
#loading-wrap {
  width: 100vw;
  height: 100vh;
  background: url(../../images/bg_washi.jpg);
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
#loading-wrap .logo-img {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 9999;
}
#loading-wrap .logo-img .logo {
  max-width: 300px;
}
@media screen and (max-width: 768px) {
  #loading-wrap .logo-img .logo {
    max-width: 200px;
  }
}
#loading-wrap .logo-img .logo img {
  display: block;
  width: 100%;
}

/*-------------メインビジュアル-------------*/
.top-slide-section {
  position: relative;
}
.top-slide-section-inner .top-slide-section__list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.top-slide-section-inner .top-slide-section__list li {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.top-slide-section-inner .top-slide-section__list li .catch-copy {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 100%;
}
.top-slide-section-inner .top-slide-section__list li .catch-copy-txt {
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  font-family: "Hina Mincho", serif;
  line-height: 1;
  text-align: center;
  color: #fff;
  margin: 0;
}
.top-slide-section-inner .top-slide-section__list li img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  transform: scale(1);
  transition: transform 6s ease-out;
}
.top-slide-section-inner .top-slide-section__list li img.img-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .top-slide-section-inner .top-slide-section__list li img.img-pc {
    display: none;
  }
}
.top-slide-section-inner .top-slide-section__list li img.img-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .top-slide-section-inner .top-slide-section__list li img.img-sp {
    display: block;
  }
}
.top-slide-section-inner .top-slide-section__list li img.zooming {
  transform: scale(1.15);
}

/*--------------匠の技と美が融合する、日本文化の結晶-------------*/
.top-desc-section {
  padding: 200px 20px;
  background: url(../../images/top_bg_catchcopy.jpg);
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .top-desc-section {
    padding: 60px 20px;
  }
}
.top-desc-section-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: auto;
}
.top-desc-section-inner .en-txt {
  font-size: 4.2rem;
  font-weight: 400;
  font-family: "EB Garamond", serif;
  line-height: 1.4;
  text-align: center;
  color: #fff;
  margin: 0 0 60px 0;
  opacity: 0;
  transition: all 2000ms;
}
.top-desc-section-inner .en-txt.is-animated {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .top-desc-section-inner .en-txt {
    font-size: 2rem;
    margin: 0 0 30px 0;
  }
}
.top-desc-section-inner h2 {
  font-size: 4.6rem;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  margin: 0;
  color: #fff;
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 768px) {
  .top-desc-section-inner h2 {
    transform: translate(0, 40px);
  }
}
.top-desc-section-inner h2.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  .top-desc-section-inner h2 {
    font-size: 2.8rem;
  }
}

/*--------------日本刀とは-------------*/
.top-about-section {
  padding: 200px 20px;
  background: linear-gradient(180deg, #01051D, #34445D);
}
@media screen and (max-width: 768px) {
  .top-about-section {
    padding: 60px 20px;
  }
}
.top-about-section-inner {
  max-width: 1024px;
  margin: 0 auto;
  width: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .top-about-section-inner {
    flex-flow: column;
  }
}
.top-about-section-inner .top-about-section__txt {
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .top-about-section-inner .top-about-section__txt {
    transform: translate(0, 40px);
  }
}
.top-about-section-inner .top-about-section__txt.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  .top-about-section-inner .top-about-section__txt {
    width: auto;
    margin: 0 0 30px 0;
    width: 100%;
  }
}
.top-about-section-inner .top-about-section__txt-heading {
  margin: 0 0 50px 0;
}
@media screen and (max-width: 768px) {
  .top-about-section-inner .top-about-section__txt-heading {
    margin: 0 0 30px 0;
  }
}
.top-about-section-inner .top-about-section__txt-heading h2 {
  font-size: 1.8rem;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  color: #fff;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 768px) {
  .top-about-section-inner .top-about-section__txt-heading h2 {
    font-size: 1.6rem;
    margin: 0 0 15px 0;
  }
}
.top-about-section-inner .top-about-section__txt-heading .en-txt {
  font-size: 5rem;
  font-weight: 400;
  font-family: "EB Garamond", serif;
  line-height: 1;
  color: #fff;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .top-about-section-inner .top-about-section__txt-heading .en-txt {
    font-size: 2.8rem;
  }
}
.top-about-section-inner .top-about-section__txt h3 {
  font-size: 3.6rem;
  font-family: "EB Garamond", serif;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
  margin: 0 0 60px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-about-section-inner .top-about-section__txt h3 {
    font-size: 1.8rem;
    margin: 0 0 30px 0;
  }
}
.top-about-section-inner .top-about-section__txt > p {
  font-size: 1.6rem;
  font-family: "Hina Mincho", serif;
  font-weight: 300;
  color: #fff;
  font-weight: normal;
  line-height: 1.8;
  margin: 0 0 20px 0;
  margin: 0 0 60px 0;
}
@media screen and (max-width: 768px) {
  .top-about-section-inner .top-about-section__txt > p {
    font-size: 1.5rem;
  }
}
.top-about-section-inner .top-about-section__txt > p > a {
  color: #7A8BA5;
  transition: all 0.3s;
}
.top-about-section-inner .top-about-section__txt > p > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .top-about-section-inner .top-about-section__txt > p > a:hover {
    opacity: 1;
  }
}
.top-about-section-inner .top-about-section__txt > p span {
  color: #7A8BA5;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .top-about-section-inner .top-about-section__txt > p {
    margin: 0 0 40px 0;
  }
}
.top-about-section-inner .top-about-section__txt .btn-view a {
  font-size: 1.8rem;
  font-weight: 400;
  font-family: "EB Garamond", serif;
  line-height: 1;
  color: #fff;
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
  padding: 0 85px 0 0;
  position: relative;
}
.top-about-section-inner .top-about-section__txt .btn-view a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .top-about-section-inner .top-about-section__txt .btn-view a:hover {
    opacity: 1;
  }
}
.top-about-section-inner .top-about-section__txt .btn-view a::after {
  content: "";
  display: inline-block;
  position: relative;
  background: url(../../images/icon_arrow_more.svg);
  background-size: 80px;
  width: 80px;
  height: 10px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.top-about-section-inner .top-about-section__img {
  opacity: 0;
  transition: all 2000ms;
  width: 5%;
}
.top-about-section-inner .top-about-section__img.is-animated {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .top-about-section-inner .top-about-section__img {
    max-width: 60px;
    width: 100%;
    margin: 0 auto;
  }
}
.top-about-section-inner .top-about-section__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*--------------現代に生きる、日本刀-------------*/
.top-legacy-section {
  background: #34445D;
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .top-legacy-section {
    padding: 30px 0;
  }
}
.top-legacy-section-inner .top-legacy-section__heading {
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
  margin: 0 0 100px 0;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .top-legacy-section-inner .top-legacy-section__heading {
    transform: translate(0, 40px);
  }
}
.top-legacy-section-inner .top-legacy-section__heading.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  .top-legacy-section-inner .top-legacy-section__heading {
    margin: 0 0 40px 0;
  }
}
.top-legacy-section-inner .top-legacy-section__heading .en-txt {
  font-size: 7rem;
  font-weight: 400;
  font-family: "EB Garamond", serif;
  text-align: center;
  line-height: 1;
  color: #fff;
  margin: 0 0 40px 0;
}
@media screen and (max-width: 768px) {
  .top-legacy-section-inner .top-legacy-section__heading .en-txt {
    font-size: 3.6rem;
    margin: 0 0 20px 0;
  }
}
.top-legacy-section-inner .top-legacy-section__heading h2 {
  font-size: 3.6rem;
  font-family: "EB Garamond", serif;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  color: #fff;
  margin: 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-legacy-section-inner .top-legacy-section__heading h2 {
    font-size: 1.8rem;
  }
}
.top-legacy-section-inner .top-legacy-section__img {
  width: 100%;
  margin: 0 0 100px 0;
  display: flex;
  flex-wrap: wrap;
  opacity: 0;
  transition: all 2000ms;
}
.top-legacy-section-inner .top-legacy-section__img.is-animated {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .top-legacy-section-inner .top-legacy-section__img {
    margin: 0 0 40px 0;
  }
}
.top-legacy-section-inner .top-legacy-section__img-item {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .top-legacy-section-inner .top-legacy-section__img-item {
    width: 100%;
  }
}
.top-legacy-section-inner .top-legacy-section__img-item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 2/1.33;
}
.top-legacy-section-inner .top-legacy-section__txt {
  padding: 0 20px;
}
.top-legacy-section-inner .top-legacy-section__txt p {
  font-size: 1.6rem;
  font-family: "Hina Mincho", serif;
  font-weight: 300;
  color: #fff;
  font-weight: normal;
  line-height: 1.8;
  margin: 0 0 20px 0;
  margin: 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-legacy-section-inner .top-legacy-section__txt p {
    font-size: 1.5rem;
  }
}
.top-legacy-section-inner .top-legacy-section__txt p > a {
  color: #7A8BA5;
  transition: all 0.3s;
}
.top-legacy-section-inner .top-legacy-section__txt p > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .top-legacy-section-inner .top-legacy-section__txt p > a:hover {
    opacity: 1;
  }
}
.top-legacy-section-inner .top-legacy-section__txt p span {
  color: #7A8BA5;
  font-weight: bold;
}

/*--------------現代刀アーティストのご紹介-------------*/
.top-intro-section {
  padding: 200px 20px 0 20px;
  background: linear-gradient(180deg, #34445D, #01051D);
}
@media screen and (max-width: 768px) {
  .top-intro-section {
    padding: 60px 20px 0 20px;
  }
}
.top-intro-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: auto;
  padding: 160px 0 200px 0;
  border-top: solid 1px #fff;
  border-bottom: solid 1px #fff;
}
@media screen and (max-width: 768px) {
  .top-intro-section-inner {
    padding: 40px 0 80px 0;
  }
}
.top-intro-section-inner .top-intro-section__heading {
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
  margin: 0 0 100px 0;
}
@media screen and (max-width: 768px) {
  .top-intro-section-inner .top-intro-section__heading {
    transform: translate(0, 40px);
  }
}
.top-intro-section-inner .top-intro-section__heading.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  .top-intro-section-inner .top-intro-section__heading {
    margin: 0 0 40px 0;
  }
}
.top-intro-section-inner .top-intro-section__heading h2 {
  font-size: 1.8rem;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  text-align: center;
  color: #fff;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 768px) {
  .top-intro-section-inner .top-intro-section__heading h2 {
    font-size: 1.6rem;
    margin: 0 0 15px 0;
  }
}
.top-intro-section-inner .top-intro-section__heading .en-txt {
  font-size: 7rem;
  font-weight: 400;
  font-family: "EB Garamond", serif;
  text-align: center;
  line-height: 1;
  color: #fff;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .top-intro-section-inner .top-intro-section__heading .en-txt {
    font-size: 3.6rem;
  }
}
.top-intro-section-inner .top-intro-section__txt {
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
  margin: 0 0 100px 0;
}
@media screen and (max-width: 768px) {
  .top-intro-section-inner .top-intro-section__txt {
    transform: translate(0, 40px);
  }
}
.top-intro-section-inner .top-intro-section__txt.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  .top-intro-section-inner .top-intro-section__txt {
    margin: 0 0 40px 0;
  }
}
.top-intro-section-inner .top-intro-section__txt h3 {
  font-size: 3.6rem;
  font-family: "EB Garamond", serif;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  color: #fff;
  margin: 0 0 40px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-intro-section-inner .top-intro-section__txt h3 {
    font-size: 1.8rem;
    margin: 0 0 20px 0;
  }
}
.top-intro-section-inner .top-intro-section__txt > p {
  font-size: 1.6rem;
  font-family: "Hina Mincho", serif;
  font-weight: 300;
  color: #fff;
  font-weight: normal;
  line-height: 1.8;
  margin: 0 0 20px 0;
  text-align: center;
  margin: 0 0 60px 0;
}
@media screen and (max-width: 768px) {
  .top-intro-section-inner .top-intro-section__txt > p {
    font-size: 1.5rem;
  }
}
.top-intro-section-inner .top-intro-section__txt > p > a {
  color: #7A8BA5;
  transition: all 0.3s;
}
.top-intro-section-inner .top-intro-section__txt > p > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .top-intro-section-inner .top-intro-section__txt > p > a:hover {
    opacity: 1;
  }
}
.top-intro-section-inner .top-intro-section__txt > p span {
  color: #7A8BA5;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .top-intro-section-inner .top-intro-section__txt > p {
    margin: 0 0 40px 0;
    text-align: left;
  }
}
.top-intro-section-inner .btn-view {
  opacity: 0;
  transition: all 2000ms;
  margin: 0 auto;
  text-align: center;
}
.top-intro-section-inner .btn-view a {
  font-size: 1.8rem;
  font-weight: 400;
  font-family: "EB Garamond", serif;
  line-height: 1;
  color: #fff;
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
  padding: 0 85px 0 0;
  position: relative;
}
.top-intro-section-inner .btn-view a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .top-intro-section-inner .btn-view a:hover {
    opacity: 1;
  }
}
.top-intro-section-inner .btn-view a::after {
  content: "";
  display: inline-block;
  position: relative;
  background: url(../../images/icon_arrow_more.svg);
  background-size: 80px;
  width: 80px;
  height: 10px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.top-intro-section-inner .btn-view.is-animated {
  opacity: 1;
}
.top-intro-section-inner .top-intro-section__slide {
  padding: 0;
  margin: 140px 0 0 0;
  margin-bottom: 0 !important;
  list-style: none;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-intro-section-inner .top-intro-section__slide {
    margin: 40px 0 0 0;
  }
}
.top-intro-section-inner .top-intro-section__slide .slick-dots {
  padding: 0;
  margin: 0 auto;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .top-intro-section-inner .top-intro-section__slide .slick-dots {
    bottom: -30px;
  }
}
.top-intro-section-inner .top-intro-section__slide .slick-dots > li {
  margin: 0 10px;
  width: 70px;
  height: 4px;
  background: #5A5F67;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .top-intro-section-inner .top-intro-section__slide .slick-dots > li {
    margin: 0 8px;
    width: 30px;
  }
}
.top-intro-section-inner .top-intro-section__slide .slick-dots > li.slick-active {
  background: #fff;
}
.top-intro-section-inner .top-intro-section__slide .slick-dots > li button {
  display: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}
.top-intro-section-inner .top-intro-section__slide .slide-arrow {
  position: absolute;
  bottom: -72px;
  top: auto;
  transform: none;
  width: 62px;
  height: 62px;
  cursor: pointer;
  z-index: 1;
  display: block;
  text-decoration: none;
  transition: all 0.3s;
}
.top-intro-section-inner .top-intro-section__slide .slide-arrow:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .top-intro-section-inner .top-intro-section__slide .slide-arrow:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .top-intro-section-inner .top-intro-section__slide .slide-arrow {
    bottom: -40px;
    width: 30px;
    height: 30px;
  }
}
.top-intro-section-inner .top-intro-section__slide .slide-arrow::before {
  content: none;
}
.top-intro-section-inner .top-intro-section__slide .slide-arrow::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: inline-block;
  position: relative;
  width: 62px;
  height: 62px;
}
@media screen and (max-width: 768px) {
  .top-intro-section-inner .top-intro-section__slide .slide-arrow::after {
    width: 30px;
    height: 30px;
  }
}
.top-intro-section-inner .top-intro-section__slide .slide-arrow.slick-prev {
  left: 0;
}
.top-intro-section-inner .top-intro-section__slide .slide-arrow.slick-prev::after {
  background: url(../../images/icon_arrow_slide_l.svg);
  background-size: 62px;
}
@media screen and (max-width: 768px) {
  .top-intro-section-inner .top-intro-section__slide .slide-arrow.slick-prev::after {
    background-size: 30px;
  }
}
.top-intro-section-inner .top-intro-section__slide .slide-arrow.slick-next {
  right: 0;
}
.top-intro-section-inner .top-intro-section__slide .slide-arrow.slick-next::after {
  background: url(../../images/icon_arrow_slide_r.svg);
  background-size: 62px;
}
@media screen and (max-width: 768px) {
  .top-intro-section-inner .top-intro-section__slide .slide-arrow.slick-next::after {
    background-size: 30px;
  }
}
.top-intro-section-inner .top-intro-section__slide .slick-track {
  display: flex;
}
.top-intro-section-inner .top-intro-section__slide .slick-slide {
  height: auto !important;
}
.top-intro-section-inner .top-intro-section__slide li a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  display: flex;
  height: 100%;
}
.top-intro-section-inner .top-intro-section__slide li a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .top-intro-section-inner .top-intro-section__slide li a:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .top-intro-section-inner .top-intro-section__slide li a {
    flex-flow: column;
  }
}
.top-intro-section-inner .top-intro-section__slide li a .top-intro-section__slide-txt {
  max-width: 280px;
  width: 100%;
  background: #4C4F5D;
  display: flex;
  align-items: center;
  padding: 30px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .top-intro-section-inner .top-intro-section__slide li a .top-intro-section__slide-txt {
    max-width: 100%;
    padding: 30px 20px;
  }
}
.top-intro-section-inner .top-intro-section__slide li a .top-intro-section__slide-txt .top-intro-section__slide-name .area-txt {
  font-size: 2rem;
  font-family: "Hina Mincho", serif;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 5px 0;
}
@media screen and (max-width: 768px) {
  .top-intro-section-inner .top-intro-section__slide li a .top-intro-section__slide-txt .top-intro-section__slide-name .area-txt {
    font-size: 1.6rem;
  }
}
.top-intro-section-inner .top-intro-section__slide li a .top-intro-section__slide-txt .top-intro-section__slide-name h3 {
  font-size: 4.4rem;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: #fff;
  margin: 0 0 5px 0;
}
@media screen and (max-width: 768px) {
  .top-intro-section-inner .top-intro-section__slide li a .top-intro-section__slide-txt .top-intro-section__slide-name h3 {
    font-size: 4rem;
  }
}
.top-intro-section-inner .top-intro-section__slide li a .top-intro-section__slide-txt .top-intro-section__slide-name h3 .en-txt {
  font-size: 3.6rem;
}
@media screen and (max-width: 768px) {
  .top-intro-section-inner .top-intro-section__slide li a .top-intro-section__slide-txt .top-intro-section__slide-name h3 .en-txt {
    font-size: 2.8rem;
  }
}
.top-intro-section-inner .top-intro-section__slide li a .top-intro-section__slide-txt .top-intro-section__slide-name h3 span {
  font-size: 2rem;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  line-height: 1.2;
  display: block;
}
@media screen and (max-width: 768px) {
  .top-intro-section-inner .top-intro-section__slide li a .top-intro-section__slide-txt .top-intro-section__slide-name h3 span {
    font-size: 1.5rem;
  }
}
.top-intro-section-inner .top-intro-section__slide li a .top-intro-section__slide-txt .top-intro-section__slide-name .en-txt {
  font-size: 1.6rem;
  font-family: "EB Garamond", serif;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: #fff;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .top-intro-section-inner .top-intro-section__slide li a .top-intro-section__slide-txt .top-intro-section__slide-name .en-txt {
    font-size: 1.4rem;
  }
}
.top-intro-section-inner .top-intro-section__slide li a .top-intro-section__slide-img {
  flex: 1;
}
.top-intro-section-inner .top-intro-section__slide li a .top-intro-section__slide-img img {
  aspect-ratio: 2/1.55;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*--------------私たちについて-------------*/
.top-case-section {
  padding: 200px 0 0 0;
  background: #01051D;
}
@media screen and (max-width: 768px) {
  .top-case-section {
    padding: 60px 0 0 0;
  }
}
.top-case-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .top-case-section-inner {
    flex-flow: column;
    align-items: flex-start;
  }
}
.top-case-section-inner .top-case-section__txt {
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 768px) {
  .top-case-section-inner .top-case-section__txt {
    transform: translate(0, 40px);
  }
}
.top-case-section-inner .top-case-section__txt.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  .top-case-section-inner .top-case-section__txt {
    width: auto;
    margin: 0 0 30px 0;
    width: 100%;
  }
}
.top-case-section-inner .top-case-section__txt .top-case-section__heading {
  margin: 0 0 50px 0;
}
@media screen and (max-width: 768px) {
  .top-case-section-inner .top-case-section__txt .top-case-section__heading {
    margin: 0 0 30px 0;
  }
}
.top-case-section-inner .top-case-section__txt .top-case-section__heading h2 {
  font-size: 1.8rem;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  color: #fff;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 768px) {
  .top-case-section-inner .top-case-section__txt .top-case-section__heading h2 {
    font-size: 1.6rem;
    margin: 0 0 15px 0;
  }
}
.top-case-section-inner .top-case-section__txt .top-case-section__heading .en-txt {
  font-size: 5rem;
  font-weight: 400;
  font-family: "EB Garamond", serif;
  line-height: 1;
  color: #fff;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .top-case-section-inner .top-case-section__txt .top-case-section__heading .en-txt {
    font-size: 2.8rem;
  }
}
.top-case-section-inner .top-case-section__txt h3 {
  font-size: 3.6rem;
  font-family: "EB Garamond", serif;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
  margin: 0 0 60px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-case-section-inner .top-case-section__txt h3 {
    font-size: 1.8rem;
    margin: 0 0 30px 0;
  }
}
.top-case-section-inner .top-case-section__txt > p {
  font-size: 1.6rem;
  font-family: "Hina Mincho", serif;
  font-weight: 300;
  color: #fff;
  font-weight: normal;
  line-height: 1.8;
  margin: 0 0 20px 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .top-case-section-inner .top-case-section__txt > p {
    font-size: 1.5rem;
  }
}
.top-case-section-inner .top-case-section__txt > p > a {
  color: #7A8BA5;
  transition: all 0.3s;
}
.top-case-section-inner .top-case-section__txt > p > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .top-case-section-inner .top-case-section__txt > p > a:hover {
    opacity: 1;
  }
}
.top-case-section-inner .top-case-section__txt > p span {
  color: #7A8BA5;
  font-weight: bold;
}
.top-case-section-inner .btn-view {
  opacity: 0;
  transition: all 2000ms;
}
.top-case-section-inner .btn-view a {
  font-size: 1.8rem;
  font-weight: 400;
  font-family: "EB Garamond", serif;
  line-height: 1;
  color: #fff;
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
  padding: 0 85px 0 0;
  position: relative;
}
.top-case-section-inner .btn-view a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .top-case-section-inner .btn-view a:hover {
    opacity: 1;
  }
}
.top-case-section-inner .btn-view a::after {
  content: "";
  display: inline-block;
  position: relative;
  background: url(../../images/icon_arrow_more.svg);
  background-size: 80px;
  width: 80px;
  height: 10px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.top-case-section-inner .btn-view.is-animated {
  opacity: 1;
}
.top-case-section__img {
  width: 86.5%;
  height: 710px;
  margin: 140px 0 0 auto;
  opacity: 0;
  transition: all 2000ms;
}
.top-case-section__img.is-animated {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .top-case-section__img {
    width: 100%;
    height: 400px;
    margin: 40px 0 0 0;
    padding: 0 0 0 20px;
    box-sizing: border-box;
  }
}
.top-case-section__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*--------------私たちについて-------------*/
.top-about_us-section {
  padding: 200px 20px 0 20px;
  background: #01051D;
}
@media screen and (max-width: 768px) {
  .top-about_us-section {
    padding: 60px 20px 0 20px;
  }
}
.top-about_us-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: auto;
  padding: 140px 0;
  border-top: solid 1px #fff;
  border-bottom: solid 1px #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .top-about_us-section-inner {
    padding: 60px 0;
  }
}
.top-about_us-section-inner .top-about_us-section__txt {
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
  width: 41.7%;
}
@media screen and (max-width: 768px) {
  .top-about_us-section-inner .top-about_us-section__txt {
    transform: translate(0, 40px);
  }
}
.top-about_us-section-inner .top-about_us-section__txt.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  .top-about_us-section-inner .top-about_us-section__txt {
    margin: 0 0 40px 0;
    width: 100%;
  }
}
.top-about_us-section-inner .top-about_us-section__txt .top-about_us-section__heading {
  margin: 0 0 50px 0;
}
@media screen and (max-width: 768px) {
  .top-about_us-section-inner .top-about_us-section__txt .top-about_us-section__heading {
    margin: 0 0 30px 0;
  }
}
.top-about_us-section-inner .top-about_us-section__txt .top-about_us-section__heading h2 {
  font-size: 1.8rem;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  color: #fff;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 768px) {
  .top-about_us-section-inner .top-about_us-section__txt .top-about_us-section__heading h2 {
    font-size: 1.6rem;
    margin: 0 0 15px 0;
  }
}
.top-about_us-section-inner .top-about_us-section__txt .top-about_us-section__heading .en-txt {
  font-size: 5rem;
  font-weight: 400;
  font-family: "EB Garamond", serif;
  line-height: 1;
  color: #fff;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .top-about_us-section-inner .top-about_us-section__txt .top-about_us-section__heading .en-txt {
    font-size: 2.8rem;
  }
}
.top-about_us-section-inner .top-about_us-section__txt h3 {
  font-size: 3.6rem;
  font-family: "EB Garamond", serif;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
  margin: 0 0 60px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-about_us-section-inner .top-about_us-section__txt h3 {
    font-size: 1.8rem;
    margin: 0 0 30px 0;
  }
}
.top-about_us-section-inner .top-about_us-section__txt > p {
  font-size: 1.6rem;
  font-family: "Hina Mincho", serif;
  font-weight: 300;
  color: #fff;
  font-weight: normal;
  line-height: 1.8;
  margin: 0 0 20px 0;
  margin: 0 0 60px 0;
}
@media screen and (max-width: 768px) {
  .top-about_us-section-inner .top-about_us-section__txt > p {
    font-size: 1.5rem;
  }
}
.top-about_us-section-inner .top-about_us-section__txt > p > a {
  color: #7A8BA5;
  transition: all 0.3s;
}
.top-about_us-section-inner .top-about_us-section__txt > p > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .top-about_us-section-inner .top-about_us-section__txt > p > a:hover {
    opacity: 1;
  }
}
.top-about_us-section-inner .top-about_us-section__txt > p span {
  color: #7A8BA5;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .top-about_us-section-inner .top-about_us-section__txt > p {
    margin: 0 0 40px 0;
  }
}
.top-about_us-section-inner .top-about_us-section__txt .btn-view a {
  font-size: 1.8rem;
  font-weight: 400;
  font-family: "EB Garamond", serif;
  line-height: 1;
  color: #fff;
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
  padding: 0 85px 0 0;
  position: relative;
}
.top-about_us-section-inner .top-about_us-section__txt .btn-view a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .top-about_us-section-inner .top-about_us-section__txt .btn-view a:hover {
    opacity: 1;
  }
}
.top-about_us-section-inner .top-about_us-section__txt .btn-view a::after {
  content: "";
  display: inline-block;
  position: relative;
  background: url(../../images/icon_arrow_more.svg);
  background-size: 80px;
  width: 80px;
  height: 10px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.top-about_us-section-inner .top-about_us-section__img {
  width: 50%;
  opacity: 0;
  transition: all 2000ms;
}
.top-about_us-section-inner .top-about_us-section__img.is-animated {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .top-about_us-section-inner .top-about_us-section__img {
    width: 100%;
  }
}
.top-about_us-section-inner .top-about_us-section__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*--------------私たちのサービス-------------*/
.top-service-section {
  padding: 200px 0;
  background: #01051D;
}
@media screen and (max-width: 768px) {
  .top-service-section {
    padding: 60px 0;
  }
}
.top-service-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: auto;
  padding: 0 20px;
}
.top-service-section-inner .top-service-section__heading {
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
  margin: 0 0 100px 0;
}
@media screen and (max-width: 768px) {
  .top-service-section-inner .top-service-section__heading {
    transform: translate(0, 40px);
  }
}
.top-service-section-inner .top-service-section__heading.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  .top-service-section-inner .top-service-section__heading {
    margin: 0 0 40px 0;
  }
}
.top-service-section-inner .top-service-section__heading h2 {
  font-size: 1.8rem;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  text-align: center;
  color: #fff;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 768px) {
  .top-service-section-inner .top-service-section__heading h2 {
    font-size: 1.6rem;
    margin: 0 0 15px 0;
  }
}
.top-service-section-inner .top-service-section__heading .en-txt {
  font-size: 7rem;
  font-weight: 400;
  font-family: "EB Garamond", serif;
  text-align: center;
  line-height: 1;
  color: #fff;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .top-service-section-inner .top-service-section__heading .en-txt {
    font-size: 3.6rem;
  }
}
.top-service-section-inner .top-service-section__txt {
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
  margin: 0 0 100px 0;
}
@media screen and (max-width: 768px) {
  .top-service-section-inner .top-service-section__txt {
    transform: translate(0, 40px);
  }
}
.top-service-section-inner .top-service-section__txt.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  .top-service-section-inner .top-service-section__txt {
    margin: 0 0 40px 0;
  }
}
.top-service-section-inner .top-service-section__txt h3 {
  font-size: 3.6rem;
  font-family: "EB Garamond", serif;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  color: #fff;
  margin: 0 0 40px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-service-section-inner .top-service-section__txt h3 {
    font-size: 1.8rem;
    margin: 0 0 20px 0;
  }
}
.top-service-section-inner .top-service-section__txt > p {
  font-size: 1.6rem;
  font-family: "Hina Mincho", serif;
  font-weight: 300;
  color: #fff;
  font-weight: normal;
  line-height: 1.8;
  margin: 0 0 20px 0;
  text-align: center;
  margin: 0 0 60px 0;
}
@media screen and (max-width: 768px) {
  .top-service-section-inner .top-service-section__txt > p {
    font-size: 1.5rem;
  }
}
.top-service-section-inner .top-service-section__txt > p > a {
  color: #7A8BA5;
  transition: all 0.3s;
}
.top-service-section-inner .top-service-section__txt > p > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .top-service-section-inner .top-service-section__txt > p > a:hover {
    opacity: 1;
  }
}
.top-service-section-inner .top-service-section__txt > p span {
  color: #7A8BA5;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .top-service-section-inner .top-service-section__txt > p {
    margin: 0 0 40px 0;
    text-align: left;
  }
}
.top-service-section__btn {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .top-service-section__btn {
    padding: 0 20px;
  }
}
.top-service-section__btn-item {
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .top-service-section__btn-item {
    transform: translate(0, 40px);
  }
}
.top-service-section__btn-item.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  .top-service-section__btn-item {
    width: 100%;
    margin: 0 0 40px 0;
  }
  .top-service-section__btn-item:last-child {
    margin: 0;
  }
}
.top-service-section__btn-item .top-service-section__btn-thumbnail img {
  aspect-ratio: 2/1.17;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-service-section__btn-item .top-service-section__btn-cont {
  padding: 40px 40px 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 1400px) {
  .top-service-section__btn-item .top-service-section__btn-cont {
    flex-flow: column;
  }
}
@media screen and (max-width: 768px) {
  .top-service-section__btn-item .top-service-section__btn-cont {
    padding: 30px 20px 0 20px;
  }
}
.top-service-section__btn-item .top-service-section__btn-cont .top-service-section__btn-txt {
  margin: 0 20px 0 0;
  flex: 1;
}
@media screen and (max-width: 1400px) {
  .top-service-section__btn-item .top-service-section__btn-cont .top-service-section__btn-txt {
    margin: 0 0 30px 0;
  }
}
.top-service-section__btn-item .top-service-section__btn-cont .top-service-section__btn-txt h3 {
  font-size: 2.4rem;
  font-family: "EB Garamond", serif;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
  margin: 0 0 15px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-service-section__btn-item .top-service-section__btn-cont .top-service-section__btn-txt h3 {
    font-size: 1.8rem;
  }
}
.top-service-section__btn-item .top-service-section__btn-cont .top-service-section__btn-txt > p {
  font-size: 1.6rem;
  font-family: "Hina Mincho", serif;
  font-weight: 300;
  color: #fff;
  font-weight: normal;
  line-height: 1.8;
  margin: 0 0 20px 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .top-service-section__btn-item .top-service-section__btn-cont .top-service-section__btn-txt > p {
    font-size: 1.5rem;
  }
}
.top-service-section__btn-item .top-service-section__btn-cont .top-service-section__btn-txt > p > a {
  color: #7A8BA5;
  transition: all 0.3s;
}
.top-service-section__btn-item .top-service-section__btn-cont .top-service-section__btn-txt > p > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .top-service-section__btn-item .top-service-section__btn-cont .top-service-section__btn-txt > p > a:hover {
    opacity: 1;
  }
}
.top-service-section__btn-item .top-service-section__btn-cont .top-service-section__btn-txt > p span {
  color: #7A8BA5;
  font-weight: bold;
}
.top-service-section__btn-item .top-service-section__btn-cont .btn-view a {
  font-size: 1.8rem;
  font-weight: 400;
  font-family: "EB Garamond", serif;
  line-height: 1;
  color: #fff;
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
  padding: 0 85px 0 0;
  position: relative;
}
.top-service-section__btn-item .top-service-section__btn-cont .btn-view a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .top-service-section__btn-item .top-service-section__btn-cont .btn-view a:hover {
    opacity: 1;
  }
}
.top-service-section__btn-item .top-service-section__btn-cont .btn-view a::after {
  content: "";
  display: inline-block;
  position: relative;
  background: url(../../images/icon_arrow_more.svg);
  background-size: 80px;
  width: 80px;
  height: 10px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

/*--------------新着情報-------------*/
.top-news-section {
  padding: 200px 20px;
  background: url(../../images/top_bg_news.jpg);
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .top-news-section {
    padding: 60px 20px;
  }
}
.top-news-section-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: auto;
}
.top-news-section-inner .top-news-section__heading {
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
  margin: 0 0 100px 0;
}
@media screen and (max-width: 768px) {
  .top-news-section-inner .top-news-section__heading {
    transform: translate(0, 40px);
  }
}
.top-news-section-inner .top-news-section__heading.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  .top-news-section-inner .top-news-section__heading {
    margin: 0 0 40px 0;
  }
}
.top-news-section-inner .top-news-section__heading h2 {
  font-size: 1.8rem;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  color: #fff;
  margin: 0 0 20px 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-news-section-inner .top-news-section__heading h2 {
    font-size: 1.6rem;
    margin: 0 0 15px 0;
  }
}
.top-news-section-inner .top-news-section__heading .en-txt {
  font-size: 5rem;
  font-weight: 400;
  font-family: "EB Garamond", serif;
  line-height: 1;
  color: #fff;
  margin: 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-news-section-inner .top-news-section__heading .en-txt {
    font-size: 3.6rem;
  }
}
.top-news-section-inner .top-news-section__list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0;
}
.top-news-section-inner .top-news-section__list::after {
  content: "";
  display: block;
  height: auto;
  width: 32.38%;
}
@media screen and (max-width: 768px) {
  .top-news-section-inner .top-news-section__list::after {
    width: 47.8%;
  }
}
.top-news-section-inner .top-news-section__list-item {
  width: 32.38%;
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
  margin: 0 0 100px 0;
}
@media screen and (max-width: 768px) {
  .top-news-section-inner .top-news-section__list-item {
    transform: translate(0, 40px);
  }
}
.top-news-section-inner .top-news-section__list-item.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  .top-news-section-inner .top-news-section__list-item {
    width: 47.8%;
    margin: 0 0 20px 0;
  }
}
.top-news-section-inner .top-news-section__list-item:nth-of-type(2), .top-news-section-inner .top-news-section__list-item:nth-of-type(5), .top-news-section-inner .top-news-section__list-item:nth-of-type(8), .top-news-section-inner .top-news-section__list-item:nth-of-type(11) {
  transition-delay: 200ms;
}
@media screen and (max-width: 768px) {
  .top-news-section-inner .top-news-section__list-item:nth-of-type(2), .top-news-section-inner .top-news-section__list-item:nth-of-type(5), .top-news-section-inner .top-news-section__list-item:nth-of-type(8), .top-news-section-inner .top-news-section__list-item:nth-of-type(11) {
    transition-delay: 0ms;
  }
}
.top-news-section-inner .top-news-section__list-item:nth-of-type(3), .top-news-section-inner .top-news-section__list-item:nth-of-type(6), .top-news-section-inner .top-news-section__list-item:nth-of-type(9), .top-news-section-inner .top-news-section__list-item:nth-of-type(12) {
  transition-delay: 400ms;
}
@media screen and (max-width: 768px) {
  .top-news-section-inner .top-news-section__list-item:nth-of-type(3), .top-news-section-inner .top-news-section__list-item:nth-of-type(6), .top-news-section-inner .top-news-section__list-item:nth-of-type(9), .top-news-section-inner .top-news-section__list-item:nth-of-type(12) {
    transition-delay: 0ms;
  }
}
.top-news-section-inner .top-news-section__list-item a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
}
.top-news-section-inner .top-news-section__list-item a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .top-news-section-inner .top-news-section__list-item a:hover {
    opacity: 1;
  }
}
.top-news-section-inner .top-news-section__list-item a .news-section__list-thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-news-section-inner .top-news-section__list-item a .news-section__list-txt {
  margin: 20px 0 0 0;
}
@media screen and (max-width: 768px) {
  .top-news-section-inner .top-news-section__list-item a .news-section__list-txt {
    margin: 15px 0 0 0;
  }
}
.top-news-section-inner .top-news-section__list-item a .news-section__list-txt .news-section__list-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.top-news-section-inner .top-news-section__list-item a .news-section__list-txt .news-section__list-info .time-txt {
  font-size: 1.4rem;
  font-family: "EB Garamond", serif;
  font-weight: 600;
  color: #fff;
  margin: 0 15px 10px 0;
}
@media screen and (max-width: 768px) {
  .top-news-section-inner .top-news-section__list-item a .news-section__list-txt .news-section__list-info .time-txt {
    font-size: 1.2rem;
    margin: 0 10px 5px 0;
  }
}
.top-news-section-inner .top-news-section__list-item a .news-section__list-txt .news-section__list-info ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.top-news-section-inner .top-news-section__list-item a .news-section__list-txt .news-section__list-info ul li {
  padding: 5px 15px;
  box-sizing: border-box;
  border: solid 2px #fff;
  border-radius: 0.3rem;
  font-size: 1.3rem;
  font-family: "Hina Mincho", serif;
  line-height: 1.2;
  text-align: center;
  color: #fff;
  margin: 0 10px 10px 0;
}
@media screen and (max-width: 768px) {
  .top-news-section-inner .top-news-section__list-item a .news-section__list-txt .news-section__list-info ul li {
    font-size: 1.2rem;
    border: solid 1px #fff;
    padding: 5px 10px;
    margin: 0 5px 5px 0;
  }
}
.top-news-section-inner .top-news-section__list-item a .news-section__list-txt h3 {
  margin: 10px 0 0 0;
  font-size: 1.6rem;
  font-family: "Hina Mincho", serif;
  line-height: 1.4;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .top-news-section-inner .top-news-section__list-item a .news-section__list-txt h3 {
    font-size: 1.4rem;
  }
}
.top-news-section-inner .btn-view {
  text-align: center;
}
.top-news-section-inner .btn-view a {
  font-size: 1.8rem;
  font-weight: 400;
  font-family: "EB Garamond", serif;
  line-height: 1;
  color: #fff;
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
  padding: 0 85px 0 0;
  position: relative;
}
.top-news-section-inner .btn-view a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .top-news-section-inner .btn-view a:hover {
    opacity: 1;
  }
}
.top-news-section-inner .btn-view a::after {
  content: "";
  display: inline-block;
  position: relative;
  background: url(../../images/icon_arrow_more.svg);
  background-size: 80px;
  width: 80px;
  height: 10px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .top-news-section-inner .btn-view {
    margin: 20px 0 0 0;
  }
}

/*--------------お問い合わせ・ご注文-------------*/
.top-contact-section {
  padding: 200px 20px;
  background: #01051D;
}
@media screen and (max-width: 768px) {
  .top-contact-section {
    padding: 60px 20px;
  }
}
.top-contact-section-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: auto;
}
.top-contact-section-inner .top-contact-section__heading {
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
  margin: 0 0 60px 0;
}
@media screen and (max-width: 768px) {
  .top-contact-section-inner .top-contact-section__heading {
    transform: translate(0, 40px);
  }
}
.top-contact-section-inner .top-contact-section__heading.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  .top-contact-section-inner .top-contact-section__heading {
    margin: 0 0 40px 0;
  }
}
.top-contact-section-inner .top-contact-section__heading h2 {
  font-size: 1.8rem;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  text-align: center;
  color: #fff;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 768px) {
  .top-contact-section-inner .top-contact-section__heading h2 {
    font-size: 1.6rem;
    margin: 0 0 15px 0;
  }
}
.top-contact-section-inner .top-contact-section__heading .en-txt {
  font-size: 5rem;
  font-weight: 400;
  font-family: "EB Garamond", serif;
  line-height: 1;
  text-align: center;
  color: #fff;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .top-contact-section-inner .top-contact-section__heading .en-txt {
    font-size: 3.6rem;
  }
}
.top-contact-section-inner .top-contact-section__txt {
  font-size: 1.6rem;
  font-family: "Hina Mincho", serif;
  font-weight: 300;
  color: #fff;
  font-weight: normal;
  line-height: 1.8;
  margin: 0 0 20px 0;
  text-align: center;
  margin: 0 0 60px 0;
  opacity: 0;
  transition: all 2000ms;
}
@media screen and (max-width: 768px) {
  .top-contact-section-inner .top-contact-section__txt {
    font-size: 1.5rem;
  }
}
.top-contact-section-inner .top-contact-section__txt > a {
  color: #7A8BA5;
  transition: all 0.3s;
}
.top-contact-section-inner .top-contact-section__txt > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .top-contact-section-inner .top-contact-section__txt > a:hover {
    opacity: 1;
  }
}
.top-contact-section-inner .top-contact-section__txt span {
  color: #7A8BA5;
  font-weight: bold;
}
.top-contact-section-inner .top-contact-section__txt.is-animated {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .top-contact-section-inner .top-contact-section__txt {
    margin: 0 0 40px 0;
  }
}
.top-contact-section-inner .top-contact-section__cont {
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 768px) {
  .top-contact-section-inner .top-contact-section__cont {
    transform: translate(0, 40px);
  }
}
.top-contact-section-inner .top-contact-section__cont.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
.top-contact-section-inner .top-contact-section__cont-btn {
  max-width: 400px;
  width: 100%;
  margin: 0 auto 20px auto;
}
.top-contact-section-inner .top-contact-section__cont-btn a {
  width: 100%;
  text-decoration: none;
  display: block;
  padding: 16px;
  box-sizing: border-box;
  border-radius: 10rem;
  background: #fff;
  color: black;
  font-size: 2rem;
  font-family: "EB Garamond", serif;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-align: center;
  position: relative;
  display: block;
  text-decoration: none;
  transition: all 0.3s;
}
.top-contact-section-inner .top-contact-section__cont-btn a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .top-contact-section-inner .top-contact-section__cont-btn a:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .top-contact-section-inner .top-contact-section__cont-btn a {
    font-size: 1.6rem;
  }
}
.top-contact-section-inner .top-contact-section__cont > p {
  font-size: 1.6rem;
  font-family: "Hina Mincho", serif;
  font-weight: 300;
  color: #fff;
  font-weight: normal;
  line-height: 1.8;
  margin: 0 0 20px 0;
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .top-contact-section-inner .top-contact-section__cont > p {
    font-size: 1.5rem;
  }
}
.top-contact-section-inner .top-contact-section__cont > p > a {
  color: #7A8BA5;
  transition: all 0.3s;
}
.top-contact-section-inner .top-contact-section__cont > p > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .top-contact-section-inner .top-contact-section__cont > p > a:hover {
    opacity: 1;
  }
}
.top-contact-section-inner .top-contact-section__cont > p span {
  color: #7A8BA5;
  font-weight: bold;
}

/*-------------base-------------*/
/*-------------mixin-------------*/
/*-------------下層見出し-------------*/
.lower-heading {
  padding: 250px 0 0 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .lower-heading {
    padding: 110px 0 0 0;
  }
}
.lower-heading::after {
  content: "";
  display: inline-block;
  position: relative;
  background: linear-gradient(to top, rgb(1, 5, 29), transparent);
  width: 100%;
  height: 100px;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .lower-heading::after {
    height: 50px;
  }
}
.lower-heading__txt {
  opacity: 0;
  transition: all 2000ms;
  position: relative;
  padding: 0 0 110px 0;
  z-index: 2;
}
.lower-heading__txt.is-animated {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .lower-heading__txt {
    padding: 0 0 70px 0;
  }
}
.lower-heading__txt::after {
  content: "";
  display: inline-block;
  position: relative;
  background: #fff;
  width: 1px;
  height: 100px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .lower-heading__txt::after {
    height: 60px;
  }
}
.lower-heading__txt .en-txt {
  font-size: 9rem;
  font-weight: 400;
  font-family: "EB Garamond", serif;
  line-height: 1;
  text-align: center;
  color: #fff;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 768px) {
  .lower-heading__txt .en-txt {
    font-size: 5.6rem;
  }
}
.lower-heading__txt h1 {
  font-size: 2.4rem;
  font-weight: 400;
  font-family: "Hina Mincho", serif;
  text-align: center;
  color: #fff;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .lower-heading__txt h1 {
    font-size: 1.8rem;
  }
}
.lower-heading__img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  height: 100%;
  width: 100%;
}
.lower-heading__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lower-heading__img img.img-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .lower-heading__img img.img-pc {
    display: none;
  }
}
.lower-heading__img img.img-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .lower-heading__img img.img-sp {
    display: block;
  }
}

/*-------------パンくずリスト-------------*/
.bread-menu {
  padding: 20px 20px 0 20px;
  box-sizing: border-box;
}
.bread-menu span {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: normal;
  color: #fff;
}
.bread-menu span:nth-of-type(2n) {
  margin: 0 10px;
}
@media screen and (max-width: 768px) {
  .bread-menu span:nth-of-type(2n) {
    margin: 0 5px;
  }
}
.bread-menu span:nth-of-type(2n)::before {
  content: "";
  display: inline-block;
  background: url(../../images/icon_arrow_bread.svg);
  background-size: 16px;
  width: 16px;
  height: 5px;
  position: relative;
  bottom: 3px;
}
.bread-menu span a {
  color: #7A8BA5;
  transition: all 0.3s;
  position: relative;
  text-decoration: none;
}
.bread-menu span a::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #7A8BA5;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.bread-menu span a:hover::after {
  transform: scale(1, 1);
}
@media screen and (max-width: 1100px) {
  .bread-menu span a:hover::after {
    transform: scale(0, 1);
  }
}

/*-------------会社概要-------------*/
.company-section {
  background: #01051D;
}
.company-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: auto;
  padding: 200px 20px;
}
@media screen and (max-width: 768px) {
  .company-section-inner {
    padding: 60px 20px;
  }
}
.company-section-inner .company-section__table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0 auto;
}
.company-section-inner .company-section__table tbody tr {
  border-top: solid 1px #fff;
}
.company-section-inner .company-section__table tbody tr:last-child {
  border-bottom: solid 1px #fff;
}
.company-section-inner .company-section__table tbody tr td {
  font-size: 1.6rem;
  font-family: "Hina Mincho", serif;
  font-weight: 300;
  color: #fff;
  font-weight: normal;
  line-height: 1.8;
  margin: 0 0 20px 0;
  color: #fff;
  margin: 0;
  vertical-align: top;
  padding: 30px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .company-section-inner .company-section__table tbody tr td {
    font-size: 1.5rem;
  }
}
.company-section-inner .company-section__table tbody tr td > a {
  color: #7A8BA5;
  transition: all 0.3s;
}
.company-section-inner .company-section__table tbody tr td > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .company-section-inner .company-section__table tbody tr td > a:hover {
    opacity: 1;
  }
}
.company-section-inner .company-section__table tbody tr td span {
  color: #7A8BA5;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .company-section-inner .company-section__table tbody tr td {
    display: block;
    padding: 0 20px 20px 20px;
  }
}
.company-section-inner .company-section__table tbody tr td:first-child {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2;
  width: 20%;
  margin: 0;
  line-height: 1.6;
  padding: 30px 0 30px 30px;
}
@media screen and (max-width: 768px) {
  .company-section-inner .company-section__table tbody tr td:first-child {
    padding: 20px 20px 5px 20px;
    width: 100%;
  }
}
.company-section-inner .company-section__table tbody tr td iframe {
  border: none;
  aspect-ratio: 16/9;
  display: block;
  width: 100%;
  margin: 30px 0 0 0;
}
@media screen and (max-width: 768px) {
  .company-section-inner .company-section__table tbody tr td iframe {
    margin: 20px 0 0 0;
  }
}

/*-------------日本刀の歴史と五箇伝-------------*/
.history-section {
  position: relative;
}
.history-section::after {
  content: "";
  background: linear-gradient(180deg, rgb(1, 5, 29), rgb(5, 9, 34) 25%, rgb(11, 30, 60) 50%, rgb(5, 9, 34) 75%, rgb(1, 5, 29));
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: -99;
}
.history-section.is-fixed::after {
  position: fixed;
  top: 0;
  left: 0;
}
.history-section__cont {
  padding: 200px 20px;
}
@media screen and (max-width: 768px) {
  .history-section__cont {
    padding: 80px 20px;
  }
}
.history-section__cont:last-of-type {
  padding: 0 20px 200px 20px;
}
@media screen and (max-width: 768px) {
  .history-section__cont:last-of-type {
    padding: 0 20px 80px 20px;
  }
}
.history-section__cont-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: auto;
}
.history-section__cont-inner .history-section__cont-desc {
  max-width: 900px;
  width: auto;
  margin: 0 auto 120px auto;
}
@media screen and (max-width: 768px) {
  .history-section__cont-inner .history-section__cont-desc {
    margin: 0 auto 60px auto;
  }
}
.history-section__cont-inner .history-section__cont-desc .history-section__cont-heading {
  margin: 0 0 90px 0;
  color: #fff;
  opacity: 0;
  transition: all 2000ms;
}
.history-section__cont-inner .history-section__cont-desc .history-section__cont-heading.is-animated {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .history-section__cont-inner .history-section__cont-desc .history-section__cont-heading {
    margin: 0 0 40px 0;
  }
}
.history-section__cont-inner .history-section__cont-desc .history-section__cont-heading h2 {
  font-size: 4.6rem;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .history-section__cont-inner .history-section__cont-desc .history-section__cont-heading h2 {
    font-size: 2.8rem;
  }
}
.history-section__cont-inner .history-section__cont-desc .history-section__cont-heading .read-txt {
  font-size: 2.4rem;
  font-family: "Hina Mincho", serif;
  line-height: 1.4;
  text-align: center;
  margin: 20px 0 0 0;
}
@media screen and (max-width: 768px) {
  .history-section__cont-inner .history-section__cont-desc .history-section__cont-heading .read-txt {
    font-size: 2rem;
    margin: 10px 0 0 0;
  }
}
.history-section__cont-inner .history-section__cont-desc > .history-section__cont-item-img {
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 768px) {
  .history-section__cont-inner .history-section__cont-desc > .history-section__cont-item-img {
    transform: translate(0, 40px);
  }
}
.history-section__cont-inner .history-section__cont-desc > .history-section__cont-item-img.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
.history-section__cont-inner .history-section__cont-desc > .history-section__cont-item-txt {
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 768px) {
  .history-section__cont-inner .history-section__cont-desc > .history-section__cont-item-txt {
    transform: translate(0, 40px);
  }
}
.history-section__cont-inner .history-section__cont-desc > .history-section__cont-item-txt.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
.history-section__cont-inner .history-section__cont-desc > p {
  font-size: 1.8rem;
  font-family: "Hina Mincho", serif;
  text-align: center;
  color: #fff;
  line-height: 2;
  margin: 0 0 30px 0;
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .history-section__cont-inner .history-section__cont-desc > p {
    font-size: 1.6rem;
    margin: 0 0 20px 0;
  }
}
@media screen and (max-width: 768px) {
  .history-section__cont-inner .history-section__cont-desc > p {
    transform: translate(0, 40px);
  }
}
.history-section__cont-inner .history-section__cont-desc > p.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
.history-section__cont-inner .history-section__cont-item {
  max-width: 900px;
  width: auto;
  margin: 0 auto 120px auto;
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 768px) {
  .history-section__cont-inner .history-section__cont-item {
    transform: translate(0, 40px);
  }
}
.history-section__cont-inner .history-section__cont-item.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  .history-section__cont-inner .history-section__cont-item {
    margin: 0 auto 60px auto;
  }
}
.history-section__cont-inner .history-section__cont-item:last-child {
  margin: 0 auto;
}
.history-section__cont-inner .history-section__cont-item--detail {
  max-width: 1200px;
}
.history-section__cont-inner .history-section__cont-item--detail .history-section__cont-item-txt {
  max-width: 900px;
  margin: 0 auto;
  width: auto;
}
.history-section__cont-inner .history-section__cont-item h3 {
  font-size: 2.4rem;
  font-family: "Hina Mincho", serif;
  line-height: 1.4;
  text-align: center;
  color: #fff;
  margin: 0 0 40px 0;
}
@media screen and (max-width: 768px) {
  .history-section__cont-inner .history-section__cont-item h3 {
    font-size: 2rem;
    margin: 0 0 20px 0;
  }
}
.history-section__cont-inner .history-section__cont-item-heading {
  margin: 0 0 40px 0;
}
@media screen and (max-width: 768px) {
  .history-section__cont-inner .history-section__cont-item-heading {
    margin: 0 0 20px 0;
  }
}
.history-section__cont-inner .history-section__cont-item-heading h3 {
  margin: 0;
}
.history-section__cont-inner .history-section__cont-item-heading .read-txt {
  font-size: 1.8rem;
  font-family: "Hina Mincho", serif;
  text-align: center;
  color: #fff;
  line-height: 1.4;
  margin: 20px 0 0 0;
}
@media screen and (max-width: 768px) {
  .history-section__cont-inner .history-section__cont-item-heading .read-txt {
    font-size: 1.6rem;
  }
}
.history-section__cont-inner .history-section__cont-item-name {
  display: flex;
  justify-content: end;
}
.history-section__cont-inner .history-section__cont-item-name p {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-family: 400;
  line-height: 1.4;
  padding: 5px 10px;
  box-sizing: border-box;
  max-width: 300px;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .history-section__cont-inner .history-section__cont-item-name p {
    font-size: 1.2rem;
  }
}
.history-section__cont-inner .history-section__cont-item-name p.age-txt {
  color: #fff;
  background: #102039;
}
.history-section__cont-inner .history-section__cont-item-name p.name-txt {
  background: #fff;
}
.history-section__cont-inner .history-section__cont-item-img {
  margin: 0 0 40px 0;
}
@media screen and (max-width: 768px) {
  .history-section__cont-inner .history-section__cont-item-img {
    margin: 0 0 30px 0;
  }
}
.history-section__cont-inner .history-section__cont-item-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.history-section__cont-inner .history-section__cont-item-img figcaption {
  margin: 10px 0 0 0;
  text-align: right;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
}
.history-section__cont-inner .history-section__cont-item-txt p {
  font-size: 1.6rem;
  font-family: "Hina Mincho", serif;
  font-weight: 300;
  color: #fff;
  font-weight: normal;
  line-height: 1.8;
  margin: 0 0 20px 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .history-section__cont-inner .history-section__cont-item-txt p {
    font-size: 1.5rem;
  }
}
.history-section__cont-inner .history-section__cont-item-txt p > a {
  color: #7A8BA5;
  transition: all 0.3s;
}
.history-section__cont-inner .history-section__cont-item-txt p > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .history-section__cont-inner .history-section__cont-item-txt p > a:hover {
    opacity: 1;
  }
}
.history-section__cont-inner .history-section__cont-item-txt p span {
  color: #7A8BA5;
  font-weight: bold;
}
.history-section__cont-inner .btn-back {
  margin: 0 auto;
  max-width: 400px;
  width: 100%;
  opacity: 0;
  transition: all 2000ms;
}
.history-section__cont-inner .btn-back a {
  width: 100%;
  text-decoration: none;
  display: block;
  padding: 20px;
  box-sizing: border-box;
  background: rgba(1, 5, 29, 0.2);
  color: #fff;
  border: solid 1px #fff;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-align: center;
  position: relative;
  display: block;
  text-decoration: none;
  transition: all 0.3s;
}
.history-section__cont-inner .btn-back a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .history-section__cont-inner .btn-back a:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .history-section__cont-inner .btn-back a {
    padding: 19px 20px;
    font-size: 1.6rem;
  }
}
.history-section__cont-inner .btn-back a::after {
  content: "";
  display: inline-block;
  position: relative;
  background: url(../../images/icon_arrow_l.svg);
  background-size: 30px;
  width: 30px;
  height: 8px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
}
.history-section__cont-inner .btn-back.is-animated {
  opacity: 1;
}

/*-------------レコメンド_ボタン-------------*/
.recommend-cont {
  padding: 0 10px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.recommend-cont__btn {
  width: 49.74%;
}
@media screen and (max-width: 1100px) {
  .recommend-cont__btn {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .recommend-cont__btn:last-child {
    margin: 0;
  }
}
.recommend-cont__btn a {
  display: block;
  text-decoration: none;
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 2/1;
}
@media screen and (max-width: 1100px) {
  .recommend-cont__btn a {
    aspect-ratio: 1/1;
  }
}
.recommend-cont__btn a .recommend-cont__btn-txt {
  position: absolute;
  top: 50px;
  left: 50px;
  z-index: 2;
}
@media screen and (max-width: 1100px) {
  .recommend-cont__btn a .recommend-cont__btn-txt {
    top: 20px;
    left: 20px;
  }
}
.recommend-cont__btn a .recommend-cont__btn-txt h4 {
  font-size: 2.4rem;
  font-weight: 400;
  font-family: "Hina Mincho", serif;
  color: #fff;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 768px) {
  .recommend-cont__btn a .recommend-cont__btn-txt h4 {
    font-size: 1.8rem;
    margin: 0 0 15px 0;
  }
}
.recommend-cont__btn a .recommend-cont__btn-txt p {
  font-size: 1.6rem;
  font-family: "Hina Mincho", serif;
  font-weight: 300;
  color: #fff;
  font-weight: normal;
  line-height: 1.8;
  margin: 0 0 20px 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .recommend-cont__btn a .recommend-cont__btn-txt p {
    font-size: 1.5rem;
  }
}
.recommend-cont__btn a .recommend-cont__btn-txt p > a {
  color: #7A8BA5;
  transition: all 0.3s;
}
.recommend-cont__btn a .recommend-cont__btn-txt p > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .recommend-cont__btn a .recommend-cont__btn-txt p > a:hover {
    opacity: 1;
  }
}
.recommend-cont__btn a .recommend-cont__btn-txt p span {
  color: #7A8BA5;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .recommend-cont__btn a .recommend-cont__btn-txt p {
    font-size: 1.2rem;
  }
}
.recommend-cont__btn a .more-txt {
  position: absolute;
  bottom: 50px;
  right: 50px;
  margin: 0;
  font-size: 1.8rem;
  font-family: "EB Garamond", serif;
  font-weight: 300;
  line-height: 1;
  color: #fff;
  z-index: 2;
}
@media screen and (max-width: 1100px) {
  .recommend-cont__btn a .more-txt {
    font-size: 1.6rem;
    bottom: 20px;
    right: 20px;
  }
}
.recommend-cont__btn a .more-txt::after {
  content: "";
  display: inline-block;
  position: relative;
  background: url(../../images/icon_arrow_more.svg);
  background-size: 80px;
  width: 80px;
  height: 10px;
  margin: 0 0 0 10px;
  position: relative;
  bottom: 2px;
}
@media screen and (max-width: 768px) {
  .recommend-cont__btn a .more-txt::after {
    background: url(../../images/icon_arrow_r.svg);
    background-size: 30px;
    width: 30px;
    height: 8px;
  }
}
.recommend-cont__btn a img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.7s all;
}
.recommend-cont__btn a:hover img {
  transform: scale(1.2, 1.2);
  transition: 0.7s all;
}
@media screen and (max-width: 1100px) {
  .recommend-cont__btn a:hover img {
    transform: scale(1);
  }
}

/*-------------日本刀鑑賞のポイント-------------*/
.point-section {
  position: relative;
}
.point-section::after {
  content: "";
  background: linear-gradient(180deg, rgb(1, 5, 29), rgb(5, 9, 34) 25%, rgb(11, 30, 60) 50%, rgb(5, 9, 34) 75%, rgb(1, 5, 29));
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: -99;
}
.point-section.is-fixed::after {
  position: fixed;
  top: 0;
  left: 0;
}
.point-section-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: auto;
  padding: 200px 20px;
}
@media screen and (max-width: 768px) {
  .point-section-inner {
    padding: 60px 20px;
  }
}
.point-section-inner .point-section__desc {
  max-width: 900px;
  width: auto;
  margin: 0 auto 120px auto;
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 768px) {
  .point-section-inner .point-section__desc {
    transform: translate(0, 40px);
  }
}
.point-section-inner .point-section__desc.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  .point-section-inner .point-section__desc {
    margin: 0 auto 80px auto;
  }
}
.point-section-inner .point-section__desc h2 {
  font-size: 4.6rem;
  font-family: "Hina Mincho", serif;
  line-height: 1.4;
  text-align: center;
  margin: 0 0 50px 0;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .point-section-inner .point-section__desc h2 {
    margin: 0 0 30px 0;
  }
}
@media screen and (max-width: 768px) {
  .point-section-inner .point-section__desc h2 {
    font-size: 2.8rem;
  }
}
.point-section-inner .point-section__desc p {
  font-size: 1.8rem;
  font-family: "Hina Mincho", serif;
  text-align: center;
  color: #fff;
  line-height: 2;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .point-section-inner .point-section__desc p {
    font-size: 1.6rem;
  }
}
.point-section-inner .point-section__cont {
  display: flex;
  align-items: flex-start;
  max-width: 1280px;
  width: auto;
  margin: 0 auto 180px auto;
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 768px) {
  .point-section-inner .point-section__cont {
    transform: translate(0, 40px);
  }
}
.point-section-inner .point-section__cont.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  .point-section-inner .point-section__cont {
    margin: 0 auto 60px auto;
    flex-wrap: wrap;
  }
}
.point-section-inner .point-section__cont:nth-of-type(2n-1) .point-section__cont-heading {
  order: 1;
}
.point-section-inner .point-section__cont:nth-of-type(2n-1) .point-section__cont-item {
  order: 2;
}
.point-section-inner .point-section__cont-heading {
  max-width: 330px;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .point-section-inner .point-section__cont-heading {
    max-width: 100%;
    padding: 0;
    margin: 0 0 40px 0;
    order: 1;
  }
}
.point-section-inner .point-section__cont-heading .point-txt {
  font-size: 2rem;
  font-family: "Hina Mincho", serif;
  line-height: 1.4;
  text-align: center;
  color: #fff;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .point-section-inner .point-section__cont-heading .point-txt {
    font-size: 1.6rem;
    margin: 0;
  }
}
.point-section-inner .point-section__cont-heading h3 {
  font-size: 6rem;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  writing-mode: vertical-lr;
  line-height: 1.4;
  text-align: center;
  color: #fff;
  margin: 30px auto 0 auto;
}
@media screen and (max-width: 768px) {
  .point-section-inner .point-section__cont-heading h3 {
    font-size: 3.6rem;
    margin: 20px auto 0 auto;
  }
}
.point-section-inner .point-section__cont-heading .en-txt {
  font-size: 4rem;
  font-family: "EB Garamond", serif;
  font-weight: 300;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.1em;
  color: #fff;
  margin: 30px 0 0 0;
}
@media screen and (max-width: 768px) {
  .point-section-inner .point-section__cont-heading .en-txt {
    font-size: 3rem;
    margin: 20px 0 0 0;
  }
}
.point-section-inner .point-section__cont-item {
  max-width: 950px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .point-section-inner .point-section__cont-item {
    max-width: 100%;
    order: 2;
  }
}
.point-section-inner .point-section__cont-item .point-section__cont-img {
  margin: 0 0 40px 0;
}
@media screen and (max-width: 768px) {
  .point-section-inner .point-section__cont-item .point-section__cont-img {
    margin: 0 0 20px 0;
  }
}
.point-section-inner .point-section__cont-item .point-section__cont-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.point-section-inner .point-section__cont-item .point-section__cont-txt h4 {
  font-size: 2.4rem;
  font-family: "Hina Mincho", serif;
  line-height: 1.4;
  color: #fff;
  margin: 0 0 40px 0;
}
@media screen and (max-width: 768px) {
  .point-section-inner .point-section__cont-item .point-section__cont-txt h4 {
    font-size: 2rem;
    margin: 0 0 20px 0;
  }
}
.point-section-inner .point-section__cont-item .point-section__cont-txt p {
  font-size: 1.6rem;
  font-family: "Hina Mincho", serif;
  font-weight: 300;
  color: #fff;
  font-weight: normal;
  line-height: 1.8;
  margin: 0 0 20px 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .point-section-inner .point-section__cont-item .point-section__cont-txt p {
    font-size: 1.5rem;
  }
}
.point-section-inner .point-section__cont-item .point-section__cont-txt p > a {
  color: #7A8BA5;
  transition: all 0.3s;
}
.point-section-inner .point-section__cont-item .point-section__cont-txt p > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .point-section-inner .point-section__cont-item .point-section__cont-txt p > a:hover {
    opacity: 1;
  }
}
.point-section-inner .point-section__cont-item .point-section__cont-txt p span {
  color: #7A8BA5;
  font-weight: bold;
}
.point-section-inner .btn-back {
  max-width: 400px;
  width: 100%;
  opacity: 0;
  transition: all 2000ms;
  margin: 0 auto;
}
.point-section-inner .btn-back a {
  width: 100%;
  text-decoration: none;
  display: block;
  padding: 20px;
  box-sizing: border-box;
  background: rgba(1, 5, 29, 0.2);
  color: #fff;
  border: solid 1px #fff;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-align: center;
  position: relative;
  display: block;
  text-decoration: none;
  transition: all 0.3s;
}
.point-section-inner .btn-back a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .point-section-inner .btn-back a:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .point-section-inner .btn-back a {
    padding: 19px 20px;
    font-size: 1.6rem;
  }
}
.point-section-inner .btn-back a::after {
  content: "";
  display: inline-block;
  position: relative;
  background: url(../../images/icon_arrow_l.svg);
  background-size: 30px;
  width: 30px;
  height: 8px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
}
.point-section-inner .btn-back.is-animated {
  opacity: 1;
}

/*-------------新着情報-------------*/
.news-section {
  background: #01051D;
}
.news-section-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: auto;
  padding: 200px 20px;
}
@media screen and (max-width: 768px) {
  .news-section-inner {
    padding: 60px 20px;
  }
}
.news-section__category {
  padding: 0;
  margin: 0 0 90px 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .news-section__category {
    margin: 0 0 35px 0;
  }
}
.news-section__category li {
  margin: 0 10px 10px 0;
}
@media screen and (max-width: 768px) {
  .news-section__category li {
    margin: 0 5px 5px 0;
  }
}
.news-section__category li a {
  display: block;
  text-decoration: none;
  padding: 5px 15px;
  box-sizing: border-box;
  border: solid 2px #fff;
  border-radius: 0.3rem;
  font-size: 1.3rem;
  font-family: "Hina Mincho", serif;
  line-height: 1.2;
  text-align: center;
  color: #fff;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .news-section__category li a {
    font-size: 1.2rem;
    border: solid 1px #fff;
    padding: 5px 10px;
  }
}
.news-section__category li a:hover {
  background: #fff;
  color: #01051D;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .news-section__category li a:hover {
    color: #fff;
    background: transparent;
  }
}
.news-section__category li.current-cat a {
  background: #fff;
  color: #01051D;
}
.news-section__list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.news-section__list::after {
  content: "";
  display: block;
  height: auto;
  width: 32.38%;
}
@media screen and (max-width: 768px) {
  .news-section__list::after {
    width: 47.8%;
  }
}
.news-section__list-item {
  width: 32.38%;
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
  margin: 0 0 100px 0;
}
@media screen and (max-width: 768px) {
  .news-section__list-item {
    transform: translate(0, 40px);
  }
}
.news-section__list-item.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  .news-section__list-item {
    width: 47.8%;
    margin: 0 0 20px 0;
  }
}
.news-section__list-item:nth-of-type(2), .news-section__list-item:nth-of-type(5), .news-section__list-item:nth-of-type(8), .news-section__list-item:nth-of-type(11) {
  transition-delay: 200ms;
}
@media screen and (max-width: 768px) {
  .news-section__list-item:nth-of-type(2), .news-section__list-item:nth-of-type(5), .news-section__list-item:nth-of-type(8), .news-section__list-item:nth-of-type(11) {
    transition-delay: 0ms;
  }
}
.news-section__list-item:nth-of-type(3), .news-section__list-item:nth-of-type(6), .news-section__list-item:nth-of-type(9), .news-section__list-item:nth-of-type(12) {
  transition-delay: 400ms;
}
@media screen and (max-width: 768px) {
  .news-section__list-item:nth-of-type(3), .news-section__list-item:nth-of-type(6), .news-section__list-item:nth-of-type(9), .news-section__list-item:nth-of-type(12) {
    transition-delay: 0ms;
  }
}
.news-section__list-item a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
}
.news-section__list-item a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .news-section__list-item a:hover {
    opacity: 1;
  }
}
.news-section__list-item a .news-section__list-thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-section__list-item a .news-section__list-txt {
  margin: 20px 0 0 0;
}
@media screen and (max-width: 768px) {
  .news-section__list-item a .news-section__list-txt {
    margin: 15px 0 0 0;
  }
}
.news-section__list-item a .news-section__list-txt .news-section__list-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.news-section__list-item a .news-section__list-txt .news-section__list-info .time-txt {
  font-size: 1.4rem;
  font-family: "EB Garamond", serif;
  font-weight: 600;
  color: #fff;
  margin: 0 15px 10px 0;
}
@media screen and (max-width: 768px) {
  .news-section__list-item a .news-section__list-txt .news-section__list-info .time-txt {
    font-size: 1.2rem;
    margin: 0 10px 5px 0;
  }
}
.news-section__list-item a .news-section__list-txt .news-section__list-info ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.news-section__list-item a .news-section__list-txt .news-section__list-info ul li {
  padding: 5px 15px;
  box-sizing: border-box;
  border: solid 2px #fff;
  border-radius: 0.3rem;
  font-size: 1.3rem;
  font-family: "Hina Mincho", serif;
  line-height: 1.2;
  text-align: center;
  color: #fff;
  margin: 0 10px 10px 0;
}
@media screen and (max-width: 768px) {
  .news-section__list-item a .news-section__list-txt .news-section__list-info ul li {
    font-size: 1.2rem;
    border: solid 1px #fff;
    padding: 5px 10px;
    margin: 0 5px 5px 0;
  }
}
.news-section__list-item a .news-section__list-txt h3 {
  margin: 10px 0 0 0;
  font-size: 1.6rem;
  font-family: "Hina Mincho", serif;
  line-height: 1.4;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .news-section__list-item a .news-section__list-txt h3 {
    font-size: 1.4rem;
  }
}
.news-section .m-pagenation {
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-section .m-pagenation .m-pagenation__prev {
  margin: 0 5px 0 0;
}
.news-section .m-pagenation .m-pagenation__prev a {
  display: block;
  text-decoration: none;
  color: #fff;
  border: solid 2px #fff;
  box-sizing: border-box;
  transition: all 0.3s;
  width: 60px;
  height: 60px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .news-section .m-pagenation .m-pagenation__prev a {
    width: 40px;
    height: 40px;
    border: solid 1px #fff;
  }
}
.news-section .m-pagenation .m-pagenation__prev a span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.news-section .m-pagenation .m-pagenation__prev a span::after {
  content: "";
  display: inline-block;
  position: relative;
  background: url(../../images/icon_arrow_l.svg);
  background-size: 30px;
  width: 30px;
  height: 8px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.news-section .m-pagenation .m-pagenation__prev a:hover {
  background: #fff;
  transition: all 0.3s;
}
.news-section .m-pagenation .m-pagenation__prev a:hover span::after {
  background: url(../../images/icon_arrow_l_bk.svg);
  background-size: 30px;
}
@media screen and (max-width: 1100px) {
  .news-section .m-pagenation .m-pagenation__prev a:hover {
    background: #fff;
  }
  .news-section .m-pagenation .m-pagenation__prev a:hover span::after {
    background: url(../../images/icon_arrow_l.svg);
    background-size: 30px;
  }
}
.news-section .m-pagenation .m-pagenation__body {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}
.news-section .m-pagenation .m-pagenation__body li {
  list-style: none;
  margin: 0 5px;
}
.news-section .m-pagenation .m-pagenation__body li a {
  display: block;
  text-decoration: none;
  color: #fff;
  border: solid 2px #fff;
  box-sizing: border-box;
  transition: all 0.3s;
  width: 60px;
  height: 60px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .news-section .m-pagenation .m-pagenation__body li a {
    width: 40px;
    height: 40px;
    border: solid 1px #fff;
  }
}
.news-section .m-pagenation .m-pagenation__body li a span {
  display: inline-block;
  font-size: 3rem;
  font-family: "EB Garamond", serif;
  font-weight: 200;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .news-section .m-pagenation .m-pagenation__body li a span {
    font-size: 2rem;
  }
}
.news-section .m-pagenation .m-pagenation__body li a:hover {
  background: #fff;
  color: #01051D;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .news-section .m-pagenation .m-pagenation__body li a:hover {
    color: #fff;
    background: #fff;
  }
}
.news-section .m-pagenation .m-pagenation__body li.current {
  background: #fff;
  color: #01051D;
  box-sizing: border-box;
  width: 60px;
  height: 60px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .news-section .m-pagenation .m-pagenation__body li.current {
    width: 40px;
    height: 40px;
  }
}
.news-section .m-pagenation .m-pagenation__body li.current span {
  display: inline-block;
  font-size: 3rem;
  font-family: "EB Garamond", serif;
  font-weight: 200;
  letter-spacing: 0.1em;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .news-section .m-pagenation .m-pagenation__body li.current span {
    font-size: 3rem;
  }
}
.news-section .m-pagenation .m-pagenation__next {
  margin: 0 0 0 5px;
}
.news-section .m-pagenation .m-pagenation__next a {
  display: block;
  text-decoration: none;
  color: #fff;
  border: solid 2px #fff;
  box-sizing: border-box;
  transition: all 0.3s;
  width: 60px;
  height: 60px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .news-section .m-pagenation .m-pagenation__next a {
    width: 40px;
    height: 40px;
    border: solid 1px #fff;
  }
}
.news-section .m-pagenation .m-pagenation__next a span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.news-section .m-pagenation .m-pagenation__next a span::after {
  content: "";
  display: inline-block;
  position: relative;
  background: url(../../images/icon_arrow_r.svg);
  background-size: 30px;
  width: 30px;
  height: 8px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.news-section .m-pagenation .m-pagenation__next a:hover {
  background: #fff;
  transition: all 0.3s;
}
.news-section .m-pagenation .m-pagenation__next a:hover span::after {
  background: url(../../images/icon_arrow_r_bk.svg);
  background-size: 30px;
}
@media screen and (max-width: 1100px) {
  .news-section .m-pagenation .m-pagenation__next a:hover {
    background: #fff;
  }
  .news-section .m-pagenation .m-pagenation__next a:hover span::after {
    background: url(../../images/icon_arrow_r.svg);
    background-size: 30px;
  }
}

/*-------------新着情報_下層-------------*/
.lower-s-heading {
  padding: 50px 20px 30px 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .lower-s-heading {
    padding: 100px 20px 20px 20px;
  }
}
.lower-s-heading__txt {
  opacity: 0;
  transition: all 2000ms;
  position: relative;
  padding: 0 0 105px 0;
  z-index: 2;
}
.lower-s-heading__txt.is-animated {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .lower-s-heading__txt {
    padding: 0 0 65px 0;
  }
}
.lower-s-heading__txt::after {
  content: "";
  display: inline-block;
  position: relative;
  background: #fff;
  width: 1px;
  height: 100px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .lower-s-heading__txt::after {
    height: 60px;
  }
}
.lower-s-heading__txt h1 {
  font-size: 4.8rem;
  font-weight: 400;
  font-family: "Hina Mincho", serif;
  text-align: center;
  color: #fff;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .lower-s-heading__txt h1 {
    font-size: 3.6rem;
  }
}
.lower-s-heading__img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  height: 100%;
  width: 100%;
}
.lower-s-heading__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lower-s-heading__img img.img-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .lower-s-heading__img img.img-pc {
    display: none;
  }
}
.lower-s-heading__img img.img-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .lower-s-heading__img img.img-sp {
    display: block;
  }
}

.news-lower-section {
  background: #01051D;
}
.news-lower-section-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: auto;
  padding: 120px 20px 200px 20px;
}
@media screen and (max-width: 768px) {
  .news-lower-section-inner {
    padding: 60px 20px 80px 20px;
  }
}
.news-lower-section-inner .news-lower-section__cont-info {
  display: flex;
  align-items: center;
  margin: 0 0 100px 0;
}
@media screen and (max-width: 768px) {
  .news-lower-section-inner .news-lower-section__cont-info {
    margin: 0 0 20px 0;
  }
}
.news-lower-section-inner .news-lower-section__cont-info .time-txt {
  font-size: 1.4rem;
  font-weight: 400;
  font-family: "EB Garamond", serif;
  line-height: 1;
  color: #fff;
  margin: 0 20px 20px 0;
}
@media screen and (max-width: 768px) {
  .news-lower-section-inner .news-lower-section__cont-info .time-txt {
    margin: 0 10px 10px 0;
  }
}
.news-lower-section-inner .news-lower-section__cont-info ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.news-lower-section-inner .news-lower-section__cont-info ul li {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.2;
  padding: 5px 15px;
  box-sizing: border-box;
  border: solid 1px #fff;
  color: #fff;
  border-radius: 0.3rem;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 768px) {
  .news-lower-section-inner .news-lower-section__cont-info ul li {
    margin: 0 0 10px 0;
  }
}
.news-lower-section-inner .news-lower-section__cont-txt {
  max-width: 1024px;
  margin: 0 auto;
  width: auto;
}
.news-lower-section-inner .news-lower-section__cont-txt .news-lower-section__cont-heading {
  margin: 0 0 80px 0;
  padding: 0 0 40px 0;
  border-bottom: solid 1px #7A8BA6;
  font-size: 3.5rem;
  font-family: "Hina Mincho", serif;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .news-lower-section-inner .news-lower-section__cont-txt .news-lower-section__cont-heading {
    font-size: 2.4rem;
    padding: 0 0 15px 0;
    margin: 0 0 30px 0;
  }
}
.news-lower-section-inner .news-lower-section__cont-txt .news-lower-section__cont-thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-lower-section-inner .news-lower-section__cont-txt > h2 {
  font-size: 2.8rem;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
  padding: 0 0 30px 0;
  margin: 80px 0 60px 0;
  position: relative;
}
.news-lower-section-inner .news-lower-section__cont-txt > h2::after {
  content: "";
  display: inline-block;
  position: relative;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #7A8BA6;
  width: 100px;
  height: 2px;
}
@media screen and (max-width: 768px) {
  .news-lower-section-inner .news-lower-section__cont-txt > h2::after {
    width: 40px;
  }
}
@media screen and (max-width: 768px) {
  .news-lower-section-inner .news-lower-section__cont-txt > h2 {
    font-size: 2.2rem;
    padding: 0 0 20px 0;
    margin: 40px 0 20px 0;
  }
}
.news-lower-section-inner .news-lower-section__cont-txt > h3 {
  font-size: 2.4rem;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
  margin: 50px 0 30px 0;
  padding: 0 0 20px 0;
  border-bottom: solid 1px #7A8BA6;
}
@media screen and (max-width: 768px) {
  .news-lower-section-inner .news-lower-section__cont-txt > h3 {
    font-size: 2rem;
    margin: 30px 0 20px 0;
  }
}
.news-lower-section-inner .news-lower-section__cont-txt > h4 {
  font-size: 2rem;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
  margin: 40px 0 30px 0;
  padding: 0 0 0 15px;
  border-left: solid 2px #7A8BA6;
}
@media screen and (max-width: 768px) {
  .news-lower-section-inner .news-lower-section__cont-txt > h4 {
    font-size: 1.8rem;
    margin: 30px 0 20px 0;
  }
}
.news-lower-section-inner .news-lower-section__cont-txt > h5 {
  font-size: 1.8rem;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
  margin: 40px 0 30px 0;
  padding: 0 0 15px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .news-lower-section-inner .news-lower-section__cont-txt > h5 {
    font-size: 1.6rem;
    margin: 30px 0 20px 0;
  }
}
.news-lower-section-inner .news-lower-section__cont-txt > p {
  font-size: 1.6rem;
  font-family: "Hina Mincho", serif;
  font-weight: 300;
  color: #fff;
  font-weight: normal;
  line-height: 1.8;
  margin: 0 0 20px 0;
  margin: 30px 0;
  font-family: "Arial", "Zen Kaku Gothic New", "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", sans-serif;
}
@media screen and (max-width: 768px) {
  .news-lower-section-inner .news-lower-section__cont-txt > p {
    font-size: 1.5rem;
  }
}
.news-lower-section-inner .news-lower-section__cont-txt > p > a {
  color: #7A8BA5;
  transition: all 0.3s;
}
.news-lower-section-inner .news-lower-section__cont-txt > p > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .news-lower-section-inner .news-lower-section__cont-txt > p > a:hover {
    opacity: 1;
  }
}
.news-lower-section-inner .news-lower-section__cont-txt > p span {
  color: #7A8BA5;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .news-lower-section-inner .news-lower-section__cont-txt > p {
    margin: 20px 0;
  }
}
.news-lower-section-inner .news-lower-section__cont-txt > figure {
  margin: 80px 0;
}
@media screen and (max-width: 768px) {
  .news-lower-section-inner .news-lower-section__cont-txt > figure {
    margin: 40px 0;
  }
}
.news-lower-section-inner .news-lower-section__cont-txt > figure img {
  display: block;
  margin: 0 auto;
  width: auto;
  max-width: 100%;
}
.news-lower-section-inner .news-lower-section__cont-txt > figure figcaption {
  font-size: 1.6rem;
  line-height: 1.6;
  margin: 20px 0 0 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .news-lower-section-inner .news-lower-section__cont-txt > figure figcaption {
    font-size: 1.5rem;
    margin: 10px 0 0 0;
  }
}
.news-lower-section-inner .news-lower-section__cont-txt > ul {
  margin: 30px 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .news-lower-section-inner .news-lower-section__cont-txt > ul {
    margin: 20px 0;
  }
}
.news-lower-section-inner .news-lower-section__cont-txt > ul li {
  font-size: 1.6rem;
  color: #fff;
  font-weight: 400;
  line-height: 2;
  margin: 0 0 10px 0;
  padding: 0 0 0 20px;
  position: relative;
}
.news-lower-section-inner .news-lower-section__cont-txt > ul li > a {
  color: #7A8BA5;
  transition: all 0.3s;
}
.news-lower-section-inner .news-lower-section__cont-txt > ul li > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .news-lower-section-inner .news-lower-section__cont-txt > ul li > a:hover {
    opacity: 1;
  }
}
.news-lower-section-inner .news-lower-section__cont-txt > ul li span {
  font-weight: 600;
  color: #7A8BA5;
}
@media screen and (max-width: 768px) {
  .news-lower-section-inner .news-lower-section__cont-txt > ul li {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
.news-lower-section-inner .news-lower-section__cont-txt > ul li::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  background: #fff;
  background-size: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .news-lower-section-inner .news-lower-section__cont-txt > ul li::before {
    top: 10px;
  }
}
.news-lower-section-inner .news-lower-section__cont-txt > ul li:last-child {
  margin: 0;
}
.news-lower-section-inner .news-lower-section__cont-txt > ol {
  margin: 30px 0;
  padding: 0;
  list-style: none;
  counter-reset: number;
}
@media screen and (max-width: 768px) {
  .news-lower-section-inner .news-lower-section__cont-txt > ol {
    margin: 20px 0;
  }
}
.news-lower-section-inner .news-lower-section__cont-txt > ol li {
  margin: 0 0 10px 0;
  padding: 0 0 0 25px;
  position: relative;
  font-size: 1.6rem;
  color: #fff;
  font-weight: 400;
  line-height: 2;
  position: relative;
}
.news-lower-section-inner .news-lower-section__cont-txt > ol li > a {
  color: #7A8BA5;
  transition: all 0.3s;
}
.news-lower-section-inner .news-lower-section__cont-txt > ol li > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .news-lower-section-inner .news-lower-section__cont-txt > ol li > a:hover {
    opacity: 1;
  }
}
.news-lower-section-inner .news-lower-section__cont-txt > ol li span {
  font-weight: 600;
  color: #7A8BA5;
}
@media screen and (max-width: 768px) {
  .news-lower-section-inner .news-lower-section__cont-txt > ol li {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
.news-lower-section-inner .news-lower-section__cont-txt > ol li::before {
  position: absolute;
  left: 0;
  top: 6px;
  counter-increment: number 1;
  content: counter(number);
  display: inline-block;
  background: #fff;
  color: #01051D;
  font-size: 1.5rem;
  font-family: "EB Garamond", serif;
  font-weight: 300;
  line-height: 1.3;
  border-radius: 50%;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  text-align: center;
}
.news-lower-section-inner .news-lower-section__cont-txt > ol li:last-child {
  margin: 0;
}
.news-lower-section-inner .news-lower-section__cont .btn-back {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}
.news-lower-section-inner .news-lower-section__cont .btn-back a {
  width: 100%;
  text-decoration: none;
  display: block;
  padding: 20px;
  box-sizing: border-box;
  background: rgba(1, 5, 29, 0.2);
  color: #fff;
  border: solid 1px #fff;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-align: center;
  position: relative;
  display: block;
  text-decoration: none;
  transition: all 0.3s;
}
.news-lower-section-inner .news-lower-section__cont .btn-back a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .news-lower-section-inner .news-lower-section__cont .btn-back a:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .news-lower-section-inner .news-lower-section__cont .btn-back a {
    padding: 19px 20px;
    font-size: 1.6rem;
  }
}
.news-lower-section-inner .news-lower-section__cont .btn-back a::after {
  content: "";
  display: inline-block;
  position: relative;
  background: url(../../images/icon_arrow_l.svg);
  background-size: 30px;
  width: 30px;
  height: 8px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
}

/*-------------アーティスト紹介-------------*/
.artists-section {
  background: #01051D;
}
.artists-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: auto;
  padding: 200px 20px 200px 20px;
}
@media screen and (max-width: 768px) {
  .artists-section-inner {
    padding: 60px 20px 40px 20px;
  }
}
.artists-section-inner .artists-section__list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.artists-section-inner .artists-section__list-item {
  width: 45.84%;
  margin: 0 0 20px 0;
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 768px) {
  .artists-section-inner .artists-section__list-item {
    transform: translate(0, 40px);
  }
}
.artists-section-inner .artists-section__list-item.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  .artists-section-inner .artists-section__list-item {
    width: 47.8%;
  }
}
.artists-section-inner .artists-section__list-item:nth-of-type(2n) {
  margin: 100px 0 20px 0;
}
@media screen and (max-width: 768px) {
  .artists-section-inner .artists-section__list-item:nth-of-type(2n) {
    margin: 40px 0 20px 0;
  }
}
.artists-section-inner .artists-section__list-item a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
}
.artists-section-inner .artists-section__list-item a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .artists-section-inner .artists-section__list-item a:hover {
    opacity: 1;
  }
}
.artists-section-inner .artists-section__list-item a::after {
  content: "";
  display: inline-block;
  position: relative;
  background: linear-gradient(to top, rgb(1, 5, 29), transparent);
  width: 100%;
  height: 60%;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .artists-section-inner .artists-section__list-item a::after {
    height: 80%;
  }
}
.artists-section-inner .artists-section__list-item a .artists-section__list-name {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .artists-section-inner .artists-section__list-item a .artists-section__list-name {
    left: 10px;
    bottom: 10px;
  }
}
.artists-section-inner .artists-section__list-item a .artists-section__list-name .area-txt {
  font-size: 2rem;
  font-family: "Hina Mincho", serif;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 5px 0;
}
@media screen and (max-width: 768px) {
  .artists-section-inner .artists-section__list-item a .artists-section__list-name .area-txt {
    font-size: 1.4rem;
  }
}
.artists-section-inner .artists-section__list-item a .artists-section__list-name h3 {
  font-size: 4.4rem;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: #fff;
  margin: 0 0 5px 0;
}
@media screen and (max-width: 768px) {
  .artists-section-inner .artists-section__list-item a .artists-section__list-name h3 {
    font-size: 2.4rem;
  }
}
.artists-section-inner .artists-section__list-item a .artists-section__list-name h3 .en-txt {
  font-size: 3.6rem;
}
@media screen and (max-width: 768px) {
  .artists-section-inner .artists-section__list-item a .artists-section__list-name h3 .en-txt {
    font-size: 1.8rem;
  }
}
.artists-section-inner .artists-section__list-item a .artists-section__list-name h3 span {
  font-size: 1.6rem;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  line-height: 1.2;
  display: block;
}
@media screen and (max-width: 768px) {
  .artists-section-inner .artists-section__list-item a .artists-section__list-name h3 span {
    font-size: 1.2rem;
  }
}
.artists-section-inner .artists-section__list-item a .artists-section__list-name .en-txt {
  font-size: 1.6rem;
  font-family: "EB Garamond", serif;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: #fff;
  margin: 0 0 5px 0;
}
@media screen and (max-width: 768px) {
  .artists-section-inner .artists-section__list-item a .artists-section__list-name .en-txt {
    font-size: 1.4rem;
  }
}
.artists-section-inner .artists-section__list-item a img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 2/2.8;
}

/*-------------アーティスト紹介_下層-------------*/
.artists-l-section__mainimg {
  position: relative;
  height: 100vh;
}
.artists-l-section__mainimg::after {
  content: "";
  display: inline-block;
  position: relative;
  background: linear-gradient(15deg, rgb(1, 5, 29), transparent 60%);
  width: 100%;
  height: 100vh;
  position: absolute;
  bottom: 0;
  left: 0;
}
.artists-l-section__mainimg-profile {
  position: absolute;
  left: 100px;
  bottom: 100px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .artists-l-section__mainimg-profile {
    left: 0;
    padding: 0 20px;
    box-sizing: border-box;
    bottom: 110px;
  }
}
.artists-l-section__mainimg-profile .catch-copy {
  font-size: 4.6rem;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  line-height: 1.4;
  margin: 0 0 40px 0;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .artists-l-section__mainimg-profile .catch-copy {
    font-size: 2rem;
    margin: 0 0 20px 0;
  }
}
.artists-l-section__mainimg-profile .artists-l-section__mainimg-name .area-txt {
  font-size: 2.4rem;
  font-family: "Hina Mincho", serif;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 5px 0;
}
@media screen and (max-width: 768px) {
  .artists-l-section__mainimg-profile .artists-l-section__mainimg-name .area-txt {
    font-size: 1.6rem;
  }
}
.artists-l-section__mainimg-profile .artists-l-section__mainimg-name h1 {
  font-size: 7.4rem;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: #fff;
  margin: 0 0 5px 0;
}
@media screen and (max-width: 768px) {
  .artists-l-section__mainimg-profile .artists-l-section__mainimg-name h1 {
    font-size: 4rem;
  }
}
.artists-l-section__mainimg-profile .artists-l-section__mainimg-name h1 .en-txt {
  font-size: 6.2rem;
}
@media screen and (max-width: 768px) {
  .artists-l-section__mainimg-profile .artists-l-section__mainimg-name h1 .en-txt {
    font-size: 2.8rem;
  }
}
.artists-l-section__mainimg-profile .artists-l-section__mainimg-name h1 span {
  font-size: 3.6rem;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  line-height: 1.2;
  display: block;
}
@media screen and (max-width: 768px) {
  .artists-l-section__mainimg-profile .artists-l-section__mainimg-name h1 span {
    font-size: 2rem;
  }
}
.artists-l-section__mainimg-profile .artists-l-section__mainimg-name > .en-txt {
  font-size: 2.6rem;
  font-family: "EB Garamond", serif;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: #fff;
  margin: 0 0 5px 0;
}
@media screen and (max-width: 768px) {
  .artists-l-section__mainimg-profile .artists-l-section__mainimg-name > .en-txt {
    font-size: 1.4rem;
  }
}
.artists-l-section__mainimg-btn {
  max-width: 280px;
  width: 100%;
  position: absolute;
  right: 0;
  bottom: 100px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .artists-l-section__mainimg-btn {
    bottom: 30px;
  }
}
.artists-l-section__mainimg-btn a {
  width: 100%;
  text-decoration: none;
  display: block;
  padding: 15px;
  box-sizing: border-box;
  border-radius: 10rem 0 0 10rem;
  background: #fff;
  color: black;
  display: block;
  text-decoration: none;
  transition: all 0.3s;
}
.artists-l-section__mainimg-btn a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .artists-l-section__mainimg-btn a:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .artists-l-section__mainimg-btn a {
    padding: 10px;
  }
}
.artists-l-section__mainimg-btn a .name-txt {
  font-size: 1.8rem;
  font-family: "EB Garamond", serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .artists-l-section__mainimg-btn a .name-txt {
    font-size: 1.4rem;
  }
}
.artists-l-section__mainimg-btn a .main-txt {
  font-size: 2.4rem;
  font-family: "EB Garamond", serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .artists-l-section__mainimg-btn a .main-txt {
    font-size: 1.8rem;
  }
}
.artists-l-section__mainimg img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  height: 100%;
  width: 100%;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.artists-l-section__mainimg img.img-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .artists-l-section__mainimg img.img-pc {
    display: none;
  }
}
.artists-l-section__mainimg img.img-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .artists-l-section__mainimg img.img-sp {
    display: block;
  }
}
.artists-l-section__desc {
  background: #01051D;
}
.artists-l-section__desc-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  padding: 200px 20px;
}
@media screen and (max-width: 768px) {
  .artists-l-section__desc-inner {
    padding: 60px 20px;
  }
}
.artists-l-section__desc-inner .artists-l-section__desc-img {
  width: 56.7%;
  opacity: 0;
  transition: all 2000ms;
}
.artists-l-section__desc-inner .artists-l-section__desc-img.is-animated {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .artists-l-section__desc-inner .artists-l-section__desc-img {
    width: 100%;
    order: 2;
  }
}
.artists-l-section__desc-inner .artists-l-section__desc-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.artists-l-section__desc-inner .artists-l-section__desc-txt {
  width: 36.7%;
}
@media screen and (max-width: 768px) {
  .artists-l-section__desc-inner .artists-l-section__desc-txt {
    width: 100%;
    order: 1;
    margin: 0 0 30px 0;
  }
}
.artists-l-section__desc-inner .artists-l-section__desc-txt p {
  font-size: 1.8rem;
  font-family: "Hina Mincho", serif;
  text-align: center;
  color: #fff;
  line-height: 2;
  margin: 0 0 30px 0;
  text-align: left;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .artists-l-section__desc-inner .artists-l-section__desc-txt p {
    font-size: 1.6rem;
    margin: 0 0 20px 0;
  }
}
@media screen and (max-width: 768px) {
  .artists-l-section__desc-inner .artists-l-section__desc-txt p {
    margin: 0;
  }
}
.artists-l-section__works {
  padding: 200px 20px;
  background: linear-gradient(180deg, rgb(1, 5, 29), rgb(5, 9, 34) 25%, rgb(11, 30, 60) 50%, rgb(5, 9, 34) 75%, rgb(1, 5, 29));
}
@media screen and (max-width: 768px) {
  .artists-l-section__works {
    padding: 60px 20px;
  }
}
.artists-l-section__works-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: auto;
}
.artists-l-section__works-inner h2 {
  font-size: 4.6rem;
  font-family: "EB Garamond", serif;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.1em;
  color: #fff;
  margin: 0 0 60px 0;
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 768px) {
  .artists-l-section__works-inner h2 {
    transform: translate(0, 40px);
  }
}
.artists-l-section__works-inner h2.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  .artists-l-section__works-inner h2 {
    font-size: 2.4rem;
    margin: 0 0 30px 0;
  }
}
.artists-l-section__works-inner .artists-l-section__works-img {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border: 1px solid #fff;
  background-color: #01051D;
  opacity: 0;
  transition: all 2000ms;
}
.artists-l-section__works-inner .artists-l-section__works-img.is-animated {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .artists-l-section__works-inner .artists-l-section__works-img {
    height: 200px;
  }
}
.artists-l-section__works-inner .artists-l-section__works-img .artists-l-section__works-katana {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.artists-l-section__works-inner .artists-l-section__works-img .artists-l-section__works-katana img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.artists-l-section__works-inner > .note-txt {
  font-size: 1.6rem;
  font-family: "Hina Mincho", serif;
  font-weight: 300;
  color: #fff;
  font-weight: normal;
  line-height: 1.8;
  margin: 0 0 20px 0;
  margin: 20px 0 0 0;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .artists-l-section__works-inner > .note-txt {
    font-size: 1.5rem;
  }
}
.artists-l-section__works-inner > .note-txt > a {
  color: #7A8BA5;
  transition: all 0.3s;
}
.artists-l-section__works-inner > .note-txt > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .artists-l-section__works-inner > .note-txt > a:hover {
    opacity: 1;
  }
}
.artists-l-section__works-inner > .note-txt span {
  color: #7A8BA5;
  font-weight: bold;
}
.artists-l-section__movie iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
}
.artists-l-section__story {
  background: #01051D;
  padding: 200px 20px;
}
@media screen and (max-width: 768px) {
  .artists-l-section__story {
    padding: 60px 20px;
  }
}
.artists-l-section__story-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: auto;
  display: flex;
}
@media screen and (max-width: 1100px) {
  .artists-l-section__story-inner {
    flex-flow: column;
  }
}
.artists-l-section__story-inner .artists-l-section__story-sidebar {
  max-width: 300px;
  width: 100%;
  padding: 0 40px 0 0;
  margin: 0 40px 0 0;
  box-sizing: border-box;
  border-right: solid 1px #fff;
}
@media screen and (max-width: 1100px) {
  .artists-l-section__story-inner .artists-l-section__story-sidebar {
    max-width: 100%;
    padding: 0 0 50px 0;
    margin: 0 0 50px 0;
    border-right: none;
    border-bottom: solid 1px #fff;
  }
}
@media screen and (max-width: 768px) {
  .artists-l-section__story-inner .artists-l-section__story-sidebar {
    padding: 0 0 30px 0;
    margin: 0 0 60px 0;
  }
}
.artists-l-section__story-inner .artists-l-section__story-sidebar .artists-l-section__story-name {
  position: sticky;
  top: 50%;
}
@media screen and (max-width: 1100px) {
  .artists-l-section__story-inner .artists-l-section__story-sidebar .artists-l-section__story-name {
    top: 0;
  }
}
.artists-l-section__story-inner .artists-l-section__story-sidebar .artists-l-section__story-name .area-txt {
  font-size: 2rem;
  font-family: "Hina Mincho", serif;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 5px 0;
}
@media screen and (max-width: 1100px) {
  .artists-l-section__story-inner .artists-l-section__story-sidebar .artists-l-section__story-name .area-txt {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .artists-l-section__story-inner .artists-l-section__story-sidebar .artists-l-section__story-name .area-txt {
    font-size: 1.6rem;
  }
}
.artists-l-section__story-inner .artists-l-section__story-sidebar .artists-l-section__story-name h2 {
  font-size: 4.4rem;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: #fff;
  margin: 0 0 5px 0;
}
@media screen and (max-width: 1100px) {
  .artists-l-section__story-inner .artists-l-section__story-sidebar .artists-l-section__story-name h2 {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .artists-l-section__story-inner .artists-l-section__story-sidebar .artists-l-section__story-name h2 {
    font-size: 4rem;
  }
}
.artists-l-section__story-inner .artists-l-section__story-sidebar .artists-l-section__story-name h2 .en-txt {
  font-size: 3.6rem;
}
@media screen and (max-width: 768px) {
  .artists-l-section__story-inner .artists-l-section__story-sidebar .artists-l-section__story-name h2 .en-txt {
    font-size: 2.8rem;
  }
}
.artists-l-section__story-inner .artists-l-section__story-sidebar .artists-l-section__story-name h2 span {
  font-size: 1.6rem;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  line-height: 1.2;
  display: block;
}
@media screen and (max-width: 768px) {
  .artists-l-section__story-inner .artists-l-section__story-sidebar .artists-l-section__story-name h2 span {
    font-size: 1.4rem;
  }
}
.artists-l-section__story-inner .artists-l-section__story-sidebar .artists-l-section__story-name .en-txt {
  font-size: 1.6rem;
  font-family: "EB Garamond", serif;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: #fff;
  margin: 0;
}
@media screen and (max-width: 1100px) {
  .artists-l-section__story-inner .artists-l-section__story-sidebar .artists-l-section__story-name .en-txt {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .artists-l-section__story-inner .artists-l-section__story-sidebar .artists-l-section__story-name .en-txt {
    font-size: 1.4rem;
  }
}
.artists-l-section__story-inner .artists-l-section__story-cont {
  flex: 1;
}
.artists-l-section__story-inner .artists-l-section__story-cont-item {
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
  margin: 180px 0 0 0;
}
@media screen and (max-width: 768px) {
  .artists-l-section__story-inner .artists-l-section__story-cont-item {
    transform: translate(0, 40px);
  }
}
.artists-l-section__story-inner .artists-l-section__story-cont-item.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  .artists-l-section__story-inner .artists-l-section__story-cont-item {
    margin: 60px 0 0 0;
  }
}
.artists-l-section__story-inner .artists-l-section__story-cont-item:first-child {
  margin: 0;
}
.artists-l-section__story-inner .artists-l-section__story-cont-item:last-child {
  margin: 100px 0 0 0;
}
@media screen and (max-width: 768px) {
  .artists-l-section__story-inner .artists-l-section__story-cont-item:last-child {
    margin: 30px 0 0 0;
  }
}
.artists-l-section__story-inner .artists-l-section__story-cont-item--aword h3 {
  font-size: 7rem;
  font-weight: 400;
  font-family: "EB Garamond", serif;
  line-height: 1;
  text-align: center;
  color: #fff;
  margin: 0 0 50px 0;
}
@media screen and (max-width: 768px) {
  .artists-l-section__story-inner .artists-l-section__story-cont-item--aword h3 {
    font-size: 5.6rem;
    margin: 0 0 30px 0;
  }
}
.artists-l-section__story-inner .artists-l-section__story-cont-item--aword .artists-l-section__aword-table {
  margin: 0 0 40px 0;
}
@media screen and (max-width: 768px) {
  .artists-l-section__story-inner .artists-l-section__story-cont-item--aword .artists-l-section__aword-table {
    margin: 0 0 30px 0;
  }
}
.artists-l-section__story-inner .artists-l-section__story-cont-item--aword .artists-l-section__aword-table:last-child {
  margin: 0;
}
.artists-l-section__story-inner .artists-l-section__story-cont-item--aword .artists-l-section__aword-table h4 {
  font-size: 1.8rem;
  font-family: "EB Garamond", serif;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
  margin: 0 0 20px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .artists-l-section__story-inner .artists-l-section__story-cont-item--aword .artists-l-section__aword-table h4 {
    font-size: 1.6rem;
    margin: 0 0 15px 0;
  }
}
.artists-l-section__story-inner .artists-l-section__story-cont-item--aword .artists-l-section__aword-table table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0 auto;
}
.artists-l-section__story-inner .artists-l-section__story-cont-item--aword .artists-l-section__aword-table table tbody tr {
  border-top: solid 1px #fff;
}
.artists-l-section__story-inner .artists-l-section__story-cont-item--aword .artists-l-section__aword-table table tbody tr:last-child {
  border-bottom: solid 1px #fff;
}
.artists-l-section__story-inner .artists-l-section__story-cont-item--aword .artists-l-section__aword-table table tbody tr td {
  font-size: 1.6rem;
  font-family: "Hina Mincho", serif;
  font-weight: 300;
  color: #fff;
  font-weight: normal;
  line-height: 1.8;
  margin: 0 0 20px 0;
  margin: 0;
  vertical-align: top;
  padding: 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .artists-l-section__story-inner .artists-l-section__story-cont-item--aword .artists-l-section__aword-table table tbody tr td {
    font-size: 1.5rem;
  }
}
.artists-l-section__story-inner .artists-l-section__story-cont-item--aword .artists-l-section__aword-table table tbody tr td > a {
  color: #7A8BA5;
  transition: all 0.3s;
}
.artists-l-section__story-inner .artists-l-section__story-cont-item--aword .artists-l-section__aword-table table tbody tr td > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .artists-l-section__story-inner .artists-l-section__story-cont-item--aword .artists-l-section__aword-table table tbody tr td > a:hover {
    opacity: 1;
  }
}
.artists-l-section__story-inner .artists-l-section__story-cont-item--aword .artists-l-section__aword-table table tbody tr td span {
  color: #7A8BA5;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .artists-l-section__story-inner .artists-l-section__story-cont-item--aword .artists-l-section__aword-table table tbody tr td {
    display: block;
    padding: 0 15px 15px 15px;
  }
}
.artists-l-section__story-inner .artists-l-section__story-cont-item--aword .artists-l-section__aword-table table tbody tr td:first-child {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  width: 20%;
  margin: 0;
  line-height: 1.6;
  padding: 20px 0 20px 20px;
}
@media screen and (max-width: 768px) {
  .artists-l-section__story-inner .artists-l-section__story-cont-item--aword .artists-l-section__aword-table table tbody tr td:first-child {
    padding: 15px 15px 5px 15px;
    width: 100%;
  }
}
.artists-l-section__story-inner .artists-l-section__story-cont-item .artists-l-section__item-img {
  margin: 0 0 60px 0;
}
@media screen and (max-width: 768px) {
  .artists-l-section__story-inner .artists-l-section__story-cont-item .artists-l-section__item-img {
    margin: 0 0 30px 0;
  }
}
.artists-l-section__story-inner .artists-l-section__story-cont-item .artists-l-section__item-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.artists-l-section__story-inner .artists-l-section__story-cont-item .artists-l-section__item-txt h3 {
  font-size: 3.6rem;
  font-family: "EB Garamond", serif;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
  margin: 0 0 60px 0;
  padding: 0 0 0 100px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .artists-l-section__story-inner .artists-l-section__story-cont-item .artists-l-section__item-txt h3 {
    font-size: 2rem;
    margin: 0 0 20px 0;
    padding: 0 0 0 50px;
  }
}
.artists-l-section__story-inner .artists-l-section__story-cont-item .artists-l-section__item-txt h3::before {
  content: "";
  display: inline-block;
  position: relative;
  background: #fff;
  width: 90px;
  height: 1px;
  position: absolute;
  top: 25px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .artists-l-section__story-inner .artists-l-section__story-cont-item .artists-l-section__item-txt h3::before {
    width: 40px;
    top: 14px;
  }
}
.artists-l-section__story-inner .artists-l-section__story-cont-item .artists-l-section__item-txt p {
  font-size: 1.6rem;
  font-family: "Hina Mincho", serif;
  font-weight: 300;
  color: #fff;
  font-weight: normal;
  line-height: 1.8;
  margin: 0 0 20px 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .artists-l-section__story-inner .artists-l-section__story-cont-item .artists-l-section__item-txt p {
    font-size: 1.5rem;
  }
}
.artists-l-section__story-inner .artists-l-section__story-cont-item .artists-l-section__item-txt p > a {
  color: #7A8BA5;
  transition: all 0.3s;
}
.artists-l-section__story-inner .artists-l-section__story-cont-item .artists-l-section__item-txt p > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .artists-l-section__story-inner .artists-l-section__story-cont-item .artists-l-section__item-txt p > a:hover {
    opacity: 1;
  }
}
.artists-l-section__story-inner .artists-l-section__story-cont-item .artists-l-section__item-txt p span {
  color: #7A8BA5;
  font-weight: bold;
}
.artists-l-section__story-inner .artists-l-section__story-cont-item .artists-l-section__item-txt p:last-child {
  margin: 0;
}
.artists-l-section__story-inner .artists-l-section__story-cont-item .btn-back {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}
.artists-l-section__story-inner .artists-l-section__story-cont-item .btn-back a {
  width: 100%;
  text-decoration: none;
  display: block;
  padding: 20px;
  box-sizing: border-box;
  background: rgba(1, 5, 29, 0.2);
  color: #fff;
  border: solid 1px #fff;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-align: center;
  position: relative;
  display: block;
  text-decoration: none;
  transition: all 0.3s;
}
.artists-l-section__story-inner .artists-l-section__story-cont-item .btn-back a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .artists-l-section__story-inner .artists-l-section__story-cont-item .btn-back a:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .artists-l-section__story-inner .artists-l-section__story-cont-item .btn-back a {
    padding: 19px 20px;
    font-size: 1.6rem;
  }
}
.artists-l-section__story-inner .artists-l-section__story-cont-item .btn-back a::after {
  content: "";
  display: inline-block;
  position: relative;
  background: url(../../images/icon_arrow_l.svg);
  background-size: 30px;
  width: 30px;
  height: 8px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
}

/*-------------ご依頼・お問い合わせ-------------*/
.contact-section {
  background: #01051D;
}
.contact-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: auto;
  padding: 200px 20px 200px 20px;
}
@media screen and (max-width: 768px) {
  .contact-section-inner {
    padding: 60px 20px 40px 20px;
  }
}
.contact-section-inner .contact-section__desc h2 {
  font-size: 3.2rem;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  margin: 0;
  color: #fff;
  padding: 0 0 30px 0;
  margin: 0 0 50px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .contact-section-inner .contact-section__desc h2 {
    font-size: 2.4rem;
    padding: 0 0 20px 0;
    margin: 0 0 40px 0;
  }
}
.contact-section-inner .contact-section__desc h2::after {
  content: "";
  display: inline-block;
  position: relative;
  background: #7A8BA6;
  width: 100px;
  height: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .contact-section-inner .contact-section__desc h2::after {
    width: 60px;
  }
}
.contact-section-inner .contact-section__desc p {
  font-size: 1.6rem;
  font-family: "Hina Mincho", serif;
  font-weight: 300;
  color: #fff;
  font-weight: normal;
  line-height: 1.8;
  margin: 0 0 20px 0;
  margin: 0 0 80px 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact-section-inner .contact-section__desc p {
    font-size: 1.5rem;
  }
}
.contact-section-inner .contact-section__desc p > a {
  color: #7A8BA5;
  transition: all 0.3s;
}
.contact-section-inner .contact-section__desc p > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .contact-section-inner .contact-section__desc p > a:hover {
    opacity: 1;
  }
}
.contact-section-inner .contact-section__desc p span {
  color: #7A8BA5;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .contact-section-inner .contact-section__desc p {
    margin: 0 0 40px 0;
    text-align: left;
  }
}
.contact-section-inner .contact-section__form-item {
  margin: 0 0 40px 0;
  padding: 0 0 40px 0;
  border-bottom: solid 1px #34445D;
}
@media screen and (max-width: 768px) {
  .contact-section-inner .contact-section__form-item {
    flex-flow: column;
    margin: 0 0 20px 0;
    padding: 0 0 20px 0;
  }
}
.contact-section-inner .contact-section__form-item > label {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  margin: 0 0 20px 0;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .contact-section-inner .contact-section__form-item > label {
    margin: 0 0 10px 0;
    font-size: 1.5rem;
  }
}
.contact-section-inner .contact-section__form-item > label .required {
  color: #fff;
  background: #34445D;
  font-size: 1.4rem;
  font-weight: 400;
  padding: 2px 10px;
  margin: 0 10px 0 0;
}
.contact-section-inner .contact-section__form-item > label .any {
  color: #34445D;
  border: solid 1px #34445D;
  background: #fff;
  font-size: 1.4rem;
  font-weight: 400;
  padding: 2px 10px;
  margin: 0 10px 0 0;
}
.contact-section-inner .contact-section__form-item .contact-section__form-select {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
  color: #01051D;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  .contact-section-inner .contact-section__form-item .contact-section__form-select {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
.contact-section-inner .contact-section__form-item .contact-section__form-select::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 10px solid #34445D;
  pointer-events: none;
  z-index: 1;
}
.contact-section-inner .contact-section__form-item .contact-section__form-select select {
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  background-image: none;
  box-shadow: none;
  -moz-appearance: none;
       appearance: none;
  position: relative;
  box-sizing: border-box;
  letter-spacing: 0.1em;
  border: none;
  padding: 15.3px 5px;
  font-size: 1.6rem;
  box-sizing: border-box;
  background: #fff;
  line-height: 1.6;
  -webkit-appearance: none;
  outline: none;
  width: 100%;
  color: #01051D;
}
@media screen and (max-width: 768px) {
  .contact-section-inner .contact-section__form-item .contact-section__form-select select {
    font-size: 1.5rem;
    padding: 11px 5px;
  }
}
.contact-section-inner .contact-section__form-item .contact-section__form-list {
  padding: 0;
  margin: 30px 0 0 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 1100px) {
  .contact-section-inner .contact-section__form-item .contact-section__form-list {
    margin: 20px 0 0 0;
  }
}
.contact-section-inner .contact-section__form-item .contact-section__form-list li {
  width: 23.42%;
}
@media screen and (max-width: 1100px) {
  .contact-section-inner .contact-section__form-item .contact-section__form-list li {
    width: 49.26%;
    margin: 0 0 10px 0;
  }
  .contact-section-inner .contact-section__form-item .contact-section__form-list li:nth-last-child(-n+2) {
    margin: 0;
  }
}
.contact-section-inner .contact-section__form-item .contact-section__form-list li .contact-section__form-list-thumbnail img {
  aspect-ratio: 16/9;
  border: solid 1px #34445D;
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.contact-section-inner .contact-section__form-item .contact-section__form-list li .contact-section__form-list-txt {
  display: flex;
  align-items: center;
}
.contact-section-inner .contact-section__form-item .contact-section__form-list li .contact-section__form-list-txt h4 {
  font-size: 1.6rem;
  font-family: "Hina Mincho", serif;
  font-weight: 300;
  color: #fff;
  font-weight: normal;
  line-height: 1.8;
  margin: 0 0 20px 0;
  color: #01051D;
  background: #fff;
  padding: 0 15px;
  margin: 0 15px 0 0;
}
@media screen and (max-width: 768px) {
  .contact-section-inner .contact-section__form-item .contact-section__form-list li .contact-section__form-list-txt h4 {
    font-size: 1.5rem;
  }
}
.contact-section-inner .contact-section__form-item .contact-section__form-list li .contact-section__form-list-txt h4 > a {
  color: #7A8BA5;
  transition: all 0.3s;
}
.contact-section-inner .contact-section__form-item .contact-section__form-list li .contact-section__form-list-txt h4 > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .contact-section-inner .contact-section__form-item .contact-section__form-list li .contact-section__form-list-txt h4 > a:hover {
    opacity: 1;
  }
}
.contact-section-inner .contact-section__form-item .contact-section__form-list li .contact-section__form-list-txt h4 span {
  color: #7A8BA5;
  font-weight: bold;
}
@media screen and (max-width: 1100px) {
  .contact-section-inner .contact-section__form-item .contact-section__form-list li .contact-section__form-list-txt h4 {
    font-size: 1.2rem;
    padding: 0 5px;
    margin: 0 10px 0 0;
  }
}
.contact-section-inner .contact-section__form-item .contact-section__form-list li .contact-section__form-list-txt .size-txt {
  font-size: 1.6rem;
  font-family: "Hina Mincho", serif;
  font-weight: 300;
  color: #fff;
  font-weight: normal;
  line-height: 1.8;
  margin: 0 0 20px 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .contact-section-inner .contact-section__form-item .contact-section__form-list li .contact-section__form-list-txt .size-txt {
    font-size: 1.5rem;
  }
}
.contact-section-inner .contact-section__form-item .contact-section__form-list li .contact-section__form-list-txt .size-txt > a {
  color: #7A8BA5;
  transition: all 0.3s;
}
.contact-section-inner .contact-section__form-item .contact-section__form-list li .contact-section__form-list-txt .size-txt > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .contact-section-inner .contact-section__form-item .contact-section__form-list li .contact-section__form-list-txt .size-txt > a:hover {
    opacity: 1;
  }
}
.contact-section-inner .contact-section__form-item .contact-section__form-list li .contact-section__form-list-txt .size-txt span {
  color: #7A8BA5;
  font-weight: bold;
}
@media screen and (max-width: 1100px) {
  .contact-section-inner .contact-section__form-item .contact-section__form-list li .contact-section__form-list-txt .size-txt {
    font-size: 1.2rem;
  }
}
.contact-section-inner .contact-section__form-item .contact-section__form-flex {
  display: flex;
  align-items: center;
  flex: 1;
}
.contact-section-inner .contact-section__form-item .contact-section__form-flex .contact-section__form-name {
  margin: 0 20px 0 0;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
  color: #01051D;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .contact-section-inner .contact-section__form-item .contact-section__form-flex .contact-section__form-name {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
@media screen and (max-width: 768px) {
  .contact-section-inner .contact-section__form-item .contact-section__form-flex .contact-section__form-name {
    margin: 0 10px 0 0;
  }
}
.contact-section-inner .contact-section__form-item .contact-section__form-flex .contact-section__form-name span {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 300;
  color: #fff;
  font-weight: normal;
  line-height: 1.8;
  margin: 0 10px 0 0;
}
@media screen and (max-width: 768px) {
  .contact-section-inner .contact-section__form-item .contact-section__form-flex .contact-section__form-name span {
    font-size: 1.5rem;
    margin: 0 5px 0 0;
  }
}
.contact-section-inner .contact-section__form-item .contact-section__form-flex .contact-section__form-name span.error {
  color: #FF7474;
  font-weight: 500;
  font-size: 1.4rem;
  margin: 0 0 0 10px;
}
@media screen and (max-width: 768px) {
  .contact-section-inner .contact-section__form-item .contact-section__form-flex .contact-section__form-name span.error {
    margin: 0 0 0 5px;
  }
}
.contact-section-inner .contact-section__form-item .contact-section__form-flex .contact-section__form-name .wpcf7-form-control-wrap {
  margin: 0;
}
.contact-section-inner .contact-section__form-item .contact-section__form-flex .contact-section__form-name .wpcf7-form-control-wrap input {
  box-sizing: border-box;
  letter-spacing: 0.1em;
  border: none;
  padding: 15.3px 5px;
  font-size: 1.6rem;
  box-sizing: border-box;
  background: #fff;
  line-height: 1.6;
  -webkit-appearance: none;
  outline: none;
  width: 100%;
  color: #01051D;
  max-width: 200px;
}
@media screen and (max-width: 768px) {
  .contact-section-inner .contact-section__form-item .contact-section__form-flex .contact-section__form-name .wpcf7-form-control-wrap input {
    font-size: 1.5rem;
    padding: 11px 5px;
  }
}
.contact-section-inner .contact-section__form-item .contact-section__form-flex .contact-section__form-name .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  display: block;
  margin: 10px 0 0 0;
  color: #FF7474;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
}
.contact-section-inner .contact-section__form-item .contact-section__form-address {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
  color: #01051D;
}
@media screen and (max-width: 768px) {
  .contact-section-inner .contact-section__form-item .contact-section__form-address {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
.contact-section-inner .contact-section__form-item .contact-section__form-address .wpcf7-form-control-wrap {
  max-width: 200px;
  width: 100%;
}
@media screen and (max-width: 830px) {
  .contact-section-inner .contact-section__form-item .contact-section__form-address .wpcf7-form-control-wrap {
    max-width: 160px;
  }
}
.contact-section-inner .contact-section__form-item .contact-section__form-address .wpcf7-form-control-wrap input {
  box-sizing: border-box;
  letter-spacing: 0.1em;
  border: none;
  padding: 15.3px 5px;
  font-size: 1.6rem;
  box-sizing: border-box;
  background: #fff;
  line-height: 1.6;
  -webkit-appearance: none;
  outline: none;
  width: 100%;
  color: #01051D;
}
@media screen and (max-width: 768px) {
  .contact-section-inner .contact-section__form-item .contact-section__form-address .wpcf7-form-control-wrap input {
    font-size: 1.5rem;
    padding: 11px 5px;
  }
}
.contact-section-inner .contact-section__form-item .contact-section__form-address button {
  border: none;
  cursor: pointer;
  display: block;
  text-align: center;
  padding: 18px 20px;
  box-sizing: border-box;
  border: solid 1px #fff;
  background: transparent;
  text-decoration: none;
  max-width: 143px;
  width: 100%;
  margin: 0 auto;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fff;
  transition: all 0.3s;
  margin: 0 0 0 10px;
  display: block;
  text-decoration: none;
  transition: all 0.3s;
}
.contact-section-inner .contact-section__form-item .contact-section__form-address button:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .contact-section-inner .contact-section__form-item .contact-section__form-address button:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 830px) {
  .contact-section-inner .contact-section__form-item .contact-section__form-address button {
    padding: 14px 10px;
    font-size: 1.5rem;
    margin: 0 0 0 5px;
  }
}
.contact-section-inner .contact-section__form-item .contact-section__form-cont {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
  color: #01051D;
}
@media screen and (max-width: 768px) {
  .contact-section-inner .contact-section__form-item .contact-section__form-cont {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
.contact-section-inner .contact-section__form-item .contact-section__form-cont input {
  box-sizing: border-box;
  letter-spacing: 0.1em;
  border: none;
  padding: 15.3px 5px;
  font-size: 1.6rem;
  box-sizing: border-box;
  background: #fff;
  line-height: 1.6;
  -webkit-appearance: none;
  outline: none;
  width: 100%;
  color: #01051D;
}
@media screen and (max-width: 768px) {
  .contact-section-inner .contact-section__form-item .contact-section__form-cont input {
    font-size: 1.5rem;
    padding: 11px 5px;
  }
}
.contact-section-inner .contact-section__form-item .contact-section__form-cont .wpcf7-not-valid-tip {
  margin: 10px 0 0 0;
  color: #FF7474;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .contact-section-inner .contact-section__form-item .contact-section__form-cont .wpcf7-not-valid-tip {
    font-size: 1.5rem;
  }
}
.contact-section-inner .contact-section__form-item .contact-section__form-textarea {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
  color: #01051D;
}
@media screen and (max-width: 768px) {
  .contact-section-inner .contact-section__form-item .contact-section__form-textarea {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
.contact-section-inner .contact-section__form-item .contact-section__form-textarea textarea {
  box-sizing: border-box;
  letter-spacing: 0.1em;
  border: none;
  padding: 15.3px 5px;
  font-size: 1.6rem;
  box-sizing: border-box;
  background: #fff;
  line-height: 1.6;
  -webkit-appearance: none;
  outline: none;
  width: 100%;
  color: #01051D;
  outline: none;
  height: 300px;
  resize: none;
}
@media screen and (max-width: 768px) {
  .contact-section-inner .contact-section__form-item .contact-section__form-textarea textarea {
    font-size: 1.5rem;
    padding: 11px 5px;
  }
}
@media screen and (max-width: 768px) {
  .contact-section-inner .contact-section__form-item .contact-section__form-textarea textarea {
    height: 160px;
  }
}
.contact-section-inner .contact-section__form-item .contact-section__form-textarea .wpcf7-not-valid-tip {
  display: block;
  margin: 10px 0 0 0;
  color: #FF7474;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .contact-section-inner .contact-section__form-item .contact-section__form-textarea .wpcf7-not-valid-tip {
    font-size: 1.5rem;
  }
}
.contact-section-inner .contact-section__form-item-check {
  text-align: center;
  margin: 0 0 40px 0;
}
.contact-section-inner .contact-section__form-item-check .wpcf7-form-control-wrap {
  display: block;
}
.contact-section-inner .contact-section__form-item-check .wpcf7-form-control-wrap .wpcf7-form-control {
  display: block;
}
.contact-section-inner .contact-section__form-item-check .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item {
  display: block;
  margin: 0 0 15px 0;
}
@media screen and (max-width: 768px) {
  .contact-section-inner .contact-section__form-item-check .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item {
    margin: 0 0 10px 0;
  }
}
.contact-section-inner .contact-section__form-item-check .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item:last-child {
  margin: 0;
}
.contact-section-inner .contact-section__form-item-check .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item > label {
  display: inline-block;
}
.contact-section-inner .contact-section__form-item-check .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item > label input[type=checkbox] {
  display: none;
}
.contact-section-inner .contact-section__form-item-check .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item > label input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.contact-section-inner .contact-section__form-item-check .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item > label span {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 300;
  color: #fff;
  font-weight: normal;
  line-height: 1.8;
  position: relative;
  padding: 0 0 0 40px;
  margin: 0;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .contact-section-inner .contact-section__form-item-check .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item > label span {
    margin: 0;
  }
}
.contact-section-inner .contact-section__form-item-check .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item > label span::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: block;
  left: 0;
  background: #fff;
  width: 30px;
  height: 30px;
  display: inline-block;
  margin: 0 10px 0 0;
}
@media screen and (max-width: 768px) {
  .contact-section-inner .contact-section__form-item-check .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item > label span::before {
    font-size: 1.5rem;
  }
}
.contact-section-inner .contact-section__form-item-check .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item > label span::after {
  content: "";
  display: block;
  background: url(../../images/icon_check.svg);
  background-size: 12px;
  width: 12px;
  height: 9px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 9px;
  z-index: 1;
}
.contact-section-inner .contact-section__form-item-check .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  color: #FF7474;
  font-size: 1.4rem;
  font-weight: 500;
  margin: 10px 0 0 0;
}
@media screen and (max-width: 768px) {
  .contact-section-inner .contact-section__form-item-check .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
    margin: 5px 0 0 0;
  }
}
@media screen and (max-width: 768px) {
  .contact-section-inner .contact-section__form-item-check {
    margin: 0 0 20px 0;
  }
}
.contact-section-inner .contact-section__form .note-txt {
  font-size: 1.6rem;
  font-family: "Hina Mincho", serif;
  font-weight: 300;
  color: #fff;
  font-weight: normal;
  line-height: 1.8;
  margin: 0 0 20px 0;
  text-align: center;
  margin: 40px auto 0 auto;
}
@media screen and (max-width: 768px) {
  .contact-section-inner .contact-section__form .note-txt {
    font-size: 1.5rem;
  }
}
.contact-section-inner .contact-section__form .note-txt > a {
  color: #7A8BA5;
  transition: all 0.3s;
}
.contact-section-inner .contact-section__form .note-txt > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .contact-section-inner .contact-section__form .note-txt > a:hover {
    opacity: 1;
  }
}
.contact-section-inner .contact-section__form .note-txt span {
  color: #7A8BA5;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .contact-section-inner .contact-section__form .note-txt {
    margin: 20px auto 0 auto;
  }
}
.contact-section-inner .contact-section__form .btn-form {
  margin: 40px auto 0 auto;
}
@media screen and (max-width: 768px) {
  .contact-section-inner .contact-section__form .btn-form {
    margin: 20px auto 0 auto;
  }
}
.contact-section-inner .contact-section__form .btn-form .wpcf7-spinner {
  display: none;
}
.contact-section-inner .contact-section__form .btn-form span {
  display: block;
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.contact-section-inner .contact-section__form .btn-form span input {
  width: 100%;
  cursor: pointer;
  border: none;
  display: block;
  padding: 20px;
  box-sizing: border-box;
  background: rgba(1, 5, 29, 0.2);
  color: #fff;
  border: solid 1px #fff;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-align: center;
  position: relative;
  display: block;
  text-decoration: none;
  transition: all 0.3s;
}
.contact-section-inner .contact-section__form .btn-form span input:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .contact-section-inner .contact-section__form .btn-form span input:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .contact-section-inner .contact-section__form .btn-form span input {
    padding: 19px 20px;
    font-size: 1.6rem;
  }
}
.contact-section-inner .contact-section__form .btn-form span input input[type=submit] {
  -webkit-appearance: none;
  text-decoration: none;
}
.contact-section-inner .contact-section__form .btn-form span::after {
  content: "";
  display: inline-block;
  position: relative;
  background: url(../../images/icon_arrow_r.svg);
  background-size: 30px;
  width: 30px;
  height: 8px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}
.contact-section-inner .contact-section__form .wpcf7-response-output {
  display: block;
  margin: 20px 0 0 0 !important;
  padding: 0 !important;
  border: none !important;
  color: #FF7474;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact-section-inner .contact-section__form .wpcf7-response-output {
    font-size: 1.5rem;
  }
}

/*-------------日本刀のカスタムオーダ-------------*/
.custom-section {
  position: relative;
}
.custom-section::after {
  content: "";
  background: linear-gradient(180deg, rgb(1, 5, 29), rgb(5, 9, 34) 25%, rgb(11, 30, 60) 50%, rgb(5, 9, 34) 75%, rgb(1, 5, 29));
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: -99;
}
.custom-section.is-fixed::after {
  position: fixed;
  top: 0;
  left: 0;
}
.custom-section__desc-inner {
  padding: 200px 20px 0 20px;
  max-width: 1200px;
  margin: 0 auto 120px auto;
}
@media screen and (max-width: 768px) {
  .custom-section__desc-inner {
    padding: 60px 20px 0 20px;
    margin: 0 auto 60px auto;
  }
}
.custom-section__desc-inner h2 {
  font-size: 4.6rem;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  margin: 0 0 90px 0;
  color: #fff;
  opacity: 0;
  transition: all 2000ms;
}
.custom-section__desc-inner h2.is-animated {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .custom-section__desc-inner h2 {
    font-size: 2.8rem;
    margin: 0 0 40px 0;
  }
}
.custom-section__desc-inner .custom-section__desc-txt {
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 768px) {
  .custom-section__desc-inner .custom-section__desc-txt {
    transform: translate(0, 40px);
  }
}
.custom-section__desc-inner .custom-section__desc-txt.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
.custom-section__desc-inner .custom-section__desc-txt p {
  font-size: 1.8rem;
  font-family: "Hina Mincho", serif;
  text-align: center;
  color: #fff;
  line-height: 2;
  margin: 0 0 30px 0;
}
@media screen and (max-width: 768px) {
  .custom-section__desc-inner .custom-section__desc-txt p {
    font-size: 1.5rem;
    text-align: left;
    margin: 0 0 20px 0;
  }
}
.custom-section__desc-inner .custom-section__desc-txt p:last-child {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .custom-section__desc .custom-section__desc-img {
    aspect-ratio: 1/1;
  }
}
.custom-section__desc .custom-section__desc-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.custom-section__order {
  padding: 200px 20px;
  background: #01051D;
}
@media screen and (max-width: 768px) {
  .custom-section__order {
    padding: 60px 20px;
  }
}
.custom-section__order-inner {
  max-width: 1600px;
  margin: 0 auto;
  width: auto;
  padding: 0 0 140px 0;
  margin: 0 auto 60px auto;
  border-bottom: #7A8BA6 solid 1px;
}
@media screen and (max-width: 768px) {
  .custom-section__order-inner {
    margin: 0 0 60px 0;
    padding: 0 0 40px 0;
  }
}
.custom-section__order-inner .custom-section__order-heading {
  opacity: 0;
  transition: all 2000ms;
  margin: 0 0 50px 0;
}
.custom-section__order-inner .custom-section__order-heading.is-animated {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .custom-section__order-inner .custom-section__order-heading {
    margin: 0 0 20px 0;
  }
}
.custom-section__order-inner .custom-section__order-heading .en-txt {
  font-size: 7rem;
  font-weight: 400;
  font-family: "EB Garamond", serif;
  line-height: 1;
  text-align: center;
  color: #fff;
  margin: 0 0 50px 0;
}
@media screen and (max-width: 768px) {
  .custom-section__order-inner .custom-section__order-heading .en-txt {
    font-size: 5.6rem;
    margin: 0 0 20px 0;
  }
}
.custom-section__order-inner .custom-section__order-heading h2 {
  font-size: 3.6rem;
  font-weight: 400;
  font-family: "Hina Mincho", serif;
  text-align: center;
  color: #fff;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .custom-section__order-inner .custom-section__order-heading h2 {
    font-size: 1.8rem;
  }
}
.custom-section__order-inner > p {
  font-size: 1.6rem;
  font-family: "Hina Mincho", serif;
  font-weight: 300;
  color: #fff;
  font-weight: normal;
  line-height: 1.8;
  margin: 0 0 20px 0;
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .custom-section__order-inner > p {
    font-size: 1.5rem;
  }
}
.custom-section__order-inner > p > a {
  color: #7A8BA5;
  transition: all 0.3s;
}
.custom-section__order-inner > p > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .custom-section__order-inner > p > a:hover {
    opacity: 1;
  }
}
.custom-section__order-inner > p span {
  color: #7A8BA5;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .custom-section__order-inner > p {
    transform: translate(0, 40px);
  }
}
.custom-section__order-inner > p.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
.custom-section__order-flex {
  max-width: 1600px;
  margin: 0 auto;
  width: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.custom-section__order-flex .custom-section__order-anchor {
  width: 18.8%;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .custom-section__order-flex .custom-section__order-anchor {
    width: 100%;
    margin: 0 0 40px 0;
  }
}
.custom-section__order-flex .custom-section__order-anchor li a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  padding: 50px 20px;
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  border-bottom: #7A8BA6 solid 1px;
}
.custom-section__order-flex .custom-section__order-anchor li a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .custom-section__order-flex .custom-section__order-anchor li a:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .custom-section__order-flex .custom-section__order-anchor li a {
    padding: 20px 10px;
  }
}
.custom-section__order-flex .custom-section__order-anchor li a .number-txt {
  font-size: 4.2rem;
  font-family: "EB Garamond", serif;
  line-height: 1;
  margin: 0 15px 0 0;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .custom-section__order-flex .custom-section__order-anchor li a .number-txt {
    font-size: 3.2rem;
    margin: 0 10px 0 0;
  }
}
.custom-section__order-flex .custom-section__order-anchor li a .anchor-txt {
  font-size: 2rem;
  font-family: "Hina Mincho", serif;
  color: #fff;
  line-height: 1.4;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .custom-section__order-flex .custom-section__order-anchor li a .anchor-txt {
    font-size: 1.5rem;
  }
}
.custom-section__order-flex .custom-section__order-anchor li:first-child a {
  border-top: #7A8BA6 solid 1px;
}
.custom-section__order-flex .custom-section__order-cont {
  width: 75%;
}
@media screen and (max-width: 768px) {
  .custom-section__order-flex .custom-section__order-cont {
    width: 100%;
  }
}
.custom-section__order-flex .custom-section__order-cont .custom-section__order-item {
  padding: 50px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 0 60px 0;
  display: flex;
  align-items: flex-start;
}
.custom-section__order-flex .custom-section__order-cont .custom-section__order-item:last-child {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .custom-section__order-flex .custom-section__order-cont .custom-section__order-item {
    padding: 30px 20px;
    margin: 0 0 30px 0;
  }
}
.custom-section__order-flex .custom-section__order-cont .custom-section__order-item .number-txt {
  font-size: 4.2rem;
  font-weight: 400;
  font-family: "EB Garamond", serif;
  line-height: 1;
  text-align: center;
  color: #fff;
  margin: 0 15px 0 0;
}
@media screen and (max-width: 768px) {
  .custom-section__order-flex .custom-section__order-cont .custom-section__order-item .number-txt {
    font-size: 3.2rem;
    margin: 0 10px 0 0;
  }
}
.custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt {
  flex: 1;
}
.custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt h3 {
  font-size: 2.4rem;
  font-weight: 400;
  font-family: "Hina Mincho", serif;
  color: #fff;
  margin: 0 0 30px 0;
}
@media screen and (max-width: 768px) {
  .custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt h3 {
    font-size: 2.2rem;
    margin: 0 0 20px 0;
  }
}
.custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt h4 {
  font-size: 2rem;
  font-weight: 400;
  font-family: "Hina Mincho", serif;
  color: #fff;
  padding: 0 0 10px 0;
  border-bottom: solid 1px #34445D;
  margin: 30px 0;
}
@media screen and (max-width: 768px) {
  .custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt h4 {
    font-size: 2rem;
    margin: 25px 0;
  }
}
.custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt > p {
  font-size: 1.6rem;
  font-family: "Hina Mincho", serif;
  font-weight: 300;
  color: #fff;
  font-weight: normal;
  line-height: 1.8;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 768px) {
  .custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt > p {
    font-size: 1.5rem;
  }
}
.custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt > p > a {
  color: #7A8BA5;
  transition: all 0.3s;
}
.custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt > p > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt > p > a:hover {
    opacity: 1;
  }
}
.custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt > p span {
  color: #7A8BA5;
  font-weight: bold;
}
.custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt > p:last-child {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt > p:last-child {
    margin: 0;
  }
}
.custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt > p.border-txt {
  padding: 0 0 20px 0;
  border-bottom: solid 1px #34445D;
}
.custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt > ul {
  margin: 30px 0;
  padding: 0;
  list-style: none;
}
.custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt > ul.border-list {
  padding: 0 0 20px 0;
  border-bottom: solid 1px #34445D;
}
@media screen and (max-width: 768px) {
  .custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt > ul {
    margin: 20px 0;
  }
}
.custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt > ul li {
  font-size: 1.6rem;
  color: #fff;
  font-weight: 400;
  font-family: "Hina Mincho", serif;
  line-height: 2;
  margin: 0 0 10px 0;
  padding: 0 0 0 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt > ul li {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
.custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt > ul li::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  background: #fff;
  background-size: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt > ul li::before {
    top: 10px;
  }
}
.custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt > ul li:last-child {
  margin: 0;
}
.custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt .btn-back {
  max-width: 400px;
  width: 100%;
  margin: 30px auto 0 auto;
}
.custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt .btn-back a {
  width: 100%;
  text-decoration: none;
  display: block;
  padding: 20px;
  box-sizing: border-box;
  background: rgba(1, 5, 29, 0.2);
  color: #fff;
  border: solid 1px #fff;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-align: center;
  position: relative;
  display: block;
  text-decoration: none;
  transition: all 0.3s;
}
.custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt .btn-back a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt .btn-back a:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt .btn-back a {
    padding: 19px 20px;
    font-size: 1.6rem;
  }
}
.custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt .btn-back a::after {
  content: "";
  display: inline-block;
  position: relative;
  background: url(../../images/icon_arrow_l.svg);
  background-size: 30px;
  width: 30px;
  height: 8px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
}
@media screen and (max-width: 768px) {
  .custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt .btn-back {
    margin: 25px auto 0 auto;
  }
}
.custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt .btn-contact {
  max-width: 400px;
  width: 100%;
  margin: 30px auto 0 auto;
}
@media screen and (max-width: 768px) {
  .custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt .btn-contact {
    margin: 25px auto 0 auto;
  }
}
.custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt .btn-contact a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 10rem;
  background: #fff;
  width: 100%;
  text-align: center;
  font-size: 2rem;
  font-family: "EB Garamond", serif;
  font-weight: 400;
  line-height: 1;
  color: #01051D;
}
.custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt .btn-contact a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt .btn-contact a:hover {
    opacity: 1;
  }
}
.custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt .custom-section__order-item-detail {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 30px auto;
}
@media screen and (max-width: 768px) {
  .custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt .custom-section__order-item-detail {
    margin: 25px auto;
  }
}
.custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt .custom-section__order-item-detail .custom-section__detail-txt {
  width: 48.51%;
  background: rgba(235, 235, 235, 0.2);
  box-sizing: border-box;
  padding: 30px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt .custom-section__order-item-detail .custom-section__detail-txt {
    width: 100%;
    padding: 30px 20px;
    margin: 0 0 20px 0;
  }
  .custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt .custom-section__order-item-detail .custom-section__detail-txt:last-child {
    margin: 0;
  }
}
.custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt .custom-section__order-item-detail .custom-section__detail-txt h5 {
  font-size: 1.8rem;
  font-weight: 400;
  font-family: "Hina Mincho", serif;
  text-align: center;
  color: #fff;
  margin: 0 0 15px 0;
}
@media screen and (max-width: 768px) {
  .custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt .custom-section__order-item-detail .custom-section__detail-txt h5 {
    margin: 0 0 10px 0;
  }
}
.custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt .custom-section__order-item-detail .custom-section__detail-txt p {
  font-size: 1.6rem;
  font-family: "Hina Mincho", serif;
  font-weight: 300;
  color: #fff;
  font-weight: normal;
  line-height: 1.8;
  margin: 0 0 20px 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt .custom-section__order-item-detail .custom-section__detail-txt p {
    font-size: 1.5rem;
  }
}
.custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt .custom-section__order-item-detail .custom-section__detail-txt p > a {
  color: #7A8BA5;
  transition: all 0.3s;
}
.custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt .custom-section__order-item-detail .custom-section__detail-txt p > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt .custom-section__order-item-detail .custom-section__detail-txt p > a:hover {
    opacity: 1;
  }
}
.custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt .custom-section__order-item-detail .custom-section__detail-txt p span {
  color: #7A8BA5;
  font-weight: bold;
}
.custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt .custom-section__order-item-img {
  max-width: 850px;
  width: 100%;
  margin: 0 auto 30px auto;
}
@media screen and (max-width: 768px) {
  .custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt .custom-section__order-item-img {
    margin: 0 auto 25px auto;
  }
}
.custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt .custom-section__order-item-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt .custom-section__order-item-img .custom-section__img-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0 30px 0;
}
@media screen and (max-width: 768px) {
  .custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt .custom-section__order-item-img .custom-section__img-heading {
    margin: 15px 0;
    flex-flow: column;
  }
}
.custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt .custom-section__order-item-img .custom-section__img-heading h5 {
  font-size: 1.6rem;
  font-family: "Hina Mincho", serif;
  font-weight: 300;
  color: #fff;
  font-weight: normal;
  line-height: 1.8;
  margin: 0 0 20px 0;
  line-height: 1.2;
  margin: 0 20px 0 0;
  padding: 5px 20px;
  border: solid 1px #fff;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt .custom-section__order-item-img .custom-section__img-heading h5 {
    font-size: 1.5rem;
  }
}
.custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt .custom-section__order-item-img .custom-section__img-heading h5 > a {
  color: #7A8BA5;
  transition: all 0.3s;
}
.custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt .custom-section__order-item-img .custom-section__img-heading h5 > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt .custom-section__order-item-img .custom-section__img-heading h5 > a:hover {
    opacity: 1;
  }
}
.custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt .custom-section__order-item-img .custom-section__img-heading h5 span {
  color: #7A8BA5;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt .custom-section__order-item-img .custom-section__img-heading h5 {
    padding: 5px 10px;
    margin: 0 0 10px 0;
    width: 100%;
    text-align: center;
  }
}
.custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt .custom-section__order-item-img .custom-section__img-heading p {
  font-size: 1.6rem;
  font-family: "Hina Mincho", serif;
  font-weight: 300;
  color: #fff;
  font-weight: normal;
  line-height: 1.8;
  margin: 0 0 20px 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt .custom-section__order-item-img .custom-section__img-heading p {
    font-size: 1.5rem;
  }
}
.custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt .custom-section__order-item-img .custom-section__img-heading p > a {
  color: #7A8BA5;
  transition: all 0.3s;
}
.custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt .custom-section__order-item-img .custom-section__img-heading p > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt .custom-section__order-item-img .custom-section__img-heading p > a:hover {
    opacity: 1;
  }
}
.custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt .custom-section__order-item-img .custom-section__img-heading p span {
  color: #7A8BA5;
  font-weight: bold;
}
.custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt .custom-section__order-item-img .size-txt {
  font-size: 1.6rem;
  font-family: "Hina Mincho", serif;
  font-weight: 300;
  color: #fff;
  font-weight: normal;
  line-height: 1.8;
  margin: 0 0 20px 0;
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt .custom-section__order-item-img .size-txt {
    font-size: 1.5rem;
  }
}
.custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt .custom-section__order-item-img .size-txt > a {
  color: #7A8BA5;
  transition: all 0.3s;
}
.custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt .custom-section__order-item-img .size-txt > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt .custom-section__order-item-img .size-txt > a:hover {
    opacity: 1;
  }
}
.custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt .custom-section__order-item-img .size-txt span {
  color: #7A8BA5;
  font-weight: bold;
}
.custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt .custom-section__order-item-txt {
  padding: 0 0 20px 0;
  margin: 0 0 20px 0;
  border-bottom: solid 1px #34445D;
}
.custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt .custom-section__order-item-txt h5 {
  font-size: 1.8rem;
  font-weight: 400;
  font-family: "Hina Mincho", serif;
  color: #fff;
  margin: 0 0 15px 0;
}
@media screen and (max-width: 768px) {
  .custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt .custom-section__order-item-txt h5 {
    margin: 0 0 10px 0;
  }
}
.custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt .custom-section__order-item-txt p {
  font-size: 1.6rem;
  font-family: "Hina Mincho", serif;
  font-weight: 300;
  color: #fff;
  font-weight: normal;
  line-height: 1.8;
  margin: 0 0 20px 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt .custom-section__order-item-txt p {
    font-size: 1.5rem;
  }
}
.custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt .custom-section__order-item-txt p > a {
  color: #7A8BA5;
  transition: all 0.3s;
}
.custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt .custom-section__order-item-txt p > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt .custom-section__order-item-txt p > a:hover {
    opacity: 1;
  }
}
.custom-section__order-flex .custom-section__order-cont .custom-section__order-item-txt .custom-section__order-item-txt p span {
  color: #7A8BA5;
  font-weight: bold;
}

/*-------------日本刀のカスタムオーダ-------------*/
.about-section {
  position: relative;
}
.about-section::after {
  content: "";
  background: url(../../images/bg_suisai_pc.png), linear-gradient(180deg, rgb(1, 5, 29), rgb(5, 9, 34) 25%, rgb(11, 30, 60) 50%, rgb(5, 9, 34) 75%, rgb(1, 5, 29));
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -99;
}
@media screen and (max-width: 768px) {
  .about-section::after {
    background: url(../../images/bg_suisai_sp.png), linear-gradient(180deg, rgb(1, 5, 29), rgb(5, 9, 34) 25%, rgb(11, 30, 60) 50%, rgb(5, 9, 34) 75%, rgb(1, 5, 29));
  }
}
.about-section__heading {
  padding: 240px 0 0 0;
}
@media screen and (max-width: 768px) {
  .about-section__heading {
    padding: 130px 0 0 0;
  }
}
.about-section__heading-txt {
  opacity: 0;
  transition: all 2000ms;
  margin: 0 auto 90px auto;
  padding: 0 20px;
}
.about-section__heading-txt.is-animated {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .about-section__heading-txt {
    margin: 0 auto 30px auto;
  }
}
.about-section__heading-txt .en-txt {
  font-size: 9rem;
  font-weight: 400;
  font-family: "EB Garamond", serif;
  line-height: 1;
  text-align: center;
  color: #fff;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 768px) {
  .about-section__heading-txt .en-txt {
    font-size: 4.4rem;
  }
}
.about-section__heading-txt h1 {
  font-size: 2.4rem;
  font-weight: 400;
  font-family: "Hina Mincho", serif;
  text-align: center;
  color: #fff;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .about-section__heading-txt h1 {
    font-size: 1.8rem;
  }
}
.about-section__heading-desc {
  font-size: 2rem;
  font-family: "Hina Mincho", serif;
  text-align: center;
  color: #fff;
  line-height: 2;
  padding: 0 20px;
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 768px) {
  .about-section__heading-desc {
    transform: translate(0, 40px);
  }
}
.about-section__heading-desc.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  .about-section__heading-desc {
    font-size: 1.5rem;
    text-align: left;
    margin: 0 0 20px 0;
  }
}
.about-section__heading-desc:last-child {
  margin: 0;
}
.about-section__heading-katana {
  opacity: 0;
  transition: all 2000ms;
  margin: 120px auto 0 auto;
  padding: 0 20px 0 0;
}
.about-section__heading-katana.is-animated {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .about-section__heading-katana {
    margin: 40px auto 0 auto;
  }
}
.about-section__heading-katana img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-section__desc {
  padding: 200px 20px;
}
@media screen and (max-width: 768px) {
  .about-section__desc {
    padding: 60px 20px;
  }
}
.about-section__desc-inner {
  opacity: 0;
  transition: all 2000ms;
}
.about-section__desc-inner.is-animated {
  opacity: 1;
}
.about-section__desc-inner p {
  font-size: 1.8rem;
  font-family: "Hina Mincho", serif;
  text-align: center;
  color: #fff;
  line-height: 2;
  margin: 0 0 30px 0;
}
@media screen and (max-width: 768px) {
  .about-section__desc-inner p {
    font-size: 1.6rem;
    margin: 0 0 20px 0;
  }
}
@media screen and (max-width: 768px) {
  .about-section__desc-inner p {
    text-align: left;
    font-size: 1.5rem;
  }
}
.about-section__desc-inner p:last-child {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .about-section__desc-inner p:last-child {
    margin: 0;
  }
}
.about-section__appeal-heading {
  color: #fff;
  margin: 0 auto 100px auto;
}
@media screen and (max-width: 768px) {
  .about-section__appeal-heading {
    margin: 0 auto 30px auto;
  }
}
.about-section__appeal-heading h2 {
  margin: 0 auto 50px auto;
  font-size: 6rem;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  writing-mode: vertical-lr;
  text-align: center;
  opacity: 0;
  transition: all 2000ms;
}
.about-section__appeal-heading h2.is-animated {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .about-section__appeal-heading h2 {
    margin: 0 auto 30px auto;
    font-size: 2.8rem;
  }
}
.about-section__appeal-heading .en-txt {
  font-size: 4rem;
  font-family: "EB Garamond", serif;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 768px) {
  .about-section__appeal-heading .en-txt {
    transform: translate(0, 40px);
  }
}
.about-section__appeal-heading .en-txt.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  .about-section__appeal-heading .en-txt {
    font-size: 1.6rem;
  }
}
.about-section__appeal-cont {
  position: relative;
  width: 100%;
}
@media screen and (max-width: 1100px) {
  .about-section__appeal-cont {
    display: flex;
    flex-flow: column;
  }
}
.about-section__appeal-cont:last-child {
  margin: 0 auto;
}
.about-section__appeal-cont .about-section__appeal-txt {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 100px;
  max-width: 1200px;
  width: 100%;
}
@media screen and (max-width: 1100px) {
  .about-section__appeal-cont .about-section__appeal-txt {
    position: static;
    transform: none;
    order: 2;
    padding: 0 20px;
    box-sizing: border-box;
  }
}
.about-section__appeal-cont .about-section__appeal-txt-inner {
  opacity: 0;
  transition: all 2000ms;
  background: rgba(1, 5, 29, 0.6);
  padding: 90px 50px;
  box-sizing: border-box;
  max-width: 560px;
  width: 100%;
  margin: 0 0 0 auto;
  position: relative;
}
.about-section__appeal-cont .about-section__appeal-txt-inner.is-animated {
  opacity: 1;
}
@media screen and (max-width: 1100px) {
  .about-section__appeal-cont .about-section__appeal-txt-inner {
    padding: 0 50px 90px 50px;
    height: auto;
    margin: 0 auto;
  }
  .about-section__appeal-cont .about-section__appeal-txt-inner::after {
    content: "";
    display: inline-block;
    position: relative;
    background: rgba(1, 5, 29, 0.6);
    width: 100%;
    height: 40px;
    position: absolute;
    top: -40px;
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  .about-section__appeal-cont .about-section__appeal-txt-inner {
    padding: 0 20px 40px 20px;
  }
}
.about-section__appeal-cont .about-section__appeal-txt-inner .about-section__appeal-txt-heading {
  margin: 0 0 50px 0;
}
@media screen and (max-width: 768px) {
  .about-section__appeal-cont .about-section__appeal-txt-inner .about-section__appeal-txt-heading {
    margin: 0 0 20px 0;
  }
}
.about-section__appeal-cont .about-section__appeal-txt-inner .about-section__appeal-txt-heading .en-txt {
  font-size: 5rem;
  font-weight: 400;
  font-family: "EB Garamond", serif;
  line-height: 1;
  color: #fff;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 768px) {
  .about-section__appeal-cont .about-section__appeal-txt-inner .about-section__appeal-txt-heading .en-txt {
    font-size: 2.8rem;
    margin: 0 0 10px 0;
  }
}
.about-section__appeal-cont .about-section__appeal-txt-inner .about-section__appeal-txt-heading h3 {
  font-size: 1.8rem;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  color: #fff;
  margin: 0;
}
.about-section__appeal-cont .about-section__appeal-txt-inner p {
  font-size: 1.6rem;
  font-family: "Hina Mincho", serif;
  font-weight: 300;
  color: #fff;
  font-weight: normal;
  line-height: 1.8;
  margin: 0 0 20px 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .about-section__appeal-cont .about-section__appeal-txt-inner p {
    font-size: 1.5rem;
  }
}
.about-section__appeal-cont .about-section__appeal-txt-inner p > a {
  color: #7A8BA5;
  transition: all 0.3s;
}
.about-section__appeal-cont .about-section__appeal-txt-inner p > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .about-section__appeal-cont .about-section__appeal-txt-inner p > a:hover {
    opacity: 1;
  }
}
.about-section__appeal-cont .about-section__appeal-txt-inner p span {
  color: #7A8BA5;
  font-weight: bold;
}
.about-section__appeal-cont img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 960px;
}
@media screen and (max-width: 1100px) {
  .about-section__appeal-cont img {
    order: 1;
    height: auto;
    aspect-ratio: 1/1;
  }
}
.about-section__appeal-cont:nth-of-type(2n) .about-section__appeal-txt {
  left: 100px;
  right: auto;
}
.about-section__appeal-cont:nth-of-type(2n) .about-section__appeal-txt-inner {
  margin: 0 auto 0 0;
}
@media screen and (max-width: 1100px) {
  .about-section__appeal-cont:nth-of-type(2n) .about-section__appeal-txt-inner {
    margin: 0 auto;
  }
}
.about-section__hagane {
  padding: 180px 0;
}
@media screen and (max-width: 768px) {
  .about-section__hagane {
    padding: 60px 0;
  }
}
.about-section__hagane-heading {
  color: #fff;
  margin: 0 auto 100px auto;
}
@media screen and (max-width: 768px) {
  .about-section__hagane-heading {
    margin: 0 auto 30px auto;
  }
}
.about-section__hagane-heading h2 {
  margin: 0 auto 50px auto;
  font-size: 6rem;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  writing-mode: vertical-lr;
  text-align: center;
  opacity: 0;
  transition: all 2000ms;
}
.about-section__hagane-heading h2.is-animated {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .about-section__hagane-heading h2 {
    margin: 0 auto 30px auto;
    font-size: 2.8rem;
  }
}
.about-section__hagane-heading .en-txt {
  font-size: 4rem;
  font-family: "EB Garamond", serif;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 768px) {
  .about-section__hagane-heading .en-txt {
    transform: translate(0, 40px);
  }
}
.about-section__hagane-heading .en-txt.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  .about-section__hagane-heading .en-txt {
    font-size: 1.6rem;
  }
}
.about-section__hagane-desc {
  position: relative;
  padding: 200px 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .about-section__hagane-desc {
    padding: 60px 20px;
  }
}
.about-section__hagane-desc-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: auto;
}
.about-section__hagane-desc-inner .about-section__hagane-desc-heading {
  margin: 0 0 50px 0;
  opacity: 0;
  transition: all 2000ms;
}
.about-section__hagane-desc-inner .about-section__hagane-desc-heading.is-animated {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .about-section__hagane-desc-inner .about-section__hagane-desc-heading {
    margin: 0 0 20px 0;
  }
}
.about-section__hagane-desc-inner .about-section__hagane-desc-heading .en-txt {
  font-size: 5rem;
  font-weight: 400;
  font-family: "EB Garamond", serif;
  line-height: 1;
  color: #fff;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 768px) {
  .about-section__hagane-desc-inner .about-section__hagane-desc-heading .en-txt {
    font-size: 2.8rem;
    margin: 0 0 10px 0;
  }
}
.about-section__hagane-desc-inner .about-section__hagane-desc-heading h3 {
  font-size: 1.8rem;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  color: #fff;
  margin: 0;
}
.about-section__hagane-desc-inner .about-section__hagane-desc-txt {
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 768px) {
  .about-section__hagane-desc-inner .about-section__hagane-desc-txt {
    transform: translate(0, 40px);
  }
}
.about-section__hagane-desc-inner .about-section__hagane-desc-txt.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
.about-section__hagane-desc-inner .about-section__hagane-desc-txt p {
  font-size: 1.6rem;
  font-family: "Hina Mincho", serif;
  font-weight: 300;
  color: #fff;
  font-weight: normal;
  line-height: 1.8;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 768px) {
  .about-section__hagane-desc-inner .about-section__hagane-desc-txt p {
    font-size: 1.5rem;
  }
}
.about-section__hagane-desc-inner .about-section__hagane-desc-txt p > a {
  color: #7A8BA5;
  transition: all 0.3s;
}
.about-section__hagane-desc-inner .about-section__hagane-desc-txt p > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .about-section__hagane-desc-inner .about-section__hagane-desc-txt p > a:hover {
    opacity: 1;
  }
}
.about-section__hagane-desc-inner .about-section__hagane-desc-txt p span {
  color: #7A8BA5;
  font-weight: bold;
}
.about-section__hagane-desc-inner .about-section__hagane-desc-txt p:last-child {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .about-section__hagane-desc-inner .about-section__hagane-desc-txt p:last-child {
    margin: 0;
  }
}
.about-section__hagane-desc img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  height: 100%;
  width: 100%;
}
.about-section__hagane-desc img.img-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .about-section__hagane-desc img.img-pc {
    display: none;
  }
}
.about-section__hagane-desc img.img-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .about-section__hagane-desc img.img-sp {
    display: block;
  }
}
.about-section__hagane-detail {
  padding: 200px 20px 0 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .about-section__hagane-detail {
    padding: 60px 20px 0 20px;
  }
}
.about-section__hagane-detail-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.about-section__hagane-detail-inner .about-section__hagane-detail-img {
  width: 54.3%;
  opacity: 0;
  transition: all 2000ms;
}
.about-section__hagane-detail-inner .about-section__hagane-detail-img.is-animated {
  opacity: 1;
}
@media screen and (max-width: 1100px) {
  .about-section__hagane-detail-inner .about-section__hagane-detail-img {
    width: 100%;
    order: 2;
  }
}
.about-section__hagane-detail-inner .about-section__hagane-detail-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}
.about-section__hagane-detail-inner .about-section__hagane-detail-cont {
  width: 40%;
}
@media screen and (max-width: 1100px) {
  .about-section__hagane-detail-inner .about-section__hagane-detail-cont {
    width: 100%;
    margin: 0 0 30px 0;
    order: 1;
  }
}
.about-section__hagane-detail-inner .about-section__hagane-detail-cont img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
  max-width: 420px;
  width: 100%;
  height: auto;
  margin: 0 0 50px auto;
}
@media screen and (max-width: 768px) {
  .about-section__hagane-detail-inner .about-section__hagane-detail-cont img {
    transform: translate(0, 40px);
  }
}
.about-section__hagane-detail-inner .about-section__hagane-detail-cont img.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  .about-section__hagane-detail-inner .about-section__hagane-detail-cont img {
    max-width: 200px;
    margin: 0 0 20px auto;
  }
}
.about-section__hagane-detail-inner .about-section__hagane-detail-cont .about-section__hagane-detail-heading {
  margin: 0 0 50px 0;
}
@media screen and (max-width: 768px) {
  .about-section__hagane-detail-inner .about-section__hagane-detail-cont .about-section__hagane-detail-heading {
    margin: 0 0 20px 0;
  }
}
.about-section__hagane-detail-inner .about-section__hagane-detail-cont .about-section__hagane-detail-heading .en-txt {
  font-size: 5rem;
  font-weight: 400;
  font-family: "EB Garamond", serif;
  line-height: 1;
  color: #fff;
  margin: 0 0 20px 0;
  opacity: 0;
  transition: all 2000ms;
}
.about-section__hagane-detail-inner .about-section__hagane-detail-cont .about-section__hagane-detail-heading .en-txt.is-animated {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .about-section__hagane-detail-inner .about-section__hagane-detail-cont .about-section__hagane-detail-heading .en-txt {
    font-size: 2.8rem;
    margin: 0 0 10px 0;
  }
}
.about-section__hagane-detail-inner .about-section__hagane-detail-cont .about-section__hagane-detail-heading h3 {
  font-size: 1.8rem;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  color: #fff;
  margin: 0;
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 768px) {
  .about-section__hagane-detail-inner .about-section__hagane-detail-cont .about-section__hagane-detail-heading h3 {
    transform: translate(0, 40px);
  }
}
.about-section__hagane-detail-inner .about-section__hagane-detail-cont .about-section__hagane-detail-heading h3.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
.about-section__hagane-detail-inner .about-section__hagane-detail-cont .about-section__hagane-detail-txt {
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 768px) {
  .about-section__hagane-detail-inner .about-section__hagane-detail-cont .about-section__hagane-detail-txt {
    transform: translate(0, 40px);
  }
}
.about-section__hagane-detail-inner .about-section__hagane-detail-cont .about-section__hagane-detail-txt.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
.about-section__hagane-detail-inner .about-section__hagane-detail-cont .about-section__hagane-detail-txt p {
  font-size: 1.6rem;
  font-family: "Hina Mincho", serif;
  font-weight: 300;
  color: #fff;
  font-weight: normal;
  line-height: 1.8;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 768px) {
  .about-section__hagane-detail-inner .about-section__hagane-detail-cont .about-section__hagane-detail-txt p {
    font-size: 1.5rem;
  }
}
.about-section__hagane-detail-inner .about-section__hagane-detail-cont .about-section__hagane-detail-txt p > a {
  color: #7A8BA5;
  transition: all 0.3s;
}
.about-section__hagane-detail-inner .about-section__hagane-detail-cont .about-section__hagane-detail-txt p > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .about-section__hagane-detail-inner .about-section__hagane-detail-cont .about-section__hagane-detail-txt p > a:hover {
    opacity: 1;
  }
}
.about-section__hagane-detail-inner .about-section__hagane-detail-cont .about-section__hagane-detail-txt p span {
  color: #7A8BA5;
  font-weight: bold;
}
.about-section__hagane-detail-inner .about-section__hagane-detail-cont .about-section__hagane-detail-txt p:last-child {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .about-section__hagane-detail-inner .about-section__hagane-detail-cont .about-section__hagane-detail-txt p:last-child {
    margin: 0;
  }
}
.about-section__quality {
  padding: 200px 20px;
  margin: 0 0 200px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .about-section__quality {
    padding: 0 20px 60px 20px;
    margin: 0 0 60px 0;
  }
}
.about-section__quality .about-section__quality-txt {
  max-width: 1200px;
  margin: 0 auto;
  width: auto;
}
.about-section__quality .about-section__quality-txt .about-section__quality-heading {
  margin: 0 0 50px 0;
}
@media screen and (max-width: 768px) {
  .about-section__quality .about-section__quality-txt .about-section__quality-heading {
    margin: 0 0 20px 0;
  }
}
.about-section__quality .about-section__quality-txt .about-section__quality-heading .en-txt {
  font-size: 5rem;
  font-weight: 400;
  font-family: "EB Garamond", serif;
  line-height: 1;
  color: #fff;
  margin: 0 0 20px 0;
  opacity: 0;
  transition: all 2000ms;
}
.about-section__quality .about-section__quality-txt .about-section__quality-heading .en-txt.is-animated {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .about-section__quality .about-section__quality-txt .about-section__quality-heading .en-txt {
    font-size: 2.8rem;
    margin: 0 0 10px 0;
  }
}
.about-section__quality .about-section__quality-txt .about-section__quality-heading h3 {
  font-size: 1.8rem;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  color: #fff;
  margin: 0;
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 768px) {
  .about-section__quality .about-section__quality-txt .about-section__quality-heading h3 {
    transform: translate(0, 40px);
  }
}
.about-section__quality .about-section__quality-txt .about-section__quality-heading h3.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
.about-section__quality .about-section__quality-txt p {
  font-size: 1.6rem;
  font-family: "Hina Mincho", serif;
  font-weight: 300;
  color: #fff;
  font-weight: normal;
  line-height: 1.8;
  margin: 0 0 20px 0;
  opacity: 0;
  transition: all 2000ms;
}
@media screen and (max-width: 768px) {
  .about-section__quality .about-section__quality-txt p {
    font-size: 1.5rem;
  }
}
.about-section__quality .about-section__quality-txt p > a {
  color: #7A8BA5;
  transition: all 0.3s;
}
.about-section__quality .about-section__quality-txt p > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .about-section__quality .about-section__quality-txt p > a:hover {
    opacity: 1;
  }
}
.about-section__quality .about-section__quality-txt p span {
  color: #7A8BA5;
  font-weight: bold;
}
.about-section__quality .about-section__quality-txt p.is-animated {
  opacity: 1;
}
.about-section__quality .about-section__quality-txt p:last-child {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .about-section__quality .about-section__quality-txt p:last-child {
    margin: 0;
  }
}
.about-section__quality-img {
  width: 73%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .about-section__quality-img {
    height: 50%;
    top: auto;
    bottom: 0;
  }
}
.about-section__quality-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*-------------日本刀とは-------------*/
.about_us-section__heading {
  position: relative;
  width: 100%;
  height: 100vh;
}
.about_us-section__heading-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.about_us-section__heading-txt .en-txt {
  font-size: 9rem;
  font-weight: 400;
  font-family: "EB Garamond", serif;
  line-height: 1;
  text-align: center;
  color: #fff;
  margin: 0 0 20px 0;
  opacity: 0;
  transition: all 2000ms;
}
.about_us-section__heading-txt .en-txt.is-animated {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .about_us-section__heading-txt .en-txt {
    font-size: 5.6rem;
  }
}
.about_us-section__heading-txt h1 {
  font-size: 2.4rem;
  font-weight: 400;
  font-family: "Hina Mincho", serif;
  text-align: center;
  color: #fff;
  margin: 0;
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 768px) {
  .about_us-section__heading-txt h1 {
    transform: translate(0, 40px);
  }
}
.about_us-section__heading-txt h1.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  .about_us-section__heading-txt h1 {
    font-size: 1.8rem;
  }
}
.about_us-section__heading img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  height: 100%;
  width: 100%;
}
.about_us-section__heading img.img-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .about_us-section__heading img.img-pc {
    display: none;
  }
}
.about_us-section__heading img.img-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .about_us-section__heading img.img-sp {
    display: block;
  }
}
.about_us-section__desc {
  background: url(../../images/bg_washi.png);
  background-size: cover;
}
.about_us-section__desc .bread-menu span {
  color: #01051D;
}
.about_us-section__desc-cont {
  padding: 200px 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .about_us-section__desc-cont {
    padding: 60px 20px;
  }
}
.about_us-section__desc-cont-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: auto;
}
.about_us-section__desc-cont-inner h2 {
  font-size: 3.6rem;
  font-weight: 400;
  font-family: "Hina Mincho", serif;
  text-align: center;
  margin: 0 0 60px 0;
  opacity: 0;
  transition: all 2000ms;
}
.about_us-section__desc-cont-inner h2.is-animated {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .about_us-section__desc-cont-inner h2 {
    font-size: 2rem;
    margin: 0 0 20px 0;
  }
}
.about_us-section__desc-cont-inner p {
  font-size: 1.6rem;
  font-family: "Hina Mincho", serif;
  font-weight: 300;
  color: #fff;
  font-weight: normal;
  line-height: 1.8;
  margin: 0 0 20px 0;
  color: #01051D;
  text-align: center;
  margin: 0 0 60px 0;
}
@media screen and (max-width: 768px) {
  .about_us-section__desc-cont-inner p {
    font-size: 1.5rem;
  }
}
.about_us-section__desc-cont-inner p > a {
  color: #7A8BA5;
  transition: all 0.3s;
}
.about_us-section__desc-cont-inner p > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .about_us-section__desc-cont-inner p > a:hover {
    opacity: 1;
  }
}
.about_us-section__desc-cont-inner p span {
  color: #7A8BA5;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .about_us-section__desc-cont-inner p {
    margin: 0 0 30px 0;
    text-align: left;
  }
}
.about_us-section__desc-cont-inner .about_us-section__desc-logo {
  max-width: 400px;
  margin: 0 auto;
  width: auto;
  opacity: 0;
  transition: all 2000ms;
}
.about_us-section__desc-cont-inner .about_us-section__desc-logo.is-animated {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .about_us-section__desc-cont-inner .about_us-section__desc-logo {
    max-width: 200px;
  }
}
.about_us-section__desc-cont-inner .about_us-section__desc-logo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about_us-section__main {
  position: relative;
}
.about_us-section__main::after {
  content: "";
  background: linear-gradient(180deg, rgb(1, 5, 29), rgb(5, 9, 34) 25%, rgb(11, 30, 60) 50%, rgb(5, 9, 34) 75%, rgb(1, 5, 29));
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: -99;
}
.about_us-section__main.is-fixed::after {
  position: fixed;
  top: 0;
  left: 0;
}
.about_us-section__main .about_us-section__concept {
  padding: 200px 20px;
}
@media screen and (max-width: 768px) {
  .about_us-section__main .about_us-section__concept {
    padding: 60px 20px;
  }
}
.about_us-section__main .about_us-section__concept-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: auto;
}
.about_us-section__main .about_us-section__concept-inner .about_us-section__concept-desc {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .about_us-section__main .about_us-section__concept-inner .about_us-section__concept-desc {
    flex-flow: column;
  }
}
.about_us-section__main .about_us-section__concept-inner .about_us-section__concept-desc .about_us-section__concept-heading {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .about_us-section__main .about_us-section__concept-inner .about_us-section__concept-desc .about_us-section__concept-heading {
    margin: 0 0 30px 0;
  }
}
.about_us-section__main .about_us-section__concept-inner .about_us-section__concept-desc .about_us-section__concept-heading h2 {
  margin: 0 auto 50px auto;
  font-size: 6rem;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  writing-mode: vertical-lr;
  text-align: center;
  opacity: 0;
  transition: all 2000ms;
}
.about_us-section__main .about_us-section__concept-inner .about_us-section__concept-desc .about_us-section__concept-heading h2.is-animated {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .about_us-section__main .about_us-section__concept-inner .about_us-section__concept-desc .about_us-section__concept-heading h2 {
    margin: 0 auto 30px auto;
    font-size: 2.8rem;
  }
}
.about_us-section__main .about_us-section__concept-inner .about_us-section__concept-desc .about_us-section__concept-heading .en-txt {
  font-size: 4rem;
  font-family: "EB Garamond", serif;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  margin: 0;
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 768px) {
  .about_us-section__main .about_us-section__concept-inner .about_us-section__concept-desc .about_us-section__concept-heading .en-txt {
    transform: translate(0, 40px);
  }
}
.about_us-section__main .about_us-section__concept-inner .about_us-section__concept-desc .about_us-section__concept-heading .en-txt.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  .about_us-section__main .about_us-section__concept-inner .about_us-section__concept-desc .about_us-section__concept-heading .en-txt {
    font-size: 1.6rem;
  }
}
.about_us-section__main .about_us-section__concept-inner .about_us-section__concept-desc .about_us-section__concept-img {
  opacity: 0;
  transition: all 2000ms;
}
.about_us-section__main .about_us-section__concept-inner .about_us-section__concept-desc .about_us-section__concept-img.is-animated {
  opacity: 1;
}
.about_us-section__main .about_us-section__concept-inner .about_us-section__concept-desc .about_us-section__concept-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about_us-section__main .about_us-section__concept-inner .about_us-section__concept-detail {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 120px 0 0 0;
}
@media screen and (max-width: 768px) {
  .about_us-section__main .about_us-section__concept-inner .about_us-section__concept-detail {
    margin: 40px 0 0 0;
  }
}
.about_us-section__main .about_us-section__concept-inner .about_us-section__concept-detail-txt {
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
  width: 46.45%;
}
@media screen and (max-width: 768px) {
  .about_us-section__main .about_us-section__concept-inner .about_us-section__concept-detail-txt {
    transform: translate(0, 40px);
  }
}
.about_us-section__main .about_us-section__concept-inner .about_us-section__concept-detail-txt.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  .about_us-section__main .about_us-section__concept-inner .about_us-section__concept-detail-txt {
    width: 100%;
  }
}
.about_us-section__main .about_us-section__concept-inner .about_us-section__concept-detail-txt p {
  font-size: 1.6rem;
  font-family: "Hina Mincho", serif;
  font-weight: 300;
  color: #fff;
  font-weight: normal;
  line-height: 1.8;
  margin: 0 0 20px 0;
  margin: 0 80px 80px 0;
}
@media screen and (max-width: 768px) {
  .about_us-section__main .about_us-section__concept-inner .about_us-section__concept-detail-txt p {
    font-size: 1.5rem;
  }
}
.about_us-section__main .about_us-section__concept-inner .about_us-section__concept-detail-txt p > a {
  color: #7A8BA5;
  transition: all 0.3s;
}
.about_us-section__main .about_us-section__concept-inner .about_us-section__concept-detail-txt p > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .about_us-section__main .about_us-section__concept-inner .about_us-section__concept-detail-txt p > a:hover {
    opacity: 1;
  }
}
.about_us-section__main .about_us-section__concept-inner .about_us-section__concept-detail-txt p span {
  color: #7A8BA5;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .about_us-section__main .about_us-section__concept-inner .about_us-section__concept-detail-txt p {
    margin: 0 20px 20px 0;
  }
}
.about_us-section__main .about_us-section__concept-inner .about_us-section__concept-detail-txt img {
  max-width: 400px;
  width: 100%;
  margin: 0 0 0 auto;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}
@media screen and (max-width: 768px) {
  .about_us-section__main .about_us-section__concept-inner .about_us-section__concept-detail-txt img {
    max-width: 200px;
  }
}
.about_us-section__main .about_us-section__concept-inner .about_us-section__concept-detail-img {
  opacity: 0;
  transition: all 2000ms;
  width: 47.9%;
}
.about_us-section__main .about_us-section__concept-inner .about_us-section__concept-detail-img.is-animated {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .about_us-section__main .about_us-section__concept-inner .about_us-section__concept-detail-img {
    width: 100%;
    margin: 30px 0 0 0;
  }
}
.about_us-section__main .about_us-section__concept-inner .about_us-section__concept-detail-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about_us-section__main .about_us-section__mission {
  padding: 200px 20px 0 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .about_us-section__main .about_us-section__mission {
    padding: 60px 20px 0 20px;
  }
}
.about_us-section__main .about_us-section__mission-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: auto;
}
.about_us-section__main .about_us-section__mission-inner .about_us-section__mission-desc {
  display: flex;
  justify-content: space-between;
}
.about_us-section__main .about_us-section__mission-inner .about_us-section__mission-desc p {
  font-size: 1.6rem;
  font-family: "Hina Mincho", serif;
  font-weight: 300;
  color: #fff;
  font-weight: normal;
  line-height: 1.8;
  margin: 0 0 20px 0;
  margin: 0;
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
  width: 46.45%;
}
@media screen and (max-width: 768px) {
  .about_us-section__main .about_us-section__mission-inner .about_us-section__mission-desc p {
    font-size: 1.5rem;
  }
}
.about_us-section__main .about_us-section__mission-inner .about_us-section__mission-desc p > a {
  color: #7A8BA5;
  transition: all 0.3s;
}
.about_us-section__main .about_us-section__mission-inner .about_us-section__mission-desc p > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .about_us-section__main .about_us-section__mission-inner .about_us-section__mission-desc p > a:hover {
    opacity: 1;
  }
}
.about_us-section__main .about_us-section__mission-inner .about_us-section__mission-desc p span {
  color: #7A8BA5;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .about_us-section__main .about_us-section__mission-inner .about_us-section__mission-desc p {
    transform: translate(0, 40px);
  }
}
.about_us-section__main .about_us-section__mission-inner .about_us-section__mission-desc p.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  .about_us-section__main .about_us-section__mission-inner .about_us-section__mission-desc p {
    width: auto;
    margin: 0 20px 0 0;
  }
}
.about_us-section__main .about_us-section__mission-inner .about_us-section__mission-desc .about_us-section__mission-heading {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .about_us-section__main .about_us-section__mission-inner .about_us-section__mission-desc .about_us-section__mission-heading {
    margin: 0 0 30px 0;
  }
}
.about_us-section__main .about_us-section__mission-inner .about_us-section__mission-desc .about_us-section__mission-heading h2 {
  margin: 0 auto 50px auto;
  font-size: 6rem;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  writing-mode: vertical-lr;
  text-align: center;
  opacity: 0;
  transition: all 2000ms;
}
.about_us-section__main .about_us-section__mission-inner .about_us-section__mission-desc .about_us-section__mission-heading h2.is-animated {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .about_us-section__main .about_us-section__mission-inner .about_us-section__mission-desc .about_us-section__mission-heading h2 {
    margin: 0 auto 30px auto;
    font-size: 2.8rem;
  }
}
.about_us-section__main .about_us-section__mission-inner .about_us-section__mission-desc .about_us-section__mission-heading .en-txt {
  font-size: 4rem;
  font-family: "EB Garamond", serif;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  margin: 0;
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 768px) {
  .about_us-section__main .about_us-section__mission-inner .about_us-section__mission-desc .about_us-section__mission-heading .en-txt {
    transform: translate(0, 40px);
  }
}
.about_us-section__main .about_us-section__mission-inner .about_us-section__mission-desc .about_us-section__mission-heading .en-txt.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  .about_us-section__main .about_us-section__mission-inner .about_us-section__mission-desc .about_us-section__mission-heading .en-txt {
    font-size: 1.6rem;
  }
}
.about_us-section__main .about_us-section__mission-inner .about_us-section__mission-img {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 120px 0 0 0;
}
@media screen and (max-width: 768px) {
  .about_us-section__main .about_us-section__mission-inner .about_us-section__mission-img {
    margin: 60px 0 0 0;
  }
}
.about_us-section__main .about_us-section__mission-inner .about_us-section__mission-img .about_us-section__img-left {
  width: 33.58%;
  opacity: 0;
  transition: all 2000ms;
}
.about_us-section__main .about_us-section__mission-inner .about_us-section__mission-img .about_us-section__img-left.is-animated {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .about_us-section__main .about_us-section__mission-inner .about_us-section__mission-img .about_us-section__img-left {
    width: 60%;
  }
}
.about_us-section__main .about_us-section__mission-inner .about_us-section__mission-img .about_us-section__img-left img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about_us-section__main .about_us-section__mission-inner .about_us-section__mission-img .about_us-section__img-right {
  width: 57.9%;
  margin: 120px 0 0 0;
}
@media screen and (max-width: 768px) {
  .about_us-section__main .about_us-section__mission-inner .about_us-section__mission-img .about_us-section__img-right {
    width: 100%;
    margin: 40px 0 0 0;
  }
}
.about_us-section__main .about_us-section__mission-inner .about_us-section__mission-img .about_us-section__img-right .about_us-section__img-item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about_us-section__main .about_us-section__mission-inner .about_us-section__mission-img .about_us-section__img-right .about_us-section__img-item--r {
  margin: 0 0 120px auto;
  width: 73.5%;
  opacity: 0;
  transition: all 2000ms;
}
.about_us-section__main .about_us-section__mission-inner .about_us-section__mission-img .about_us-section__img-right .about_us-section__img-item--r.is-animated {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .about_us-section__main .about_us-section__mission-inner .about_us-section__mission-img .about_us-section__img-right .about_us-section__img-item--r {
    width: 70%;
    margin: 0 0 20px auto;
  }
}
.about_us-section__main .about_us-section__mission-inner .about_us-section__mission-img .about_us-section__img-right .about_us-section__img-item--l {
  width: 60.45%;
  opacity: 0;
  transition: all 2000ms;
}
.about_us-section__main .about_us-section__mission-inner .about_us-section__mission-img .about_us-section__img-right .about_us-section__img-item--l.is-animated {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .about_us-section__main .about_us-section__mission-inner .about_us-section__mission-img .about_us-section__img-right .about_us-section__img-item--l {
    width: 45%;
  }
}
.about_us-section__main .about_us-section__mission .about_us-section__mission-bg {
  z-index: -1;
  position: absolute;
  right: 0;
  top: 0;
  height: 1200px;
  width: 70.84%;
}
@media screen and (max-width: 768px) {
  .about_us-section__main .about_us-section__mission .about_us-section__mission-bg {
    height: 600px;
    width: 80%;
  }
}
.about_us-section__main .about_us-section__mission .about_us-section__mission-bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about_us-section__main .about_us-section__features {
  padding: 180px 0 0 0;
}
@media screen and (max-width: 768px) {
  .about_us-section__main .about_us-section__features {
    padding: 60px 0 0 0;
  }
}
.about_us-section__main .about_us-section__features-heading {
  color: #fff;
  margin: 0 0 60px 0;
}
@media screen and (max-width: 768px) {
  .about_us-section__main .about_us-section__features-heading {
    margin: 0 0 30px 0;
  }
}
.about_us-section__main .about_us-section__features-heading h2 {
  margin: 0 auto 50px auto;
  font-size: 6rem;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  writing-mode: vertical-lr;
  text-align: center;
  opacity: 0;
  transition: all 2000ms;
}
.about_us-section__main .about_us-section__features-heading h2.is-animated {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .about_us-section__main .about_us-section__features-heading h2 {
    margin: 0 auto 30px auto;
    font-size: 2.8rem;
  }
}
.about_us-section__main .about_us-section__features-heading .en-txt {
  font-size: 4rem;
  font-family: "EB Garamond", serif;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  margin: 0;
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 768px) {
  .about_us-section__main .about_us-section__features-heading .en-txt {
    transform: translate(0, 40px);
  }
}
.about_us-section__main .about_us-section__features-heading .en-txt.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  .about_us-section__main .about_us-section__features-heading .en-txt {
    font-size: 1.6rem;
  }
}
.about_us-section__main .about_us-section__features-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.about_us-section__main .about_us-section__features-list.not_slide {
  display: flex;
  flex-wrap: wrap;
}
.about_us-section__main .about_us-section__features-list.not_slide li {
  width: 33.3%;
  margin: 0;
}
@media screen and (max-width: 1100px) {
  .about_us-section__main .about_us-section__features-list.not_slide li {
    width: 100%;
    margin: 0 0 20px 0;
  }
  .about_us-section__main .about_us-section__features-list.not_slide li:last-child {
    margin: 0;
  }
}
.about_us-section__main .about_us-section__features-list.not_slide li .about_us-section__features-thumbnail img {
  aspect-ratio: 1/1;
}
.about_us-section__main .about_us-section__features-list li {
  margin: 0 30px;
}
@media screen and (max-width: 768px) {
  .about_us-section__main .about_us-section__features-list li {
    margin: 0 10px;
  }
}
.about_us-section__main .about_us-section__features-list li .about_us-section__features-thumbnail {
  margin: 0 0 40px 0;
}
@media screen and (max-width: 768px) {
  .about_us-section__main .about_us-section__features-list li .about_us-section__features-thumbnail {
    margin: 0 0 20px 0;
  }
}
.about_us-section__main .about_us-section__features-list li .about_us-section__features-thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 2/1.3;
}
.about_us-section__main .about_us-section__features-list li .about_us-section__features-txt {
  padding: 0 20px;
  box-sizing: border-box;
}
.about_us-section__main .about_us-section__features-list li .about_us-section__features-txt h3 {
  margin: 0 auto 30px auto;
  font-size: 3rem;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .about_us-section__main .about_us-section__features-list li .about_us-section__features-txt h3 {
    margin: 0 auto 10px auto;
    font-size: 1.8rem;
  }
}
.about_us-section__main .about_us-section__features-list li .about_us-section__features-txt p {
  font-size: 1.6rem;
  font-family: "Hina Mincho", serif;
  font-weight: 300;
  color: #fff;
  font-weight: normal;
  line-height: 1.8;
  margin: 0 0 20px 0;
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .about_us-section__main .about_us-section__features-list li .about_us-section__features-txt p {
    font-size: 1.5rem;
  }
}
.about_us-section__main .about_us-section__features-list li .about_us-section__features-txt p > a {
  color: #7A8BA5;
  transition: all 0.3s;
}
.about_us-section__main .about_us-section__features-list li .about_us-section__features-txt p > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .about_us-section__main .about_us-section__features-list li .about_us-section__features-txt p > a:hover {
    opacity: 1;
  }
}
.about_us-section__main .about_us-section__features-list li .about_us-section__features-txt p span {
  color: #7A8BA5;
  font-weight: bold;
}
.about_us-section__main .about_us-section__features-list .slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 62px;
  height: 62px;
  cursor: pointer;
  z-index: 1;
  display: block;
  text-decoration: none;
  transition: all 0.3s;
}
.about_us-section__main .about_us-section__features-list .slide-arrow:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .about_us-section__main .about_us-section__features-list .slide-arrow:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .about_us-section__main .about_us-section__features-list .slide-arrow {
    width: 30px;
    height: 30px;
  }
}
.about_us-section__main .about_us-section__features-list .slide-arrow::before {
  content: none;
}
.about_us-section__main .about_us-section__features-list .slide-arrow::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: inline-block;
  position: relative;
  width: 62px;
  height: 62px;
}
@media screen and (max-width: 768px) {
  .about_us-section__main .about_us-section__features-list .slide-arrow::after {
    width: 30px;
    height: 30px;
  }
}
.about_us-section__main .about_us-section__features-list .slide-arrow.slick-prev {
  left: 20px;
}
@media screen and (max-width: 768px) {
  .about_us-section__main .about_us-section__features-list .slide-arrow.slick-prev {
    left: 10px;
  }
}
.about_us-section__main .about_us-section__features-list .slide-arrow.slick-prev::after {
  background: url(../../images/icon_arrow_slide_l.svg);
  background-size: 62px;
}
@media screen and (max-width: 768px) {
  .about_us-section__main .about_us-section__features-list .slide-arrow.slick-prev::after {
    background-size: 30px;
  }
}
.about_us-section__main .about_us-section__features-list .slide-arrow.slick-next {
  right: 20px;
}
@media screen and (max-width: 768px) {
  .about_us-section__main .about_us-section__features-list .slide-arrow.slick-next {
    right: 10px;
  }
}
.about_us-section__main .about_us-section__features-list .slide-arrow.slick-next::after {
  background: url(../../images/icon_arrow_slide_r.svg);
  background-size: 62px;
}
@media screen and (max-width: 768px) {
  .about_us-section__main .about_us-section__features-list .slide-arrow.slick-next::after {
    background-size: 30px;
  }
}
.about_us-section__main .about_us-section__vision {
  padding: 180px 0 0 0;
}
@media screen and (max-width: 768px) {
  .about_us-section__main .about_us-section__vision {
    padding: 60px 0 0 0;
  }
}
.about_us-section__main .about_us-section__vision-desc {
  position: relative;
}
.about_us-section__main .about_us-section__vision-desc .about_us-section__vision-heading {
  max-width: 1440px;
  width: 100%;
  color: #fff;
  margin: 0 auto 60px auto;
  padding: 0 20px;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .about_us-section__main .about_us-section__vision-desc .about_us-section__vision-heading {
    margin: 0 0 30px 0;
  }
}
.about_us-section__main .about_us-section__vision-desc .about_us-section__vision-heading h2 {
  margin: 0 0 50px 0;
  font-size: 6rem;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  writing-mode: vertical-lr;
  text-align: center;
  opacity: 0;
  transition: all 2000ms;
}
.about_us-section__main .about_us-section__vision-desc .about_us-section__vision-heading h2.is-animated {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .about_us-section__main .about_us-section__vision-desc .about_us-section__vision-heading h2 {
    margin: 0 0 30px 0;
    font-size: 2.8rem;
  }
}
.about_us-section__main .about_us-section__vision-desc .about_us-section__vision-heading .en-txt {
  font-size: 4rem;
  font-family: "EB Garamond", serif;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 768px) {
  .about_us-section__main .about_us-section__vision-desc .about_us-section__vision-heading .en-txt {
    transform: translate(0, 40px);
  }
}
.about_us-section__main .about_us-section__vision-desc .about_us-section__vision-heading .en-txt.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  .about_us-section__main .about_us-section__vision-desc .about_us-section__vision-heading .en-txt {
    font-size: 1.6rem;
  }
}
.about_us-section__main .about_us-section__vision-desc-img {
  width: 70.84%;
  margin: 0 0 0 auto;
}
.about_us-section__main .about_us-section__vision-desc-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 2/1.76;
}
.about_us-section__main .about_us-section__vision-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
  width: auto;
  margin: 120px auto 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .about_us-section__main .about_us-section__vision-detail {
    margin: 60px auto 0 auto;
  }
}
.about_us-section__main .about_us-section__vision-detail-img {
  width: 40.72%;
  opacity: 0;
  transition: all 2000ms;
}
.about_us-section__main .about_us-section__vision-detail-img.is-animated {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .about_us-section__main .about_us-section__vision-detail-img {
    width: 100%;
    order: 2;
  }
}
.about_us-section__main .about_us-section__vision-detail-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about_us-section__main .about_us-section__vision-detail-txt {
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
  width: 53.6%;
}
@media screen and (max-width: 768px) {
  .about_us-section__main .about_us-section__vision-detail-txt {
    transform: translate(0, 40px);
  }
}
.about_us-section__main .about_us-section__vision-detail-txt.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  .about_us-section__main .about_us-section__vision-detail-txt {
    width: 100%;
    order: 1;
    margin: 0 0 30px 0;
  }
}
.about_us-section__main .about_us-section__vision-detail-txt h3 {
  font-size: 3.6rem;
  font-weight: 400;
  font-family: "Hina Mincho", serif;
  margin: 0 0 60px 0;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .about_us-section__main .about_us-section__vision-detail-txt h3 {
    font-size: 2rem;
    margin: 0 0 20px 0;
  }
}
.about_us-section__main .about_us-section__vision-detail-txt p {
  font-size: 1.6rem;
  font-family: "Hina Mincho", serif;
  font-weight: 300;
  color: #fff;
  font-weight: normal;
  line-height: 1.8;
  margin: 0 0 20px 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .about_us-section__main .about_us-section__vision-detail-txt p {
    font-size: 1.5rem;
  }
}
.about_us-section__main .about_us-section__vision-detail-txt p > a {
  color: #7A8BA5;
  transition: all 0.3s;
}
.about_us-section__main .about_us-section__vision-detail-txt p > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .about_us-section__main .about_us-section__vision-detail-txt p > a:hover {
    opacity: 1;
  }
}
.about_us-section__main .about_us-section__vision-detail-txt p span {
  color: #7A8BA5;
  font-weight: bold;
}
.about_us-section__main .about_us-section__img {
  width: 100%;
  margin: 180px 0 0 0;
}
@media screen and (max-width: 768px) {
  .about_us-section__main .about_us-section__img {
    margin: 60px 0 0 0;
  }
}
.about_us-section__main .about_us-section__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*------------ページが見つかりません-------------*/
.not-section {
  background: #01051D;
}
.not-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: auto;
  padding: 200px 20px;
}
@media screen and (max-width: 768px) {
  .not-section-inner {
    padding: 60px 20px;
  }
}
.not-section-inner p {
  font-size: 1.6rem;
  font-family: "Hina Mincho", serif;
  font-weight: 300;
  color: #fff;
  font-weight: normal;
  line-height: 1.8;
  margin: 0 0 20px 0;
  text-align: center;
  margin: 0 0 40px 0;
}
@media screen and (max-width: 768px) {
  .not-section-inner p {
    font-size: 1.5rem;
  }
}
.not-section-inner p > a {
  color: #7A8BA5;
  transition: all 0.3s;
}
.not-section-inner p > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .not-section-inner p > a:hover {
    opacity: 1;
  }
}
.not-section-inner p span {
  color: #7A8BA5;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .not-section-inner p {
    margin: 0 0 20px 0;
  }
}
.not-section-inner .btn-back {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}
.not-section-inner .btn-back a {
  width: 100%;
  text-decoration: none;
  display: block;
  padding: 20px;
  box-sizing: border-box;
  background: rgba(1, 5, 29, 0.2);
  color: #fff;
  border: solid 1px #fff;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-align: center;
  position: relative;
  display: block;
  text-decoration: none;
  transition: all 0.3s;
}
.not-section-inner .btn-back a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .not-section-inner .btn-back a:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .not-section-inner .btn-back a {
    padding: 19px 20px;
    font-size: 1.6rem;
  }
}
.not-section-inner .btn-back a::after {
  content: "";
  display: inline-block;
  position: relative;
  background: url(../../images/icon_arrow_l.svg);
  background-size: 30px;
  width: 30px;
  height: 8px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
}

/*------------固定ページ-------------*/
.page-section {
  background: #01051D;
}
.page-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: auto;
  padding: 200px 20px;
}
@media screen and (max-width: 768px) {
  .page-section-inner {
    padding: 60px 20px;
  }
}
.page-section-inner > h4 {
  font-size: 2rem;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
  margin: 40px 0 30px 0;
  padding: 0 0 0 15px;
  border-left: solid 2px #7A8BA6;
}
@media screen and (max-width: 768px) {
  .page-section-inner > h4 {
    font-size: 1.8rem;
    margin: 30px 0 20px 0;
  }
}
.page-section-inner p {
  font-size: 1.6rem;
  font-family: "Hina Mincho", serif;
  font-weight: 300;
  color: #fff;
  font-weight: normal;
  line-height: 1.8;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 768px) {
  .page-section-inner p {
    font-size: 1.5rem;
  }
}
.page-section-inner p > a {
  color: #7A8BA5;
  transition: all 0.3s;
}
.page-section-inner p > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .page-section-inner p > a:hover {
    opacity: 1;
  }
}
.page-section-inner p span {
  color: #7A8BA5;
  font-weight: bold;
}
.page-section-inner p:first-child {
  margin: 0;
}
.page-section-inner p:last-child {
  margin: 0;
}

/*-------------module-------------*/
/*-------------base-------------*/
/*-------------mixin-------------*/
header #header-wrap {
  z-index: 999;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 30px 0 30px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  header #header-wrap {
    padding: 15px 15px 0 15px;
  }
}
header #header-wrap.header-fixed {
  transform: none;
}
header #header-wrap h1 {
  margin: 0 20px 0 0;
  transition: opacity 0.4s ease;
  opacity: 1;
}
header #header-wrap h1 a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
}
header #header-wrap h1 a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  header #header-wrap h1 a:hover {
    opacity: 1;
  }
}
header #header-wrap h1 a img {
  display: block;
  width: 125px;
}
@media screen and (max-width: 768px) {
  header #header-wrap h1 a img {
    width: 80px;
  }
}
header #header-wrap h1.hidden {
  opacity: 0;
  pointer-events: none;
}
header #header-wrap .header-wrap__nav {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
}
header #header-wrap .header-wrap__nav-inner {
  position: relative;
  background: #01051D;
  padding: 190px 40px 40px 40px;
  box-sizing: border-box;
  z-index: 2;
  width: 400px;
  height: 100vh;
  overflow-y: auto;
}
@media screen and (max-width: 768px) {
  header #header-wrap .header-wrap__nav-inner {
    padding: 110px 30px 30px 30px;
    width: 335px;
  }
}
header #header-wrap .header-wrap__nav-inner .header-wrap__nav-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
header #header-wrap .header-wrap__nav-inner .header-wrap__nav-list > li {
  margin: 0 0 40px 0;
}
@media screen and (max-width: 768px) {
  header #header-wrap .header-wrap__nav-inner .header-wrap__nav-list > li {
    margin: 0 0 30px 0;
  }
}
header #header-wrap .header-wrap__nav-inner .header-wrap__nav-list > li a {
  font-size: 2rem;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
}
@media screen and (max-width: 768px) {
  header #header-wrap .header-wrap__nav-inner .header-wrap__nav-list > li a {
    font-size: 1.6rem;
  }
}
header #header-wrap .header-wrap__nav-inner .header-wrap__nav-list > li a::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: white;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
header #header-wrap .header-wrap__nav-inner .header-wrap__nav-list > li a:hover::after {
  transform: scale(1, 1);
}
@media screen and (max-width: 1100px) {
  header #header-wrap .header-wrap__nav-inner .header-wrap__nav-list > li a:hover::after {
    transform: scale(0, 1);
  }
}
header #header-wrap .header-wrap__nav-inner .header-wrap__nav-list > li .sub-menu {
  list-style: inside;
  color: #fff;
  padding: 0;
  margin: 15px 0 0 0;
}
header #header-wrap .header-wrap__nav-inner .header-wrap__nav-list > li .sub-menu li {
  margin: 0 0 15px 0;
}
@media screen and (max-width: 768px) {
  header #header-wrap .header-wrap__nav-inner .header-wrap__nav-list > li .sub-menu li {
    margin: 0 0 10px 0;
  }
}
header #header-wrap .header-wrap__nav-inner .header-wrap__nav-list > li .sub-menu li:last-child {
  margin: 0;
}
header #header-wrap .header-wrap__nav-inner .header-wrap__nav-list > li .sub-menu li a {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  header #header-wrap .header-wrap__nav-inner .header-wrap__nav-list > li .sub-menu li a {
    font-size: 1.4rem;
  }
}
header #header-wrap .header-wrap__nav-inner .header-wrap__nav-list > li .sub-menu li .sub-menu {
  margin: 15px 0 0 15px;
}
header #header-wrap .header-wrap__nav-inner .header-wrap__nav-sub-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
header #header-wrap .header-wrap__nav-inner .header-wrap__nav-sub-list > li {
  margin: 0 0 10px 0;
}
header #header-wrap .header-wrap__nav-inner .header-wrap__nav-sub-list > li:last-child {
  margin: 0;
}
header #header-wrap .header-wrap__nav-inner .header-wrap__nav-sub-list > li a {
  font-size: 1.6rem;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
}
@media screen and (max-width: 768px) {
  header #header-wrap .header-wrap__nav-inner .header-wrap__nav-sub-list > li a {
    font-size: 1.4rem;
  }
}
header #header-wrap .header-wrap__nav-inner .header-wrap__nav-sub-list > li a::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: white;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
header #header-wrap .header-wrap__nav-inner .header-wrap__nav-sub-list > li a:hover::after {
  transform: scale(1, 1);
}
@media screen and (max-width: 1100px) {
  header #header-wrap .header-wrap__nav-inner .header-wrap__nav-sub-list > li a:hover::after {
    transform: scale(0, 1);
  }
}
header #header-wrap .header-wrap__nav-inner .header-wrap__nav-sns-list {
  padding: 0;
  margin: 40px 0 0 0;
  list-style: none;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  header #header-wrap .header-wrap__nav-inner .header-wrap__nav-sns-list {
    margin: 30px 0 0 0;
  }
}
header #header-wrap .header-wrap__nav-inner .header-wrap__nav-sns-list li {
  margin: 0 30px 0 0;
}
@media screen and (max-width: 768px) {
  header #header-wrap .header-wrap__nav-inner .header-wrap__nav-sns-list li {
    margin: 0 20px 0 0;
  }
}
header #header-wrap .header-wrap__nav-inner .header-wrap__nav-sns-list li a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
}
header #header-wrap .header-wrap__nav-inner .header-wrap__nav-sns-list li a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  header #header-wrap .header-wrap__nav-inner .header-wrap__nav-sns-list li a:hover {
    opacity: 1;
  }
}
header #header-wrap .header-wrap__nav-inner .header-wrap__nav-sns-list li a img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 40px;
}
@media screen and (max-width: 768px) {
  header #header-wrap .header-wrap__nav-inner .header-wrap__nav-sns-list li a img {
    width: 30px;
  }
}
header #header-wrap .header-wrap__nav .bg-bk {
  display: block;
  background: rgba(1, 5, 29, 0.4);
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;
}
header #header-wrap .header-wrap__menu {
  position: relative;
  background: rgba(1, 5, 29, 0.2);
  height: 140px;
  width: 140px;
  box-sizing: border-box;
  z-index: 9999;
}
@media screen and (max-width: 768px) {
  header #header-wrap .header-wrap__menu {
    height: 80px;
    width: 80px;
  }
}
header #header-wrap .header-wrap__menu-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
header #header-wrap .header-wrap__menu-inner .language-cont {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 768px) {
  header #header-wrap .header-wrap__menu-inner .language-cont {
    margin: 0 0 15px 0;
  }
}
header #header-wrap .header-wrap__menu-inner .language-cont__txt {
  margin: 0;
}
header #header-wrap .header-wrap__menu-inner .language-cont__txt a {
  font-family: "EB Garamond", serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1;
  color: #fff;
  text-decoration: none;
  display: block;
  text-decoration: none;
  transition: all 0.3s;
}
header #header-wrap .header-wrap__menu-inner .language-cont__txt a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  header #header-wrap .header-wrap__menu-inner .language-cont__txt a:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  header #header-wrap .header-wrap__menu-inner .language-cont__txt a {
    font-size: 1.4rem;
  }
}
header #header-wrap .header-wrap__menu-inner .language-cont__txt:first-child {
  padding: 0 20px 0 0;
  margin: 0 10px 0 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  header #header-wrap .header-wrap__menu-inner .language-cont__txt:first-child {
    padding: 0 15px 0 0;
    margin: 0 5px 0 0;
  }
}
header #header-wrap .header-wrap__menu-inner .language-cont__txt:first-child::after {
  content: "";
  display: inline-block;
  position: relative;
  background: url(../../images/icon_slash.svg);
  background-size: 11px;
  width: 11px;
  height: 17px;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  header #header-wrap .header-wrap__menu-inner .language-cont__txt:first-child::after {
    background-size: 9.5px;
    width: 9.5px;
    height: 14px;
  }
}
header #header-wrap .header-wrap__menu-inner .language-cont__txt.active a {
  border-bottom: solid 1px #fff;
}
header #header-wrap .header-wrap__menu-inner .header-wrap__menu-icon {
  cursor: pointer;
  height: 25px;
  width: 35px;
  box-sizing: border-box;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  header #header-wrap .header-wrap__menu-inner .header-wrap__menu-icon {
    height: 15px;
    width: 25px;
  }
}
header #header-wrap .header-wrap__menu-inner .header-wrap__menu-icon span {
  display: inline-block;
  transition: all 0.4s;
  /*アニメーションの設定*/
  position: absolute;
  left: 0;
  height: 2px;
  background: #fff;
  width: 100%;
}
@media screen and (max-width: 768px) {
  header #header-wrap .header-wrap__menu-inner .header-wrap__menu-icon span {
    height: 1px;
  }
}
header #header-wrap .header-wrap__menu-inner .header-wrap__menu-icon span:nth-of-type(1) {
  top: 0;
}
header #header-wrap .header-wrap__menu-inner .header-wrap__menu-icon span:nth-of-type(2) {
  top: 12px;
}
@media screen and (max-width: 768px) {
  header #header-wrap .header-wrap__menu-inner .header-wrap__menu-icon span:nth-of-type(2) {
    top: 7px;
  }
}
header #header-wrap .header-wrap__menu-inner .header-wrap__menu-icon span:nth-of-type(3) {
  bottom: 0;
}
header #header-wrap .header-wrap__menu-inner .header-wrap__menu-icon.menu-icon-close span:nth-of-type(1) {
  top: 12px;
  transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
  header #header-wrap .header-wrap__menu-inner .header-wrap__menu-icon.menu-icon-close span:nth-of-type(1) {
    top: 7px;
  }
}
header #header-wrap .header-wrap__menu-inner .header-wrap__menu-icon.menu-icon-close span:nth-of-type(2) {
  top: 12px;
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  header #header-wrap .header-wrap__menu-inner .header-wrap__menu-icon.menu-icon-close span:nth-of-type(2) {
    top: 7px;
  }
}
header #header-wrap .header-wrap__menu-inner .header-wrap__menu-icon.menu-icon-close span:nth-of-type(3) {
  top: 12px;
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  header #header-wrap .header-wrap__menu-inner .header-wrap__menu-icon.menu-icon-close span:nth-of-type(3) {
    top: 7px;
  }
}

/*-------------base-------------*/
/*-------------mixin-------------*/
footer {
  background: url(../../images/footer_bg_pc.jpg);
  background-size: cover;
  padding: 200px 20px 140px 20px;
}
@media screen and (max-width: 1100px) {
  footer {
    padding: 60px 20px 40px 20px;
  }
}
@media screen and (max-width: 768px) {
  footer {
    background: url(../../images/footer_bg_sp.jpg);
  }
}
footer .footer-inner {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  width: auto;
}
@media screen and (max-width: 1100px) {
  footer .footer-inner {
    flex-flow: column;
  }
}
footer .footer-inner__txt {
  max-width: 300px;
  width: 100%;
  margin: 0 40px 0 0;
}
@media screen and (max-width: 1100px) {
  footer .footer-inner__txt {
    max-width: 100%;
    order: 2;
    margin: 60px 0 0 0;
    padding: 40px 0 0 0;
    border-top: solid 1px #fff;
    align-items: center;
  }
}
footer .footer-inner__txt-heading {
  margin: 0 0 60px 0;
}
@media screen and (max-width: 1100px) {
  footer .footer-inner__txt-heading {
    margin: 0 0 40px 0;
  }
}
footer .footer-inner__txt-heading a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
}
footer .footer-inner__txt-heading a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  footer .footer-inner__txt-heading a:hover {
    opacity: 1;
  }
}
footer .footer-inner__txt-heading a img {
  display: block;
  width: 200px;
  margin: 0 auto;
}
@media screen and (max-width: 1100px) {
  footer .footer-inner__txt-heading a img {
    width: 120px;
  }
}
footer .footer-inner__txt-sns {
  padding: 0;
  margin: 0 0 60px 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1100px) {
  footer .footer-inner__txt-sns {
    margin: 0 0 20px 0;
    justify-content: center;
  }
}
footer .footer-inner__txt-sns li {
  margin: 0 30px 0 0;
}
@media screen and (max-width: 1100px) {
  footer .footer-inner__txt-sns li {
    margin: 0 20px 0 0;
  }
}
footer .footer-inner__txt-sns li:last-child {
  margin: 0;
}
footer .footer-inner__txt-sns li a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
}
footer .footer-inner__txt-sns li a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  footer .footer-inner__txt-sns li a:hover {
    opacity: 1;
  }
}
footer .footer-inner__txt-sns li a img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 40px;
}
@media screen and (max-width: 1100px) {
  footer .footer-inner__txt-sns li a img {
    width: 30px;
  }
}
footer .footer-inner__txt-contact {
  width: 100%;
  margin: 0 0 20px 0;
}
footer .footer-inner__txt-contact a {
  width: 100%;
  text-decoration: none;
  display: block;
  padding: 16px;
  box-sizing: border-box;
  border-radius: 10rem;
  background: #fff;
  color: black;
  font-size: 2rem;
  font-family: "EB Garamond", serif;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-align: center;
  position: relative;
  display: block;
  text-decoration: none;
  transition: all 0.3s;
}
footer .footer-inner__txt-contact a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  footer .footer-inner__txt-contact a:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  footer .footer-inner__txt-contact a {
    font-size: 1.6rem;
  }
}
footer .footer-inner__txt .copy-txt {
  margin: 0;
  font-size: 1.2rem;
  font-family: "EB Garamond", serif;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  text-align: center;
}
footer .footer-inner__nav {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
@media screen and (max-width: 1100px) {
  footer .footer-inner__nav {
    order: 1;
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  footer .footer-inner__nav {
    flex-flow: column;
  }
}
footer .footer-inner__nav-cont {
  margin: 0 60px 0 0;
}
@media screen and (max-width: 768px) {
  footer .footer-inner__nav-cont {
    margin: 0 0 30px 0;
  }
}
footer .footer-inner__nav-cont:last-child {
  margin: 0;
}
footer .footer-inner__nav-cont .footer-inner__nav-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
footer .footer-inner__nav-cont .footer-inner__nav-list > li {
  margin: 0 0 40px 0;
}
@media screen and (max-width: 768px) {
  footer .footer-inner__nav-cont .footer-inner__nav-list > li {
    margin: 0 0 30px 0;
  }
}
footer .footer-inner__nav-cont .footer-inner__nav-list > li:last-child {
  margin: 0;
}
footer .footer-inner__nav-cont .footer-inner__nav-list > li a {
  font-size: 2rem;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
}
@media screen and (max-width: 768px) {
  footer .footer-inner__nav-cont .footer-inner__nav-list > li a {
    font-size: 1.6rem;
  }
}
footer .footer-inner__nav-cont .footer-inner__nav-list > li a::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: white;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
footer .footer-inner__nav-cont .footer-inner__nav-list > li a:hover::after {
  transform: scale(1, 1);
}
@media screen and (max-width: 1100px) {
  footer .footer-inner__nav-cont .footer-inner__nav-list > li a:hover::after {
    transform: scale(0, 1);
  }
}
footer .footer-inner__nav-cont .footer-inner__nav-list > li .sub-menu {
  list-style: inside;
  color: #fff;
  padding: 0;
  margin: 15px 0 0 0;
}
footer .footer-inner__nav-cont .footer-inner__nav-list > li .sub-menu li {
  margin: 0 0 15px 0;
}
@media screen and (max-width: 768px) {
  footer .footer-inner__nav-cont .footer-inner__nav-list > li .sub-menu li {
    margin: 0 0 10px 0;
  }
}
footer .footer-inner__nav-cont .footer-inner__nav-list > li .sub-menu li:last-child {
  margin: 0;
}
footer .footer-inner__nav-cont .footer-inner__nav-list > li .sub-menu li a {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  footer .footer-inner__nav-cont .footer-inner__nav-list > li .sub-menu li a {
    font-size: 1.4rem;
  }
}
footer .footer-inner__nav-cont .footer-inner__nav-list > li .sub-menu li .sub-menu {
  margin: 15px 0 0 15px;
}
footer .footer-inner__nav-cont .footer-inner__navv-sub-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
footer .footer-inner__nav-cont .footer-inner__navv-sub-list > li {
  margin: 0 0 10px 0;
}
footer .footer-inner__nav-cont .footer-inner__navv-sub-list > li:last-child {
  margin: 0;
}
footer .footer-inner__nav-cont .footer-inner__navv-sub-list > li a {
  font-size: 1.6rem;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
}
@media screen and (max-width: 768px) {
  footer .footer-inner__nav-cont .footer-inner__navv-sub-list > li a {
    font-size: 1.4rem;
  }
}
footer .footer-inner__nav-cont .footer-inner__navv-sub-list > li a::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: white;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
footer .footer-inner__nav-cont .footer-inner__navv-sub-list > li a:hover::after {
  transform: scale(1, 1);
}
@media screen and (max-width: 1100px) {
  footer .footer-inner__nav-cont .footer-inner__navv-sub-list > li a:hover::after {
    transform: scale(0, 1);
  }
}/*# sourceMappingURL=style.css.map */