@charset "utf-8";
/*
Theme Name: +BASE
Author: Sasai moe
Description: +BASE用のテンプレートです
Version： 1.0
*/

/* base
================================================================== */
:root {
  /* color */
  --black: #000;
  --black02: #333;
  --white: #fff;
  --red: #a00000;
  --green: #006837;
  --gray: #e6e6e6;
  --d-gray: #d5d5d5;
  --d-gray02: #808080;

  --header-h: 70px;
  --fs-45: 4.5rem;
  --fs-27: 2.7rem;
  --fs-24: 2.4rem;
  --fs-17: 1.7rem;

  --mg-80: 8rem;
  --mg-60: 6rem;
  --mg-40: 4rem;
  --mg-30: 3rem;
}

@media only screen and (max-width: 1024px) {
  :root {
    --header-h: 60px;
    --fs-27: 2.4rem;
  }
}

@media only screen and (max-width: 767px) {
  :root {
    --fs-45: 3.6rem;
    --fs-27: 2.2rem;
    --fs-24: 2.2rem;
    --fs-17: 1.5rem;

    --mg-80: 6rem;
    --mg-60: 4rem;
    --mg-40: 3rem;
    --mg-30: 2rem;
  }
}

/* common
---------------------------------------------------------------- */
body {
  font-size: 1.7rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.05em;
  word-wrap: break-word;
  color: var(--black);
  background-color: #fff;
  width: 100%;
}

main {
  overflow: hidden;
}

a {
  transition: 0.3s ease;
}

a:hover {
  opacity: 0.5;
}

@media only screen and (max-width: 599px) {
  body {
    font-size: 1.5rem;
    line-height: 1.6;
  }
}
.d-i {
  display: inline;
}

.d-ib {
  display: inline-block;
}

.d-b {
  display: block;
}

.w-100 {
  width: 100%;
}

.fn-serif {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

/* PC,SP表示
---------------------------------------------------------------- */
@media only screen and (max-width: 1024px) {
  .d-pc {
    display: none !important;
  }
}
@media only screen and (min-width: 1025px) {
  .d-tb {
    display: none !important;
  }
}
@media only screen and (max-width: 599px), (min-width: 1025px) {
  .d-tb-only {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-tb-sp {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .d-pc-tb {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-768 {
    display: none !important;
  }
}
@media only screen and (min-width: 600px) {
  .d-sp {
    display: none !important;
  }
}
/* layout
--------------------------------------------------------------- */
.inner {
  margin-left: auto;
  margin-right: auto;
  max-width: calc(1000px + 8%);
  padding: 100px 4%;
  width: 100%;

  @media (max-width: 767px) {
    padding: 80px 4%;
  }

  @media (max-width: 767px) {
    padding: 50px 4%;
  }
}

.inner-m {
  max-width: calc(1100px + 8%);
}

.inner-l {
  max-width: calc(1400px + 8%);
}

.flex-basic {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.flex-row-reverse {
  display: flex;
  flex-direction: row-reverse;
}

.flex-nowrap {
  display: flex;
  flex-wrap: nowrap;
}

.flex-wrap {
  display: flex;
  flex-wrap: wrap;
}

.flex-between {
  display: flex;
  justify-content: space-between;
}

.flex-around {
  display: flex;
  justify-content: space-around;
}

.flex-flexend {
  display: flex;
  justify-content: flex-end;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-h-center {
  display: flex;
  justify-content: center;
}

.flex-v-center {
  display: flex;
  align-items: center;
}

/* index
================================================================== */

.btn-wrap {
  margin-top: var(--mg-60);
}

.btn {
  position: relative;
  z-index: 1;
  overflow: hidden;

  display: inline-block;
  text-align: center;
  font-size: var(--fs-17);
  line-height: 1.2;
  padding: 1.2em 2em;
  min-width: 240px;

  border-radius: 100px;
  background-color: var(--white);
}

.btn::after {
  background: var(--black);
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  content: "";

  width: 100%;
  height: 100%;

  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
}

.btn:hover {
  opacity: 1;
  color: var(--white);
}

.btn:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.ttl-01 {
  position: relative;
  font-size: var(--fs-24);
  padding-bottom: 0.5em;
  margin: 30px 0 1em;
  border-bottom: 2px solid #ccc;

  &:before {
    position: absolute;
    content: "";
    display: block;
    background: #999;
    left: 0;
    bottom: -2px;
    width: 100px;
    height: 2px;
  }
}

/* header
---------------------------------------------------------------- */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  z-index: 99;
  width: 100%;
  height: var(--header-h);
  padding: 0 22px;
  transition: background-color 0.3s ease;

  @media only screen and (min-width: 768px) {
    &.js-bg {
      background-color: rgba(255, 255, 255, 0.85);
    }
  }

  @media only screen and (max-width: 1280px) {
    padding-right: 80px;
  }

  @media only screen and (max-width: 1024px) {
    padding: 10px 70px 10px 15px;
  }

  @media only screen and (max-width: 768px) {
    padding-right: 60px;
  }
}

.header-logo img {
  width: auto;
  height: 55px;

  @media only screen and (max-width: 1024px) {
    height: 40px;
  }
}

.header-menu-list {
  color: var(--black02);
  display: flex;
  align-items: center;
  column-gap: 1em;

  li:not(:last-of-type) {
    @media only screen and (min-width: 1025px) {
      margin-left: 1em;
    }
  }

  a {
    font-size: 1.5rem;
    display: block;
  }

  img {
    width: 1.9em;
  }

  .btn {
    color: var(--white);
    background-color: var(--black);
    min-width: 150px;
    padding: 0.95em 2em;

    &::after {
      background: var(--d-gray02);
    }

    @media only screen and (max-width: 1024px) {
      min-width: 115px;
      padding: 0.95em 1em;
    }

    @media only screen and (max-width: 768px) {
      padding: 0.7em 0;
    }
  }
}

.header-menu-list-nav {
  @media only screen and (max-width: 1280px) {
    display: none;
  }
}

.header-menu-list-inst {
  @media only screen and (max-width: 768px) {
    display: none;
  }
}

/* dropdown */
.dropdown {
  position: relative;
  list-style: none;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 1rem);
  right: 0;
  background: var(--white);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  border-radius: 6px;

  width: 25rem;
  padding: 1rem 1.5rem;
  margin: 0;
  list-style: none;
  z-index: 1000;
}

.dropdown-menu li {
  font-size: 1.5rem;
  padding: 1em 0;
  margin: 0 !important;

  &:not(:last-of-type) {
    border-bottom: 1px solid var(--d-gray02);
  }

  span {
    font-weight: 600;
    font-size: 1.3em;
    padding-right: 0.2em;
  }

  i {
    padding-right: 0.4em;
  }
}

.dropdown.open .dropdown-menu {
  display: block;
}

.dropdown.open .btn::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* burger animation */
.hamburger-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: var(--header-h);
  height: var(--header-h);
  cursor: pointer;
  z-index: 9999;
  display: none;

  @media only screen and (max-width: 1280px) {
    display: block;
  }
}

.bar {
  position: absolute;
  width: 50%;
  height: 2px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--black);
  transition: 0.4s ease;
}

.bar--top {
  top: 34%;
}
.bar--middle {
  top: 50%;
}
.bar--bottom {
  top: 66%;
}

.js-close {
  .bar {
    background: var(--white);
  }
  .bar--top {
    top: 48%;
    transform: translateX(-50%) rotate(45deg);
  }

  .bar--middle {
    opacity: 0;
    transition: 0.1s;
  }

  .bar--bottom {
    top: 48%;
    transform: translateX(-50%) rotate(-45deg);
  }
}

/* burger inner */
.burger-nav {
  position: fixed;
  display: block;
  z-index: 99;
  bottom: -100vh;
  right: 0;

  width: 100vw;
  height: 100vh;
  padding: 8rem 6% 4rem;

  text-align: center;
  background-color: var(--black);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: 0.5s;

  &.js-active {
    bottom: 0;
  }
}

.burger-nav-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;

  @media only screen and (max-width: 767px) {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
}

.burger-nav-item {
  a {
    position: relative;
    display: block;
    padding: 1.2em 1em;
    font-size: 1.7rem;
    letter-spacing: 0.2em;
    color: var(--white);

    border-bottom: 1px solid var(--white);

    @media only screen and (max-width: 767px) {
      font-size: 1.5rem;
    }

    &::after {
      position: absolute;
      content: "";
      width: 0.5em;
      height: 0.5em;
      top: 1px;
      bottom: 0;
      right: 1em;
      margin: auto;

      vertical-align: middle;
      line-height: 1;
      border: 2px solid currentColor;
      border-left: 0;
      border-bottom: 0;
      box-sizing: border-box;
      transform: translateX(-25%) rotate(45deg);
      transition: 0.3s all;
    }

    &:hover::after {
      right: 0.5em;
    }
  }

  .btn {
    width: 100%;
    min-width: unset;
    color: var(--black);
    padding: 1.45em 0;

    &::after {
      display: none;
    }
  }
}

/* loading
---------------------------------------------------------------- */
/* #loading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  transition: all 1s;

  background: var(--black);
  width: 100vw;
  height: 100vh;
}

.loaded {
  opacity: 0;
  visibility: hidden;
}

.load-inn {
  width: 100%;
  padding: 0 6%;
  margin-top: -10%;
  text-align: center;
	
	@media only screen and (max-width: 767px) {
		margin-top: -20%;
	}
}

.load-logo img,
.load-logo svg {
  width: min(734px, 100%);
	height: auto;
}

.load-text {
  color: var(--white);
  font-size: var(--fs-27);
  font-weight: 600;
  letter-spacing: 0.2em;

  margin-top: 40px;
  padding-bottom: 4vh;

  @media only screen and (max-width: 1024px) {
    margin-top: 30px;
  }

  @media only screen and (max-width: 767px) {
    margin-top: 20px;
  }
} */

/* svg animation */
/* svg {
  .svg-elem-1,
  .svg-elem-2,
  .svg-elem-3,
  .svg-elem-4,
  .svg-elem-5,
  .svg-elem-6,
  .svg-elem-7,
  .svg-elem-8,
  .svg-elem-9,
  .svg-elem-10,
  .svg-elem-11,
  .svg-elem-12,
  .svg-elem-13,
  .svg-elem-14,
  .svg-elem-15,
  .svg-elem-16,
  .svg-elem-17,
  .svg-elem-18,
  .svg-elem-19,
  .svg-elem-20,
  .svg-elem-21,
  .svg-elem-22,
  .svg-elem-23,
  .svg-elem-24,
  .svg-elem-25,
  .svg-elem-26,
  .svg-elem-27 {
    fill: transparent;
    transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715);
  } */

/* 各要素に遅延を適用 */
/* .svg-elem-1 {
    transition-delay: 0.8s;
  }
  .svg-elem-2 {
    transition-delay: 0.9s;
  }
  .svg-elem-3 {
    transition-delay: 1s;
  }
  .svg-elem-4 {
    transition-delay: 1.1s;
  }
  .svg-elem-5 {
    transition-delay: 1.2s;
  }
  .svg-elem-6 {
    transition-delay: 1.3s;
  }
  .svg-elem-7 {
    transition-delay: 1.4s;
  }
  .svg-elem-8 {
    transition-delay: 1.5s;
  }
  .svg-elem-9 {
    transition-delay: 1.6s;
  }
  .svg-elem-10 {
    transition-delay: 1.7s;
  }
  .svg-elem-11 {
    transition-delay: 1.8s;
  }
  .svg-elem-12 {
    transition-delay: 1.9s;
  }
  .svg-elem-13 {
    transition-delay: 2s;
  }
  .svg-elem-14 {
    transition-delay: 2.1s;
  }
  .svg-elem-15 {
    transition-delay: 2.2s;
  }
  .svg-elem-16 {
    transition-delay: 2.3s;
  }
  .svg-elem-17 {
    transition-delay: 2.4s;
  }
  .svg-elem-18 {
    transition-delay: 2.5s;
  }
  .svg-elem-19 {
    transition-delay: 2.6s;
  }
  .svg-elem-20 {
    transition-delay: 2.7s;
  }
  .svg-elem-21 {
    transition-delay: 2.8s;
  }
  .svg-elem-22 {
    transition-delay: 2.9s;
  }
  .svg-elem-23 {
    transition-delay: 3s;
  }
  .svg-elem-24 {
    transition-delay: 3.1s;
  }
  .svg-elem-25 {
    transition-delay: 3.2s;
  }
  .svg-elem-26 {
    transition-delay: 3.3s;
  }
  .svg-elem-27 {
    transition-delay: 3.4s;
  }

  &.svg-active {
    .svg-elem-1,
    .svg-elem-2,
    .svg-elem-3,
    .svg-elem-4,
    .svg-elem-5,
    .svg-elem-6,
    .svg-elem-7,
    .svg-elem-8,
    .svg-elem-9,
    .svg-elem-10,
    .svg-elem-11,
    .svg-elem-12,
    .svg-elem-13,
    .svg-elem-14,
    .svg-elem-15,
    .svg-elem-16,
    .svg-elem-17,
    .svg-elem-18,
    .svg-elem-19,
    .svg-elem-20,
    .svg-elem-21,
    .svg-elem-22,
    .svg-elem-23,
    .svg-elem-24,
    .svg-elem-25,
    .svg-elem-26,
    .svg-elem-27 {
      fill: #fff;
    }
  }
} */

/* mv
---------------------------------------------------------------- */
.mv {
  position: relative;
  width: 100vw;
  height: 100vh;
}

.mv-img {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background-image: url(./img/mv_pc.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;

  @media only screen and (max-width: 767px) {
    background-image: url(./img/mv_sp.jpg);
  }
}

.mv-inn {
  width: 100%;
  padding: 0 6%;
  /*margin-top: -10%; */
  text-align: center;

  @media only screen and (max-width: 767px) {
    margin-top: -20%;
  }
}

.mv-logo {
  visibility: hidden;
  /* opacity: 0; */
  /* transform: translateY(20px); */
  /* transition: 0.7s ease; */
}
.mv-logo img {
  width: min(734px, 100%);
}

.mv-text {
  font-size: var(--fs-27);
  font-weight: 600;
  letter-spacing: 0.2em;

  margin-top: 40px;
  padding-bottom: 4vh;
  visibility: hidden;

  /* opacity: 0; */
  /* transform: translateY(20px); */
  /* transition: 0.7s ease; */

  @media only screen and (max-width: 1024px) {
    margin-top: 30px;
  }

  @media only screen and (max-width: 767px) {
    margin-top: 20px;
  }
}

/* animation */
/* .mv-img.js-animate {
  animation: zoomout 1.4s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
  transition-delay: 0.3s;
} */

@keyframes zoomout {
  0% {
    transform: scale(1.3);
  }

  100% {
    transform: scale(1);
  }
}

/* .mv-logo.js-animate {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.9s;
}
.mv-text.js-animate {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.2s;
} */

/* news
---------------------------------------------------------------- */
#news-top {
  background: var(--gray);

  .inner {
    padding: 80px 4%;

    @media (max-width: 767px) {
      padding: 50px 4%;
    }
  }
}

.news-top-ttl {
  text-align: center;
  font-size: var(--fs-45);
  letter-spacing: 0.05em;
  margin-bottom: var(--mg-40);
}
.news-list-item {
  gap: 1.5em;
  align-items: center;
  padding: 0.4em;

  @media only screen and (max-width: 1024px) {
    flex-direction: column;
    gap: 0.5em;
  }
}

.news-list-left {
  gap: 1.5em;
  align-items: center;
  width: fit-content;

  @media only screen and (max-width: 1024px) {
    margin-right: auto;
    gap: 1em;
  }
}

.news-list-line {
  border-right: 1.5px solid currentColor;
  height: 1.2em;
  @media only screen and (max-width: 1024px) {
    height: 1em;
  }
}

.news-list-ttl {
  flex: 1;
  @media only screen and (max-width: 1024px) {
    margin-right: auto;
  }
}

/* archive */

.news-ttl {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 20px;
}

.news-list-wrap {
  border-bottom: 1px solid #ccc;
  padding: 1em 0;
}

.news-list-item {
  position: relative;
  padding-right: 2em;

  &::before {
    content: "";
    position: absolute;
    width: 0.8em;
    aspect-ratio: 1;
    background: url("./img/arrow.svg") center no-repeat;
    background-size: 100%;

    top: 50%;
    right: 0.5em;
    transform: translateY(-50%);
    transition: 0.3s ease;
  }
  &:hover::before {
    right: 0;
  }
}

.wp-pagenavi {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wp-pagenavi span.current,
.wp-pagenavi a.page,
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  width: 60px;
  aspect-ratio: 1;
  border-left: 1px solid #c8c8c8;
}

.wp-pagenavi span.current {
  border: none;
  background: var(--black);
  color: var(--white);
}
.wp-pagenavi a.page {
  background: none;

  &:hover {
    opacity: 1;
    background: var(--black);
    color: var(--white);
  }
}

.wp-pagenavi .previouspostslink::before,
.wp-pagenavi .nextpostslink::before {
  content: "";
  position: absolute;
  width: 0.8em;
  aspect-ratio: 1;
  background: url("./img/arrow.svg") center no-repeat;
  background-size: 100%;

  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
}

.wp-pagenavi .previouspostslink {
  transform: scale(-1, -1);
  border: unset;
}

.page-arrow img {
  width: 0.8em;
  aspect-ratio: 1;
}

.prev img {
  transform: scale(-1, -1);
}

/* consept
---------------------------------------------------------------- */
/* common */
.sec-ttl {
  text-align: center;
}
.sec-ttl-img {
  display: block;
  width: 570px;
  max-width: 100%;
  margin-inline: auto;
}

.sec-ttl-jp {
  display: block;
  font-size: var(--fs-27);
  font-weight: 600;
  letter-spacing: 0.2em;
  margin: 10px 0 var(--mg-40);

  @media only screen and (max-width: 767px) {
    letter-spacing: 0.1em;
  }
}

.sec-text {
  font-weight: 700;
  line-height: 2.2;
  width: fit-content;

  @media only screen and (max-width: 767px) {
    line-height: 2;
  }
}

.sec-img img {
  max-width: 90%;
}

.sec-copy img {
  @media only screen and (max-width: 767px) {
    height: 120px;
    width: auto;
    margin-left: -10px;
  }
  @media only screen and (max-width: 499px) {
    height: 110px;
  }
}

#concept {
  background: var(--d-gray);
  text-align: center;

  .sec-img {
    margin-top: 30px;

    @media only screen and (max-width: 767px) {
      margin-top: 20px;
    }

    img {
      width: 514px;
    }
  }

  .sec-text {
    width: 100%;
    letter-spacing: 0.15em;
  }
}

#sec-02 {
  background: var(--gray);
}

.sec-wrap {
  margin-top: 60px;

  @media only screen and (max-width: 767px) {
    flex-direction: column;
    margin-top: 40px;
  }
}

.sec-wrap-01 {
  .sec-wrap-left {
    margin-top: 40px;

    @media only screen and (max-width: 1024px) {
      margin-top: 0;
      flex-basis: 50%;
    }
  }

  .sec-text {
    margin-top: 20px;
    margin-left: calc(56 / 515 * 100%);

    @media only screen and (max-width: 767px) {
      margin-left: 10px;
    }
  }

  .sec-wrap-right {
    margin-left: -20px;

    @media only screen and (max-width: 1024px) {
      margin-left: 0;
      margin-top: 40px;
      flex-basis: 50%;
    }
    @media only screen and (max-width: 767px) {
      text-align: center;
      margin-top: 30px;
    }
  }
}

.sec-wrap-02 {
  .sec-copy {
    width: min(610px, 60%);
    margin-left: auto;

    @media only screen and (max-width: 767px) {
      width: auto;

      img {
        margin-left: 0;
        margin-right: -10px;
      }
    }
  }

  .sec-text {
    margin-top: 20px;
    text-align: right;
    margin-left: auto;
    margin-right: 30px;

    @media only screen and (max-width: 767px) {
      margin-right: 10px;
    }
  }

  .sec-img {
    width: 100%;
    margin-top: calc(90 / 660 * -100%);
    mix-blend-mode: multiply;

    @media only screen and (max-width: 1024px) {
      margin-top: calc(60 / 660 * -100%);
    }

    @media only screen and (max-width: 767px) {
      margin-top: 0;

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

.sec-wrap-03 {
  gap: 30px;

  @media only screen and (max-width: 1024px) {
    gap: 30px 10px;
    align-items: flex-end;
  }

  .sec-copy {
    width: min(470px, 100%);

    @media only screen and (max-width: 767px) {
      width: auto;

      img {
        margin-left: -20px;
      }
    }
  }
  .sec-text {
    margin-top: 20px;
    margin-left: calc(56 / 515 * 100%);

    @media only screen and (max-width: 767px) {
      margin-left: 10px;
    }
  }
  .sec-wrap-right {
    margin-top: 30px;

    @media only screen and (max-width: 1024px) {
      margin-top: 0;
      flex-basis: 50%;
    }
    @media only screen and (max-width: 767px) {
      text-align: center;
    }
  }

  .sec-wrap-left {
    @media only screen and (max-width: 1024px) {
      flex-basis: 55%;
    }
  }
}

/* footer
---------------------------------------------------------------- */
.footer {
  background: var(--d-gray);
  text-align: center;

  .sec-text {
    width: 100%;
  }
}

/* .sec-sns{
  margin-bottom: 80px;
  @media only screen and (max-width: 767px) {
    margin-bottom: 30px;
  }
} */

.member {
  background: url(img/bg_01.jpg) no-repeat center / cover;

  /* .inner {
    padding-top: 90px;
    padding-bottom: 60px;
    @media only screen and (max-width: 767px) {
      padding-top: 50px;
    }
  } */

  .sec-ttl-jp {
    color: var(--white);
  }

  .sec-text {
    color: var(--white);
  }
}

.contact-logo {
  display: block;
  margin-bottom: 50px;

  img {
    width: min(554px, 100%);
  }
}

.fot-info {
  .inner {
    padding-top: 50px;
    padding-bottom: 50px;

    @media only screen and (max-width: 767px) {
      padding-top: 30px;
      padding-bottom: 30px;
    }
  }
}

.fot-info-ttl {
  margin-bottom: 0.8em;
}

.fot-info-ttl span {
  width: fit-content;
  line-height: 1;
  border: 1px solid currentColor;
  padding: 0.4em 0.6em;
}

.fot-privacy {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;

  a {
    padding: 0.5em 1em;

    @media only screen and (max-width: 767px) {
      padding: 0.5em 0.6em;
    }
  }

  span {
    background-color: currentColor;
    width: 1px;
    height: 1em;
  }
}

.copyright {
  font-size: 1.3rem;
}

#sb_instagram {
  padding-top: 30px;
}

/* 下層ページ
================================================================== */
.site-main {
  background: var(--gray);

  .inner {
    padding-top: 60px;

    @media (max-width: 767px) {
      padding: 50px 4%;
    }
  }
}

/* パンクズ */
.breadcrumbs.inner {
  padding-top: 30px;
  padding-bottom: 0;
}

.breadcrumbs {
  display: flex;
  flex-wrap: nowrap;

  @media only screen and (max-width: 767px) {
    font-size: 13px;
  }

  li:not(:last-of-type) {
    white-space: nowrap;
  }
}

.breadcrumbs li + li:before {
  content: ">";
  margin: 0 0.6em;
  color: #b3b3b3; /* 区切り文字の色 */
}

/* 物件カテゴリ非表示 */
.breadcrumbs .property_cat {
  display: none !important;
}

/* 下層TOP */
.sub-hero {
  display: flex;
  align-items: flex-end;

  height: 350px;
  width: 100%;

  background-image: url(./img/subhero/01_pc.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;

  @media only screen and (min-width: 768px) {
    margin-top: var(--header-h);
  }

  @media only screen and (max-width: 767px) {
    height: 200px;
    background-image: url(./img/subhero/01_sp.jpg);
  }
}

#news.sub-hero {
  background-image: url(./img/subhero/02_pc.jpg);

  @media only screen and (max-width: 767px) {
    background-image: url(./img/subhero/02_sp.jpg);
  }
}

#blog.sub-hero {
  background-image: url(./img/subhero/03_pc.jpg);
}

#glossary.sub-hero {
  background-image: url(./img/subhero/04_pc.jpg);
}

#property-list.sub-hero {
  background-image: url(./img/subhero/07_pc.jpg);

  @media only screen and (max-width: 767px) {
    background-image: url(./img/subhero/07_sp.jpg);
  }
}

#property-page.sub-hero {
  background-image: url(./img/ebina/01.jpg);
}

#member-recruit.sub-hero,
#feature.sub-hero {
  background-image: url(./img/subhero/08_pc.jpg);

  @media only screen and (max-width: 767px) {
    background-image: url(./img/subhero/08_sp.jpg);
  }
}

.sub-hero-ttl {
  padding-top: 0;
  padding-bottom: 60px;

  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: var(--fs-45);
  line-height: 1;

  @media only screen and (max-width: 767px) {
    padding-bottom: 30px;
  }
}

/* blog */
.category-list {
  padding: 2.5em 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7em 1.2em;

  .btn {
    font-size: 1.5rem;
    min-width: 10.6em;

    @media only screen and (max-width: 767px) {
      font-size: 1.3rem;
      min-width: 7.3em;
    }
  }

  .is-current .btn {
    opacity: 1;
    color: var(--white);
  }

  .is-current .btn::after {
    transform: scaleX(1);
    transform-origin: left;
  }
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(315px, 1fr));
  gap: 50px;

  @media only screen and (max-width: 1024px) {
    padding: 0 4%;
    grid-template-columns: repeat(auto-fill, minmax(275px, 1fr));
  }
  @media only screen and (max-width: 767px) {
    padding: 0 4%;
  }
}

.blog-list-item:hover {
  opacity: 0.7;
}

.blog-list-thumb {
  aspect-ratio: 871/591;
  margin-bottom: 1.5em;

  > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.cat-btn {
  font-size: 1.4rem;
  text-align: center;
  border: 1px currentColor solid;
  border-radius: 9999px;
  display: inline-block;
  padding: 0.3em 1em;
  min-width: 6em;
  margin-right: 0.8em;
  margin-bottom: 1.5em;
  transition: 0.3s ease;

  @media only screen and (max-width: 767px) {
    font-size: 1.2rem;
  }
}

.blog-list-ttl {
  display: -webkit-box;
  overflow: hidden;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 0.6em;
}

.blog-list-date {
  font-size: 1.5rem;
  color: #999;
  &::before {
    content: url(./img/clock.svg);
    display: inline-block;
    width: 1em;
    margin-right: 0.5em;
    transform: translateY(2px);
  }

  @media only screen and (max-width: 767px) {
    font-size: 1.3rem;
  }
}

.blog-list + .wp-pagenavi {
  @media only screen and (min-width: 1025px) {
    margin-top: 100px;
    margin-bottom: 30px;
  }
}

/* glossary */
.glossary-nav {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
  gap: 0.5em 0.8em;

  a {
    font-size: 1.5rem;
    background-color: var(--white);
    border-radius: 9999px;
    display: block;
    padding: 0.9em 1.8em;

    @media only screen and (max-width: 1024px) {
      font-size: 1.4rem;
      padding: 0.7em 1.4em;
    }

    @media only screen and (max-width: 767px) {
      font-size: 1.3rem;
      padding: 0.5em 1em;
    }
  }
}

.row-ttl {
  font-size: 3rem;
  border-bottom: 1px currentColor solid;
  margin-bottom: 0.6em;
  @media only screen and (max-width: 767px) {
    font-size: 2.2rem;
    /* スクロール位置調整 */
    padding-top: 80px;
    margin-top: -80px;
  }
}

.row-list {
  margin-bottom: 80px;
  @media only screen and (max-width: 767px) {
    margin-bottom: 40px;
  }

  a::before {
    content: "・";
    display: inline-block;
  }
}

.glossary-post-wrap {
  .post-ttl {
    font-size: 3.2rem;
    border-bottom: 2px currentColor solid;
    padding-bottom: 0.2em;

    @media only screen and (max-width: 767px) {
      font-size: 2.2rem;
    }
  }

  .post-content {
    font-size: 1.17em;

    @media only screen and (max-width: 767px) {
      font-size: 1.5rem;
    }
  }

  a {
    color: var(--red);
    text-decoration: underline;
    text-underline-offset: 3px;
  }
}

/* 404 */
.box-wrap {
  background: var(--white);
  padding: 2em;

  @media only screen and (max-width: 767px) {
    padding: 2em 1.5em;
  }

  .btn {
    border: 2px solid var(--black);
  }
}
.box-ttl {
  font-size: var(--fs-27);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}
.box-text {
  text-align: center;

  @media only screen and (max-width: 767px) {
    text-align: left;
  }
}

/* single
================================================================== */
.post-wrap {
  background: var(--white);
  padding: 2.5em 2em;

  @media only screen and (max-width: 767px) {
    padding: 1.5em;
  }
}
.post-head {
  padding-bottom: 1em;
  line-height: 1;
}
.post-date {
  border-right: 1px solid currentColor;
  padding-right: 1em;
  margin-right: 1em;
}
.post-cat {
  gap: 0.5em;
}

.post-ttl {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 20px;

  @media only screen and (max-width: 767px) {
    font-size: 2.4rem;
  }
}

/* contact
================================================================== */
.smf-progress-tracker {
  margin-bottom: 40px;
}
.smf-form--simple-table .smf-item {
  border-bottom: 1px solid #ccc;
  padding: 1.5em 1em;
}
/* 入力box */
.smf-form .smf-text-control__control,
.smf-textarea-control .smf-textarea-control__control {
  width: 100%;
  border: none;
  background: var(--white);
  padding: 0.6em 0.8em;
}
/* チェックボックス */
.smf-form .smf-checkbox-control {
  margin-top: 1em;
  gap: 0.8em;
}
.smf-form .smf-checkbox-control__control {
  width: 1.2em;
  height: auto;
  aspect-ratio: 1;
  border-radius: 0;
}
/* ボタン */
.smf-action .smf-button-control__control {
  position: relative;
  z-index: 1;
  overflow: hidden;

  display: inline-block;
  text-align: center;
  font-size: var(--fs-18);
  line-height: 1.2;
  padding: 1.2em 2em;
  min-width: 240px;

  border-radius: 100px;
  background-image: unset;
  border: unset;
  background-color: var(--white);

  margin-top: 40px;

  &::after {
    background: var(--black);
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    content: "";

    width: 100%;
    height: 100%;

    transform: scaleX(0);
    transform-origin: right;
    transition: all 0.5s ease;
    transition-property: transform;
  }

  &:hover {
    opacity: 1;
    color: var(--white);

    &::after {
      transform: scaleX(1);
      transform-origin: left;
    }
  }
}
/* 必須ボタン */
.smf-item__col.smf-item__col--controls {
  position: relative;
  padding-left: 4em;

  &::before {
    content: "必須";
    position: absolute;
    top: 0.4em;
    left: 0;
    display: inline-block;

    background: var(--black);
    color: var(--white);
    font-size: 1.4rem;
    padding: 0 0.8em;
    border-radius: 20px;
  }
}

.smf-form--simple-table
  .smf-item:nth-of-type(3)
  .smf-item__col.smf-item__col--controls::before {
  display: none;
}

/* プラポリ */
.privacy-box {
  width: 100%;
  height: 200px;
  border: none;
  background: var(--white);
  padding: 0.8em 1em;
  overflow: scroll;
}

.wp-block-snow-monkey-forms-item.smf-item.smf-link-highlight {
  .smf-item__label,
  .smf-item__col.smf-item__col--controls::before {
    display: none;
  }

  .smf-checkbox-control {
    margin-top: 0;
  }
}
/* 物件一覧
================================================================== */
.property-list {
  .category-list {
    @media only screen and (max-width: 768px) {
      flex-wrap: nowrap;
      gap: 0.8em;

      li {
        flex: 1;
      }

      .btn {
        width: 100%;
        padding: 1.2em 0.5em;
      }
    }
  }
}

.property-list-wrap {
  &:not(:first-of-type) {
    margin-top: var(--mg-60);
  }
}

.property-list-ttl {
  position: relative;
  text-align: center;
  gap: 0.5em;

  width: 100%;
  background: var(--red);
  color: var(--white);

  font-size: 3.6rem;
  letter-spacing: 0.08em;
  line-height: 1;
  padding: 0.5em 1em 0.55em;
  margin-bottom: var(--mg-40);

  @media only screen and (max-width: 768px) {
    font-size: 2.6rem;
  }

  &::before,
  &::after {
    content: "";
    width: 1.2em;
    height: 2px;
    background: currentColor;
    transform: translateY(0.1em);
  }
  &::before {
    left: 0;
  }
  &::after {
    right: 0;
  }
}

.property-card-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;

  @media only screen and (max-width: 1024px) {
    grid-template-columns: repeat(2, 1fr);
  }

  @media only screen and (max-width: 768px) {
    grid-template-columns: repeat(1, 1fr);
  }
}

.property-card-item {
  position: relative;
  cursor: pointer;
}

.property-card-thumb {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;

  img {
    transition: 0.3s ease;
  }
}

.property-card-cat {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  background: var(--red);
  color: var(--white);

  font-size: 1.6rem;
  line-height: 1;
  padding: 0.6em 1em 0.7em;
}

.property-card-ttl {
  transition: 0.3s ease;
  font-size: 3.2rem;
  line-height: 1.3;
  margin: 2rem 0;

  @media only screen and (max-width: 768px) {
    font-size: 2.4rem;
    margin: 1.5rem 0;
  }
}

.property-card-info {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.5rem;

  @media only screen and (max-width: 768px) {
    font-size: 1.4rem;
  }

  dt,
  dd {
    padding: 0.5em 1em 0.6em;
    border-bottom: 1px solid #999;
  }

  dt {
    flex-basis: 9rem;
    background: var(--black);
    color: var(--white);
    font-weight: 500;
  }

  dd {
    flex: calc(100% - 9rem);
    background: #f7f7f7;
    color: var(--black);
  }
}

.property-card-price span {
  font-size: 1.8em;
  font-weight: 600;
  line-height: 1;
  padding-right: 2px;
}

.property-card-btn {
  transition: 0.3s ease;
  text-align: right;
  margin-top: 1em;
}

.property-card-btn-arrow {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 1.5px;
  background: currentColor;
  transform: translateY(-0.1em);
  margin-left: 0.5em;

  &::before {
    content: "";
    position: absolute;
    top: calc(50% - 0.06em);
    right: 0;
    width: 1em;
    height: 1.5px;
    background: currentColor;
    transform: rotate(40deg);
    transform-origin: calc(100% - 0.06em) 50%;
  }
}

/* hover */
.property-card-item:hover {
  a {
    opacity: 1;
  }

  .property-card-thumb img {
    transform: scale(1.1);
  }

  .property-card-ttl,
  .property-card-btn {
    color: var(--red);
  }
}

/* color */
#property-list-boshu .property-list-ttl {
  background: var(--green);
}
.cat-boshu {
  .property-card-cat {
    background: var(--green);
  }

  &:hover {
    .property-card-ttl,
    .property-card-btn {
      color: var(--green);
    }
  }
}

#property-list-full .property-list-ttl {
  background: var(--d-gray02);
}
.cat-full {
  .property-card-cat {
    background: var(--d-gray02);
  }

  &:hover {
    .property-card-ttl,
    .property-card-btn {
      color: var(--d-gray02);
    }
  }
}

/* 物件詳細
================================================================== */
.property-page {
  .sub-hero {
    align-items: center;
    justify-content: center;
    height: 600px;

    @media only screen and (max-width: 767px) {
      aspect-ratio: 1;
      height: auto;
    }
  }

  .sub-hero-ttl {
    display: block;
    padding-bottom: 0;
    text-align: center;
    color: var(--white);
  }
}

.property-page-ttl-main {
  display: inline-block;
  padding: 0.4em 1em 0.5em;
  background: rgba(0, 0, 0, 0.8);
  letter-spacing: 0.08em;
}

.property-page-ttl-sub {
  display: block;

  font-family: "Noto Sans JP", sans-serif;
  font-size: var(--fs-27);
  letter-spacing: 0.2em;
  margin-top: 0.5em;
}

.property-page-top {
  text-align: center;
  margin-bottom: var(--mg-80);

  h2 {
    font-size: var(--fs-27);
    font-weight: 700;
    letter-spacing: 0.2em;

    @media only screen and (max-width: 767px) {
      letter-spacing: 0.1em;
    }
  }

  p {
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    line-height: 2.2;

    margin: var(--mg-30) 0 var(--mg-40);

    @media only screen and (max-width: 767px) {
      letter-spacing: 0.1em;
      line-height: 1.8;
    }
  }
}

.property-page-feature {
  position: relative;
  z-index: 0;
  margin-top: var(--mg-60);
  padding-bottom: 5rem;

  @media only screen and (max-width: 767px) {
    display: block;
    padding-bottom: 0;
  }

  &::before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    bottom: 0;
    right: 0;
    width: min(calc(50% + 10rem), 80%);
    height: calc(100% - 5rem);
    background: var(--white);

    @media only screen and (max-width: 767px) {
      display: none;
    }
  }

  &.flex-row-reverse::before {
    right: unset;
    left: 0;
  }
}

.property-page-feature-img {
  flex-basis: 55%;
}

.property-page-feature-text {
  flex: 1;
  margin-top: 10rem;
  padding: 0 4rem;

  @media only screen and (max-width: 767px) {
    margin: 0;
    padding: 3rem 2.5rem;
    background: var(--white);
  }
}

.property-page-copy {
  font-size: var(--fs-24);
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.6;

  @media only screen and (max-width: 767px) {
    letter-spacing: 0.1em;
  }
}

.property-page-text {
  text-align: justify;
  margin-top: 2rem;

  @media only screen and (max-width: 767px) {
    margin-top: 1em;
  }
}

/* cta */
.property-page-cta {
  margin: 10rem 0;
  padding: 4rem 3rem;
  text-align: center;
  background: var(--black02);

  @media only screen and (max-width: 767px) {
    margin: 6rem 0;
    padding: 3rem;
  }

  p {
    font-size: var(--fs-24);
    color: var(--white);
    margin-bottom: 1em;

    @media only screen and (max-width: 767px) {
      font-size: 2rem;
    }
  }

  .btn {
    font-size: 2rem;

    @media only screen and (max-width: 767px) {
      font-size: 1.8rem;
    }
  }
}

/* 間取り */
.property-page-floor {
  position: relative;
  background: var(--white);
  padding: 3rem;

  @media only screen and (max-width: 767px) {
    padding: 5rem 2.5rem 3rem;
  }
}

.property-page-floor-img {
  width: min(600px, 100%);
  margin-inline: auto;
  margin-bottom: 3rem;
}

.property-page-endttl {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  background: var(--black);
  color: var(--white);

  font-size: 1.6rem;
  text-align: center;
  line-height: 1;
  padding: 0.6em 0 0.7em;
}

.property-page-point {
  margin: var(--mg-80) 0;

  @media only screen and (max-width: 767px) {
    display: block;
  }
}

.property-page-point-img {
  flex-basis: 60%;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.property-page-point-text {
  position: relative;
  flex: 1;
  background: var(--black02);
  color: var(--white);
  padding: 6rem 4rem 4rem;

  @media only screen and (max-width: 767px) {
    padding: 5rem 2.5rem 3rem;
  }

  .property-page-endttl {
    background: var(--white);
    color: var(--black);
  }
}

.property-page-info {
  position: relative;
  background: var(--white);
  padding: 4rem 6rem;

  @media only screen and (max-width: 767px) {
    padding: 4rem 2.5rem 3rem;
  }

  .property-page-copy {
    margin-bottom: 2rem;
    margin-top: 3rem;

    @media only screen and (max-width: 767px) {
      margin-bottom: 1.5rem;
      margin-top: 2rem;
    }
  }

  .property-card-info {
    dd {
      background: unset;
      border-right: 1px solid #999;

      &:first-of-type {
        border-top: 1px solid #999;
      }
    }
  }
}

/* 空室状況table */
.property-page-vacancy table {
  width: 100%;
  text-align: center;
  font-size: 1.5rem;

  table-layout: inherit;
  white-space: inherit;
  -webkit-overflow-scrolling: touch;

  @media only screen and (max-width: 767px) {
    overflow-x: scroll;
    white-space: nowrap;
    display: block;
  }

  td,
  th {
    border: 1px solid #999;
    border-collapse: collapse;
    padding: 0.5em 1em 0.6em;
  }

  .property-page-vacancy-ttl {
    background: var(--black);
    color: var(--white);
  }
}

/* map */
.property-page-map {
  iframe {
    aspect-ratio: 16 / 9;

    @media only screen and (max-width: 767px) {
      aspect-ratio: 1;
    }
  }
  p {
    margin-top: 1em;
  }
}

.property-page-linettl {
  margin-top: 10rem;

  @media only screen and (max-width: 767px) {
    margin-top: 6rem;
  }

  .property-page-copy {
    text-align: center;
    padding-bottom: 0.5em;
    margin-bottom: 3rem;
    border-bottom: 1px solid currentColor;
  }

  p {
    font-size: 1.5rem;
  }
}

/* 他の物件 */
.property-page {
  .inner-l {
    padding-top: 0;
  }

  .property-list-ttl {
    background: var(--black);
  }

  .property-list-wrap {
    margin-bottom: var(--mg-60);
  }
}

/* メンバー募集
================================================================== */
/* top */
.member-recruit {
  .sec-ttl-img {
    width: 840px;
  }

  .sec-ttl-jp {
    font-size: 3.8rem;
    font-weight: bold;
    margin-top: 2rem;

    @media only screen and (max-width: 768px) {
      margin-top: 1rem;
      font-size: 2.4rem;
    }
  }

  .sec-text {
    width: 100%;
    font-size: var(--fs-17);
    line-height: 1.7;

    p {
      display: block;
      width: fit-content;
      background: var(--black);
      color: var(--white);
      padding: 0.2em 1em 0.3em;
      text-align: center;

      margin: 0.8em auto 0;

      @media only screen and (max-width: 768px) {
        margin-top: 0.5em;
      }
    }
  }
}

.member-recruit-img-wrap {
  display: flex;
  flex-direction: row-reverse;
  gap: 10px;

  mix-blend-mode: multiply;
  margin: var(--mg-80) 0 var(--mg-40);

  @media only screen and (max-width: 768px) {
    flex-direction: column;
  }
}

.member-recruit-img {
  flex: 1;
}

/* 注意書き */
.member-recruit-notes {
  font-size: 0.9em;
  margin-top: 1.2em;
  color: var(--d-gray02);
}

.member .member-recruit-notes {
  color: var(--white);
}

/* 特典 */
.benefit {
  margin: var(--mg-80) 0;

  .property-page-copy {
    font-size: var(--fs-27);
    text-align: center;
    padding-bottom: 0.5em;
    margin-bottom: var(--mg-40);
    border-bottom: 2px solid currentColor;
  }
}

.benefit-item {
  width: min(900px, 100%);
  margin-inline: auto;
  background: var(--black);
  color: var(--white);
  align-items: flex-end;

  @media only screen and (max-width: 768px) {
    flex-direction: column;
  }

  &:not(:first-of-type) {
    margin-top: var(--mg-30);
  }
}

.benefit-content {
  flex: 1;
  padding: 3rem;

  @media only screen and (max-width: 768px) {
    padding: 2rem;
    padding-bottom: 1rem;
  }
}

.benefit-ttl {
  gap: 1rem 2rem;

  @media only screen and (max-width: 768px) {
    flex-direction: column;
    text-align: center;
  }
}

.benefit-ttl-num {
  width: 80px;

  @media only screen and (max-width: 768px) {
    width: 70px;
  }
}

.benefit-ttl-main {
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.3;

  @media only screen and (max-width: 768px) {
    font-size: 2.2rem;
  }
}

.benefit-text {
  font-size: var(--fs-17);
  font-weight: bold;
  text-align: justify;
  margin-top: 2rem;

  @media only screen and (max-width: 768px) {
    font-weight: 500;
  }
}

.benefit-img {
  flex-basis: min(250px, 30%);

  @media only screen and (max-width: 768px) {
    margin-left: auto;
    width: 200px;
  }
}

/* btn */
.member-btm-btn {
  text-align: center;

  .btn {
    font-size: var(--fs-24);

    @media only screen and (max-width: 767px) {
      font-size: 1.8rem;
    }
  }
}

.member-waiwai {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  text-align: center;

  font-size: var(--fs-24);
  font-weight: bold;
  margin-bottom: 0.8em;

  &::before,
  &::after {
    content: "";
    width: 3px;
    height: 1.4em;
    background-color: currentColor;
  }

  &::before {
    margin-right: 0.8em;
    transform: rotate(-35deg);

    @media only screen and (max-width: 767px) {
      margin-right: 1em;
    }
  }
  &::after {
    margin-left: 0.8em;
    transform: rotate(35deg);

    @media only screen and (max-width: 767px) {
      margin-left: 1em;
    }
  }
}

/* +BASEの特徴
================================================================== */
.feature {
  .feature-main {
    text-align: center;
  }

  .sec-ttl {
    margin-bottom: 1rem;
  }
  .sec-ttl-img {
    width: 80rem;
  }

  /* 01 */
  .feature-ttl-01 {
    margin-bottom: 2rem;

    @media only screen and (max-width: 767px) {
      font-size: 2rem;
    }
  }

  .feature-bubble {
    display: flex;
    gap: 2rem;

    @media only screen and (max-width: 1024px) {
      flex-wrap: wrap;
      justify-content: center;
    }

    @media only screen and (max-width: 767px) {
      flex-direction: column;
      gap: 1.5rem;
    }
  }

  .feature-bubble-item {
    display: block;
    width: 100%;
    flex: 1;

    background: var(--white);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.08em;

    padding: 0.7em 0.2em 0.8em;
    border-radius: 100px;

    @media only screen and (max-width: 1024px) {
      flex: unset;
      flex-basis: calc((100% - 2rem) / 2);
    }

    @media only screen and (max-width: 767px) {
      font-size: 1.7rem;
    }
  }

  .feature-bubble-01 .feature-bubble-item {
    background: #ccc;
  }

  .sec-text {
    width: 100%;
    font-size: var(--fs-24);
    line-height: 1.7;

    margin: var(--mg-60) 0;

    p {
      display: block;
      width: fit-content;
      background: var(--black);
      color: var(--white);
      padding: 0.2em 1em 0.3em;
      text-align: center;

      margin: 0.8em auto 0;

      @media only screen and (max-width: 768px) {
        margin-top: 0.5em;
        font-size: min(3.9vw, 1.7rem);
        padding: 0.2em 0.5em 0.3em;
      }
    }
  }

  .feature-ttl-02.sec-ttl-jp {
    display: block;
    position: relative;

    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.5;
    margin-top: var(--mg-60);
    padding-bottom: 8rem;

    @media only screen and (max-width: 1024px) {
      font-size: 3.6rem;
    }

    @media only screen and (max-width: 767px) {
      font-size: 2.6rem;
      padding-bottom: 6rem;
      margin-bottom: 2rem;
    }

    &::before {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 5rem;

      background-image: url(./img/feature/bubble.svg);
      background-repeat: no-repeat;
      background-position: center bottom;
      background-size: 1100px;

      @media only screen and (max-width: 767px) {
        background-size: 800px;
      }
    }
  }

  .feature-img {
    mix-blend-mode: multiply;
    margin-inline: auto;
    width: min(90rem, 100%);
  }

  /* 02 */
  .feature-02 {
    margin-top: var(--mg-80);
  }

  .feature-bubble-03 .feature-bubble-item {
    border-radius: 3rem;
    padding: 1em 0.5em;

    p:last-of-type {
      font-size: var(--fs-17);
      margin-top: 1rem;
    }
  }

  .feature-02 .feature-img {
  }
}
/* faq */
.feature-faq {
  .feature-faq-ttl {
    text-align: center;
    margin-bottom: var(--mg-40);
  }

  .news-top-ttl {
    display: block;
    margin-bottom: 0;
    line-height: 1.1;
  }
}

.accordion {
  position: relative;

  .accordion-box {
    &:not(:last-of-type) {
      margin-bottom: 20px;

      @media only screen and (max-width: 768px) {
        margin-bottom: 15px;
      }
    }
  }

  .accordion-q {
    position: relative;
    cursor: pointer;

    padding: 30px;
    background: var(--black02);
    color: var(--white);

    font-size: 2.1rem;
    transition:
      background,
      opacity,
      0.3s ease;

    @media only screen and (max-width: 768px) {
      padding: 20px;
      font-size: 1.7rem;
    }

    &:hover {
      opacity: 0.7;
    }

    &::before,
    &::after {
      content: "";
      position: absolute;
      display: block;
      top: 46px;
      right: 30px;
      bottom: 0;
      width: 1em;
      height: 3px;
      background: var(--white);

      @media only screen and (max-width: 768px) {
        width: 1em;
        top: 1px;
        right: 20px;
        margin: auto;
      }
    }

    &::after {
      transform: rotate(-90deg);
      transition: transform 0.3s;
    }
    &.open::after {
      transform: rotate(0deg);
    }

    p {
      position: relative;
      padding-left: 40px;
      padding-right: 24px;

      @media only screen and (max-width: 768px) {
        padding-left: 30px;
      }

      &::before {
        position: absolute;
        display: block;

        font-family: "Noto Serif JP", serif;
        font-optical-sizing: auto;
        font-style: normal;
        font-size: 2.4rem;
        font-weight: 600;
        line-height: 1;

        content: "Q";
        top: 0.16em;
        left: 0;

        @media only screen and (max-width: 768px) {
          top: 0.18em;
          font-size: 2rem;
        }
      }
    }
  }

  .accordion-a {
    display: none;
    font-size: var(--fs-18);
    padding: 30px;
    background: var(--white);
    margin-top: 20px;

    line-height: 1.7;

    @media only screen and (max-width: 768px) {
      padding: 16px 20px 20px;
      font-size: 1.5rem;
    }

    p {
      position: relative;
      padding-left: 40px;
      text-align: justify;

      @media only screen and (max-width: 768px) {
        padding-left: 30px;
      }

      &::before {
        position: absolute;
        display: block;

        font-family: "Noto Serif JP", serif;
        font-optical-sizing: auto;
        font-style: normal;
        font-size: 2.4rem;
        font-weight: 600;
        line-height: 1;

        content: "A";
        color: var(--black02);
        top: 0.17em;
        left: 0;

        @media only screen and (max-width: 768px) {
          top: 0.18em;
          font-size: 2rem;
        }
      }

      .d-b:first-of-type {
        padding-bottom: 1.5em;
      }
    }
  }
}
