@charset "UTF-8";
/* Sass変数 */
/* レスポンシブ */
/* ---------- フォントスタイル ---------- */
/* FOT-RailwayStd-B:各セクションのタイトル（英文字） */
@font-face {
  font-family: MyFont_Ttl;
  src: url(../font-family/FOT-RailwayStd-B.otf);
}
/* :各セクションのサブタイトル（日本語） */
@font-face {
  font-family: MyFont_sub_Ttl;
  src: url(../font-family/A-OTF-MiGoMB1Std-DeBold.otf);
}
/* :日本語太字のメッセージ */
@font-face {
  font-family: MyFont_section_msg;
  src: url(../font-family/A-OTF-MiGoMB1Std-DeBold.otf);
}
/* :詳細説明（pタグ） */
@font-face {
  font-family: MyFont_summary;
  src: url(../font-family/AP-OTF-A1GothicStdN-Light.otf);
}
/* :詳細ボタン（more info） */
@font-face {
  font-family: MyFont_more_info;
  src: url(../font-family/A-OTF-MiGoMB1Std-DeBold.otf);
}
/* :MyFont_AP_OTF_A1GothiStd_Medium */
@font-face {
  font-family: MyFont_AP_OTF_A1GothiStd_Medium;
  src: url(../font-family/AP-OTF-A1GothicStd-Medium.otf);
}
/* :MyFont_AP_OTF_A1GothiStd_Regular */
@font-face {
  font-family: MyFont_AP_OTF_A1GothiStd_Regular;
  src: url(../font-family/AP-OTF-A1GothicStd-Regular.otf);
}
/* :Arial Black */
@font-face {
  font-family: MyFont_ArialBlack;
  src: url(../font-family/Arial_Black.ttf);
}
/* :DIN Alternate Bold */
@font-face {
  font-family: MyFont_DIN_AlternateBold;
  src: url(../font-family/DIN_Alternate_Bold.ttf);
}
/* 共通アニメーション */
@keyframes LoadingAnime {
  0% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(-20px);
  }
  20% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
/* ----- html ----- */
html {
  font-size: 62.5%; /*  文字サイズの基準を設定(rem=htmlを基準) */ /* 1rem = 10px, 2rem = 20px */
  font-family: MyFont_AP_OTF;
}

/* 各セクションのタイトル（英文字）*/
.Ttl {
  font-size: min(5.2vw, 100px);
  font-family: MyFont_Ttl;
  color: rgb(142, 20, 7);
  letter-spacing: 7px;
  line-height: 65px;
  /* -- Responsive 891px〜1439px -- */
  /* -- Responsive 〜890px -- */
}
@media screen and (max-width: 1439px) {
  .Ttl {
    font-size: max(5.2vw, 5.5rem);
  }
}
@media screen and (max-width: 890px) {
  .Ttl {
    font-size: min(6rem, 9vw);
    letter-spacing: 3px;
    line-height: 30px;
  }
}

/* 各セクションのサブタイトル（日本語）*/
.sub_Ttl {
  font-size: min(2.1vw, 40px);
  font-family: MyFont_sub_Ttl;
  color: rgb(219, 133, 52);
  /* -- Responsive 891px〜1439px -- */
  /* -- Responsive 〜890px -- */
}
@media screen and (max-width: 1439px) {
  .sub_Ttl {
    font-size: max(2.1vw, 2.5rem);
  }
}
@media screen and (max-width: 890px) {
  .sub_Ttl {
    font-size: min(2rem, 3.7vw);
    letter-spacing: 5px;
  }
}

/* 日本語太字のメッセージ */
.section_msg {
  font-size: min(3.1vw, 60px);
  letter-spacing: 2px;
  font-family: MyFont_section_msg;
  line-height: 90px;
  /* -- Responsive 〜890px -- */
}
@media screen and (max-width: 890px) {
  .section_msg {
    font-size: min(3.5rem, 6vw);
  }
}

/* 詳細説明（pタグ）*/
.summary {
  font-size: min(1.5vw, 30px);
  font-family: MyFont_summary;
  /* -- Responsive 891px〜1439px -- */
  /* -- Responsive 〜890px -- */
}
@media screen and (max-width: 1439px) {
  .summary {
    font-size: max(1.5vw, 1.8rem);
  }
}
@media screen and (max-width: 890px) {
  .summary {
    font-size: min(1.5rem, 3.1vw);
  }
}

/* more info */
.more_info {
  display: block;
  width: 100%;
  margin: 0 auto;
  background-color: rgb(102, 98, 95);
  color: #fff;
  font-family: MyFont_more_info;
  font-size: 2.1vw;
  padding: 10px 0 20px;
  border-radius: 70px;
  text-align: center;
  line-height: 40px;
  letter-spacing: 17px;
  /* 追記Yurikusa221005 */
  position: relative;
  z-index: 1;
  transition: 0.3s;
  /* 追記Yurikusa221005 end*/
  /* -- Responsive 891px〜1439px -- */
  /* -- Responsive 〜890px -- */
}
.more_info::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 2px solid rgb(102, 98, 95);
  border-radius: 70px;
  box-sizing: border-box;
  z-index: -1;
  transform: scale(1.2);
  opacity: 0;
  transition: transform ease 0.3s, opacity 0.3s;
}
.more_info span {
  display: block;
  width: 100%;
  font-size: 1vw;
  letter-spacing: 15px;
}
.more_info:hover {
  background-color: #fff;
  color: rgb(102, 98, 95);
  /* 追記Yurikusa221005 */
  /* 追記Yurikusa221005 end*/
}
.more_info:hover::before {
  transform: scale(1);
  opacity: 1;
}
@media screen and (max-width: 1439px) {
  .more_info {
    font-size: max(2.1vw, 2.7rem);
    padding: 10px 0 20px 10px;
  }
  .more_info span {
    font-size: max(1vw, 1.2rem);
  }
}
@media screen and (max-width: 890px) {
  .more_info {
    width: min(80%, 200px);
    font-size: max(2.1vw, 2.7rem);
    padding: 10px 0 20px 10px;
  }
  .more_info span {
    font-size: max(1vw, 1.2rem);
  }
}

/* PC版 レスポンシブ有効・無効 */
.pc {
  display: block;
}
@media screen and (max-width: 890px) {
  .pc {
    display: none;
  }
}

/* スマホ版 レスポンシブ有効・無効 */
.mb {
  display: none;
}
@media screen and (max-width: 890px) {
  .mb {
    display: block;
  }
}

/* Loading画面 */
.loading {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #fff;
  text-align: center;
  color: #000;
}
.loading .loading_content {
  width: min(50vw, 300px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.loading .loading_content img {
  width: 100%;
}
.loading .loading_content p {
  margin-top: 20px;
  font-size: 2.5rem;
  letter-spacing: -2px;
  font-family: MyFont_Ttl;
}
.loading .loading_content p span {
  display: inline-block;
  animation-name: LoadingAnime;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}
.loading .loading_content p span:nth-of-type(1) {
  animation-delay: 0.28s;
}
.loading .loading_content p span:nth-of-type(2) {
  animation-delay: 0.36s;
}
.loading .loading_content p span:nth-of-type(3) {
  animation-delay: 0.44s;
}
.loading .loading_content p span:nth-of-type(4) {
  animation-delay: 0.52s;
}
.loading .loading_content p span:nth-of-type(5) {
  animation-delay: 0.6s;
}
.loading .loading_content p span:nth-of-type(6) {
  animation-delay: 0.68s;
}
.loading .loading_content p span:nth-of-type(7) {
  animation-delay: 0.76s;
}
.loading .loading_content p span:nth-of-type(8) {
  animation-delay: 0.84s;
}
.loading .loading_content p span:nth-of-type(9) {
  animation-delay: 0.92s;
}
.loading .loading_content p span:nth-of-type(10) {
  animation-delay: 1s;
}

/* ********************* 以下、スタイリング開始 ********************* */
*:focus {
  outline: none;
}

/* -- body -- */
body {
  width: 100%;
  /* -- header -- */
  /* 透明バー（下） */
  /* 透明バー（下） */
  /* -- main --*/
  /* -- End of main -- */
  /* -- footer -- */
  /*  -- End of footer -- */
}
body header {
  position: fixed;
  z-index: 900;
  bottom: 0;
  right: 0;
  width: max(40%, 780px);
  height: 80px;
  /* -- レスポンシブ  〜890px -- */
  /* -- レスポンシブ  〜700px -- */
}
body header .header_content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row-reverse;
  /* -- ハンバーガーメニュー -- */
}
body header .header_content h1 {
  position: fixed;
  z-index: 6;
  top: 3%;
  left: 2%;
  /* スマホサイズの時のみ左上のロゴがopactity変化する */
}
body header .header_content h1 img {
  width: 150px;
  opacity: 0.7;
}
body header .header_content h1 img.mb {
  opacity: 0;
  transition: all 0.3s;
}
body header .header_content h1.is-active img.mb {
  opacity: 0.7;
}
body header .header_content .hamburgerBtn {
  position: fixed;
  z-index: 0;
  top: 2%;
  right: 2%;
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body header .header_content .hamburgerBtn .hamburgerBtn_TransArea {
  margin: 0 auto;
  width: 50px;
  height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
body header .header_content .hamburgerBtn .hamburgerBtn_TransArea span {
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #fff;
  font-family: MyFont_summary;
}
body header .header_content .hamburgerBtn .hamburgerBtn_TransArea:hover {
  cursor: pointer;
}
body header .header_content .hamburgerBtn p {
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 3px;
  text-align: center;
  font-family: MyFont_AP_OTF_A1GothiStd_Regular;
}
body header .header_content .hamburgerBtn.color-change .hamburgerBtn_TransArea span {
  background-color: rgb(102, 98, 95);
}
body header .header_content .hamburgerBtn.color-change p {
  color: rgb(102, 98, 95);
}
body header .header_content #mask {
  display: none;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
}
body header .header_content #mask.is-active {
  display: block;
}
body header .header_content .hamburgerMenu {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  transition: all 0.5s;
  width: 0%;
  height: 100vh;
  background-color: rgb(232, 230, 230);
  /* -- ハンバーガーメニューアクティブ -- */
  /* -- レスポンシブ  〜890px -- */
  /* -- レスポンシブ  〜480px -- */
}
body header .header_content .hamburgerMenu .hamburgerMenu_content {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  margin-top: 50px;
  opacity: 0;
  transition: all 0.5s;
}
body header .header_content .hamburgerMenu .hamburgerMenu_content .hamburgerMenu_BtnArea {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
body header .header_content .hamburgerMenu .hamburgerMenu_content .hamburgerMenu_BtnArea .hamburgerMenu_Btn {
  width: 110px;
  color: #000;
  background-color: rgb(232, 230, 230);
  font-size: 1.7rem;
  line-height: 20px;
  text-align: center;
  padding: 5px 5px 8px;
  border-radius: 30px;
  margin: 0 40px;
  letter-spacing: 2px;
  transition: all 0.3s;
  font-family: MyFont_section_msg;
}
body header .header_content .hamburgerMenu .hamburgerMenu_content .hamburgerMenu_BtnArea .hamburgerMenu_Btn span {
  font-size: 1.1rem;
}
body header .header_content .hamburgerMenu .hamburgerMenu_content .hamburgerMenu_BtnArea .hamburgerMenu_Btn:hover {
  cursor: pointer;
  color: #fff;
  background-color: rgb(71, 69, 69);
}
body header .header_content .hamburgerMenu .hamburgerMenu_content .hamburgerMenuList {
  width: 100%;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  /* -- Responsive 891px〜1440px（NotePC） --*/
}
body header .header_content .hamburgerMenu .hamburgerMenu_content .hamburgerMenuList li {
  width: 100%;
  text-align: start;
}
body header .header_content .hamburgerMenu .hamburgerMenu_content .hamburgerMenuList li a {
  width: 100%;
  display: flex;
  color: #000;
}
body header .header_content .hamburgerMenu .hamburgerMenu_content .hamburgerMenuList li a span {
  display: block;
  align-self: center;
  letter-spacing: 1px;
}
body header .header_content .hamburgerMenu .hamburgerMenu_content .hamburgerMenuList li a span:nth-of-type(1) {
  width: 70px;
  font-size: 1.9rem;
  color: gray;
  font-family: MyFont_summary;
}
body header .header_content .hamburgerMenu .hamburgerMenu_content .hamburgerMenuList li a span:nth-of-type(2) {
  width: 50%;
  margin-right: 50px;
  font-family: MyFont_Ttl;
  font-size: 3.5rem;
  opacity: 0;
}
body header .header_content .hamburgerMenu .hamburgerMenu_content .hamburgerMenuList li a span:nth-of-type(3) {
  width: 33%;
  font-size: 1.9rem;
  opacity: 0;
  font-family: MyFont_sub_Ttl;
}
body header .header_content .hamburgerMenu .hamburgerMenu_content .hamburgerMenuList li a:hover {
  color: gray;
}
body header .header_content .hamburgerMenu .hamburgerMenu_content .hamburgerMenuList li:nth-of-type(1) a span.js_AnimeTrigger_LtoRSlide {
  animation-delay: 0.6s;
}
body header .header_content .hamburgerMenu .hamburgerMenu_content .hamburgerMenuList li:nth-of-type(2) a span.js_AnimeTrigger_LtoRSlide {
  animation-delay: 0.7s;
}
body header .header_content .hamburgerMenu .hamburgerMenu_content .hamburgerMenuList li:nth-of-type(3) a span.js_AnimeTrigger_LtoRSlide {
  animation-delay: 0.8s;
}
body header .header_content .hamburgerMenu .hamburgerMenu_content .hamburgerMenuList li:nth-of-type(4) a span.js_AnimeTrigger_LtoRSlide {
  animation-delay: 0.9s;
}
body header .header_content .hamburgerMenu .hamburgerMenu_content .hamburgerMenuList li:nth-of-type(5) a span.js_AnimeTrigger_LtoRSlide {
  animation-delay: 1s;
}
body header .header_content .hamburgerMenu .hamburgerMenu_content .hamburgerMenuList li:nth-of-type(6) a span.js_AnimeTrigger_LtoRSlide {
  animation-delay: 1.1s;
}
body header .header_content .hamburgerMenu .hamburgerMenu_content .hamburgerMenuList li:nth-of-type(7) a span.js_AnimeTrigger_LtoRSlide {
  animation-delay: 1.2s;
}
body header .header_content .hamburgerMenu .hamburgerMenu_content .hamburgerMenuList li:nth-of-type(8) a span.js_AnimeTrigger_LtoRSlide {
  animation-delay: 1.3s;
}
@media screen and (max-width: 1440px) {
  body header .header_content .hamburgerMenu .hamburgerMenu_content .hamburgerMenuList li a span:nth-of-type(1) {
    width: 70px;
    font-size: 1.7rem;
  }
  body header .header_content .hamburgerMenu .hamburgerMenu_content .hamburgerMenuList li a span:nth-of-type(2) {
    width: 50%;
    margin-right: 50px;
    font-size: 3rem;
  }
  body header .header_content .hamburgerMenu .hamburgerMenu_content .hamburgerMenuList li a span:nth-of-type(3) {
    width: 30%;
    font-size: 1.7rem;
  }
}
body header .header_content .hamburgerMenu .hamburgerMenu_content.is-active {
  opacity: 1;
}
body header .header_content .hamburgerMenu.is-active {
  display: block;
  width: max(55%, 750px);
}
@media screen and (max-width: 890px) {
  body header .header_content .hamburgerMenu {
    width: 100%;
    right: -100%;
    /* -- ハンバーガーメニューアクティブ -- */
  }
  body header .header_content .hamburgerMenu .hamburgerMenu_content {
    width: 85%;
  }
  body header .header_content .hamburgerMenu .hamburgerMenu_content .hamburgerMenu_BtnArea {
    margin: 0 auto;
    max-width: 480px;
  }
  body header .header_content .hamburgerMenu .hamburgerMenu_content .hamburgerMenu_BtnArea .hamburgerMenu_Btn {
    width: 100px;
    padding: 3px 2px;
    margin: 0;
    font-size: 1.3rem;
    align-self: center;
  }
  body header .header_content .hamburgerMenu .hamburgerMenu_content .hamburgerMenu_BtnArea .hamburgerMenu_Btn span {
    font-size: 1rem;
  }
  body header .header_content .hamburgerMenu .hamburgerMenu_content .hamburgerMenu_BtnArea a:nth-of-type(2) {
    width: min(100px, 20%);
  }
  body header .header_content .hamburgerMenu .hamburgerMenu_content .hamburgerMenu_BtnArea a:nth-of-type(2) img {
    width: 100%;
  }
  body header .header_content .hamburgerMenu .hamburgerMenu_content .hamburgerMenuList {
    position: relative;
  }
  body header .header_content .hamburgerMenu .hamburgerMenu_content .hamburgerMenuList .top_msg {
    position: absolute;
    bottom: -35px;
    left: -7px;
    font-size: 3.5rem;
    font-weight: bold;
    letter-spacing: 3px;
    color: rgb(205, 205, 205);
    font-family: MyFont_section_msg;
    line-height: 40px;
    z-index: 5;
  }
  body header .header_content .hamburgerMenu .hamburgerMenu_content .hamburgerMenuList li {
    position: relative;
    z-index: 10;
  }
  body header .header_content .hamburgerMenu .hamburgerMenu_content .hamburgerMenuList li a span:nth-of-type(1) {
    width: 10%;
    font-size: 4vw;
  }
  body header .header_content .hamburgerMenu .hamburgerMenu_content .hamburgerMenuList li a span:nth-of-type(2) {
    margin-right: 15px;
    font-size: min(3rem, 4.5vw);
  }
  body header .header_content .hamburgerMenu .hamburgerMenu_content .hamburgerMenuList li a span:nth-of-type(3) {
    width: 35%;
    font-size: max(2vw, 1rem);
  }
  body header .header_content .hamburgerMenu.is-active {
    display: block;
    width: 100%;
    right: 0;
  }
}
@media screen and (max-width: 480px) {
  body header .header_content .hamburgerMenu .hamburgerMenu_content .hamburgerMenuList li + li {
    margin-top: 10px;
  }
}
body header .header_content .header_SnsLink {
  position: relative;
  z-index: 5;
  width: 35%;
  display: flex;
  justify-content: space-around;
}
body header .header_content .header_SnsLink li {
  position: relative;
  top: -5px;
  width: 50px;
  align-self: flex-end;
}
body header .header_content .header_SnsLink li a {
  display: block;
  width: 100%;
}
body header .header_content .header_SnsLink li a img {
  width: 100%;
  transition: all 0.8s;
}
body header .header_content .header_SnsLink li a img:hover {
  transform: rotate(720deg);
}
body header .header_content .header_message {
  width: 45%;
  position: relative;
  z-index: 5;
}
body header .header_content .header_message .header_message_text {
  width: 100%;
  line-height: 35px;
  margin: 0 auto;
  color: #fff;
  text-align: start;
  font-family: MyFont_section_msg;
}
body header .header_content .header_message .header_message_text span {
  display: inline-block;
  width: 100%;
  font-size: 2rem;
  letter-spacing: 2px;
}
body header .header_content .header_message .header_message_text p {
  letter-spacing: 4px;
  font-size: 3rem;
}
body header .header_content .header_message .header_message_text.color-change {
  color: #000;
}
@media screen and (max-width: 890px) {
  body header .header_content h1 img {
    width: 90px;
  }
}
@media screen and (max-width: 700px) {
  body header {
    width: 100vw;
  }
  body header .header_content .hamburgerBtn {
    width: 50px;
    height: 50px;
  }
  body header .header_content .hamburgerBtn .hamburgerBtn_TransArea {
    width: 30px;
    height: 30px;
  }
  body header .header_content .hamburgerBtn p {
    font-size: 1.1rem;
    letter-spacing: 0px;
  }
  body header .header_content .header_SnsLink {
    width: 40%;
  }
  body header .header_content .header_SnsLink li {
    width: 40px;
  }
  body header .header_content .header_message {
    width: 55%;
  }
  body header .header_content .header_message .header_message_text {
    position: absolute;
    top: 20px;
    line-height: 25px;
  }
  body header .header_content .header_message .header_message_text span {
    font-size: 1.5rem;
  }
  body header .header_content .header_message .header_message_text p {
    font-size: 1.6rem;
  }
}
body main {
  width: 100%;
  /* -- vidual_Area -- */
  /* -- End of vidual_Area -- */
  /* -- About_Us -- */
  /* -- End of About_Us -- */
}
body main .vidual_Area {
  width: 100vw;
  height: 100vh;
  position: relative;
  z-index: 2;
  overflow: hidden;
  /* スマホ版の時のみ中央にロゴ出現 */
}
body main .vidual_Area h2 {
  position: absolute;
  z-index: 6;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
body main .vidual_Area h2 img {
  width: 100px;
  opacity: 0.7;
}
body main .vidual_Area strong {
  width: 65%;
  margin: 0 auto;
  position: absolute;
  z-index: 6;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(201, 197, 197, 0.7);
  font-size: 50px;
  letter-spacing: 5px;
  font-weight: 600;
  opacity: 0.5;
  font-family: MyFont_ArialBlack;
}
body main .vidual_Area video {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body main .vidual_Area video.pc_movie {
  display: block;
}
@media screen and (max-width: 480px) {
  body main .vidual_Area video.pc_movie {
    display: none;
  }
}
body main .vidual_Area video.mb_movie {
  display: none;
}
@media screen and (max-width: 480px) {
  body main .vidual_Area video.mb_movie {
    display: block;
  }
}
body main .vidual_Area .video_mask {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
body main .About_Us {
  width: 100%;
}
body main .About_Us .About_Us_content {
  width: 100%;
}
body footer {
  width: 100%;
  background-color: rgb(85, 84, 84);
  /* -- footer_Ttl(共通) -- */
  /* -- レスポンシブ  891px〜1439px -- */
  /* -- レスポンシブ  〜890px -- */
}
body footer .footer_Ttl {
  color: gray;
  font-size: 1.3vw;
  font-family: MyFont_sub_Ttl;
  letter-spacing: 2px;
}
body footer .footer_content {
  width: min(95%, 1800px);
  padding: 50px 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
body footer .footer_content .footer_content_LogoMenu {
  width: 100%;
  display: flex;
}
body footer .footer_content .footer_content_LogoMenu .footer_content_logo {
  width: min(40%,900px);
  display: flex;
  justify-content: space-between;
  /* -- Responsive -- */
}
body footer .footer_content .footer_content_LogoMenu .footer_content_logo a {
  display: block;
  width: 200px;
}
body footer .footer_content .footer_content_LogoMenu .footer_content_logo a img {
  width: 100%;
}
body footer .footer_content .footer_content_LogoMenu .footer_content_logo span {
  font-family: MyFont_ArialBlack;
  display: block;
  width: 65%;
  color: #fff;
  font-size: 2.6vw;
  font-weight: bold;
  letter-spacing: 1px;
  align-self: flex-start;
}
@media screen and (max-width: 1480px) {
  body footer .footer_content .footer_content_LogoMenu .footer_content_logo {
    width: min(32%, 420px);
  }
}
body footer .footer_content .footer_content_LogoMenu .footer_content_menu {
  width: max(55%, 780px);
  margin-left: min(50px, 5vw);
}
body footer .footer_content .footer_content_LogoMenu .footer_content_menu .footer_menu_list {
  width: 100%;
  display: flex;
  justify-content: space-around;
}
body footer .footer_content .footer_content_LogoMenu .footer_content_menu .footer_menu_list li {
  width: 20%;
  text-align: start;
  color: #fff;
  font-size: 1.8vw;
  letter-spacing: 3px;
  font-family: MyFont_DIN_AlternateBold;
}
body footer .footer_content .footer_content_LogoMenu .footer_content_menu .footer_menu_list li .child_menu_List {
  padding-left: 20px;
  border-left: 1px solid #fff;
  margin-top: 5px;
  display: flex;
  flex-direction: column;
}
body footer .footer_content .footer_content_LogoMenu .footer_content_menu .footer_menu_list li .child_menu_List li {
  width: 100%;
  letter-spacing: 0px;
  font-family: MyFont_AP_OTF_A1GothiStd_Medium;
  font-size: 1.3vw;
}
body footer .footer_content .footer_content_LogoMenu .footer_content_menu .footer_menu_list li .child_menu_List li a {
  display: block;
  width: 100%;
}
body footer .footer_content .footer_content_LogoMenu .footer_content_menu .footer_menu_list li:nth-of-type(1) {
  width: 10%;
}
body footer .footer_content .footer_content_LogoMenu .footer_content_menu .footer_menu_list li:nth-of-type(4) {
  width: 15%;
}
body footer .footer_content .footer_content_Contact {
  width: 100%;
  margin-top: 30px;
  flex-wrap: wrap;
  line-height: 2.5vw;
}
body footer .footer_content .footer_content_Contact p {
  font-size: 2vw;
  color: #fff;
  left: 1px;
  font-family: MyFont_AP_OTF_A1GothiStd_Medium;
}
body footer .footer_content .footer_content_FollowUs {
  width: 100%;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
body footer .footer_content .footer_content_FollowUs span {
  display: block;
  width: 100%;
}
body footer .footer_content .footer_content_FollowUs ul:nth-of-type(1) {
  width: 30%;
  margin-top: 10px;
  display: flex;
}
body footer .footer_content .footer_content_FollowUs ul:nth-of-type(1) li {
  width: 40px;
  margin-right: 80px;
}
body footer .footer_content .footer_content_FollowUs ul:nth-of-type(1) li a {
  display: block;
  width: 100%;
}
body footer .footer_content .footer_content_FollowUs ul:nth-of-type(1) li a img {
  width: 100%;
}
body footer .footer_content .footer_content_FollowUs ul:nth-of-type(1) li:nth-of-type(3) {
  position: relative;
  top: 5px;
}
body footer .footer_content .footer_content_FollowUs .privacy_policy {
  width: 45%;
  margin-right: 20px;
  display: flex;
  justify-content: space-between;
}
body footer .footer_content .footer_content_FollowUs .privacy_policy li {
  width: 30%;
  font-size: max(10px, 1vw);
  color: #fff;
  text-align: center;
  font-family: MyFont_sub_Ttl;
  align-self: flex-start;
}
body footer .copyright {
  width: 100%;
  padding: 10px 0;
  text-align: center;
}
@media screen and (max-width: 1439px) {
  body footer .footer_content .footer_content_FollowUs ul li {
    width: max(3vw, 30px);
  }
}
@media screen and (max-width: 890px) {
  body footer {
    /* -- footer_Ttl(共通) -- */
  }
  body footer .footer_Ttl {
    font-size: max(1.2rem, 1.3vw);
    letter-spacing: 2px;
  }
  body footer .footer_content {
    width: min(480px, 90%);
  }
  body footer .footer_content .footer_content_LogoMenu .footer_content_logo {
    width: 100%;
    justify-content: flex-start;
  }
  body footer .footer_content .footer_content_LogoMenu .footer_content_logo a {
    width: min(25vw,  144px);
    margin-right: 10px;
  }
  body footer .footer_content .footer_content_LogoMenu .footer_content_logo span {
    position: relative;
    top: -10px;
    width: 65%;
    font-size: min(3.7rem, 7.2vw);
    align-items: flex-end;
  }
  body footer .footer_content .footer_content_Contact {
    line-height: 25px;
  }
  body footer .footer_content .footer_content_Contact p {
    font-size: 1.7rem;
  }
  body footer .footer_content .footer_content_FollowUs ul:nth-of-type(1) {
    width: 100%;
    margin-bottom: 20px;
  }
  body footer .footer_content .footer_content_FollowUs ul:nth-of-type(1) li {
    width: 30px;
    margin-right: 50px;
  }
  body footer .footer_content .footer_content_FollowUs .privacy_policy {
    width: 100%;
    margin-right: 0;
  }
  body footer .footer_content .footer_content_FollowUs .privacy_policy li {
    width: 33%;
  }
}

/* -- End of body -- *//*# sourceMappingURL=common.css.map */