@charset "UTF-8";

/*common---------------------*/
html {
  scroll-behavior: smooth;
}

img {
  width: 100%;
  height: auto;
}


/*ヘッダーメニュー---------------------*/
body.scroll-lock {
  overflow: hidden;
}

.p-header-hamburger__menu {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 52px;
  height: 46px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
  z-index: 1002;
}
@media screen and (max-width: 768px) {
  .p-header-hamburger__menu {
    top: 15px;
    right: 24px;
    width: 26px;
    height: 20px;
    gap: 8px;
  }
}

.p-header-hamburger__line {
  width: 100%;
  height: 2px;
  background-color: #433131;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .p-header-hamburger__line {
    height: 1px;
  }
}

/* アクティブ状態（Xアニメーション） */
.p-header-hamburger__menu.active .p-header-hamburger__line:nth-child(1) {
  rotate: 45deg;
  translate: 0 20px;
}
@media screen and (max-width: 768px) {
  .p-header-hamburger__menu.active .p-header-hamburger__line:nth-child(1) {
    rotate: 35deg;
    translate: 0 10px;
  }
}

.p-header-hamburger__menu.active .p-header-hamburger__line:nth-child(2) {
  opacity: 0;
}

.p-header-hamburger__menu.active .p-header-hamburger__line:nth-child(3) {
  rotate: -45deg;
  translate: 0 -20px;
}
@media screen and (max-width: 768px) {
  .p-header-hamburger__menu.active .p-header-hamburger__line:nth-child(3) {
    rotate: -35deg;
    translate: 0 -8px;
  }
}

/* オーバーレイ */
.p-header-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 999;
}

.p-header-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* スライドメニュー */
.p-header-slide__menu.overlay-menu {
  position: fixed;
  top: 0;
  right: -600px;
  width: 600px;
  height: 100vh;
  background: #F4F5F6;
  transition: right 0.3s ease-in-out;
  z-index: 1000;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  .p-header-slide__menu.overlay-menu {
    right: -100%;
    width: 100%;
  }
}
.p-header-slide__menu.overlay-menu.active {
  right: 0;
}

.p-header-slide__list {
  list-style: none;
  padding: 40px 0 0 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .p-header-slide__list {
    padding: 20px 0 0 0;
  }
}

.p-header-slide__list li {
  margin: 0;
  padding: 0;
}

.p-header-slide__list a {
  display: block;
  padding: 15px 30px;
  color: #433131;
  text-decoration: none;
  font-size: 24px;
  font-weight: 500;
  transition: background-color 0.3s ease;
  font-family: "Baskervville", serif;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-header-slide__list a {
    max-width: 200px;
    width: 100%;
    font-size: 20px;
    text-align: left;
    position: relative;
    line-height: 1;
    padding: 10px 0;
    margin: 0 auto;
  }
  .p-header-slide__list a::before {
    content: "";
    display: block;
    position: absolute;
    width: 9px;
    height: 12px;
    background: url(../img/menu_arrrow.svg) no-repeat center center / contain;
    top: 50%;
    right: 0;
    translate: 0 -50%;
  }
}

.p-header-slide__list a span {
  font-family: "Shippori Mincho", serif;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .p-header-slide__list a span {
    font-size: 10px;
  }
}

.p-header-slide__list a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.p-header-slide__title {
  max-width: 380px;
  margin: 190px auto 0;
}
@media screen and (max-width: 768px) {
  .p-header-slide__title {
    max-width: 200px;
    margin: 60px auto 0;
  }
}


/*ユーザーボイス---------------------*/
.p-main-content-user-voice {
  margin-bottom: 14vw;
}

.p-main-content-user-voice-inner {
  padding: 0 12vw;
}

@media screen and (max-width: 768px) {
  .p-main-content-user-voice-inner {
    padding: 0 7vw;
  }
}

.p-main-content-user-voice-inner-area{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 1.4vw;
  row-gap: 1.4vw;
}
@media screen and (max-width: 768px) {
  .p-main-content-user-voice-inner-area{
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 40px;
  }
}

@media screen and (min-width: 769px) {
  .p-main-content-user-voice-inner-area li a{
    opacity: 1;
    transition: 0.3s ease;
  }
  
  .p-main-content-user-voice-inner-area li a:hover{
    opacity: 0.5;
  }
}


/*フッター---------------------*/
footer {
  padding: 160px 0;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 20px 0 70px;
  }
}

.p-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.p-footer-inner__logo{
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-footer-inner__logo{
    max-width: 270px;
  }
}

.p-footer-inner__icon{
  display: flex;
  max-width: 380px;
  margin: 80px auto 0;
  column-gap: 6px;
}
@media screen and (max-width: 768px) {
  .p-footer-inner__icon{
    max-width: 272px;
    margin: 16px auto 0;
    column-gap: 6px;
  }
}

.p-footer-inner__link{
  display: flex;
  max-width: 950px;
  margin: 32px auto;
  column-gap: 24px;
  font-size: 20px;
  line-height: 2.2;
  padding: 0 20px;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
}
@media screen and (max-width:930px) {
  .p-footer-inner__link{
    font-size: 2.05vw;
    justify-content: space-between;
  }
}
@media screen and (max-width: 768px) {
  .p-footer-inner__link{
    flex-direction: column;
    align-items: center;
    margin: 24px auto;
    line-height: 2.5;
    font-size: 20px;
  }
}

.p-footer-inner__copyright{
  font-size: 16px;
  display: block;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-footer-inner__copyright{
    font-size: 12px;
  }
}