@charset "UTF-8";
/*---------------------
Reset
---------------------*/
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

#root, #__next {
  isolation: isolate;
}

@font-face {
  font-family: "Noto Sans";
  font-weight: 300;
  src: url(../fonts/NotoSans-Thin.ttf) format("truetype");
}
@font-face {
  font-family: "Noto Sans";
  font-weight: 400;
  src: url(../fonts/NotoSans-Regular.ttf) format("truetype");
}
@font-face {
  font-family: "Noto Sans";
  font-weight: 500;
  src: url(../fonts/NotoSans-SemiBold.ttf) format("truetype");
}
@font-face {
  font-family: "Noto Sans";
  font-weight: 600;
  src: url(../fonts/NotoSans-Bold.ttf) format("truetype");
}
/*---------------------
base
---------------------*/
html {
  font-size: 18px;
  line-height: 2;
  color: #050505;
  scroll-behavior: smooth;
  scroll-padding-top: 130px;
}
@media screen and (max-width: 840px) {
  html {
    scroll-padding-top: 100px;
  }
}

body {
  font-size: 18px;
  line-height: 2;
  font-family: "Midashi Go MB31", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Noto Sans", sans-serif;
  font-weight: bold;
  background: url(assets/img/bg/bg_block.svg) repeat center center/contain;
}
@media screen and (max-width: 840px) {
  body {
    font-size: min(4.2666666667vw, 16px);
    line-height: min(8.5333333333vw, 32px);
  }
}

main {
  overflow-x: clip;
}

section {
  margin: 0 auto 180px;
}
@media screen and (max-width: 840px) {
  section {
    margin-bottom: 21.3333333333vw;
  }
}

a {
  text-decoration: none;
  color: #050505;
}

a:focus {
  outline: none;
}

a:hover {
  opacity: 0.8;
}

a:active {
  color: #ccc;
}

ul,
ol,
dl,
dt,
dd,
li {
  list-style: none;
}

/*---------------------
contents
---------------------*/
.Wrap {
  position: relative;
  background: url(assets/img/bg/bg_pc.svg) repeat-Y top left/cover;
}

@media print, screen and (min-width: 841px) and (max-width: 1240px) {
  .Logo {
    padding: 2% 0;
    z-index: 990;
  }
}
@media screen and (max-width: 840px) {
  .Logo {
    z-index: 990;
  }
}
.Logo__head {
  padding-left: 2%;
  position: relative;
}
@media print, screen and (min-width: 841px) and (max-width: 1240px) {
  .Logo__head {
    padding-left: 2.1333333333vw;
  }
}
@media screen and (max-width: 840px) {
  .Logo__head {
    padding-left: 5.8666666667vw;
  }
}
@media screen and (max-width: 840px) {
  .Logo__drawer {
    width: min(12vw, 45px);
    height: 100% !important;
  }
}
@media print, screen and (min-width: 841px) and (max-width: 1240px) {
  .Logo__drawer {
    width: 100%;
    height: 100% !important;
  }
}
.Logo__foot {
  text-align: left;
}
@media screen and (max-width: 840px) {
  .Logo__foot {
    width: 100%;
    justify-content: center;
    display: flex;
    flex-flow: column;
    margin-bottom: 10.6666666667vw;
    margin-right: 0;
  }
}
.Logo__link--head::before {
  content: "";
  position: absolute;
  width: 132px;
  background-color: #fff;
  height: 44px;
  top: 7px;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 840px) {
  .Logo__link--head::before {
    width: 17.3333333333vw;
    min-width: 88px;
    height: 34px;
    top: 6px;
  }
}
.Logo__img--head {
  width: 100%;
  max-width: 78px;
  height: 100%;
}
@media print, screen and (min-width: 841px) and (max-width: 1240px) {
  .Logo__img--head {
    max-width: 61px;
  }
}
@media screen and (max-width: 840px) {
  .Logo__img--head {
    max-width: 61px;
  }
}
.Logo__img--foot {
  width: 100%;
  max-width: 230px;
}
@media screen and (max-width: 840px) {
  .Logo__img--foot {
    margin: 0 auto;
  }
}

.Content__en {
  font-family: "Noto Sans", sans-serif;
  font-weight: bold;
}
.Content__bg--blue {
  width: 100%;
  background-color: #4d6cff;
}

.Section__title {
  margin: 0 auto 35px;
}
@media screen and (max-width: 840px) {
  .Section__title {
    margin-bottom: min(9.3333333333vw, 35px);
    width: 100%;
  }
}
.Section__title--img {
  margin: 0 auto;
}
.Section__title--text {
  text-align: center;
  font-size: 1.6666666667rem;
  line-height: 2.2222222222rem;
}
@media screen and (max-width: 840px) {
  .Section__title--text {
    font-size: min(5.3333333333vw, 30px);
    line-height: min(7.2vw, 40px);
  }
}
.Section__inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 840px) {
  .Section__inner {
    flex-direction: column;
    margin-bottom: 10.6666666667vw;
  }
}
.Section__heading {
  font-size: 1.6666666667rem;
  line-height: 2.2222222222rem;
  font-weight: 600;
  margin-bottom: 36px;
}
@media screen and (max-width: 840px) {
  .Section__heading {
    font-size: min(5.3333333333vw, 30px);
    line-height: min(7.2vw, 40px);
    margin-bottom: min(9.3333333333vw, 36px);
  }
}
.Section__heading--blue {
  color: #378CE7;
}
.Section__text {
  width: 50%;
  margin: auto 0;
}
@media screen and (max-width: 840px) {
  .Section__text {
    width: 100%;
    margin-bottom: 16vw;
  }
}
.Section__detail {
  font-size: 1rem;
}
@media screen and (max-width: 840px) {
  .Section__detail {
    font-size: min(4.2666666667vw, 18px);
  }
}
.Section__image {
  width: 40%;
}
@media screen and (max-width: 840px) {
  .Section__image {
    width: 100%;
    padding: 0 3%;
  }
}
.Section__photo {
  width: 100%;
}
.Section__table {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  margin-bottom: 40px;
}
@media screen and (max-width: 840px) {
  .Section__table {
    margin-bottom: 0;
  }
}

.Page {
  margin: 150px auto 180px;
  width: 100%;
  max-width: 1200px;
}
@media screen and (max-width: 840px) {
  .Page {
    width: 100%;
    margin: 21.3333333333vw 0 10.6666666667vw;
  }
}
@media print, screen and (min-width: 841px) and (max-width: 1240px) {
  .Page {
    padding: 0 20px;
  }
}
.Page--gallery {
  max-width: 100%;
}
.Page--error {
  margin-bottom: 35px;
}

.Pankuzu {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.5rem;
  margin-top: 60px;
}
@media screen and (max-width: 840px) {
  .Pankuzu {
    font-size: 3.7333333333vw;
    max-width: 100%;
    margin: min(16vw, 60px) 0;
  }
}
.Pankuzu__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 840px) {
  .Pankuzu__inner {
    padding: 0 4%;
  }
}
.Pankuzu__list {
  color: #050505;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 840px) {
  .Pankuzu__list {
    font-size: 3.7333333333vw;
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
  }
}
.Pankuzu__item {
  font-size: 1rem;
  padding: 0 14px 0 24px;
  position: relative;
}
.Pankuzu__item::before {
  content: ">";
  display: inline-block;
  width: 10px;
  height: 20px;
  position: absolute;
  color: #050505;
  left: 2px;
}
.Pankuzu__item:first-child {
  padding-left: 0;
}
.Pankuzu__item:first-child::before {
  content: "";
}
.Pankuzu__item:last-child {
  padding-right: 0;
}
@media screen and (max-width: 840px) {
  .Pankuzu__item {
    margin-bottom: min(3.7333333333vw, 14px);
    font-size: min(4.2666666667vw, 18px);
    line-height: min(7.2vw, 27px);
  }
}
.Pankuzu__item--error {
  color: #050505;
}
.Pankuzu__item--error::before {
  content: ">";
  display: inline-block;
  width: 10px;
  height: 20px;
  position: absolute;
  color: #050505;
  left: 50px;
}
.Pankuzu__link {
  padding-left: 10px;
}
.Pankuzu__link:first-child {
  padding-left: 0;
}

.Pagenation {
  margin: 0 auto;
}
.Pagenation__pager {
  display: flex;
  justify-content: center;
}
.Pagenation__num {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 840px) {
  .Pagenation__num {
    width: min(10.6666666667vw, 40px);
    height: min(10.6666666667vw, 40px);
  }
}
.Pagenation__top {
  width: 200px;
  border-radius: 40px;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}
.Pagenation__link {
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-size: 1.6666666667rem;
  color: #050505;
}
@media screen and (max-width: 840px) {
  .Pagenation__link {
    font-size: min(4.8vw, 18px);
    line-height: min(10.6666666667vw, 40px);
  }
}
.Pagenation__link--prev, .Pagenation__link--next, .Pagenation__link--top {
  background-color: #050505;
}
.Pagenation__link--prev, .Pagenation__link--next {
  width: 27px;
  height: 31px;
}
.Pagenation__link--prev {
  -webkit-clip-path: polygon(0 50%, 100% 100%, 100% 0);
          clip-path: polygon(0 50%, 100% 100%, 100% 0);
}
.Pagenation__link--next {
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.Pagenation__link--top {
  color: #fff;
  border-radius: 40px;
  padding: 17px 33px;
  font-size: 1rem;
  line-height: 1.3333333333rem;
  width: 100%;
  text-align: center;
}

.Error {
  margin-bottom: 35px;
}
.Error__info {
  margin: 0 auto 35px;
  text-align: center;
}

.Br-pc {
  display: block;
}
@media screen and (max-width: 840px) {
  .Br-pc {
    display: none;
  }
}

.Br-sp {
  display: none;
}
@media screen and (max-width: 840px) {
  .Br-sp {
    display: block;
  }
}

/* pagenation */
.page-numbers {
  display: flex;
  justify-content: center;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-size: 1.6666666667rem;
  color: #050505;
}

.page-numbers li {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-numbers li .current {
  width: 60px;
  height: 60px;
  display: grid;
  align-content: center;
  background-color: #050505;
  color: #fff;
  border-radius: 50%;
}

/* パンくずリスト */
@media screen and (max-width: 840px) {
  .breadcrumbs {
    flex-wrap: wrap;
    display: flex;
  }
}

/*-------------------------------------------
Header
-------------------------------------------*/
.Header__fixed {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  border-radius: 0 !important;
}
@media print, screen and (min-width: 841px) {
  .Header__fixed .Nav__item--head:last-child .Nav__link--header:hover {
    border-radius: 0;
  }
}
.Header__fixed .Drawer__open {
  border-radius: 0;
}
@media print, screen and (min-width: 841px) and (max-width: 1240px) {
  .Header__fixed {
    margin: 0 !important;
  }
}
@media screen and (max-width: 840px) {
  .Header__fixed {
    margin: 0 !important;
  }
}

.Header-PC {
  height: 58px;
  width: 97%;
  z-index: 980;
  position: fixed;
  top: 25px;
}
@media screen and (max-width: 840px) {
  .Header-PC {
    display: none;
  }
}
.Header-PC__inner {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.Header-PC__fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 0;
}
.Header-PC__fixed .Nav__item--head:last-child .Nav__link--header:hover {
  border-radius: 0;
}

.Header-SP {
  display: flex;
  position: fixed;
  height: 45px;
  width: 100%;
  top: 8px;
  left: 0;
  z-index: 980;
}
@media print, screen and (min-width: 841px) {
  .Header-SP {
    display: none;
  }
}
@media screen and (max-width: 840px) {
  .Header-SP__inner {
    display: flex;
    align-items: center;
  }
}

.Drawer {
  position: absolute;
  right: 15px;
  z-index: 980;
}
@media print, screen and (min-width: 841px) and (max-width: 1240px) {
  .Drawer {
    top: 0;
  }
}
.Drawer__check {
  top: 0;
}
.Drawer__hidden {
  display: none;
}
.Drawer__open {
  display: flex;
  height: 45px;
  width: 30px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 990;
  cursor: pointer;
}
.Drawer__bar, .Drawer__bar::before, .Drawer__bar::after {
  content: "";
  display: block;
  height: 2px;
  width: 30px;
  border-radius: 3px;
  background: #050505;
  transition: 0.4s;
  position: absolute;
}
.Drawer__bar::before {
  bottom: 9px;
}
.Drawer__bar::after {
  top: 9px;
}
.Drawer__nav {
  background: url(assets/img/bg/bg_block.svg) repeat center center/contain;
  position: fixed;
  z-index: 980;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  transition: all 0.3s;
  transform: translateY(-100%);
  overflow: auto;
}
.Drawer__outer {
  background: inherit;
}
.Drawer__wrap {
  display: block;
  top: 80px;
  width: 100%;
  padding: 90px 12% 0;
}
.Drawer__btn {
  display: flex;
  margin-bottom: 20px;
}
.Drawer__list {
  font-size: 1.2222222222rem;
  width: 100%;
  padding: 0 12%;
  margin-bottom: 40px;
}
.Drawer__item {
  padding-bottom: 4vw;
}
.Drawer__item:last-child {
  padding-bottom: 0;
}
.Drawer__link {
  color: #050505;
  display: block;
  font-size: min(4.2666666667vw, 16px);
  line-height: min(6.4vw, 24px);
  position: relative;
}
.Drawer__title {
  display: block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.5s;
}
.Drawer__title::after {
  content: "";
  position: absolute;
  right: 1.25em;
  top: 0.4em;
  width: 2px;
  height: 0.75em;
  background-color: #fff;
  transition: all 0.3s;
  transform: rotate(90deg);
}
.Drawer__title::before {
  content: "";
  position: absolute;
  right: 1.25em;
  top: 0.4em;
  width: 2px;
  height: 0.75em;
  background-color: #fff;
  transition: all 0.3s;
}
.Drawer__logo {
  border-bottom: none;
}
.Drawer__icon--list {
  display: flex;
  gap: 0 25px;
}
.Drawer__icon--item {
  margin: 0;
  align-content: center;
}

#Drawer__check:checked ~ .Drawer__open .Drawer__bar {
  background: rgba(255, 255, 255, 0);
}
#Drawer__check:checked ~ .Drawer__open .Drawer__bar::before {
  bottom: 0;
  transform: rotate(45deg);
  background-color: #050505;
}
#Drawer__check:checked ~ .Drawer__open .Drawer__bar::after {
  top: 0;
  transform: rotate(-45deg);
  background-color: #050505;
}

#Drawer__check:checked ~ .Drawer__nav {
  transform: translateY(0);
}

#Drawer__check:checked ~ .Nav-sp-bg {
  right: 0;
  display: block;
  opacity: 0;
  -webkit-animation: fadeIn 0.3s ease-in-out forwards;
          animation: fadeIn 0.3s ease-in-out forwards;
}

.Nav-sp-bg {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  top: 0;
  right: -100%;
  transition: all 0.3s;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*-------------------------------------------
Footer
-------------------------------------------*/
.Footer {
  margin-top: 180px;
  padding-bottom: 150px;
}
@media screen and (max-width: 840px) {
  .Footer {
    margin-top: 0;
    padding-bottom: 9.3333333333vw;
  }
}
@media screen and (max-width: 840px) {
  .Footer__wrap {
    padding: 5px 0 0;
  }
}
.Footer__contact {
  text-align: left;
}
@media screen and (max-width: 840px) {
  .Footer__contact {
    margin: auto auto 5.3333333333vw;
  }
}
.Footer__contact--img {
  width: 100%;
  margin-bottom: 30px;
}
@media screen and (max-width: 840px) {
  .Footer__contact--img {
    margin: 0 auto max(2.6666666667vw, 10px);
    max-height: 100px;
    width: auto;
  }
}
.Footer__contact--text {
  margin-bottom: 30px;
}
@media screen and (max-width: 840px) {
  .Footer__contact--text {
    font-size: min(4.2666666667vw, 18px);
    line-height: min(5.6vw, 24px);
    margin-bottom: min(5.8666666667vw, 30px);
  }
}

.Copyright {
  display: grid;
  place-content: center;
}
.Copyright__text {
  font-size: 0.8888888889rem;
  text-align: center;
  margin-top: 15px;
}
@media screen and (max-width: 840px) {
  .Copyright__text {
    font-size: min(4.2666666667vw, 16px);
    margin-top: min(5.3333333333vw, 20px);
  }
}

/*-------------------------------------------
Btn
-------------------------------------------*/
.Btn {
  background-color: #050505;
  transition: 0.3s;
}
.Btn:hover {
  opacity: 0.7;
  transition: 0.3s;
}
@media (hover: hover) {
  .Btn:hover {
    opacity: 0.7;
    transition: 0.3s;
  }
}
@media (hover: none) {
  .Btn:active {
    opacity: 0.7;
    transition: 0.3s;
  }
}
@media screen and (max-width: 840px) {
  .Btn {
    width: 100%;
    height: auto;
  }
}
.Btn__nav {
  border-radius: 40px;
  /* baackground-image: linear-gradient(90deg, rgba(234, 0, 0, 1), rgba(233, 115, 43, 1)); */
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 840px) {
  .Btn__nav {
    border-radius: 10.6666666667vw;
  }
}
.Btn__nav--footer {
  display: flex;
}
.Btn__nav:first-child {
  margin-right: 25px;
}
@media print, screen and (min-width: 841px) {
  .Btn__grad {
    position: relative;
  }
  .Btn__grad::after {
    content: "";
    opacity: 0;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    position: absolute;
    transition: all 0.3s ease;
    background-image: linear-gradient(90deg, rgb(110, 177, 191), rgb(119, 183, 123) 15%, rgb(188, 147, 191) 45%, rgb(220, 170, 27) 68%, rgb(232, 120, 42) 88%, rgb(233, 115, 43));
    border-radius: 40px;
    z-index: -1;
  }
  .Btn__grad:hover {
    opacity: 1 !important;
  }
  .Btn__grad:hover::after {
    opacity: 1;
  }
}
@media screen and (max-width: 840px) {
  .Btn__grad {
    position: relative;
  }
  .Btn__grad::after {
    content: "";
    opacity: 0;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    position: absolute;
    background-image: linear-gradient(90deg, rgb(110, 177, 191), rgb(119, 183, 123) 15%, rgb(188, 147, 191) 45%, rgb(220, 170, 27) 68%, rgb(232, 120, 42) 88%, rgb(233, 115, 43));
    border-radius: 40px;
    z-index: -1;
  }
  .Btn__grad:active {
    opacity: 1 !important;
    background-image: linear-gradient(90deg, rgb(110, 177, 191), rgb(119, 183, 123) 15%, rgb(188, 147, 191) 45%, rgb(220, 170, 27) 68%, rgb(232, 120, 42) 88%, rgb(233, 115, 43));
  }
  .Btn__grad:active::after {
    opacity: 1;
  }
}
.Btn__more {
  position: absolute;
  bottom: 0;
  right: 10px;
}
@media screen and (max-width: 840px) {
  .Btn__more {
    right: 0;
    bottom: 0 !important;
    position: absolute;
  }
}
@media print, screen and (min-width: 841px) {
  .Btn__more--gallery {
    right: 7px;
    bottom: 3px;
  }
}
.Btn__mini {
  width: 160px;
  height: 45px;
  padding: 12px 20px;
  transition: 0.2s;
}
.Btn__mini:hover {
  opacity: 1 !important;
  transform: scale(1.1);
  transition: 0.2s;
}
@media (hover: hover) {
  .Btn__mini:hover {
    opacity: 1 !important;
    transform: scale(1.1);
    transition: 0.2s;
  }
}
@media (hover: none) {
  .Btn__mini:active {
    opacity: 1 !important;
    transform: scale(1.1);
    transition: 0.2s;
  }
}
.Btn__small {
  position: relative;
  width: 100px;
  height: 100px;
  padding: 15px;
  transition: 0.2s;
}
.Btn__small:hover {
  opacity: 1 !important;
  transform: scale(1.2);
  transition: 0.2s;
}
@media (hover: hover) {
  .Btn__small:hover {
    opacity: 1 !important;
    transform: scale(1.2);
    transition: 0.2s;
  }
}
@media (hover: none) {
  .Btn__small:active {
    opacity: 1 !important;
    transform: scale(1.2);
    transition: 0.2s;
  }
}
@media screen and (max-width: 840px) {
  .Btn__small {
    width: 42.6666666667vw;
    height: 12vw;
    padding: 2.6666666667vw 5.3333333333vw;
  }
}
.Btn__mid {
  width: 200px;
  height: 58px;
  border-radius: 40px;
  margin: 0 auto;
  transition: 0.3s;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 840px) {
  .Btn__mid {
    width: 80%;
    max-width: 200px;
    margin: 0 auto;
  }
  .Btn__mid:active {
    background-image: linear-gradient(90deg, rgb(110, 177, 191), rgb(119, 183, 123) 15%, rgb(188, 147, 191) 45%, rgb(220, 170, 27) 68%, rgb(232, 120, 42) 88%, rgb(233, 115, 43));
  }
}
.Btn__large {
  width: 450px;
  border-radius: 40px;
  margin: 0 auto;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  text-align: center;
  line-height: 1.3;
}
@media screen and (max-width: 840px) {
  .Btn__large {
    width: 80%;
    margin: 0 auto;
  }
}
.Btn__link {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: #fff;
  position: relative;
  z-index: 1;
  border-radius: 40px;
}
.Btn__link--red {
  background-image: linear-gradient(90deg, rgb(234, 0, 0), rgb(233, 115, 43));
}
@media screen and (max-width: 840px) {
  .Btn__link {
    font-size: min(4.8vw, 18px);
    line-height: min(6.4vw, 24px);
  }
}
.Btn__link--nav {
  padding: 17px 20px;
}
@media screen and (max-width: 840px) {
  .Btn__link--nav {
    padding: min(4.5333333333vw, 17px);
  }
}
.Btn__link--mini {
  position: relative;
  font-size: 0.7777777778rem;
  font-weight: bold;
  margin-left: 20px;
}
.Btn__link--mini::before {
  content: "";
  position: absolute;
  display: block;
  background: url(assets/img/ico/icon_search.svg) no-repeat;
  top: 50%;
  left: -20px;
  width: 22px;
  height: 22px;
  transform: translateY(-50%);
  background-size: contain;
}
.Btn__link--mini:hover {
  opacity: 1 !important;
}
@media (hover: hover) {
  .Btn__link--mini:hover {
    opacity: 1 !important;
  }
}
@media (hover: none) {
  .Btn__link--mini:active {
    opacity: 1 !important;
  }
}
.Btn__link--small {
  position: relative;
  font-size: 0.7777777778rem;
  font-weight: bold;
  margin-top: 28px;
}
.Btn__link--small::before {
  content: "";
  position: absolute;
  display: block;
  background: url(assets/img/ico/icon_search.svg) no-repeat;
  top: -25px;
  left: 50%;
  width: 40px;
  height: 40px;
  transform: translateX(-50%);
}
.Btn__link--small:hover {
  opacity: 1 !important;
}
@media (hover: hover) {
  .Btn__link--small:hover {
    opacity: 1 !important;
  }
}
@media (hover: none) {
  .Btn__link--small:active {
    opacity: 1 !important;
  }
}
@media screen and (max-width: 840px) {
  .Btn__link--small {
    margin: 0 0 0 9.3333333333vw;
    font-size: 4.2666666667vw;
  }
  .Btn__link--small::before {
    top: 2%;
    left: -5.3333333333vw;
    width: 5.8666666667vw;
    height: 5.8666666667vw;
    background-size: contain;
  }
}
.Btn__link--large {
  padding: 10px;
}
@media screen and (max-width: 840px) {
  .Btn__link--large {
    padding: min(2.6666666667vw, 10px) 8%;
    margin: 0 auto;
    width: 100%;
  }
}
.Btn__company {
  display: inline-block;
}
@media print, screen and (min-width: 841px) {
  .Btn__company--wrap {
    width: 430px;
  }
}
.Btn__company--highly {
  font-size: 1.1111111111rem;
  line-height: 1.3888888889rem;
}
@media screen and (max-width: 840px) {
  .Btn__company--highly {
    font-size: min(5.3333333333vw, 20px);
    line-height: min(6.6666666667vw, 25px);
  }
}
.Btn__company--feels {
  font-family: "Noto Sans", sans-serif;
  font-size: 1.4444444444rem;
  line-height: 1.3888888889rem;
  font-weight: bold;
}
@media screen and (max-width: 840px) {
  .Btn__company--feels {
    font-size: min(6.9333333333vw, 26px);
    line-height: min(6.6666666667vw, 25px);
  }
}
.Btn__company--detail {
  font-size: 0.8888888889rem;
  line-height: 1.3888888889rem;
}
@media screen and (max-width: 840px) {
  .Btn__company--detail {
    font-size: min(4.2666666667vw, 16px);
    line-height: min(6.6666666667vw, 25px);
  }
}

/*-------------------------------------------
Nav
-------------------------------------------*/
.Nav__inner {
  display: flex;
  width: 65%;
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 80px;
  justify-content: space-between;
}
@media screen and (max-width: 840px) {
  .Nav__inner {
    width: 100%;
    max-width: 100%;
    padding: 0 8% 5.3333333333vw;
    flex-flow: column;
  }
}
@media screen and (min-width: 841px) and (max-width: 1382px) {
  .Nav__inner {
    position: static;
    width: 90%;
    margin: 0 auto;
  }
}
.Nav__list--head {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
}
@media screen and (max-width: 840px) {
  .Nav__list--head {
    display: block;
  }
}
@media screen and (max-width: 840px) {
  .Nav__list--foot {
    display: block;
    width: min(74%, 410px);
    margin: 0 auto;
  }
}
.Nav__list--icon {
  display: flex;
  gap: 0 25px;
}
.Nav__item--head {
  text-align: center;
  margin-right: 20px;
}
.Nav__item--head:last-child {
  margin-right: 0;
}
.Nav__item--foot {
  position: relative;
  text-align: left;
  margin-top: 15px;
  transition: opacity 0.3s;
}
@media print, screen and (min-width: 841px) {
  .Nav__item--foot:not(:nth-child(5)):hover {
    opacity: unset;
  }
  .Nav__item--foot:not(:nth-child(5)) .Nav__item--icon:hover {
    opacity: 0.7;
  }
  .Nav__item--foot:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 840px) {
  .Nav__item--foot {
    width: 100%;
    margin: 0 auto min(4vw, 15px);
  }
  .Nav__item--foot:last-child {
    margin-bottom: 0;
  }
}
.Nav__item--icon {
  width: 45px;
  height: 45px;
  align-content: center;
}
.Nav__link {
  font-size: 0.8888888889rem;
}
@media screen and (max-width: 840px) {
  .Nav__link {
    font-size: min(4.8vw, 18px);
  }
}
.Nav__link--header {
  color: #050505;
  padding: 2px 5px;
  background-color: #fff;
  font-size: 1rem;
}
@media print, screen and (min-width: 841px) {
  .Nav__link--footer {
    transition: 0.3s;
  }
  .Nav__link--footer:hover {
    opacity: 0.7 !important;
    transition: 0.3s;
  }
}
@media screen and (max-width: 840px) {
  .Nav__link--footer {
    font-size: min(4.8vw, 18px);
    line-height: min(6.4vw, 24px);
  }
}
.Nav__link--insta {
  display: inline;
}
.Nav__link:hover {
  opacity: 0.7;
}
@media (hover: hover) {
  .Nav__link:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .Nav__link:active {
    opacity: 0.7;
  }
}

/*---------------------
top page
---------------------*/
.Mv {
  width: 100%;
  max-width: 1376px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 840px) {
  .Mv {
    height: 100%;
    padding-top: min(8vw, 30px);
    flex-direction: column;
    max-width: 100%;
  }
}
.Mv__title {
  width: 30%;
  margin: auto 0;
}
@media screen and (max-width: 840px) {
  .Mv__title {
    width: 100%;
    margin-bottom: min(5.3333333333vw, 20px);
  }
}
.Mv__logo {
  width: 84%;
  margin: 0 0 1.3888888889rem auto;
}
@media screen and (max-width: 840px) {
  .Mv__logo {
    width: 100%;
    margin: 0 auto min(4vw, 15px);
    padding: 0 27%;
  }
}
.Mv__catch {
  text-align: center;
  font-size: 1.3888888889rem;
  line-height: 2.2222222222rem;
  font-weight: 600;
}
@media screen and (max-width: 840px) {
  .Mv__catch {
    margin: 0 auto;
    font-size: min(4.8vw, 30px);
    line-height: min(6.4vw, 40px);
  }
}
.Mv__image {
  width: 60%;
}
@media screen and (max-width: 840px) {
  .Mv__image {
    width: 100%;
  }
}
.Mv__img-group {
  width: 100%;
  display: grid;
  gap: 15px;
  grid-template-columns: 5fr 6fr;
}
@media screen and (max-width: 840px) {
  .Mv__img-group {
    gap: 2.6666666667vw;
    margin-bottom: -10%;
  }
}
.Mv__photo {
  width: 100%;
}
.Mv__photo:nth-child(1) {
  grid-row: 1/3;
  grid-column: 1;
  height: 62vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.Mv__photo:nth-child(2) {
  grid-row: 1/2;
  grid-column: 2;
  height: 44vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.Mv__photo:nth-child(3) {
  grid-row: 2/2;
  grid-column: 2;
  height: 16vh;
  background-color: #FCFAF8;
  padding: 2%;
}
.Mv__photo:nth-child(4) {
  grid-row: 3/4;
  grid-column: 1/3;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 40vh;
}
.Mv__photo--logo {
  height: 100%;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 840px) {
  .Mv__photo:nth-child(1) {
    height: 100%;
  }
  .Mv__photo:nth-child(2) {
    height: 100%;
  }
  .Mv__photo:nth-child(3) {
    height: 100%;
  }
  .Mv__photo:nth-child(4) {
    height: 80%;
  }
}

.Top {
  width: 100%;
  margin: 180px auto;
}
@media screen and (max-width: 840px) {
  .Top {
    width: 100%;
    padding: 0;
    margin: min(16vw, 60px) auto;
  }
}
.Top__wide {
  width: 48%;
}
@media screen and (max-width: 840px) {
  .Top__wide {
    width: 100%;
  }
}
.Top__heading {
  font-size: 2.2222222222rem;
  line-height: 3.3333333333rem;
  font-weight: 600;
  margin-bottom: 40px;
}
@media screen and (max-width: 840px) {
  .Top__heading {
    font-size: 8vw;
    line-height: 12vw;
    margin-bottom: 12vw;
  }
}
.Top__text {
  line-height: 2rem;
}
@media screen and (max-width: 840px) {
  .Top__text {
    line-height: 8.5333333333vw;
    margin-bottom: 18.6666666667vw;
  }
}
.Top__narrow {
  width: 43%;
}
@media screen and (max-width: 840px) {
  .Top__narrow {
    width: 100%;
  }
}
@media screen and (max-width: 840px) {
  .Top__photo {
    width: 88%;
  }
}
@media screen and (max-width: 840px) {
  .Top__photo--right {
    margin-left: auto;
  }
}

.Top-Gallery {
  width: 100%;
  max-width: 1376px;
}
.Top-Gallery__left {
  width: 40%;
}
@media screen and (max-width: 840px) {
  .Top-Gallery__left {
    width: 100%;
  }
}
@media screen and (max-width: 840px) {
  .Top-Gallery__title {
    margin-bottom: 0;
    padding-bottom: min(9.3333333333vw, 35px);
  }
}
.Top-Gallery__title--area {
  position: -webkit-sticky;
  position: sticky;
  top: 150px;
  padding-bottom: 250px;
}
@media screen and (max-width: 840px) {
  .Top-Gallery__title--area {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 840px) {
  .Top-Gallery__title--head {
    padding: 0 21%;
  }
}
.Top-Gallery__right {
  width: 60%;
}
@media screen and (max-width: 840px) {
  .Top-Gallery__right {
    width: 100%;
  }
}
.Top-Gallery__image {
  position: relative;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
}
.Top-Gallery__image:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 840px) {
  .Top-Gallery__image {
    margin-bottom: min(8vw, 30px);
  }
}
@media screen and (max-width: 840px) {
  .Top-Gallery__photo {
    position: relative;
  }
}
.Top-Gallery__photo img {
  aspect-ratio: 11/8;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 840px) {
  .Top-Gallery__photo img {
    height: auto;
  }
}
.Top-Gallery__detail {
  position: absolute;
  width: 100%;
  height: 100px;
  bottom: 10px;
}
@media screen and (max-width: 840px) {
  .Top-Gallery__detail {
    position: static;
    height: auto;
    bottom: auto;
  }
}
.Top-Gallery__text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.Top-Gallery__text--bg {
  position: absolute;
  background-color: #fff;
  padding: 16px 20px;
  display: inline-block;
  top: 50%;
  transform: translateY(-50%);
  max-width: 84%;
}
@media screen and (max-width: 840px) {
  .Top-Gallery__text--bg {
    position: static;
    background-color: transparent;
    max-width: 100%;
    top: auto;
    transform: translateY(0);
    padding: min(5.3333333333vw, 20px) 9% 0;
  }
}
@media screen and (max-width: 840px) {
  .Top-Gallery__btn--pc {
    display: none;
  }
}
@media print, screen and (min-width: 841px) {
  .Top-Gallery__btn--sp {
    display: none;
  }
}

.Top-Interview {
  margin-bottom: 180px !important;
}
@media screen and (max-width: 840px) {
  .Top-Interview {
    margin-bottom: min(16vw, 60px) !important;
  }
}

.Instagram {
  width: 84%;
  max-width: 1290px;
}
@media screen and (max-width: 840px) {
  .Instagram__title {
    padding: 0 9%;
  }
}
.Instagram__wrap {
  display: flex;
  gap: 30px;
  margin-bottom: 35px;
}
@media screen and (max-width: 840px) {
  .Instagram__wrap {
    gap: 4vw;
    margin-bottom: min(9.3333333333vw, 35px);
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 840px) {
  .Instagram__list {
    width: 47%;
  }
}
.Instagram__image {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

#sb_instagram {
  padding-bottom: 35px !important;
}

/*---------------------
feels page
---------------------*/
.About {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 840px) {
  .About__inner {
    flex-direction: column-reverse;
  }
}
.About__title--img {
  width: 240px;
}
@media screen and (max-width: 840px) {
  .About__title--img {
    width: 100%;
    padding: 0 27%;
  }
}
@media screen and (max-width: 840px) {
  .About__text, .About__image {
    width: 100% !important;
  }
}
@media screen and (max-width: 840px) {
  .About__text {
    margin-top: min(8vw, 30px);
    padding: 0 9%;
  }
}
.About__image {
  width: 62%;
}

.Intro {
  margin-bottom: 120px;
}
@media screen and (max-width: 840px) {
  .Intro {
    margin-bottom: 16vw;
  }
}

@media screen and (max-width: 840px) {
  .Concept {
    margin-bottom: min(26.6666666667vw, 100px);
  }
}
.Concept__text {
  width: 35%;
}
.Concept__terms {
  margin: 30px 0;
  width: 70%;
  line-height: 1.3;
}
@media screen and (max-width: 840px) {
  .Concept__terms {
    margin: min(8vw, 30px) 0;
    width: 100%;
  }
}
.Concept__list {
  display: flex;
  margin-bottom: 10px;
}
.Concept__item {
  margin-top: 13px;
}
@media screen and (max-width: 840px) {
  .Concept__item {
    margin-top: min(2.4vw, 9px);
    font-size: min(4.8vw, 18px);
    line-height: min(6.4vw, 24px);
  }
}
.Concept__item--en {
  width: 44%;
  font-family: "Noto Sans", sans-serif;
}
@media screen and (max-width: 840px) {
  .Concept__item--en {
    font-size: min(4.8vw, 18px);
    line-height: min(6.4vw, 24px);
  }
}
.Concept__item--big {
  font-size: 1.6666666667rem;
  line-height: 2.2777777778rem;
  font-weight: bold;
}
.Concept__item--blue {
  color: #6EB1BF;
}
.Concept__item--green {
  color: #77B77B;
}
.Concept__item--purple {
  color: #BC93BF;
}
.Concept__item--yellow {
  color: #DCAA1B;
}
.Concept__item--red {
  color: #EA0000;
}
.Concept__item--connect {
  margin: 13px 10px 0 0;
}
@media screen and (max-width: 840px) {
  .Concept__item--connect {
    margin: min(2.4vw, 9px) 2.6666666667vw 0 0;
  }
}
.Concept__image {
  background-color: #FCFAF8;
  width: 100%;
  height: 430px;
  margin-top: 55px;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 840px) {
  .Concept__image {
    height: 100%;
    margin-top: 0;
    padding: 9%;
  }
}
.Concept__logo {
  width: 68%;
  margin: auto;
}
@media screen and (max-width: 840px) {
  .Concept__logo {
    width: 100%;
  }
}

/*---------------------
gallery page
---------------------*/
.Gallery {
  margin: 0 auto 60px;
}
@media screen and (max-width: 840px) {
  .Gallery__title {
    margin-bottom: min(16vw, 60px);
  }
}
@media screen and (max-width: 840px) {
  .Gallery__title--img {
    width: 59%;
    margin: 0 auto;
  }
}
.Gallery__title--text {
  margin-top: -18px;
}
.Gallery__outer {
  margin-bottom: 60px;
}
.Gallery__container {
  margin-top: 30px;
}
.Gallery__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px 30px;
}
@media screen and (max-width: 840px) {
  .Gallery__list {
    display: flex;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 840px) {
  .Gallery__card {
    width: 100%;
  }
}
.Gallery__card--inner {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media print, screen and (min-width: 841px) {
  .Gallery__link:hover .Btn__mini {
    transform: scale(1.1);
    transition: transform 0.2s ease;
  }
}
.Gallery__desc {
  width: 82%;
  margin: 20px auto 0;
  flex-grow: 1;
  font-size: 0.8888888889rem;
  line-height: 1.1666666667rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.Gallery__detail {
  width: 100%;
  max-width: 1376px;
  margin: 0 auto 60px;
}
.Gallery__textarea {
  width: 30%;
  margin: 0 50px 0 auto;
}
@media screen and (max-width: 840px) {
  .Gallery__textarea {
    width: 100%;
    margin: 0 auto min(8vw, 30px);
    padding: 0 9%;
  }
}
.Gallery__text {
  position: -webkit-sticky;
  position: sticky;
  top: 150px;
  font-size: 0.8888888889rem;
  line-height: 1.7777777778rem;
}
@media print, screen and (min-width: 841px) {
  .Gallery__text {
    margin-bottom: 100px;
  }
}
.Gallery__heading {
  font-size: 1.3333333333rem;
  line-height: 2;
  margin-bottom: 60px;
}
@media screen and (max-width: 840px) {
  .Gallery__heading {
    font-size: min(5.3333333333vw, 24px);
    margin-bottom: min(8vw, 60px);
  }
}
.Gallery__describe {
  font-size: 0.8888888889rem;
}
.Gallery__img {
  position: relative;
}
.Gallery__img .wp-post-image {
  aspect-ratio: 124/85;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 840px) {
  .Gallery__img--bundle {
    margin-bottom: min(8vw, 30px);
  }
  .Gallery__img--bundle:last-of-type {
    margin-bottom: 0;
  }
}
.Gallery__imgarea {
  width: 60%;
}
@media screen and (max-width: 840px) {
  .Gallery__imgarea {
    width: 100%;
  }
}
.Gallery__imgarea .wp-block-image {
  margin: 30px 0;
  width: 100%;
}
.Gallery__imgarea .wp-block-image:first-child {
  margin-top: 0;
}
.Gallery__imgarea .is-resized img {
  margin: 0 auto;
}
.Gallery__imgarea p {
  font-size: 0.8888888889rem;
  margin-bottom: 30px;
}
@media screen and (max-width: 840px) {
  .Gallery__imgarea p {
    font-size: min(4.2666666667vw, 16px);
    margin-bottom: 0;
    padding: 0 9%;
  }
}
.Gallery__imgarea .wp-block-heading {
  font-size: 1.3333333333rem;
  line-height: 1.7777777778rem;
  margin: 50px auto 30px 25px;
  position: relative;
}
.Gallery__imgarea .wp-block-heading::before {
  content: "";
  position: absolute;
  background-image: linear-gradient(180deg, rgb(110, 177, 191), rgb(119, 183, 123) 15%, rgb(188, 147, 191) 45%, rgb(220, 170, 27) 68%, rgb(232, 120, 42) 88%, rgb(233, 115, 43));
  width: 15px;
  height: 25px;
  top: 4px;
  left: -25px;
}
@media screen and (max-width: 840px) {
  .Gallery__imgarea .wp-block-heading {
    font-size: min(5.3333333333vw, 24px);
    line-height: min(7.2vw, 32px);
    padding-left: 4%;
  }
  .Gallery__imgarea .wp-block-heading::before {
    width: 10px;
    height: 20px;
    left: -1%;
  }
}
.Gallery__imgarea .has-fixed-layout {
  width: 45%;
}
@media screen and (max-width: 840px) {
  .Gallery__imgarea .has-fixed-layout {
    width: 100%;
    padding: 0 9%;
  }
}
@media screen and (max-width: 840px) {
  .Gallery__imgarea .wp-block-table {
    padding: 0 8%;
  }
}
.Gallery__imgarea .wp-block-table tr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  position: relative;
}
.Gallery__imgarea .wp-block-table tr:nth-child(1), .Gallery__imgarea .wp-block-table tr:nth-child(4) {
  padding-bottom: 20px;
}
.Gallery__imgarea .wp-block-table tr:nth-child(1)::after, .Gallery__imgarea .wp-block-table tr:nth-child(4)::after {
  content: "";
  width: 100px;
  height: 1px;
  background-color: #959595;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 840px) {
  .Gallery__imgarea .wp-block-table tr {
    flex-direction: column;
  }
}
.Gallery__imgarea .wp-block-table td, .Gallery__imgarea .wp-block-table th {
  border: none;
  padding: 0;
}
.Gallery__imgarea .wp-block-table tr td:nth-child(1) {
  width: 30%;
  min-width: 110px;
  text-align: left;
}
@media screen and (max-width: 840px) {
  .Gallery__imgarea .wp-block-table tr td:nth-child(1) {
    width: 100%;
  }
}
.Gallery__imgarea .wp-block-table tr td:nth-child(2) {
  width: 63%;
  min-width: 250px;
}
@media screen and (max-width: 840px) {
  .Gallery__imgarea .wp-block-table tr td:nth-child(2) {
    width: 100%;
  }
}
.Gallery__imgarea .wp-block-table tr td .has-large-font-size {
  font-size: 1.3333333333rem !important;
  line-height: 1.5rem;
}
.Gallery__imgarea .wp-block-table tr td .has-small-font-size {
  font-size: 0.8888888889rem !important;
  line-height: 1.5rem;
}
@media screen and (max-width: 840px) {
  .Gallery__imgarea .wp-block-columns-is-layout-flex {
    margin: 30px 0;
  }
}
.Gallery__imgarea .wp-element-caption {
  font-size: 0.8888888889rem;
  margin: 30px auto;
}
@media screen and (max-width: 840px) {
  .Gallery__imgarea .wp-element-caption {
    font-size: min(4.2666666667vw, 16px);
    margin-bottom: 0;
    padding: 0 9%;
  }
}
.Gallery__imgwrap {
  margin-bottom: 50px;
}
@media screen and (max-width: 840px) {
  .Gallery__imgwrap {
    margin-bottom: min(8vw, 30px);
  }
}
.Gallery__photo {
  margin-bottom: 30px;
}
@media screen and (max-width: 840px) {
  .Gallery__photo {
    margin-bottom: min(8vw, 30px);
  }
}
.Gallery__caption {
  font-size: 0.8888888889rem;
  line-height: 1.1666666667rem;
  margin-bottom: 30px;
}
@media screen and (max-width: 840px) {
  .Gallery__caption {
    font-size: min(4.2666666667vw, 16px);
    line-height: min(5.6vw, 21px);
    margin-bottom: 0;
    padding: 0 9%;
  }
}
.Gallery__subheading {
  margin-bottom: 30px;
}
@media screen and (max-width: 840px) {
  .Gallery__subheading {
    padding-left: 4%;
    margin-bottom: min(9.3333333333vw, 30px);
  }
}
.Gallery__subheading--text {
  font-size: 1.3333333333rem;
  line-height: 1.7777777778rem;
  margin-left: 25px;
  position: relative;
}
.Gallery__subheading--text::before {
  content: "";
  position: absolute;
  background-image: linear-gradient(180deg, rgb(110, 177, 191), rgb(119, 183, 123) 15%, rgb(188, 147, 191) 45%, rgb(220, 170, 27) 68%, rgb(232, 120, 42) 88%, rgb(233, 115, 43));
  width: 15px;
  height: 25px;
  top: 4px;
  left: -25px;
}
@media screen and (max-width: 840px) {
  .Gallery__subheading--text {
    font-size: min(5.3333333333vw, 24px);
    line-height: min(7.2vw, 32px);
  }
  .Gallery__subheading--text::before {
    width: 10px;
    height: 20px;
  }
}
.Gallery__plan {
  margin-bottom: 50px;
}
.Gallery__field {
  width: 42%;
}
@media screen and (max-width: 840px) {
  .Gallery__field {
    width: 100%;
    padding: 0 9%;
  }
}
.Gallery__table {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  position: relative;
}
@media screen and (max-width: 840px) {
  .Gallery__table {
    flex-direction: column;
  }
}
.Gallery__table--line {
  position: relative;
}
.Gallery__table--line:after {
  content: "";
  position: absolute;
  width: 30%;
  height: 1px;
  background-color: #959595;
}
.Gallery__table:nth-child(1), .Gallery__table:nth-child(4) {
  padding-bottom: 20px;
}
.Gallery__table:nth-child(1)::after, .Gallery__table:nth-child(4)::after {
  content: "";
  width: 100px;
  height: 1px;
  background-color: #959595;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 840px) {
  .Gallery__item, .Gallery__specific {
    width: 100% !important;
  }
}
.Gallery__item {
  width: 30%;
  font-weight: normal;
  text-align: left;
}
.Gallery__specific {
  width: 63%;
}
.Gallery__specific--big {
  font-size: 1.3333333333rem;
  line-height: 1.5rem;
}
.Gallery__specific--small {
  font-size: 0.8888888889rem;
  line-height: 1.5rem;
}
@media screen and (max-width: 840px) {
  .Gallery__noposts {
    padding-left: 4%;
  }
}

.Select {
  margin-left: 25px;
}
@media screen and (max-width: 840px) {
  .Select {
    margin: 0 auto;
    padding: 0 8%;
  }
}
.Select__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 10px;
}
@media screen and (max-width: 840px) {
  .Select__list {
    justify-content: center;
  }
}
.Select__list .cat-item {
  background-color: #050505;
  border-radius: 40px;
  border: 1px solid #050505;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.Select__list .cat-item:last-child {
  margin-right: 0;
}
@media screen and (max-width: 840px) {
  .Select__list .cat-item {
    padding: min(1.8666666667vw, 12px) min(3.2vw, 15px);
  }
}
.Select__list .cat-item a {
  font-size: 0.8888888889rem;
  line-height: 1.1666666667rem;
  color: #fff;
  padding: 12px 15px;
  display: inline-block;
}
.Select__list .current-cat {
  background-color: transparent;
}
.Select__list .current-cat a {
  color: #050505;
}
.Select__item:hover {
  opacity: 0.7;
}
.Select__link {
  font-size: 0.8888888889rem;
  line-height: 1.1666666667rem;
  color: #fff;
  padding: 12px 15px;
  display: inline-block;
}
.Select__link--choice {
  color: #050505;
}

.current-cat:hover {
  opacity: 1;
}

/*---------------------
interview page
---------------------*/
.Interview {
  margin-bottom: 60px;
}
@media screen and (max-width: 840px) {
  .Interview {
    margin-bottom: 10.6666666667vw;
  }
}
@media screen and (max-width: 840px) {
  .Interview__title--head {
    padding: 0 10%;
  }
}
@media screen and (max-width: 840px) {
  .Interview__title--img {
    padding: 0 10%;
  }
}
.Interview__wrap {
  width: 100%;
}
.Interview__container {
  margin-bottom: 60px;
}
@media screen and (max-width: 840px) {
  .Interview__container {
    margin-bottom: min(16vw, 60px);
  }
}
.Interview__card {
  background-color: #fff;
  width: 100%;
  margin-bottom: 50px;
  padding: 40px 50px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 840px) {
  .Interview__card {
    background-color: transparent;
    box-shadow: none;
    margin-bottom: 0;
    padding: 0;
  }
}
.Interview__top {
  margin-bottom: 30px;
}
@media screen and (max-width: 840px) {
  .Interview__top {
    margin-bottom: 0;
  }
}
.Interview__inner {
  display: flex;
}
@media screen and (max-width: 840px) {
  .Interview__inner {
    flex-direction: column-reverse;
  }
}
.Interview__text, .Interview__image {
  width: 50%;
}
@media screen and (max-width: 840px) {
  .Interview__text, .Interview__image {
    width: 100%;
  }
}
.Interview__text {
  margin-right: 50px;
}
@media screen and (max-width: 840px) {
  .Interview__text {
    margin: 0 auto;
    padding: min(5.3333333333vw, 20px) 9% min(8vw, 30px);
  }
}
.Interview__text--heading {
  font-size: 1.3333333333rem;
  line-height: 2rem;
  margin-bottom: 35px;
}
@media screen and (max-width: 840px) {
  .Interview__text--heading {
    font-size: min(5.3333333333vw, 24px);
    line-height: min(7.2vw, 36px);
    margin-bottom: min(5.3333333333vw, 35px);
  }
}
.Interview__text p {
  line-height: 2;
}
.Interview__image {
  position: relative;
}
.Interview__image .wp-post-image {
  aspect-ratio: 35/24;
  width: 100%;
  height: auto;
}
.Interview__btn {
  bottom: 10px;
}
.Interview__detail {
  width: 90%;
  margin: 0 2% 0 auto;
}
@media screen and (max-width: 840px) {
  .Interview__detail {
    width: 100%;
  }
}
.Interview__heading--pc {
  margin: 0 0 56px 6%;
}
@media screen and (max-width: 840px) {
  .Interview__heading--pc {
    display: none;
  }
}
.Interview__heading--sp {
  font-size: min(5.3333333333vw, 30px);
  line-height: min(7.2vw, 40px);
  margin-bottom: 5.3333333333vw;
}
@media print, screen and (min-width: 841px) {
  .Interview__heading--sp {
    display: none;
  }
}
.Interview__outer {
  width: 100%;
  max-width: 1070px;
  margin: 0 auto;
}
@media screen and (max-width: 840px) {
  .Interview__img {
    margin-bottom: 0;
  }
}
.Interview__img--large {
  width: 74%;
}
@media screen and (max-width: 840px) {
  .Interview__img--large {
    width: 100%;
  }
}
.Interview__img--narrow {
  width: 22%;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
}
@media screen and (max-width: 840px) {
  .Interview__img--narrow {
    display: none;
  }
}
.Interview__textarea {
  width: 89%;
  margin: 50px auto 60px;
}
@media screen and (max-width: 840px) {
  .Interview__textarea {
    width: 100%;
    margin: 5.3333333333vw auto 16vw;
    padding: 0 9%;
  }
}
.Interview__qa-text::before {
  text-align: center;
  position: absolute;
  width: 25px;
  height: 25px;
  color: #fff;
  margin-right: 10px;
  left: -35px;
  top: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 14%, rgb(0, 0, 0) 14%);
}
@media screen and (max-width: 840px) {
  .Interview__qa-text {
    font-size: min(4.2666666667vw, 18px);
  }
}
.Interview__intro {
  margin-bottom: 50px;
}
@media screen and (max-width: 840px) {
  .Interview__intro {
    margin-bottom: 9.3333333333vw;
  }
}
.Interview__qa {
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
}
@media screen and (max-width: 840px) {
  .Interview__qa {
    margin-bottom: min(13.3333333333vw, 50px);
  }
}
.Interview__question, .Interview__answer {
  position: relative;
  margin-left: 35px;
  /*
          &::before {
              text-align: center;
              position: absolute;
              width: 25px;
              height: 25px;
              background-color: c.$blk;
              color: c.$wht;
              margin-right: 10px;
              left: -35px;
          }


          &::after {
              text-align: center;
              position: absolute;
              width: 25px;
              height: 25px;
              background-color: c.$blk;
              color: c.$wht;
              margin-right: 10px;
              left: -35px;
          }
  */
}
@media screen and (max-width: 840px) {
  .Interview__question, .Interview__answer {
    margin-left: min(9.3333333333vw, 35px);
  }
  .Interview__question::before, .Interview__answer::before {
    width: min(6.6666666667vw, 25px);
    height: min(6.6666666667vw, 25px);
    margin-right: 2.6666666667vw;
    left: max(-9.3333333333vw, -35px);
  }
}
.Interview__question {
  margin-bottom: 30px;
  text-align: left;
}
.Interview__question::before {
  content: "Q";
  position: absolute;
  margin-top: -4px;
  padding-bottom: 35px;
}
.Interview__question::after {
  text-align: center;
  position: absolute;
  width: 25px;
  height: 25px;
  background-color: #050505;
  color: #fff;
  margin-right: 10px;
  left: -35px;
}
@media screen and (max-width: 840px) {
  .Interview__question {
    margin-bottom: min(8vw, 30px);
  }
}
.Interview__answer::before {
  content: "A";
  margin-top: -2px;
  padding-bottom: 32px;
}
.Interview__comment {
  background-color: #FCFAF8;
  padding: 20px;
}
@media screen and (max-width: 840px) {
  .Interview__comment {
    padding: min(5.3333333333vw, 20px);
  }
}
.Interview__comment--from {
  font-size: 1.1111111111rem;
  line-height: 1.5rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 840px) {
  .Interview__comment--from {
    font-size: min(5.3333333333vw, 20px);
    line-height: min(7.2vw, 27px);
    margin-bottom: min(2.6666666667vw, 10px);
  }
}
.Interview__comment--text {
  font-size: 0.8888888889rem;
}
@media screen and (max-width: 840px) {
  .Interview__comment--text {
    font-size: min(4.2666666667vw, 16px);
  }
}

/* smart slider */
@media screen and (max-width: 840px) {
  .n2-section-smartslider {
    padding: 0 4%;
  }
}
.n2-section-smartslider img {
  aspect-ratio: 11/8;
  height: auto !important;
  -o-object-fit: cover;
     object-fit: cover;
  background-size: cover;
}

.n2-ss-slider-controls-side {
  gap: 40px;
}
@media screen and (max-width: 840px) {
  .n2-ss-slider-controls-side {
    display: grid !important;
    gap: 2.6666666667vw;
  }
}

.n2-ss-slider-1 {
  aspect-ratio: 11/8;
}
@media screen and (max-width: 840px) {
  .n2-ss-slider-1 {
    width: 100%;
  }
}

@media screen and (max-width: 840px) {
  .n2-ss-slider-controls {
    width: 100%;
  }
}

.nextend-thumbnail-vertical {
  gap: 32px;
}
@media screen and (max-width: 840px) {
  .nextend-thumbnail-vertical {
    grid-auto-flow: column;
    display: grid;
  }
}

@media screen and (max-width: 840px) {
  .nextend-thumbnail-inner {
    overflow-y: unset !important;
  }
}

@media screen and (max-width: 840px) {
  .nextend-thumbnail-scroller {
    grid-template-columns: auto auto auto !important;
    gap: 2.6666666667vw;
  }
}

.nextend-thumbnail-button img {
  aspect-ratio: 1/1;
}

/*
.n2-section-smartslider {
    img {
        object-fit: cover;
        background-size: cover;
    }
}
*/
@media screen and (max-width: 840px) {
  .n2-ss-slide-background-image img {
    width: 100%;
  }
}

/*-------------------------------------------
Swiper
-------------------------------------------*/
.swiper-button-prev,
.swiper-button-next {
  width: 60px !important;
  height: 60px !important;
  top: 0;
  bottom: 0;
  transition: 0.3s;
  background: url(assets/img/common/img_arrow.svg) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 840px) {
  .swiper-button-prev,
.swiper-button-next {
    width: 44px !important;
    height: 30px !important;
    display: none !important;
  }
  .swiper-button-prev:active,
.swiper-button-next:active {
    box-shadow: unset;
    transform: translateY(3px);
  }
}
@media print, screen and (min-width: 841px) {
  .swiper-button-prev:hover,
.swiper-button-next:hover {
    opacity: 0.7;
  }
}

.swiper-button-prev:after,
.swiper-button-next:after {
  content: "" !important;
}

.swiper-button-prev {
  left: 6.5% !important;
  transform: rotate(180deg);
  filter: drop-shadow(0px -3px 6px rgba(0, 0, 0, 0.16));
}
@media screen and (max-width: 840px) {
  .swiper-button-prev {
    right: 50px !important;
  }
}

.swiper-button-next {
  right: 6.5% !important;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}

.swiper-slide:not(.swiper-slide-visible) .slide {
  pointer-events: none;
  opacity: 0.3;
}

.swiper-pagination {
  position: relative !important;
  text-align: center !important;
  margin-bottom: 35px;
}

.swiper-pagination-bullet {
  margin: 0 15px 0 0 !important;
}
.swiper-pagination-bullet:last-child {
  margin-right: 0 !important;
}

.swiper-pagination-bullet-active {
  background: #050505 !important;
}

.swiper-pagination-horizontal {
  bottom: 0 !important;
}

/*-------------------------------------------
Headerをスクロールしたとき上に固定するためJSで付けるクラス
-------------------------------------------*/
.fixed {
  background-color: #fff;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 990;
}/*# sourceMappingURL=style.css.map */