@charset "UTF-8";
/*------------------------------------------------------------------------------
    config
------------------------------------------------------------------------------*/
/***  media ***/
/***  color ***/
/*** font ***/
@font-face {
  font-family: 'AttenNew';
  src: url('../font/AttenNewRegular.otf') format('opentype');
  font-weight: 400;
  /* Regularの太さ */
  font-style: normal;
}
@font-face {
  font-family: 'AttenNew';
  src: url('../font/AttenNewBold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}
/*------------------------------------------------------------------------------
    reset
------------------------------------------------------------------------------*/
html {
  font-family: "MFW-PA1GothicStdN-Medium";
  margin-top: 0 !important;
}
body {
  margin: 0;
  color: #000000;
  background: url(../img/common/body_bg.webp) no-repeat;
  background-size: 100% 100%;
  font-size: 16px;
  font-family: "MFW-PA1GothicStdN-Medium";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 600;
  line-height: 1.75;
  min-height: 100vh;
  letter-spacing: 0;
}
@media screen and (max-width: 849px) {
  body {
    line-height: 1.666;
    background: url(../img/common/body_bg_sp.webp) no-repeat;
    background-size: 100% 100%;
  }
}
* {
  box-sizing: border-box;
}
*:before,
*:after {
  box-sizing: border-box;
}
img {
  border: 0;
  margin: 0;
  vertical-align: top;
  max-width: 100%;
  height: auto;
}
p {
  margin: 0 0 1em;
  padding: 0;
  margin-block-start: 0px;
  margin-block-end: 0px;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  line-height: 180%;
}
@media screen and (max-width: 849px) {
  p {
    line-height: 160%;
  }
}
p:last-child {
  margin-bottom: 0;
}
a {
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
a:hover {
  opacity: 0.8;
  transition: 0.3s ease-in-out;
}
a:link,
a:visited {
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
input,
textarea,
select {
  font-family: "MFW-PA1GothicStdN-Medium";
  border-radius: 0;
  outline: none;
}
table {
  border-collapse: collapse;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 16px;
  font-weight: normal;
  margin: 0;
  padding: 0;
  margin-block-start: 0;
  margin-block-end: 0;
}
#wrapper {
  position: relative;
  padding: 0;
  overflow: hidden;
  cursor: default;
}
dd,
dt {
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}
dl {
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}
dd {
  margin-inline-start: 0;
}
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
/*------------------------------------------------------------------------------
    CSS reset
------------------------------------------------------------------------------*/
@media screen and (max-width: 849px) {
  body {
    position: static;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
  }
  #wrapper {
    min-width: 320px;
    position: relative;
  }
  img {
    width: 100%;
    max-width: 100%;
  }
  input[type="submit"] {
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
  }
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
@media screen and (min-width: 850px) {
  a {
    transition: 0.3s ease-in-out;
  }
  a:hover {
    opacity: 0.8;
    transition: 0.3s ease-in-out;
  }
}
body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  top: auto !important;
}
button {
  outline: none;
}
.inner {
  width: 100%;
  margin: auto;
  position: relative;
  text-align: center;
}
/*------------------------------------------------------------------------------
    フェードインのCSS
------------------------------------------------------------------------------*/
.scrollanime {
  opacity: 0;
}
/*一瞬表示されるのを防ぐ*/
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
.scrollanime2 {
  opacity: 0;
}
/*一瞬表示されるのを防ぐ*/
.fadeInDown2 {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
@-webkit-keyframes fadeInDown2 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
@keyframes fadeInDown2 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
/*2.上下の動きを指定*/
.updown {
  -webkit-transform: translateY(-100px);
  transform: translateY(-100px);
}
.downup {
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
}
.leftin {
  -webkit-transform: translateX(-30px);
  transform: translateX(-30px);
}
.rightin {
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
}
/*3.左右の動きを指定*/
.sect02 {
  overflow: hidden;
}
/*横スクロールバーを隠す*/
.slide-right {
  -webkit-transform: translateX(200px);
  transform: translateX(200px);
}
.slide-left {
  -webkit-transform: translateX(-200px);
  transform: translateX(-200px);
}
.yoko_line {
  position: relative;
}
.yoko_line::after {
  content: '';
  display: block;
  width: 100%;
  background-position: center bottom;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 849px) {
  .yoko_line::after {
    bottom: 0;
  }
}
.yoko_line::after {
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: 1400ms 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition-property: -webkit-clip-path;
  transition-property: clip-path;
  transition-property: clip-path, -webkit-clip-path;
}
@media screen and (max-width: 849px) {
  .yoko_line::after {
    transition: 800ms 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
}
.yoko_line.is-active::after {
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
}
.yoko_line02 {
  position: relative;
}
.yoko_line02::after {
  content: '';
  display: block;
  width: 100%;
  background-position: center bottom;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 849px) {
  .yoko_line02::after {
    bottom: auto;
    top: 33px;
  }
}
.yoko_line02::after {
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: 1400ms 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition-property: -webkit-clip-path;
  transition-property: clip-path;
  transition-property: clip-path, -webkit-clip-path;
}
@media screen and (max-width: 849px) {
  .yoko_line02::after {
    transition: 800ms 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
}
.yoko_line02.is-active::after {
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
}
.yoko_line03 {
  position: relative;
}
.yoko_line03::after {
  content: '';
  display: block;
  width: 100%;
  background-position: center bottom;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 1.08vw;
  left: 0;
}
@media screen and (max-width: 849px) {
  .yoko_line03::after {
    bottom: auto;
    top: 33px;
  }
}
.yoko_line03::after {
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: 1400ms 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition-property: -webkit-clip-path;
  transition-property: clip-path;
  transition-property: clip-path, -webkit-clip-path;
}
@media screen and (max-width: 849px) {
  .yoko_line03::after {
    transition: 800ms 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
}
.yoko_line03.is-active::after {
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
}
.js-fadein {
  opacity: 0;
  transform: translate3d(0, 15px, 0);
  transition: 920ms ease;
  transition-property: opacity, transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.is-active.js-fadein,
.is-active .js-fadein {
  opacity: 1;
  transform: translate3d(0, 0, 0) !important;
}
.js-fadein--static {
  opacity: 0;
  transition: opacity 880ms ease;
}
.is-active.js-fadein--static,
.is-active .js-fadein--static {
  opacity: 1;
}
.js-fadein--slow {
  transition-duration: 1050ms;
}
.ua-firefox .js-fadein {
  transform: translate3d(0, 40px, 0);
}
/* -------------------------------フェードインのCSS */
.js-delay-1 {
  transition-delay: 100ms !important;
}
.js-delay-2 {
  transition-delay: 200ms !important;
}
.js-delay-3 {
  transition-delay: 300ms !important;
}
.js-delay-4 {
  transition-delay: 400ms !important;
}
.js-delay-5 {
  transition-delay: 500ms !important;
}
.js-delay-6 {
  transition-delay: 600ms !important;
}
.js-delay-7 {
  transition-delay: 700ms !important;
}
.js-delay-8 {
  transition-delay: 800ms !important;
}
.js-delay-9 {
  transition-delay: 900ms !important;
}
.js-delay-10 {
  transition-delay: 1000ms !important;
}
.js-delay-11 {
  transition-delay: 1100ms !important;
}
.js-delay-12 {
  transition-delay: 1200ms !important;
}
.js-delay-13 {
  transition-delay: 1300ms !important;
}
.js-delay-14 {
  transition-delay: 1400ms !important;
}
.js-delay-15 {
  transition-delay: 1500ms !important;
}
.js-delay-16 {
  transition-delay: 1600ms !important;
}
@media screen and (max-width: 849px) {
  .js-delay-16 {
    transition-delay: 900ms !important;
  }
}
.js-delay-17 {
  transition-delay: 1700ms !important;
}
.js-delay-18 {
  transition-delay: 1800ms !important;
}
.js-delay-19 {
  transition-delay: 1900ms !important;
}
.js-delay-20 {
  transition-delay: 2000ms !important;
}
@media screen and (max-width: 849px) {
  .js-delay-20 {
    transition-delay: 1000ms !important;
  }
}
.js-delay-21 {
  transition-delay: 2100ms !important;
}
.js-delay-22 {
  transition-delay: 2200ms !important;
}
.js-delay-23 {
  transition-delay: 2300ms !important;
}
.js-delay-24 {
  transition-delay: 2400ms !important;
}
.js-delay-25 {
  transition-delay: 2500ms !important;
}
.js-delay-26 {
  transition-delay: 2600ms !important;
}
.js-delay-27 {
  transition-delay: 2700ms !important;
}
.js-delay-28 {
  transition-delay: 2800ms !important;
}
.js-delay-29 {
  transition-delay: 2900ms !important;
}
.js-delay-30 {
  transition-delay: 3000ms !important;
}
.js-delay-31 {
  transition-delay: 3100ms !important;
}
.js-delay-32 {
  transition-delay: 3200ms !important;
}
.js-delay-33 {
  transition-delay: 3300ms !important;
}
.js-delay-34 {
  transition-delay: 3400ms !important;
}
.js-delay-35 {
  transition-delay: 3500ms !important;
}
.js-delay-36 {
  transition-delay: 3600ms !important;
}
.js-delay-37 {
  transition-delay: 3700ms !important;
}
.js-delay-38 {
  transition-delay: 3800ms !important;
}
.js-delay-39 {
  transition-delay: 3900ms !important;
}
.js-delay-40 {
  transition-delay: 4000ms !important;
}
.js-delay-41 {
  transition-delay: 4100ms !important;
}
.js-delay-42 {
  transition-delay: 4200ms !important;
}
.js-delay-43 {
  transition-delay: 4300ms !important;
}
.js-delay-44 {
  transition-delay: 4400ms !important;
}
.js-delay-45 {
  transition-delay: 4500ms !important;
}
.js-delay-46 {
  transition-delay: 4600ms !important;
}
.js-delay-47 {
  transition-delay: 4700ms !important;
}
.js-delay-48 {
  transition-delay: 4800ms !important;
}
.js-delay-49 {
  transition-delay: 4900ms !important;
}
.js-delay-50 {
  transition-delay: 5000ms !important;
}
/* -----------------------------------------
 js-scalein
----------------------------------------- */
.js-scalein {
  opacity: 0;
  transform: scale(0);
  transition: 900ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition-property: transform, opacity;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.js-scalein-bottom {
  opacity: 0;
  transform: translate3d(0, 80px, 0) scale(0);
  transition: 800ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition-property: transform, opacity;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.is-active.js-scalein,
.is-active .js-scalein {
  opacity: 1;
  transform: scale(1);
}
.is-active.js-scalein-bottom,
.is-active .js-scalein-bottom {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}
/* -----------------------------------------
 js-scalein
----------------------------------------- */
/*------------------------------------------------------------------------------
    header
------------------------------------------------------------------------------*/
.all_body_hide {
  overflow: hidden !important;
}
#header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 98;
  align-items: center;
  display: flex;
}
@media screen and (max-width: 849px) {
  #header {
    z-index: 9999;
  }
}
#header .header_item {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  margin: auto;
  width: 100%;
  max-width: 100%;
  height: 80px;
  background: #f8f8f8;
  padding: 0 30px;
  height: 5.55555556vw;
  padding: 0 2.08333333vw;
}
@media screen and (max-width: 849px) {
  #header .header_item {
    align-items: center;
    width: auto;
    height: 52px;
    width: 100%;
    padding: 0 69px 0 16px;
    display: flex;
    justify-content: flex-start;
  }
}
#header .header_item .logo {
  width: 147px;
  transition: 0.3s ease-in-out;
  width: 10.20833333vw;
}
@media screen and (max-width: 849px) {
  #header .header_item .logo {
    width: 96px;
  }
}
#header .header_item_bg_w {
  background: #FEF9EC !important;
}
@media screen and (max-width: 849px) {
  #header .header_item_bg_w {
    background: none !important;
  }
}
@media screen and (max-width: 849px) {
  #header .header_item_bg_g {
    background: #000000 !important;
  }
}
#header .mv_btn {
  font-family: "AttenNew", sans-serif;
  display: flex;
  padding-left: 37px;
  position: relative;
  line-height: 1.01;
  font-weight: 600;
  height: fit-content;
  font-size: 18px;
  padding-left: 2.56944444vw;
  color: #BBBBBB;
  font-size: 1.25vw;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 849px) {
  #header .mv_btn {
    padding-left: 28px;
    font-size: 13px;
  }
}
#header .mv_btn::after {
  position: absolute;
  content: "";
  width: 29px;
  height: 20px;
  width: 2.01388889vw;
  height: 1.38888889vw;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../img/common/mv_btn_after.png) no-repeat center / contain;
  transition: 0.3s ease-in-out;
  background-size: 100% 100%;
}
@media screen and (max-width: 849px) {
  #header .mv_btn::after {
    width: 22px;
    height: 16px;
  }
}
#header .mv_btn #mv_off,
#header .mv_btn #mv_off_sp {
  cursor: pointer;
}
#header .mv_btn #mv_on,
#header .mv_btn #mv_on_sp {
  position: relative;
  padding-right: 18px;
  padding-right: 1.25vw;
  cursor: pointer;
}
@media screen and (max-width: 849px) {
  #header .mv_btn #mv_on,
  #header .mv_btn #mv_on_sp {
    padding-right: 13.2px;
  }
}
#header .mv_btn #mv_on::after,
#header .mv_btn #mv_on_sp::after {
  position: absolute;
  content: "";
  width: 2px;
  width: 0.13888889vw;
  height: 100%;
  right: 8px;
  right: 0.55555556vw;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #000000;
  transition: 0.3s ease-in-out;
  background-size: 100% 100%;
}
@media screen and (max-width: 849px) {
  #header .mv_btn #mv_on::after,
  #header .mv_btn #mv_on_sp::after {
    right: 6px;
    width: 1.2px;
  }
}
#header .mv_btn .off {
  color: #000000;
  transition: 0.3s ease-in-out;
}
#menuBtn {
  display: none;
  position: fixed;
  cursor: pointer;
  z-index: 99999999;
}
@media screen and (max-width: 849px) {
  #menuBtn {
    display: block;
    width: 30px;
    height: 30px;
    top: 8px;
    right: 16px;
  }
}
#menuBtn span {
  display: block;
  background: #000000;
  position: absolute;
}
@media screen and (max-width: 849px) {
  #menuBtn span {
    height: 2px;
  }
  #menuBtn span:nth-child(1) {
    top: 10px;
    right: 0;
    width: 30px;
    transition: 0.3s ease-in-out;
  }
  #menuBtn span:nth-child(2) {
    top: 18px;
    right: 0;
    width: 20px;
    transition: 0.3s ease-in-out;
  }
}
#menuBtn span img {
  width: 100%;
}
.isOpen {
  background: none !important;
}
.isOpen span:nth-child(1) {
  transition: 0.3s ease-in-out;
  transform: translateY(6px) rotate(-45deg);
  top: 8px !important;
  width: 30px;
}
.isOpen span:nth-child(2) {
  transform: translateY(-6px) rotate(45deg);
  transition: 0.3s ease-in-out;
  top: 20px !important;
  width: 30px !important;
}
#l_btn {
  cursor: pointer;
}
.VIpgJd-ZVi9od-ORHb-OEVmcd .skiptranslate {
  display: none;
}
.header_box {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  column-gap: 36px;
  z-index: 9999999;
  position: relative;
}
@media screen and (max-width: 849px) {
  .header_box {
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
  }
}
.header_box .mv_btn {
  display: none !important;
}
@media screen and (max-width: 849px) {
  .header_box .mv_btn {
    display: flex !important;
  }
}
.menu_item {
  align-items: center;
  display: flex !important;
}
@media screen and (max-width: 849px) {
  .menu_item .mv_btn {
    display: none;
  }
}
.menu_item .sp_header_logo {
  display: none;
}
@media screen and (max-width: 849px) {
  .menu_item .sp_header_logo {
    width: fit-content;
    margin: auto;
    margin-left: 0;
    z-index: 999999999;
    display: block;
    position: absolute;
    top: 16px;
    left: 15px;
  }
  .menu_item .sp_header_logo img {
    max-width: 234px;
  }
}
@media screen and (max-width: 849px) {
  .menu_item .navli {
    height: auto !important;
  }
}
.menu_item #menu_list::-webkit-scrollbar {
  width: 4px;
}
.menu_item #menu_list::-webkit-scrollbar-track {
  background-color: #000000;
}
.menu_item #menu_list::-webkit-scrollbar-thumb {
  background-color: #000000;
  border-radius: 8px;
}
.menu_item #menu_list {
  display: flex !important;
  align-items: center;
  column-gap: 36px;
}
@media screen and (max-width: 849px) {
  .menu_item #menu_list {
    background: #EFEFEF;
    justify-content: center;
    align-items: baseline;
    height: 100vh;
    position: fixed;
    z-index: 999999;
    text-align: center;
    transition: 0.3s ease-in-out;
    top: 0;
    display: none;
    left: -100vw;
    width: 100%;
    padding-top: 88px;
    margin-top: 0;
  }
  .menu_item #menu_list .mv_btn {
    display: none !important;
  }
}
.menu_item #menu_list .main_menu {
  display: flex;
  column-gap: 18px;
}
@media screen and (max-width: 849px) {
  .menu_item #menu_list .main_menu {
    padding-right: 24px;
    width: 100%;
    display: block;
    text-align: left;
  }
  .menu_item #menu_list .main_menu li + li {
    margin-top: 6px;
  }
}
.menu_item #menu_list .main_menu .sp_sns {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 38px;
  padding-left: 24px;
}
.menu_item #menu_list .main_menu .sp_sns .header_cr {
  text-align: left;
  width: fit-content;
  line-height: 1.01;
  font-family: "AttenNew", sans-serif;
  font-size: 12px;
  letter-spacing: 1%;
  font-weight: bold;
}
.menu_item #menu_list .main_menu .sp_sns .sns {
  display: flex;
  width: fit-content;
  align-items: center;
  column-gap: 20px;
}
.menu_item #menu_list .main_menu .sp_sns .sns a {
  display: flex;
  padding-left: 0 !important;
}
.menu_item #menu_list .main_menu .sp_sns .sns a::after,
.menu_item #menu_list .main_menu .sp_sns .sns a::before {
  display: none !important;
}
.menu_item #menu_list .main_menu .sp_sns .sns a:hover {
  opacity: 0.3;
}
@media screen and (max-width: 849px) {
  .menu_item #menu_list .main_menu .sp_sns .sns .ins {
    max-width: 30px;
  }
}
@media screen and (max-width: 849px) {
  .menu_item #menu_list .main_menu .sp_sns .sns .f {
    max-width: 12px;
  }
}
@media screen and (max-width: 849px) {
  .menu_item #menu_list .main_menu .sp_sns .sns .x {
    max-width: 21px;
  }
}
.menu_item #menu_list .main_menu a {
  font-family: "AttenNew", sans-serif;
  color: #000000 !important;
  font-size: 18px;
  font-size: 1.25vw;
  line-height: 200%;
  letter-spacing: 1.5%;
  font-weight: bold;
}
.menu_item #menu_list .main_menu a:hover {
  opacity: 0.3;
}
@media screen and (max-width: 849px) {
  .menu_item #menu_list .main_menu a {
    display: block;
    width: 100%;
    font-size: 24px;
    letter-spacing: -2%;
    line-height: 1.8;
    padding-left: 47px;
    position: relative;
  }
  .menu_item #menu_list .main_menu a::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 2.5px;
    left: 0;
    bottom: 14.5px;
    background: #000000;
    background-size: 100% 100%;
  }
  .menu_item #menu_list .main_menu a::before {
    position: absolute;
    content: "";
    width: 24px;
    height: 18px;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(../img/common/menu_after.png) no-repeat center / contain;
    transition: 0.3s ease-in-out;
    background-size: 100% 100%;
  }
}
@media screen and (max-width: 849px) {
  .menu_item #menu_list .main_menu .top {
    padding-left: 46.5px;
  }
  .menu_item #menu_list .main_menu .top::after {
    width: 55px;
  }
}
.menu_item #menu_list .container::-webkit-scrollbar {
  width: 16px;
}
.menu_item #menu_list .container::-webkit-scrollbar-track {
  background-color: #fff;
}
.menu_item #menu_list .container::-webkit-scrollbar-thumb {
  background-color: #3760d0;
  border-radius: 8px;
}
.menu_item #menu_list .menu_box {
  width: 100%;
}
.menu_item #menu_list .menu_pc {
  width: 100%;
  display: flex;
  margin: auto;
}
@media screen and (max-width: 849px) {
  .menu_item #menu_list .menu_pc {
    display: none;
  }
}
.menu_item #menu_list .menu_pc ul {
  width: 50%;
}
.menu_item #menu_list .menu_pc ul li + li {
  margin-top: 40px;
}
.menu_item #menu_list .menu_pc ul li a {
  display: block;
}
.menu_item #menu_list .menu_pc ul li .main_a {
  text-align: left;
  width: 100%;
  color: #000000 !important;
  padding-left: 31px;
  letter-spacing: 0.1em;
  font-size: 23px;
  font-weight: 400;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .menu_item #menu_list .menu_pc ul li .main_a {
    font-size: 18px;
    letter-spacing: 0;
  }
}
.menu_item #menu_list .menu_pc ul li .main_a::after {
  position: absolute;
  content: "";
  width: 18px;
  height: 22px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../img/common/menu_list_li.svg) no-repeat center / contain;
  transition: 0.3s ease-in-out;
  background-size: 100% 100%;
}
.menu_item #menu_list .menu_pc ul li .sub_a {
  line-height: 1.5;
  color: #000000 !important;
  padding-left: 31px;
  letter-spacing: 0.05em;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  position: relative;
  margin-top: 20px;
  text-align: left;
}
@media screen and (max-width: 1280px) {
  .menu_item #menu_list .menu_pc ul li .sub_a {
    font-size: 14px;
    letter-spacing: 0;
  }
}
.menu_item #menu_list .menu_pc ul li .sub_a::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 1px;
  left: 0;
  top: 12px;
  background: #000000;
}
.menu_item #menu_list .menu_pc .ul_r {
  padding-left: 46px;
}
.menu_item #menu_list .menu_sns {
  display: flex;
  margin: auto;
  width: fit-content;
  margin-top: 50px;
  column-gap: 40px;
}
@media screen and (max-width: 849px) {
  .menu_item #menu_list .menu_sns {
    column-gap: 25px;
    margin-top: 30px;
  }
}
.menu_item #menu_list .menu_sns a {
  display: block;
  width: 50px;
  border-radius: 100%;
}
.menu_list_open {
  transition: 0.3s ease-in-out;
  left: -100vw;
  display: flex !important;
  -webkit-animation-name: fadeopen;
  animation-name: fadeopen;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
@-webkit-keyframes fadeopen {
  0% {
    opacity: 1;
    left: -100vw;
  }
  100% {
    opacity: 1;
    left: 0;
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
.menu_list_close {
  transition: 0.3s ease-in-out;
  right: -850px;
  display: block !important;
  -webkit-animation-name: fadeclose;
  animation-name: fadeclose;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
@-webkit-keyframes fadeclose {
  0% {
    opacity: 1;
    right: 0;
  }
  100% {
    opacity: 1;
    right: -850px;
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
html {
  margin-top: 0 !important;
}
.wrapper_bg {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background: rgba(252, 252, 252, 0.2);
  opacity: 0;
}
.bg_show {
  opacity: 1 !important;
  z-index: 99;
}
.play {
  display: block !important;
}
.noplay {
  display: none !important;
}
.flex {
  display: block !important;
}
.noflex {
  display: none !important;
}
#breadcrumbs {
  text-align: right;
  margin-bottom: 70px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.07em;
  line-height: 1.5;
  overflow: auto;
}
@media screen and (max-width: 849px) {
  #breadcrumbs {
    margin-bottom: 30px;
  }
}
#breadcrumbs span {
  display: flex;
  align-items: center;
  justify-content: end;
  white-space: nowrap;
}
@media screen and (max-width: 849px) {
  #breadcrumbs span {
    justify-content: flex-start;
  }
}
#breadcrumbs span span:first-child a:first-child {
  font-size: 0px;
  background: url(../img/common/page_home.svg) no-repeat center left / contain;
  background-size: 14.5px 13px;
  transition: 0.3s ease-in-out;
  width: 39.5px;
  height: 13px;
  display: inline-block;
}
#breadcrumbs a {
  color: #000000;
  padding-right: 25px;
  position: relative;
  white-space: nowrap;
}
#breadcrumbs a::after {
  position: absolute;
  content: "";
  width: 4.5px;
  height: 8px;
  right: 7px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../img/common/page_icon.svg) no-repeat center / contain;
  transition: 0.3s ease-in-out;
  background-size: 100% 100%;
}
@media screen and (max-width: 849px) {
  #breadcrumbs a::after {
    width: 6px;
    height: 9px;
  }
}
.pagination {
  margin-top: 60px;
}
@media screen and (max-width: 849px) {
  .pagination {
    margin-top: 40px;
  }
}
.pagination .wp-pagenavi {
  align-items: center;
  display: flex;
  justify-content: center;
}
.pagination .wp-pagenavi a,
.pagination .wp-pagenavi span {
  border: none;
}
.pagination .page {
  color: #000000;
  line-height: 100%;
  display: block;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 7.5px;
  margin-right: 7.5px;
  font-size: 14px;
  font-weight: 400;
  border: none;
  padding-top: 4px;
}
.pagination .current {
  padding-top: 4px;
  font-weight: 400 !important;
  font-size: 14px;
  line-height: 28px;
  width: 28px;
  height: 28px;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-left: 5px;
  margin-right: 5px;
  border: none;
  border-radius: 30px;
}
.pagination .previouspostslink {
  display: block;
  width: 33px;
  height: 33px;
  font-size: 0;
  margin-right: 11px;
  border: none;
  background: url(../img/common/icon_l.svg) no-repeat center / contain;
  background-size: 100% 100%;
}
.pagination .nextpostslink {
  display: block;
  width: 33px;
  height: 33px;
  font-size: 0;
  margin-left: 11px;
  border: none;
  background: url(../img/common/icon_r.svg) no-repeat center / contain;
  background-size: 100% 100%;
}
.footer {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 849px) {
  .footer {
    display: block;
  }
}
.footer .copyright {
  position: absolute;
  left: 0;
  bottom: 0;
  text-align: left;
  padding-left: 30px;
  font-family: "AttenNew", sans-serif;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 1.5%;
  padding-bottom: 32px;
  font-size: 1.25vw;
  padding-left: 2.08333333vw;
  padding-bottom: 2.22222222vw;
}
@media screen and (max-width: 849px) {
  .footer .copyright {
    padding-left: 24px;
    padding-bottom: 24px;
    font-size: 12px;
    letter-spacing: 1%;
  }
}
.footer .footer_logo {
  width: 38.88888889vw;
}
@media screen and (max-width: 849px) {
  .footer .footer_logo {
    width: 100%;
    max-width: 375px;
    margin-left: auto;
    padding-left: 24px;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer_logo {
    max-width: 100%;
  }
}
.footer .f_l {
  width: fit-content;
}
@media screen and (max-width: 849px) {
  .footer .f_l {
    margin-bottom: 160px;
  }
}
.footer .f_l .f_link {
  padding-left: 9.72222222vw;
  display: block;
  margin-top: 150px;
}
@media screen and (max-width: 849px) {
  .footer .f_l .f_link {
    margin-top: 150px;
    padding-left: 24px;
  }
}
.footer .f_l .f_link a {
  display: block;
  letter-spacing: 1%;
  font-size: 14px;
  color: #000000;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
}
.footer .f_l .f_link a + a {
  margin-top: 1.56944444vw;
}
@media screen and (max-width: 849px) {
  .footer .f_l .f_link a + a {
    margin-top: 25px;
  }
}
.footer .f_l .f_link p {
  letter-spacing: 1%;
  font-size: 0.97222222vw;
  font-weight: 400;
  line-height: 1.8;
  text-align: left;
  margin-top: 1.56944444vw;
}
@media screen and (max-width: 849px) {
  .footer .f_l .f_link p {
    font-size: 14px;
    margin-top: 25px;
  }
}
.footer .f_sns {
  padding-left: 140px;
  padding-left: 9.72222222vw;
  padding-top: 30px;
  padding-top: 2.08333333vw;
  display: flex;
  column-gap: 25px;
  column-gap: 1.73611111vw;
  width: fit-content;
  align-items: center;
}
@media screen and (max-width: 849px) {
  .footer .f_sns {
    padding-top: 0;
    padding-left: 24px;
    column-gap: 20px;
  }
}
.footer .f_sns a {
  display: flex;
}
.footer .f_sns a:hover {
  opacity: 0.3;
}
.footer .f_sns .ins {
  max-width: 36px;
  max-width: 2.5vw;
}
@media screen and (max-width: 849px) {
  .footer .f_sns .ins {
    max-width: 28px;
  }
}
.footer .f_sns .f {
  max-width: 13px;
  max-width: 1.5vw;
}
@media screen and (max-width: 849px) {
  .footer .f_sns .f {
    max-width: 12px;
  }
}
.footer .f_sns .x {
  max-width: 22px;
  max-width: 2vw;
}
@media screen and (max-width: 849px) {
  .footer .f_sns .x {
    max-width: 21px;
  }
}
.flex_bg {
  position: fixed;
  top: 0;
  left: 0;
}
