@charset "UTF-8";
/*---------------------------------------------
  Browser Default Initialization
---------------------------------------------*/
body {
  word-break: break-all;
  text-align: justify;
}

body,div,dl,dt,dd,ul,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td,section,nav,article,aside,hgroup,header,address,figure,figcaption {
  margin: 0;
  padding: 0;
  line-height: 1.8;
}
address,caption,cite,code,dfn,em,strong,th,var {
  font-style: normal;
  font-weight: normal;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
caption,th {
  text-align: left;
}
q:before,q:after {
  content: "";
}
object,embed {
  vertical-align: top;
}
hr,legend {
  display: none;
}
h1,h2,h3,h4,h5,h6 {
  font-weight: normal;
}
img,abbr,acronym,fieldset {
  border: 0;
}
img {
  width: 100%;
  height: auto;
  vertical-align: top;
  -ms-interpolation-mode: bicubic;
}
ul li {
  list-style-type: none;
}
a,button,input,textarea {
  outline: none;
  text-decoration: none;
}
a {
  color: #111;
}
.visual{
  line-height: 0;
}
.visual p{
  line-height: initial;
}
.visual *{
  max-width: 100%;
  height: auto;
}
iframe.youtube{
  aspect-ratio: 16 / 9;
  width: 100%;
}
@media all and (max-width: 1000px) {
  img {
    max-width: 100%;
    height: auto;
  }
}

/*---------------------------------------------
  font
---------------------------------------------*/

/* @font-face {
  font-family: "Flyer Black Condensed";
  src: url("../font/Flyer-Black-Condensed-Regular.woff2") format("woff2"),
       url("../font/Flyer-Black-Condensed-Regular.woff") format("woff");
} */

/*---------------------------------------------
  FontSize Initialization
---------------------------------------------*/
:root{
  --font-topKv : "Noto Sans CJK JP","Noto Sans JP", serif;
  --font-en : "Oswald", serif;
  --font-mix : "Oswald", "Noto Sans CJK JP","Noto Sans JP", serif;
  --font-weight-mix : 400;
  --font-weight-semibold : 600;
  --font-weight-bold : 900;
}

/* common layout */
html{
  font-size: 10px;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  overscroll-behavior: none;
  text-align: left;
  color: #111;
  font-family: "Noto Sans CJK JP","Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.85;
  letter-spacing: .04em;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.en{
  font-family: var(--font-en);
  font-weight: 700;
  letter-spacing: .05em;
}
.inner{
  max-width: 132rem;
  box-sizing: content-box;
  padding: 2.97% 4%;
  position: relative;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width:1600px) {
  .inner{
    position: relative;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (max-width:768px){
  html{
    max-width: 100vw;
    /* font-size: 2.565vw; */
  }
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.mb{display: none;}
@media screen and (max-width:768px){
  .pc{display: none;}
  .mb{display: inline;}
}
p {
  text-align: justify;
  text-align-last: left;
}
/* --------------------------------------------
   header 
-----------------------------------------------*/
header{
  width: 100%;
  align-items: center;
  justify-content: flex-end;
  gap: 6rem;
  position: fixed;
  z-index: 1111;
  color: #fff;
  transition: all .6s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  pointer-events: none;
  overflow: hidden;
}
.site-header-nav {
  display: flex;
  align-items: center;
  width: 100%;
}
.site-header-nav a{
  font-family: var(--font-en);
  font-weight: var(--font-weight);
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
}
.site-header-icon{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  aspect-ratio: 1;
  pointer-events: auto;
}

.site-header-icon span{
  width: 60%;
  height: 3px;
  background-color: #111;
  position: relative;
  overflow: hidden;
}
.site-header-icon span:nth-of-type(2){
  width: 45%;
}
.site-header-icon span:before{
  content:"";
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateX(-100%);
  transition: all .6s cubic-bezier(0.55, 0.05, 0.22, 0.99);
}
.language {
  margin-right: auto;
  padding: 0 30px;
  color: #fff;
}
.language a{
  color: #fff;
  font-family: var(--font-en);
  font-weight: var(--font-weight);
  line-height: 1;
}
.language a + a{
  margin-left: .75em;
  padding-left: .75em;
  border-left: 1px solid #fff;
}
@media screen and (min-width:769px) {
  .site-header-icon{
    width: 60px;
  }
  .site-header-icon:hover span:before,
  header:has(.site-header-nav ul:hover) .site-header-icon span:before{
    transform: translateX(0);
  }
  .site-header-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
  }
  .site-header-nav ul{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    height: 100%;
    overflow: auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    opacity: 0;
    transition: all .6s cubic-bezier(0.55, 0.05, 0.22, 0.99);
    gap: 1.25rem 0;
    padding: 1.25rem 0;
  }
  header:has(.site-header-icon:hover) .site-header-nav ul,
  .site-header-nav ul:hover{
    opacity: 1;
    pointer-events: auto;
  }
  .site-header-nav li + li{
    border-left: 1px solid #fff;
    padding-left: 3rem;
    margin-left: 3rem;
  }
  .site-header-nav a{
    display: block;
    overflow: hidden;
    font-size: 2.0rem;
    -webkit-transition: color .25s linear 0s;
    transition: color .25s linear 0s;
    color: #fff;
  }

  .site-header-icon:after{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #111;
    position: absolute;
    right: 0;
    top: 0;
    transform: translateX(100%);
    transition: all .6s cubic-bezier(0.55, 0.05, 0.22, 0.99);
    z-index: -1;
  }
  .site-header-icon:hover:after,
  header:has(.site-header-nav ul:hover) .site-header-icon:after{
    transform: translateX(0%);
  }
  .language{
    opacity: 1;
    pointer-events: all;
    position: fixed;
    left: 2rem;
    bottom: 1rem;
    padding: 0;
  }
  .language a{
    padding-bottom: 0.25em;
    font-size: 2.0rem;
    border-bottom: 2px solid transparent;
    border-left: unset!important;
    overflow: visible;
    color:#9d9d9d;
  }
  .language a + a{
    padding-left: 0;
  }
  .language a.current{
    border-color: #9d9d9d;
  }
  .language a:not(:first-of-type){
    position: relative;
  }
  .language a:not(:first-of-type):before{
    content: "";
    width: 1.5px;
    height: 75%;
    background-color: #9d9d9d;
    transform: rotate(15deg);
    position: absolute;
    left: -.5em;
    /* right: 0; */
    top: .125em;
    /* bottom: 0; */
    margin: auto;
  }
}

@media (max-width:768px){
  .site-header-nav{
    width: 100%;
    padding: 50px 4%;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    right: 0;
    flex-wrap: wrap;
  }
  .site-header-nav::before{
    content:"";
    display: block;
    width: 100%;
    max-width: 0;
    height: 100%;
    max-height: 0;
    background-color: #111;
    position: absolute;
    right: 0;
    top: 0;
    transform-origin: top right;
    transition: all .6s cubic-bezier(0.55, 0.05, 0.22, 0.99);
    z-index: -1;
  }
  .site-header-nav.active::before{
    max-width: 100%;
    max-height: 100%;
  }
  .site-header-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    transition: all .6s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  }
  .site-header-nav.active ul{
    opacity: 1;
    pointer-events: all;
  }
  .site-header-nav li a {
    display: block;
    width: 100%;
    border-bottom: 1px solid #fff;
    padding: 1em 1.6em;
    min-width: 100px;
    text-align: center;
    box-sizing: border-box;
    font-size: 1.6rem;
    color: #fff;
  }
  .site-header-icon{
    width: 50px;
  }
  .site-header-icon.active span:before{
    transform: translateX(0);
  }
  .site-header-icon span {
    height: 2px;
  }
  .language {
    order: 2;
    width: 100%;
    margin-top: 4rem;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    font-size: 1.6rem;
  }
  .site-header-nav.active .language{
    pointer-events: all;
    opacity: 1;
  }
  .language a + a{
    margin-left: 1.5em;
    padding-left: 1.5em;
  }
}
/* --------------------------------------------
  footer
---------------------------------------------*/
#site-footer{

}

#site-footer .mv-bk{
  width: 100%;
  height: 100lvh;
  color: #fff;
  position: relative;
}
#site-footer .mv-bk .inner{
  width: fit-content;
  height: fit-content;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 1;
}
#site-footer .mv-bk .visual{
  width: 100%;
  height: 100%;
  background-color: #000;
}
#site-footer .mv-bk .visual *{
  opacity: .8;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#site-footer .footer-tit{
  font-size: 2.0rem;
  text-align: center;
  font-weight: var(--font-weight-bold);
  font-family: var(--font-topKv);
  line-height: 1;
}
#site-footer br + .hl-wh{
  margin-top: 2em;
}
#site-footer .footer-tit + p{
  margin-top: 4.8rem;
  text-align: center;
  font-size: 1.5rem;
}
.footer-access{
  background-color: #686B71;
}
.footer-access .wrap{
  max-width: 140rem;
  margin: auto;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.footer-access-title{
  padding-bottom: 20px;
  font-size: 8.2rem;
  font-family: var(--font-en);
  line-height: 1;
  overflow-wrap: break-word;
}
.footer-access dl{
  display: flex;
  flex-wrap: wrap;
}
.footer-access a{
  width: 16rem;
  height: 3.4rem;
  margin-top: 1rem;
  margin-bottom: .5rem;
}
.footer-access #map{
  width: 100%;
  aspect-ratio: 1;
}
.footer-end{
  text-align: center;
}
.footer-end .logo{
  display: block;
}
.footer-end .menu{
  display: flex;
  justify-content: center;
}
#site_copylight{
  color: #616161;
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: .05em;
  line-height: 1.6;
  margin: 1em 0 0;
  text-align: center;
  text-align-last: center;
}

@media screen and (min-width:769px) {
  .footer-access .map_wrap{
    width: 50%;
  }
  .footer-access .txt_wrap{
    flex:1;
  }
  .footer-access dl{
    font-size: 1.5rem;
  }
  .footer-access dl + dl{
    margin-top: 1.5rem;
  }
  .footer-access dt{
    width: 12rem;
    font-family: var(--font-en);
    font-weight: var(--font-weight-bold);
  }
  .footer-access dd{
    flex: 1;
  }
  .footer-end{
    padding: 4.8rem 3.2rem 2.4rem;
  }
  .footer-end a{
    font-size: 1.2rem;
    text-decoration: underline;
  }
  .footer-end .logo{
    max-width: 20rem;
    width: 100%;
    margin: auto;
  }
  .footer-end .menu{
    margin-top: 3rem;
    gap: 1.2rem;
  }
  #site-footer .sns_button_list{
    margin-top: 2rem;
    padding: 0!important;
    gap: 1rem;
  }
  #site-footer .sns_button_list li{
    height: 2.8rem;
  }
  .sns_button_list img {
    height: 100%;
    width: auto;
  }
}
@media (max-width:768px){
  #site-footer .mv-bk{
    height: 100lvh;
  }
  #site-footer .inner{
    flex-wrap: wrap;
    padding: 16% 4% 12%;
  }
  #site-footer .footer-tit {
    font-size: 2.4rem;
    line-height: 1.4;
  }
  #site-footer .footer-tit + p {
    margin-top: 3.2rem;
    font-size: 100%;
    text-align: left;
  }
  .footer-access-title{
    padding-bottom: .5rem;
    font-size: 4.5rem;
    order: 1;
  }
  .footer-access .map_wrap{
    width: 100%;
    order: 2;
  }
  .footer-access .txt_wrap{
    width: 100%;
    margin-top: 8%;
    order: 3;
  }
  .footer-access dl + dl{
    margin-top: 1rem;
  }
  .footer-access dt{
    width: 10rem;
    font-family: var(--font-en);
    font-weight: var(--font-weight-bold);
  }
  .footer-access dd{
    flex: 1;
  }
  .footer-end {
    padding-bottom: 8%;
    padding-top: 2rem;
  }
  #site-footer .sns_button_list {
    margin-top: 4rem;
    justify-content: flex-start;
    gap: 1.5rem;
    padding: 0 !important;
  }
  #site-footer .sns_button_list li{
    height: 2.8rem;
  }
  .sns_button_list img {
    height: 100%;
    width: auto;
  }
  .footer-end .logo {
    max-width: 16rem;
    width: 92%;
    margin: auto;
  }
  .footer-end .menu{
    flex-wrap: wrap;
  }
  .footer-end .menu {
    flex-wrap: wrap;
    padding: 8% 4% 0%;
    gap: 1rem;
  }
}


/* ーーーーーーーーーーーーーーーーーーー
  contents
ーーーーーーーーー */
#main>*:last-child{
  padding-bottom: 16rem;
}
@media (max-width:768px){
  #main>*:last-child{
    padding-bottom: 8rem;
  }
}
/* ーーーーーーーーーーーーーーーーーーー
  btn
ーーーーーーーーー */
.back.type02{
  text-align: center;
}

.back.type02 a{
  display: inline-block;
  min-width: 10em;
  width: fit-content;
  padding: .125rem 1rem;
  background-color: #fff;
  border: 1px solid #111;
  text-align: right;
  font-size: 1.6rem;
  color: #fff;
  font-family: var(--font-en);
  letter-spacing: .05em;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: all .6s cubic-bezier(0.55, 0.05, 0.22, 0.99);
}
.back.type02 a p{
  text-align: right;
  text-align-last: right;
}
@media (max-width:768px){
  .back.type02 a{
    font-size: 1.4rem;
  }
}
.back.type02 a:hover{
  color: #111;
}
.back.type02 a::before{
  content:"";
  display: block;
  width: 100%;
  height: 100%;
  background: #111;
  transition: all .6s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transform: translateX(0);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.back.type02 a:hover::before{
  transform: translateX(100%);
}
.back.type02 a span{
  position: relative;
  display: inline-block;
  margin-left: .25em;
}
.back.type02 a span::before {
  content: '';
  display: inline-block;
  width: .3em;
  height: .3em;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: relative;
  top: -.18em;
  transform: rotate(45deg);
  transition: all .3s .3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
}
.back.type02 a:hover span::before{
  border-color: #111;
}
.back.type02.c-wh a{
  background-color: #262626;
  border-color: #fff;
  color: #111;
}
.back.type02.c-wh a:hover{
  color: #fff;
  border-color: #111;
}
.back.type02.c-wh a::before{
  background-color: #fff;
}
.back.type02.c-wh a span::before {
  border-color: #111;
}
.back.type02.c-wh a:hover span::before{
  border-color: #fff;
}
.back.type02.more a{
  background-color: #111;
  border: #9d9d9d;
}
.back.type02.more a:hover{
  color: #fff;
}
.back.type02.more a::before{
  background-color: #9d9d9d;
}
.back.type02.more a span::before{
  transform: rotate(135deg);
  top: -.25em;
}
.back.type02.more a:hover span::before{
  border-color: #fff;
}
.back.under_pagenation{
  margin-top: 6rem; 
}
.back.type02.under_pagenation a{
  min-width: 8rem;
}

.back.page_under{
  margin-top: 10rem;
}
@media (max-width:768px){
  .back.page_under{
    margin-top: 6rem;
  }
}
a.btn-line{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  width: 16rem;
  height: 3.4rem;
  position: relative;
  border: 1px #000 solid;
  border-radius: 17px;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1;
  transition: all .6s cubic-bezier(0.55, 0.05, 0.22, 0.99);
}
a.btn-line::after {
  content: '';
  width: 10%;
  height: 0;
  padding-bottom: 5%;
  position: absolute;
  top: 50%;
  right: 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/common/arrow_other_link.svg);
  transform: translate(0, -50%);
  transition: all .6s cubic-bezier(0.55, 0.05, 0.22, 0.99);
}
a.btn-line:hover{
  background-color: #111;
  color: #fff;
}
a.btn-line:hover:after{
  filter: invert(1);
}
/* content-title */
.content-title{
  display: inline-block;
  width: fit-content;
  min-width: 30rem;
  height: fit-content;
  padding: 2rem 2rem;
  background: #fff;
  text-align: center;
  font-family: var(--font-en);
  line-height: 1;
}
@media (max-width:768px){
  .content-title {
    min-width: unset;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
.content-title .tit{
  display: inline-block;
  padding-bottom: .125em;
  border-bottom: 5px #000 solid;
  font-weight: var(--font-weight-bold);
  font-family: var(--font-mix);
}
@media screen and (min-width:769px) {
  .content-title .tit{
    font-size: 8.4rem;
    line-height: 1;
  }
}
@media (max-width:768px){
  .content-title .tit{
    font-size: 4.5rem;
    line-height: 1.25;
  }
}
/* */

.pagettl_wrap .inner{
  padding-top: 18rem;
  padding-bottom: 11.2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  margin-right: auto;
  margin-left: auto;
  padding-right: 2rem;
  padding-left: 2rem;
}
.pagettl_wrap .tit {
  font-size: 4.2rem;
  font-weight: var(--font-weight-bold);
  line-height: 1;
}
.pagettl_wrap p{
  font-size: 1.4rem;
  font-weight: var(--font-weight-bold);
  color: #999;
  line-height: 1;
  text-transform: uppercase;
}

/* page-head --------------------------------------------------*/
.page-head{
  width: 100%;
  position: relative;
}
@media screen and (min-width:769px) {
  .page-head {
    height: 60vh;
}
}
@media (max-width:768px) {
  .page-head {
    height: 115lvw;
  }
}
.page-head-vis {
  width: 100%;
  height: 100%;
}
.page-head-vis *{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-head .inner{
  width: 75%;
  padding-top: 0;
  padding-bottom: 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
@media (max-width:768px) {
  .page-head .inner{
    width: 90%;
  }
}
.page-head .content-title{
  position: relative;
  transform: translateY(50%);
  z-index: 1;
}

/* .page-intro --------------------------------------------------*/
.page-intro{
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-intro .inner{
  width: 100%;
  box-sizing: border-box;
}
.page-intro-txts {
  width: 50%;
  margin-left: auto;
  padding: 3rem;
  font-size: 1.5rem;
  box-sizing: border-box;
}
@media (max-width:768px) {
  .page-intro-txts{
    width: 100%;
    padding-top: 16%;
    padding-bottom: 8%;
    padding-left: 2.25rem;
    padding-right: 2.25rem;
    font-size: 1.4rem;
  }
}
.page-intro-title{
  font-size: 2.2rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: .75rem;
}

/* page-contents --------------------------------------------------*/
.page-contents .inner{
  align-items: center;
  gap: 4.4%;
  flex-wrap: wrap;
}
.page-content .inner{
  padding-top: 16rem;
  padding-bottom: 16rem;
}
@media (max-width:768px) {
  .page-content .inner{
    padding-top: 16%;
    padding-bottom: 12%;
  }
}
.page-content:has(+ .btn_wrap) .inner{
  padding-bottom: 0rem;
}
.page-content:nth-of-type(2n-1){
  background-color: #d3d3d3;
}
.page-contents-txts{
  width: 45%;
  font-size: 1.5rem;
}
@media (max-width:768px) {
  .page-contents-txts{
    width: 100%;
    font-size: 1.5rem;
  }
}
.page-contents-title{
  display: inline-block;
  margin-bottom: 2rem;
  font-size: 6.2rem;
  font-family: var(--font-en);
  font-weight: var(--font-weight-bold);
  line-height: 1;
  overflow-wrap: break-word;
}
@media (max-width:768px) {
  .page-contents-title{
    font-size: 4.5rem;
  }
}
.page-contents-title.border{
  padding-bottom: .125em;
  border-bottom: 5px #000 solid;
}
.page-contents-subtitle{
  margin-bottom: 2rem;
  font-family: var(--font-mix);
  font-weight: var(--font-weight-bold);
}
.page-contents-visual {
  width: 50%;
}
@media (max-width:768px) {
  .page-contents-visual {
    width: 100%;
    margin-top: 5%;
  }
}
.page-contents-visual >*{
  width: 50vw;
}
@media (max-width:768px) {
  .page-contents-visual >*{
    width: 100%;
  }
}
.page-contents-visual .iframe{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* 交互 */

@media screen and (min-width:769px) {
  .page-content:nth-of-type(2n) .page-contents-visual{
    order: 1;
  }
  .page-content:nth-of-type(2n) .page-contents-visual > *{
    width: calc(100% + 5vw);
    margin-left: -5vw;
  }
  .page-content:nth-of-type(2n) .page-contents-txts{
    order:2;
  }
}
@media screen and (min-width:1440px) {
  .page-content:nth-of-type(2n) .page-contents-visual > *{
    margin-left: calc(-1 * (100vw - 132rem) / 2);
  }
}
/* スライダ―用コンテンツ --------------------------------------------------*/
.swiper-slide{
  position: relative;
}
.slide-float-name{
  width: 100%;
  height: fit-content;
  padding: .75em 0;
  text-align: center;
  text-align-last: center;
  background-color: #111;
  font-size: 1.4rem;
  color: #fff;
  line-height: 1.3;
  position: absolute;
  bottom: 0;
  left: 0;
}
.swiper-wrapper:not(:has(.swiper-slide:nth-of-type(2))) .swiper-slide{
  margin: auto!important;
}
/* .archive-mv */
.archive-mv {
  width: 100%;
  padding: 10rem 0 0;
  position: relative;
}
.archive-mv-img{
  width: 100%;
  aspect-ratio: 5 / 2;
  background-color: #ccc;
}
.archive-mv-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.archive-mv .content-title{
  min-width: auto;
  padding: 0;
  background-color: transparent;
  position: absolute;
  top: 5rem;
  left: 10rem;
}
@media screen and (min-width:769px) {
  .archive-mv .content-title{
    left: 10rem;
  }
}
@media screen and (max-width:768px) {
  .archive-mv .content-title{
    left: 4rem;
  }
}
.archive-mv .content-title .tit{
  font-family: var(--font-mix);
}
@media screen and (min-width:769px) {
  .archive-mv .content-title .tit{
    font-size: 7.4rem;
  }
}
/* archive-consept */
.archive-consept{
  text-align: center;
}
@media screen and (min-width:769px) {
  .archive-consept{
    padding: 6.5rem 0;
  }
}
@media screen and (max-width:768px) {
  .archive-consept {
    padding: 3.2rem 0;
  }
}
.archive-consept-title{
  margin-bottom: 2.25rem;
}
.archive-consept-title .tit{
  font-weight: bold;
  letter-spacing: 3.5px;
}
@media screen and (min-width:769px) {
  .archive-consept-title .tit{
    font-size: 3.2rem;
  }
}
@media screen and (max-width:768px) {
  .archive-consept-title .tit{
    font-size: 2rem;
  }
}
.archive-consept-txt{
  text-align: center;
  text-align-last: center;
  color: #404040;
  line-height: 2.75;
}
@media screen and (min-width:769px) {
  .archive-consept-txt{
    font-size: 1.92rem;
  }
}
@media screen and (max-width:768px) {
  .archive-consept-txt{
    font-size: 1.6rem;
  }
}
/* category */
.category{
  width: 100%;
}
.category .inner{
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.archive-mv + .category{
  background-color: #eee;
}
.cat-lists{
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 1.2rem;
}
@media screen and (max-width:768px) {
  .cat-lists{
    width: 96vw;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow: scroll;
    scrollbar-width: none; 
    -ms-overflow-style: none;
    padding-right: 4vw;   
  }
  .cat-lists::-webkit-scrollbar {
    display: none;
  }
}
.cat-lists a{
  display: inline-block;
  padding: .438em 1.8rem;
  background-color: #9d9d9d;
  font-size: 1.6rem;
  font-weight: var(--font-weight);
  font-family: var(--font-mix);
  color: #fff;
  line-height: 1;
  transition: all .3s .3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
}
@media screen and (max-width:768px) {
  .cat-lists a {
    padding: .77em 1.2rem;
    font-size: 1.3rem;
  }
}
.cat-lists a:hover,
.cat-lists .current a{
  background-color: #111;
}
.cat-lists a::after{
  content: '';
  display: inline-block;
  width: .5em;
  height: .5em;
  margin-left: .5em;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: relative;
  top: -.25em;
  transform: rotate(135deg);
  transition: all .3s .3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
}
.cat-lists a:hover::after{
  filter: unset;
}

/* blog-lists */
section:has(.blog-lists){
  background-color: #efefef;
}
.blog-lists-img {
  margin-bottom: 2rem;
}
.blog-lists-txts {
  text-align: center;
}
.blog-lists-info {
  display: flex;
  justify-content: center;
  gap: 1em;
  padding: 0 .8rem 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  font-size: 1.2rem;
  font-weight: var(--font-weight);
  line-height: 1.3;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.blog-lists-date:before {
  content: "";
  display: inline-block;
  width: .75em;
  height: .75em;
  background-image: url(data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%2081.7%2082.7%22%3E%20%3Cpath%20d%3D%22M32.6.6c64.8-9.3%2C65.9%2C89.6.9%2C81.6C-10.7%2C76.9-11.3%2C6.9%2C32.6.6ZM35.1%2C6.3C-8.7%2C12.3-2%2C82.1%2C45.7%2C76.5%2C90.5%2C71.3%2C83.8-.4%2C35.1%2C6.3Z%22%2F%3E%20%3Cg%3E%20%3Cpolygon%20points%3D%2242.8%2014.4%2042.8%2045.4%2016.8%2045.4%2016.8%2043.4%2040.8%2043.4%2040.8%2014.4%2042.8%2014.4%22%2F%3E%20%3Cpolygon%20points%3D%2244.3%2046.9%2015.3%2046.9%2015.3%2041.9%2039.3%2041.9%2039.3%2012.9%2044.3%2012.9%2044.3%2046.9%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E);
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 5px;
}
.blog-lists-comment:before {
  content: "";
  display: inline-block;
  width: .75em;
  height: .75em;
  background-image: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%2081.7%2082.7%22%3E%20%3Cpath%20d%3D%22M81.7%2C33.7v-3.6c-1.4-13-12.3-22.8-25.3-22.8h-31C11.4%2C7.3%2C0%2C18.6%2C0%2C32.6v11.3l.3%2C4h0c1.8%2C11.2%2C10.6%2C19.7%2C21.6%2C21.1l-.3%2C7.1c0%2C1.2.5%2C2.3%2C1.6%2C2.9.5.3%2C1.1.5%2C1.7.5s1.1-.2%2C1.6-.4l16.8-9.8h13c2.4%2C0%2C4.8-.3%2C7.1-1l3.7-1.4h.1c8.8-4.2%2C14.5-13.2%2C14.5-22.9v-10.2ZM27.7%2C63.8c-.6-.6-1.5-1-2.3-1-10.4%2C0-18.9-8.5-18.9-18.9v-11.3c0-10.4%2C8.5-18.9%2C18.9-18.9h31c10.4%2C0%2C18.9%2C8.5%2C18.9%2C18.9v11.3c0%2C10.4-8.5%2C18.9-18.9%2C18.9h-13.9c-.6%2C0-1.1.2-1.6.4l-12.5%2C7.3.2-4.3c0-.9-.3-1.7-.9-2.4Z%22%2F%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 5px;
}
.blog-lists-title {
  padding: .6rem 3rem;
  letter-spacing: 2.5px;
  margin-bottom: 2rem;
}
.blog-lists-title .tit{
  font-size: 16px;
  font-weight: var(--font-weight);
  text-transform: uppercase;
  line-height: 1.2;
}
.blog-lists-more {
  font-size: 1.1rem;
  position: relative;
}
.blog-lists-more:before{
content: " ";
position: absolute;
background: #000;
bottom: -2rem;
left: calc(50% - 2rem);
left: -webkit-calc(50% - 2rem);
left: -moz-calc( 50% - 2rem);
height: .2rem;
width: 4rem;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
-webkit-transition: bottom .3s cubic-bezier(.455,.03,.515,.955), padding .3s cubic-bezier(.455,.03,.515,.955), opacity .3s cubic-bezier(.455,.03,.515,.955), background .3s cubic-bezier(.455,.03,.515,.955);
-moz-transition: bottom .3s cubic-bezier(.455,.03,.515,.955),padding .3s cubic-bezier(.455,.03,.515,.955),opacity .3s cubic-bezier(.455,.03,.515,.955),background .3s cubic-bezier(.455,.03,.515,.955);
transition: bottom .3s cubic-bezier(.455,.03,.515,.955), padding .3s cubic-bezier(.455,.03,.515,.955), opacity .3s cubic-bezier(.455,.03,.515,.955), background .3s cubic-bezier(.455,.03,.515,.955);
}
@media screen and (max-width:768px) {
  .inner:has(.masonry-container){
    padding-top: 8%;
    padding-bottom: 8%;
  }
}
.masonry-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 16px; /* X方向の余白 */
  position: relative;
}
@media screen and (max-width:768px) {
  .masonry-container {
    gap: 6rem; 
  }
}
@media screen and (min-width:769px) {
  .masonry-container .item {
    width: calc(33.33% - 16px);
    height: auto; 
  }
}
@media screen and (max-width:768px) {
  .masonry-container .item {
    width: 100%;
    padding-bottom: 2rem;
  }
}
/* case-lists */
.case-lists{
  flex-wrap: wrap;
}
@media screen and (min-width:769px) {
  .case-lists li {
    width: 25%;
  }
}
@media screen and (max-width:768px) {
  .case-lists li {
    width: 50%;
  }
}
.case-lists .case-img{
  width: 100%;
  aspect-ratio: 276 / 215;
  overflow: hidden;
}
.case-lists .case-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s cubic-bezier(0.55, 0.05, 0.22, 0.99);
}

.case-lists .case-img:hover img{
  transform: scale(105%);
}
.case-lists .overview {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .6);
  z-index: 11;
  visibility: hidden;
  overflow: hidden;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0); /* translateで中央寄せ、scale(0) */
  transform-origin: center; /* 基準点を中央に */
}
.case-lists .active .overview {
  transform: translate(-50%, -50%) scale(1); /* scale(1)で元に戻す */
  visibility: visible;
  transition: all .6s cubic-bezier(0.55, 0.05, 0.22, 0.99);
}
@media screen and (max-width:768px) {
  .overview {
    display: flex;
    align-items: center;
  }
}
.overview .inner {
  max-width: 90rem;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}
.overview-img{
  max-height: 75vh;
  aspect-ratio: 5 / 3;
  overflow: hidden;
  text-align: center;
}
.overview-img:not(:has(.vertical)) img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.overview-img iframe{
  width: 100%;
  height: 100%;
}
.overview-txts {
  font-size: 0;
  color: #fff;
  padding: 3%;
  position: relative;
  transition: all .6s cubic-bezier(0.55, 0.05, 0.22, 0.99);
}
.overview-date {
  position: absolute;
  right: 3%;
}
.overview-txt {
  max-width: 88%;
}

.active .overview-txts{
  font-size: 1.4rem;
}

.overview .close {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  cursor: pointer;
}
.overview .close span{
  width: 5rem;
  height: 5rem;
  background-color: #ccc;
  border-radius: 3px;
  position: absolute;
  right: 1rem;
  bottom: 1rem;
}
.overview .close span::before{
  content: "";
  width: 30%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
/* ページネーション */

.page_navi a, .page_navi a:hover, .page_navi span {
  display:inline-block; 
  margin:0 5px; 
  text-align:center;
  color:#262626; 
  -webkit-box-sizing:border-box; box-sizing:border-box;
	-webkit-transition: all 0.35s ease; transition: all 0.35s ease;
}
.page_navi .next, .page_navi .prev { position:relative; display:none; }
.page_navi .next span, .page_navi .prev span { display:none; }
.page_navi .next:before, .page_navi .prev:before {
  font-family:'design_plus'; 
  font-size:14px; 
  top:2px; 
  position:relative;
  -webkit-font-smoothing: antialiased; 
  -moz-osx-font-smoothing: grayscale;
}
.page_navi .prev:before { content:'\e94b'; left:0px; }
.page_navi .next:before { content:'\e94a'; right:0px;}

.page_navi{
  height: 40px;
  margin: auto;
  margin-top: 4rem;
  position:relative; 
  z-index:10; 
}
@media screen and (min-width:769px) {
  .page_navi{
    width:calc(100vw / 3); 
  }
}
@media (max-width:768px) {
  .page_navi{
    width: 92%;
  }
}

.page_navi:not(:has(li)){
	display:none;
}
.page_navi ul{
  width:100%; 
  margin:0; 
  font-size:0; 
  text-align:center; 
  padding: 0!important;
  position:absolute; 
  left:50%; 
  top:50%; 
  -webkit-transform: translate(-50%, -50%); 
  transform: translate(-50%, -50%);
  -webkit-box-sizing:border-box; box-sizing:border-box;
}
.page_navi li { display:inline-block; margin:0; }
.page_navi a,
.page_navi span.page-numbers,
.page_navi a{
  width: 4rem !important;
  height: 4rem;
  padding: 0px;
  margin-left: 5px;
  margin-right: 5px;
  border: 1px solid #111;
  border-radius: 3px;
  background: none;
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--mg-basecolor);
  font-family: var(--mg-font) !important;
  line-height: 3.95rem;
}
 .page_navi span.page-numbers.current{
  background: #111;
  border: 1px solid #111;
  color: #eee;
}
.page_navi a:hover{
  background: #111!important;
  border: 1px solid #111!important;
  color: #eee!important;
}
 .page_navi .next,  .page_navi .prev{
  display: inline-block;
}
 .page_navi .next::before,
 .page_navi .prev::before{
  content: '';
  display: inline-block;
  width: .3em;
  height: .3em;
  border-top: solid 1px #111;
  border-right: solid 1px #111;
  position: relative;
  top: -.175em;
  transform: rotate(45deg);
}
.page_navi .prev::before{
  transform: rotate(225deg);
}
.page_navi .next:hover::before,
.page_navi .prev:hover::before{
 border-color: #fff;
}

@media (max-width:600px) {
 .page_navi span.page-numbers,  .page_navi a {
    margin-left: 3px;
    margin-right: 3px;
  } 
}

/* マウスストーカー */
.m_stalker {
  width: 4rem;
  height: 4rem;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  z-index: 111111111;
}
.m_stalker .pointer__cursor {
  transition: all .6s cubic-bezier(0.55, 0.05, 0.22, 0.99) 0s;
  transition-property: top, left, width, height, opacity, background;
  position: absolute;
  top: -5px;
  left: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  opacity: 0;
}
.pointer__lorder {
  transition: transform .5s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transform: scale(0);
  position: absolute;
  top: -11px;
  left: -11px;
  width: 22px;
  height: 22px;
  pointer-events: none;
}
.pointer__lorder .loaders {
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  width: 22px;
  height: 22px;
}
.pointer__lorder .loaders .bg {
  stroke: #f5f5f5;
}
.pointer__lorder .loaders .circle {
  transform-origin: center;
  stroke: #111;
  stroke-dasharray: 70;
  stroke-dashoffset: 0;
}
.pointer__lorder .loaders .bg, .pointer__lorder .loaders .circle {
  stroke-width: 1;
  fill: none;
}
.m_stalker .pointer__cursor.is-mouseon_video,
.m_stalker .pointer__cursor.is-mouseon_prev,
.m_stalker .pointer__cursor.is-mouseon_next,
.m_stalker .pointer__cursor.is-mouseon_image {
  top: -48px;
  left: -48px;
  width: 96px;
  height: 96px;
  background: rgba(0,0,0,0) !important;
  border: 1px solid rgba(255,255,255,.4);
  opacity: 1 !important;
  color: #fff;
  font-family: "Be Vietnam Pro","IBM Plex Sans JP",sans-serif;
  font-size: 12px;
  line-height: 1;
  text-align: center
}
.m_stalker .pointer__cursor.is-mouseon_prev,
.m_stalker .pointer__cursor.is-mouseon_next {
  top: -12.5px;
  left: -12.5px;
  width: 60px;
  height: 60px;
  background: #111 !important;
  border: unset;
}
.m_stalker .is-mouseon_video .arw{
  transform: translate(-50%, -50%);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.8rem;
  height: 1.8rem;
  background-image: url(../img/common/arrow_video.svg);
  background-position: center;
  background-repeat: no-repeat;
}

.m_stalker .is-mouseon_image .arw {
  transform: translate(-50%, -50%);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.8rem;
  height: 1.8rem;
  background-image: url(../img/common/arrow_video.svg);
  background-position: center;
  background-repeat: no-repeat;
}

.m_stalker .is-mouseon_video .txt,
.m_stalker .is-mouseon_image .txt {
  transform: translate(-50%, 0);
  display: block;
  position: absolute;
  left: 50%;
  bottom: -19px;
  white-space: nowrap
}
.m_stalker .pointer__cursor:not(.is-mouseon_video) .video{
  display: none;
}
.m_stalker .pointer__cursor:not(.is-mouseon_image) .image{
  display: none;
}
.m_stalker .pointer__cursor.is-mouseon_next .next,
.m_stalker .pointer__cursor.is-mouseon_prev .prev{
  position: absolute;
  width: fit-content;
  height: fit-content;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  color: #fff;
}
.m_stalker .pointer__cursor:not(.is-mouseon_next) .next{
  display: none;
}
.m_stalker .pointer__cursor:not(.is-mouseon_prev) .prev{
  display: none;
}
@media screen and (max-width:768px) {
  .m_stalker{display: none;}
}

.m_stalker ~ div {
  display: none;
}


/* text decoration */
.hl-wh {
  display: inline-block;
  padding: .5em .5em;
  background: #fff;
  color: #111;
}
.hl-bl {
  display: inline-block;
  padding: .5em .5em;
  background: #111;
  color: #fff;
}
/* animetion */
.image-mask {
  display: inline-block;
  overflow: hidden;
  background-color: transparent!important;
}

.image-mask img {
  display: block;
  width: 100%;
  height: auto;
  clip-path: inset(0 100% 0 0); /* 初期状態：右全部マスク */
  animation: revealImage .5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s forwards;
}

@keyframes revealImage {
  to {
    clip-path: inset(0 0 0 0); /* フル表示 */
  }
}

.foggy-content {
  filter: blur(10px);
  opacity: 0;
  animation: clearFog 1.5s ease-out 1s forwards; /* 1秒遅れて開始 */
}

@keyframes clearFog {
  to {
    filter: blur(0);
    opacity: 1;
  }
}