@charset "utf-8";
/* ====================================
common
=====================================*/

/* * { outline: 2px solid red; } */

:root {
    --primary-white: #F9F5EF;
    --primary-whiteLow: #8D5904; /* 薄さ15％にして活用　主にメニューや悩み、FAQとかの背景 */
    --primary-black: #231815;
    --primary-beige: #9F804D; /* 薄さ70％にして活用　SNSの部分 */
    --primary-red: #A03E22;
    --contentWidth: 80%; /* sp サイドの余白 */
    --contentPadding: 10%; /* sp サイドの余白 */
}

html {
    font-size: 62.5%;
}

body {
    font-family:
        YakuHanMP, 
        "Shippori Mincho",
        "Libre Caslon Text",
         serif;
    color: var(--primary-black, #231815);
    line-height: 1;
}

img {
    max-width: 100%;
    height: auto;
}

/* .topic__main {
    color: var(--primary-black, #231815);
    font-size: 2.0rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.08rem;
}

.topic__sub {
    color: var(--primary-red, #A03E22);
    font-family: "Libre Caslon Text";
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.048rem;
} */







/* ==============================
loading
===============================*/

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  background: url(../images/background01.png);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeOut 1.0s 3.5s forwards;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.loading__logo {
  opacity: 0;
  animation: logo_fade 3.0s 0.8s forwards;
  width: 50px;
}

@keyframes logo_fade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  60% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
  }
}


/* ==================
768px
===================*/
@media screen and (min-width: 768px) and (max-width: 959px){

  .loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    background: url(../images/background01.png);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeOut 1.0s 3.5s forwards;
  }
  
  @keyframes fadeOut {
    0% {
      opacity: 1;
    }
  
    100% {
      opacity: 0;
      visibility: hidden;
    }
  }
  
  .loading__logo {
    opacity: 0;
    animation: logo_fade 3.0s 0.8s forwards;
    width: 60px;
  }
  
  @keyframes logo_fade {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
  
    60% {
      opacity: 1;
      transform: translateY(0);
    }
  
    100% {
      opacity: 0;
    }
  }

}



/* ==================
pc
===================*/
@media screen and (min-width: 960px){

  .loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    background: url(../images/background01.png);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeOut 1.0s 3.5s forwards;
  }
  
  @keyframes fadeOut {
    0% {
      opacity: 1;
    }
  
    100% {
      opacity: 0;
      visibility: hidden;
    }
  }
  
  .loading__logo {
    opacity: 0;
    animation: logo_fade 3.0s 0.8s forwards;
    width: 80px;
  }
  
  @keyframes logo_fade {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
  
    60% {
      opacity: 1;
      transform: translateY(0);
    }
  
    100% {
      opacity: 0;
    }
  }

}




/* ==============================
header
============================== */

.header {
    padding: 0 4.2%;
    height: 100vh;
    display: flex;
    justify-content: space-between;
}

.logo {
    width: 40px;
    height: 70px;
    margin: 16px 0;
}

.header__btn {
    width: 40px;
    height: 40px;
    margin-top: 16px;
    margin-right: 4.2%;
    z-index: 11;
    position: absolute;
    right: 0;
    position: fixed;
}

.header__btn__menu {
    padding: 0 0 0 0;
    height: 80px;
    display: flex;
    justify-content: space-between;
}

/* .nav初期表示 */

.nav {
    background-image: url(../images/background01.png);
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;
}

.nav__header {
    padding: 0 0 0 4.2%;
    height: 80px;
    display: flex;
    justify-content: space-between;
}

.nav__btn {
    display: block;
    width: 40px;
    height: 40px;
    margin-top: 16px;
    margin-right: 4.2%;
}

.nav__list {
    margin-top: 60px;
}

.nav__item {
    color: var(--primary-black);
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.08rem;
    margin-top: 36px;
    text-align: center;
}

.nav__group {
  padding: 0 30%;
}

.nav__group__item1 {
    color: var(--primary-white);
    background-color: var(--primary-red);
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.056rem;
    padding: 10px 1px;
    text-align: center;
    /* width: 155px;
    height: 38px; */
    margin: 0 auto;
    margin-top: 40px;
    border-radius: 50px;
}

.nav__group__item {
    color: var(--primary-black);
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.056rem;
    padding: 10px 1px;
    text-align: center;
    /* width: 155px;
    height: 38px; */
    margin: 0 auto;
    margin-top: 15px;
    border-radius: 50px;
    border: 1px solid rgba(35, 24, 21, 0.50);
}

/* .nav.activeの表示 */

.nav.active {
    transform: translateX(0);
}

.pc__sidebar {
    display: none;
}


/*=============================================================================
 header pc 
 =============================================================================*/
@media screen and (min-width: 960px){

  .header {
    padding: 0 4.2%;
    height: 52vw;
    display: flex;
    justify-content: space-between;
}
    
  .nav {
      display: none;
  }

  .header__btn__menu {
      display: none;
  }

  .pc__sidebar {
      display: block;
      position: fixed;
      top: 260px;
      left: 4%;
      z-index: 200;
      mix-blend-mode: normal;
      color: var(--primary-white);
  }

  .sidebar__nav__item {
      color: var(--primary-white);
      font-family: "Shippori Mincho";
      font-size: 1.6rem;
      font-style: normal;
      font-weight: 500;
      line-height: normal;
      letter-spacing: 0.064rem;
      margin-top: 22px;
      /* z-index: 999; */
  }

  .sidebar__nav__item.black {
    color: var(--primary-black);
  }

  .sidebar__nav__item.hide {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }

  

  .logo {
      width: 54px;
      height: 94px;  
      position: fixed;
      top: 30px;
      left: 4%;
      z-index: 200;
  }

  .logo.fade-out {
      opacity: 0;
      transition: opacity 0.2s ease;
      pointer-events: none;
    }

    .logo.fade-in {
      opacity: 1;
      transition: opacity 0.2s ease;
      pointer-events: auto;
    }



}

/* header pc end */




/* ==================================
FV
===================================*/

.slider__list__pc {
    display: none;
}

.slider__group {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index:-1;
}

/* ↓　ここはPC版も個別に同じ内容に書き換える（SP版 display noneするとき） */

.slider__list__sp {
    position: relative;
    height: 100vh;
}

.image {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    background-size: cover;
    background-position: center center;
    animation: image-switch-animation 30s infinite;
  }

  .src1 {
    background-image: url(../images/sp_head_2.png);
  }
  .src2 {
    background-image: url(../images/sp_body_2.png);
  }
  .src3 {
    background-image: url(../images/sp_femcare_1.png);
  }
  .src4 {
    background-image: url(../images/sp_head_1.png);
  }
  .src5 {
    background-image: url(../images/sp_foot_1.png);
  }

  @keyframes image-switch-animation {
    0%{ opacity: 0;}
    10%{ opacity: 1;}
    20%{ opacity: 1;}
    30%{ opacity: 0;}
    100%{ opacity: 0;}
  }

  .image:nth-of-type(1) {
    animation-delay: 0s;
  }
  .image:nth-of-type(2) {
    animation-delay: 6s;
  }
  .image:nth-of-type(3) {
    animation-delay: 12s;
  }
  .image:nth-of-type(4) {
    animation-delay: 18s;
  }
  .image:nth-of-type(5) {
    animation-delay: 24s;
  }




/* ==========================================================
FV pc 
============================================================*/
@media screen and (min-width: 960px){

  .slider__list__sp {
      display: none;
  }

  .slider__list__pc {
      position: relative;
      height: 100vh;
      display: block;
  }
  
  .image {
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      opacity: 0;
      background-size: cover;
      background-position: center center;
      animation: image-switch-animation 30s infinite;
    }
  
    .src1 {
      background-image: url(../images/pc_head_2.png);
    }
    .src2 {
      background-image: url(../images/pc_body_2.png);
    }
    .src3 {
      background-image: url(../images/pc_femcare_1.png);
    }
    .src4 {
      background-image: url(../images/pc_head_1.png);
    }
    .src5 {
      background-image: url(../images/pc_foot_1.png);
    }
  
    @keyframes image-switch-animation {
      0%{ opacity: 0;}
      10%{ opacity: 1;}
      20%{ opacity: 1;}
      30%{ opacity: 0;}
      100%{ opacity: 0;}
    }
  
    .image:nth-of-type(1) {
      animation-delay: 0s;
    }
    .image:nth-of-type(2) {
      animation-delay: 6s;
    }
    .image:nth-of-type(3) {
      animation-delay: 12s;
    }
    .image:nth-of-type(4) {
      animation-delay: 18s;
    }
    .image:nth-of-type(5) {
      animation-delay: 24s;
    }

}

/* FV pc end */





/* ==================================
scroll
===================================*/

.scroll {
    position: absolute;
    right: 5%;
    top: 80%;
    writing-mode: vertical-rl;
    color: var(--primary-white);
  }
  /* 線のアニメーション部分 */
  .scroll::before {
    animation: scroll 5s infinite;
    background-color: var(--primary-white);
    bottom: -115px;
    content: "";
    height: 100px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 1px;
  }
  /* 線のアニメーション */
  @keyframes scroll {
    0% {
      transform: scale(1, 0);
      transform-origin: 0 0;
    }
    50% {
      transform: scale(1, 1);
      transform-origin: 0 0;
    }
    51% {
      transform: scale(1, 1);
      transform-origin: 0 100%;
    }
    100% {
      transform: scale(1, 0);
      transform-origin: 0 100%;
    }
  }




/* ==============================================================
scroll pc 
================================================================*/
@media screen and (min-width: 960px){

  .scroll {
      position: absolute;
      right: 4%;
      top: 80%;
      writing-mode: vertical-rl;
      /* z-index: 999; */
      color: var(--primary-white);
      font-size: 1.6rem;
    }
    /* 線のアニメーション部分 */
    .scroll::before {
      animation: scroll 5s infinite;
      background-color: var(--primary-white);
      bottom: -115px;
      content: "";
      height: 100px;
      left: 0;
      margin: auto;
      position: absolute;
      right: 0;
      width: 1px;
    }
    /* 線のアニメーション */
    @keyframes scroll {
      0% {
        transform: scale(1, 0);
        transform-origin: 0 0;
      }
      50% {
        transform: scale(1, 1);
        transform-origin: 0 0;
      }
      51% {
        transform: scale(1, 1);
        transform-origin: 0 100%;
      }
      100% {
        transform: scale(1, 0);
        transform-origin: 0 100%;
      }
    }
}






/* ==================================
about
===================================*/

.section--about {
    padding: 100px 10% 60px;
    opacity: 0.8;
    background: linear-gradient( rgba(33, 15, 1, 0),rgba(33, 15, 1, 0.2)40%,rgba(33, 15, 1, 0.8));
    width: 100%;
}

.mainCaption {
    /* width: 300px; */
    margin: 0 auto;
}

.mainCaption__list {
    color: var(--primary-white);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 210%; /* 33.6px */
    letter-spacing: 0.16rem;
}

.mainCaption__item br {
    margin-top: 40px;
}

.mainCaption__item {
    margin-top: 40px;
}

/* ★★★ここのボタン中央配置する方法他にないか、margin-topではなくpaddingとか　↓ */


.about__btn {
    margin-top: 80px;   
    display: flex;
    justify-content: center;
    margin-bottom: 100px;
}

.btn-w {
    color: var(--primary-white);
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.14rem;
    display: flex;
    align-items: center;
    transition: 0.4s;
    text-decoration: none;
}

.btn-w::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    background-image: url(../images/arrow-btn-w.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin: 0 0 0 30px;
}

.about__btn .btn-w:hover {
    opacity: 0.5;
}



/*=============================================================================
768px 
 =============================================================================*/
 @media screen and (min-width: 768px) and (max-width: 959px){

  .section--about {
    padding: 100px 24% 60px;
    opacity: 0.8;
    background: linear-gradient( rgba(33, 15, 1, 0),rgba(33, 15, 1, 0.2)40%,rgba(33, 15, 1, 0.8));
    width: 100%;
}

.mainCaption {
    width: 100%;
}

.mainCaption__list {
    color: var(--primary-white);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 210%; /* 33.6px */
    letter-spacing: 0.16rem;
    /* margin-left: 30%; */
}

.mainCaption__item br {
    display: none;
}

.mainCaption__item {
    margin-top: 40px;
}

/* ★★★ここのボタン中央配置する方法他にないか、margin-topではなくpaddingとか　↓ */


.about__btn {
    margin-top: 80px;   
    display: flex;
    justify-content: center;
    margin-bottom: 100px;
}

.btn-w {
    color: var(--primary-white);
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.14rem;
    display: flex;
    align-items: center;
    transition: 0.4s;
    text-decoration: none;
}

.btn-w::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    background-image: url(../images/arrow-btn-w.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin: 0 0 0 30px;
}

.about__btn .btn-w:hover {
    opacity: 0.5;
}


 }





/* =================================================================
about pc 
====================================================================*/

/* ここは文章の配置的にもう1段階500pxくらいのときに設けた方がいいかも */

@media screen and (min-width: 960px){

  .section--about {
      padding: 120px 10% 200px;
      width:100%;
      opacity: 0.8;
      background: linear-gradient( rgba(33, 15, 1, 0),rgba(33, 15, 1, 0.2)40%,rgba(33, 15, 1, 0.8));
      width: 100%;
  }
  
  .mainCaption {
      width: 410px;
      margin-left: 59.375%;
  }
  
  .mainCaption__list {
      color: var(--primary-white);
      font-size: 1.8rem;
      font-weight: 400;
      line-height: 210%; /* 33.6px */
      letter-spacing: 0.16rem;
  }
  
  .mainCaption__item br {
      margin-top: 40px;
  }
  
  .mainCaption__item {
      margin-top: 40px;
  }
  
  .about__btn {
      margin-top: 80px;   
      display: block;
      margin-bottom: 100px;
      margin-left: 0%;
  }
  
  .btn-w {
      color: var(--primary-white);
      font-size: 1.6rem;
      font-weight: 500;
      line-height: 1;
      letter-spacing: 0.14rem;
      display: flex;
      align-items: center;
      transition: 0.4s;

  }
  
  .btn-w::after {
      content: '';
      display: inline-block;
      width: 46px;
      height: 46px;
      background-image: url(../images/arrow-btn-w.svg);
      background-repeat: no-repeat;
      background-size: contain;
      background-position: center;
      margin: 0 0 0 30px;
  }
  
  .about__btn .btn-w:hover {
      opacity: 0.5;
  }
}

/* about pc end */



/* ==================================
femcare
===================================*/

.section--femcare {
  padding: 80px 6%;
  background-image: url(../images/background01.png);
  width: 100%;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.section--femcare::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 120%;
  height: 120%;
  background: url(../images/gradation01.png) center/cover no-repeat;
  opacity: 0.5;
  z-index: -1; /* テキストより後ろ、背景より前にしたい場合は要調整 */
  pointer-events: none;
}

.femcare__txt__group {
  margin: 0 auto;
}

.topic__sub {
  color: var(--primary-red);
  font-family: "Libre Caslon Text";
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.048rem;
  margin-left: 2px;
}

.topic__main {
  color: var(--primary-black);
  font-size: 2.0rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08rem;
  margin-top: 10px;
}

.femcare__txt1 {
  color: var(--primary-black);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 210%; /* 29.4px */
  letter-spacing: 0.112rem;
  margin-top: 40px;
}

.femcare__txt2 {
  color: var(--primary-black);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 210%; /* 29.4px */
  letter-spacing: 0.112rem;
  margin-top: 20px;
}

.femcare__btn {
  margin-top: 40px;   
  display: flex;
  justify-content: center;
}

.btn {
  color: var(--primary-black);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.14rem;
  display: flex;
  align-items: center;
  transition: 0.4s;
  text-decoration: none;
}

.btn::after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url(../images/arrow-btn.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin: 0 0 0 30px;
}

.btn:hover {
  opacity: 0.5;
}

.femcare__img {
  min-width: 330px;
  margin-top: 40px;
}

.femcare__img1 {
  width: 270px;
  height: 270px;
  margin-left: 60px;
  object-fit: cover;
  z-index: 11;
}

.femcare__img2 {
  width: 212px;
  height: 133px; 
  margin-top: 20px;
  z-index: 11;
}





/*=============================================================================
768px 
 =============================================================================*/
 @media screen and (min-width: 768px) and (max-width: 959px){

  .section--femcare {
    padding: 80px 24%;
    background-image: url(../images/background01.png);
    width: 100%;
    position: relative;
    z-index: 0;
    overflow: hidden;
  }
  
  .section--femcare::before {
    content: "";
    position: absolute;
    top: -70%;
    left: -40%;
    width: 160%;
    height: 160%;
    background: url(../images/gradation01.png) center/cover no-repeat;
    opacity: 0.5;
    z-index: -1; /* テキストより後ろ、背景より前にしたい場合は要調整 */
    pointer-events: none;
  }

  .femcare__group {
    /* display: flex; */
    z-index: 2;
}
  
  .femcare__txt__group {
    margin: 0 auto;
  }
  
  .topic__sub {
    color: var(--primary-red);
    font-family: "Libre Caslon Text";
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.048rem;
    margin-left: 2px;
  }
  
  .topic__main {
    color: var(--primary-black);
    font-size: 2.0rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.08rem;
    margin-top: 10px;
  }
  
  .femcare__txt1 {
    color: var(--primary-black);
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 210%; /* 29.4px */
    letter-spacing: 0.112rem;
    margin-top: 40px;
  }
  
  .femcare__txt2 {
    color: var(--primary-black);
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 210%; /* 29.4px */
    letter-spacing: 0.112rem;
    margin-top: 20px;
  }
  
  .femcare__btn {
    margin-top: 40px;   
    display: flex;
    justify-content: center;
  }
  
  .btn {
    color: var(--primary-black);
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.14rem;
    display: flex;
    align-items: center;
    transition: 0.4s;
    text-decoration: none;
  }
  
  .btn::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    background-image: url(../images/arrow-btn.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin: 0 0 0 30px;
  }
  
  .btn:hover {
    opacity: 0.5;
  }

.femcare__img {
    padding: 0 0 0 4%;
}

.femcare__img1 {
    width: 80%;
    max-width: 295px;
    height: auto;
    max-height: 295px;
    margin-left: 24%;
    object-fit: cover;
    margin-top: 20px
}

.femcare__img2 {
    width: 70%;
    max-width: 315px;
    height: auto; 
    margin-top: 30px;
}
    

 }






/* ===================================================================
femcare pc 
=====================================================================*/
@media screen and (min-width: 960px){

  .section--femcare {
    padding: 100px 0 140px 0;
    background-image: url(../images/background01.png);
    width: 100%;
    position: relative;
    z-index: 0;
    overflow: hidden;
  }
  
  .section--femcare::before {
    content: "";
    position: absolute;
    top: -30%;
    left: -30%;
    width: 110%;
    height: 120%;
    background: url(../images/gradation01.png) center/cover no-repeat;
    opacity: 0.5;
    z-index: -1; 
    pointer-events: none;
  }

  .femcare__group {
      display: flex;
      z-index: 2;
  }
  
  .femcare__txt__group {
      width: 40%;
      margin-left: 25.69%;
      margin-right: 0;
      margin-top: 50px;
      z-index: 1;
  }
  
  .topic__sub {
      color: var(--primary-red);
      font-family: "Libre Caslon Text";
      font-size: 1.6rem;
      font-weight: 500;
      line-height: 1;
      letter-spacing: 0.064rem;
      margin-left: 3px;
  }
  
  .topic__main {
      color: var(--primary-black);
      font-size: 3.2rem;
      font-weight: 500;
      line-height: 1;
      letter-spacing: 0.128rem;
      margin-top: 12px;
  }
  
  .femcare__txt1 {
      color: var(--primary-black);
      font-size: 1.6rem;
      font-weight: 400;
      line-height: 210%; /* 29.4px */
      letter-spacing: 0.112rem;
      margin-top: 80px;
  }
  
  .femcare__txt2 {
      color: var(--primary-black);
      font-size: 1.6rem;
      font-weight: 400;
      line-height: 210%; /* 29.4px */
      letter-spacing: 0.112rem;
      margin-top: 30px;
  }
  
  .femcare__btn {
      margin-top: 80px;   
      display: block;
      margin-bottom: 100px;
      margin-left: 0%;
  }
  
  .btn {
      color: var(--primary-black);
      font-size: 1.6rem;
      font-weight: 500;
      line-height: 1;
      letter-spacing: 0.14rem;
      display: flex;
      align-items: center;
      transition: 0.4s;

  }
  
  .btn::after {
      content: '';
      display: inline-block;
      width: 46px;
      height: 46px;
      background-image: url(../images/arrow-btn.svg);
      background-repeat: no-repeat;
      background-size: contain;
      background-position: center;
      margin: 0 0 0 30px;
  }
  
 
  .btn:hover {
      opacity: 0.5;
  }
  
  .femcare__img {
      padding: 8% 10% 0 4%;
  }
  
  .femcare__img1 {
      width: 80%;
      /* max-width: 395px; */
      height: auto;
      max-height: 395px;
      margin-left: 14%;
      object-fit: cover;
  }
  
  .femcare__img2 {
      width: 70%;
      max-width: 315px;
      height: auto; 
      margin-top: 60px;
  }



}


/* ==================================
menu
===================================*/

.section--menu {
  padding: 20px 0 0 0;
  background-image: url(../images/background01.png);
  width: 100%;
}

.menu__topic {
  padding: 0 6%;
  margin: 0 auto;
}

.menu__list {
  margin-top: 40px;
  min-height: 180px;
  width: 100%;
}

.menu__item {
  min-height: 180px;
  width: 100%;
  object-fit: cover;
  display: block;
  /* float: left; */
  position: relative;
}


.menu__txt {
  display: block;
  position: absolute;
  color: var(--primary-white);
  top: 45%;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Shippori Mincho";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 285.714%;
  letter-spacing: 0.056rem;
}

.menu__link {
  /* display: block; */
  height: 100%;
}

.menu__img__pc {
  display: none;
}

.menu__img__sp {
  width: 100%;
  height: 100%;
}



/*=============================================================================
768px 
 =============================================================================*/
 @media screen and (min-width: 768px) and (max-width: 959px){

  .section--menu {
    padding: 20px 0 0 0;
    background-image: url(../images/background01.png);
    width: 100%;
  }

  .menu__topic {
    padding: 0 24%;
    margin: 0 auto;
  }

  .menu__list {
    margin-top: 40px;
    min-height: 180px;
    width: 100%;
    display: flex;
  }

.menu__item {
  width: 25%;
  min-height: 350px;
  object-fit: cover;
  display: block;
  /* float: left; */
  position: relative;
  box-sizing: border-box;
}

.menu__txt {
  display: block;
  position: absolute;
  color: var(--primary-white);
  top: 45%;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Shippori Mincho";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 285.714%;
  letter-spacing: 0.056rem;
}

.menu__link {
  /* display: block; */
  height: 100%;
}

.menu__img__sp {
  display: none;
}

.menu__img__pc {
  cursor: pointer;
  display: block;
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: center;
  /* display: block; */
}

 }







/* =================================================================
menu pc 
===================================================================*/
@media screen and (min-width: 960px){

  .section--menu {
      padding: 0 0 0 0;
      background-image: url(../images/background01.png);
      width: 100%;
      margin-top: -1px;
  }

  .menu__topic {
      margin-left: 25.69%;
      padding: 0 0 0 0;
  }
  
  .menu__list {
    display: flex;
    margin-top: 84px;
    padding-left: 16.31%;
  }
  
  .menu__item {
    width: 25%;
    min-height: 400px;
    object-fit: cover;
    display: block;
    /* float: left; */
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
  }

  .menu__item img {
    height: 400px;
    transition: transform .6s ease; /* ゆっくり変化させる */
  }

  .menu__item:hover img {
  transform: scale(1.1); /* 拡大 */
  }
  
  .menu__txt {
    display: block;
    position: absolute;
    color: var(--primary-white);
    top: 45%;
    left: 50%;
    transform: translateX(-50%);
    font-family: "Shippori Mincho";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: 250%;
    letter-spacing: 0.064rem;
  }
  
  .menu__link {
    /* display: block; */
    height: 100%;
  }
  
  .menu__img__sp {
    display: none;
  }
  
  .menu__img__pc {
    cursor: pointer;
    display: block;
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center;
    /* display: block; */
}

}






/* ==================================
fnc
===================================*/

.section--fnc {
  padding: 80px 6%;
  background-image: url(../images/background01.png);
  width: 100%;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.section--fnc::before {
  content: "";
  position: absolute;
  top: -30%;
  left: 0;
  width: 130%;
  height: 120%;
  background: url(../images/gradation01.png) center/cover no-repeat;
  opacity: 0.5;
  z-index: -1; /* テキストより後ろ、背景より前にしたい場合は要調整 */
  pointer-events: none;
}

.fnc__group {
  margin: 0 auto;
}

.ftopic__sub {
  color: var(--primary-red);
  font-family: "Libre Caslon Text";
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.048rem;
  margin-left: 2px;
}

.ftopic__main {
  color: var(--primary-black);
  font-size: 2.0rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08rem;
  margin-top: 10px;
}

.fnc__item {
  margin-top: 40px;
}

.fnc__txt {
  color: var(--primary-black);
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 210%; /* 29.4px */
  letter-spacing: 0.112rem;
}

.fnc__btn {
  margin-top: 40px;   
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}

.btn {
  color: var(--primary-black);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.14rem;
  display: flex;
  align-items: center;
  transition: 0.4s;
}

.btn::after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url(../images/arrow-btn.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin: 0 0 0 30px;
}

.fnc__btn .btn:hover {
  opacity: 0.5;
}

.fnc__img {
  width: 330px;
  margin: 0 auto;
}

.fnc__img1 {
  width: 230px;
  height: 230px;
  object-fit: cover;
}

.fnc__img2 {
  width: 173px;
  height: 136px; 
  margin-top: -40px;
  margin-left: 156px;
  object-fit: cover;
}

.fnc__gradation01 {
  position: absolute;
  opacity: 0.5;
  width: 250%;
  max-width: 250%;
  left: -350px;
  top: 3000px;
  z-index: 0;
}



/*=============================================================================
768px 
 =============================================================================*/
 @media screen and (min-width: 768px) and (max-width: 959px){

  .section--fnc {
    padding: 40px 24% 80px;
    background-image: url(../images/background01.png);
    width: 100%;
    position: relative;
    z-index: 0;
    overflow: hidden;
  }
  
  .section--fnc::before {
    content: "";
    position: absolute;
    top: -70%;
    left: -25%;
    width: 200%;
    height: 200%;
    background: url(../images/gradation01.png) center/cover no-repeat;
    opacity: 0.5;
    z-index: -1; /* テキストより後ろ、背景より前にしたい場合は要調整 */
    pointer-events: none;
  }

.fnc__group {
    /* display: flex;
    flex-direction: row-reverse; */
    margin: 0 auto;
}

.fnc__txt__group {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    margin-top: 50px;
}

.ftopic__sub {
  color: var(--primary-red);
  font-family: "Libre Caslon Text";
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.048rem;
  margin-left: 2px;
}

.ftopic__main {
  color: var(--primary-black);
  font-size: 2.0rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08rem;
  margin-top: 10px;
}

.fnc__item {
  margin-top: 40px;
}

.fnc__txt {
  color: var(--primary-black);
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 210%; /* 29.4px */
  letter-spacing: 0.112rem;
}

.fnc__btn {
  margin-top: 40px;   
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}

.btn {
  color: var(--primary-black);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.14rem;
  display: flex;
  align-items: center;
  transition: 0.4s;
}

.btn::after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url(../images/arrow-btn.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin: 0 0 0 30px;
}

.fnc__btn .btn:hover {
  opacity: 0.5;
}

.fnc__img {
  width: 430px;
  /* margin: 0 auto; */
  margin-top: 20px;
}

.fnc__img1 {
  width: 300px;
  height: 280px;
  object-fit: cover;
}

.fnc__img2 {
  width: 240px;
  height: 150px; 
  margin-top: -30px;
  margin-left: 150px;
  object-fit: cover;
}

 }







/* ==================================================
fnc pc
=================================================== */
@media screen and (min-width: 960px){

  
  .section--fnc {
    padding: 120px 0 120px 25.69%;
    background-image: url(../images/background01.png);
    width: 100%;
    position: relative;
    z-index: 0;
    overflow: hidden;
  }
  
  .section--fnc::before {
    content: "";
    position: absolute;
    top: -60%;
    right: -70%;
    width: 160%;
    height: 160%;
    background: url(../images/gradation01.png) center/cover no-repeat;
    opacity: 0.5;
    z-index: -1; /* テキストより後ろ、背景より前にしたい場合は要調整 */
    pointer-events: none;
  }
  
  .fnc__group {
      display: flex;
      flex-direction: row-reverse;
      width: 100%;
  }

  .fnc__txt__group {
      width: 360px;
      margin-right: 14%;
      margin-left: 0;
      margin-top: 50px;
  }

  .ftopic__sub {
      color: var(--primary-red);
      font-family: "Libre Caslon Text";
      font-size: 1.6rem;
      font-weight: 500;
      line-height: 1;
      letter-spacing: 0.064rem;
      margin-left: 2px;
  }
  
  .ftopic__main {
      color: var(--primary-black);
      font-size: 3.2rem;
      font-weight: 500;
      line-height: 1;
      letter-spacing: 0.128rem;
      margin-top: 12px;
  }

  
  .fnc__item {
      margin-top: 80px;
  }
  
  .fnc__txt {
      color: var(--primary-black);
      font-size: 1.6rem;
      font-style: normal;
      font-weight: 400;
      line-height: 210%; /* 29.4px */
      letter-spacing: 0.112rem;
  }
  
  .fnc__btn {
      margin-top: 80px;   
      display: block;
      margin-left: 0;
      margin-bottom: 80px;
  }
  
  .btn {
      color: var(--primary-black);
      font-size: 1.6rem;
      font-weight: 500;
      line-height: 1;
      letter-spacing: 0.14rem;
      display: flex;
      transition: 0.4s;
  }
  
  .btn::after {
      content: '';
      display: inline-block;
      width: 46px;
      height: 46px;
      background-image: url(../images/arrow-btn.svg);
      background-repeat: no-repeat;
      background-size: contain;
      background-position: center;
      margin: 0 0 0 30px;
  }

  .fnc__btn .btn:hover {
      opacity: 0.5;
  }
  
  .fnc__img {
    padding: 0 0 0 0;
    /* width: 100%; */
    margin-right: 22%;
    margin-top: 40px;
  }
  
  .fnc__img1 {
      /* width: 100%; */
      min-width: 356px;
      min-height: 369px;
      object-fit: cover;
      margin-left: -20px;
  }
  
  .fnc__img2 {
      width: 100%;
      max-width: 236px;
      height: auto; 
      margin-top: -40px;
      margin-left: 60%;
  }

  /* .fnc__gradation01 {
      position: absolute;
      opacity: 0.5;
      width: 150%;
      max-width: 150%;
      left: 200px;
      top: 2800px;
      z-index: 0;
  } */


}





/* ==================================
reservation
===================================*/

.section--reservation {
  background-image: url(../images/about_main_sp.png);
  padding: 100px 0;
  width: 100%;
  min-height: 580px;
  position: relative;
  background-size: cover;
}

.reservation__group {
  padding: 0 6%;
  margin: 0 auto;
}

.r__topic__sub {
  color: var(--primary-white);
  font-family: "Libre Caslon Text";
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.048rem;
  margin-left: 2px;
}

.r__topic__main {
  color: var(--primary-white);
  font-size: 2.0rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08rem;
  margin-top: 10px;
}

.reservation__item {
  position: absolute;
}

.reservation__txt {
  color: var(--primary-white);
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 240%; /* 29.4px */
  letter-spacing: 0.112rem;
  width: 300px;
  margin-top: 80px;
}

.reservation__btn {
  margin-top: 280px;   
  display: flex;
  justify-content: center;
  margin-bottom: 100px;
}

.btn__out {
  position: absolute;
  color: var(--primary-white);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.14rem;
  display: flex;
  align-items: center;
  width: 200px;
  height: 46px;
  border: 1px solid rgba(249, 245, 239, 0.50);
  border-radius: 50px;
  padding: 0 12px 0px 36px;
}

.btn__out::after {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url(../images/external-link-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin: 0 0 0 15px;
}

  .btn__out:hover::after {
    background-image: url(../images/external-link.svg);
  }

.btn__out:hover {
  background: var(--primary-white);
  color: var(--primary-black);
  transition: 0.4s;
}



/*=============================================================================
768px 
 =============================================================================*/
 @media screen and (min-width: 768px) and (max-width: 959px){

  .section--reservation {
    background-image: url(../images/about_main_sp.png);
    padding: 80px 0;
    width: 100%;
    min-height: 580px;
    position: relative;
    background-size: cover;
  }
  
  .reservation__group {
    padding: 0 24%;
    width: 100%;
  }
  
  .r__topic__sub {
    color: var(--primary-white);
    font-family: "Libre Caslon Text";
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.048rem;
    margin-left: 2px;
  }
  
  .r__topic__main {
    color: var(--primary-white);
    font-size: 2.0rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.08rem;
    margin-top: 10px;
  }
  
  .reservation__item {
    position: absolute;
  }
  
  .reservation__txt {
    color: var(--primary-white);
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 240%; /* 29.4px */
    letter-spacing: 0.112rem;
    width: 400px;
    margin-top: 80px;
  }

  .reservation__txt br {
    display: none;
  }
  
  .reservation__btn {
    margin-top: 280px;   
    display: flex;
    justify-content: center;
    margin-bottom: 80px;
  }
  
  .btn__out {
    position: absolute;
    color: var(--primary-white);
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.14rem;
    display: flex;
    align-items: center;
    width: 200px;
    height: 46px;
    border: 1px solid rgba(249, 245, 239, 0.50);
    border-radius: 50px;
    padding: 0 12px 0px 36px;
  }
  
  .btn__out::after {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url(../images/external-link-white.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin: 2px 0 0 15px;
  }

  .btn__out:hover::after {
    background-image: url(../images/external-link.svg);
  }

  .btn__out:hover {
  background: var(--primary-white);
  color: var(--primary-black);
  transition: 0.4s;
}

 }







/* ================================================================
reservation pc 
====================================================================*/
@media screen and (min-width: 960px){

  .section--reservation {
      background-image: url(../images/background01.png);
      padding: 0 0 0 16.31%;
      width: 100%;
      position: relative;
      background-size: cover;
  }
  
  .reservation__group {
      width: 100%;
      height: 100%;
      background-image: url(../images/reservation_pc.png);
      background-size: cover;
      padding: 70px 0 70px 11.12%;
  }
  
  .r__topic__sub {
      color: var(--primary-white);
      font-family: "Libre Caslon Text";
      font-size: 1.6rem;
      font-weight: 500;
      line-height: 1;
      letter-spacing: 0.064rem;
      margin-left: 6px;
  }
  
  .r__topic__main {
      color: var(--primary-white);
      font-size: 3.2rem;
      font-weight: 500;
      line-height: 1;
      letter-spacing: 0.128rem;
      margin-top: 12px;

  }
  
  .reservation__item {
      position: absolute;
  }
  
  .reservation__txt {
      color: var(--primary-white);
      font-size: 1.6rem;
      font-style: normal;
      font-weight: 400;
      line-height: 240%; /* 29.4px */
      letter-spacing: 0.112rem;
      width: 500px;
      margin-top: 80px;
      margin-left: 8px;
  }

  .reservation__txt br {
    display: block;
  }

  .reservation__txt br:nth-child(3) {
      display: none;
  }
  
  .reservation__btn {
      /* margin-top: 280px;    */
      display: block;
      /* margin-bottom: 100px; */
      margin-left: 8px;
      padding-bottom: 1px;
  }
  
  .btn__out {
      position: absolute;
      color: var(--primary-white);
      font-size: 1.6rem;
      font-weight: 500;
      line-height: 1;
      letter-spacing: 0.14rem;
      display: flex;
      align-items: center;
      width: 280px;
      height: 60px;
      border: 1px solid rgba(249, 245, 239, 0.50);
      border-radius: 50px;
      padding: 0 20px 0px 60px;
  }
  
  .btn__out::after {
      content: '';
      display: inline-block;
      width: 24px;
      height: 24px;
      background-image: url(../images/external-link-white.svg);
      background-repeat: no-repeat;
      background-size: contain;
      background-position: center;
      margin: 2px 0 0 30px;
  }

  .btn__out:hover::after {
    background-image: url(../images/external-link.svg);
  }

  .btn__out:hover {
  background: var(--primary-white);
  color: var(--primary-black);
  transition: 0.4s;
}

}
/* reservation pc end */




/* ==================================
access
===================================*/

.section--access {
  padding: 80px 6% 60px;
  background-image: url(../images/background01.png);
  width: 100%;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.section--access::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -10%;
  width: 120%;
  height: 120%;
  background: url(../images/gradation01.png) center/cover no-repeat;
  opacity: 0.5;
  z-index: -1; /* テキストより後ろ、背景より前にしたい場合は要調整 */
  pointer-events: none;
}

.access__txt__group {
  margin: 0 auto;
}

.access__list {
  margin-top: 40px;
}

.access__item {
  display: flex;
  margin-top: 10px;
}

.access__item:first-of-type {
  margin-top: 0;
}

.access__item__main {
  color: var(--primary-black);
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 240%;
  letter-spacing: 0.056rem;
  width: 100px;
}

.access__item__sb {
  color: var(--primary-black);
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 240%;
  letter-spacing: 0.056rem;
}

.access__item__txt {
  color: var(--primary-black);
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 210%;
  letter-spacing: 0.056rem;
  margin-top: 30px;
}

.access__group iframe {
  width: 100%;
  min-height: 250px;
  margin-top: 40px;
}


/*=============================================================================
768px 
 =============================================================================*/
 @media screen and (min-width: 768px) and (max-width: 959px){

  .section--access {
    padding: 80px 24% 60px;
    background-image: url(../images/background01.png);
    width: 100%;
    position: relative;
    z-index: 0;
    overflow: hidden;
  }
  
  .section--access::before {
    content: "";
    position: absolute;
    top: -70%;
    left: -60%;
    width: 180%;
    height: 180%;
    background: url(../images/gradation01.png) center/cover no-repeat;
    opacity: 0.5;
    z-index: -1; /* テキストより後ろ、背景より前にしたい場合は要調整 */
    pointer-events: none;
  }

  .topic__sub {
    color: var(--primary-red);
    font-family: "Libre Caslon Text";
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.048rem;
    margin-left: 2px;
  }
  
  .topic__main {
    color: var(--primary-black);
    font-size: 2.0rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.08rem;
    margin-top: 10px;
  }
  
  .access__txt__group {
    margin: 0 auto;
  }
  
  .access__list {
    margin-top: 40px;
  }
  
  .access__item {
    display: flex;
    margin-top: 10px;
  }
  
  .access__item:first-of-type {
    margin-top: 0;
  }
  
  .access__item__main {
    color: var(--primary-black);
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 240%;
    letter-spacing: 0.056rem;
    width: 100px;
  }
  
  .access__item__sb {
    color: var(--primary-black);
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 240%;
    letter-spacing: 0.056rem;
  }
  
  .access__item__txt {
    color: var(--primary-black);
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 210%;
    letter-spacing: 0.056rem;
    margin-top: 30px;
  }
  
  .access__group iframe {
    width: 100%;
    min-height: 250px;
    margin-top: 40px;
  }


 }






/* =======================================================
access pc 
=========================================================*/
@media screen and (min-width: 960px){

  .section--access {
    padding: 100px 0 100px 25.69%;
    background-image: url(../images/background01.png);
    width: 100%;
    position: relative;
    z-index: 0;
    overflow: hidden;
  }
  
  .section--access::before {
    content: "";
    position: absolute;
    top: 0%;
    left: -5%;
    width: 100%;
    height: 100%;
    background: url(../images/gradation01.png) center/cover no-repeat;
    opacity: 0.5;
    z-index: -1; /* テキストより後ろ、背景より前にしたい場合は要調整 */
    pointer-events: none;
  }
  
  .access__txt__group {
      width: 100%;
  }

  /* .topic__main {
      margin-left: -6px;
  }

  .topic__sub {
      margin-left: -2px;
  } */

  .topic__sub {
      color: var(--primary-red);
      font-family: "Libre Caslon Text";
      font-size: 1.6rem;
      font-weight: 500;
      line-height: 1;
      letter-spacing: 0.064rem;
      margin-left: 3px;
  }
  
  .topic__main {
      color: var(--primary-black);
      font-size: 3.2rem;
      font-weight: 500;
      line-height: 1;
      letter-spacing: 0.128rem;
      margin-top: 12px;
  }

  .access__group {
      display: flex;
      width: 100%;
  }
  
  .access__list {
      margin-top: 40px;
  }
  
  .access__item {
      display: flex;
      margin-top: 10px;
  }
  
  .access__item:first-of-type {
      margin-top: 0;
  }
  
  .access__item__main {
      color: var(--primary-black);
      font-size: 1.6rem;
      font-style: normal;
      font-weight: 400;
      line-height: 240%;
      letter-spacing: 0.056rem;
      width: 120px;
  }
  
  .access__item__sb {
      color: var(--primary-black);
      font-size: 1.6rem;
      font-style: normal;
      font-weight: 400;
      line-height: 240%;
      letter-spacing: 0.056rem;
  }
  
  .access__item__txt {
      color: var(--primary-black);
      font-size: 1.4rem;
      font-style: normal;
      font-weight: 400;
      line-height: 210%;
      letter-spacing: 0.056rem;
      margin-top: 30px;
      max-width: 370px;
  }
  
  .access__group iframe {
      width: 450px;
      height: 350px;
      margin-top: 50px;
      margin-left: 16%;
  }

  /* .access__gradation01 {
      position: absolute;
      opacity: 0.5;
      width: 150%;
      max-width: 150%;
      left: -900px;
      top: 3800px;
  } */
}

/* access pc end */







/* ==================================
  section--sns
  ===================================*/

.section--sns {
  background-image: url(../images/background01.png);
  padding: 20px 6% 60px;
}

.sns__instagram {
  background-color: rgba(141, 89, 4, 0.15);
  padding: 40px 6% 30px;
}

.sns__topic h2 {
  color: var(--primary-black);
  font-family: "Libre Caslon Text";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}

.sns__topic p {
  color: var(--primary-black);
  font-family: "Shippori Mincho";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 210%;
  letter-spacing: 0.056rem;
  margin-top: 30px;
}

.sns__btn {
    margin-top: 30px;   
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
  }
  
  .btn__out__sns {
    position: absolute;
    color: var(--primary-black);
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.14rem;
    display: flex;
    align-items: center;
    width: 300px;
    height: 46px;
    border: 1px solid rgba(35, 24, 21, 0.50);
    border-radius: 50px;
    padding: 0 12px 0px 36px;
  }
  
  .btn__out__sns::after {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url(../images/external-link.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin: 2px 0 0 15px;
  }

   .btn__out__sns:hover::after {
    background-image: url(../images/external-link-white.svg);
  }

  .btn__out__sns:hover {
  background: var(--primary-red);
  color: var(--primary-white);
  transition: 0.4s;
}


.sns__LINE {
  background-color: rgba(141, 89, 4, 0.15);
  padding: 40px 6% 30px;
  margin-top: 40px;
}

.sns__topic h2 {
  color: var(--primary-black);
  font-family: "Libre Caslon Text";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}

.sns__topic p {
  color: var(--primary-black);
  font-family: "Shippori Mincho";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 210%;
  letter-spacing: 0.056rem;
  margin-top: 30px;
}

.sns__btn__line {
    margin-top: 30px;   
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
  }
  
  .btn__out__sns__line {
    position: absolute;
    color: var(--primary-black);
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.14rem;
    display: flex;
    align-items: center;
    width: 300px;
    height: 46px;
    border: 1px solid rgba(35, 24, 21, 0.50);
    border-radius: 50px;
    padding: 0 12px 0px 70px;
  }
  
  .btn__out__sns__line::after {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url(../images/external-link.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin: 2px 0 0 35px;
  }

   .btn__out__sns__line:hover::after {
    background-image: url(../images/external-link-white.svg);
  }

  .btn__out__sns__line:hover {
  background: var(--primary-red);
  color: var(--primary-white);
  transition: 0.4s;
}



/*=============================================================================
768px 
 =============================================================================*/
 @media screen and (min-width: 768px) and (max-width: 959px){

  .section--sns {
  background-image: url(../images/background01.png);
  padding: 20px 6% 60px;
}


.sns__group {
  display: flex;
  gap: 20px;
}


.sns__instagram {
  background-color: rgba(141, 89, 4, 0.15);
  padding: 40px 6% 10px;
}

.sns__topic h2 {
  color: var(--primary-black);
  font-family: "Libre Caslon Text";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}

.sns__topic p {
  color: var(--primary-black);
  font-family: "Shippori Mincho";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 210%;
  letter-spacing: 0.056rem;
  margin-top: 30px;
}

.sns__btn {
    margin-top: 30px;   
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
  }
  
  .btn__out__sns {
    position: absolute;
    color: var(--primary-black);
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.14rem;
    display: flex;
    align-items: center;
    width: 300px;
    height: 46px;
    border: 1px solid rgba(35, 24, 21, 0.50);
    border-radius: 50px;
    padding: 0 12px 0px 36px;
  }
  
  .btn__out__sns::after {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url(../images/external-link.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin: 2px 0 0 15px;
  }

   .btn__out__sns:hover::after {
    background-image: url(../images/external-link-white.svg);
  }

  .btn__out__sns:hover {
  background: var(--primary-red);
  color: var(--primary-white);
  transition: 0.4s;
}


.sns__LINE {
  background-color: rgba(141, 89, 4, 0.15);
  padding: 40px 6% 10px;
  margin-top: 0px;
}

.sns__topic h2 {
  color: var(--primary-black);
  font-family: "Libre Caslon Text";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}

.sns__topic p {
  color: var(--primary-black);
  font-family: "Shippori Mincho";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 210%;
  letter-spacing: 0.056rem;
  margin-top: 30px;
}

.sns__btn__line {
    margin-top: 30px;   
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
  }
  
  .btn__out__sns__line {
    position: absolute;
    color: var(--primary-black);
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.14rem;
    display: flex;
    align-items: center;
    width: 300px;
    height: 46px;
    border: 1px solid rgba(35, 24, 21, 0.50);
    border-radius: 50px;
    padding: 0 12px 0px 70px;
  }
  
  .btn__out__sns__line::after {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url(../images/external-link.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin: 2px 0 0 35px;
  }

   .btn__out__sns__line:hover::after {
    background-image: url(../images/external-link-white.svg);
  }

  .btn__out__sns__line:hover {
  background: var(--primary-red);
  color: var(--primary-white);
  transition: 0.4s;
}
 
}


  
  
  /* ==================================================
section--sns pc
==================================================== */
@media screen and (min-width: 960px){

    .section--sns {
  background-image: url(../images/background01.png);
  padding: 0px 4% 60px 16.31%;
}


.sns__group {
  display: flex;
  gap: 40px;
}


.sns__instagram {
  background-color: rgba(141, 89, 4, 0.15);
  padding: 40px 6% 40px;
}

.sns__topic h2 {
  color: var(--primary-black);
  font-family: "Libre Caslon Text";
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}

.sns__topic p {
  color: var(--primary-black);
  font-family: "Shippori Mincho";
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 210%;
  letter-spacing: 0.056rem;
  margin-top: 30px;
}

.sns__btn {
    margin-top: 30px;   
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
  }
  
  .btn__out__sns {
    position: absolute;
    color: var(--primary-black);
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.14rem;
    display: flex;
    align-items: center;
    width: 330px;
    height: 60px;
    border: 1px solid rgba(35, 24, 21, 0.50);
    border-radius: 50px;
    padding: 0 12px 0px 36px;
  }
  
  .btn__out__sns::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(../images/external-link.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin: 2px 0 0 15px;
  }

   .btn__out__sns:hover::after {
    background-image: url(../images/external-link-white.svg);
  }

  .btn__out__sns:hover {
  background: var(--primary-red);
  color: var(--primary-white);
  transition: 0.4s;
}


.sns__LINE {
  background-color: rgba(141, 89, 4, 0.15);
  padding: 40px 6% 40px;
  margin-top: 0px;
}

.sns__topic h2 {
  color: var(--primary-black);
  font-family: "Libre Caslon Text";
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}

.sns__topic p {
  color: var(--primary-black);
  font-family: "Shippori Mincho";
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 210%;
  letter-spacing: 0.056rem;
  margin-top: 30px;
}

.sns__btn__line {
    margin-top: 30px;   
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
  }
  
  .btn__out__sns__line {
    position: absolute;
    color: var(--primary-black);
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.14rem;
    display: flex;
    align-items: center;
    width: 330px;
    height: 60px;
    border: 1px solid rgba(35, 24, 21, 0.50);
    border-radius: 50px;
    padding: 0 12px 0px 70px;
  }
  
  .btn__out__sns__line::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(../images/external-link.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin: 2px 0 0 35px;
  }

   .btn__out__sns__line:hover::after {
    background-image: url(../images/external-link-white.svg);
  }

  .btn__out__sns__line:hover {
  background: var(--primary-red);
  color: var(--primary-white);
  transition: 0.4s;
}
 
}













  
  
  
  
  
  /* ==================================
  footer
  ===================================*/
  

  .footerNav {
    background-image: url(../images/footer_bg.png);
    padding: 40px 6% 0;
  }

  
  .footer__logo img {
    width: 40px;
    height: 70px;
    margin-top: 0px;
  }
  
  /* .footerNav__group {
    margin: 0 auto;
  } */
  
  .footerNav__list {
    margin-top: 50px;
    margin-bottom: 30px;
  }
  
  .footerNav__item {
    color: var(--primary-white);
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.056rem;
    margin-top: 24px;
  }
  
  .footer__copy {
    padding-bottom: 30px;
    padding-top: 30px;
  }
  
  .privacypolicy {
    color: var(--primary-white);
    font-family: "Libre Caslon Text";
    font-size: 1.0rem;
    font-weight: 400;
    line-height: 1;
    margin-top: 40px;
  }
  
  .copy {
    color: var(--primary-white);
    font-family: "Shippori Mincho";
    font-size: 1.0rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    margin-top: 14px;
  }
  
  .footer__btn {
    width: 120px;
    height: 34px;
    border-radius: 10px 10px 0px 0px;
    background: rgba(249, 245, 239, 0.50);
    color: var(--primary-black);
    font-family: "Shippori Mincho";
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.048rem;
    padding: 10px 16px 6px;
    position: fixed;
    z-index: 11;
    right: 22px;
    bottom: 0;
  }




/*=============================================================================
768px 
 =============================================================================*/
 @media screen and (min-width: 768px) and (max-width: 959px) {

    .footerNav {
    background-image: url(../images/footer_bg.png);
    padding: 20px 6% 0;
  }

  
  .footer__logo img {
    width: 40px;
    height: 70px;
    margin-top: 30px;
  }

  .footer__group {
    display: flex;
  }
  
  .footerNav__group {
    margin-top: 30px;
  }
  
  .footerNav__list {
    display: flex;
    margin-top: 30px;

  }
  
  .footerNav__item {
    color: var(--primary-white);
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.056rem;
    margin-top: 0px;
    margin-left: 28px;
  }
  
  .footer__copy {
    padding: 50px 4% 30px 2%;
  
  }
  
  .privacypolicy {
    color: var(--primary-white);
    font-family: "Libre Caslon Text";
    font-size: 1.0rem;
    font-weight: 400;
    line-height: 1;
    margin-top: 40px;
  }
  
  .copy {
    color: var(--primary-white);
    font-family: "Shippori Mincho";
    font-size: 1.0rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    margin-top: 14px;
  }
  
  .footer__btn {
    width: 120px;
    height: 34px;
    border-radius: 10px 10px 0px 0px;
    background: rgba(249, 245, 239, 0.50);
    color: var(--primary-black);
    font-family: "Shippori Mincho";
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.048rem;
    padding: 10px 16px 6px;
    position: fixed;
    z-index: 11;
    right: 6%;
    bottom: 0;
  }

 }



  


  /* ================================================
footer pc
================================================= */
@media screen and (min-width: 960px){

   .footerNav {
    background-image: url(../images/footer_bg.png);
    padding: 30px 4% 0;
  }

  .footer__logo img {
    width: 54px;
    height: 94px;
    margin-top: 30px;
  }

  .footer__group {
    display: flex;
  }
  
  .footerNav__group {
    margin-top: 30px;
    margin-left: 15.69%;
  }
  
  .footerNav__list {
    display: flex;
    margin-top: 30px;
  }
  
  .footerNav__item {
    color: var(--primary-white);
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.056rem;
    margin-top: 0px;
    margin-left: 56px;
  }
  
  .footer__copy {
    padding: 50px 4% 30px 0%;
  
  }
  
  .privacypolicy {
    color: var(--primary-white);
    font-family: "Libre Caslon Text";
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
    margin-top: 40px;
  }
  
  .copy {
    color: var(--primary-white);
    font-family: "Shippori Mincho";
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    margin-top: 14px;
  }
  
  .footer__btn {
      position: fixed;
      right: 0;
      bottom: 30px;
      writing-mode: vertical-rl;
      width: 56px;
      height: 160px;
      border-radius: 20px 0px 0px 20px;
      background: rgba(249, 245, 239, 0.50);
      color: var(--primary-black);
      font-family: "Shippori Mincho";
      font-size: 1.6rem;
      font-weight: 500;
      line-height: 1;
      letter-spacing: 0.048rem;
      padding: 23px 17px 17px 23px;
      z-index: 11;
      cursor: pointer;
      transition: .3s;
  }



}

