@charset "utf-8";
/****************

 LOCAL

****************/
/*
@font-face{
  font-family: 'A1明朝';
  src: url('/assets/font/A-OTF-A1MinchoStd-Bold.otf') format('truetype');
}
@font-face{
  font-family: 'リュウミン B-KL';
  src: url('/assets/font/A-OTF-RyuminPro-Bold.otf') format('truetype');
}
@font-face{
  font-family: 'TBUDゴシック R';
  src: url('/assets/font/TBUDGoStd-Regular.otf') format('truetype');
}


@font-face{
  font-family: 'CenturySchoolbookItalic';
  src: url('/assets/font/CenturySchoolbookItalic.ttf') format('truetype');
}
*/
/*
.font-serif(){
	//font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝";
	font-family: "Noto Serif JP", "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}
.font-serif-bold(){
	.font-serif();
	font-weight: bold;
}
*/
.abswh100 {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.wh100 {
  width: 100%;
  height: 100%;
}
.center {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.abscenter {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.hv_center {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.h_center {
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
}
.v_center {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.hover_scale {
  transition: all 200ms 0s ease;
}
.hover_scale:hover {
  transform: scale(1.03);
}
/*
$(window).on('scroll resize load', this._onScroll);
_onScroll = ()=>{
		let winH		= $(window).height();
		let scrollTop 	= $(window).scrollTop();
		this.$imgList.each((idx, target)=>{
			if( $(target).hasClass("is-effect") ) return;
			let offsetY = $(target).offset().top;
			if (scrollTop > offsetY - winH + 200) {
				$(target).addClass("is-effect");
			}
		});
	};
*/
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(120px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes bgLoopScroll {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0px -200px;
  }
}
@keyframes bgLoopScrollSP {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0px -26.66667vw;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes flash {
  0% {
    filter: brightness(120%);
  }
  20% {
    filter: brightness(140%);
  }
  100% {
    filter: brightness(100%);
  }
}
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
/*!
html5doctor.com Reset Stylesheet v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section,
summary,
time,
mark,
audio,
video,
a {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  /* background:transparent; */
  /* deleated */
  /* added */
  box-sizing: border-box;
}
input,
textarea {
  box-sizing: border-box;
}
/* added */
img {
  vertical-align: bottom;
  font-size: 0;
  line-height: 0;
}
body {
  line-height: 1;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
  display: block;
}
ol,
ul,
li {
  /*added*/
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
a {
  vertical-align: baseline;
  background: transparent;
  outline: none;
  -webkit-text-decoration-skip: objects;
  /* Remove gaps in links underline in iOS 8+ and Safari 8+ */
}
a:active,
a:hover {
  outline-width: 0;
  /* Remove the outline when hovering in all browsers */
}
a:focus {
  outline: none;
}
/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}
/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}
del {
  text-decoration: line-through;
}
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
sup {
  vertical-align: baseline;
  font-size: 1.1rem;
  line-height: 1;
}
table {
  /* deleated
    border-collapse:collapse;
    border-spacing:0;
    */
}
/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}
input,
select {
  vertical-align: baseline;
}
/*added*/
em,
address {
  font-style: normal;
}
input {
  margin: 0px;
}
input[type="submit"],
input[type="button"] {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}
/*=============================================================
//
//  Normalize [update:2017/10/28]
//
//============================================================*/
body {
  font-family: "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  color: #000;
  background-color: #EEE;
}
@media screen and (max-width: 767px) {
  body {
    -webkit-text-size-adjust: 100%;
  }
}
@media screen and (max-width: 767px) {
  html.desktop body {
    width: 100vw;
    overflow-x: hidden;
  }
}
a {
  color: black;
  cursor: pointer;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a:hover {
  text-decoration: none;
}
button {
  display: inline-block;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
input[type="text"],
textarea {
  font-family: inherit;
}
input[type="text"]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #ccc;
}
input[type="text"]::-moz-placeholder,
textarea::-moz-placeholder {
  color: #aaa;
}
input[type="text"]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #ccc;
}
.sp {
  display: none;
}
.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  img {
    width: 100%;
    height: auto;
  }
  #guide img {
    width: 375px;
  }
}
#breakpointChecker .pc {
  display: none;
}
#breakpointChecker .sp {
  display: block;
}
@media screen and (min-width: 768px) {
  #breakpointChecker .sp {
    display: none;
  }
  #breakpointChecker .pc {
    display: block;
  }
}
/*==============================================================

 ■ Common(PC)

===============================================================*/
html {
  overflow: auto;
}
body {
  font-family: 'Noto Sans JP', "游ゴシック体", 'Yu Gothic', "YuGothic", 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', "メイリオ", "Meiryo", "Osaka", 'ＭＳ Ｐゴシック', 'MS PGothic', "sans-serif";
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 200%;
  color: #4D4D4D;
  background-color: #efede6;
  overflow: hidden;
  min-width: 1280px;
  font-feature-settings: 'palt' on;
}
section {
  position: relative;
}
.inner {
  position: relative;
  width: 1134px;
  margin: 0 auto;
}
.maincontent {
  position: relative;
  width: 100%;
}
.content-wrapper {
  transition: all 1s 0s ease;
}
.content-wrapper.isOpen {
  filter: blur(50px);
}
/*==============================================================

 ■ header

===============================================================*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 30;
  min-width: 1280px;
}
.header__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(270.88deg, rgba(255, 255, 255, 0.7) 10.22%, rgba(255, 255, 255, 0.3) 111.17%);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  opacity: 0;
  transition: all 300ms 0s ease;
}
.header__title {
  display: block;
  width: 139px;
  height: 92px;
  background-image: url("../img/header_logo.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  text-indent: -9999px;
  overflow: hidden;
  position: absolute;
  left: 32px;
  top: 40px;
  transition: all 400ms 0s ease;
}
.header__title a {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.header__btngnavi {
  position: absolute;
  right: 30px;
  top: 40px;
  text-align: right;
  transition: all 800ms 0s ease;
}
.header__btngnavi__container {
  position: absolute;
  right: 80px;
  top: 0;
  width: 320px;
  height: 60px;
  background: linear-gradient(270.88deg, rgba(255, 255, 255, 0.7) 10.22%, rgba(255, 255, 255, 0.3) 111.17%);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 100px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.header__btngnavi__btnil {
  display: block;
  position: relative;
  width: 90px;
  height: 28px;
  border-radius: 100px;
  background-color: #222;
  color: white;
  text-align: center;
  line-height: 28px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.7px;
  overflow: hidden;
  margin: 0 4px;
  transition: all 300ms 0s ease;
}
.header__btngnavi__btnil.entry1 {
  background-color: white;
  color: #222;
}
.header__btngnavi__btnil.entry1:hover {
  background-color: #222;
}
.header__btngnavi__btnil.entry1:hover span {
  animation: 800ms ease-out 0s 1 normal forwards running overpcbtngnavi2;
}
.header__btngnavi__btnil.entry2 {
  background-color: #E7E2D1;
  color: #222;
}
.header__btngnavi__btnil.entry2:hover {
  background-color: white;
}
.header__btngnavi__btnil.entry2:hover span {
  animation: 800ms ease-out 0s 1 normal forwards running overpcbtngnavi1;
}
.header__btngnavi__btnil.entry3:hover {
  background-color: white;
}
.header__btngnavi__btnil.entry3:hover span {
  animation: 800ms ease-out 0s 1 normal forwards running overpcbtngnavi1;
}
.header__btngnavi__btnil span {
  display: inline-block;
}
@keyframes overpcbtngnavi1 {
  0% {
    transform: translateY(0%);
  }
  40% {
    transform: translateY(-100%);
  }
  41% {
    transform: translateY(100%);
    color: #222;
  }
  100% {
    transform: translateY(0%);
    color: #222;
  }
}
@keyframes overpcbtngnavi2 {
  0% {
    transform: translateY(0%);
  }
  40% {
    transform: translateY(-100%);
  }
  41% {
    transform: translateY(100%);
    color: white;
  }
  100% {
    transform: translateY(0%);
    color: white;
  }
}
.header__btngnavi__btnil:hover {
  transition: all 300ms 0.3s ease;
}
.header__btngnavi .menu {
  position: relative;
  vertical-align: top;
  width: 60px;
  height: 60px;
  display: inline-block;
  background-color: white;
  margin-left: 30px;
  border-radius: 200px;
  cursor: pointer;
  caret-color: transparent;
  transition: all 300ms 0s ease;
}
.header__btngnavi .menu .hr {
  width: 20px;
  height: 2px;
  background-color: #222;
  transition: all 300ms 0s ease;
}
.header__btngnavi .menu .hr1 {
  position: absolute;
  left: 19px;
  top: 25px;
}
.header__btngnavi .menu .hr2 {
  position: absolute;
  left: 19px;
  top: 31px;
}
.header__btngnavi .menu span {
  display: none;
}
.header__btngnavi .menu:hover {
  background-color: #222;
}
.header__btngnavi .menu:hover .hr {
  background-color: white;
}
.header__gnavi {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  color: white;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  pointer-events: none;
  opacity: 0;
  transition: all 1s 0s ease;
}
.header__gnavi a {
  color: white;
  display: block;
  transition: all 300ms 0s ease;
}
.header__gnavi a:hover {
  opacity: 0.6;
}
.header__gnavi__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: all 1s 0.3s ease;
}
.header__gnavi__wrapper {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-flow: column;
      flex-flow: column;
  height: 530px;
  width: 1034px;
}
.header__gnavi__container {
  margin-bottom: 40px;
}
.header__gnavi__container.header__gnavi__container4 {
  position: absolute;
  left: 330px;
  top: 0px;
}
.header__gnavi__container1 {
  width: 300px;
}
.header__gnavi__container2 {
  width: 300px;
}
.header__gnavi__container3 {
  width: 300px;
}
.header__gnavi__container4 {
  width: 450px;
}
.header__gnavi__container5 {
  width: 450px;
}
.header__gnavi__titlelink {
  white-space: nowrap;
  margin-bottom: 20px;
}
.header__gnavi__titlelink .en {
  font-family: 'Albert Sans', 'Noto Sans JP', "游ゴシック体", 'Yu Gothic', "YuGothic", "Noto Sans JP", 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', "メイリオ", "Meiryo", "Osaka", 'ＭＳ Ｐゴシック', 'MS PGothic', "sans-serif";
  font-size: 36px;
  font-weight: 700;
  line-height: 100%;
  /* 36px */
  letter-spacing: 0.72px;
  margin-right: 20px;
  vertical-align: middle;
}
.header__gnavi__titlelink .jp {
  font-size: 13px;
  font-weight: 500;
  line-height: 100%;
  /* 26px */
  letter-spacing: 0.65px;
}
.header__gnavi__link {
  width: 260px;
  font-size: 13px;
  font-weight: 500;
  line-height: 200%;
  /* 26px */
  letter-spacing: 0.65px;
}
.header__gnavi .header__gnavi__sub {
  position: absolute;
  left: 330px;
  top: 180px;
}
.header__gnavi .header__gnavi__sub .en {
  font-size: 26px;
}
.header__gnavi .header__gnavi__sub .header__gnavi__titlelink {
  margin-bottom: 24px;
}
.header__gnavi__sns {
  position: absolute;
  left: 330px;
  top: 370px;
}
.header__gnavi__sns__link {
  position: relative;
  display: inline-block !important;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  background-color: white;
  border: 1px solid white;
  transition: all 300ms 0s ease;
  margin-right: 10px;
}
.header__gnavi__sns__link span {
  display: block;
}
.header__gnavi__sns__link:hover {
  opacity: 1 !important;
}
.header__gnavi__sns__link.note span {
  display: block;
  width: 10px;
  height: 10px;
  background-image: url("../img/top/icon_note.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  text-indent: -9999px;
  overflow: hidden;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.header__gnavi__sns__link.ig span {
  display: block;
  width: 12px;
  height: 12px;
  background-image: url("../img/top/icon_ig.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  text-indent: -9999px;
  overflow: hidden;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.header.isOpen .header__bg {
  opacity: 0;
}
.header.isOpen .header__gnavi__bg {
  opacity: 1;
  transition: all 1s 0.2s ease;
}
.header.isOpen .header__gnavi {
  pointer-events: auto;
  opacity: 1;
}
.header.isOpen .header__btngnavi .menu .hr {
  width: 10px;
  height: 2px;
}
.header.isOpen .header__btngnavi .menu .hr1 {
  transform: rotate(45deg);
  top: 28px;
  left: 24px;
}
.header.isOpen .header__btngnavi .menu .hr2 {
  transform: rotate(-45deg);
  top: 28px;
  left: 24px;
}
.pcgnavi {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 1280px;
  z-index: 31;
  transition: all 800ms 0s ease;
}
.pcgnavi__container {
  width: 100%;
  position: absolute;
  right: 446px;
  top: 57px;
  text-align: right;
}
.pcgnavi a {
  position: relative;
  margin: 0 15px;
  transition: all 300ms 0s ease;
}
.pcgnavi__link {
  position: relative;
  display: inline-block;
  overflow-x: hidden;
}
.pcgnavi__link:after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: white;
  position: absolute;
  left: -100%;
  bottom: 0;
  transition: all 0.3s 0.3s ease;
}
.pcgnavi__link div {
  overflow: hidden;
}
.pcgnavi__link span {
  transition: all 300ms 0s ease;
}
.pcgnavi__link span.en {
  display: block;
  font-family: 'Albert Sans', 'Noto Sans JP', "游ゴシック体", 'Yu Gothic', "YuGothic", "Noto Sans JP", 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', "メイリオ", "Meiryo", "Osaka", 'ＭＳ Ｐゴシック', 'MS PGothic', "sans-serif";
  color: white;
  font-size: 14px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.32px;
  text-align: left;
  transition: all 300ms 0s ease;
}
.pcgnavi__link span.jp {
  display: block;
  color: white;
  font-size: 10px;
  font-weight: 700;
  text-align: left;
  margin-top: -8px;
}
.pcgnavi__link:hover:after {
  position: absolute;
  left: 0;
  bottom: 0;
}
.pcgnavi__link:hover span.en {
  animation: 400ms ease-out 0s 1 normal forwards running overpcgnavi;
}
@keyframes overpcgnavi {
  0% {
    transform: translateY(0%);
  }
  40% {
    transform: translateY(-100%);
  }
  41% {
    transform: translateY(100%);
    opacity: 1;
  }
  100% {
    transform: translateY(0%);
    opacity: 0.7;
  }
}
.pcgnavi__link:hover span.jp {
  animation: 400ms ease-out 0s 1 normal forwards running overpcgnavi;
}
.pcgnavi.isOpen {
  top: -60px;
  pointer-events: none;
  opacity: 0;
}
body.scrolled .header__bg {
  opacity: 1;
}
body.scrolled .header__btngnavi {
  top: 20px;
}
body.scrolled .pcgnavi {
  top: -20px;
}
body.scrolled .pcgnavi__link span {
  color: #222222;
}
body.scrolled .pcgnavi__link:after {
  background-color: #222222;
}
body.scrolled .header__title {
  display: block;
  width: 220px;
  height: 40px;
  background-image: url("../img/header_logo_scroll.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  text-indent: -9999px;
  overflow: hidden;
  position: absolute;
  left: 32px;
  top: 30px;
}
/*==============================================================

 ■ footer

===============================================================*/
.subfooter {
  position: relative;
  z-index: 29;
  width: 100%;
  height: 900px;
  overflow: hidden;
  background-color: #3e3e3e;
}
.subfooter .inner {
  width: 1034px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.subfooter__list__detail {
  position: relative;
  width: 500px;
  height: 118px;
  border-bottom: 1px solid #AAAAAA;
  margin: 20px 0;
}
.subfooter__list__detail a {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.subfooter__list__detail__titleE {
  font-family: 'Albert Sans', 'Noto Sans JP', "游ゴシック体", 'Yu Gothic', "YuGothic", "Noto Sans JP", 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', "メイリオ", "Meiryo", "Osaka", 'ＭＳ Ｐゴシック', 'MS PGothic', "sans-serif";
  font-size: 12px;
  font-weight: 700;
  color: #CBC09D;
}
.subfooter__list__detail__titleJ {
  color: white;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 0.05em;
  margin-top: 6px;
}
.subfooter__list__detail__arrow {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 100px;
  background: white;
  overflow: hidden;
  transition: all 300ms 0s ease;
  position: absolute;
  right: 0;
  top: 35px;
}
.subfooter__list__detail__arrow:before {
  content: '';
  width: 40px;
  height: 40px;
  background-color: #262626;
  border-radius: 200px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: scale(0);
  transition: all 300ms 0s ease;
}
.subfooter__list__detail__arrow:after {
  content: '';
  display: block;
  width: 12.8px;
  height: 9.6px;
  background-image: url("../img/btn_arrow.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  text-indent: -9999px;
  overflow: hidden;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.subfooter__list__detail:hover .arrow {
  background-color: #262626;
  transition: all 300ms 0.3s ease;
}
.subfooter__list__detail:hover .arrow:before {
  transform: scale(1);
}
.subfooter__list__detail:hover .arrow:after {
  animation: 600ms ease-out 0s 1 normal forwards running overarrow3;
}
@keyframes overarrow3 {
  0% {
    transform: translateX(0px);
  }
  40% {
    transform: translateX(40px);
  }
  41% {
    display: block;
    width: 16px;
    height: 12px;
    background-image: url("../img/btn_arrow_w.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    text-indent: -9999px;
    overflow: hidden;
    transform: translateX(-40px);
  }
  100% {
    display: block;
    width: 16px;
    height: 12px;
    background-image: url("../img/btn_arrow_w.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    text-indent: -9999px;
    overflow: hidden;
    transform: translateX(0px);
  }
}
.subfooter__list__detail.detail2 .subfooter__list__detail__arrow {
  transform: rotate(-45deg);
}
.subfooter__list__detail.detail3 .subfooter__list__detail__arrow {
  transform: rotate(-45deg);
}
.subfooter__list__detail.detail4 .subfooter__list__detail__arrow {
  transform: rotate(-45deg);
}
.subfooter__acc1 {
  width: 254px;
  height: 1500px;
  background: url(../img/subfoot_scr1.png) top left / 100% repeat-y;
  position: absolute;
  right: 390px;
  top: -200px;
  animation: footbgscroll1 40s linear 0s infinite normal none running  ;
  transform: rotate(30deg);
}
.subfooter__acc2 {
  width: 254px;
  height: 1500px;
  background: url(../img/subfoot_scr2.png) top left / 100% repeat-y;
  position: absolute;
  right: 74px;
  top: -140px;
  animation: footbgscroll2 40s linear 0s infinite normal none running  ;
  transform: rotate(30deg);
}
@keyframes footbgscroll1 {
  0% {
    background-position-y: 0 ;
  }
  100% {
    background-position-y: 1506px ;
  }
}
@keyframes footbgscroll2 {
  0% {
    background-position-y: 0 ;
  }
  100% {
    background-position-y: -1506px;
  }
}
.footer {
  position: relative;
  width: 100%;
  height: 835px;
  background-color: #252525;
  z-index: 29;
}
.footer .inner {
  width: 1254px;
}
.footer__logo {
  width: 181px;
  height: 112px;
  background-image: url("../img/footer_logo.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  text-indent: -9999px;
  overflow: hidden;
  position: absolute;
  left: 3px;
  top: 104px;
  display: block;
  transition: all 300ms 0s ease;
}
.footer__logo:hover {
  opacity: 0.5;
}
.footer__nav {
  width: 824px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  position: absolute;
  left: 425px;
  top: 100px;
}
.footer__nav__column {
  width: 180px;
  border-top: 1px solid white;
  padding-top: 10px;
}
.footer__nav__title {
  display: block;
  position: relative;
  font-size: 14px;
  font-weight: 700;
  line-height: 100%;
  color: white;
}
.footer__nav a.footer__nav__title {
  display: block;
  overflow: hidden;
}
.footer__nav a.footer__nav__title:after {
  content: '';
  width: 9px;
  height: 7px;
  background-image: url("../img/footer_btn_arrow.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  text-indent: -9999px;
  overflow: hidden;
  display: block;
  position: absolute;
  right: 0;
  top: 4px;
}
.footer__nav a.footer__nav__title span {
  display: inline-block;
}
.footer__nav a.footer__nav__title:hover span {
  animation: 400ms ease-out 0s 1 normal forwards running overfooterlink;
}
.footer__nav__link {
  margin-top: 26px;
}
.footer__nav__link__item {
  display: block;
  font-size: 13px;
  color: #AAAAAA;
  line-height: 100%;
  margin-bottom: 13px;
  overflow: hidden;
}
.footer__nav__link__item span {
  display: inline-block;
}
.footer__nav__link__item:hover span {
  animation: 400ms ease-out 0s 1 normal forwards running overfooterlink;
}
@keyframes overfooterlink {
  0% {
    transform: translateY(0%);
  }
  40% {
    transform: translateY(-100%);
  }
  41% {
    transform: translateY(100%);
    opacity: 1;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}
.footer__nav__column2 .footer__nav__link div {
  pointer-events: none;
}
.footer__nav__column4 {
  border: none;
  padding-top: 0;
}
.footer__nav__column4 .footer__nav__litem {
  position: relative;
  display: block;
  border-top: 1px solid white;
  color: white;
  font-size: 14px;
  line-height: 100%;
  font-weight: 700;
  font-family: 'Albert Sans', 'Noto Sans JP', "游ゴシック体", 'Yu Gothic', "YuGothic", "Noto Sans JP", 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', "メイリオ", "Meiryo", "Osaka", 'ＭＳ Ｐゴシック', 'MS PGothic', "sans-serif";
  height: 35px;
  overflow: hidden;
  margin-bottom: 30px;
  padding-top: 10px;
}
.footer__nav__column4 .footer__nav__litem:after {
  content: '';
  width: 9px;
  height: 7px;
  background-image: url("../img/footer_btn_arrow.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  text-indent: -9999px;
  overflow: hidden;
  display: block;
  position: absolute;
  right: 0;
  top: 14px;
}
.footer__nav__column4 .footer__nav__litem span {
  display: inline-block;
}
.footer__nav__column4 .footer__nav__litem span.s_outer {
  overflow: hidden;
}
.footer__nav__column4 .litem1:hover span.s_inner,
.footer__nav__column4 .litem2:hover span.s_inner,
.footer__nav__column4 .litem3:hover span.s_inner {
  animation: 400ms ease-out 0s 1 normal forwards running overfooterlink;
}
.footer__nav__column4 .litem4 {
  overflow: visible;
}
.footer__nav__column4 .litem4:after {
  display: none;
}
.footer__nav__column4 .litem4 .text {
  margin-bottom: 24px;
}
.footer__nav__column4 .litem4__link {
  position: relative;
  display: block;
  color: #AAA;
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 8px ;
}
.footer__nav__column4 .litem4__link:hover span.s_inner {
  animation: 400ms ease-out 0s 1 normal forwards running overfooterlink;
}
.footer__nav__column4 .litem4__link:after {
  content: '';
  display: block;
  width: 9px;
  height: 7px;
  background-image: url("../img/footer_btn_arrow.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  text-indent: -9999px;
  overflow: hidden;
  display: inline-block;
  margin-left: 5px;
  margin-bottom: 4px;
  transform: rotate(-45deg);
  opacity: 0.66;
}
.footer__brands {
  width: 824px;
  border-top: 1px solid white;
  position: absolute;
  left: 425px;
  top: 444px;
}
.footer__brands__title {
  font-size: 14px;
  font-weight: 700;
  color: white;
}
.footer__brands__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-top: 28px;
}
.footer__brands__list__detail {
  position: relative;
  width: 180px;
  height: 112px;
  background-color: white;
}
.footer__brands__list__detail:hover img {
  transform: scale(1.1);
}
.footer__brands__list__detail__img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.footer__brands__list__detail__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 300ms 0s ease;
}
.footer__brands__list__detail a {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.footer__other__copyright {
  font-weight: 400;
  font-size: 11px;
  color: #AAAAAA;
  position: absolute;
  left: 3px;
  top: 680px;
}
.footer__other__sns {
  position: absolute;
  left: 830px;
  top: 677px;
}
.footer__other__sns__link {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  background-color: white;
  border: 1px solid white;
  transition: all 300ms 0s ease;
  margin-right: 10px;
}
.footer__other__sns__link span {
  display: block;
}
.footer__other__sns__link.note span {
  display: block;
  width: 10px;
  height: 10px;
  background-image: url("../img/top/icon_note.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  text-indent: -9999px;
  overflow: hidden;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.footer__other__sns__link.insta span {
  display: block;
  width: 12px;
  height: 12px;
  background-image: url("../img/top/icon_ig.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  text-indent: -9999px;
  overflow: hidden;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.footer__other__cpsite {
  position: absolute;
  left: 957px;
  top: 683px;
  display: inline-block;
  font-family: 'Albert Sans', 'Noto Sans JP', "游ゴシック体", 'Yu Gothic', "YuGothic", "Noto Sans JP", 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', "メイリオ", "Meiryo", "Osaka", 'ＭＳ Ｐゴシック', 'MS PGothic', "sans-serif";
  white-space: nowrap;
  font-weight: 700;
  font-size: 12px;
  color: white;
  height: 32px;
  line-height: 30px;
  overflow: hidden;
}
.footer__other__cpsite span {
  display: inline-block;
}
.footer__other__cpsite:hover span {
  animation: 400ms ease-out 0s 1 normal forwards running overfooterlink;
}
.footer__other__cpsite:hover:after {
  animation: 400ms ease-out 0s 1 normal forwards running overfootersnsarrow2;
}
@keyframes overfootersnsarrow2 {
  0% {
    transform: translateY(0%) rotate(-45deg);
  }
  40% {
    transform: translateY(-300%) rotate(-45deg);
  }
  41% {
    transform: translateY(300%) rotate(-45deg);
  }
  100% {
    transform: translateY(0%) rotate(-45deg);
  }
}
.footer__other__cpsite:after {
  content: '';
  display: block;
  width: 9px;
  height: 7px;
  background-image: url("../img/footer_btn_arrow.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  text-indent: -9999px;
  overflow: hidden;
  display: inline-block;
  transform: rotate(-45deg);
  margin-left: 6px;
}
.footer__other__pgtop {
  display: block;
  width: 40px;
  height: 40px;
  border: 1px solid #AAAAAA;
  border-radius: 100px;
  text-indent: -9999px;
  overflow: hidden;
  position: absolute;
  left: 1211px;
  top: 677px;
  transition: all 300ms 0s ease;
}
.footer__other__pgtop:hover {
  background-color: white;
}
.footer__other__pgtop:hover:after {
  animation: 400ms ease-out 0s 1 normal forwards running overfootersnsarrow3;
}
@keyframes overfootersnsarrow3 {
  0% {
    transform: translateY(0%);
  }
  40% {
    transform: translateY(-300%);
  }
  41% {
    transform: translateY(300%) rotate(-90deg);
    display: block;
    width: 9px;
    height: 7px;
    background-image: url("../img/footer_btn_arrow_b.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    text-indent: -9999px;
    overflow: hidden;
    display: inline-block;
  }
  100% {
    transform: translateY(0%) rotate(-90deg);
    display: block;
    width: 9px;
    height: 7px;
    background-image: url("../img/footer_btn_arrow_b.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    text-indent: -9999px;
    overflow: hidden;
    display: inline-block;
  }
}
.footer__other__pgtop:after {
  content: '';
  width: 9px;
  height: 7px;
  background-image: url("../img/footer_btn_arrow.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  text-indent: -9999px;
  overflow: hidden;
  display: block;
  transform: rotate(-90deg);
  position: absolute;
  left: 15px;
  top: 15px;
}
/*==============================================================

 ■ commontitle

===============================================================*/
.kv__title__E {
  font-family: 'Albert Sans', 'Noto Sans JP', "游ゴシック体", 'Yu Gothic', "YuGothic", "Noto Sans JP", 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', "メイリオ", "Meiryo", "Osaka", 'ＭＳ Ｐゴシック', 'MS PGothic', "sans-serif";
  font-size: 100px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 100%;
  overflow: hidden;
}
.kv__title__E span {
  display: inline-block;
  transform: translateY(100%);
}
.kv__title__J {
  display: block;
  font-size: 20px;
  margin-top: 10px;
  overflow: hidden;
}
.kv__title__J span {
  display: inline-block;
  transform: translateY(100%);
}
/*==============================================================

 ■ 関連リンク

===============================================================*/
.rellink {
  width: 100%;
  height: 400px;
  overflow: hidden;
}
.rellink .link {
  pointer-events: none;
}
.rellink .link.inv .arrow {
  background-color: #4B4B4B;
}
.rellink .link.inv .arrow:after {
  display: block;
  width: 16px;
  height: 12px;
  background-image: url("../img/btn_arrow_w.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  text-indent: -9999px;
  overflow: hidden;
}
.rellink .link.inv .text {
  color: #4B4B4B;
}
.rellink:hover .arrow {
  background-color: #4B4B4B;
  transition: all 300ms 0.2s ease;
}
.rellink:hover .arrow:before {
  transform: scale(1);
}
.rellink:hover .arrow:after {
  animation: 600ms ease-out 0s 1 normal forwards running overarrow2;
}
@keyframes overarrow2 {
  0% {
    transform: translateX(0px);
  }
  40% {
    transform: translateX(60px);
  }
  41% {
    background: url(../img/btn_arrow_w.svg) center center / contain no-repeat;
    transform: translateX(-60px);
  }
  100% {
    background: url(../img/btn_arrow_w.svg) center center / contain no-repeat;
    transform: translateX(0px);
  }
}
.rellink__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 300ms 0s ease;
}
.rellink__titleE {
  font-family: 'Albert Sans', 'Noto Sans JP', "游ゴシック体", 'Yu Gothic', "YuGothic", "Noto Sans JP", 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', "メイリオ", "Meiryo", "Osaka", 'ＭＳ Ｐゴシック', 'MS PGothic', "sans-serif";
  font-weight: 700;
  font-size: 60px;
  line-height: 100%;
  letter-spacing: 0.02em;
  color: #FFF;
  position: absolute;
  left: 105px;
  top: 157px;
}
.rellink__titleJ {
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.05em;
  color: #FFF;
  position: absolute;
  left: 105px;
  top: 227px;
}
.rellink__link {
  position: absolute;
  right: -36px;
  top: 280px;
}
.rellink__link .arrow {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 60px;
  background-color: white;
  border-radius: 100px;
  background: white;
  vertical-align: middle;
  overflow: hidden;
  transition: all 300ms 0s ease;
}
.rellink__link .arrow:before {
  content: '';
  width: 60px;
  height: 60px;
  background-color: #262626;
  border-radius: 200px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: scale(0);
  transition: all 300ms 0s ease;
}
.rellink__link .arrow:after {
  content: '';
  display: block;
  width: 16px;
  height: 12px;
  background-image: url("../img/btn_arrow.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  text-indent: -9999px;
  overflow: hidden;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.rellink__link .text {
  font-family: 'Albert Sans', 'Noto Sans JP', "游ゴシック体", 'Yu Gothic', "YuGothic", "Noto Sans JP", 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', "メイリオ", "Meiryo", "Osaka", 'ＭＳ Ｐゴシック', 'MS PGothic', "sans-serif";
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-left: 14px;
}
.rellink__link:hover .arrow {
  background-color: #262626;
  transition: all 300ms 0.2s ease;
}
.rellink__link:hover .arrow:before {
  transform: scale(1);
}
.rellink__link:hover .arrow:after {
  animation: 600ms ease-out 0s 1 normal forwards running overarrow2;
}
@keyframes overarrow2 {
  0% {
    transform: translateX(0px);
  }
  40% {
    transform: translateX(60px);
  }
  41% {
    display: block;
    width: 16px;
    height: 12px;
    background-image: url("../img/btn_arrow_w.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    text-indent: -9999px;
    overflow: hidden;
    transform: translateX(-60px);
  }
  100% {
    display: block;
    width: 16px;
    height: 12px;
    background-image: url("../img/btn_arrow_w.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    text-indent: -9999px;
    overflow: hidden;
    transform: translateX(0px);
  }
}
.rellink__link.out .arrow {
  transform: rotate(-45deg);
}
.rellink a {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.rellink:hover .rellink__bg {
  transform: scale(1.05);
}
