
/* 
=======================================


// ● Components //

▼ Animation

 
--

// ● Common //

▼ Loading
▼ Humb
▼ Header
▼ Main
▼ Footer


--

// ● Section //

▼ fv
▼ mv
▼ Intro
▼ sectList
▼ sectArrow
▼ gallery
▼ credit
▼ sectInfo
▼ seviceList
▼ sectNews
▼ pagenation
▼ semiOrder
▼ price

--



/* 
=======================================


// ● Components  //


/* 
><><><><><><><><><><><><><><><><><><><>

  ▼ Animation

><><><><><><><><><><><><><><><><><><><>

/* --------------------------- 
  ■ fadeInUp
--------------------------- */

.inview {
  opacity: 0;
  transform: translateY(1rem);
  transition: 1.55s all cubic-bezier(.275,0,0,1);
  transition-delay: 0s;
}
.four .inview.fadeInUp {
  opacity: 1;
  transform: translateY(0);
}


/* --------------------------- 
  ■ underbar
--------------------------- */

a.underbar {
  position: relative;
}
a.underbar:before {
    content:"";
    position: absolute;
    bottom: -0.6rem;
    left: -0.4rem;
    width: 102%;
    height: 1px;
    background-color: #dfd9c3;
    transform: scale(1, 1);
    transform-origin: left top;
    transition: -webkit-transform 0.4s cubic-bezier(0.08, 0.92, 0.35, 1);
    transition: transform 0.4s cubic-bezier(0.08, 0.92, 0.35, 1);
    transition: transform 0.4s cubic-bezier(0.08, 0.92, 0.35, 1),-webkit-transform 0.4s cubic-bezier(0.08, 0.92, 0.35, 1);
}
a.underbar:hover::before {
    transform-origin: right top;
    transform: scale(0, 1);
}
a.underbar:after {
    content:"";
    position: absolute;
    bottom: -0.6rem;
    left: -0.4rem;
    width: 102%;
    height: 1px;
    background-color: #dfd9c3;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: -webkit-transform 0.4s cubic-bezier(0.08, 0.92, 0.35, 1);
    transition: transform 0.4s cubic-bezier(0.08, 0.92, 0.35, 1);
    transition: transform 0.4s cubic-bezier(0.08, 0.92, 0.35, 1),-webkit-transform 0.4s cubic-bezier(0.08, 0.92, 0.35, 1);
    transition-delay: 0.3s;
}
a.underbar:hover::after {
    transform-origin: left top;
    transform: scale(1, 1);
}

/*
white
*/

a.underbar.white:before {
  background-color: #fff;
}
a.underbar.white:after {
  background-color: #fff;
}

/*
contact
*/

body.contact a.underbar.white:before,
body.contact a.underbar.white:after {
  background-color: #dfd9c3;
}


/* --------------------------- 
   ■ Hover
-------------------------- */

.hoverTxt {
  position: relative;
  overflow: hidden;
  display: inline-block;
  white-space: nowrap;
} 
.hoverTxt > span.top {
  display: block;
  transition: 0.5s transform cubic-bezier(.275,0,0,1);
  transform: translateY(100%);
}
.hoverTxt > span.bottom {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  transition: 0.5s all cubic-bezier(.275,0,0,1);
}

/* 
hover
*/

.hoverTxt.start > span.top {
  transform: translateY(0);
}
a:hover .hoverTxt.start > span.top,
.serviceLink:hover .hoverTxt.start > span.top,
.btn:hover .hoverTxt.start > span.top
 {
  transform: translateY(-100%);
}
a:hover .hoverTxt span.bottom,
.serviceLink:hover .hoverTxt span.bottom,
.btn:hover .hoverTxt span.bottom
 {
  top: 0%;
}



/* 
=======================================


// ● Common  //


/* 
><><><><><><><><><><><><><><><><><><><>

  ▼ Loading

><><><><><><><><><><><><><><><><><><><>


/* --------------------------- 
   /*reCAPTHAマーク設定
--------------------------- */

.grecaptcha-badge { visibility: hidden; }


/* --------------------------- 
   ■ respomsive
--------------------------- */

.fade.pc {
  display: flex;
}
.fade.tablet {
  display: none;
}
.fade.sp {
  display: none;
}


/* --------------------------- 
  ■ Top
--------------------------- */

body.top.pace-running {
  position: fixed;
}


/* --------------------------- 
  ■ Fade
--------------------------- */

/* ------ common ------- */

.fade {
  position: fixed;
  background-color: #fff;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: 1.55s all cubic-bezier(.275,0,0,1);
  z-index: 7;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*
top
*/

body.top.pace-done.zero .fade {
  opacity: 0;
  visibility: hidden;
}
body.top.pace-done.first .fade {
  height: 0;
}

/*
under
*/

body.under.zero .fade {
  opacity: 0;
  visibility: hidden;
}
body.under.pace-done.first .fade {
  height: 0;
}

/*
normal
*/

body.normal.zero .fade {
  opacity: 0;
  visibility: hidden;
}
body.normal.pace-done.first .fade {
  height: 0;
}

body.normal.policy .wrapper {
  opacity: 0;
}
body.normal.policy.pace-done .wrapper {
  opacity: 1;
}

/* --------------------------- 
  ■ transition
--------------------------- */

/*
common
*/

body .wrapper {
  transition: 0.55s all cubic-bezier(.275,0,0,1);
}
body.pageTrans .wrapper {
  opacity: 0;
}
body.pageTrans.humbActive .l-humb {
  width: 0;
}
body.pageTrans.humbActive .l-humb.swActive {
  width: 0;
}

body.page .wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100svh;
}

body.pageTrans.humbActive .l-humbSect > .inner {
  opacity: 0;
  transition: all ease 0.1s;
}

/*
fixed
*/

.fixed {
  transition: 0.85s all cubic-bezier(.275,0,0,1);
}
body.pageTrans .fixed {
  margin-top: -1.3vw;
  opacity: 0;
}

/*
title
*/


.l-sectionMv__title {
  transition: 0.55s all cubic-bezier(.275,0,0,1);
}
body.pageTrans .l-sectionMv__title {
  margin-top: -1.3vw;
}

/*
trans
*/

.trans {
  position: fixed;
  background-color: #fff;
  width: 100%;
  height: 0%;
  bottom: 0;
  transition: 0.85s all cubic-bezier(.275,0,0,1);
  z-index: 7;
}
body.pageTrans .trans {
  height: 100%;
}
body.pageTrans.page .trans {
  height: 0%;
}


/* --------------------------- 
  ■ Progress
--------------------------- */

/* ------ common ------- */

.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transition: all 1s ease;
}
.pace-inactive {
  display: none;
}
.pace .pace-progress {
  background: #000;
  opacity: 1;
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 100%;
  width: 100%;
  height: 1px;
}

/*
top
*/

body.top .pace .pace-progress {
  opacity: 0;
  visibility: hidden;
}
body.top .fade:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  opacity: 1;
  transform: scale(0, 1);
  transform-origin: right top;
  background: #000;
  transition: 2.85s transform cubic-bezier(.275,0,0,1);
}
body.top.load1 .fade:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
body.top.load4 .fade:before {
  transform-origin: right top;
  transform: scale(0, 1);
  transition: 1s transform cubic-bezier(.275,0,0,1);
}

/*
under
*/

body.under .pace .pace-progress {
  opacity: 1;
  visibility: visible;
  background: #000;
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 100%;
  width: 100%;
  height: 1px;
  opacity: 0;
  transition: all ease 1.5s;
}
body.under.pace-done .pace .pace-progress {
  opacity: 0;
  right: 0%;
  display: block;
  transition: all ease 1.5s !important;
}
body.under .fade:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  opacity: 1;
  transform: scale(0, 1);
  transform-origin: right top;
  background: #000;
  transition: 2.85s transform cubic-bezier(.275,0,0,1);
}
body.under.load1 .fade:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
body.under.load1.one .fade:before {
  opacity: 0;
  transition: 1s opacity cubic-bezier(.275,0,0,1);
}

/*
normal
*/

body.normal .pace .pace-progress {
  opacity: 0;
  visibility: hidden;
}
body.normal .fade:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  opacity: 1;
  transform: scale(0, 1);
  transform-origin: right top;
  background: #000;
  transition: 2.85s transform cubic-bezier(.275,0,0,1);
}
body.normal.load1 .fade:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
body.normal.load1.one .fade:before {
  opacity: 0;
  transition: 1s opacity cubic-bezier(.275,0,0,1);
}


/* --------------------------- 
   ■ Cont
--------------------------- */

body.top .loadBg__cont {
  margin-top: -0.9rem;
  text-align: center;
  opacity: 1;
  transition: all 1.5s cubic-bezier(.275,0,0,1);
}
body.under .loadBg__cont {
  display: none;
}
body.normal .loadBg__cont {
  display: none;
}

/*
end
*/

body.load4 .loadBg__cont {
  opacity: 0;
}

/* --------------------------- 
   ■ Logo
--------------------------- */

/* --- common --- */

.loadBg__cont .logo {
  width: 96px;
  height: 96px;
  border-radius: 100%;
  border: 0px solid #000;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
  margin: 0 auto;
}

/* --- icon --- */

.loadBg__cont .logo img {
  /*width: 90px;
  height: 90px;
  margin-top: 3px;*/
      width: 60px;
    height: 60px;
    margin-top: 5px;
}
.loadBg__cont .logo .icon {
  overflow: hidden;
}

/*
Pre
*/

.loadBg__cont .logo img {
  opacity: 0;
  transform: rotate(0deg);
  transition: all 2s ease;
}

/*
start
*/

body.load1 .loadBg__cont .logo img {
  opacity: 0.4;
  transform: rotate(360deg);
  filter: blur(0);
}

/*
end
*/

body.load3 .loadBg__cont .logo img {
  opacity: 0.4;
  filter: blur(0px);
  transform: rotate(360deg);
  transition-delay: 0.2s;
}

/* --- circle --- */

.loadBg__cont .logo svg.loadCircle {
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  
}

/* 01 */

/*
Pre
*/

.loadBg__cont .logo svg.circle1 {
  fill:transparent;
  stroke:rgba(0,0,0,0.15);
  opacity: 0;
}
.loadBg__cont .logo svg.circle1 circle{
  stroke-dasharray:0 276;
}

/*
start
*/

body.load1 .loadBg__cont .logo svg.circle1 circle {
  stroke-dasharray:276 276;
  transition:all 2s ease;
  transition-delay: 0s;
}
body.load1 .loadBg__cont .logo svg.circle1 {
  stroke:rgba(0,0,0,0.15);
  transition:all 2s ease;
  transition-delay: 0s;
  opacity: 1;
}

/* 02 */

/*
Pre
*/

.loadBg__cont .logo svg.circle2 {
  fill:transparent;
  stroke:rgba(0,0,0,0.35);
  opacity: 0;
}
.loadBg__cont .logo svg.circle2 circle{
  stroke-dasharray:0 301;
}

/*
start
*/

body.load1 .loadBg__cont .logo svg.circle2 circle {
  stroke-dasharray:301 301;
  transition:all 2s ease;
  transition-delay: 0s;
}
body.load1 .loadBg__cont .logo svg.circle2 {
  stroke:rgba(0,0,0,0.35);
  transition:all 2s ease;
  transition-delay: 0s;
  opacity: 1;
}

/* 03 */

/*
Pre
*/

.loadBg__cont .logo svg.circle3 {
  fill:transparent;
}
.loadBg__cont .logo svg.circle3 circle{
  stroke-dasharray:0 301;
  transition: all 1.5s cubic-bezier(.275,0,0,1);
}

/*
start
*/

body.load3 .loadBg__cont .logo svg.circle3 circle {
  stroke-dasharray:301 301;
}
body.load3 .loadBg__cont .logo svg.circle3 {
  stroke:rgba(0,0,0,0.7);
  
}


/* --------------------------- 
   ■ txt
--------------------------- */

.loadBg__cont .txt {
  margin-top: 27px;
  margin-left: 1px;
}

/*
Pre
*/

.loadBg__cont .txt {
  overflow: hidden;
  display: flex;
}
.loadBg__cont .txt img {
  width: 140px;
  transform: translateY(105%);
  opacity: 0;
  transition: all 1.5s cubic-bezier(.275,0,0,1);
  transition-delay: 0.2s;
}

/*
end
*/

body.load2 .loadBg__cont .txt img {
  transform: translateY(0%);
  opacity: 1;
}


/* 
><><><><><><><><><><><><><><><><><><><>

  ▼ Humb

><><><><><><><><><><><><><><><><><><><>

/* --------------------------- 
  ■ base
--------------------------- */

/* ------ switch ------- */

.l-humb.pc {
  display: flex;
}
.l-humb.sp {
  display: none;
}

/* ------ common ------- */

.l-humb {
  position: fixed;
  height: 100vh;
  height: 100svh;
  z-index: 99;
  width: 0rem;
  right: 0;
  display: flex;
  transition: 0.85s all cubic-bezier(.275,0,0,1);
}

.l-humbBg {
  position: fixed;
  height: 100vh;
  height: 100svh;
  z-index: 98;
  width: 100%;
  visibility: hidden;
}

/* active */

body.humbActive .l-humb {
  width: 62%;
  backdrop-filter: blur(6px);
}
body.humbActive .l-humbBg {
  visibility: visible;
  cursor: crosshair;
}

/* ------ sect ------- */

section.l-humbSect {
  position: absolute;
  right: 0;
  background-color: #d1ceca7d;
  height: 100%;
  cursor: pointer;
  box-shadow: -1px 0px 3px 0px rgb(0 0 0 / 15%);
  transition: 0.65s all cubic-bezier(.275,0,0,1);
}

section.l-humbSect.active .serviceLink {
  display: block;
  width: 100%;
  height: 100%;
}

section.l-humbSect > .inner {
  display: flex;
  height: 100%;
  width: calc(100% - 19.5%);
}
section.l-humbSect:nth-child(4) > .inner {
  width: 100%;
}

/*
about
*/
.swActive section.l-humbSect.about > .inner {
  width: calc(100% - 21%);
}


/*
design
*/
.swActive section.l-humbSect.design > .inner {
  width: calc(100% - 14%);
}

/*
works
*/

.swActive section.l-humbSect.works > .inner {
  width: calc(100% - 7%);
}


/* active */

section.l-humbSect:nth-child(1) {
  width: 100%;
}
section.l-humbSect:nth-child(2) {
  width: 75%;
  
}
section.l-humbSect:nth-child(3) {
  width: 50%;
  
}
section.l-humbSect:nth-child(4) {
  width: 25%;
  
}


/* hover */

section.l-humbSect:hover {
  

}
section.l-humbSect:nth-child(1):hover {
  width: calc(100% + 2%);
/*  background-color: #B4AFA6;*/
}
section.l-humbSect:nth-child(2):hover {
  width: calc(75% + 2%);
/*  background-color: #ACB4A6;*/
}
section.l-humbSect:nth-child(3):hover {
  width: calc(50% + 2%);
/*  background-color: #A6B4B0;*/
}
section.l-humbSect:nth-child(4):hover {
  width: calc(25% + 2%);
/*  background-color: #B4A6A6;*/
}


/* --------------------------- 
  ■ switch
--------------------------- */

/* ------ Common ------- */

body.humbActive .l-humb.swActive {
  width: 90%;
}
.swActive section.l-humbSect {
  background-color: #fff;
}

/* ------ Close ------- */

.l-humbClose {
  display: none;
}


/* ------ Change ------- */

/* common */

section.l-humbSect.active {
  background-color: #B4AFA6;
}

section.l-humbSect.active .l-humbSect__cont {
  visibility: visible;
  cursor: auto;
  opacity: 1;
  height: 100%;
  width: 100%;
  transition: all ease 0.9s;
  transition-delay: 0.7s;
}
section.l-humbSect.active .l-humbSect__cont > .inner {
  width: 100%;
}

/*
about
*/

section.l-humbSect.active.about {
  background-color: #a7a39b;
}

/*
design
*/

section.l-humbSect.active.design {
  background-color: #ACB4A6;
}

/*
works
*/

section.l-humbSect.active.works {
  background-color: #A6B4B0;
}

/*
contact
*/

section.l-humbSect.active.contact {
  background-color: #B4A6A6;
}


/* ------ About ------- */

/* others */

.swAbout section.l-humbSect:nth-child(2) {
  width: 19.5%;
}
.swAbout section.l-humbSect:nth-child(3) {
  width: 13%;
}
.swAbout section.l-humbSect:nth-child(4) {
  width: 6.5%;
}

/* hover */

.swAbout section.l-humbSect:nth-child(1):hover {
  width: 100%;
}
.swAbout section.l-humbSect:nth-child(2):hover {
  width: calc(19.5% + 0.5%);
}
.swAbout section.l-humbSect:nth-child(3):hover {
  width: calc(13% + 0.5%);
}
.swAbout section.l-humbSect:nth-child(4):hover {
  width: calc(6.5% + 0.5%);
}

/* ------ Design ------- */

/* others */

.swDesign section.l-humbSect:nth-child(2) {
  width: 93.5%;
}
.swDesign section.l-humbSect:nth-child(3) {
  width: 13%;
}
.swDesign section.l-humbSect:nth-child(4) {
  width: 6.5%;
}

/* hover */

.swDesign section.l-humbSect:nth-child(1):hover {
  width: calc(100% + 0.5%);
}
.swDesign section.l-humbSect:nth-child(2):hover {
  width: 93.5%;
}
.swDesign section.l-humbSect:nth-child(3):hover {
  width: calc(13% + 0.5%);
}
.swDesign section.l-humbSect:nth-child(4):hover {
  width: calc(6.5% + 0.5%);
}

/* ------ Works ------- */

/* others */

.swWorks section.l-humbSect:nth-child(1) {
  width: 100%;
}
.swWorks section.l-humbSect:nth-child(2) {
  width: 93.5%;
}
.swWorks section.l-humbSect:nth-child(3) {
  width: 87%;
}
.swWorks section.l-humbSect:nth-child(4) {
  width: 6.5%;
}

/* hover */

.swWorks section.l-humbSect:nth-child(1):hover {
  width: calc(100% + 0.5%);
}
.swWorks section.l-humbSect:nth-child(2):hover {
  width: 94.5%;
}
.swWorks section.l-humbSect:nth-child(3):hover {
  width: 87%;
}
.swWorks section.l-humbSect:nth-child(4):hover {
  width: calc(6.5% + 0.5%);
}

/* ------ Contact ------- */

/* others */

.swContact section.l-humbSect:nth-child(1) {
  width: 100%;
}
.swContact section.l-humbSect:nth-child(2) {
  width: 93.5%;
}
.swContact section.l-humbSect:nth-child(3) {
  width: 87%;
}
.swContact section.l-humbSect:nth-child(4) {
  width: 80.5%;
}

/* hover */

.swContact section.l-humbSect:nth-child(1):hover {
  width: calc(100% + 0.5%);
}
.swContact section.l-humbSect:nth-child(2):hover {
  width: 94.5%;
}
.swContact section.l-humbSect:nth-child(3):hover {
  width: 87.5%;
}
.swContact section.l-humbSect:nth-child(4):hover {
  width: 80.5%;
}


/* --------------------------- 
  ■ SectCont
--------------------------- */

/* ------ common ------- */




/* ------ title ------- */

.l-humbSect__title {
  font-size: 1.7rem;
  font-family: minion-3-display, serif;
  writing-mode: vertical-lr;
  letter-spacing: 0.325em;
  padding-top: 3.5rem;
  font-variant: small-caps;
  margin-left: 2.5rem;
  margin-right: 3.4rem;
  opacity: 0;
  transition: all ease .8s;
  filter: blur(3px);
  transition-delay: 0s;
}
.l-humbSect__title span {
  font-size: 136%;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

/* active */

body.humbActive .l-humbSect__title {
  opacity: 1;
  filter: blur(0px);
  transition-delay: 0.2s;
}

/* hover */

section.l-humbSect:hover .l-humbSect__title {
  font-weight: 500;
}

body.humbActive section.l-humbSect.active .l-humbSect__title {
  color:#fff;
  font-weight: 600;
  cursor: default;
  opacity: 0;
  transition-delay: 0s;
}

/* ------ cont ------- */

/* common */

.l-humbSect__cont {
  visibility: hidden;
  opacity: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  color: #fff;
  transition: all ease .3s;
  transition-delay: 0s;
  opacity: 0;
}
.l-humbSect__cont a {
  color: #fff;
}

.l-humbSect__cont > .inner {
  width: 100%;
  height: 86.3%;
}

/*
active
*/

section.l-humbSect.active a,
section.l-humbSect.active .serviceLink {
  color:#fff;
  cursor: pointer;
}

/* ------ menu ------- */

.l-humbSect__menu {
  display: none;
}

/* ------ box ------- */

/* common */

.l-humbSect__box {
  width: 92%;
  border-top: 1px solid rgba(255,255,255,.25);
  position: relative;
  color:#fff;
}
.l-humbSect__box.line:before {
  content:"";
  position: absolute;
  border-top: 1px solid #fff;
  width: 4.5rem;
  top: -1px;
  left: 0;
}
.l-humbSect__box:last-child {
  border-bottom: 1px solid rgba(255,255,255,.25);
}

.l-humbSect__box > .inner {
  width: 98%;
  margin:0 auto;
}

/*
ver
*/

.l-humbSect__box.ver > .inner {
  padding-top: 7vh;
  padding-bottom: 6.8vh;
  display: flex;
  flex-flow: wrap;
}

/*
hor
*/

.l-humbSect__box.hor > .inner {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
  display: block;
}

/*
info
*/

.l-humbSect__box.info > .inner {
  padding-top: 4.9rem;
  padding-bottom: 4.9rem;
}

/*
nav
*/

.l-humbSect__box.nav  > .inner {
  display: flex;
  padding-top: 4.3rem;
  padding-bottom: 4.5rem;
}
.l-humbSect__box.nav .l-humbList__info {
  width: 47%;
}
.l-humbSect__box.nav .l-humbList__info + .l-humbList__info {
  margin-left: 6%;
}
.l-humbSect__box.nav .l-humbList__info .left {
  width: 50%;
}
.l-humbSect__box.nav .l-humbList__info .right {
  width: 50%;
}

/*
sect
*/

.l-humbSect__box.sect {
  width: 92%;
  border-top: initial;
}
.l-humbSect__box.sect > .inner {
  padding-top: 8vh;
  padding-bottom: 8vh;
  color: #fff;
}
.l-humbSect__box.sect + .l-humbSect__box.sect {
  border-top: 1px solid rgba(255,255,255,.25);
}
.l-humbSect__box.sect:last-child {
  border-bottom: initial;
}


/*
contact
*/

.l-humbSect__box.contact:last-child {
  border-bottom: initial;
}

.l-humbSect__box.contact .l-footer_cont {
  margin-top: 3.9rem;
}
.l-humbSect__box.contact .l-footer_cont .desc {
  font-size: 1.2rem;
  line-height: 2.2;
}


/* ------ list ------- */

/* ver */

.l-humbList__ver {
  width: 47%;

}
.l-humbList__ver a {
  display: flex;
}
.l-humbList__ver + .l-humbList__ver {
  margin-left: 6%;
}
.l-humbList__ver:nth-child(3) {
  margin-left: 0;
  margin-top: 6vh;
}

.l-humbList__ver .left {
  width: 50%;
}
.l-humbList__ver .right {
  width: 16.3vh;
  margin-left: 15.8%;
}

/* hor */

.l-humbList__hor {
  width: 100%;
  display: flex;
}
.l-humbList__hor .left {
  width: 34%;
}
.l-humbList__hor .right {
  width: 41vh;
  margin-left: 29vh;
}

/*
contact
*/

.contact .l-humbList__hor .left {
  width: 38%;
}
.contact .l-humbList__hor .right {
  width: 53%;
  margin-top: 1rem;
  margin-left: 9%;
}

/*
sect
*/

.sect .l-humbList__hor .right {
  width: 44vh;
  margin-left: 28%;
}

/* policy */

.l-humbSect__box.policy > .inner {
  display: flex;
  padding:3.7vh 0;
}
.l-humbList__policy {
  font-family: adobe-garamond-pro,'Zen Old Mincho', serif;
  font-size: 1.3vh;
  letter-spacing: 0.05em;
}
.l-humbList__policy:nth-child(2) {
  margin-left: auto;
}
.l-humbList__policy + .l-humbList__policy:before {
  content:"/";
  margin-left: 1.4rem;
  margin-right: 0.9rem;
  opacity: 0.7
}

/* sns */

.l-humbList__sns {
  font-family: adobe-garamond-pro, 'Zen Old Mincho', serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.25vh;
  margin-top: 0.2rem;
  margin-left: 0.3rem;
  letter-spacing: 0.24em;
}
.l-humbList__sns img.wh {
  display: block;
}
.l-humbList__sns img.bl {
  display: none;
}

.l-humbList__sns > a {
  display: flex;
  align-items: center;
}
.l-humbList__sns span {
  margin-left: 1.2rem;
}


/* info */

.l-humbList__info {
  display: flex;
}
.l-humbList__info .left {
  width: 31%;
}
.l-humbList__info .middle {
  width: 27%;
}
.l-humbList__info .right {
  width: 33%;
  margin-left: auto;
  display: flex;
  flex-flow: column;
}


/* ------ title ------- */

.l-humbList__title {
  font-family: minion-3-display, serif;
  font-size: 3.25vh;
  letter-spacing: 0.28em;
  line-height: 1.55;
  text-transform: uppercase;
}
.l-humbList__title.philo {
  letter-spacing: 0.27em;
}
.l-humbList__title .bold {
  font-weight: 600;
}
.l-humbList__title .normal {
  display: block;
  margin-top: -1.8rem;
}

/*
ver
*/

.l-humbList__ver .l-humbList__title {
  margin-top: 0.7rem;
}

/*
hor
*/

.l-humbList__hor .l-humbList__title {
  font-size: 3.9vh;
  letter-spacing: 0.35em;
}
.l-humbList__hor .l-humbList__title .normal {
  display: block;
  margin-top: -1.9rem;
}


/*
sect
*/

.l-humbSect__box.sect .l-humbList__title {
  font-size: 4.5vh;
}
.l-humbSect__box.sect .l-humbList__title .normal {
  margin-top: -2.8vh;
}


/* info */

.l-humbList__infoTitle {
  display: flex;
  align-items: center;
  font-family: minion-3-display, serif;
  font-size: 1.95rem;
  letter-spacing: 0.135em;
  line-height: 1.6;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

.l-humbList__infoTitle .bold {
  font-weight: 600;
}
.l-humbList__infoTitle .normal {
  font-weight: 500;
  text-transform: capitalize;
  margin-left: 0.6em;
  letter-spacing: 0.27em;
}
.l-humbList__infoTitle .sub {
  font-size: 0.7rem;
  letter-spacing: 0.48em;
  margin-top: 0.1rem;
  margin-left: 1.7rem;
}

.l-humbList__infoTitle .jpn {
  font-family: 'Zen Old Mincho', serif;
  font-size: 1.2vh;
  letter-spacing: 0.13em;
  margin-left: 1.5rem;
}

/*
nav
*/

.l-humbSect__box.nav .l-humbList__infoTitle {
  margin-top: 1rem;
}
.l-humbSect__box.nav .l-humbList__infoTitle .bold {
  font-size: 2.7vh;
  letter-spacing: 0.275em;
}


/* ------ sub ------- */

.l-humbList__sub {
  font-family: 'Zen Old Mincho', serif;
  font-size: 1.2vh;
  letter-spacing: 0.125em;
  margin-top: -0.5vh;
  margin-bottom: 2.8vh;
}

/* info */

.l-humbList__infoSub {
  font-family: adobe-garamond-pro,'Zen Old Mincho', serif;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.05em;
}

/* ------ desc ------- */

.l-humbList__desc {
  font-family: adobe-garamond-pro,'Zen Old Mincho', serif;
  font-size: 1.1vh;
  line-height: 2;
  letter-spacing: 0.05em;
  white-space: initial;
  opacity: 0.55;
}

/*
jpn
*/

.l-humbList__desc.jpn {
  font-size: 1.3rem;
  letter-spacing: 0.075em;
}

/*
sect
*/

.l-humbSect__box.sect .l-humbList__desc {
  opacity: 0.6;
}
.l-humbSect__box.sect .l-humbList__desc.jpn {
  opacity: 0.7;
  font-size: 1.05rem;
  line-height: 2.3;
}


/* info */


/* ------ btn ------- */

.l-humbList__btn {
  font-size: 1.5vh;
  letter-spacing: 0.065em;
  font-family: adobe-garamond-pro,'Zen Old Mincho', serif;
  width: 25rem;
  background-color: #fff;
  margin-left: auto;
  text-align: center;
  margin-top: 0.4rem;
  border-radius: 0.2rem;
  cursor: pointer;
}
.l-humbList__btn a,
.l-humbList__btn .btn {
  display: block;
  color: #000 !important;
  position: relative;
  padding-top: 2vh;
  padding-bottom: 1.5vh;
}

/*
arrow
*/

.l-humbList__btn.link a:before,
.l-humbList__btn.link .btn:before {
  content:"";
  position: absolute;
  width: 1.35rem;
  height: 1.3rem;
  background-image: url(../../../assets/img/common/arrowLink.svg);
  background-size: cover;
  top: 50%;
  right: 3.1rem;
  opacity: 1;
  transform: translateY(-50%);
  transition: all ease .35s;
  transition-delay: 0.1s;
}
.l-humbList__btn.link a:after,
.l-humbList__btn.link .btn:after {
  content:"";
  position: absolute;
  width: 1.15rem;
  height: 1.1rem;
  background-image: url(../../../assets/img/common/arrowLink.svg);
  background-size: cover;
  top: 57%;
  right: 3.5rem;
  transform: translateY(-50%);
  opacity: 0;
  transition: all ease .35s;
  transition-delay: 0.1s;
}

/*
hover
*/

.l-humbList__btn.link a:hover:before,
.l-humbList__btn.link .btn:hover:before {
  top: 43%;
  right: 2.5rem;
  opacity: 0;
  transition-delay: 0s;
}
.l-humbList__btn.link a:hover:after,
.l-humbList__btn.link .btn:hover:after {
  top: 50%;
  right: 3.1rem;
  opacity: 0.8;
  transition-delay: 0.1s;
}


/* hor */

.l-humbSect__box.hor .l-humbList__btn {
  margin-left: -0.5rem;
  margin-top: 2.8vh;
  width: 29rem;
}


/* nav */

.l-humbSect__box.nav .l-humbList__btn {
  width: 96%;
}
.l-humbSect__box.nav .l-humbList__btn a {
  padding-top: 1.3rem;
  padding-bottom: 0.8rem;
}


/* ------ image ------- */

.l-humbList__image {
  width: 100%;
  height: 23.4vh;
  overflow: hidden;
}
.l-humbList__image figure {
  height: 100%;
  width: 100%;
  overflow: hidden;
  transition: all ease 1s;
}
.l-humbList__image figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  object-position: center center;
  opacity: 1;
  transform: scale(1.4);
  transition: 2.85s all ease;
  transition-delay: 1.8s;
}

/*
active
*/

section.l-humbSect.active .l-humbList__image figure img {
  transform: scale(1);
  transition-delay: 0s;
}
.l-humbList__image.fadeInUp  figure img {
  transform: scale(1);
  transition-delay: 0s;
}

/*
hover
*/

.l-humbList__ver a:hover .l-humbList__image figure,
.l-humbList__hor a:hover .l-humbList__image figure  {
  transform: scale(1.05);
}

/* hor */

.l-humbList__hor .l-humbList__image {
  height: 30.6vh;
  overflow: initial;
}

/*
sect
*/

.sect .l-humbList__hor .l-humbList__image {
  height: 33.5vh;
  overflow: initial;
}

/* ------ book ------- */

.l-humbList__image .df-popup-thumb {
  margin:initial !important;
  width: 100%;
}
.l-humbList__image .df-popup-thumb .df-book-cover {
  position: relative;
}
.l-humbList__image .df-popup-thumb .df-book-cover:before {
  content:"";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  background-color: rgba(0,0,0,0.2);
  z-index: 12;
  transition: all ease .5s;
}
.l-humbList__image .df-popup-thumb .df-book-cover:after {
  content: "";
  position: absolute;
  background-image: url(../../../assets/img/common/readbook.svg);
  background-size: cover;
  width: 14.3rem;
  height: 7.9rem;
  top: 49%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 14;
}

.l-humbList__image .df-popup-thumb .df-book-title {
  display: none !important;
}


/* ------ contact ------- */

/* base */

input:-webkit-autofill {
  box-shadow: 0 0 0 1000px white inset;
}

.formBox + .formBox {
  margin-top: 1.9vh;
}
.formBox:before {
  content:"";
  font-family: adobe-garamond-pro,'Zen Old Mincho', serif;
  font-size: 1.55vh;
  letter-spacing: 0.05em;
  margin-bottom: 1.35vh;
  display: block;
}

.formBox:nth-child(2):before { 
  content:"Name :";
}
.formBox:nth-child(3):before { 
  content:"E-mail :";
}
.formBox:nth-child(4):before { 
  content:"Tel :";
}
.formBox:nth-child(5):before { 
  content:"Message :";
}

/* form */

.l-humbSect__box.contact input {
  font-size: 1.7vh;
  font-family: adobe-garamond-pro,'Zen Old Mincho', serif;
  width: 100%;
  line-height: 2.7;
  border: none;
  color: #000;
  box-sizing: border-box;
  border: 1px solid #fff;
  transition: all ease .35s;
}
.l-humbSect__box.contact input:focus {
  border: 1px solid #ccc;
  background-color: #f6f6f6;
  outline: none;
}

.l-humbSect__box.contact input.wpcf7-not-valid {
  border: 1px solid rgb(222, 143, 143);
}

.l-humbSect__box .wpcf7-not-valid-tip {
  display: none;
}

/* area */

.l-humbSect__box.contact textarea {
  font-size: 1.7vh;
  font-family: adobe-garamond-pro,'Zen Old Mincho', serif;
  resize: none; 
  height: 33vh;
  width: 100%;
  border: none;
  color: #000;
  box-sizing: border-box;
  border: 1px solid #fff;
  transition: all ease .35s;
}
.l-humbSect__box.contact textarea:focus {
  border: 1px solid #ccc;
  background-color: #f6f6f6;
  outline: none;
}

.l-humbSect__box.contact textarea.wpcf7-not-valid {
  border: 1px solid rgb(222, 143, 143);
}

/* btn */

.l-humbSect__box.contact .formBtn {
  margin-top: 1.6vh;
  position: relative;
}
.l-humbSect__box.contact .formBtn input {
  font-size: 1.45vh;
  letter-spacing: 0.08em;
  line-height: 3.6;
  padding: initial;
  border: initial;
  padding-top: 0.4vh;
  border-radius: 5rem;
  width: 101%;
  margin-left: -0.5%;
}
.l-humbSect__box.contact .formBtn input:hover {
  background-color: #e0e0e0;
}

/* loading */

body .wpcf7-spinner {
  margin:initial;
  opacity: 1;
  margin-top: 1rem;
  background-color: #fff;
  width: 21px;
  height: 21px;
  position: absolute;
  right: 0.2rem;
  bottom: -3.4rem;
}
body .wpcf7-spinner::before {
  background-color: #ccc;
  transform-origin: 7px 7px;
  top: 3px;
  left: 3px;
}

/* message */

.l-humbSect__box .wpcf7-response-output {
  font-family: adobe-garamond-pro,'Zen Old Mincho', serif;
  border: initial !important;
  padding:initial !important;
  margin:initial !important;
  margin-top: 1.5rem !important;
}


/* 
><><><><><><><><><><><><><><><><><><><>

  ▼ Header

><><><><><><><><><><><><><><><><><><><>

/* --------------------------- 
  ■ Common
--------------------------- */

/* ------ common ------- */

header.l-header {
  width: 5.9rem;
  height: 100vh;
  height: 100svh;
  position: fixed;
  top: 0;
  left: -5.9rem;
  background: #ffffffab;
  backdrop-filter: blur(3px);
  z-index: 2;
  transition: all ease .5s;
}
header.l-header > .inner {
  position: relative;
  height: 100%;
  width: 100%;
}

/*
remove
*/

body.headActive header.l-header {
  transition: all ease .5s;
  left: 0rem;
}

/*
bgColor
*/

body.bgColor header.l-header {
  background-color: #b5b2b2;
}

/*
contact
*/

body.contact header.l-header {
  content-visibility:hidden;
  visibility: hidden;
}


/* --------------------------- 
  ■ btn
--------------------------- */

.l-header__btn {
  position: absolute;
  top:46.6%;
  left: 48%;
  transform: translate(-50%,-50%);
  width: 0.8rem;
  height: 4.8rem;
  cursor: pointer;
}

.l-header__btn span:nth-child(1),
.l-header__btn span:nth-child(2) {
  position: absolute;
  bottom: 0rem;
  content: '';
  width: 1px;
  height: 100%;
  background-color: #000;
  transform: scale(1, 1);
  transform-origin: right top;
  transition: -webkit-transform 0.4s cubic-bezier(0.08, 0.92, 0.35, 1);
  transition: transform 0.4s cubic-bezier(0.08, 0.92, 0.35, 1);
  transition: transform 0.4s cubic-bezier(0.08, 0.92, 0.35, 1),
  -webkit-transform 0.4s cubic-bezier(0.08, 0.92, 0.35, 1);
  transition-delay: 0s;
}
.l-header__btn:hover span:nth-child(1) {
  transform-origin: right top;
  transform: scale(1, 0);
}
.l-header__btn:hover span:nth-child(2) {
  transform-origin: right top;
  transform: scale(1, 0);
  transition-delay: 0.1s;
}

.l-header__btn span:nth-child(3),
.l-header__btn span:nth-child(4) {
  position: absolute;
  bottom: 0rem;
  content: '';
  width: 1px;
  height: 100%;
  background-color: #000;
  transform: scale(1, 0);
  transform-origin: right bottom;
  transition: -webkit-transform 0.4s cubic-bezier(0.08, 0.92, 0.35, 1);
  transition: transform 0.4s cubic-bezier(0.08, 0.92, 0.35, 1);
  transition: transform 0.4s cubic-bezier(0.08, 0.92, 0.35, 1),
  -webkit-transform 0.4s cubic-bezier(0.08, 0.92, 0.35, 1);
  transition-delay: 0.1s;
}
.l-header__btn:hover span:nth-child(3) {
  transform: scale(1, 1);
  transition-delay: 0.3s;
}
.l-header__btn:hover span:nth-child(4) {
  transform: scale(1, 1);
  transition-delay: 0.4s;
}

.l-header__btn span:nth-child(1),
.l-header__btn span:nth-child(3) {
  left: 0;
}
.l-header__btn span:nth-child(2),
.l-header__btn span:nth-child(4) {
  right: 0;
}

/*
bgColor
*/

body.bgColor .l-header__btn span:nth-child(1),
body.bgColor .l-header__btn span:nth-child(2) {
  background-color: #fff;
}
body.bgColor .l-header__btn span:nth-child(3),
body.bgColor .l-header__btn span:nth-child(4) {
  background-color: #fff;
}



/* 
><><><><><><><><><><><><><><><><><><><>

  ▼ Main

><><><><><><><><><><><><><><><><><><><>

/* --------------------------- 
  ■ Common
--------------------------- */

.area-scroll {
  white-space: nowrap;
}
.area-scroll main {
  display: flex;
}


/* 
><><><><><><><><><><><><><><><><><><><>

  ▼ Footer

><><><><><><><><><><><><><><><><><><><>

/* --------------------------- 
  ■ Common
--------------------------- */

footer.l-footer {
  width: calc(100vw - 5.4rem);
  display: flex;
  align-items: center;
  justify-content: center;
  color:#fff;
  box-sizing: border-box;
  border-right: 0.7rem solid #fff;
  position: relative;
}
footer.l-footer a {
  color:#fff;
}

footer.l-footer > .inner {
  display: flex;
  width: 72%;
  height: 63vh;
  position: relative;
  z-index: 1;
}
footer.l-footer .left {
  width: 56%;
}
footer.l-footer .right {
  width: 43%;
}

footer.l-footer:before {
  content:"";
  position: absolute;
  background: rgba(0,0,0,0.3);
  width: 100%;
  height: 98%;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

/*
contact
*/

body.contact footer.l-footer {
  color:#000;
  width: 100%;
}
body.contact footer.l-footer a {
  color:#000;
}
body.contact footer.l-footer:before {
  background: rgba(0,0,0,0);
}
body.contact footer.l-footer .left {
  width: 54.3%;
}

body.contact footer.l-footer > .inner {
  margin-left: 8%;
  margin-top: -1%;
  opacity: 0;
  transform: translateY(0.6rem);
  transition: 2.55s all cubic-bezier(.275,0,0,1);
}
body.contact.four footer.l-footer > .inner {
  transform: translateY(0rem);
  opacity: 1;
}


/* --------------------------- 
  ■ title
--------------------------- */

.l-footer_title {
  font-family: minion-3-display, serif;
  font-size: 5.7vh;
  letter-spacing: 0.54em;
  line-height: 1.6;
  text-transform: uppercase;
}
.l-footer_title span {
  display: block;
}

.l-footer_title .blod {
  font-weight: 600;
}
.l-footer_title .normal {
  font-size: 92%;
  font-weight: 400;
}

/* --------------------------- 
  ■ cont
--------------------------- */

/* ------ common ------- */

.l-footer_cont {
  margin-top: 1.3rem;
}

/* ------ desc ------- */

.l-footer_cont .desc {
  font-family: adobe-garamond-pro,'Zen Old Mincho', serif;
  font-size: 1.3rem;
  line-height: 2.2;
  letter-spacing: 0.05em;
  white-space: initial;
}

/* ------ mail ------- */

.l-footer_cont .mail {
  font-family: adobe-garamond-pro, serif;
  margin-top: 2.4rem;
  display: flex;
  align-items: center;
}
.l-footer_cont .mail .sub {
  font-size: 1.3rem;
  letter-spacing: 0.05em;
}
.l-footer_cont .mail a {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  font-style: italic;
  position: relative;
  margin-left: 1.6rem;
  line-height: 1.1;
  margin-top: 0.3rem;
}

/* ------ addresa ------- */

.l-footer_cont address {
  font-family: minion-3-display, serif;
  font-size: 1.425rem;
  line-height: 1.95;
  letter-spacing: 0.065em;
  margin-top: 3.9rem;
}

/* ------ instagram ------- */

.l-footer_cont .insta {
  font-family: adobe-garamond-pro, serif;
  font-size: 1.4rem;
  line-height: 1.9;
  letter-spacing: 0.07em;
  position: relative;
}
.l-footer_cont .insta a {
  padding-left: 2.5rem;
  position: relative;
  line-height: 1;
}
.l-footer_cont .insta a:after {
  content:"";
  position: absolute;
  width: 1.2rem;
  height: 1.2rem;
  background-image: url(../../../assets/img/common/instagram.svg);
  background-size: cover;
  top: 28%;
  left: 0;
  transform: translateY(-50%);
}

/*
margin
*/

.l-footer_cont .insta:before {
  content: "";
  display: block;
  width: 1.1rem;
  border-top: 1px solid rgba(255,255,255,0.4);
  margin-top: 2.9rem;
  margin-bottom: 3.1rem;
}

/*
contact
*/

body.contact .l-footer_cont .insta a:after {
  background-image: url(../../../assets/img/common/instagram_bl.svg);
}
body.contact .l-footer_cont .insta:before {
  border-top: 1px solid rgba(0,0,0,0.1);
}

/* ------ tel ------- */

.l-footer_cont .tel {
  font-family: adobe-garamond-pro,'Zen Old Mincho', serif;
  margin-top: 0.2rem;
  display: flex;
  align-items: center;
}
.l-footer_cont .tel .sub {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  text-transform: lowercase;
}
.l-footer_cont .tel a {
  font-size: 1.45rem;
  letter-spacing: 0.075em;
  line-height: 0.9;
  font-style: italic;
  margin-top: 0.5rem;
  margin-left: 0.7rem;
}


/* ------ btn ------- */

.l-footer_cont .btn {
  width: 40.4rem;
  margin-top: 6.2rem;
}
.l-footer_cont .btn {
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  line-height: 1.1;
  font-family: adobe-garamond-pro,'Zen Old Mincho', serif;
  font-style: italic;
  display: block;
  width: 100%;
  padding: 2.6rem 0 2.3rem;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255,255,255,0.2);
  text-align: center;
  position: relative;
  cursor: pointer;
}


/* 
=======================================


// ● Section  //


/* 
><><><><><><><><><><><><><><><><><><><>

  ▼ fv

><><><><><><><><><><><><><><><><><><><>

/* --------------------------- 
  ■ section
--------------------------- */

/* ------ common ------- */

section.l-fv {
  z-index: 1;
  position: relative;
  width: 84vw;
  height: 100vh;
  height: 100svh;
  white-space: nowrap;
}
section.l-fv > .inner {
  height: 100%;
  position: relative;
}
section.l-fv:before {
  content:"";
  position: absolute;
  left: 0;
  width: 0%;
  height: 100%;
  top: 0%;
  background-color: #fff;
  transition: 1.85s all cubic-bezier(.275,0,0,1);
  z-index: 0;
}

/*
loading
*/

body.three section.l-fv:before {
  width: 100%;
}
body.normal section.l-fv:before {
  width: 100%;
}

/*
margin
*/

.l-mvArea + section.l-fv {
  width: 84vw;
  padding-left: 1.6rem;
  padding-right: 10rem;
}

/*
bgColor
*/

body {
  transition: 1.85s all cubic-bezier(.275,0,0,1);
}
body.bgColor {
  background-color: #FAFAFA;
} 

/*
service
*/

section.l-fv.service {
  color:#fff;
  padding-right: 13.7vh;
}
section.l-fv.service:before {
  background-color: rgba(0,0,0,0.3);
  height: 98.4%;
  top: 0.8%;
}

/*
field
*/

section.l-fv.field:before {
  background-color: rgba(0,0,0,0.4);
}


/*
info
*/

section.l-fv.info {
  width: 96vw;
}
section.l-fv.info:before {
  background-color: #efefef;
}

/*
archive
*/

body.archive section.l-fv {
  width: 86vw;
}

/*
single
*/

section.l-fv.single > .inner {
  display: flex;
  align-items: center;
}

/*
news
*/

body.news section.l-fv {
  width: 125vw;
}
body.news section.l-fv > .inner{
  display: flex;
  align-items: center;
}
body.news section.l-fv:before {
  transition: 2.75s all cubic-bezier(.275,0,0,1);
}

/*
contact
*/

body.contact section.l-fv {
  width: initial;
}

/* ------ movSlider ------- */

.movSlider,
.movSlider .slick-list,
.movSlider .slick-track {
  width: 100%;
  height: 100%;
}



/* --------------------------- 
  ■ l-fv__head
--------------------------- */

/* ------ common ------- */

.l-fv__head {
  position: absolute;
  height: 100%;
  top: 0;
  opacity: 1;
  transition: all ease .35s;
}

/*
scroll
*/

html.has-scroll-scrolling body.headActive .l-fv__head {
  opacity: 0;
}

/* ------ logo ------- */

.l-fv__logo {
  position: relative;
  margin-top: 3.8rem;
  margin-left: 3.8rem;
  width: 7.2rem;
  height: 7.2rem;
  border-radius: 100%;
  transform: translateY(0.6rem);
  opacity: 0;
  z-index: 5;
  pointer-events: visible;
  cursor: pointer;
  transition: 2.55s all cubic-bezier(.275,0,0,1);
}
.l-fv__logo:before {
  content: "";
  position: absolute;
  width: 95%;
  height: 95%;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.l-fv__logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 9;
}

.l-fv__logo img {
  width: 100%;
  margin-top: 0rem;
  opacity: 0.185;
}

/*
loading
*/

body.four .l-fv__logo {
  transform: translateY(0rem);
  opacity: 1;
}

/* ------ btn ------- */

.l-fv__btn {
  position: absolute;
  bottom: 4.7rem;
  left: 4.8rem;
  width: 0.8rem;
  height: 4.6rem;
  cursor: pointer;
  z-index: 1;
  opacity: 0;
  transition: all ease 1s;
}

.l-fv__btn span:nth-child(1),
.l-fv__btn span:nth-child(2) {
  position: absolute;
  bottom: 0rem;
  content: '';
  width: 1px;
  height: 100%;
  background-color: #000;
  transform: scale(1, 1);
  transform-origin: right top;
  transition: -webkit-transform 0.4s cubic-bezier(0.08, 0.92, 0.35, 1);
  transition: transform 0.4s cubic-bezier(0.08, 0.92, 0.35, 1);
  transition: transform 0.4s cubic-bezier(0.08, 0.92, 0.35, 1),
  -webkit-transform 0.4s cubic-bezier(0.08, 0.92, 0.35, 1);
  transition-delay: 0s;
}
.l-fv__btn:hover span:nth-child(1) {
  transform-origin: right top;
  transform: scale(1, 0);
}
.l-fv__btn:hover span:nth-child(2) {
  transform-origin: right top;
  transform: scale(1, 0);
  transition-delay: 0.1s;
}

.l-fv__btn span:nth-child(3),
.l-fv__btn span:nth-child(4) {
  position: absolute;
  bottom: 0rem;
  content: '';
  width: 1px;
  height: 100%;
  background-color: #000;
  transform: scale(1, 0);
  transform-origin: right bottom;
  transition: -webkit-transform 0.4s cubic-bezier(0.08, 0.92, 0.35, 1);
  transition: transform 0.4s cubic-bezier(0.08, 0.92, 0.35, 1);
  transition: transform 0.4s cubic-bezier(0.08, 0.92, 0.35, 1),
  -webkit-transform 0.4s cubic-bezier(0.08, 0.92, 0.35, 1);
  transition-delay: 0.1s;
}
.l-fv__btn:hover span:nth-child(3) {
  transform: scale(1, 1);
  transition-delay: 0.3s;
}
.l-fv__btn:hover span:nth-child(4) {
  transform: scale(1, 1);
  transition-delay: 0.4s;
}

.l-fv__btn span:nth-child(1),
.l-fv__btn span:nth-child(3) {
  left: 0;
}
.l-fv__btn span:nth-child(2),
.l-fv__btn span:nth-child(4) {
  right: 0;
}


/*
loading
*/

body.three .l-fv__btn {
  opacity: 1;
}

.l-fv__btn span:nth-child(1):before,
.l-fv__btn span:nth-child(2):before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background: #fff;
  display: block;
  left: 0;
  z-index: 1;
  transition: all 2s cubic-bezier(0.08, 0.92, 0.35, 1);
}


body.two .l-fv__btn span:nth-child(1):before {
  height: 0%;
}
body.two .l-fv__btn span:nth-child(2):before {
  height: 0%;
  transition-delay: 0.1s;
}


/* --------------------------- 
  ■ l-fv__cont
--------------------------- */

/* ------ common ------- */

.l-fv__cont {
  height: 100%;
  display: flex;
  align-items: center;
}
.l-fv__cont > .inner {
  width: 64%;
  display: flex;
  flex-flow: column;
  margin-top: -1.3rem;
  margin-left: 22.5rem;
}

/*
service
*/

section.l-fv.service .l-fv__cont > .inner {
  width: 70%;
}

/*
single
*/

section.l-fv.single .l-fv__cont > .inner {
  width: 55vw;
  margin-left: 23.7rem;
}

/*
arrow
*/

section.l-fv.arrow .l-fv__cont > .inner {
  height: 69vh;
}

/* ------ copy ------- */

.l-fv__copy .title {
  font-family: minion-3-display, serif;
  font-size: 6.7vh;
  letter-spacing: 0.55em;
  line-height: 1.65;
  text-transform: uppercase;
  display: inline-block;
}
.l-fv__copy .title span {
  display: block;
}

.l-fv__copy .title .blod {
  font-weight: 600;
}
.l-fv__copy .title .normal {
  font-size: 92%;
  font-weight: 400;
  margin-left: 0em;
  transition-delay: 0.4s;
}

/*
top
*/

body.top section.l-fv.firsrt .l-fv__copy .title .normal {
  margin-left: 0em;
}

/*
graphic
*/

body.graphic section.l-fv.firsrt .l-fv__copy .title {
    letter-spacing: 0.535em;
}

/*
philosophy
*/

body.philosophy .l-fv__copy .title {
  font-size: 4.7rem;
  letter-spacing: 0.52em;  
}

/*
about
*/

body.about .l-fv__copy .title .normal {
  margin-left: initial;
}

/*
single
*/

section.l-fv.single .l-fv__copy .title {
  font-size: 4.75rem;
  line-height: 1.55;
}
body.single .l-fv__copy .title .normal {
  margin-left: initial;
}
body.single .l-fv__copy .eng {
  margin-left: initial;
}


/*
arrow
*/

section.l-fv.arrow .l-fv__copy .title {
  font-size: 6.6vh;
}
section.l-fv.arrow .l-fv__copy .title .normal {
  margin-left: initial;
}


/* eng */

.l-fv__copy .eng {
  font-size: 1.45rem;
  font-family: adobe-garamond-pro, serif;
  letter-spacing: 0.07em;
  font-weight: 400;
  margin-top: 2.1rem;
  margin-left: 5.8rem;
  color: #bfbab6;
  transition-delay: 0.5s;
}

/* jpn */

.l-fv__copy .jpn {
  font-size: 1.1rem;
  font-family: 'Zen Old Mincho', serif;
  letter-spacing: 0.2em;
  font-weight: 400;
  margin-top: 1.5rem;
  color: rgba(0, 0, 0, 0.1);
  text-shadow: 2px 2px 2px #eee, 0 0 #a9a7a2;
  transition-delay: 0.5s;
}


/*
loading
*/

section.l-fv.firsrt .l-fv__copy .title span {
  transform: translateY(0.6rem);
  opacity: 0;
  transition: 2.55s all cubic-bezier(.275,0,0,1);
}
section.l-fv.firsrt .l-fv__copy .title .blod {
  transition-delay: 0.4s;
}
section.l-fv.firsrt .l-fv__copy .title .normal {
  transition-delay: 0.8s;
}

body.four section.l-fv.firsrt .l-fv__copy .title span {
  transform: translateY(0rem);
  opacity: 1;
}

section.l-fv.firsrt .l-fv__copy .eng,
section.l-fv.firsrt .l-fv__copy .jpn {
  transform: translateY(0.6rem);
  opacity: 0;
  transition: 2.55s all cubic-bezier(.275,0,0,1);
  transition-delay: 1.2s;
}
body.four section.l-fv.firsrt .l-fv__copy .eng,
body.four section.l-fv.firsrt .l-fv__copy .jpn {
  transform: translateY(0rem);
  opacity: 1;
}


/*
bgColor
*/

section.l-fv.service .l-fv__copy .title {

}

/*
info
*/

section.l-fv.info .l-fv__copy .title {
  color: rgba(0, 0, 0, 0.3);
  text-shadow: 2px 2px 2px #eee, 0 0 #a9a7a2;
}

/*
design
*/

section.l-fv.design .l-fv__copy .title {
  display: inline-block;
}
section.l-fv.design .l-fv__copy .title .normal {
  margin-left: initial;
}

/* ------ policy ------- */

.l-fv__copy .titlePolicy {
  font-family: minion-3-display, serif;
  transform: translateY(0.6rem);
  opacity: 0;
  transition: 2.55s all cubic-bezier(.275,0,0,1);
  transition-delay: 0.6s;
}
.l-fv__copy .titlePolicy .b {
  font-weight: 600;
}
.l-fv__copy .titlePolicy .n {
  font-weight: 500;
}
.l-fv__copy .titlePolicy .eg {
  font-size: 3.85rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  display: block;
}
.l-fv__copy .titlePolicy .jp {
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  font-family: adobe-garamond-pro,'Zen Old Mincho', serif;
  color: #c2c2c2;
  margin-top: 1.7rem;
  display: block;
}

/*
active
*/

body.four .l-fv__copy .titlePolicy {
  transform: translateY(0rem);
  opacity: 1;
}


/* ------ desc ------- */

.l-fv__desc {  
  font-family: adobe-garamond-pro, serif;
  font-size: 1.35rem;
  color: #c2c2c2;
  line-height: 2.35;
  letter-spacing: 0.03em;
  white-space: initial;
  margin-left: auto;
  width: 50%;
  margin-top: 24.5vh;
  margin-right: 0rem;
}
.l-fv__desc.jpn {
  line-height: 2.55;
  letter-spacing: 0.04em;
  font-family: adobe-garamond-pro,'Zen Old Mincho', serif;
  margin-top: 16.5rem;
  color: rgba(0, 0, 0, 0.3);
  text-shadow: 2px 2px 2px #eee, 0 0 #a9a7a2;
}

/*
service
*/

section.l-fv.service .l-fv__desc {
  margin-top: 39.1vh;
  color: rgba(255,255,255,0.7);
}

/*
news
*/

section.l-fv.news .l-fv__desc {
  height: 8rem;
}


/*
loading
*/

section.l-fv.firsrt .l-fv__desc {
  transform: translateY(0.6rem);
  opacity: 0;
  transition: 2.55s all cubic-bezier(.275,0,0,1);
  transition-delay: 1.2s;
}
body.four section.l-fv.firsrt .l-fv__desc {
  transform: translateY(0rem);
  opacity: 1;
}

/*
bgColor
*/

section.l-fv.service .l-fv__desc {
  /*color: rgba(0, 0, 0, 0.12);
  text-shadow: 2px 2px 2px #eee, 0 0 #a9a7a2;*/
}

/* ------ info ------- */

.l-fv__info {
  margin-top: 12rem;
  font-family: adobe-garamond-pro, serif;
  margin-left: auto;
  text-align: right;
}
.l-fv__info ul li + li {
  margin-top: 3rem;
}

/* list */

.l-fv__info ul li span {
  display: block;
}
.l-fv__info ul li .sub {
  font-size: 1.3rem;
  letter-spacing: 0.3em;
  color: #939393;
  text-transform: lowercase;
  font-variant: small-caps;
}
.l-fv__info ul li .txt {
  font-size: 1.35rem;
  letter-spacing: 0.05em;
  margin-top: 0.8rem;
  line-height: 2.1;
  text-transform: capitalize;
}

/*
loading
*/

section.l-fv.firsrt .l-fv__info {
  transform: translateY(0.6rem);
  opacity: 0;
  transition: 2.55s all cubic-bezier(.275,0,0,1);
  transition-delay: 1.6s;
}
body.four section.l-fv.firsrt .l-fv__info {
  transform: translateY(0rem);
  opacity: 1;
}

/* ------ arrow ------- */

.l-fv__arrow {
  cursor: pointer;
  margin-top: auto;
  margin-left: auto;
}

/* --------------------------- 
  ■ l-fv__image
--------------------------- */

/* ------ common ------- */

.l-fv__image {
  height: 86%;
  width: 70vw;
  margin-left: 21rem;
}
.l-fv__image figure {
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.l-fv__image figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  object-position: center center;
  opacity: 0;
  transform: scale(1.1);
  transition: 2.85s all ease;
  transition-delay: 0.5s;
}

/*
loading
*/

body.two .l-fv__image figure img {
  opacity: 1;
  transform: scale(1);
}


/* 
><><><><><><><><><><><><><><><><><><><>

  ▼ mv

><><><><><><><><><><><><><><><><><><><>

/* --------------------------- 
  ■ l-mv
--------------------------- */

/* ------ common ------- */

section.l-mv {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 50%;
  transform: translate(-50%,-50%);
  left: 50%;
  overflow: hidden;
  z-index: -1;
  transition: all ease 2s;
}
section.l-mv > .image {
  position: fixed;
  background-position: center center;
  background-size: cover;
  height: 100%;
  width: 100%;
  transition: 1.95s all ease;
}
section.l-mv > .image figure {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
section.l-mv > .image figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  object-position: center center;
  opacity: 1;
  transform: scale(1.1);
  transition: 3.85s all ease;
}



section.l-mv video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  font-family: 'object-fit: cover;';
}


/*
loading
*/

body.one section.l-mv > .image figure img {
  transform: scale(1);
}

body.two section.l-mv {
  height: 97.6%;
}



/* --------------------------- 
  ■ l-mvArea
--------------------------- */

/* ------ common ------- */

section.l-mvArea {
  width: 87vw;
  white-space: nowrap;
}

/*
gray
*/

section.l-mvArea.gray {
  border-right: 1rem solid #fff;
}


/* 
><><><><><><><><><><><><><><><><><><><>

  ▼ Intro

><><><><><><><><><><><><><><><><><><><>

/* --------------------------- 
  ■ common
--------------------------- */

section.l-intro {
  display: flex;
  align-items: center;
  height: 100vh;
  height: 100svh;
  background: #fff;
  position: relative;
  z-index: 1;
  transition: 1.85s all ease;
}
section.l-intro > .inner {
  display: flex;
  padding-left: 43vh;
  padding-right: 38vh;
  margin-top: -3vh;
  align-items: center;
}

/*
single
*/

section.l-fv.single + section.l-intro > .inner {
  padding-left: 32rem;
  padding-right: 28rem;
}

/*
color
*/

section.l-intro.bgColor {
  background-color: #d1cec7;
}


/* --------------------------- 
  ■ copy
--------------------------- */

.l-intro__copy {
  display: flex;
  flex-flow: column;
  margin-top:initial;
  margin-top: -0.8rem;
}

/* jpn */

.l-intro__copy .jpn {
  font-family: 'Zen Old Mincho', serif;
  font-size: 3.3vh;
  letter-spacing: 0.08em;
}

/* eng */

.l-intro__copy .eng {
  position: relative;
  display: block;
  font-size: 1.75vh;
  font-family: adobe-garamond-pro, serif;
  letter-spacing: 0.05em;
  color: #bfbab6;
  margin-left: auto;
  margin-right: 1.2rem;
  margin-top: 2.25vh;
  transition-delay: 0.2s;
}


/* --------------------------- 
  ■ desc
--------------------------- */

/* ------ common ------- */

.l-intro__desc {
  margin-left: 24rem;
  display: flex;
}

/* ------ txt ------- */

.l-intro__desc .txt {
  font-family: 'Zen Old Mincho', serif;
  font-size: 1.85vh;
  line-height: 3.1;
  letter-spacing: 0.05em;
  width: 61vh;
  white-space: initial;
}
.l-intro__desc .txt + .txt {
  margin-left: 13vh;
}

.l-intro__desc .txt br.pc {
  display: none;
}
.l-intro__desc .txt br.sp {
  display: block;
}

/*
case
*/

body.single .l-intro__desc .txt {
  width: 40rem;
}
body.single .l-intro__desc .txt + .txt {
  margin-left: 12rem;
}


/*
color
*/

section.l-intro.bgColor .l-intro__desc .txt {
  color:#fff;
}

/* --------------------------- 
  ■ Mov & Video
--------------------------- */

/* ------ Mov ------- */

.l-introMov {
  width: 115vh;
  height: 78vh;
  margin-left: 36vh;
  cursor: pointer;
  position: relative;
}
.l-introMov:before {
  content: "";
  position: absolute;
  width: 98.4%;
  height: 97.6%;
  border: 0px solid rgba(255,255,255,0.5);
  z-index: 1;
  left: 50%;
  top: 50%;
  display: block;
  transform: translate(-50%,-50%);
}

.l-introMov figure {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.l-introMov figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  font-family: 'object-fit: cover;';
  transition: all ease 1s;
}
.l-introMov:hover figure img {
  transform: scale(1.05);
}

/* arrow */

.l-introMov figure:before {
  content: "";
  background-image: url(../../../assets/img/mov/play.svg);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background-size: cover;
  background-position: center center;
  width: 7.6rem;
  height: 7.6rem;
  transition: all 1s ease;
  transition-delay: 0s;
  z-index: 1;
  opacity: 0.7;
}
.l-introMov:hover figure:before {
  opacity: 0.6;
}

.l-introMov figure:after {
  content: "";
  position: absolute;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  transition: all 1s ease;
  background-color: rgba(0,0,0,0.25);
  z-index: 0;
}
.l-introMov:hover figure:after {
  background-color: rgba(0,0,0,0.2);
}

.l-introMov.semi figure:before {
  display: none;
}

/* ------ Video ------- */

.l-introVideo {
  position: fixed;
  cursor: crosshair;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  background: rgba(0,0,0,0.8);
  visibility: hidden;
  opacity: 0;
  transition: all ease .5s;
}
.l-introVideo video {
  position: absolute;
  height: 87vh;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

/*
active
*/

body.movStart .l-introVideo {
  visibility: visible;
  opacity: 1;
}

/* --- close --- */

.l-introVideo__close {
  position: fixed;
  width: 3rem;
  height: 3rem;
  z-index: 9;
  top: 1.8rem;
  right: 1.8rem;
  cursor: pointer;
}
.l-introVideo__close > .inner {
  width: 100%;
  height: 100%;
  position: absolute;
}
.l-introVideo__close span {
  top: 1.3rem;
  position: absolute;
  display: inline-block;
  height: 1px;
  width: 100%;
  background-color: #fff;
  left: 0;
  transition: all ease .25s;
  transition: .6s all cubic-bezier(.275,0,0,1);
}

/*
active
*/

body.movStart .l-introVideo__close span:nth-child(1) {
  transform: rotate(-30deg);
}
body.movStart .l-introVideo__close span:nth-child(2) {
  transform: rotate(30deg);
}

/*
hover
*/

body.movStart .l-introVideo__close:hover span:nth-child(1) {
  transform: rotate(-25deg);
}
body.movStart .l-introVideo__close:hover span:nth-child(2) {
  transform: rotate(25deg);
}

/* ------ semiOrder ------- */

/* title */

.l-introMov.semi .l-fv__copy {
  position: absolute;
  z-index: 1;
  top: 8.5rem;
  left: 10rem;
}
.l-introMov.semi .l-fv__copy .title {
  font-size: 3.4rem;
  color: #fff;
}


/* 
><><><><><><><><><><><><><><><><><><><>

  ▼ sectList

><><><><><><><><><><><><><><><><><><><>

/* --------------------------- 
  ■ common
--------------------------- */

.l-sectList {
  display: flex;
  align-items: center;
  background: #fff;
  margin-left: -0.1rem;
  padding-left: 0.1rem;
  padding-right: 12rem;
  transition: 1.85s all ease;
}
.l-sectList > .inner {
  height: 90%;
  display: flex;
  align-items: center;
  transition: 1.85s all ease;
}
.l-sectList ul {
  display: flex;
  align-items: center;
  height: 100%;
  margin-left: 6.5rem;
}
.l-sectList.bgColor img  {
  transition: 1.85s all cubic-bezier(.275,0,0,1);
}

/*
loading
*/

body.normal .l-sectList > .inner {
  opacity: 0;
  transition-delay: .5s;
}
body.two.normal .l-sectList > .inner {
  opacity: 1;
}

/*
bgColor
*/

.l-sectList.bgColor {
  background-color: #d1cec7;
}
.l-sectList.bgColor > .inner {
}
.l-sectList.bgColor img {
  filter: grayscale(1);
}

/*
archive
*/

body.two.archive.caseColor .l-sectList {
  background: #f8f7f4;
}

body.archive .l-sectList {
  padding-right: initial;
}
body.archive .l-sectList > .inner {
  border-left: 1px solid #eeeeee;
}
body.archive .l-sectList ul {
  margin-left: 0;
}

/*
flow
*/

.l-sectList.flow {
  padding-right: 0rem;
}


/* --------------------------- 
  ■ l-sectList__cont
--------------------------- */

/* ------ common ------- */

li.l-sectList__cont {
  position: relative;
  height: 75vh;
  padding-right: 12.6rem;
  padding-left: 12.6rem;
  width: 85rem;
  display: flex;
  flex-flow: column;
  padding-top: 3.6rem;
  padding-bottom: 4.7rem;
  margin-top: 0.9rem;
}

li.l-sectList__cont > .top {
  display: flex;
}
li.l-sectList__cont > .bottom {
  display: flex;
  margin-top: auto;
  margin-bottom: 0.4rem;
  margin-left: 11.9rem;
}

li.l-sectList__cont + li {
  border-left: 1px solid #f2f2f2;
}

/*
works
*/

section.l-sectList.works li.l-sectList__cont {
  width: 70.4rem;
  padding-left: 17rem;
  padding-right: 21rem;
}

/*
semiorder
*/

section.l-sectList.semiorder li.l-sectList__cont {
  width: 47rem;
  padding-left: 15.4rem;
  padding-right: 16.6rem;
  cursor: pointer;
}
section.l-sectList.semiorder li.l-sectList__cont .image {
  width: 66.4%;
}



/* ------ top ------- */

/* num */

li.l-sectList__cont .num {
  font-size: 1.85rem;
  letter-spacing: 0.05em;
  font-family: athelas, serif;
  color: #b1a57e;
  width: 13rem;
}

/* title */

li.l-sectList__cont .title {
  margin-top: -1.5rem;
  width: initial;
  display: inline-block;
}
li.l-sectList__cont.graphic .title {
/*  text-align: right;*/
}


/*
main
*/

li.l-sectList__cont .title .main {
  font-family: minion-3-display, serif;
  font-size: 5.1vh;
  letter-spacing: 0.55em;
  line-height: 1.6;
  text-transform: uppercase;
}
section.l-sectList.works li.l-sectList__cont .title .main {
  font-size: 3.25rem;
}

li.l-sectList__cont .title .main span {
  display: block;
}

li.l-sectList__cont .title .main .blod {
  font-weight: 600;
  transition-delay: 0.2s;
}
li.l-sectList__cont .title .main .normal {
  font-size: 92%;
  font-weight: 400;
  margin-top: -0.3rem;
/*  margin-left: 0.7em;*/
  transition-delay: 0.3s;
}

section.l-sectList.works li.l-sectList__cont .title .main .normal {
  margin-left: 0;
}
section.l-sectList.case li.l-sectList__cont .title .main .normal {
  margin-left: 0;
}

/*
color
*/

.l-sectList.bgColor li.l-sectList__cont .title .main {
  color:#fff;
}

/*
sub
*/

li.l-sectList__cont .title .sub {
  font-size: 1.05rem;
  font-family: 'Zen Old Mincho', serif;
  letter-spacing: 0.15em;
  font-weight: 400;
  margin-top: 1.5rem;
/*  margin-left: 4.8rem;*/
  color: #6b6b6b;
  transition-delay: 0.5s;
}
li.l-sectList__cont.graphic .title .sub {
  margin-left: initial;
}

/*
color
*/

.l-sectList.bgColor li.l-sectList__cont .title .sub {
  color:#fff;
}


/*
cat
*/

li.l-sectList__cont .title .cat {
  font-size: 1rem;
  font-family: minion-3-display, serif;
  font-weight: 400;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  font-variant: small-caps;
  color: #918e8e;
  margin-top: 2.1rem;
  margin-left: 0;
  transition-delay: 0.5s;
}
li.l-sectList__cont .title .cat:before {
  content:"/";
  margin-left: 0.3rem;
  margin-right: 1.1rem;
}


/* ------ bottom ------- */

/* image */

li.l-sectList__cont .image {
  width: 28vh;
  height: 39.8vh;
  border: 1px solid #f0f0f0;
  padding: 0.4rem;
}
li.l-sectList__cont .image a {
  display: block;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
li.l-sectList__cont .image .hidden {
  display: block;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
li.l-sectList__cont .image figure {
  height: 100%;
  width: 100%;
  overflow: hidden;
  transform: scale(1);
  transition: all ease 0.8s
}
li.l-sectList__cont .image figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  object-position: center center;
  transform: scale(1.2);
  filter: grayscale(1);
  transition: all ease 1.5s;
}

li.l-sectList__cont .image.fadeInUp figure img {
  transform: scale(1);
  filter: grayscale(0);
}

/*
works
*/

section.l-sectList.works li.l-sectList__cont .image {
  width: 45%;
  margin-left: auto;
}


/*
hover
*/

li.l-sectList__cont.semiBtn .image:hover figure ,
li.l-sectList__cont .image a:hover figure,
li.l-sectList__cont .image.active figure  {
  transform: scale(1.1);
  filter: grayscale(50%);
}

/* cont */

li.l-sectList__cont .cont {
  width: 36%;
  margin-left: 12.4%;
  margin-top: 3rem;
}
.l-sectList.bgColor li.l-sectList__cont .cont {
  color: #fff;
}

/*
txt
*/

li.l-sectList__cont .txt {
  font-size: 1.25rem;
  font-family: 'Zen Old Mincho', serif;
  line-height: 2.6;
  letter-spacing: 0.03em;
  white-space: initial;
  text-align: justify;
  opacity: 0.7;
}

/*
workflow
*/

section.l-sectList.flow ul {
  margin-left: 1rem;
  margin-right: 5rem;
}
section.l-sectList.flow .top {
  flex-flow: column;
  margin-top: 27vh;
}
section.l-sectList.flow li.l-sectList__cont {
  height: 99vh;
  width: 35vh;
  margin-left: 0vh;
  padding-top: initial;
  padding-bottom: initial;
  padding-right: 13vh;
  padding-left: 14vh;
  margin-top: initial;
}
section.l-sectList.flow li.l-sectList__cont:nth-child(2n+2) {
  background: #f8f8f8;
  transition: 1.85s all ease;
}
section.l-sectList.flow.bgColor li.l-sectList__cont:nth-child(2n+2) {
  background: #d1cec7;
}

section.l-sectList.flow  li.l-sectList__cont > .bottom {
  margin-top: 6.9vh;
  margin-left: initial;
}
section.l-sectList.flow li.l-sectList__cont .cont {
  width: 100%;
  margin-left: initial;
  margin-top: initial;
}

/*
num
*/

section.l-sectList.flow li.l-sectList__cont .num {
  font-size: 2.3vh;
  margin-left: 0.4vh;
  width: 9rem;
}

/*
title
*/

section.l-sectList.flow li.l-sectList__cont .title {
  margin-top: 1.5vh;
}
section.l-sectList.flow li.l-sectList__cont .title .main {
  font-size: 4.2vh;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: capitalize;
  font-variant: small-caps;
}

/*
sub
*/

section.l-sectList.flow li.l-sectList__cont .title .sub {
  font-size: 1.4vh;
  margin-top: 0.6rem;
  margin-left: 0rem;
}

/*
text
*/

section.l-sectList.flow li.l-sectList__cont .txt {
  font-size: 1.45vh;
  line-height: 2.55;
}

/* readmore */

li.l-sectList__cont .btn {
  font-size: 1.5rem;
  font-family: adobe-garamond-pro, serif;
  font-style: italic;
  letter-spacing: 0.15em;
  display: block;
  position: absolute;
  right: 14.3rem;
  bottom: 6.8rem;
}


/* --------------------------- 
  ■ l-sectList_btn
--------------------------- */

/* ------ common ------- */

.l-sectList_btn {
  font-size: 2vh;
  font-family: adobe-garamond-pro, serif;
  font-style: italic;
  letter-spacing: 0.175em;
  transform: rotate(-90deg);
  margin-left: 2.3rem;
  margin-right: 9rem;
}


/* 
><><><><><><><><><><><><><><><><><><><>

  ▼ sectArrow

><><><><><><><><><><><><><><><><><><><>

/* --------------------------- 
  ■ common
--------------------------- */

section.l-sectArrow {
  background: #fff;
  margin-left: -0.1rem;
  padding-left: 0.1rem;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
section.l-sectArrow > .inner {
  height: 90%;
  border-left: 1px solid #f2f2f2;
  display: flex;
  align-items: center;
  padding-left: 35rem;
  padding-right: 35rem;
}

/*
margin
*/

section.l-intro + section.l-sectArrow > .inner {
  border-left: 0px solid #f2f2f2;
  margin-left: -17vh;
  padding-left: 0rem;
  padding-right: 16rem;
}


/* --------------------------- 
  ■ cont
--------------------------- */

/* ------ common ------- */

.l-sectArrow__cont {
  
}
.l-sectArrow__cont a {
  display: flex;
  align-items: center;
}

/* ------ arrow ------- */

.l-sectArrow__cont .arrow {
  display: block;
  width: 8.6rem;
  height: 8.6rem;
  border:0px solid #F0F0F0;
  border-radius: 100%;
  position: relative;
}

/*
CircleBase
*/

.arrow .circleBase {
  fill:transparent;
  stroke:#d7d7d7;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
}

/*
CircleArrow
*/

.arrow .circleArrow {
  fill:transparent;
  stroke:rgba(0,0,0,0);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  transform: translate(-50%, -50%);
}
.arrow .circleArrow circle {
  stroke-dasharray:327;
  stroke-dashoffset:0;
  transition:all .55s ease;
}
.l-sectArrow__cont:hover .circleArrow circle {
  stroke-dashoffset:654;
}
.l-sectArrow__cont:hover .circleArrow  {
  stroke:rgba(0,0,0,0.3);
}

/*
arrow - normal
*/

.l-sectArrow__cont .arrow:before {
  content:"";
  position: absolute;
  width: 1.1rem;
  height: 1.05rem;
  background-image: url(../../../assets/img/common/arrow.svg);
  background-size: cover;
  top: 49%;
  left: 51%;
  opacity: 0.8;
  transform: translate(-50%,-50%) rotate(-45deg);
  transition: all ease .35s;
  transition-delay: 0.1s;
}
.l-sectArrow__cont .arrow:after {
  content:"";
  position: absolute;
  width: 1.1rem;
  height: 1.05rem;
  background-image: url(../../../assets/img/common/arrow.svg);
  background-size: cover;
  top: 49%;
  left: 45%;
  transform: translate(-50%,-50%) rotate(-45deg);
  opacity: 0;
  transition: all ease .35s;
  transition-delay: 0.1s;
}

/*
hover
*/

.l-sectArrow__cont:hover .arrow:before {
  top: 49%;
  left: 57%;
  opacity: 0;
  transition-delay: 0s;
}
.l-sectArrow__cont:hover .arrow:after {
  top: 49%;
  left: 51%;
  opacity: 0.8;
  transition-delay: 0.1s;
}

/*
arrow - blank
*/

.l-sectArrow__cont .arrow.blank:before {
  content:"";
  position: absolute;
  width: 1.65rem;
  height: 1.6rem;
  background-image: url(../../../assets/img/common/arrowLink.svg);
  background-size: cover;
  top: 49%;
  left: 51%;
  opacity: 0.8;
  transform: translate(-50%,-50%);
  transition: all ease .35s;
  transition-delay: 0.1s;
}
.l-sectArrow__cont .arrow.blank:after {
  content:"";
  position: absolute;
  width: 1.65rem;
  height: 1.6rem;
  background-image: url(../../../assets/img/common/arrowLink.svg);
  background-size: cover;
  top: 57%;
  left: 45%;
  transform: translate(-50%,-50%);
  opacity: 0;
  transition: all ease .35s;
  transition-delay: 0.1s;
}

/*
hover
*/

.l-sectArrow__cont:hover .arrow:before {
  top: 43%;
  left: 57%;
  opacity: 0;
  transition-delay: 0s;
}
.l-sectArrow__cont:hover .arrow:after {
  top: 49%;
  left: 51%;
  opacity: 0.8;
  transition-delay: 0.1s;
}

/* ------ cont ------- */

.l-sectArrow__cont .cont {
  margin-left: 4.8rem;
  display: flex;
  flex-flow: column;
}

/* eng */

.l-sectArrow__cont .eng {
  font-family: adobe-garamond-pro, serif;
  font-size: 2.85rem;
  letter-spacing: 0.05em;
  text-transform: capitalize;
  order: 1;
}
.l-sectArrow__cont .eng br {
  display: none;
}


/* jpn */

.l-sectArrow__cont .jpn {
  font-size: 1rem;
  font-family: 'Zen Old Mincho', serif;
  letter-spacing: 0.23em;
  font-weight: 400;
  margin-top: -0.5rem;
  margin-left: 0.1rem;
  opacity: 0.4;
  order: 2;
}

/* engOnly */

.l-sectArrow__cont .engOnly {
  font-size: 1.85rem;
  letter-spacing: 0.125em;
  font-variant: small-caps;
  font-family: minion-3-display, serif;
}


/* 
><><><><><><><><><><><><><><><><><><><>

  ▼ gallery

><><><><><><><><><><><><><><><><><><><>

/* --------------------------- 
  ■ common
--------------------------- */

section.l-gallery {
  height: 100vh;
  height: 100svh;
  position: relative;
  z-index: 1;
  background-color: #fff;
  padding-right: 27rem;
}
section.l-gallery > .inner {
  height: 100%;
}
section.l-gallery ul {
  display: flex;
  align-items: center;
  height: 100%;
}

/* --------------------------- 
  ■ image
--------------------------- */

li.l-gallery__cont {
  height: 98%;
  width: 81vw;
}
li.l-gallery__cont + li.l-gallery__cont {
  margin-left: 1rem;
}

li.l-gallery__cont figure {
  height: 100%;
  width: 100%;
  transform: translateY(0rem);
  overflow: hidden;
}
li.l-gallery__cont figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  object-position: center center;
  transform: scale(1);
  filter: grayscale(1);
  transition: all ease 1.5s;
}
li.l-gallery__cont.fadeInUp figure img {
  transform: scale(1);
  filter: grayscale(0);
}


/* 
><><><><><><><><><><><><><><><><><><><>

  ▼ credit

><><><><><><><><><><><><><><><><><><><>

/* --------------------------- 
  ■ common
--------------------------- */

/* ------ common ------- */

section.l-sectCredit {
  height: 100vh;
  height: 100svh;
  display: flex;
  align-items: center;
  background: #fafafa;
  padding-left: 22rem;
  padding-right: 59rem;
  margin-left: -0.1rem;
}
section.l-sectCredit > .inner {
  height: 66%;
}

/* ------ title ------- */

.l-sectCredit__title {
  font-family: minion-3-display, serif;
  font-size: 3.6rem;
  letter-spacing: 0.75em;
  line-height: 1.65;
  text-transform: uppercase;
}


/* --------------------------- 
  ■ list
--------------------------- */

.l-sectCredit__cont {
  margin-top: 6.4rem;
  display: flex;
}
.l-sectCredit__list {
  transition-delay: 0.4s;
}
.l-sectCredit__list + .l-sectCredit__list {
  margin-left: 12.7rem;
}
.l-sectCredit__list li {
  font-family: adobe-garamond-pro, serif;
  font-weight: 400;
}
.l-sectCredit__list li + li {
  margin-top: 4.2rem;
}


/* part */

.l-sectCredit__list .part {
  font-size: 1rem;
  letter-spacing: 0.07em;
  color: rgba(0, 0, 0, 0.12);
  text-shadow: 2px 2px 2px #eee, 0 0 #a9a7a2;
}
.l-sectCredit__list .role + .role:before {
    content:"/";
}

/* credit */

.l-sectCredit__list .credit {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  margin-top: 1.1rem;
}
.l-sectCredit__list .belong:before {
  content:":";
}


/* 
><><><><><><><><><><><><><><><><><><><>

  ▼ sectInfo

><><><><><><><><><><><><><><><><><><><>

/* --------------------------- 
  ■ common
--------------------------- */

section.l-sectInfo {
  width: 149vh;
  height: 100vh;
  margin-top: 0vh;
  background-color: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.l-sectInfo > .inner {
  width: 75.4%;
  height: 98%;
}


section.l-sectInfo  .l-humbSect__box {
  width: 100%;
}

/*
about
*/

section.l-sectInfo.about {
  width: 188vh;
}
section.l-sectInfo.about > .inner {
  width: 71%;
  height: 76vh;
  display: flex;

}

/*
semi
*/

section.l-sectInfo.semi {
  background-color: transparent;
  transition: all ease 1s;
}
body.three section.l-sectInfo.semi {
  background-color: #969593;
}

/*
policy
*/

section.l-sectInfo.policy {
  width: initial;
  background-color: #fff;
  transition: 2.55s all cubic-bezier(.275,0,0,1);
  transition-delay: 1.6s;
}
body.four section.l-sectInfo.policy {
  background-color: #f3f3f3;
}

section.l-sectInfo.policy > .inner {
  margin:0 auto;
  height: 76vh;
  width: initial;
  display: flex;
  padding-left: 25vh;
  padding-right: 25vh;
  transform: translateY(0.6rem);
  opacity: 0;
  transition: 2.55s all cubic-bezier(.275,0,0,1);
  transition-delay: 1.6s;
}
body.four section.l-sectInfo.policy > .inner {
  transform: translateY(0rem);
  opacity: 1;
}

.l-policy__list {
  width: 106vh;
  white-space: initial;
}
.l-policy__list + .l-policy__list {
  margin-left: 16.3vh;
}

.l-policy__list dl {
  display: flex;
  font-size: 1.3rem;
  font-family: adobe-garamond-pro,'Zen Old Mincho', serif;
  letter-spacing: 0.035em;
}
.l-policy__list dl + dl {
  margin-top: 3.2rem;
  padding-top: 3.2rem;
  border-top: 1px solid #e5e5e5;
}

.l-policy__list dt {
  width: 32%;
}
.l-policy__list dd {
  font-size: 1.3rem;
  line-height: 2.2;
  width: 61%;
  margin-left: 7%;
}


/* --------------------------- 
  ■ copy
--------------------------- */

/* ------ title ------- */

.l-sectInfo__copy .title {
  font-family: minion-3-display, serif;
  font-size: 5.9vh;
  letter-spacing: 0.55em;
  line-height: 1.65;
  text-transform: uppercase;
}
.l-sectInfo__copy .title span {
  display: block;
}

.l-sectInfo__copy .title .blod {
  font-weight: 600;
}
.l-sectInfo__copy .title .normal {
  font-size: 92%;
  font-weight: 400;
  transition-delay: 0.4s;
}

/* ------ sub ------- */

.l-sectInfo__copy .sub {
  font-size: 1.25rem;
  font-family: 'Zen Old Mincho', serif;
  letter-spacing: 0.225em;
  font-weight: 400;
  margin-top: 1.4rem;
  color: rgba(0, 0, 0, 0.3);
  text-shadow: 2px 2px 2px #eee, 0 0 #a9a7a2;
  transition-delay: 0.5s;
  display: none;
}

/* --------------------------- 
  ■ cont
--------------------------- */

/* ------ common ------- */

.l-sectInfo__cont {
  margin-left: auto;
  width: 49%;
  margin-top: auto;
  margin-bottom: 0.7rem;
}

/*
service
*/

section.l-sectInfo.service .l-sectInfo__cont {
  margin-bottom: 0.7rem;
}

/*
about
*/

section.l-sectInfo.service.about .l-sectInfo__cont {
  width: 56%;
  margin-bottom: -0.6rem;
}

/* ------ desc ------- */

.l-sectInfo__cont .desc {
  font-family: adobe-garamond-pro,'Zen Old Mincho', serif;
  font-size: 1.3rem;
  color: #080808;
  line-height: 2.55;
  letter-spacing: 0.04em;
  white-space: initial;
  opacity: 0;
}
.l-sectInfo__cont .desc a {
  text-decoration: underline;
}

/*
list
*/

section.l-sectInfo.list .l-sectInfo__cont .desc {
  font-size: 1.425rem;
  line-height: 2.65;
}


/* ------ btn ------- */

.l-sectInfo__cont .btn {
  width: 100%;
  margin-top: 4.7rem;
}
.l-sectInfo__cont .btn a {
  font-size: 1.5rem;
  letter-spacing: 0.09em;
  line-height: 1;
  font-family: adobe-garamond-pro,'Zen Old Mincho', serif;
  font-style: italic;
  display: block;
  width: 100%;
  padding: 2.9rem 0 2.4rem;
  border: 1px dotted rgba(0,0,0,0.1);
  background: #ffffffb0;
  text-align: center;
  position: relative;
}
.l-sectInfo__cont .btn + .btn {
  margin-top: 0.3rem;
  margin-bottom: -3.9rem;
} 

/*
arrow
*/

.l-sectInfo__cont .btn a:before {
  content:"";
  position: absolute;
  width: 1.35rem;
  height: 1.3rem;
  background-image: url(../../../assets/img/common/arrowLink.svg);
  background-size: cover;
  top: 50%;
  right: 3.1rem;
  opacity: 0.8;
  transform: translateY(-50%);
  transition: all ease .35s;
  transition-delay: 0.1s;
}
.l-sectInfo__cont .btn a:after {
  content:"";
  position: absolute;
  width: 1.35rem;
  height: 1.3rem;
  background-image: url(../../../assets/img/common/arrowLink.svg);
  background-size: cover;
  top: 57%;
  right: 3.5rem;
  transform: translateY(-50%);
  opacity: 0;
  transition: all ease .35s;
  transition-delay: 0.1s;
}

/*
hover
*/

.l-sectInfo__cont .btn a:hover:before {
  top: 43%;
  right: 2.5rem;
  opacity: 0;
  transition-delay: 0s;
}
.l-sectInfo__cont .btn a:hover:after {
  top: 50%;
  right: 3.1rem;
  opacity: 0.8;
  transition-delay: 0.1s;
}

/* ------ list ------- */

.l-sectInfo__list {
  display: flex;
}
.l-sectInfo__list > ul {
  width: 50%;
}
.l-sectInfo__list ul.main > li + li {
  margin-top: 2rem;
}

/* info */

.l-sectInfo__list dt {
  font-size: 1.2rem;
  font-family: adobe-garamond-pro, serif;
  font-weight: 400;
  font-variant: small-caps;
  text-transform: lowercase;
  color: #7d796f;
  letter-spacing: 0.12em;
}
.l-sectInfo__list dd {
  font-size: 1.35rem;
  font-family: adobe-garamond-pro,'Zen Old Mincho', serif;
  letter-spacing: 0.06em;
  margin-top: 1.1rem;
  line-height: 1.75;
}
.l-sectInfo__list dd.little {
  font-size: 1.15rem;
}

/* sub */

.l-sectInfo__list ul.sub {
  margin-top: 1.2rem;
}
.l-sectInfo__list ul.sub li {
  font-size: 87%;
}
.l-sectInfo__list ul.sub li + li {
  margin-top: 1.2rem;
}

/* 
><><><><><><><><><><><><><><><><><><><>

  ▼ seviceList

><><><><><><><><><><><><><><><><><><><>

/* --------------------------- 
  ■ common
--------------------------- */

section.l-seviceList {
  display: flex;
  align-items: center;
  background: #fff;
  margin-left: -0.1rem;
  padding-left: 0.1rem;
  padding-right: 10rem;
  transition: 1.85s all ease;
}
section.l-seviceList > .inner {
  height: 90%;
  display: flex;
  align-items: center;
  transition: 1.85s all ease;
}
section.l-seviceList ul {
  display: flex;
  align-items: center;
  height: 100%;
  margin-left: 9rem;
}

/*
bgColor
*/

section.l-seviceList.bgColor {
  background-color: #d1cec7;
}

/*
design
*/

section.l-seviceList.design ul {
  margin-left: 14rem;
  margin-right: 7rem;
}

/* --------------------------- 
  ■ l-seviceList__cont
--------------------------- */

/* ------ common ------- */

li.l-seviceList__cont {
  height: 68vh;
  padding: 0 14.5rem;
  width: 64rem;
  margin-top: -3vh;
  padding-top: 5vh;
  padding-bottom: 6vh;
}
li.l-seviceList__cont > .inner {
  display: flex;
  height: 100%;
  flex-flow: column;
}
li.l-seviceList__cont + li.l-seviceList__cont {
  border-left: 1px solid #f2f2f2;
}

/* ------ top ------- */

li.l-seviceList__cont .top {

}

/* title */

li.l-seviceList__cont .title {

}
li.l-seviceList__cont .title .eng {
  font-family: minion-3-display, serif;
  font-size: 4.1vh;
  letter-spacing: 0.13em;
  line-height: 1.6;
  font-variant: small-caps;
  display: block;
  white-space: initial;
}
li.l-seviceList__cont .title .jpn {
  font-size: 1.5vh;
  font-family: 'Zen Old Mincho', serif;
  letter-spacing: 0.125em;
  font-weight: 400;
  color: #918e8e;
  display: block;
  margin-top: 0.8rem;
  margin-left: 1em;
  transition-delay: 0.2s;
}

/*
design
*/

section.l-seviceList.design .title .jpn {
  margin-top: 1.2vh;
  margin-left: initial;
}

/*
color
*/

section.l-seviceList.bgColor .title .eng {
  color:#fff;
}
section.l-seviceList.bgColor .title .jpn {
  color:#fff;
}


/* ------ bottom ------- */

li.l-seviceList__cont .bottom {
  display: flex;
  align-items: center;
  margin-top: auto;
  margin-left: -1vh;
}

/* image */

li.l-seviceList__cont .image {
  width: 31vh;
  height: 43.2vh;
  border: 1px solid #ebebeb;
  padding: 0.3rem;
  box-sizing: border-box;
  margin-top: auto;
}
li.l-seviceList__cont .image a {
  display: block;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
li.l-seviceList__cont .image figure {
  height: 100%;
  width: 100%;
  overflow: hidden;
  transform: scale(1);
  transition: all ease 0.8s
}
li.l-seviceList__cont .image figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  object-position: center center;
  transform: scale(1.2);
  filter: grayscale(1);
  transition: all ease 1.5s;
}

li.l-seviceList__cont .image.fadeInUp figure img {
  transform: scale(1);
  filter: grayscale(0);
}

/* desc */

li.l-seviceList__cont .desc {
  font-family: 'Zen Old Mincho', serif;
  font-size: 1.25rem;
  line-height: 2.3;
  letter-spacing: 0.03em;
  margin-top: -2rem;
  margin-left: 17%;
  width: 42%;
  opacity: 0.7;
  white-space: initial;
}

/*
color
*/

section.l-seviceList.bgColor .desc {
  color:#fff;
}


/* 
><><><><><><><><><><><><><><><><><><><>

  ▼ sectNews

><><><><><><><><><><><><><><><><><><><>

/* --------------------------- 
  ■ l-sectNews__list
--------------------------- */

/* ------ common ------- */

ul.l-sectNews__list {
  width: 67rem;
  margin-left: 19rem;
  margin-right: 20.5rem;
}
ul.l-sectNews__list li {
  border-top: 1px solid #f2f2f2;
  display: flex;
  justify-content: center;
  transform: translateY(0.6rem);
  opacity: 0;
  transition: 2.55s all cubic-bezier(.275,0,0,1);
}
ul.l-sectNews__list li:last-child {
  border-bottom: 1px solid #f2f2f2;
}
ul.l-sectNews__list li a {
  width: 94.9%;
  display: block;
}
ul.l-sectNews__list li a > .inner {
  display: flex;
  padding-top: 5.2rem;
  padding-bottom: 5.2rem;
  width: 100%;
  align-items: center;
}

/*
anim
*/

body.four ul.l-sectNews__list li {
  transform: translateY(0rem);
  opacity: 1;
}
body.four ul.l-sectNews__list li:nth-child(1) {
  transition-delay: 0.8s;
}
body.four ul.l-sectNews__list li:nth-child(2) {
  transition-delay: 1.2s;
}
body.four ul.l-sectNews__list li:nth-child(3) {
  transition-delay: 1.6s;
}

/* ------ date ------- */

ul.l-sectNews__list .date {
  font-family: adobe-garamond-pro, serif;
  font-size: 1.4rem;
  font-variant: small-caps;
  letter-spacing: 0.05em;
  color: #95918e;
  width: 22.1%;
}

/* ------ title ------- */

ul.l-sectNews__list .title {
  font-size: 1.4rem;
  font-family: adobe-garamond-pro,'Zen Old Mincho', serif;
  letter-spacing: 0.05em;
  margin-top: -0.3rem;
}

/* ------ image ------- */

ul.l-sectNews__list .image {
  height: 7.1vw;
  width: 7.1vw;
  margin-left: auto;
  overflow: hidden;
}
ul.l-sectNews__list .image figure {
  height: 100%;
  width: 100%;
  overflow: hidden;
  transform: scale(1);
  transition: all ease 0.8s
}
ul.l-sectNews__list .image figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  object-position: center center;
  transform: scale(1.2);
  transition: all ease 1.5s;
}

/*
anim
*/

body.four ul.l-sectNews__list .image figure img {
  transform: scale(1);
}
body.four ul.l-sectNews__list li:nth-child(1) .image figure img {
  transition-delay: 0.8s;
}
body.four ul.l-sectNews__list li:nth-child(2) .image figure img {
  transition-delay: 1.2s;
}
body.four ul.l-sectNews__list li:nth-child(3) .image figure img {
  transition-delay: 1.6s;
}

/*
hover
*/

body.four ul.l-sectNews__list li a:hover .image figure {
  transform: scale(1.1);
}


/* 
><><><><><><><><><><><><><><><><><><><>

  ▼ pagenation

><><><><><><><><><><><><><><><><><><><>

/* --------------------------- 
  ■ common
--------------------------- */

section.l-pagenation {
  width: 53vw;
  background-color: #fff;
  margin-left: -19.4rem;
  padding-left: 0.1rem;
  position: relative;
  z-index: 1;
}
section.l-pagenation > .inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --------------------------- 
  ■ pagenation
--------------------------- */

.c-pagenation ul {
  display: flex;
}
.c-pagenation ul li + li {
  margin-left: 0.5rem;
}
.c-pagenation ul li a {
  font-size: 1.6rem;
  font-family: adobe-garamond-pro, serif;
  width: 3.8rem;
  height: 3.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.c-pagenation ul li a.active:before {
  content: "";
  position: absolute;
  width: 125%;
  height: 125%;
  border: 1px solid #efefef;
  border-radius: 100%;
}
.c-pagenation ul li a span {
  margin-top: 0.1rem;
  margin-left: 0.2rem;
}


/* 
><><><><><><><><><><><><><><><><><><><>

  ▼ semiOrder

><><><><><><><><><><><><><><><><><><><>

/* --------------------------- 
  ■ sample
--------------------------- */

/* ------ bg ------- */

.semiOrder_bg {
  position: fixed;
  z-index: 9;
  width: 100%;
  height: 100%;
  visibility: hidden;
  background-color: rgba(0,0,0,0);
  transition: all ease 1s;
  cursor: crosshair;
}

/*
active
*/

.semiOrder_bg.active {
  visibility: visible;
  background-color: rgba(0,0,0,0.6);
}

/* ------ btn ------- */

.semiOrder_btn {
  position: fixed;
  width: 6.6rem;
  height: 6.6rem;
  border-radius: 100%;
  background-color: #fff;
  box-shadow: -1px 2px 7px 2px rgba(0, 0, 0, 0.1);
  right: 1.6rem;
  top: 1.6rem;
  z-index: 99;
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translateY(0.3vw);
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.5s;
  transition-delay: 0s;
}
.semiOrder_btn > .inner {
  width: 51%;
  height: 51%;
  position: relative;
}
.semiOrder_btn span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top:50%;
  transform: translateY(-50%);
  transition: all ease .35s;
}
.semiOrder_btn span:nth-child(1) {
  transform: rotate(0deg);
}
.semiOrder_btn span:nth-child(2) {
  transform: rotate(0deg);
}

/*
active
*/

.semiOrder_btn.active {
  background-color: #6e6e6e;
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.05s;
}
.semiOrder_btn.active span {
  transition: all ease .35s;
}
.semiOrder_btn.active span:nth-child(1) {
  transform: rotate(24deg);
}
.semiOrder_btn.active span:nth-child(2) {
  transform: rotate(-24deg);
}
.semiOrder_btn.active:hover span:nth-child(1) {
  transform: rotate(13deg);
}
.semiOrder_btn.active:hover span:nth-child(2) {
  transform: rotate(-13deg);
}


/* ------ sample ------- */

.semiOrder_sample {
  position: fixed;
  z-index: 98;
  overflow-y: scroll;
  height: 100%;
  width: 95%;
  right: -95%;
  background-color: #ccc;
  box-shadow: -3px 3px 7px 0px rgba(0, 0, 0, 0);
  transition: 1.15s all cubic-bezier(.275,0,0,1);
}

.semiOrder_sample img {
  width: 100%;
  height: auto;
  opacity: 0;
  transition: all ease 1s;
  transition-delay: 0s;
}

/*
active
*/

.semiOrder_sample.active {
  width: 95%;
  right: 0%;
  background-color: #F7F6F4;
  box-shadow: -3px 3px 7px 0px rgba(0, 0, 0, 0.25);
}
.semiOrder_sample.active img {
  opacity: 1;
  transition-delay: 1s;
}


/* 
><><><><><><><><><><><><><><><><><><><>

  ▼ Price

><><><><><><><><><><><><><><><><><><><>

/* --------------------------- 
  ■ common
--------------------------- */

section.l-sectPrice {
  background-color: #fff;
  display: flex;
  align-items: center;
  padding-left: 25rem;
  padding-right: 30rem;
}
section.l-sectPrice > .inner {
  height: 56vh;
  display: flex;
  align-items: start;
  margin-top: -4vh;
}

/* --------------------------- 
  ■ List
--------------------------- */

/* ------ common ------- */

.l-sectPrice__cont + .l-sectPrice__cont {
  margin-left: 10rem;
  padding-left: 10rem;
}

/* ------ title ------- */

.l-sectPrice__cont .title {
  font-size: 1.8rem;
  font-family: minion-3-display, serif;
  font-variant: small-caps;
  text-transform: lowercase;
  letter-spacing: 0.19em;
  margin-left: 0.2rem;
}

/* ------ list ------- */

.l-sectPrice__cont .list {
  margin-top: 6.9vh;
  display: flex;
}
ul.l-sectPrice__list + ul.l-sectPrice__list {
  margin-left: 11rem;
}


ul.l-sectPrice__list li {
  display: flex;
  width: 49.9rem;
  align-items: start;
  position: relative;
}
ul.l-sectPrice__list li + li {
  margin-top: 6.2vh;
}
ul.l-sectPrice__list li:before {
  content:"";
  position: absolute;
  top:29%;
  width: 100%;
  border-top: 1px dotted #e8e7e7;
}

/* item */

ul.l-sectPrice__list li .item {
  background-color: #fff;
  position: relative;
  padding-right: 1.2rem;
}
ul.l-sectPrice__list li .item .eng {
  font-family: adobe-garamond-pro, serif;
  font-size:2.7vh;
  letter-spacing: 0.11em;
  font-variant: small-caps;
}
ul.l-sectPrice__list li .item .jpn {
  font-family: 'Zen Old Mincho', serif;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  opacity: 0.5;
  margin-top: 1.2rem;
}

/* price */

ul.l-sectPrice__list li .price {
  font-size: 1.9rem;
  letter-spacing: 0.06em;
  margin-left: auto;
  font-family: adobe-garamond-pro, serif;
  margin-top: 0.1rem;
  background-color: #fff;
  position: relative;
  padding-left: 1.6rem;
}
ul.l-sectPrice__list li .price:before {
  content:"¥";
  font-size: 69%;
  margin-right: -0.2rem;
}
ul.l-sectPrice__list li .price:after {
  content:"~";
  font-family: athelas, serif;
  font-size: 93%;
  margin-left: -0.1rem;
  margin-right: 0rem;
  line-height: 1;
  opacity: 0.4
}

ul.l-sectPrice__list li .price.ask:before {
  content:none;
}
ul.l-sectPrice__list li .price.ask:after {
  content:none;
}





