@charset "utf-8";
/*
.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(SP)

===============================================================*/
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: 48px;
  line-height: 200%;
  color: #4D4D4D;
  background-color: #efede6;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow-x: hidden;
}
section {
  position: relative;
}
.maincontent {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.content-wrapper {
  transition: all 1s 0s ease;
}
.content-wrapper.isOpen {
  filter: blur(40px);
  transform: translateZ(0);
}
.inner {
  position: relative;
  width: 630px;
  margin: 0 auto;
}
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 30;
}
.header__title {
  position: absolute;
  left: 60px;
  top: 60px;
  width: 30.667vw;
  height: 18.667vw;
  background-image: url("../img/sp_header_logo.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
  transition: all 300ms 0s ease;
  pointer-events: auto;
}
.header__title a {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.header__title a {
  display: block;
}
.header__pcgnavi {
  display: none !important;
}
.header__gnavi {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  position: fixed;
  left: 0%;
  height: 100vh;
  color: white;
  pointer-events: none;
  opacity: 0;
  transition: all 1s 0s ease;
}
.header__gnavi a {
  color: white;
}
.header__gnavi__container {
  margin-bottom: 16px;
}
.header__gnavi__wrapper {
  position: relative;
  padding-top: 126px;
  padding-bottom: 500px;
  padding-left: 60px;
  height: 100vh;
  height: 100dvh;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow-y: scroll;
}
.header__gnavi__titlelink {
  white-space: nowrap;
  margin-bottom: 40px;
}
.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: 48px;
  font-weight: 700;
  line-height: 100%;
  /* 36px */
  letter-spacing: 0.96px;
  margin-right: 20px;
  vertical-align: middle;
}
.header__gnavi__titlelink .jp {
  font-size: 20px;
  font-weight: 500;
  line-height: 100%;
  /* 26px */
  letter-spacing: 1px;
}
.header__gnavi__link {
  display: block;
  width: 400px;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%;
  /* 24px */
  letter-spacing: 1.2px;
}
.header__gnavi .header__gnavi__sub {
  margin-top: 120px;
}
.header__gnavi .header__gnavi__sub .en {
  font-size: 32px;
  display: block;
}
.header__gnavi .header__gnavi__sub .jp {
  display: block;
  margin-top: 12px;
}
.header__gnavi .header__gnavi__sub .header__gnavi__titlelink {
  display: block;
  margin-bottom: 50px;
}
.header__gnavi__sns {
  margin-top: 80px;
}
.header__gnavi__sns__link {
  position: relative;
  display: inline-block;
  width: 112px;
  height: 112px;
  background-color: white;
  border-radius: 200px;
  margin-right: 32px;
}
.header__gnavi__sns__link.note span {
  width: 3.733vw;
  height: 3.733vw;
  background-image: url("../img/top/icon_note.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.header__gnavi__sns__link.note span a {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.header__gnavi__sns__link.ig span {
  width: 4.48vw;
  height: 4.48vw;
  background-image: url("../img/top/icon_ig.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.header__gnavi__sns__link.ig span a {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.header__gnavi__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: all 1s 0.3s ease;
  pointer-events: none;
}
.header__btngnavi {
  position: fixed;
  width: 100%;
  top: calc(100dvh - 20vw);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
.header__btngnavi .entry {
  width: 300px;
  height: 100px;
  border-radius: 200px;
  background-color: #222;
  color: white;
  text-align: center;
  display: inline-block;
  line-height: 100px;
  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: 28px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0 20px;
}
.header__btngnavi__container {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 690px;
  height: 120px;
  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: 200px;
  height: 56px;
  border-radius: 400px;
  background-color: #222;
  color: white;
  text-align: center;
  line-height: 56px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  overflow: hidden;
  margin: 0 8px;
}
.header__btngnavi__btnil.entry1 {
  background-color: white;
  color: #222;
}
.header__btngnavi__btnil.entry2 {
  background-color: #E7E2D1;
  color: #222;
}
.header__btngnavi__btnil.entry3 {
  background-color: #222;
  color: white;
}
.header__btngnavi__btnil span {
  display: inline-block;
}
.header__btngnavi .menu {
  position: absolute;
  right: 10px;
  top: -160px;
  width: 120px;
  height: 120px;
  border-radius: 200px;
  background-color: white;
  color: #333;
  padding-left: 60px;
  display: inline-block;
  line-height: 100px;
  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: 28px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0 20px;
}
.header__btngnavi .menu span:before {
  display: none;
}
.header__btngnavi .menu .hr {
  width: 40px;
  height: 4px;
  background-color: #333;
  transition: all 300ms 0s ease;
}
.header__btngnavi .menu .hr1 {
  position: absolute;
  right: 40px;
  top: 52px;
}
.header__btngnavi .menu .hr2 {
  position: absolute;
  right: 40px;
  top: 64px;
}
.header.isOpen .header__title {
  opacity: 0;
  pointer-events: none;
}
.header.isOpen .header__gnavi {
  pointer-events: auto;
  opacity: 1;
}
.header.isOpen .header__gnavi__bg {
  opacity: 1;
  transition: all 1s 0.2s ease;
  pointer-events: auto;
}
.header.isOpen .header__btngnavi .menu .hr1 {
  transform: rotate(45deg);
  top: 58px;
}
.header.isOpen .header__btngnavi .menu .hr2 {
  transform: rotate(-45deg);
  top: 58px;
}
.header.isOpen .header__btngnavi .menu span:before {
  content: "CLOSE";
}
.pcgnavi {
  display: none !important;
}
/*==============================================================

 ■ footer

===============================================================*/
.subfooter {
  position: relative;
  width: 100%;
  height: 1140px;
  overflow: hidden;
  background-color: #3e3e3e;
  z-index: 30;
}
.subfooter .inner {
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.subfooter__list__detail {
  width: 628px;
  height: 208px;
  border-bottom: 1px solid #AAAAAA;
  padding-top: 38px;
  position: relative;
}
.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: 20px;
  font-weight: 700;
  color: #CBC09D;
}
.subfooter__list__detail__titleJ {
  color: white;
  font-weight: 700;
  font-size: 40px;
  letter-spacing: 0.05em;
  margin-top: -48px;
}
.subfooter__list__detail__arrow {
  position: relative;
  display: block;
  width: 48px;
  height: 48px;
  background-color: white;
  border-radius: 200px;
  background: white;
  position: absolute;
  right: 0px;
  top: 112px;
}
.subfooter__list__detail__arrow:before {
  content: '';
  width: 2.133vw;
  height: 1.6vw;
  background-image: url("../img/btn_arrow.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.subfooter__list__detail__arrow:before a {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.subfooter__list__detail.detail2 .subfooter__list__detail__arrow:before {
  transform: rotate(-45deg);
}
.subfooter__list__detail.detail3 .subfooter__list__detail__arrow:before {
  transform: rotate(-45deg);
}
.subfooter__list__detail.detail4 .subfooter__list__detail__arrow:before {
  transform: rotate(-45deg);
}
.subfooter__acc1 {
  width: 268px;
  height: 2000px;
  background: url(../img/subfoot_scr1.png) top left / 100% repeat-y;
  position: absolute;
  right: 270px;
  top: -280px;
  animation: footbgscroll1 40s linear 0s infinite normal none running  ;
  transform: rotate(30deg);
}
.subfooter__acc2 {
  width: 268px;
  height: 2000px;
  background: url(../img/subfoot_scr2.png) top left / 100% repeat-y;
  position: absolute;
  right: -32px;
  top: -160px;
  animation: footbgscroll2 40s linear 0s infinite normal none running  ;
  transform: rotate(30deg);
}
@keyframes footbgscroll1 {
  0% {
    background-position-y: 0 ;
  }
  100% {
    background-position-y: 1588px;
  }
}
@keyframes footbgscroll2 {
  0% {
    background-position-y: 0 ;
  }
  100% {
    background-position-y: -1588px;
  }
}
.footer {
  position: relative;
  width: 100%;
  height: 2700px;
  background-color: #252525;
  overflow: hidden;
  padding-top: 100px;
  z-index: 30;
}
.footer__logo {
  width: 39.2vw;
  height: 25.867vw;
  background-image: url("../img/sp_footer_logo.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
  margin: 0 auto;
  display: block;
}
.footer__logo a {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.footer__nav {
  width: 100%;
  position: absolute;
  left: 0px;
  top: 288px;
}
.footer__nav__column {
  width: 296px;
  border-top: 1px solid white;
  padding-top: 20px;
}
.footer__nav__title {
  display: block;
  position: relative;
  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: 26px;
  font-weight: 700;
  color: white;
  line-height: 100%;
}
.footer__nav a.footer__nav__title:after {
  content: '';
  width: 3.6vw;
  height: 2.8vw;
  background-image: url("../img/footer_btn_arrow.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
  display: block;
  position: absolute;
  right: 0;
  top: 4px;
}
.footer__nav a.footer__nav__title:after a {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.footer__nav__link {
  margin-top: 20px;
}
.footer__nav__link__item {
  display: block;
  font-size: 24px;
  color: #AAAAAA;
  line-height: 200%;
}
.footer__nav__column1 {
  position: absolute;
  left: 0;
  top: 0;
}
.footer__nav__column2 {
  position: absolute;
  left: 332px;
  top: 0;
}
.footer__nav__column2 a.footer__nav__link__item {
  font-size: 20px;
}
.footer__nav__column2 a.footer__nav__link__item:first-of-type {
  font-size: 24px;
}
.footer__nav__column3 {
  position: absolute;
  left: 0px;
  top: 384px;
}
.footer__nav__column3 .footer__nav__link {
  margin-top: 36px;
}
.footer__nav__column4 {
  border: none;
  padding-top: 0;
  position: absolute;
  left: 332px;
  top: 384px;
}
.footer__nav__column4 .footer__nav__litem {
  position: relative;
  display: block;
  border-top: 1px solid white;
  line-height: 110%;
  color: white;
  font-size: 26px;
  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";
  padding: 20px 0 40px;
}
.footer__nav__column4 .footer__nav__litem:after {
  content: '';
  width: 3vw;
  height: 2.333vw;
  background-image: url("../img/footer_btn_arrow.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
  display: block;
  position: absolute;
  right: 0;
  top: 24px;
}
.footer__nav__column4 .footer__nav__litem:after a {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.footer__nav__column4 .litem4 {
  overflow: visible;
}
.footer__nav__column4 .litem4:after {
  display: none;
}
.footer__nav__column4 .litem4 .text {
  margin-bottom: 40px;
}
.footer__nav__column4 .litem4__link {
  position: relative;
  display: block;
  color: #AAA;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 16px;
}
.footer__nav__column4 .litem4__link:after {
  content: '';
  width: 3vw;
  height: 2.333vw;
  background-image: url("../img/footer_btn_arrow.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
  display: inline-block;
  margin-left: 10px;
  margin-bottom: 0px;
  transform: rotate(-45deg);
  opacity: 0.66;
}
.footer__nav__column4 .litem4__link:after a {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.footer__brands {
  width: 100%;
  border-top: 1px solid white;
  position: absolute;
  left: 0px;
  top: 1236px;
  padding-top: 20px;
}
.footer__brands__title {
  font-size: 26px;
  font-weight: 700;
  color: white;
  line-height: 100%;
}
.footer__brands__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 40px;
  gap: 36px;
}
.footer__brands__list__detail {
  position: relative;
  width: 296px;
  height: 184px;
  background-color: white;
}
.footer__brands__list__detail__img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.footer__brands__list__detail__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer__brands__list__detail a {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.footer__other {
  position: absolute;
  left: 0px;
  top: 1880px;
  width: 100%;
}
.footer__other__copyright {
  font-weight: 400;
  font-size: 20px;
  color: #AAAAAA;
  white-space: nowrap;
  position: absolute;
  left: 0px;
  top: 230px;
}
.footer__other__sns {
  display: -ms-flexbox;
  display: flex;
}
.footer__other__sns__link {
  position: relative;
  display: block;
  width: 112px;
  height: 112px;
  background-color: white;
  border-radius: 200px;
  margin-right: 30px;
}
.footer__other__sns__link.note span {
  width: 3.467vw;
  height: 3.467vw;
  background-image: url("../img/top/icon_note.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.footer__other__sns__link.note span a {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.footer__other__sns__link.insta span {
  width: 4.16vw;
  height: 4.16vw;
  background-image: url("../img/top/icon_ig.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.footer__other__sns__link.insta span a {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.footer__other__cpsite {
  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";
  font-weight: 700;
  font-size: 26px;
  color: white;
  height: 64px;
  line-height: 60px;
  margin-top: 36px;
}
.footer__other__cpsite:after {
  content: '';
  width: 3vw;
  height: 2.333vw;
  background-image: url("../img/footer_btn_arrow.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
  display: inline-block;
  transform: rotate(-45deg);
  margin-left: 20px;
}
.footer__other__cpsite:after a {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.footer__other__pgtop {
  display: block;
  width: 80px;
  height: 80px;
  border: 1px solid #AAAAAA;
  border-radius: 200px;
  text-indent: -9999px;
  overflow: hidden;
  position: absolute;
  right: 0px;
  top: 210px;
}
.footer__other__pgtop:after {
  content: '';
  width: 3vw;
  height: 2.333vw;
  background-image: url("../img/footer_btn_arrow.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
  display: block;
  transform: rotate(-90deg);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.footer__other__pgtop:after a {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
/*==============================================================

 ■ 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: 112px;
  font-weight: 700;
  line-height: 100%;
  /* 56px */
  letter-spacing: 2.24px;
  overflow: hidden;
}
.kv__title__E span {
  display: inline-block;
  transform: translateY(100%);
}
.kv__title__J {
  display: block;
  font-size: 36px;
  font-weight: 700;
  line-height: 100%;
  /* 18px */
  letter-spacing: 1.8px;
  margin-top: 20px;
  overflow: hidden;
}
.kv__title__J span {
  display: inline-block;
  transform: translateY(100%);
}
/*==============================================================

 ■ 関連リンク

===============================================================*/
.rellink {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  margin-top: -1px;
}
.rellink__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.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-size: 64px;
  font-weight: 700;
  line-height: 100%;
  /* 32px */
  letter-spacing: 1.28px;
  color: #FFF;
  position: absolute;
  left: 0px;
  top: 160px;
}
.rellink__titleJ {
  font-size: 26px;
  font-weight: 700;
  line-height: 100%;
  /* 13px */
  letter-spacing: 1.3px;
  color: #FFF;
  position: absolute;
  left: 0px;
  top: 308px;
}
.rellink__link {
  position: absolute;
  right: 0px;
  top: 332px;
  white-space: nowrap;
}
.rellink__link .arrow {
  position: relative;
  display: inline-block;
  width: 100px;
  height: 100px;
  background-color: white;
  border-radius: 200px;
  background: white;
  vertical-align: middle;
}
.rellink__link .arrow:before {
  content: '';
  width: 4.267vw;
  height: 3.2vw;
  background-image: url("../img/btn_arrow.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.rellink__link .arrow:before a {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.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: 28px;
  font-weight: 700;
  color: white;
  margin-left: 28px;
}
.rellink__link.inv .arrow {
  background-color: #4B4B4B;
}
.rellink__link.inv .arrow:before {
  width: 4.267vw;
  height: 3.2vw;
  background-image: url("../img/btn_arrow_w.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
}
.rellink__link.inv .arrow:before a {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.rellink__link.inv .text {
  color: #4B4B4B;
}
.rellink__link.out .arrow {
  transform: rotate(-45deg);
}
.rellink a {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
}
