@charset "utf-8";

.search-btn {
  position: absolute;
  right: 0;
  top: 0;
  background: none;
  border: none;
  cursor: pointer;
}
.search-btn img {
  width: 20px;
  height: 20px;
  display: block;
}

.header {
  width: 100%;
  z-index: 10;
  transition: all 0.3s ease;
}
.header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
/* header.header__fixed {
  position: fixed;
  width: 100%;
  left: 0;
  z-index: 10;
} */

/* .header.header__fixed .header__wrapper--home {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 2;
}
.header.header__fixed .header__wrapper--home .ham {
  top: 35px;
  transition: 0.3s;
}
.header.header__fixed .header__wrapper--home .header__search {
  top: 65px;
  transition: 0.3s;
} */

body.fixed {
  height: 100%;
  overflow: hidden;
}
body.menu-open {
  overflow: hidden; /* 背景をスクロール不可に */

  width: 100%;
} /* メニューオープン時の左側固定用 */
.header__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 50%; /* 左側コンテンツ部分 */
  height: 100vh;
  z-index: 998;
}

.header__searchOpen {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  padding: 10px 40px 10px 10px;
  background-color: #fff;
  /* border-radius: 22px 0 0 22px; */
}
.header__searchOpenWrap {
  position: relative;
  padding: 2px 7px;
  border-radius: 22px;
  border: 1px solid #909090;
}
.search-btn {
  position: absolute;
}
.header__searchOpenWrap .search-btn {
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
.header__searchOpenWrap .search-btn img {
  width: 12px;
  height: 12px;
}
body.search-open .header__searchOpen {
  display: block;
  z-index: 999;
}

.header__searchOpenClose {
  position: absolute;
  top: 50%;
  right: -25px;
  transform: translateY(-50%);
}
.header__searchOpenClose--btn {
  position: relative;
  width: 12px;
  height: 12px;
  cursor: pointer;
}

.header__searchOpenClose--btn::before,
.header__searchOpenClose--btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1px;
  background: #000;
  transform-origin: center;
}
/* ／ */
.header__searchOpenClose--btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
/* ＼ */
.header__searchOpenClose--btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.header__navScroll .header__navSearchWrap {
  margin: 0 auto 56px;
  width: 54%;
  max-width: 333px;
  position: relative;
  border-bottom: 1px solid #000;
}
.header__navSearchWrap input {
  font-size: 14px;
  font-family: "Jost", sans-serif;
  width: 100%;
  padding: 0 44px 12px 0;
  border: none;
  outline: none;
  background: transparent;
  letter-spacing: 0.03em;
}

.header__nav {
  width: 100%;
  max-width: 410px;
  margin: 0 auto;
  padding-bottom: 75px;
}

.header__nav-list {
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 45px 5px;
}

.header__nav-list li {
  position: relative;
  width: calc((100% - 5px * 2) / 3);
}

.header__nav-listItem a {
  display: block;
  transition: 0.4s;
  border-bottom: 1px solid #fff;
}

.header__nav-listImg {
  width: 99px;
  height: 99px;
  margin: 0 auto;
  transition: transform 0.3s ease;
  /* border-radius: 50%; */
}

.header__nav-listText {
  padding-top: 10px;
  font-size: 14px;
  line-height: 2.15;
  letter-spacing: -0.01em;
  text-align: center;
}

.header__navWrap {
  width: 50%;
  max-width: 50%;
  /* height: 100vh; */
  padding-top: 67px;
  background-color: #fff;
  position: fixed;
  top: 0;
  right: 0;
  z-index: -99;
  opacity: 0;
  transition: all 0.3s;
  pointer-events: none;
}

.header__navWrap.panelactive {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0; /* ← 高さを画面いっぱいに */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 999;
  opacity: 1;
  pointer-events: all;
}

.header__navScroll {
  padding-top: 90px;
  min-height: 100vh;
  overflow-y: auto;
  position: relative;
}

.header__nav2-list {
  border-top: 1px solid #d9d9d9;
}
.header__nav2-listItem {
  padding: 20px 0 0 0;
  border-bottom: 1px solid #d9d9d9;
}
.header__nav2-listLink {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 10px 20px 10px;
}
.header__nav2-listLink:hover .arrow-btm {
  border: 1px solid #fff;
  background-color: #000;
}
.header__nav2-listLink:hover .arrow-btm:after {
  background: url("../imgs/common/arrow_rgt_wh.svg") center center / cover
    no-repeat;
}

.header__nav2-listBox {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  justify-content: start;
  align-items: center;
}

.header__nav2-listImg.back-img {
  background-size: contain;
  width: 135px;
  height: 80px;
  transition: transform 0.3s ease;
}

.header__nav2-listTextWrap {
  margin: 0 0 0 auto;
  width: calc(100% - 180px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__nav2-listText {
  width: calc(100% - 57px);
  font-size: 22px;
  line-height: 1.36;
  padding-left: 0.6em;
  text-indent: -0.6em;
}
.header__cate {
  display: none;
}

.header__nav.open {
  display: block;
}

.ham {
  width: 30px;
  height: 9px;
  cursor: pointer;
  z-index: 9999;
  position: absolute;
  top: 84px;
  right: 32px;
}
.ham__lineWrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.ham__lineWrapper span {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  transition: 0.3s;
}

.ham__lineWrapper span:nth-child(1) {
  transform: translateX(-50%);
  top: 0px;
}
.ham__lineWrapper span:nth-child(2) {
  transform: translateX(-50%);
  bottom: 0px;
}

.ham.open {
  width: 30px;
  height: 9px;
  top: 33px;
}
.ham.open .ham__lineWrapper span {
  background-color: #000;
}
.ham.open .ham__lineWrapper span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(16deg);
  top: 50%;
}
.ham.open .ham__lineWrapper span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-16deg);
  top: 50%;
}

.header__search {
  position: absolute;
  top: 118px;
  right: 33px;
  z-index: 2;
  width: 23px;
  height: 23px;
  cursor: pointer;
  pointer-events: all;
}

.header__nav2-child {
  display: none;
  border-top: 1px solid #d9d9d9;
}
.header__nav2-child.is-open {
  display: block;
}
.header__nav2-child li {
  padding: 20px 12px;
  border-bottom: 1px solid #d9d9d9;
  /* background-color: #fff850 */
}
.header__nav2-child li:last-child {
  border-bottom: none;
}
.header__nav2-child li a {
  display: block;
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  justify-content: start;
  align-items: center;
  font-size: 15px;
  line-height: 1.6;
}
.header__nav2-childNum {
  width: 30px;
  margin-right: 5px;
}
.header__nav2-childTitle {
  display: block;
  width: calc(100% - 35px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header__sns {
  /* margin:0 auto;
  padding: 100px 0 100px;
  width: 100%;
  max-width:507px ; */
}
.header__snsTitle {
  margin-bottom: 50px;
}
.header__snsTitle__en {
  margin-bottom: 10px;
  font-size: 38px;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-align: center;
}
.header__snsTitle__ja {
  font-size: 13px;
  line-height: 1.71;
  text-align: center;
}
.header__snsLink {
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-wrap: wrap;
}
.header__snsLink li {
  width: 33.33333%;
  padding: 37px 10px 5px;
  border-right: 1px solid #d9d9d9;
  /* border-bottom: 1px solid #D9D9D9; */
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__snsLink li:nth-of-type(3n) {
  border-right: none;
}
.header__snsLink li:nth-of-type(4),
.header__snsLink li:nth-of-type(5),
.header__snsLink li:nth-of-type(6) {
  border-bottom: none;
}
.header__snsLink .sns-link__btn {
  width: 100%;
  padding: 20px 0;
  text-align: center;
}

.header__snsLink li .sns-link__btn img {
  margin: 0 auto 24px;
  max-width: 70px;
  min-height: 70px;
}
/* noteのみサイズ調整 */
.header__snsLink li.link-note .sns-link__btn img {
  max-width: 55px;
}

/* =========== */
.header__sns .about-us__sns {
  margin: 0 auto;
  padding-top: 0;
  padding-bottom: 0;
  display: block;
}

.header__sns .about-us__snsLft {
  width: 100%;
  max-width: 100%;
  padding-top: 64px; /* 17.066vw */
  padding-bottom: 40px; /* 10.666vw */
  display: block;
  border-right: none;
  border-bottom: 1px solid #d9d9d9;
}

.header__sns .about-us__snsTitle {
  width: calc(100% - 44px);
  margin: 0 auto 54px; /* 14.399vw */
  text-align: center;
}

.header__sns .about-us__snsRgt .about-us__snsTitle {
  margin: 0 auto 0;
}

.header__sns .about-us__sns .section-title__en {
  font-size: 38px; /* 10.133vw */
  margin-bottom: 5px; /* 1.333vw */
}

.header__sns .about-us__snsRgt .section-title__en {
  margin-bottom: 18px; /* 4.8vw */
}

.header__sns .about-us__sns .section-title__ja {
  font-size: 13px; /* 3.466vw */
}

.header__sns .about-us__snsLink {
  width: calc(100% - 44px);
  max-width: 192px; /* 52.533vw */
  margin: 0 auto;
}

.header__sns .about-us__snsLink .sns-link__btn {
  width: 48.5%;
  max-width: 154px; /* 20.533vw */
}

.header__sns .about-us__snsLink .sns-link__btn img {
  max-width: 48px; /* 12.8vw */
  margin: 0 auto 19px; /* 5.066vw */
}

.header__sns .about-us__snsLink .sns-link__btn img.about-us__snsImg2 {
  max-width: 44px; /* 13.866vw */
  margin: 0 auto 17px;
}

.header__sns .sns-link__btn span {
  font-size: 18px; /* 4.8vw */
}

.header__sns .about-us__snsBg {
  width: 100%;
  margin: 0 auto;
}

.header__sns .about-us__snsRgt {
  width: 100%;
  padding-top: 45px; /* 12vw */
  padding-bottom: 50px; /* 13.333vw */
  padding-left: 0; /* 11.2vw */
  padding-right: 0; /* 11.2vw */
  margin: 0 auto;
}

.header__sns .about-us__snsJoin {
  margin-bottom: 14px; /* 3.866vw */
}

.header__sns .about-us__snsText {
  font-size: 12px; /* 3.2vw */
}

.header__sns .about-us__snsLine {
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
}

.header__sns .about-us__snsLine::after {
  display: none;
}

.header__sns .about-us__snsInner {
  width: 100%;
  max-width: 370px;
}

/* 色変更 */
/* =========================
   初期状態（暗い背景）
========================= */

/* ハンバーガー：白線 */
.ham__lineWrapper span {
  background-color: #fff;
}

/* 検索アイコン：白 */
.icon-search--light {
  display: block;
}
.icon-search--dark {
  display: none;
}

/* =========================
   明るい背景のとき
========================= */

.header.is-light .ham__lineWrapper span {
  background-color: #000;
}

.header.is-light .icon-search--light {
  display: none;
}
.header.is-light .icon-search--dark {
  display: block;
}

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

/* 下層用 スクロール後用*/
.header.low-header,
.header.header__fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /* height: 54px; */
  background-color: #fff;
}
.header.low-header .header__wrapper,
.header.header__fixed .header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
  padding: 0 20px;
  height: 72px;
  border-bottom: 1px solid #d9d9d9;
  position: relative;
}
.header.low-header .header__logo,
.header.header__fixed .header__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* transition: .3s; */
}
.header.low-header .header__logoLink,
.header.header__fixed .header__logoLink {
  display: block;
}
.header.low-header .ham,
.header.header__fixed .ham {
  position: relative;
  top: 0;
  left: 0;
  width: 30px;
  height: 9px;
}
.header.low-header .ham__lineWrapper span,
.header.header__fixed .ham__lineWrapper span {
  background-color: #000;
}
.header.low-header .header__search,
.header.header__fixed .header__search {
  position: relative;
  top: 0;
  left: 0;
}
.header.low-header .header__search img.pc,
.header.header__fixed .header__search img.pc {
  display: none !important;
}
.header.low-header .header__search img.sp,
.header.header__fixed .header__search img.sp {
  display: block !important;
}
.header.low-header .header__logo.header__logo--top.sp,
.header.header__fixed .header__logo.header__logo--top.sp {
  display: block;
  width: 77px;
}

.header.low-header .header__searchOpen,
.header.header__fixed .header__searchOpen {
  left: 0;
  right: auto;
  padding-top: 25px;
}

.header__nav2Title {
  margin-bottom: 40px;
}
.header__nav2Title--en {
  font-size: 48px;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.4;
  text-align: center;
}
.header__nav2Title--ja {
  text-align: center;
  font-size: 14px;
  line-height: 1;
}
.header__lowBtn {
  margin-bottom: 56px;
}

@media screen and (max-width: 1360px) {
  .ham {
    transform: unset;
  }
  .header__nav2-listTextWrap {
    width: calc(100% - 155px);
  }
  .header__nav2-listText {
    font-size: 18px;
  }
  .header__nav-listText {
    font-size: 13px;
  }
}

@media screen and (max-width: 750px) {
  .header__nav2-listImg.back-img {
    width: 110px;
    height: 60px;
  }
  .header__nav2-listTextWrap {
    width: calc(100% - 120px);
  }

  /* ======== */
  .header__sns .about-us__snsLft {
    padding-top: 17.066vw;
    padding-bottom: 10.666vw;
  }
  .header__sns .about-us__snsTitle {
    margin: 0 auto 14.399vw;
  }
  .header__sns .about-us__sns .section-title__en {
    font-size: 10.133vw;
    margin-bottom: 1.333vw;
  }
  .header__sns .about-us__snsRgt .section-title__en {
    margin-bottom: 4.8vw;
  }
  .header__sns .about-us__sns .section-title__ja {
    font-size: 3.466vw;
  }
  .header__sns .about-us__snsLink {
    max-width: 52.533vw;
  }
  .header__sns .about-us__snsLink .sns-link__btn {
    max-width: 20.533vw;
  }
  .header__sns .about-us__snsLink .sns-link__btn img {
    max-width: 12.8vw;
    margin: 0 auto 5.066vw;
  }
  .header__sns .about-us__snsLink .sns-link__btn img.about-us__snsImg2 {
    max-width: 11.733vw;
    margin: 0 auto 4.466vw;
  }
  .header__sns .sns-link__btn span {
    font-size: 4.8vw;
  }
  .header__sns .about-us__snsRgt {
    padding-top: 12vw;
    padding-bottom: 13.333vw;
    padding-left: 11.2vw;
    padding-right: 11.2vw;
  }
  .header__sns .about-us__snsJoin {
    margin-bottom: 3.866vw;
  }
  .header__sns .about-us__snsText {
    font-size: 3.2vw;
  }
  .header__sns .about-us__snsInner {
    max-width: initial;
  }
  /* ======== */
}

@media screen and (max-width: 750px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 54px;
    background-color: #fff;
  }
  .header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
    padding: 0 20px;
    height: 54px;
    position: relative;
  }
  .header__logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s;
  }
  .header__logoLink {
    display: block;
  }
  .ham {
    position: relative;
    top: 0;
    left: 0;
    width: 30px;
    height: 9px;
  }
  .ham.open {
    top: 0px;
  }
  .ham__lineWrapper span {
    background-color: #000;
  }
  .header__search {
    position: relative;
    top: 0;
    left: 0;
  }

  /* スクロール後 */
  .header.header__fixed .header__logo--top {
    opacity: 0;
    display: none;
  }
  .header.header__fixed .header__cate {
    display: block;
    overflow-x: scroll;
    width: calc(100% - 93px);
    /* padding: 5px 0; */
    /* margin: 0 20px; */
    -ms-overflow-style: none; /* IE / Edge(旧) */
    scrollbar-width: none;
  }
  .header.header__fixed .header__cate::-webkit-scrollbar {
    display: none; /* Chrome / Safari */
  }
  .header__cate-list {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 1.333vw;
  }
  .header__cate-listItem {
    padding: 5px 0;
  }
  .header__cate-listItem a {
    display: block;
    /* padding: 0.533vw 1.333vw; */
    padding: 3px 7px;
    /* font-size: 2.4vw; */
    font-size: 16px;
    letter-spacing: -0.01em;
    border: 1px solid #000;
    border-radius: 22px;
    /* margin: 3px 0; */
    white-space: nowrap;
  }

  .header__navWrap {
    width: 100%;
    max-width: 100%;
  }
  .header__navScroll {
    padding-top: 24vw;
  }
  .header__navScroll .header__navSearchWrap {
    margin-bottom: 8.666vw;
    width: 88.53vw;
  }
  .header__navSearchWrap input {
    padding: 0 44px 12px 0;
    font-size: 3.2vw;
  }
  .header__navSearchWrap .search-btn img {
    width: 4.333vw;
    height: 4.333vw;
  }

  .header__nav {
    max-width: 100%;
    padding-bottom: 10.66vw;
  }
  .header__nav-list {
    gap: 0;
    border-top: 1px solid #d9d9d9;
  }
  .header__nav-list li {
    width: 33.333%;
    padding: 5.33vw 0 1.333vw 0;
    border-right: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
  }
  .header__nav-list li:nth-of-type(3n) {
    border-right: none;
  }
  .header__nav-listImg {
    width: 22.13vw;
    height: 22.13vw;
  }
  .header__nav-listText {
    padding-top: 14px;
    font-size: 3.2vw;
  }
  .header__nav2Title {
    margin-bottom: 10vw;
  }
  .header__nav2Title--en {
    font-size: 12.8vw;
  }
  .header__nav2Title--ja {
    font-size: 4vw;
  }
  .header__nav2-listItem {
    padding: 1.333vw 0 0 0;
  }
  .header__nav2-listLink {
    padding: 0 5.333vw 1.333vw 5.333vw;
  }
  .header__nav2-listImg.back-img {
    width: 24vw;
    height: 18.66vw;
  }
  .header__nav2-listTextWrap {
    width: calc(100% - 25.33vw);
  }
  .header__nav2-listText {
    font-size: 4vw;
  }
  .header__sns {
    /* padding: 12vw 0 13.33vw; */
  }
  .header__snsTitle {
    margin-bottom: 9.6vw;
  }

  .header__snsTitle__en {
    margin-bottom: 0;
    font-size: 10.13vw;
  }
  .header__snsTitle__ja {
    font-size: 3.466vw;
  }
  .header__snsLink {
    /* border-top:1px solid #D9D9D9;
  border-bottom: 1px solid #D9D9D9; */
  }
  .header__snsLink li {
    padding-top: 0;
  }
  /* .header__snsLink li:nth-of-type(4), .header__snsLink li:nth-of-type(5), .header__snsLink li:nth-of-type(6){
  border-bottom: 1px solid #D9D9D9;
} */
  .header__snsLink .sns-link__btn {
    padding: 34px 0 13px;
  }
  .header__snsLink li .sns-link__btn img {
    width: 13.33vw;
    height: 13.33vw;
    margin: 0 auto 3.2vw;
  }
  .header__snsLink li .sns-link__btn span {
    font-size: 3.2vw;
  }
  .header__logo {
    width: 60px;
    position: static;
    transform: translateX(0);
  }
  .header__navScroll .header__logo {
    width: 16vw;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .header__navWrap .header__navLogo {
    width: 16vw;
    position: absolute;
    top: 5vw;
    left: 4vw;
    transform: none;
  }
  .header__searchOpen {
    width: 100%;
    padding: 14px 40px 14px 10px;
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    z-index: 100;
    background-color: #fff;
  }
  body.search-open .ham {
    display: none;
  }

  /* 下層用  スクロール用*/
  .header.low-header .header__wrapper,
  .header.header__fixed .header__wrapper {
    height: 54px;
  }
  .header.low-header .header__logo.header__logo--top.sp,
  .header.header__fixed .header__logo.header__logo--top.sp {
    top: 28px;
    width: 60px;
  }
  .header.low-header .header__logo,
  .header.header__fixed .header__logo {
    top: 30px;
  }
  /* body.menu-open .header.low-header .header__logo{
  top: 30px;
} */
  .header.low-header .header__navLogo {
    width: 16vw;
    position: absolute;
    top: 5vw;
    left: 4vw;
    transform: none;
  }
  .header__lowBtn {
    margin-bottom: 8.666vw;
  }
}

@media screen and (max-width: 480px) {
  .header__cate-listItem a {
    padding: 3px 7px;
    font-size: 14px;
  }
}
@media screen and (max-width: 370px) {
  .header__cate-listItem a {
    /* padding: 4px 7px; */
    font-size: 13px;
  }
}
