@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');


/*===============================
 reset
================================*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: baseline;
    /* background: transparent; */
}

button{
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}
/*===============================
 common
================================*/
@media (max-width: 979px) {
body {
    min-width: inherit;
}
}

main,
.logo,
.drawer__nav,
.first-vi,
.main-visual
 {
    font-size:22px;
    font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", ヒラギノ角ゴ, "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif !important;
    color: #000;
}

.roboto {
    font-family: 'Roboto', sans-serif;
}

h1 {
    margin:0;
  }

a {
    outline: none;
    text-decoration: none;
}
a:link { color: #FFF; }
a:visited { color: #FFF; }
a:active { color: #FFF; }

.opacity{
  transition: opacity .5s ease;
}
.opacity:hover {
    opacity: .6;
}

ol, ul {
    list-style-type: none;
  }

  @media screen and (max-width: 979px) {
    .sp_none{
      display: none !important;
    }
  }
  @media screen and (min-width: 979px) {
    .pc_none{
      display: none !important;
    }
  }

.flex{
    display: flex;
}

/*===============================
 wrapper
================================*/
.container {
    position: relative;
}

section.fixed{
    position: -webkit-sticky;/*Safari*/
    position: sticky;
    top:0;/*Header高さ分で止まるようにする*/
    min-height: 100vh;
}
@media screen and (max-width: 979px) {
  section.fixed{
    min-height: 90vh;
  }
}
@media screen and (max-width: 750px) {
  section.fixed{
    min-height: 80vh;
  }
}

@media screen and (max-width: 979px) {
  .kokuyo-st-container #header {
    position: relative;
  }
}

/*===============================
 ハンバーガーメニュー
================================*/
/*ボタン外側*/
.openbtn2{
  position:absolute;
  top: 0;
  right: 0;
  width: 80px;
  height:80px;
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.65, 0, 0.35, 1) .2s;
}
@media screen and (max-width: 979px) {
  .openbtn2{
    top: 63px;
    width: 120px;
    height:98px;
    }
}
@media screen and (max-width: 750px) {
  .openbtn2{
    top: 0;
    width: 80px;
    height:60px;
    }
}

.openbtn2.display{
  opacity: 1;
}
.openbtn2.sticky{
  position:fixed;
  top: 0;
  right: 0;
  z-index: 100;
} 
/*ボタン内側*/ 
.openbtn2 span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    right:17px;
    height: 3px;
  background-color: #FFF;
  }
.openbtn2 span:nth-of-type(1) {
  top:23px; 
    width: 50%;
}
.openbtn2 span:nth-of-type(2) {
  top:36px;
    width:50%;
}
@media screen and (max-width: 979px) {
  .openbtn2 span:nth-of-type(1) {
    top: 36px;
  }
  .openbtn2 span:nth-of-type(2) {
    top: 52px;
  }
}
@media screen and (max-width: 750px) {
  .openbtn2 span:nth-of-type(1) {
    top:23px; 
  }
  .openbtn2 span:nth-of-type(2) {
    top:36px;
  }
}

/*activeクラスが付与されると線が回転して×に*/
.openbtn2.active span:nth-of-type(1) {
    top: 23px;
    right:17px;
    transform: translateY(6px) rotate(-45deg);
    width: 50%;
}
.openbtn2.active span:nth-of-type(2) {
    top: 36px;
    right:17px;
    transform: translateY(-6px) rotate(45deg);
    width: 50%;
}
@media screen and (max-width: 979px) {
  .openbtn2.active span:nth-of-type(1) {
    top: 36px;
  }
  .openbtn2.active span:nth-of-type(2) {
    top: 49px;
  }
}
@media screen and (max-width: 750px) {
  .openbtn2.active span:nth-of-type(1) {
    top: 23px;
  }
  .openbtn2.active span:nth-of-type(2) {
    top: 36px;
  }
}

/* ハンバーガーメニュー展開時、背景を固定 */
body.active {
    height: 100%;
    overflow: hidden;
}  

/*ハンバーガー表示コンテンツ*/
.drawer__nav {
  position: fixed; /* 追従ヘッダーなどでも表示できるよう設定しておく */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 6vw;
  font-weight: bold;
  letter-spacing: 0.2em;
  transition: opacity 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 91;
}
.drawer__nav.active {
  opacity: 1;
  visibility: visible;
}
.drawer__nav__inner {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #000;
  padding: 4rem 1.5rem 1rem;
  margin: 0 0 0 auto;
  overflow: scroll;
  transform: translateX(100%);
  transition: all 0.3s ease;
}
.drawer__nav.active .drawer__nav__inner {
  transform: translateX(0);
  width: auto;
}
.drawer__nav__menu {
  list-style: none;
  padding-left: 0;
  position: relative;
  top:10%;
}
.drawer__nav__link {
  display: block;
  color: black;
  text-decoration: none;
  padding: 1.4rem 1rem;
}
@media screen and (max-width: 979px) {
  .drawer__nav__link {
    padding: 2rem 1rem;
  }
}
@media screen and (max-width: 750px) {
  .drawer__nav__link {
    padding: 1.4rem 1rem;
  }
}
.drawer__nav__item div.line {
  border-top: #fff solid 1px;
  margin:1.5em 1rem
}
/*===============================
 アニメーション
================================*/
/* ふわっと表示 */
.animeA {
    opacity: 0;
}
.animeA.is-animated {
    opacity: 0;
    animation: animeA forwards 1s ease .2s;
}
@keyframes animeA {
    to  {
        opacity: 1;
   } 
 }

 /* 横から */
.animeB {
  opacity: 0;
  transform: translateX(40px) rotate(90deg);
}
.animeB.is-animated {
  opacity: 0;
  animation: animeB forwards 1s ease .5s;
}
.animeB2 {
    opacity: 0;
    transform: translateX(40px) rotate(90deg);
}
.animeB2.is-animated {
    opacity: 0;
    animation: animeB forwards 1s ease .7s;
}
@keyframes animeB {
    from {
        opacity: 0;
        transform: translateX(40px) rotate(90deg);
   }
    to {
        opacity: 1;
        transform: translateX(0) rotate(90deg);
   }
}
  @media screen and (max-width: 979px) {
    .animeB {
      transform: translateX(40px) rotate(0deg);
    }
    .animeB2 {
      opacity: 0;
      transform: translateX(40px) rotate(0deg);
  }
.animeB.is-animated {
  animation: animeBsp forwards 1s ease .5s;
}
.animeB2.is-animated {
  animation: animeBsp forwards 1s ease .7s;
}
}
@keyframes animeBsp {
  from {
      opacity: 0;
      transform: translateX(40px) rotate(0deg);
 }
  to {
      opacity: 1;
      transform: translateX(0) rotate(0deg);
 }
}

/* 横から(短) */
.animeC {
  opacity: 0;
  transform: translateX(40px);
}
.animeC.is-animated {
  opacity: 0;
  animation: animeC forwards 1s ease .2s;
}
.animeC2 {
  opacity: 0;
  transform: translateX(40px);
}
.animeC2.is-animated {
  opacity: 0;
  animation: animeC forwards 1s ease .4s;
}
@keyframes animeC {
  from {
      opacity: 0;
      transform: translateX(40px);
 }
  to {
      opacity: 1;
      transform: translateX(0);
 }
}

/* ヘッダーH2 */
.animeD {
  opacity: 0;
  transition: opacity .5s ease .2s;
}
.animeD.is-animated {
  opacity: 1;
}
.animeD.is-hide {
  opacity: 0;
}

/* ふわっと表示（長） */
.animeF {
  opacity: 0;
}
.animeF.is-animated {
  opacity: 0;
  animation: animeF forwards 1.5s cubic-bezier(0.22, 0.61, 0.36, 1) .2s;
}
@keyframes animeF {
  to  {
      opacity: 1;
 } 
}

/*===============================


 ▼top


================================*/

/*===============================
 logo
================================*/

/* ヘッダー薄い背景 */
section.logo .top_back_bg{
  position: fixed;
    top: 0;
    height: 92px;
    width: 100%;
    z-index: 9;
    background-color: #66666E;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    mix-blend-mode: multiply;
}
section.logo .top_back_bg.sticky{
  opacity: 0.5;
}
@media screen and (max-width: 979px) {
  section.logo .top_back_bg{
    height: 98px;
  }
}
@media screen and (max-width: 750px) {
  section.logo .top_back_bg{
    height: 64px;
  }
}


/* visual-ttl */
.logo .ttl_wrap{
    position: absolute;
    top: 0;
    display: flex;
    align-items: flex-end;
    height: calc(100vh - 56px);
}
  @media screen and (min-width: 1367px) {
      .logo .ttl_wrap{
          height: calc(100vh - 64px);
      }
  }
  @media screen and (max-width: 979px) {
    .logo .ttl_wrap{
      height: calc(100vh - 46px);
      position: absolute;
      top: 71vh;
      align-items: flex-start
    }
  }
  @media screen and (max-width: 750px) {
    .logo .ttl_wrap{
      top: calc(100vw + 16px);
    }
  }

.logo h1.visual-ttl{
    z-index: 10;
    font-size: 100px;
    color: black;
    padding-top:19px;
    padding-left:35px;
}
  @media screen and (max-width: 979px) {
    .logo h1.visual-ttl{
      padding-top: 17px;
      padding-left: 17px;
    }
  }

.logo .visual-ttl .wp{
    display: flex;
    width:265px;
    transition: transform 0.5s 0s cubic-bezier(0.65, 0, 0.35, 1);
    transform-origin: top left;
    padding-bottom:18px;

    overflow: hidden;
    width: 265px; /* 画像の幅に合わせて調整 */
    height: 79px; /* 画像の高さに合わせて調整 */
}
  @media screen and (max-width: 979px) {
    .logo .visual-ttl .wp{
      /* width: 26vw; */
      height: auto;
    }
  }

.logo .visual-ttl .wp .image{
  opacity: 0;
}

.logo .visual-ttl .wp.active .image {
    animation: fadeInFromLeft;
    animation-duration: .8s;
    animation-delay: .1s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
}

@keyframes fadeInFromLeft {
    0% {
      opacity: 0;
      transform: translateX(-100%);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .logo .visual-ttl .wp .image img {
    display: block;
    width: 265px;
    height: 79px;
  }
  @media screen and (max-width: 979px) {
    .logo .visual-ttl .wp .image img {
      /* width: 165px; */
      height: auto;
    }
  }
  @media screen and (max-width: 750px) {
    .logo .visual-ttl .wp .image img {
      width: 205px;
    }
  }
    
.logo .visual-ttl .writing {
    display: flex;
    transition: transform 0.5s 0s cubic-bezier(0.65, 0, 0.35, 1);
    transform-origin: top left;
    width:450px;
    padding-bottom:23px;

    overflow: hidden;
    width: 450px; /* 画像の幅に合わせて調整 */
    height: 45px; /* 画像の高さに合わせて調整 */
}
  @media screen and (max-width: 979px) {
    .logo .visual-ttl .writing{
      width: 70vw;
      height: auto;
    }
  }

.logo .visual-ttl .writing .image{
  opacity: 0;
}
.logo .visual-ttl .writing.active .image{
    opacity: 0;
    animation: fadeInFromLeft;
    animation-duration: 1.2s;
    animation-delay: .5s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
}
.logo .visual-ttl .writing .image{
    width: 450px;
    height: 45px;
}
  @media (max-width: 1300px) and (min-width: 979px) {
      .logo .visual-ttl .writing .image{
          width: 25vw;
      }
  }
.logo .visual-ttl .writing .image img {
  display: block;
}
.logo .visual-ttl.sticky {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

.logo .visual-ttl.sticky .wp {
    transform: scale(0.76);
}
@media screen and (max-width: 979px) {
  .logo .visual-ttl.sticky .wp {
    transform: scale(0.82);
  }
}
@media screen and (max-width: 750px) {
  .logo .visual-ttl.sticky .wp {
    transform: scale(0.51);
  }
}

.logo .visual-ttl.sticky .writing {
    transform: scale(0);
}

/* visual-nav */
.logo .nav_wrap{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: flex-end;
    height: calc(100vh - 56px);
    font-size: 20px;
}
  @media screen and (min-width: 1367px) {
      .logo .nav_wrap{
          height: calc(100vh - 64px);
      }
  }

.logo .nav_wrap ul.visual-nav{
  opacity: 0;
  position: relative;
  z-index: 10;
  color: #FFF;
  padding: 29px 50px 20px 0;
  height: 45px;
  letter-spacing: 0.05em;
  transition: color 0.5s 0s ease;
}
.logo .nav_wrap ul.visual-nav.active{

    animation-name:fadeUpAnime;
    animation-duration:1.2s;
    animation-delay: .5s;
    animation-fill-mode:forwards;
    animation-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
    opacity:0;
}
@keyframes fadeUpAnime{
    from {
      opacity: 0;
      transform: translateY(50%);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  
.logo .nav_wrap .visual-nav a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
}
.logo .nav_wrap ul.visual-nav a:nth-child(2){
    margin-left:1.2em;
}
.logo .nav_wrap ul.visual-nav a:nth-child(3){
  margin-left:1.2em;
}
.logo .nav_wrap .visual-nav span {
    padding-right:7px;
}
.logo .nav_wrap .visual-nav span.line {
  margin-left:1.2rem;
  margin-right:1.2rem;
}
.logo .nav_wrap .visual-nav span.pdr00 {
  padding-right:0px;
}
.logo .nav_wrap .visual-nav a::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 2px;
    bottom: 1px;
    left: 0;
    background-color: #FFF;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s;
}
.logo .nav_wrap .visual-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}
.logo .nav_wrap ul.visual-nav.sticky{
    position: fixed;
    top: 0;
    right: 0;
    padding-bottom:0;
}

/*===============================
 main-visual
================================*/
.main-visual {
    overflow: hidden;
    /* position: absolute;
    top: 0;
    z-index: 1;
    width: 100%; */
    z-index: 3;
}

.main-visual .visual-wrap{
    position: relative;
    height: calc(100vh - 56px);
    width: 100%;
    /* background-color: #202025; */
}
  @media screen and (max-width: 979px) {
    .main-visual .visual-wrap{
      height: 70vh;
    }
  }
  @media screen and (max-width: 750px) {
    .main-visual .visual-wrap{
      height: 400px;
    }
  }

/* ファーストビューアニメーション */
.first-vi {
    width: 100%;
    height: 100vh;
    background-color: #202025;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    text-align: left;
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 0.1em;
  }
  @media screen and (max-width: 979px) {
    .first-vi {
      font-size: 7vw;
    }
  }
.fadeout {
  position: absolute;
  top: 0;
  left: 0;
  animation-duration: .5s;
  animation-delay: 3.5s;
  animation-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
  animation-fill-mode: forwards;
  overflow: hidden;
}

.first-vi .center p:nth-child(1){
  padding-bottom: 10px;
}

.first-vi .center {
  position: absolute;
  margin-top:-64px;
}
  @media screen and (max-width: 979px) {
    .first-vi .center { 
      position: absolute;
      top:41.5vw;
      margin-top:0;
    }   
  }
  @media screen and (max-width: 750px) {
    .first-vi .center { 
      width: 95%;
      position: absolute;
      /* top:150px; */
      margin-top:0;
    }  
  }

.first-vi .center:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  background: #202025;
  transition: width 1s cubic-bezier(0.65, 0, 0.35, 1) 0s;
}
.first-vi .active.center:after {
  width: 0;
}
.first-vi .image {
  width: 200px;
  padding-top:30px;
  padding-left: 8px;
}

/* swiper関連 */
.visual-wrap.swiper {
    z-index: 3;
    width:100%;
    transform-origin: left;
    display:inline-block
}
  
.visual-wrap .swiper-slide {
    /*fedeアニメーションは必要ないため透過を無しにする*/
    opacity: 1 !important;
  }
  
.visual-wrap .swiper-slide .image,
.visual-wrap .swiper-slide .image img,
.visual-wrap .swiper-slide .image video {
  /*切り替わり中は前のスライドのアニメーションを遅らせる*/
  transition-delay: .8s;
}

.visual-wrap .swiper-slide .image {
  transform: translateX(-100%);
  overflow: hidden;
}

.visual-wrap .swiper-slide .image img,
.visual-wrap .swiper-slide .image video {
  transform: translateX(100%);
}

.visual-wrap .swiper-slide-active {
  /*アクティブなスライドが一番上に来るように*/
  z-index: 2;
}

.visual-wrap .swiper-slide-active .image,
.visual-wrap .swiper-slide-active .image img,
.visual-wrap .swiper-slide-active .image video {
  transition-delay: 0s;
  transition-duration: .8s;
  transition-timing-function:cubic-bezier(0.65, 0, 0.35, 1);
  transform: translateX(0%);
}

.visual-wrap .swiper-slide img,
.visual-wrap .swiper-slide video {
    height: calc(100vh - 56px);
    width: 100%;
    object-fit: cover;
}

  @media screen and (min-width: 1367px) {
    .visual-wrap .swiper-slide img,
    .visual-wrap .swiper-slide video {
        height: calc(100vh - 64px);
    }
  }
  @media screen and (max-width: 979px) {
    .visual-wrap .swiper-slide img{
      object-fit: contain;
      height: auto;
    }
    .visual-wrap .swiper-slide video{
      height: 100vw;
    }
  }

/*===============================
 main
================================*/
main {
    overflow: hidden;
  }
section.main {
    z-index: 5;
}
/*===============================
 concept
================================*/
.bg {
  background-color: #333338;
  width: 100%;
  height: 90%;
  position: absolute;
  top: 0;
  z-index: 0;
}
.concept{
  background-color: #1A1A1F;
  width: 100%;
  padding-top: 170px;
  color: #FFF;
  position: relative;
}
  @media screen and (max-width: 979px) {
  .concept{ 
    padding-top: 48px;
    background-color: #333338;
    }
  }

.concept .between-wrap{
  /* max-width: 1000px; */
  /* margin: 0 auto; */
  justify-content: space-between;
}
  @media screen and (max-width: 979px) {
  .concept .between-wrap{ 
    flex-direction: column;
    }
  }

.concept h2{
  font-size: 59px;
  /* 縦書き */
  writing-mode: vertical-rl;
  /* 縦位置 */
  line-height: 1.5;
  letter-spacing: 0.32em;
  padding-left:40px;
  margin-right: 10vw;
  z-index: 2;
}
  @media screen and (max-width: 979px) {
  .concept h2{ 
    writing-mode: horizontal-tb;
    font-size: 28px;
    padding-left:0px;
    padding-bottom: 48px;
    margin-right: 0;
    text-align: center;
    }
  }

.concept .box{
  width: 100vw;
  background-color: #66666E;
  color: #FFF;
  position: relative;
  align-items: center;
}
  @media screen and (max-width: 979px) {
  .concept .box{ 
    width: 90vw;
    }
  }

.concept .box .text{
  padding: 100px 95px 130px 95px;
  width: 38vw;
}
  @media screen and (min-width: 1367px) {
    .concept .box .text{
      width: 45vw;
    }
  }
  @media screen and (max-width: 979px) {
  .concept .box .text{ 
    padding: 50px 20px;
    width: 100%;
    }
  }

.concept .box .text h3{
  font-size: 40px;
  letter-spacing: 0.1em;
  line-height: 1.7;
}
  @media screen and (max-width: 979px) {
  .concept .box .text h3{ 
    font-size: 5.4vw;
    }
  }

.concept .box .text p{
  font-size: 22px;
  letter-spacing: 0.1em;
  font-weight: bold;
  line-height: 2;
  padding-top:76px;
  width: 100%;
}
  @media screen and (max-width: 979px) {
  .concept .box .text p{ 
    padding-top: 38px;
    font-size: 3.2vw;
    }
  }

  @media screen and (max-width: 979px) {
  .concept .box .text .p_narrow{
    width: 60%;
    }
  }

.concept .pen{
  position: absolute;
  top: 170px;
  right: -350px;
}
  @media screen and (max-width: 979px) {
  .concept .pen{
    position: relative;
    top: -20vw;
    right: 0;
    }
  }
  @media screen and (max-width: 750px) {
    .concept .pen{
      position: relative;
      top: 0;
      right: 0;
      }
    }
  
.concept .pen .left img{
  position: absolute;
  top:270px;
  right:270px;
  filter: drop-shadow(17px -17px 5px rgba(0, 0, 0, 0.8));
  will-change: filter;
}
  @media (max-width: 1140px) and (min-width: 979px) {
  .concept .pen .left img{
    width: 70vw;
    right:240px;
  }
  }
  @media screen and (max-width: 979px) {
  .concept .pen .left img{
    position: absolute;
    top:-235px;
    right:80px;  
    filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0));      
    width: 12vw;
  }
  }
  @media screen and (max-width: 750px) {
  .concept .pen .left img{
    top:-380px;
    width: 20.7vw;
  }
  }

.concept .pen .right img{
  position: absolute;
  top:270px;
  right:100px;
  filter: drop-shadow(17px -17px 5px rgba(0, 0, 0, 0.8));
  will-change: filter;
}
  @media (max-width: 1140px) and (min-width: 979px) {
  .concept .pen .right img{
    width: 70vw;
  }
  }
  @media screen and (max-width: 979px) {
  .concept .pen .right img{
    position: absolute;
    top:-230px;
    right:0;  
    filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0));      
    width: 11.45vw;
  }
  }
  @media screen and (max-width: 750px) {
  .concept .pen .right img{
    top:-380px;
    width: 20vw;
  }
  }

.concept .pen img{
  transform: rotate(90deg);
  z-index: 20;
}
  @media screen and (max-width: 979px) {
  .concept .pen img{
    transform: rotate(0deg);
  }
  }

/*===============================
 LINEUP
================================*/
.lineup{
    background-color: #1A1A1F;
    width: 100%;
    padding-top: 220px;
}
  @media screen and (max-width: 979px) {
    .lineup{ 
      padding-top: 240px;
    }
  }
  
.lineup .between-wrap{
    justify-content: space-between;
    position: relative;
}
  @media screen and (max-width: 979px) {
    .lineup .between-wrap{
      flex-direction: column-reverse;
    }
  }

.lineup .box-wrap {
  width: auto;
}
.lineup .box-wrap a{
  color: #000;
}
.lineup .box-wrap div.box:first-child{
  margin-bottom: 15px;
}

.lineup .box {
  width: 1100px;
    background-color: #E2E2E6;
    padding-top: 65px;
    transition: all .5s ease;
    position: relative;
}
  @media screen and (max-width: 979px) {
    .lineup .box{ 
      width: 95vw;
      padding-top: 0;
    }
  }

.lineup .box:hover{
    width: 1150px;
    cursor: pointer;
}
  @media screen and (max-width: 979px) {
    .lineup .box:hover{ 
      width: 95vw;
    }
  }

.lineup .box:nth-child(3) {
    margin-top: 15px;
}
.lineup .box:nth-child(4) {
    margin-top: 15px;
}
.lineup .box:nth-child(5) {
  margin-top: 15px;
}
.lineup .img {
  width: 330px;
  margin-right: 130px;
}
  @media screen and (max-width: 979px) {
    .lineup .img{ 
      width: 50%;
      margin-right: 0;
      display: flex;
    }
    .lineup .img.double{ 
        width: 65%;
    }
  }
.lineup .img img {
  float: right;
}
  @media screen and (max-width: 979px) {
    .lineup .img img{ 
      width: 100%;
      padding-left:3%;
    }
  }
.lineup .text {
    /* width: 500px; */
}
  @media screen and (max-width: 979px) {
    .lineup .text{ 
      width: 100%;
      padding-right:1%;
      padding-left:5%;
    }
  }
  
.lineup .text .item-en {
  padding-top:30px;
}
@media screen and (max-width: 979px) {
  .lineup .text .item-en {
    padding-top:7.2vw;
  }
}
.lineup .text .item-en.limited-color img {
  width:388px;
}
    @media screen and (max-width: 979px) {
      .lineup .text .item-en.limited-color img {
        width:80%;
      }  
    }

.lineup .text .item-ttl {
  padding-top:25px;
}
  @media screen and (max-width: 979px) {
    .lineup .text .item-ttl {
      padding-top:3.2%;
      font-size: 4.0vw;
    }
  }

.lineup .text p {
  padding-top:25px;
}
  @media screen and (max-width: 979px) {
    .lineup .text p {
      padding-top:7%;
      font-size: 4.0vw;
    }
  }
  

.lineup h2{
  font-size: 59px;
    /* 縦書き */
    writing-mode: vertical-rl;
    line-height: 1.5;
    letter-spacing: 0.32em;
    padding-right:40px;
    color: #FFF;
}
  @media screen and (max-width: 979px) {
    .lineup h2{ 
      writing-mode: horizontal-tb;
      font-size: 28px;
      padding-right:0px;
      padding-bottom: 48px;
      margin-right: 0;
      text-align: center;
    }
  }

  @media screen and (max-width: 979px) {
    .lineup h3 img {
      width: 80%;
    }
  }

/* 矢印 moreinfo*/
.lineup .box button{
  margin-top:45px;
  font-size: 20px;
  font-style:italic;
  letter-spacing: 0.09em;
  /*矢印の基点とするためrelativeを指定*/
  position: relative;
  /*ボタンの形状*/
  padding: 8px 0px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  color: #333;
  outline: none;
}
  @media screen and (max-width: 979px) {
    .lineup .box button{
      margin-top:7.5%;
      font-size: 3.5vw;
    }
  }
    
.lineup .box button .yajirushi{
  position: relative;
  text-decoration: none;
}
.lineup .box button .yajirushi::after{
  content: "";
  display: block;
  position: absolute;
  top: -14px;
  left: -11px;
  width: 181px;
  height: 21px;
  border: none;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: skew(45deg);
  transition: all .5s ease;
}
  @media screen and (max-width: 979px) {
    .lineup .box button .yajirushi::after{
      top: -10px;
      width: 160%;
      height: 16px;
    }
  }
.lineup .box:hover button .yajirushi::after{
  right: 10px;
  width: 231px;
}
  @media screen and (max-width: 979px) {
    .lineup .box:hover button .yajirushi::after{
      right: 0px;
      width: 140%;
    }
  }

/* newアイコン */
.lineup .box .ico {
  width: 100px;
  position: absolute;
  top:45px;
  left:45px;
}
  @media screen and (max-width: 979px) {
    .lineup .box .ico {
      width: 15%;
      position: absolute;
      top:-10%;
      left:1%;
    }
  }

/*===============================
 DESIGN
================================*/
.design{
  background-color: #4D4D52;
  width: 100%;
  color: #FFF;
  margin-top:-85px;
  padding-bottom:300px;
}
  @media screen and (max-width: 979px) {
    .design{ 
      padding-bottom:170px;
    }
  }
  
.design .between-wrap{
  /* max-width: 1000px; */
  /* margin: 0 auto; */
  padding-top:260px;
}
  @media (max-width: 1140px) and (min-width: 979px) {
    .design .between-wrap{ 
      flex-direction: column;
    }
  }
  @media screen and (max-width: 979px) {
    .design .between-wrap{ 
      flex-direction: column;
      padding-top:200px;
    }
  }

.design h2{
  font-size: 59px;
  /* 縦書き */
  writing-mode: vertical-rl;
  line-height: 1.5;
  letter-spacing: 0.32em;
  padding-left:40px;
  color: #FFF;
}
  @media (max-width: 1140px) and (min-width: 979px) {
    .design h2{ 
      writing-mode: horizontal-tb;
      padding-left:0px;
      padding-bottom: 30px;
      margin-right: 0;
      text-align: center;
    }
  }
  @media screen and (max-width: 979px) {
    .design h2{ 
      writing-mode: horizontal-tb;
      font-size: 28px;
      padding-left:0px;
      padding-bottom: 30px;
      margin-right: 0;
      text-align: center;
    }
  }

.design .content{
  width:100%;
  text-align: center;
}
.design .content p{
  text-align: left;
  margin-left:10vw;
}
  @media screen and (max-width: 979px) {
    .design .content p{
      margin-left:0;
      padding:0 20px;
      font-size: 16px;
      font-weight: bold;
      line-height: 2;
      text-align: center;
    }
  }
  @media screen and (max-width: 750px) {
    .design .content p{
      text-align: left;
    }
  }

.design .content .pen-wrap{
  padding-top:130px;
}
.design .content .item01{
  position: relative;
  width: 915px;
  margin: 0 auto;
}

  @media screen and (max-width: 979px) {
    .design .content img {
      width: 90%;
    }
  }
  @media screen and (max-width: 979px) {
    .design .content .item01{
      width: 95vw;
    }
  }
  @media screen and (max-width: 750px) {
    .design .content .item01{
      width: 90vw;
    }
  }
  
.design .content .item02{
  position: relative;
  width: 915px;
  margin: 80px auto 0 auto;
}
  @media screen and (max-width: 979px) {
    .design .content .item02{
      width: 95vw;
      margin-top:40px;
    }
  }
  @media screen and (max-width: 979px) {
    .design .content .item02 img{
      width: 85%;
    }
  }
  @media screen and (max-width: 750px) {
    .design .content .item02 img{
      width: 80%;
    }
  }

  .design button.circle{
  height:55px;
  width:55px;
  border-radius:50%;
  line-height:55px;
  letter-spacing: 0.1em;
  padding-left: 2px;
  text-align:center;
  border: #FFF solid 3px;
  font-size:38px;
  font-weight: bold;
  color: #FFF;
  transition: all .5s ease;
}
@media screen and (max-width: 750px) {
  .design button.circle{
    height:45px;
    width:45px;
    font-size:27px;
  }
}
.design button.circle:hover{
  background-color: #FFF;
  color: #4D4D52;
}
.design button.circle span {
  display: block;
  vertical-align: middle;
  line-height: normal;
}
.design .content .maru5{
  position: absolute;
  top: -60px;
  left: 194px;
  z-index: 5;
}
  @media screen and (max-width: 979px) {
    .design .content .maru5{
      top: -60px;
      left:22.0vw;
    }
  }@media screen and (max-width: 750px) {
    .design .content .maru5{
      top: -55px;
      left:18.3vw;
    }
  }

.design .content .maru6{
  position: absolute;
  top: -60px;
  left: 412px;
  z-index: 5;
}
  @media screen and (max-width: 979px) {
    .design .content .maru6{
      top: -60px;
      left:42.2vw;
    }
  }@media screen and (max-width: 750px) {
    .design .content .maru6{
      top: -55px;
      left:37.5vw;
    }
  }

.design .content .maru1{
  position: absolute;
  top: -60px;
  right: -27px;
  z-index: 5;
}
  @media screen and (max-width: 979px) {
    .design .content .maru1{
      top: -60px;
      right: 1.8vw;
    }
  }
  @media screen and (max-width: 750px) {
    .design .content .maru1{
      top: -55px;
      right: -0.7vw;
    }
  }
  .design .content .maru2{
  position: absolute;
  bottom: -60px;
  left: 158px;
  z-index: 5;
}
  @media screen and (max-width: 979px) {
    .design .content .maru2{
      bottom: -60px;
      left: 16.7vw;
    }
  }
  @media screen and (max-width: 750px) {
    .design .content .maru2{
      bottom: -55px;
      left: 15.5vw;
    }
  }

.design .content .maru3{
  position: absolute;
  bottom: -60px;
  left: 310px;
  z-index: 5;
}
  @media screen and (max-width: 979px) {
    .design .content .maru3{
      bottom: -60px;
      left: 32vw;
    }
  }
  @media screen and (max-width: 750px) {
    .design .content .maru3{
      bottom: -55px;
      left: 28.8vw;
    }
  }

.design .content .maru4{
  position: absolute;
  bottom: -60px;
  left:432px;
  z-index: 5;
}
  @media screen and (max-width: 979px) {
    .design .content .maru4{
      bottom: -60px;
      left: 44.4vw;
    }
  }
  @media screen and (max-width: 750px) {
    .design .content .maru4{
      bottom: -55px;
      left: 42vw;
    }
  }

/* モーダル */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* padding: 30px; */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
  pointer-events: none;
  opacity: 0;
  z-index: 100;
  background-color: #333338;
  display: none;
}

/* モーダルがactiveの時 */
.modal.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* モーダル背景のオーバーレイ部分 */
.modal__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

/* モーダルのコンテンツ */
.modal__content {
  position: relative;
  background-color: #4D4D52;
  width: 100%;
  height: auto;
  max-width: 1220px;
  padding: 0;
  color: #fff;
  overflow: hidden;
}
  @media screen and (max-width: 979px) {
    .modal__content {
      height: 100%;
      background-color: #000;
      padding-top: 100px;
      overflow-y: scroll;
      -webkit-overflow-scrolling: auto;
      overflow-scrolling: auto;
    }
  }

/* モーダルを閉じるボタン */
.modal__close-btn {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 15;
}
  @media screen and (max-width: 979px) {
    .modal__close-btn {
      right: 15px;
      top:176px;
      width: 65px;
      height: 65px;
    }
  }
  @media screen and (max-width: 750px) {
    .modal__close-btn {
      right: 15px;
      top:118px;
      width: 45px;
    }
  }

.batsu::before, .batsu::after{
  content: "";
  display: block;
  width: 100%;/*バツ線の長さ*/
  height: 2px;/*バツ線の太さ*/
  background: #FFF;
  transform: rotate(45deg);
  transform-origin:0% 50%;
  position: absolute;
  top: calc(14% - 0px);
  left: 14%;
}

.modal__slide {
display: flex;
align-items: flex-start;
justify-content: flex-start;
height: 100%;
width: 100%;
}
  @media screen and (max-width: 979px) {
    .modal__slide {
      flex-direction: column;
    }
  }
  
.modal .swiper-slide-active {
  justify-content: left;
}
.modal .swiper-slide .img{
  width: 50%;
  height: 100%;
}
.modal .swiper-slide .img_sp{
  width: 100%;
  padding-top:10%;
}

.modal .swiper-slide .text{
  width: 50%;
  height: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  }
  @media screen and (max-width: 979px) {
    .modal .swiper-slide .text{
      width: 100%;
      }
  }
    
.modal .swiper-slide .text .text-padding{
  padding:74px 65px;
}
  @media screen and (max-width: 979px) {
    .modal .swiper-slide .text .text-padding{
      padding: 8vh 14vw;
      }
  }
  @media screen and (max-width: 750px) {
    .modal .swiper-slide .text .text-padding{
      padding: 24px 14vw;
      }
  }
    
.modal .swiper-slide .text .text-ttl{
  font-size: 32px;
  letter-spacing: 0.32em;
  font-weight: bold;
}
  @media screen and (max-width: 979px) {
    .modal .swiper-slide .text .text-ttl{
      font-size: 6.5vw;
      }
  }
  
.modal .swiper-slide .text h3{
  height: 32px;
  line-height:32px;
}
.modal .swiper-slide .text .text-ttl .circle{
  position: relative;
  top: -3px;
  align-items: center;
  height:32px;
  width:32px;
  border-radius:50%;
  line-height:32px;
  text-align:center;
  border: #FFF solid 3px;
  font-size:22px;
  font-weight: bold;
  color: #FFF;
  vertical-align: middle;
  letter-spacing: 0.1em;
  margin-left:8px;
  padding-left: 1px;
}
@media screen and (max-width: 979px) {
  .modal .swiper-slide .text .text-ttl .circle{
    top: -11px;
    height:52px;
    width:52px;
    line-height:52px;
    font-size:37px;
      }
}
@media screen and (max-width: 750px) {
  .modal .swiper-slide .text .text-ttl .circle{
    top: -3px;
    height:32px;
    width:32px;
    line-height:32px;
    font-size:22px;
        }
}


.modal .swiper-slide .text .copy{
  border: #FFF solid 1px;
  margin-top:18px;
  display: inline-block;
  padding:10px 25px;
  font-size: 17px;
  font-weight: bold;
}
  @media screen {
    .modal .swiper-slide .text .copy{
      margin-top: 5%;
      }
  }

.modal .swiper-slide .text h4{
  font-size: 33px;
  font-weight: bold;
  padding-top: 78px;
}
  @media (max-width: 1140px) and (min-width: 979px) {
    .modal .swiper-slide .text h4{
      padding-top: 7%;
      font-size: 2.5vw;
      }
  }
  @media screen and (max-width: 979px) {
    .modal .swiper-slide .text h4{
      font-size: 4.5vw;
      padding-top: 7%;
      }
  }
  @media screen and (max-width: 750px) {
    .modal .swiper-slide .text h4{
      font-size: 6.5vw;
      }
  }

.modal .swiper-slide .text p{
  padding-top: 30px;
  line-height: 1.9;
  font-size: 16px;
}
  @media (max-width: 1140px) and (min-width: 979px) {
    .modal .swiper-slide .text p{
      padding-top: 3%;
      font-size: 1.5vw;
      }
  }
  @media screen and (max-width: 979px) {
    .modal .swiper-slide .text p{
      padding-top: 1%;
      line-height: 1.5;
      font-size: 3vw;
    }
  }
  @media screen and (max-width: 750px) {
    .modal .swiper-slide .text p{
      font-size: 4vw;
    }
  }

.modal .swiper-slide .img img{
  object-fit: cover;
  width: 100%;
  display: block;
}
.modal .swiper-slide .img_sp img{
  object-fit: cover;
  width: 100%;
}
  @media (max-width: 979px) and (min-width: 751px) {
    .modal .swiper-slide .img_sp{
      width:60%;
      margin: 0 auto;
    }
  }

.modal .swiper-slide .img video{
  object-fit: cover;
  width: 100%;
  height: 700px;
}

.modal .swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: auto;
  right: 170px;
  top: 90%;
  color: #FFF;
}
  @media screen and (max-width: 979px) {
    .modal .swiper-button-prev, .swiper-rtl .swiper-button-next {
      left: 5vw;
      top:50vh;
    }
  }
  @media screen and (max-width: 750px) {
    .modal .swiper-button-prev, .swiper-rtl .swiper-button-next {
      left: 10px;
      top:400px;
    }
  }
.modal .swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: 65px;
  top:90%;
  color: #FFF;
}
  @media screen and (max-width: 979px) {
    .modal .swiper-button-next, .swiper-rtl .swiper-button-prev {
      right: 5vw;
      top:50vh;
    }
  }
  @media screen and (max-width: 750px) {
    .modal .swiper-button-next, .swiper-rtl .swiper-button-prev {
      right: 10px;
      top:400px;
    }
  }
  @media screen and (max-width: 979px) {
  .swiper-button-next:after, .swiper-button-prev:after {
    font-size: 8vw!important;
    }
  }

.batsu::after{
  transform: rotate(-45deg);
  transform-origin:100% 50%;
  left: auto;
  right: 14%;
}

/*===============================
 製品詳細
================================*/
.shop_links {
  margin-top: 50px;
  display: flex;
  gap: 10px;
  justify-content: center;
}
.shop_links a {
  width: calc( 40% - 5px);
  background-color: #fff;
  text-align: center;
}
.shop_links a:hover img {
  opacity: 0.8;
}
.shop_links img {
  width: auto;
  height: 70px;
}
@media screen and (max-width: 750px) {
  .shop_links {
    flex-direction: column;
  }
  .shop_links a {
    width: 100%;
  }
  .shop_links img {
    height: 70px;
  }
}

.item-detail{
  background-color: #C3C3C8;
  width: 100%;
  color: #000;
}
.item-detail .between-wrap{
  max-width: 875px;
  min-width: 50%;
  margin: 0 auto;
  padding:200px 0px;
}
  @media screen and (max-width: 979px) {
    .item-detail .between-wrap{
      padding: 125px 20px 160px 20px;
    }
  }

.item-detail h2{
  font-size: 31px;
  text-align: center;
  font-weight: bold;
}
  @media screen and (max-width: 979px) {
    .item-detail h2{
      font-size: 24px;
    }
  }
  
.item-detail table{
  width: 100%;
  margin-top: 50px;
  text-align: center;
  border-collapse:collapse;
  color: #4B4948;
  border-bottom: #4B4948 1px solid;
}
  
.item-detail table:last-child{
  margin-top: 85px;
}

.item-detail table tr.table-ttl {
  border-top: #4B4948 1px solid;
  border-bottom: #4B4948 1px solid;
  font-size: 18px;
  font-weight: bold;
} 
.item-detail table tr.table-ttl th{
  font-size: 20px;
  padding:20px 0;
}
@media screen and (max-width: 750px) {
  .item-detail table tr.table-ttl th{
    padding:10px 0;
  }
}

.item-detail table .txt th {
  font-size: 14px;
  font-weight: normal;
  padding:0;
  /* width: 16.5%; */
  width: 20%;
  border-right: #4B4948 1px solid;
  text-align: left;
  vertical-align: top;
  white-space: nowrap;
}
  @media screen and (max-width: 979px) {
    .item-detail table .txt th {
      font-size: 3vw;
      padding:1% 1% 1% 0;
      width: 25%;
      line-height: 1.5em;
    }
  }
  
.item-detail table .txt td {
  font-size: 15px;
  vertical-align:middle;
  padding:0;
  vertical-align: top;
  padding-bottom:30px;
}
  @media screen and (max-width: 979px) {
    .item-detail table .txt td {
      padding:3% 1%;
      font-size: 2.6vw;
    }
  }

.item-detail table .t01 th,
.item-detail table .t01 td{
  padding-top:40px;
}
@media screen and (max-width: 979px) {
  .item-detail table .t01 th,
  .item-detail table .t01 td{
    padding-top:30px;
  }
}
  
@media screen and (max-width: 979px) {
  .item-detail table .t01 td {
    font-size: 3.5vw;
  }
}
.item-detail table .t02 td {
  font-size: 13px;
}
@media screen and (max-width: 979px) {
  .item-detail table .t02 td {
    font-size: 3vw;
  }
}
  
.item-detail table .t03 td {
  font-size: 12px;
}
  @media screen and (max-width: 979px) {
    .item-detail table .t03 td {
      font-size: 2.5vw;
    }
  }

.item-detail table .t03 td span{
  font-size: 15px;
}
  @media screen and (max-width: 979px) {
    .item-detail table .t03 td span{
      font-size: 4vw;
      font-weight: bold;
    }
  }

.item-detail table .t04 td {
  vertical-align: middle;
}
.item-detail table .t04 td.a03 img{
  width:38px;
}
@media screen and (max-width: 979px) {
  .item-detail table .t04 td.a03 img{
    width:8.2vw;
  }
}

.item-detail table .t05 td {
  font-size: 12px;
}
  @media screen and (max-width: 979px) {
    .item-detail table .t05 td {
      font-size: 2.5vw;
      vertical-align: top;
    }
  }

.item-detail table .t06 td {
  font-size: 12px;
  padding-top:20px;
  padding-bottom:65px;
}
  @media screen and (max-width: 979px) {
    .item-detail table .t06 td {
      padding-top:2%;
      padding-bottom:30px;
    }
  }

.item-detail table tr.t04 img{
  width:43px;
}
  @media screen and (max-width: 979px) {
    .item-detail table tr.t04 img{
      width:7vw;
    }
  }
.item-detail table .t07 td {
  font-size: 12px;
  text-align: left;
  padding:0 2.5em;
  width: 16%;
}
  @media screen and (max-width: 979px) {
    .item-detail table .t07 td {
      font-size: 2.5vw;
      vertical-align: top;
      padding: 3% 3%;
      width: auto;
    }
  }
.item-detail table .t07 td.center {
  vertical-align: top;
  text-align: center;
}
@media screen and (max-width: 979px) {
  .item-detail table .t07 td.center {
    text-align: center;
  }
}
.item-detail table .txt .buy{
  background-color: #FFF;
  border: #4B4948 1px solid;
  display: inline-block;
  padding: 4px 25px;
}
@media screen and (max-width: 979px) {
  .item-detail table .txt .buy{
    padding: 4% 0;
    font-size: 3vw;
    width: 20vw;
    line-height: 1em;
  }
}
  
.item-detail table .txt a{
  color: #4B4948;
}

/*===============================
 pagetop
================================*/
.footer-sns {
  background-color: #FFF;
}
.pagetop-wrap {
  width: 100%;
  background-color: #fff;
}
.pagetop {
  background-color: #fff;
  z-index: 40;
  position: relative;
  margin:0 auto!important;
  padding-top:69px;
  padding-bottom: 17px;
}
  @media screen and (max-width: 979px) {
    .pagetop {
      width: 100% !important;
    }
  }
  @media screen and (max-width: 750px) {
    .pagetop {
      padding:0px;
    }
  }

/*===============================


 ▼item


================================*/
main.item {
  position: relative;
}
/*===============================
 header
================================*/
/* ヘッダー薄い背景 */
main.item .top_back_bg2{
  position: absolute;
    top: 0;
    height: 92px;
    width: 100%;
    z-index: 9;
    background-color: #66666E;
    opacity: 0;
    mix-blend-mode: multiply;
    transition: all 0.3s ease-in-out;
}
main.item .top_back_bg2.sticky{
  position: fixed;
    top: 0.5;
    opacity: .5;
}
@media screen and (max-width: 979px) {
  main.item .top_back_bg2{
    height: 98px;
  }
}
@media screen and (max-width: 750px) {
  main.item .top_back_bg2{
    height: 64px;
  }
}


/* head-h1 */
.head-logo {
  position: static;/* safariにてフッターの下に隠れるバグ回避 */
  top: 0;
  z-index: 99;
  width: 100%;
}
@media screen and (max-width: 979px) {
  .head-logo {
    position: absolute;
    top: 63px;
    z-index: 99;
  }
}
@media screen and (max-width: 750px) {
  .head-logo {
    position: absolute;
    top: 0;
    z-index: 99;
  }
}

.head-logo .logo_wrap{
    position: absolute;
    top: 0;
    display: block;
}
  @media screen and (max-width: 979px) {
    .head-logo .logo_wrap{
      display: flex;
    }
  }

.head-logo h1.head-h1{
    z-index: 10;
    padding-top:22px;
    padding-left:35px;
    position: relative;
}
  @media screen and (max-width: 979px) {
    .head-logo h1.head-h1{
      padding-top: 17px;
      padding-left: 17px;
    }
  }
.head-logo .head-h1 .head-wp{
    display: flex;
    width:265px;
    padding-bottom:28px;

    overflow: hidden;
    width: 265px; /* 画像の幅に合わせて調整 */
    height: 79px; /* 画像の高さに合わせて調整 */
}
  @media screen and (max-width: 979px) {
    .head-logo .head-h1 .head-wp{
      width: 30vw;
      height: auto;
    }
  }
  @media screen and (max-width: 750px) {
    .head-logo .head-h1 .head-wp{
      width: 30vw;
    }
  }

  .head-logo .logo_wrap.sticky{
    position: fixed;
    top: 0;
    z-index: 99;
  }
.head-logo .head-h1 .head-wp .image img {
  width: 202px;
}
  @media screen and (max-width: 979px) {
    .head-logo .logo_wrap.sticky .head-h1 .head-wp .image{
      position: fixed;
      top: 27px;
      z-index: 110;
    }
    .head-logo .head-h1 .head-wp .image img {
      width: 135px;
      height: auto;
    }
  }
@media screen and (max-width: 750px) {
    .head-logo .head-h1 .head-wp .image img {
      width: 115px;
    }
}
@media screen and (max-width: 570px) {
  .head-logo .logo_wrap.sticky .head-h1 .head-wp .image{
    top: 17px;
  }
.head-logo .head-h1 .head-wp .image img {
    display: block;
    width: 105px;
  }
}

/* header h2 */
.logo_wrap h2 {
  position: fixed;
  top: 0;
  left: 34.5vw;
  padding-top: 27px;
  font-size: 3.5vw;
  color: #FFF;
  line-height: 1.2;
}

/* head-nav */
.head-logo .nav_wrap{
    position: absolute;
    top: 0;
    right: 0;
    font-size: 20px;
    z-index: 100;
    transition: all 0.3s ease;
}
.head-logo .nav_wrap.sticky{
  position:fixed;
}
.head-logo .nav_wrap ul.head-nav{
  position: relative;
  color: #FFF;
  padding: 29px 50px 20px 0;
  height: 45px;
  letter-spacing: 0.05em;
}
main.item .head-logo .nav_wrap ul.head-nav{
  padding-bottom:0px;
}
.head-logo .nav_wrap .head-nav a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
}
.head-logo .nav_wrap ul.head-nav a:nth-child(2){
    margin-left:1.2em;
}
.head-logo .nav_wrap ul.head-nav a:nth-child(3){
  margin-left:1.2em;
}
.head-logo .nav_wrap .head-nav span {
    padding-right:7px;
}
.head-logo .nav_wrap .head-nav span.line {
  margin-left: 1.2rem;
  margin-right: 1.2rem;
}
.head-logo .nav_wrap .head-nav span.pdr00 {
  padding-right:0px;
}

.head-logo .nav_wrap .head-nav a::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 2px;
    bottom: 1px;
    left: 0;
    background-color: #FFF;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s;
}
.head-logo .nav_wrap .head-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* main-vi */
.main-vi{
    background-image: url(../img/wp_fw_top.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: auto;
    padding-top: 47.91%;
    box-sizing: border-box;
    position: relative;
    z-index: 8;
}
.main-vi2{
  background-image: url(../img/wp_rb_top.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
  padding-top: 47.91%;
  box-sizing: border-box;
  position: relative;
  z-index: 8;
}
  @media screen and (max-width: 979px) {
    .main-vi{
      background-image: url(../img/wp_fw_top_sp.jpg);
      height: 100vw;
    }
    .main-vi2{
      background-image: url(../img/wp_rb_top_sp.jpg);
      height: 100vw;
    }
  }
.main-ttl {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 8;
}
.main-ttl .ttl-wrapper {
    position: absolute;
    top: 23vw;
    left: 0;
    transform: translateY(-50%);
    color: #fff;
    margin-left: 35px;
}
  @media screen and (max-width: 979px) {
    .main-ttl .ttl-wrapper {
      margin-left: 0;
      position: absolute;
      top:107vw;
    }
  }

.main-ttl img{
    width: 420px;
    height: 95px;
}
  @media screen and (max-width: 979px) {
    .main-ttl img{
      width: 90vw;
      height: auto;
      margin-left:5vw;
    }
  }

.main-ttl h2{
    font-size: 25px;
    font-weight: bold;
    margin-top: 30px;
    letter-spacing: 0.05em;
    padding-left: 5px;
}
  @media screen and (max-width: 979px) {
    .main-ttl h2{
      padding-left:5vw;
      margin-top:15px;
      font-size: 5.5vw;
    }
  }
.main-ttl h2 span{
  font-weight: normal;
}

/*===============================
 item concept
================================*/
main.fine section.item-concept{
  width: 100%;
  background-color: #202025;
  color: #FFF;
  font-weight: bold;
  position: relative;
}
main.roller section.item-concept{
  width: 100%;
  background-color: #808085;
  color: #FFF;
  font-weight: bold;
  position: relative;
}
  @media screen and (max-width: 979px) {
    section.item-concept{
      background-color: #333338;
    }
  }
section.item-concept .text{
  position: relative;
  z-index: 2;
  width: 60%;
  background-color: #333338;
  padding-top:220px;
  padding-left:170px;
  padding-bottom:240px;
}
  @media screen and (max-width: 979px) {
    section.item-concept .text{
      position: relative;
      top: 200px;
      z-index: 8;
      width: 90vw;
      padding:0 0 50vw 0;
      background-color: #66666E;
    }
    main.roller section.item-concept .text{
      background-color: #333338;
    }
  }
  
section.item-concept .text h3{
  font-size: 40px;
  line-height: 1.75;
}
  @media screen and (max-width: 979px) {
    section.item-concept h3{
      font-size: 28px;
      letter-spacing: 0.32em;
      padding-top:100px;
      padding-left: 20px;
      padding-bottom:50px;
      text-align: center;
      transform: translateY(200px);
    }
  section.item-concept .text h3{
      font-size: 5.4vw;
      padding-top:50px;
      padding-bottom:0px;
      padding-right:20px;
      text-align: left;
      letter-spacing: 0.1em;
      line-height: 1.7;
      transform: translateY(0);
    }
}
section.item-concept .text p{
  font-size: 24px;
  line-height: 2.3;
  padding-top: 95px;
}
  @media screen and (max-width: 979px) {
    section.item-concept .text p{
      font-size: 3.6vw;
      padding-top: 35px;
      padding-left: 20px;
      padding-right:20px;
      padding-bottom: 20px;
      letter-spacing: 0.1em;
      line-height: 2;
    }
  }
  
section.item-concept .pen{
  z-index: 3;
  position: absolute;
  right: -200px;
  top: 220px;
}
/* main.roller section.item-concept .pen{
  z-index: 3;
  position: absolute;
  top: 220px;
} */
@media (max-width: 1140px) and (min-width: 979px) {
  section.item-concept .pen{
    right: -35vw;
  }
}
@media (max-width: 1210px) and (min-width: 979px) {
  main.roller section.item-concept .pen{
    right: -45vw;
  }
}
  @media screen and (max-width: 979px) {
    section.item-concept .pen{
      position: absolute;
      right: -20vw;
      bottom: 0px;
      top: auto;
      z-index: 10;
    }
    /* main.roller section.item-concept .pen{
      position: absolute;
      right: -20vw;
      top: auto;
      z-index: 10;
    } */
  }
  @media screen and (max-width: 750px) {
    section.item-concept .pen{
      bottom: -100px;
    }
  }

section.item-concept .pen .pen2 img{
  position: absolute;
  right:-120px;
}
  @media screen and (max-width: 979px) {
    section.item-concept .pen .pen1 img{
      position: absolute;
      width:100vw;
      bottom:1vw;
      right: 0;
    }
section.item-concept .pen .pen2 img{
  width:100vw;
  right:-10vw;
}
}
section.item-concept .bg {
  position: absolute;
  top: -185px;
  right: 0;
  width: 40%;
  height: 100%;
  background-color: #4D4D52;
  z-index: 1;
}
  @media screen and (max-width: 979px) {
    section.item-concept .bg {
      display: none;
    }
  }

/*===============================
 DETAIL
================================*/
main.fine section.detail{
  width: 100%;
  background-color: #202025;
  position: relative;
  z-index: 3;
  color: #FFF;
  padding-top:200px;
  padding-left:160px;
}
@media screen and (max-width: 979px) {
  main.fine section.detail{
    background-color: #4D4D52;
    padding-left:0;
  }
}
main.roller section.detail{
  width: 100%;
  background-color: #808085;
  position: relative;
  z-index: 3;
  color: #FFF;
  padding-top:200px;
  padding-left:0;
}
@media screen and (max-width: 979px) {
  main.roller section.detail{
    background-color: #4D4D52;
  }
}

main.fine section.detail h3{
      font-size:42px;
      font-weight: bold;
      letter-spacing: 0.32em;
  }
@media screen and (max-width: 979px) {
  main.fine section.detail h3{
      font-size: 38px;
      letter-spacing: 0.32em;
      padding-top:150px;
      padding-bottom:50px;
      text-align: center;
  }
}
@media screen and (max-width: 750px) {
  main.fine section.detail h3{
    font-size: 28px;
  }
}

main.roller section.detail h3{
  font-size:42px;
  padding-left:160px;
  letter-spacing: 0.32em;
}
@media screen and (max-width: 979px) {
  main.roller section.detail h3{
    font-size: 38px;
    letter-spacing: 0.32em;
    padding-top:150px;
    padding-bottom:50px;
    text-align: center;
    padding-left: 0;
}
}
@media screen and (max-width: 750px) {
  main.roller section.detail h3{
    font-size: 28px;
  }
}

main.fine section.detail p.copy{
    font-size:22px;
    font-weight: bold;
    letter-spacing: 0.1em;
    padding:46px 0 130px 0;
    line-height: 2.1;
  }
  @media screen and (max-width: 979px) {
    main.fine section.detail p.copy{
      font-size: 3vw;
      padding:0 20px 50px 20px;
      letter-spacing: 0.1em;
      line-height: 2;
      text-align: left;
    }
  }
  @media screen and (max-width: 750px) {
    main.fine section.detail p.copy{
      font-size: 16px;
    }
  }

  main.roller section.detail p.copy{
    font-size:22px;
    font-weight: bold;
    letter-spacing: 0.1em;
    padding:46px 0 130px 160px;
    line-height: 2.1;
  }
  @media screen and (max-width: 979px) {
    main.roller section.detail p.copy{
      font-size: 3vw;
      padding:0 20px 50px 20px;
      letter-spacing: 0.1em;
      line-height: 2;
      text-align: left;
    }
  }
  @media screen and (max-width: 750px) {
    main.roller section.detail p.copy{
      font-size: 16px;
    }
  }

section.detail .content{
  width:calc(100% - 160px);
  transform:translateY(155px);
  color: #000;
  margin-top: -155px;
}
main.roller section.detail .content {
  position: relative;
  color: #FFF;
  width: 100%;
}
@media screen and (max-width: 979px) {
  section.detail .content{
    width:100%;
    transform:translateY(0);
    margin-top: 0;
    background-color: #69696D;
    padding-bottom:160px;
  }
}
  
section.detail .box{
  background-color: #E2E2E6;
  justify-content: start;
}
@media screen and (max-width: 979px) {
  section.detail .box{
    flex-direction: column;
    position: relative;
    z-index: 10;
    background-color:transparent;
  }
}
section.detail .box:nth-child(n + 2){
  margin-top:23px;
}
section.detail .content .box .left img {
  width: 100%;
  object-fit: cover;
  max-width: 636px;
}
@media screen and (max-width: 979px) {
  section.detail .content .box .left img {
    max-width: 100%;
  }
}
  
section.detail .box .right {
  width: 50%;
  color: #4B4948;
  padding:4% 4% 4% 4%;
}
@media screen and (max-width: 979px) {
  section.detail .box .right {
    color: #FFF;
    padding:0 20px;
    width: 90%;
  }
}
section.detail .box .right h4 {
  font-size: 1.8vw;
  font-weight: bold;
  letter-spacing: 0.32em;
  padding-bottom: 20px;
  display: flex;
}
section.detail .box .right h4 span{
  display: flex;
}
section.detail .box .right h4 img{
  width: 2.2vw;
  position: relative;
}
@media screen and (max-width: 979px) {
  section.detail .box h4 {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 0.32em;
    padding-top:30px;
    padding-left:20px;
    padding-bottom: 15px;
    color: #FFF;
  }
  section.detail .box h4 img{
    width: 5%;
    vertical-align: middle;
    position: relative;
    bottom: 0.5vw;
  }
}
@media screen and (max-width: 750px) {
  section.detail .box h4 {
    font-size: 20px;
  }
  section.detail .box h4 img{
    width: 6%;
  }
}

section.detail .box .right h5 {
  font-size: 2.1vw;
  font-weight: bold;
  padding-bottom: 20px;
}
@media screen and (max-width: 979px) {
  section.detail .box .right h5 {
    font-size: 25px;
    font-weight: bold;
    padding-top: 30px;
    padding-bottom: 15px;
  }
}
section.detail .box .right p {
  font-size: 1.3vw;
  line-height: 2.1;
}
@media screen and (max-width: 979px) {
  section.detail .box .right p {
    font-size: 16px;
    line-height: 1.6;
  }
}

/* SP版背景 */
.detail .bgc{
  position: absolute;
  background-color: #4D4D52;
  width: 10vw;
  height: 100%;
  right:0
}

/* Roller detail content */
section.detail .con01 {
  background-color: #69696D;
  display: flex;
  justify-content: center;
}
section.detail .con02 {
  background-color: #808085;
  display: flex;
  justify-content: center;
}
section.detail .con03 {
  background-color: #69696D;
  display: flex;
  justify-content: center;
}
  @media screen and (max-width: 979px) {
    section.detail .con01 {
    background-color: transparent;
    position: relative;
    z-index: 10;
    }
    section.detail .con02 {
      background-color: transparent;
      position: relative;
      z-index: 10;
    }
    section.detail .con03 {
      background-color: transparent;
      position: relative;
      z-index: 10;
    }
  }
section.detail .detail_video {
  max-width:1100px;
  width:100%;
  margin: 62px 160px 0 160px;
}
  @media screen and (max-width: 979px) {
    section.detail .detail_video {
      margin: 0;
    }
  }
    
section.detail .detail_video video {
  width: 100%;
}
section.detail .detail_video .text {
  padding-top: 55px;
  padding-bottom: 110px;
}
  @media screen and (max-width: 979px) {
    section.detail .con03 .detail_video .text {
      padding-bottom: 0px;
    }
    section.detail .detail_video .text {
      flex-direction: column;
      padding-left: 20px;
      padding-top:35px;
      padding-bottom: 65px;
      width: 90vw;
    }
  }
  
section.detail .detail_video .text .left{
  width:30%;
  padding-top: 5px;
}
  @media screen and (max-width: 979px) {
    section.detail .detail_video .text .left{
      width:100%;
      padding-top: 0;
      padding-bottom: 15px;
    }
  }
section.detail .detail_video .text .right{
  width:70%;
}
section.detail .detail_video .text .left h4 {
  font-size: 24px;
  letter-spacing: 0.32em;
  padding-bottom: 20px;
}
section.detail .detail_video .text .left h4 span{
  position: relative;
}
section.detail .detail_video .text .left h4 img{
  width:26px;
  position: absolute;
  top:1px;
}
  @media screen and (max-width: 979px) {
    section.detail .detail_video h4 {
      font-size: 28px;
      letter-spacing: 0.32em;
      padding:25px 0 20px 20px;
      display: flex;
      align-items: center;
    }
    section.detail .detail_video h4 img {
      width: 5vw;
      vertical-align: middle;
      position: relative;
    }
  }
  @media screen and (max-width: 750px) {
    section.detail .detail_video h4 {
      font-size: 20px;
      display: flex;
    }
    section.detail .detail_video h4 img {
      width: 6vw;
    }
  }

section.detail .detail_video .text .left h5 {
  font-size: 33px;
}
  @media screen and (max-width: 979px) {
    section.detail .detail_video .text .left h5 {
      font-size: 24px;
    }
  }

section.detail .detail_video .text .right {
  font-size: 18px;
  line-height: 2em;
}
  @media screen and (max-width: 979px) {
    section.detail .detail_video .text .right {
      font-size: 16px;
      width: 100%;
      line-height: 1.6;
    }
  }
  @media screen and (max-width: 750px) {
    section.detail .detail_video .text .right {
      font-size: 14px;
    }
  }

/*===============================
 WRITING
================================*/
section.writing {
  padding-top:400px;
  padding-bottom:100px;
  background-color: #4D4D52;
  position: relative;
  color: #FFF;
}
@media screen and (max-width: 979px) {
  section.writing {
    padding-top:170px;
    background-color: #2F2F34;
  }
}
section.writing .ttl01 {
  padding-left:160px;
}
@media screen and (max-width: 979px) {
  section.writing .ttl01 {
    padding-left:0;
  }
}
section.writing .ttl01 h3{
  font-size:42px;
  font-weight: bold;
  letter-spacing: 0.32em;
}
@media screen and (max-width: 979px) {
  section.writing .ttl01 h3{
    font-size: 38px;
    letter-spacing: 0.32em;
    padding-bottom:50px;
    text-align: center;
  }
}
@media screen and (max-width: 750px) {
  section.writing .ttl01 h3{
    font-size: 28px;
  }
}

section.writing .ttl01 p{
  font-size:22px;
  font-weight: bold;
  letter-spacing: 0.1em;
  padding:46px 0 100px 0;
  line-height: 2.1;
}
@media screen and (max-width: 979px) {
  section.writing .ttl01 p{
    font-size: 3vw;
    line-height: 1.6;
    padding: 0 20px 40px 20px;
  }
}
@media screen and (max-width: 750px) {
  section.writing .ttl01 p{
    font-size: 16px;
    line-height: 1.6;
    padding: 0 20px 40px 20px;
  }
}


/* 手前スライド */
@media screen and (max-width: 979px) {
  section.writing .main-swiper {
    background-color: #808080;
    padding-top:10px;
    padding-bottom:10px;
  }
}
section.writing .main-swiper {
}
section.writing .main-swiper .swiper-wrapper {
  padding:20px 0;
}

section.writing .main-swiper .swiper-slide{
  width: 100%;
  height: auto;
  transform: scale(.8);
  transition: .7s;
}
section.writing .main-swiper .swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position:center center;
  cursor: pointer;
}
section.writing .main-swiper .swiper-slide-active{
  transform: scale(.9); /* 中央のスライドは小さくしない */
  z-index: 1; /* 中央のスライドを一番上にする */
  overflow: hidden;
  box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.62);
}

section.writing .main-swiper .swiper-slide-active:hover {
  z-index: 1; /* 中央のスライドを一番上にする */
  transition: .8s;
}
section.writing .main-swiper .swiper-slide-active img {
object-fit:cover;
transition: .4s;
}
section.writing .main-swiper .swiper-slide-active:hover img {
transform: scale(1.1);
}
section.writing .main-swiper .swiper-button-prev {
left:13%;
color: #FFF;
}
section.writing .main-swiper .swiper-button-next {
right:13%;
color: #FFF;
}
@media screen and (max-width: 979px) {
  section.writing .main-swiper .swiper-button-prev {
    left:10%;
  }
  section.writing .main-swiper .swiper-button-next {
    right:10%;
  }
}
@media screen and (max-width: 750px) {
  section.writing .main-swiper .swiper-button-prev {
    left:8%;
  }
  section.writing .main-swiper .swiper-button-next {
    right:8%;
  }
}

/* モーダル */
.modal2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  pointer-events: none;
  opacity: 0;
  z-index: 90;
  background-color: #333338;
}
@media screen and (max-width: 979px) {
  .modal2 {
    /* background-color: #0a0a0ad6; */
    background-color: #000;
  }
}

/* モーダルがactiveの時 */
.modal2.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* モーダル背景のオーバーレイ部分 */
.modal2 .modal__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

/* モーダルのコンテンツ */
.modal2 .modal__content {
  position: relative;
  background-color: #4D4D52;
  width: 90%;
  height: 85%;
  padding: 0;
  color: #fff;
  overflow: hidden;
  max-width: 1220px;
}
@media screen and (max-width: 979px) {
  .modal2 .modal__content {
    width: 100%;
    height: 90%;
    margin-top:100px;
    background-color: #000;
  }
}
.modal2 .modal__content .modal__slider {
  width: 100%;
  height: 100%;
}
.modal2 .modal__content .swiper-wrapper .modal__slide .slide {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: top;
  justify-content: center;
}
@media screen and (max-width: 979px) {
  .modal2 .modal__content .swiper-wrapper .modal__slide .slide {
    height: auto;
    display: block;
  }
}
  
.modal2 .modal__content .swiper-wrapper .modal__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.62);
}
/* モーダルを閉じるボタン */
.modal2 .modal__close-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: 10;
  margin-top:26px;
  margin-right:20px;
}
@media screen and (max-width: 979px) {
  .modal2 .modal__close-btn {
    width: 74px;
    height: 100px;
    margin-top:0;
    margin-right:10px;
  }
}
@media screen and (max-width: 750px) {
  .modal2 .modal__close-btn {
    width: 52px;
  }
}

/* ナビ */
.modal2 .swiper-button-next,
.modal2 .swiper-button-prev {
  color: #FFF;
}
.modal2 .swiper-button-prev,
.modal2 .swiper-rtl .swiper-button-next {
  left: 7.5%;
}
.modal2 .swiper-button-next,
.modal2 .swiper-rtl .swiper-button-prev {
  right: 7.5%;
}
@media screen and (max-width: 979px) {
  .modal2 .swiper-button-prev,
  .modal2 .swiper-rtl .swiper-button-next {
    left: -15%;
    top:60%;
    transform: translateY(-50%);
  }
  .modal2 .swiper-button-next,
  .modal2 .swiper-rtl .swiper-button-prev {
    right: -15%;
    top:60%;
    transform: translateY(-50%);
  }
}

/* ナビ縦位置調整 */
.modal2 .nav-image-wrap {
  height: 90%;
}
.modal2 .nav-image {
  height:100%;
}
@media screen and (max-width: 979px) {
  .modal2 .nav-image-wrap {
    display: flex;
    position: relative;
  }  
}

/* テキスト系 */
.writing .slide {
  display: flex;
  font-weight: bold;
}
.writing .slide .width{
  width: 75%;
  padding-top:15px;
}
@media screen and (max-width: 979px) {
  .writing .slide .width{
    width: 70%;
    margin: 0 auto;
    padding-top:10vh;
  }
}
.writing .slide .circle{
  display: inline-block;
  position: relative;
  top: -4px;
  align-items: center;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  line-height: 32px;
  text-align: center;
  border: #FFF solid 3px;
  font-size: 22px;
  font-weight: bold;
  vertical-align: middle;
  letter-spacing: 0.1em;
  margin-left: 2px;
  padding-left: 1px;
}
.writing .slide h4 {
  padding-top:1vw;
}
@media screen and (max-width: 979px) {
  .writing .slide h4 {
    padding-top: 3.5vh;
    padding-bottom:15px;
  }
  .writing .slide h4 img {
    width: 8vw !important;
    vertical-align: middle;
    object-fit: contain !important;
  }
}
.writing .slide .txt01{
  font-size: 31px;
  letter-spacing: 0.32em;
}
@media screen and (max-width: 979px) {
  .writing .slide .txt01{
    font-size: 7vw;
  }
}
.writing .slide .txt02{
  font-size: 22px;
  padding-left: 22px;
}
@media (max-width: 1160px) and (min-width: 979px) {
  .writing .slide .txt02{
    font-size: 18px;
    padding-left: 10px;
  }
}
@media screen and (max-width: 979px) {
  .writing .slide .txt02{
    font-size: 6.5vw;
    padding-left: 0;
  }
}
.writing .slide .txt03{
  font-size: 17px;
  font-weight: normal;
  padding-left: 40px;
}
@media (max-width: 1160px) and (min-width: 979px) {
  .writing .slide .txt03{
    font-size: 14px;
    padding-left: 10px;
  }
}
@media screen and (max-width: 979px) {
  .writing .slide .txt03{
    font-size: 3.5vw;
    padding-left: 0;
    padding-top:15px;
  }
}
@media screen and (max-width: 750px) {
  .writing .slide .txt03{
    font-size: 16px;
  }
}