@charset "UTF-8";
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  color: #000;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  background: #F7F7F3;
  max-width: 1920px;
  margin: auto;
}

main {
  padding-top: 78px;
  overflow: hidden;
}
@media screen and (min-width:768px) {
  main {
    padding-top: min(8.3333333333vw, 160px);
  }
}

img {
  width: 100%;
  height: auto;
  display: block;
}

.txt-green {
  color: #50AC0A;
}

.txt-yell {
  color: #AA9426;
}

a {
  text-decoration: none;
  transition: 0.3s;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.btn {
  display: inline-block;
}

.load {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 1s ease, visibility 1s ease;
  z-index: 9999;
  /* 最前面に配置 */
}
.load::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../../assets/img/common/load_bg_sp.webp) no-repeat center center/cover;
}
@media screen and (min-width:768px) {
  .load::before {
    background: url(../../assets/img/common/load_bg_pc.webp) no-repeat center center/cover;
  }
}

/* ロゴのフェードイン */
.load_img {
  width: 82%;
  opacity: 0;
  animation: fadeInLogo 1s ease-in-out forwards;
}
@media screen and (min-width:768px) {
  .load_img {
    width: min(33.1770833333vw, 637px);
  }
}

/* フェードインアニメーション */
@keyframes fadeInLogo {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* ローディング画面を非表示にする */
.load.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  /* クリックを無効化 */
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  background: #F7F7F3;
  height: 78px;
}
@media screen and (min-width:768px) {
  .header {
    height: min(8.3333333333vw, 160px);
    background: #fff;
  }
}
.header .inner--header {
  display: flex;
  justify-content: space-between;
  max-width: 1920px;
  margin: auto;
}
.header .header__logo {
  max-width: 118px;
  width: 100%;
  margin: 5px 0 0 15px;
}
@media screen and (min-width:768px) {
  .header .header__logo {
    max-width: none;
    width: min(13.8541666667vw, 266px);
    margin-left: min(2.34375vw, 45px);
  }
}
.header__lead {
  display: none;
}
@media screen and (min-width:768px) {
  .header__lead {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: min(0.0520833333vw, 1px) solid #707070;
    border-radius: min(2.6041666667vw, 50px);
    height: min(4.7916666667vw, 92px);
    padding: 0 min(1.3541666667vw, 26px);
    margin: min(1.875vw, 36px) auto 0 min(1.0416666667vw, 20px);
  }
}
.header__lead span {
  display: block;
  font-size: min(0.9375vw, 18px);
  font-weight: 500;
  color: #000;
  text-align: left;
  line-height: 1.55;
  letter-spacing: 0em;
}

nav.flex {
  display: flex;
}
@media screen and (max-width:767px) {
  nav.pcmenu {
    display: none;
  }
}
nav .nav li {
  height: 100%;
}
nav .nav--header {
  display: flex;
  align-items: center;
}
@media screen and (min-width:768px) {
  nav .nav--header {
    gap: min(6.5104166667vw, 125px);
    height: min(5.46875vw, 105px);
  }
}
nav .nav--header a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  color: #000;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-family: "Poppins", sans-serif;
}
@media screen and (min-width:768px) {
  nav .nav--header a {
    font-size: min(0.9375vw, 18px);
    line-height: 1.5;
    height: 100%;
  }
}
nav .nav--header a::after {
  position: absolute;
  left: 0;
  bottom: -5px;
  background: #009D5B;
  content: "";
  display: block;
  height: 2px;
  width: 0;
  z-index: 0;
  transition: all 0.3s ease;
}
@media screen and (min-width:768px) {
  nav .nav--header a::after {
    bottom: min(1.0416666667vw, 20px);
    height: min(0.1041666667vw, 2px);
  }
}
nav .nav--header a:hover::after {
  width: 100%;
}
nav .nav--header a:hover .fadetxt {
  opacity: 1;
}
nav .nav .fadetxt {
  font-size: 14px;
  font-weight: 500;
  color: #ccc;
  text-align: left;
  line-height: 1.42;
  letter-spacing: 0.1em;
}
@media screen and (min-width:768px) {
  nav .nav .fadetxt {
    position: absolute;
    bottom: max(-0.78125vw, -15px);
    left: 50%;
    transform: translate(-50%, 0);
    font-size: min(0.8333333333vw, 16px);
    line-height: 1.5;
    color: #000;
    width: -moz-max-content;
    width: max-content;
    opacity: 0;
    transition: all 0.3s ease;
  }
}
nav .nav--menu02 {
  display: flex;
  align-items: center;
}
@media screen and (min-width:768px) {
  nav .nav--menu02 {
    height: min(5.46875vw, 105px);
    margin-left: min(4.1666666667vw, 80px);
  }
}
nav .nav--menu02 a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 18px;
  font-weight: 500;
  color: #000;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-family: "Poppins", sans-serif;
}
@media screen and (min-width:768px) {
  nav .nav--menu02 a {
    font-size: min(0.8333333333vw, 18px);
    line-height: 1.56;
    height: 100%;
    width: min(5.8333333333vw, 112px);
  }
}
nav .nav--menu02 .contact {
  background: #18BE29;
}
nav .nav--menu02 .contact::before {
  content: "";
  display: inline-block;
  background: url(../../assets/img/common/contact.svg) no-repeat center center/contain;
}
@media screen and (min-width:768px) {
  nav .nav--menu02 .contact::before {
    width: min(1.7708333333vw, 34px);
    height: min(2.3958333333vw, 46px);
  }
}
nav .nav--menu02 .shop {
  background: #EFD845;
}
nav .nav--menu02 .shop::before {
  content: "";
  display: inline-block;
  background: url(../../assets/img/common/shop.svg) no-repeat center center/contain;
}
@media screen and (min-width:768px) {
  nav .nav--menu02 .shop::before {
    width: min(2.3958333333vw, 46px);
    height: min(2.3958333333vw, 46px);
  }
}
nav.spmenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 5;
  transform: translateX(100%);
  opacity: 0;
  transition: 0.3s;
}
nav.spmenu.view {
  transform: translateX(0);
  opacity: 1;
}
nav.spmenu .menu__logo {
  display: inline-block;
  width: 118px;
  height: 65px;
  margin: 5px 0 0 10px;
}
nav.spmenu .spmenus {
  padding: 20px 20px 40px;
}
nav.spmenu .spmenus a {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-family: "Poppins", sans-serif;
  padding: 20px 0;
}
nav.spmenu .spmenus a span {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-align: left;
  line-height: 1.42;
  letter-spacing: 0.05em;
}
nav.spmenu .spmenus02 {
  display: flex;
  gap: 45px;
  padding: 20px;
}
nav.spmenu .spmenus02 a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-align: left;
  line-height: 1.56;
  letter-spacing: 0.05em;
  font-family: "Poppins", sans-serif;
}
nav.spmenu .spmenus02 .contact::before {
  content: "";
  display: inline-block;
  background: url(../../assets/img/common/contact_white.svg) no-repeat center center/contain;
  width: 34px;
  height: 46px;
}
nav.spmenu .spmenus02 .shop::before {
  content: "";
  display: inline-block;
  background: url(../../assets/img/common/shop_white.svg) no-repeat center center/contain;
  width: 46px;
  height: 46px;
}

.hamburger {
  display: block;
  position: relative;
  top: 25px;
  right: 20px;
  width: 26px;
  height: 26px;
  transition: 0.5s;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
  z-index: 99;
}
@media screen and (min-width:768px) {
  .hamburger {
    display: none;
  }
}
.hamburger.open {
  background: url(../../assets/img/common/menu_open.svg) no-repeat center center/contain;
  width: 26px;
  height: 26px;
}
.hamburger.close {
  background: url(../../assets/img/common/menu_close.svg) no-repeat center center/contain;
  width: 26px;
  height: 26px;
}

.hamburger.active div:nth-child(1) {
  transform: translate(-50%, 9px) rotate(-45deg);
  background: #fff;
  transition: 0.3s;
}

.hamburger.active div:nth-child(2) {
  display: none;
}

.hamburger.active div:nth-child(3) {
  transform: translate(-50%, -8px) rotate(45deg);
  background: #fff;
  transition: 0.3s;
}

.hamburger.active .close {
  display: block;
}

.hamburger.active .open {
  display: none;
}

.footer .inner--footer {
  text-align: center;
  padding: 20px 0 55px;
}
@media screen and (min-width:768px) {
  .footer .inner--footer {
    padding: min(2.34375vw, 45px) 0 min(6.5104166667vw, 125px);
  }
}
.footer .footer__logo {
  width: 216px;
  margin: auto;
}
@media screen and (min-width:768px) {
  .footer .footer__logo {
    width: min(12.65625vw, 243px);
  }
}
.footer .address {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-align: center;
  line-height: 1.71;
  letter-spacing: 0.05em;
  font-family: "Poppins", sans-serif;
  margin-bottom: 15px;
}
@media screen and (min-width:768px) {
  .footer .address {
    font-size: min(0.8333333333vw, 16px);
    line-height: 1.5;
    margin-bottom: min(0.5208333333vw, 10px);
  }
}
.footer .copy {
  font-size: 12px;
  font-weight: 400;
  color: #000;
  text-align: center;
  line-height: 2.83;
  letter-spacing: 0em;
}
@media screen and (min-width:768px) {
  .footer .copy {
    font-size: min(0.7291666667vw, 14px);
    line-height: 1.42;
  }
}

.fv-under {
  position: relative;
}
.fv-under .inner--fv-under {
  margin: auto;
  padding: 50px 0 37px;
  width: 90%;
}
@media screen and (min-width:768px) {
  .fv-under .inner--fv-under {
    width: min(72.9166666667vw, 1400px);
    padding: min(6.7708333333vw, 130px) 0 min(5.7291666667vw, 110px);
  }
}
.fv-under .fv__ttl {
  display: flex;
  flex-direction: column;
}
.fv-under .fv__ttl .en {
  display: inline-block;
  font-size: 36px;
  font-weight: 500;
  color: #009D5B;
  text-align: left;
  line-height: 1.4;
  letter-spacing: 0.1em;
  font-family: "Poppins", sans-serif;
}
@media screen and (min-width:768px) {
  .fv-under .fv__ttl .en {
    font-size: min(4.1145833333vw, 79px);
    line-height: 1.3;
  }
}
.fv-under .fv__ttl .jp {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-align: left;
  line-height: 1.42;
  letter-spacing: 0.05em;
}
@media screen and (min-width:768px) {
  .fv-under .fv__ttl .jp {
    font-size: min(1.25vw, 24px);
    line-height: 1.45;
  }
}

.fv {
  position: relative;
}
.fv::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -280px;
  left: 5%;
  background: url(../../assets/img/common/bg-washi.webp) repeat center center/contain;
  width: 100%;
  height: 100%;
}
@media screen and (min-width:768px) {
  .fv::before {
    bottom: 0;
    left: 0;
    height: min(30.7291666667vw, 590px);
  }
}
.fv .inner--fv {
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width:768px) {
  .fv .inner--fv {
    grid-template-columns: 13.5% 1fr;
  }
}
.fv .content {
  position: relative;
  width: 100%;
  height: 520px;
}
@media screen and (min-width:768px) {
  .fv .content {
    width: min(86.4583333333vw, 1660px);
    height: min(44.7916666667vw, 860px);
  }
}
.fv .content::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.12;
}
.fv .content .fv_bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.fv .content .catch {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 26px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  line-height: 1.42;
  letter-spacing: 0.4em;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (min-width:768px) {
  .fv .content .catch {
    top: min(3.3854166667vw, 65px);
    left: 50.5%;
    transform: translate(-50%, 0%);
    font-size: min(1.9791666667vw, 38px);
    line-height: 1.47;
    letter-spacing: 0.444em;
  }
}
.fv .content .fv_logo01 {
  position: absolute;
  bottom: -122px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 202px;
  height: 111px;
}
@media screen and (min-width:768px) {
  .fv .content .fv_logo01 {
    bottom: max(-11.1979166667vw, -215px);
    left: min(0.5208333333vw, 10px);
    width: min(19.9479166667vw, 383px);
    height: min(11.0416666667vw, 212px);
    aspect-ratio: 383/212;
  }
}
.fv .content .fv_logo02 {
  position: absolute;
  bottom: -55px;
  left: -125px;
  width: 99px;
  height: 107px;
}
@media screen and (min-width:768px) {
  .fv .content .fv_logo02 {
    bottom: max(-4.6875vw, -90px);
    left: max(-13.5416666667vw, -260px);
    width: min(9.7916666667vw, 188px);
    height: min(10.5729166667vw, 203px);
    aspect-ratio: 188/202;
  }
}
.fv .content .index__txt__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width:768px) {
  .fv .content .index__txt__wrap {
    height: min(28.6458333333vw, 550px);
  }
}
.fv .content .js-span-txt {
  writing-mode: vertical-rl;
  text-align: start;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.fv .content .js-span-txt span {
  opacity: 0;
  transform: translateY(10px) scale(0.8);
  animation: fadeInUpScale 0.2s forwards;
}
.fv .content .fade-in {
  opacity: 0;
  animation: fadeIn 0.5s ease-out forwards;
}
.fv .content .delay-1 {
  animation-delay: 0.5s;
}
.fv .content .delay-2 {
  animation-delay: 0.9s;
}
.fv .content .hidden {
  opacity: 0;
  visibility: hidden;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInUpScale {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.notice-pop {
  position: relative;
  z-index: 1;
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.0862745098);
  max-width: 100%;
  width: 89%;
  padding: 10px 20px;
  margin: 20px auto 0;
}
@media screen and (min-width:768px) {
  .notice-pop {
    width: 100%;
    border-radius: min(1.7708333333vw, 34px);
    max-width: min(66.6666666667vw, 1280px);
    padding: 0 0 0 min(1.5625vw, 30px);
    margin: min(2.6041666667vw, 50px) auto;
  }
}
.notice-pop__inner {
  display: flex;
  align-items: flex-start;
}
@media screen and (min-width:768px) {
  .notice-pop__inner {
    align-items: center;
  }
}
.notice-pop__icon {
  width: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width:768px) {
  .notice-pop__icon {
    width: min(2.7604166667vw, 53px);
  }
}
.notice-pop__text-link {
  position: relative;
  display: block;
  width: 100%;
  text-decoration: none;
  color: inherit;
  font-size: 18px;
  line-height: 1.7;
  padding: 0 20px 0 10px;
}
@media screen and (min-width:768px) {
  .notice-pop__text-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: min(0.5208333333vw, 10px);
    font-size: min(1.0416666667vw, 20px);
    padding: min(1.0416666667vw, 20px) min(1.5625vw, 30px) min(1.0416666667vw, 20px) min(0.5208333333vw, 10px);
  }
}
.notice-pop__link-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20px;
  height: 20px;
}
@media screen and (min-width:768px) {
  .notice-pop__link-icon {
    position: relative;
    bottom: auto;
    right: auto;
    width: min(1.1979166667vw, 23px);
    height: min(1.1979166667vw, 23px);
  }
}

.aboutSec .inner--aboutSec {
  margin: auto;
  width: 90%;
  padding: 35px 0 35px;
}
@media screen and (min-width:768px) {
  .aboutSec .inner--aboutSec {
    width: 100%;
    padding: min(3.3854166667vw, 65px) 0 min(2.8645833333vw, 55px);
  }
}
@media screen and (min-width:768px) {
  .aboutSec .section__ttl {
    padding-left: min(3.125vw, 60px);
  }
}
.aboutSec .content {
  display: flex;
}
@media screen and (min-width:768px) {
  .aboutSec .content {
    flex-direction: row;
    justify-content: flex-end;
    gap: min(2.0833333333vw, 40px);
    margin: min(4.6875vw, 90px) 0 0 auto;
  }
}
.aboutSec .content__textarea {
  width: 100%;
  padding-top: 43px;
}
@media screen and (min-width:768px) {
  .aboutSec .content__textarea {
    width: min(43.75vw, 840px);
    padding-top: min(2.0833333333vw, 40px);
  }
}
.aboutSec .content__textarea .ttl {
  font-size: 38px;
  font-weight: 500;
  color: #000;
  text-align: left;
  line-height: 1.26;
  letter-spacing: 0em;
  margin-bottom: 15px;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (min-width:768px) {
  .aboutSec .content__textarea .ttl {
    font-size: min(2.9166666667vw, 56px);
    line-height: 1.45;
    margin-bottom: min(2.8645833333vw, 55px);
  }
}
.aboutSec .content__textarea .txt {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-align: left;
  line-height: 1.85;
  letter-spacing: 0.05em;
  margin-bottom: 35px;
}
@media screen and (min-width:768px) {
  .aboutSec .content__textarea .txt {
    font-size: min(0.9895833333vw, 19px);
    line-height: 1.777;
    margin-bottom: min(4.6875vw, 90px);
  }
}
.aboutSec .content figure figcaption {
  font-size: 18px;
  font-weight: 400;
  color: #000;
  text-align: left;
  line-height: 1.72;
  letter-spacing: 0em;
  font-family: "ta-fuga-fude", sans-serif;
}
@media screen and (min-width:768px) {
  .aboutSec .content figure figcaption {
    font-size: min(1.25vw, 24px);
    line-height: 1.708;
  }
}
.aboutSec .content figure figcaption .name {
  font-size: 28px;
  font-weight: 400;
  color: #000;
  text-align: left;
  line-height: 1.72;
  letter-spacing: 0em;
}
@media screen and (min-width:768px) {
  .aboutSec .content figure figcaption .name {
    font-size: min(2.1875vw, 42px);
    line-height: 1.69;
  }
}
.aboutSec .content .about_bg {
  margin-bottom: 50px;
}
@media screen and (min-width:768px) {
  .aboutSec .content .about_bg {
    width: min(41.4583333333vw, 796px);
    max-height: 643px;
    aspect-ratio: 796/643;
    -o-object-fit: cover;
       object-fit: cover;
    margin-bottom: 0;
  }
}

.workSec .inner--workSec {
  margin: auto;
  width: 90%;
  padding: 35px 0 65px;
}
@media screen and (min-width:768px) {
  .workSec .inner--workSec {
    width: 100%;
    padding: min(3.125vw, 60px) 0 min(7.8125vw, 150px);
  }
}
@media screen and (min-width:768px) {
  .workSec .section__ttl {
    padding-left: min(3.90625vw, 75px);
  }
}
.workSec .content {
  position: relative;
}
@media screen and (min-width:768px) {
  .workSec .content {
    margin-top: min(6.7708333333vw, 130px);
  }
}
.workSec .content__textarea {
  width: 100%;
  margin: auto;
}
@media screen and (min-width:768px) {
  .workSec .content__textarea {
    width: min(43.2291666667vw, 830px);
  }
}
.workSec .content__textarea .ttl {
  font-size: 30px;
  font-weight: 500;
  color: #000;
  text-align: left;
  line-height: 1.33;
  letter-spacing: 0em;
  margin-top: 35px;
  margin-bottom: 15px;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (min-width:768px) {
  .workSec .content__textarea .ttl {
    font-size: min(2.6041666667vw, 50px);
    line-height: 1.45;
    margin-top: 0;
    margin-bottom: min(3.6458333333vw, 70px);
    text-align: center;
  }
}
.workSec .content__textarea .txt {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-align: left;
  line-height: 1.85;
  letter-spacing: 0.05em;
  margin-bottom: 35px;
}
@media screen and (min-width:768px) {
  .workSec .content__textarea .txt {
    font-size: min(0.9895833333vw, 19px);
    line-height: 1.77;
    margin-bottom: min(4.6875vw, 90px);
    text-align: center;
  }
}
.workSec .work__img {
  text-align: center;
  margin-top: 40px;
}
@media screen and (min-width:768px) {
  .workSec .work__img {
    margin: 0;
  }
}
.workSec .work_bg01 {
  position: relative;
  top: auto;
  left: auto;
  z-index: 0;
  background: url(../../assets/img/index/work01_pc.webp) no-repeat center center/cover;
  width: 100%;
  height: 330px;
  margin-top: 60px;
}
@media screen and (min-width:768px) {
  .workSec .work_bg01 {
    position: absolute;
    top: max(-3.90625vw, -75px);
    left: 0;
    width: min(28.6458333333vw, 550px);
    height: min(28.6458333333vw, 550px);
    margin-top: 0;
    z-index: -1;
  }
}
.workSec .work_bg02 {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  height: 330px;
  margin-bottom: 15px;
  z-index: 0;
  background: url(../../assets/img/index/work02_pc.webp) no-repeat center center/cover;
}
@media screen and (min-width:768px) {
  .workSec .work_bg02 {
    position: absolute;
    top: min(4.9479166667vw, 95px);
    right: max(-0.78125vw, -15px);
    width: min(28.6458333333vw, 550px);
    height: min(26.1458333333vw, 502px);
    z-index: -1;
  }
}
.workSec .work_bg03 {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  height: 330px;
  margin-bottom: 60px;
  background: url(../../assets/img/index/work03_pc.webp) no-repeat center center/cover;
}
@media screen and (min-width:768px) {
  .workSec .work_bg03 {
    position: absolute;
    top: min(32.8125vw, 630px);
    left: 0;
    width: min(38.0208333333vw, 730px);
    height: min(29.6875vw, 570px);
    margin-bottom: 0;
  }
}
.workSec .work_bg04 {
  position: static;
  aspect-ratio: 332/294;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width:768px) {
  .workSec .work_bg04 {
    position: absolute;
    top: min(43.125vw, 828px);
    right: min(7.8125vw, 150px);
    width: min(33.59375vw, 645px);
    aspect-ratio: 645/570;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.workSec .verticalTxt {
  margin: 40px 0 30px;
}
@media screen and (min-width:768px) {
  .workSec .verticalTxt {
    margin: min(6.3541666667vw, 122px) auto 0;
  }
}
.workSec .verticalTxt .verticalTxt__wrap {
  position: relative;
  font-size: 23px;
  font-weight: 500;
  color: #000;
  text-align: left;
  line-height: 1.47;
  letter-spacing: 0.43em;
  writing-mode: vertical-rl;
  margin: auto;
}
@media screen and (min-width:768px) {
  .workSec .verticalTxt .verticalTxt__wrap {
    font-size: min(1.7708333333vw, 34px);
    line-height: 1.74;
  }
}
.workSec .verticalTxt .verticalTxt__wrap::before {
  position: absolute;
  bottom: -10px;
  left: -77px;
  content: "";
  display: block;
  background: url(../../assets/img/index/rice_logo_black.svg) no-repeat center center/cover;
  width: 104px;
  height: 111px;
}
@media screen and (min-width:768px) {
  .workSec .verticalTxt .verticalTxt__wrap::before {
    bottom: max(-2.4479166667vw, -47px);
    left: max(-6.5104166667vw, -125px);
    width: min(9.4791666667vw, 182px);
    height: min(10.1041666667vw, 194px);
  }
}
@media screen and (min-width:768px) {
  .workSec .point__txt {
    width: min(35.4166666667vw, 680px);
    margin-left: min(13.5416666667vw, 260px);
    margin-bottom: min(4.6875vw, 90px);
  }
}
.workSec .point__txt .ttl {
  font-size: 32px;
  font-weight: 500;
  color: #000;
  text-align: left;
  line-height: 1.33;
  letter-spacing: 0em;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (min-width:768px) {
  .workSec .point__txt .ttl {
    font-size: min(2.9166666667vw, 56px);
    line-height: 1.45;
  }
}
.workSec .point__txt p {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-align: left;
  line-height: 1.85;
  letter-spacing: 0.05em;
}
@media screen and (min-width:768px) {
  .workSec .point__txt p {
    font-size: min(0.9895833333vw, 19px);
    line-height: 1.77;
    margin-bottom: min(3.5416666667vw, 68px);
  }
}
.workSec .sp-margin {
  margin: 20px 0 20px;
}
.workSec .swiper--work {
  width: 100%;
}
@media screen and (min-width:768px) {
  .workSec .swiper--work {
    width: min(66.6666666667vw, 1280px);
    margin: auto;
  }
}

.itemSec {
  background: #EEEEDB;
}
.itemSec .inner--itemSec {
  margin: auto;
  width: 80%;
  padding: 45px 0 54px;
}
@media screen and (min-width:768px) {
  .itemSec .inner--itemSec {
    width: 100%;
    padding: min(6.7708333333vw, 130px) 0 min(5.2083333333vw, 100px);
  }
}
.itemSec--work .content::before {
  display: none !important;
}
.itemSec .content {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
}
@media screen and (min-width:768px) {
  .itemSec .content {
    flex-direction: row-reverse;
    gap: min(3.90625vw, 75px);
    padding-right: min(5.2083333333vw, 100px);
  }
}
.itemSec .content::before {
  position: absolute;
  top: -85px;
  right: -140px;
  content: "";
  display: block;
  background: url(../../assets/img/index/rice_logo02_black.svg) no-repeat center center/contain;
  width: 274px;
  height: 167px;
}
@media screen and (min-width:768px) {
  .itemSec .content::before {
    top: max(-8.0729166667vw, -155px);
    right: min(7.7083333333vw, 148px);
    width: min(27.3958333333vw, 526px);
    height: min(16.71875vw, 321px);
  }
}
.itemSec .content__textarea {
  width: 100%;
}
@media screen and (min-width:768px) {
  .itemSec .content__textarea {
    width: min(32.34375vw, 621px);
  }
}
.itemSec .content__textarea .ttl {
  font-size: 26px;
  font-weight: 500;
  color: #000;
  text-align: left;
  line-height: 1.42;
  letter-spacing: 0em;
  margin: 20px 0 20px;
}
@media screen and (min-width:768px) {
  .itemSec .content__textarea .ttl {
    font-size: min(2.0833333333vw, 40px);
    line-height: 1.45;
    margin-bottom: min(2.6041666667vw, 50px);
  }
}
.itemSec .content__textarea .txt {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-align: left;
  line-height: 1.85;
  letter-spacing: 0.05em;
  margin-bottom: 25px;
}
@media screen and (min-width:768px) {
  .itemSec .content__textarea .txt {
    font-size: min(0.8333333333vw, 16px);
    line-height: 1.75;
    margin-bottom: min(2.0833333333vw, 40px);
  }
}
.itemSec .content__textarea .price {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 500;
  color: #000;
  text-align: left;
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin-bottom: 60px;
}
@media screen and (min-width:768px) {
  .itemSec .content__textarea .price {
    justify-content: flex-start;
    font-size: min(1.6666666667vw, 32px);
    line-height: 1.75;
    margin-bottom: min(1.3020833333vw, 25px);
  }
}
.itemSec .content__textarea .price .kg {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  text-align: left;
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin-right: 30px;
}
@media screen and (min-width:768px) {
  .itemSec .content__textarea .price .kg {
    font-size: min(0.8333333333vw, 16px);
    line-height: 1.75;
    margin-right: min(1.875vw, 36px);
  }
}
.itemSec .content__textarea .price .yen {
  font-size: 20px;
  font-weight: 500;
  color: #000;
  text-align: left;
  line-height: 2.8;
  letter-spacing: 0.05em;
  padding-top: 0.5em;
}
@media screen and (min-width:768px) {
  .itemSec .content__textarea .price .yen {
    font-size: min(1.0416666667vw, 20px);
    line-height: 2.8;
  }
}
.itemSec .content .item__img {
  position: relative;
  cursor: zoom-in;
}
@media screen and (min-width:768px) {
  .itemSec .content .item__img .item01 {
    width: min(31.25vw, 600px);
  }
}
.itemSec .content .item__img .expansion {
  display: none;
}
@media screen and (min-width:768px) {
  .itemSec .content .item__img .expansion {
    display: flex;
    align-items: center;
    font-size: min(0.9375vw, 18px);
    font-weight: 500;
    color: #000;
    text-align: left;
    line-height: 1.77;
    letter-spacing: 0em;
  }
  .itemSec .content .item__img .expansion::before {
    content: "";
    background: url(../../assets/img/common/zoom-in.svg) no-repeat center center/contain;
    width: min(2.1875vw, 42px);
    height: min(2.1875vw, 42px);
  }
}

@media screen and (max-width:767px) {
  .bgWrap {
    overflow: hidden;
  }
}

.popup {
  display: none;
  /* 初期状態では非表示 */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  /* 背景を暗くする */
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-content {
  position: relative;
  max-width: 100%;
  height: 100%;
}

.popup-content img {
  max-width: 80vw;
  /* 画面幅の80%まで */
  max-height: 80vh;
  /* 画面高さの80%まで */
  width: auto;
  height: auto;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #000;
}

.closepop {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

.voiceSec .inner--voiceSec {
  width: 90%;
  margin: auto;
  padding: 45px 0 40px;
}
@media screen and (min-width:768px) {
  .voiceSec .inner--voiceSec {
    width: 100%;
    padding: min(3.8020833333vw, 73px) 0 min(7.5520833333vw, 145px);
  }
}
@media screen and (min-width:768px) {
  .voiceSec .section__ttl {
    padding-left: min(3.90625vw, 75px);
  }
}
.voiceSec .content__ttl {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-align: center;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-top: 30px;
}
@media screen and (min-width:768px) {
  .voiceSec .content__ttl {
    font-size: min(1.0416666667vw, 20px);
    line-height: 1.4;
    margin-top: min(1.8229166667vw, 35px);
  }
}
.voiceSec .content__txt {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-align: center;
  line-height: 1.71;
  letter-spacing: 0.05em;
  margin-top: 30px;
}
@media screen and (min-width:768px) {
  .voiceSec .content__txt {
    font-size: min(1.0416666667vw, 20px);
    line-height: 1.4;
    text-align: left;
  }
}
.voiceSec .voiceSec__lists {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  margin: 75px auto 30px;
}
@media screen and (min-width:768px) {
  .voiceSec .voiceSec__lists {
    grid-template-columns: repeat(3, 1fr);
    width: min(72.9166666667vw, 1400px);
    margin: min(3.3854166667vw, 65px) auto min(4.4270833333vw, 85px);
  }
}
.voiceSec .voiceSec__lists li {
  cursor: pointer;
  height: 100%;
  min-height: 282px;
  max-width: 335px;
  margin: auto;
  width: 100%;
}
@media screen and (min-width:768px) {
  .voiceSec .voiceSec__lists li {
    height: min(20.8333333333vw, 400px);
    min-height: auto;
    max-width: none;
  }
}
.voiceSec .voiceSec__lists li img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 335/282;
  object-fit: cover;
}
.voiceSec .ripples {
  background: url(../../assets/img/work/work01_pc.webp) no-repeat center center;
  background-color: #000000;
  background-size: cover;
  width: 100%;
  height: 500px;
  margin: 0;
  color: #FFFFFF;
}

.contactSec .inner--contactSec {
  width: 90%;
  margin: auto;
  padding: 40px 0 20px;
}
@media screen and (min-width:768px) {
  .contactSec .inner--contactSec {
    width: 100%;
    padding: min(3.6458333333vw, 70px) 0 min(5.7291666667vw, 110px);
  }
}
.contactSec .content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
  background: #FFFFFF;
  margin: auto;
  padding: 55px 0 80px;
}
@media screen and (min-width:768px) {
  .contactSec .content {
    flex-direction: row;
    gap: min(13.28125vw, 255px);
    width: min(72.9166666667vw, 1400px);
    padding: min(6.5104166667vw, 125px) min(4.1666666667vw, 80px) min(6.5104166667vw, 125px) 0;
  }
}
.contactSec .content__textarea {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
@media screen and (min-width:768px) {
  .contactSec .content__textarea {
    gap: 0;
    margin-top: max(-1.1979166667vw, -23px);
  }
}
.contactSec .content__ttl {
  font-size: 38px;
  font-weight: 500;
  color: #009D5B;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-family: "Poppins", sans-serif;
}
@media screen and (min-width:768px) {
  .contactSec .content__ttl {
    text-align: left;
    font-size: min(3.125vw, 60px);
    line-height: 1.5;
    margin-bottom: min(0.2604166667vw, 5px);
  }
}
.contactSec .content__txt {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-align: center;
  line-height: 1.71;
  letter-spacing: 0.05em;
}
@media screen and (min-width:768px) {
  .contactSec .content__txt {
    font-size: min(1.0416666667vw, 20px);
    line-height: 1.4;
    text-align: left;
  }
}
@media screen and (min-width:768px) {
  .contactSec .content .btnBlock {
    padding-top: min(2.0833333333vw, 40px);
  }
}

.newsSec .inner--newsSec {
  margin: auto;
  width: 90%;
  padding: 35px 0 35px;
}
@media screen and (min-width:768px) {
  .newsSec .inner--newsSec {
    width: 100%;
    max-width: min(67.7083333333vw, 1300px);
    padding: min(3.3854166667vw, 65px) 0 min(2.8645833333vw, 55px);
  }
}
@media screen and (min-width:768px) {
  .newsSec .section__ttl {
    padding-left: min(3.125vw, 60px);
  }
}
.newsSec__empty {
  text-align: center;
  margin: 1.5em auto;
  padding: 0;
}
@media screen and (min-width:768px) {
  .newsSec__empty {
    padding-left: min(3.125vw, 60px);
  }
}
.newsSec__tabs {
  position: relative;
  display: flex;
  gap: 10px;
  margin: 20px 0;
}
@media screen and (min-width:768px) {
  .newsSec__tabs {
    gap: min(1.0416666667vw, 20px);
    margin: min(3.125vw, 60px) 0 min(2.0833333333vw, 40px);
  }
}
.newsSec__tabs a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-align: left;
  line-height: 1.7;
  letter-spacing: 0em;
  border: 1px solid #707070;
  min-width: 68px;
  height: 33px;
}
@media screen and (min-width:768px) {
  .newsSec__tabs a {
    font-size: min(0.8333333333vw, 16px);
    line-height: 1.5;
    min-width: min(4.4791666667vw, 86px);
    height: min(2.1875vw, 42px);
  }
}
.newsSec__tabs a.is-active {
  background: #707070;
  color: #FFFFFF;
}
.newsSec__tabs a:hover {
  background: #707070;
  color: #FFFFFF;
}
.newsSec .newsItem {
  position: relative;
}
.newsSec .newsItem__link {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0px;
}
@media screen and (min-width:768px) {
  .newsSec .newsItem__link {
    grid-template-columns: 1fr;
    gap: min(0.5208333333vw, 10px);
  }
}
.newsSec .newsItem__thumb img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 354/318;
}
.newsSec .newsItem__body {
  display: flex;
  flex-direction: column;
}
.newsSec .newsItem__date {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-align: left;
  line-height: 1.7;
  letter-spacing: 0em;
}
@media screen and (min-width:768px) {
  .newsSec .newsItem__date {
    font-size: min(0.9375vw, 18px);
    line-height: 1.77;
  }
}
.newsSec .newsItem h3 {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-align: left;
  line-height: 1.7;
  letter-spacing: 0em;
  margin-bottom: 10px;
}
@media screen and (min-width:768px) {
  .newsSec .newsItem h3 {
    font-size: min(1.0416666667vw, 20px);
    line-height: 1.6;
    margin-bottom: min(1.0416666667vw, 20px);
  }
}
.newsSec .newsItem .more {
  font-size: 12px;
  font-weight: 500;
  color: #000;
  text-align: left;
  line-height: 1.7;
  letter-spacing: 0.1em;
}
@media screen and (min-width:768px) {
  .newsSec .newsItem .more {
    font-size: min(0.8333333333vw, 16px);
    line-height: 1.77;
  }
}
.newsSec .newsItem__flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.newsSec .newsItem__category {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-align: left;
  line-height: 1.7;
  letter-spacing: 0em;
  border: 1px solid #707070;
  min-width: 68px;
  height: 33px;
}
@media screen and (min-width:768px) {
  .newsSec .newsItem__category {
    font-size: min(0.8333333333vw, 16px);
    line-height: 1.5;
    min-width: min(4.4791666667vw, 86px);
    height: min(2.1875vw, 42px);
  }
}

.firstSecAbout .inner--firstSecAbout {
  margin: auto;
  width: 90%;
}
@media screen and (min-width:768px) {
  .firstSecAbout .inner--firstSecAbout {
    width: min(72.9166666667vw, 1400px);
  }
}
.firstSecAbout .content--left {
  margin: 0 auto 0 0;
}
.firstSecAbout .content--right {
  margin: 0 0 0 auto;
}
@media screen and (min-width:768px) {
  .firstSecAbout .content__textarea, .firstSecAbout .content__textarea02 {
    width: min(46.875vw, 900px);
    margin-top: min(2.6041666667vw, 50px);
    margin-bottom: min(2.8645833333vw, 55px);
  }
}
.firstSecAbout .content__textarea .ttl, .firstSecAbout .content__textarea02 .ttl {
  font-size: 34px;
  font-weight: 500;
  color: #000;
  text-align: left;
  line-height: 1.29;
  letter-spacing: 0em;
  margin-top: 15px;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (min-width:768px) {
  .firstSecAbout .content__textarea .ttl, .firstSecAbout .content__textarea02 .ttl {
    font-size: min(2.9166666667vw, 56px);
    line-height: 1.28;
    margin-top: 0;
    margin-bottom: min(2.6041666667vw, 50px);
  }
}
.firstSecAbout .content__textarea .txt, .firstSecAbout .content__textarea02 .txt {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-align: left;
  line-height: 1.85;
  letter-spacing: 0.05em;
  margin-top: 20px;
}
@media screen and (min-width:768px) {
  .firstSecAbout .content__textarea .txt, .firstSecAbout .content__textarea02 .txt {
    font-size: min(0.9895833333vw, 19px);
    line-height: 1.77;
    margin-bottom: min(4.1666666667vw, 80px);
  }
}
@media screen and (min-width:768px) {
  .firstSecAbout .content__textarea .txt {
    width: min(32.03125vw, 615px);
  }
}
@media screen and (min-width:768px) {
  .firstSecAbout .content__textarea02 {
    width: min(43.75vw, 840px);
    margin-top: min(0.5208333333vw, 10px);
    margin-bottom: min(2.8645833333vw, 55px);
  }
}
.firstSecAbout .content__textarea02 .ttl {
  margin-top: 17px;
}
@media screen and (min-width:768px) {
  .firstSecAbout .content__textarea02 .ttl {
    margin-top: min(1.5625vw, 30px);
  }
}
.firstSecAbout .content .massege__ttl {
  display: inline-block;
  font-size: 42px;
  font-weight: 500;
  color: #009D5B;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-family: "Poppins", sans-serif;
}
@media screen and (min-width:768px) {
  .firstSecAbout .content .massege__ttl {
    font-size: min(4.0625vw, 78px);
    line-height: 1.5;
  }
}
@media screen and (max-width:767px) {
  .firstSecAbout .firstSecAbout_bg01 {
    aspect-ratio: 335/280;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.firstSecAbout .bg__img {
  text-align: center;
}
.firstSecAbout .bg__img .about_bg {
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
}
@media screen and (min-width:768px) {
  .firstSecAbout .bg__img .about_bg {
    width: min(31.6666666667vw, 608px);
    aspect-ratio: 608/338;
  }
}
.firstSecAbout .about_bg02_sp {
  -o-object-fit: cover;
     object-fit: cover;
  margin: 30px auto 45px;
  background: url(../../assets/img/about/about02_sp.webp) no-repeat center center/cover;
  width: 100%;
  height: 280px;
}
@media screen and (min-width:768px) {
  .firstSecAbout .about_bg02_sp {
    display: none;
  }
}
.firstSecAbout .about_bg03_sp {
  -o-object-fit: cover;
     object-fit: cover;
  margin: 15px auto 15px;
  background: url(../../assets/img/about/about03_sp.webp) no-repeat center center/cover;
  width: 100%;
  height: 280px;
}
@media screen and (min-width:768px) {
  .firstSecAbout .about_bg03_sp {
    display: none;
  }
}
.firstSecAbout .name__block {
  display: none;
}
@media screen and (min-width:768px) {
  .firstSecAbout .name__block {
    display: block;
  }
}
.firstSecAbout .name__block .name {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  text-align: right;
  line-height: 1.72;
  letter-spacing: 0em;
  font-family: "ta-fuga-fude", sans-serif;
}
@media screen and (min-width:768px) {
  .firstSecAbout .name__block .name {
    font-size: min(1.3541666667vw, 26px);
    line-height: 1.708;
  }
}
.firstSecAbout .name__block .name span.name {
  font-size: 34px;
  font-weight: 400;
  color: #000;
  text-align: left;
  line-height: 1.72;
  letter-spacing: 0em;
}
@media screen and (min-width:768px) {
  .firstSecAbout .name__block .name span.name {
    font-size: min(2.7083333333vw, 52px);
    line-height: 1.69;
  }
}
.firstSecAbout figure figcaption {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  text-align: right;
  line-height: 1.52;
  letter-spacing: 0em;
  font-family: "ta-fuga-fude", sans-serif;
  margin-top: 10px;
}
@media screen and (min-width:768px) {
  .firstSecAbout figure figcaption {
    font-size: min(1.7708333333vw, 34px);
    line-height: 1.708;
    margin-top: 0;
  }
}
.firstSecAbout figure figcaption span.name {
  font-size: 34px;
  font-weight: 400;
  color: #000;
  text-align: right;
  line-height: 1.52;
  letter-spacing: 0em;
}
@media screen and (min-width:768px) {
  .firstSecAbout figure figcaption span.name {
    font-size: min(2.7083333333vw, 52px);
    line-height: 1.69;
  }
}

.secondSecAbout .inner--secondSecAbout {
  width: 100%;
  padding: 0 0 50px 0;
}
@media screen and (min-width:768px) {
  .secondSecAbout .inner--secondSecAbout {
    padding: 0 0 min(5.8333333333vw, 112px) 0;
  }
}
.secondSecAbout .bg__img {
  margin: 60px 0 30px;
  width: 100%;
  height: 320px;
}
@media screen and (min-width:768px) {
  .secondSecAbout .bg__img {
    height: min(37.8125vw, 726px);
    margin: min(10.4166666667vw, 200px) 0 min(4.4270833333vw, 85px);
  }
}
.secondSecAbout .bg__img--01 {
  background: url(../../assets/img/about/about05_pc.webp) no-repeat center center/cover;
}
@media screen and (min-width:768px) {
  .secondSecAbout .bg__img--01 {
    margin: min(7.8125vw, 150px) 0 min(3.6458333333vw, 70px);
  }
}
.secondSecAbout .bg__img--02 {
  position: relative;
  overflow: hidden;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  transition: -webkit-clip-path 1s ease-out;
  transition: clip-path 1s ease-out;
  transition: clip-path 1s ease-out, -webkit-clip-path 1s ease-out;
  background: url(../../assets/img/about/about02_pc.webp) no-repeat center center/cover;
}
@media screen and (min-width:768px) {
  .secondSecAbout .bg__img--02 {
    margin: 0 0 min(4.4270833333vw, 85px);
  }
}
.secondSecAbout .bg__img--02.active {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
  /* 画面いっぱいに広がる */
}

.firstSecVoice {
  /* 初期状態で .hovBlock を隠す */
  /* スムーズに表示されるアニメーション */
}
.firstSecVoice .inner--firstSecVoice {
  margin: auto;
}
@media screen and (min-width:768px) {
  .firstSecVoice .inner--firstSecVoice {
    width: min(72.9166666667vw, 1400px);
    padding-bottom: min(7.8125vw, 150px);
  }
}
.firstSecVoice .hover-trigger {
  position: relative;
}
.firstSecVoice .hovBlock {
  display: none;
  position: absolute;
  top: 0%;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  transform: translateY(0px);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  z-index: 9;
}
.firstSecVoice .hovBlock .wrap .ttl {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-align: left;
  line-height: 1.6;
  letter-spacing: 0em;
  margin-bottom: 15px;
}
@media screen and (min-width:768px) {
  .firstSecVoice .hovBlock .wrap .ttl {
    font-size: min(1.0416666667vw, 20px);
    line-height: 1.6;
    margin-bottom: min(1.0416666667vw, 20px);
  }
}
.firstSecVoice .hovBlock .wrap .txt {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-align: left;
  line-height: 1.6;
  letter-spacing: 0em;
}
@media screen and (min-width:768px) {
  .firstSecVoice .hovBlock .wrap .txt {
    font-size: min(1.0416666667vw, 20px);
    line-height: 1.6;
    letter-spacing: 0em;
  }
}
.firstSecVoice .hovBlock.visible {
  display: inline-block;
  opacity: 1;
  transform: translateY(0);
}
.firstSecVoice .voiceSec__lists {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  margin: 0 auto 30px;
  gap: min(1.6666666667vw, 32px) min(1.4583333333vw, 28px);
}
@media screen and (min-width:768px) {
  .firstSecVoice .voiceSec__lists {
    grid-template-columns: repeat(3, 1fr);
    width: min(72.9166666667vw, 1400px);
    margin: min(3.3854166667vw, 65px) auto min(4.4270833333vw, 85px);
  }
}
.firstSecVoice .voiceSec__lists li {
  cursor: pointer;
  height: 100%;
  min-height: 282px;
  max-width: 335px;
  margin: auto;
  width: 100%;
}
@media screen and (min-width:768px) {
  .firstSecVoice .voiceSec__lists li {
    height: min(20.8333333333vw, 400px);
    min-height: auto;
    max-width: none;
  }
}
.firstSecVoice .voiceSec__lists li img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 335/282;
  object-fit: cover;
}
.firstSecVoice .voiceSec__lists .box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.firstSecVoice .voiceSec__lists .box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 1;
  opacity: 0;
  transition: 0.3s;
}
.firstSecVoice .voiceSec__lists .box:hover::before {
  opacity: 0.3;
}
.firstSecVoice .voiceSec__lists .box:hover .data {
  opacity: 1;
}
.firstSecVoice .voiceSec__lists .box:hover .catch {
  display: none;
}
.firstSecVoice .voiceSec__lists .data {
  display: flex;
  flex-direction: column;
  padding: 5%;
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: 2;
}
.firstSecVoice .voiceSec__lists .data .catch {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  line-height: 1.57;
  letter-spacing: 0em;
}
@media screen and (min-width:768px) {
  .firstSecVoice .voiceSec__lists .data .catch {
    font-size: min(1.0416666667vw, 20px);
    line-height: 1.6;
  }
}

.firstSecWork .inner--firstSecWork {
  margin: auto;
  width: 90%;
  padding-bottom: 100px;
}
@media screen and (min-width:768px) {
  .firstSecWork .inner--firstSecWork {
    width: min(72.9166666667vw, 1400px);
    padding-bottom: 0;
  }
}
.firstSecWork .content .ttl {
  font-size: 28px;
  font-weight: 500;
  color: #000;
  text-align: left;
  line-height: 1.33;
  letter-spacing: 0em;
  margin-top: 15px;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (min-width:768px) {
  .firstSecWork .content .ttl {
    font-size: min(2.9166666667vw, 56px);
    line-height: 1.28;
    margin-top: min(1.5625vw, 30px);
    margin-bottom: min(2.6041666667vw, 50px);
  }
}
@media screen and (max-width:767px) {
  .firstSecWork .firstSecWork_bg01 {
    aspect-ratio: 335/280;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.firstSecWork .schedule__ttl {
  font-size: 22px;
  font-weight: 500;
  color: #000;
  text-align: center;
  line-height: 1.45;
  letter-spacing: 0em;
  margin-top: 50px;
}
@media screen and (min-width:768px) {
  .firstSecWork .schedule__ttl {
    font-size: min(1.6666666667vw, 32px);
    line-height: 1.45;
    margin-top: min(7.2916666667vw, 140px);
  }
}
.firstSecWork .schedule__subttl {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-align: center;
  line-height: 1.57;
  letter-spacing: 0em;
  margin-bottom: 30px;
}
@media screen and (min-width:768px) {
  .firstSecWork .schedule__subttl {
    font-size: min(1.0416666667vw, 20px);
    line-height: 1.6;
    margin-bottom: min(1.5625vw, 30px);
  }
}
.firstSecWork .schedule {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}
@media screen and (min-width:768px) {
  .firstSecWork .schedule {
    grid-template-columns: repeat(3, min(23.3333333333vw, 448px));
    gap: min(3.6458333333vw, 70px) min(1.4583333333vw, 28px);
  }
}
.firstSecWork .schedule .schedule-item {
  position: relative;
  height: auto;
  aspect-ratio: 268/230;
  background-size: cover;
  padding: 13px 20px;
  cursor: pointer;
  overflow: hidden;
  background: none !important;
  /* 疑似要素で背景画像を表示 */
  /* ホバーしたら疑似要素だけを拡大 */
}
@media screen and (min-width:768px) {
  .firstSecWork .schedule .schedule-item {
    height: min(20vw, 384px);
    padding: min(1.0416666667vw, 20px) min(1.875vw, 36px);
  }
}
.firstSecWork .schedule .schedule-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  z-index: -1;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.3s ease;
}
.firstSecWork .schedule .schedule-item:hover::before {
  transform: scale(1.05);
}
.firstSecWork .schedule .meta {
  margin-top: 5px;
}
@media screen and (min-width:768px) {
  .firstSecWork .schedule .meta {
    display: flex;
    margin-top: min(0.5208333333vw, 10px);
  }
}
.firstSecWork .schedule .other {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-align: right;
  line-height: 1.5;
  letter-spacing: 0em;
}
@media screen and (min-width:768px) {
  .firstSecWork .schedule .other {
    font-size: min(0.9375vw, 18px);
    gap: min(0.2604166667vw, 5px);
    margin: 0 0 0 auto;
  }
}
.firstSecWork .schedule .other img {
  width: 12px;
}
@media screen and (min-width:768px) {
  .firstSecWork .schedule .other img {
    width: min(0.8333333333vw, 16px);
  }
}
.firstSecWork .schedule .month {
  display: inline-block;
  font-size: 20px;
  font-weight: 500;
  color: #000;
  text-align: left;
  line-height: 1.45;
  letter-spacing: 0em;
  margin-right: 0.2em;
}
@media screen and (min-width:768px) {
  .firstSecWork .schedule .month {
    font-size: min(1.25vw, 24px);
    line-height: 1.42;
  }
}
.firstSecWork .schedule .scheduleTitle {
  display: inline-block;
  font-size: 20px;
  font-weight: 500;
  color: #000;
  text-align: left;
  line-height: 1.45;
  letter-spacing: 0em;
  width: 100%;
}
@media screen and (min-width:768px) {
  .firstSecWork .schedule .scheduleTitle {
    font-size: min(1.25vw, 24px);
    line-height: 1.42;
    width: auto;
  }
}

.work-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: rgba(0, 0, 0, 0.5);
}
.work-popup .work-popup-content {
  padding: 20px 15px 25px;
  width: 90%;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
}
@media screen and (min-width:768px) {
  .work-popup .work-popup-content {
    width: 61%;
    padding: min(2.6041666667vw, 50px) min(1.0416666667vw, 20px);
  }
}
.work-popup #work-popup-title {
  font-size: 20px;
  font-weight: 500;
  color: #000;
  text-align: left;
  line-height: 1.45;
  letter-spacing: 0em;
  max-width: none;
  margin: 0;
}
@media screen and (min-width:768px) {
  .work-popup #work-popup-title {
    font-size: min(1.875vw, 36px);
    line-height: 1.44;
    margin: auto;
    max-width: min(57.2916666667vw, 1100px);
  }
}
.work-popup .swiper--popup .swiper-button-next,
.work-popup .swiper--popup .swiper-button-prev {
  color: #000 !important;
}
.work-popup .swiper--popup .swiper-button-next:after,
.work-popup .swiper--popup .swiper-button-prev:after {
  font-size: 30px;
}
@media screen and (min-width:768px) {
  .work-popup .swiper--popup .swiper-button-next:after,
  .work-popup .swiper--popup .swiper-button-prev:after {
    font-size: min(2.2916666667vw, 44px);
  }
}
@media screen and (max-width:767px) {
  .work-popup .swiper--popup .swiper-button-next {
    right: -5px;
  }
}
@media screen and (max-width:767px) {
  .work-popup .swiper--popup .swiper-button-prev {
    left: -5px;
  }
}
.work-popup img {
  width: 90%;
  margin: 20px auto auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width:768px) {
  .work-popup img {
    max-width: min(57.2916666667vw, 1100px);
    max-height: min(36.9791666667vw, 710px);
    margin-top: min(1.0416666667vw, 20px);
  }
}
.work-popup #work-popup-text {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-align: left;
  line-height: 1.85;
  letter-spacing: 0.05em;
}
@media screen and (min-width:768px) {
  .work-popup #work-popup-text {
    font-size: min(0.8333333333vw, 16px);
    line-height: 1.75;
  }
}
.work-popup .work-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
}

.attractivenessSecWork .inner--attractivenessSecWork {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: auto;
  padding-top: 80px;
  width: 90%;
}
@media screen and (min-width:768px) {
  .attractivenessSecWork .inner--attractivenessSecWork {
    flex-direction: row;
    gap: min(10.4166666667vw, 200px);
    width: min(72.9166666667vw, 1400px);
    padding-top: min(7.8125vw, 150px);
  }
}
.attractivenessSecWork .work_map {
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
}
@media screen and (min-width:768px) {
  .attractivenessSecWork .work_map {
    width: min(33.59375vw, 645px);
    aspect-ratio: 645/570;
    margin-right: max(-7.03125vw, -135px);
  }
}
.attractivenessSecWork .contentArea .ttl {
  font-size: 30px;
  font-weight: 500;
  color: #000;
  text-align: left;
  line-height: 1.33;
  letter-spacing: 0em;
  font-family: "Zen Old Mincho", serif;
  margin-bottom: 30px;
}
@media screen and (min-width:768px) {
  .attractivenessSecWork .contentArea .ttl {
    font-size: min(2.9166666667vw, 56px);
    line-height: 1.45;
    margin-bottom: min(1.5625vw, 30px);
  }
}
.attractivenessSecWork .contentArea .ttl--medium {
  font-size: 22px;
  font-weight: 500;
  color: #000;
  text-align: left;
  line-height: 1.45;
  letter-spacing: 0em;
  margin-bottom: 30px;
}
@media screen and (min-width:768px) {
  .attractivenessSecWork .contentArea .ttl--medium {
    font-size: min(1.875vw, 36px);
    line-height: 1.44;
    margin-bottom: min(2.0833333333vw, 40px);
  }
}
.attractivenessSecWork .contentArea .ttl--small {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  text-align: left;
  line-height: 1.45;
  letter-spacing: 0em;
  margin-bottom: 15px;
}
@media screen and (min-width:768px) {
  .attractivenessSecWork .contentArea .ttl--small {
    font-size: min(1.1458333333vw, 22px);
    line-height: 1.27;
    margin-bottom: min(0.78125vw, 15px);
  }
}
.attractivenessSecWork .contentArea .txt {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-align: left;
  line-height: 1.85;
  letter-spacing: 0.05em;
}
@media screen and (min-width:768px) {
  .attractivenessSecWork .contentArea .txt {
    font-size: min(0.9895833333vw, 19px);
    line-height: 1.77;
  }
}
.attractivenessSecWork .contentArea .txt.mb-75 {
  margin-bottom: 40px;
}
@media screen and (min-width:768px) {
  .attractivenessSecWork .contentArea .txt.mb-75 {
    margin-bottom: min(3.90625vw, 75px);
  }
}

.secondSecWork .inner--secondSecWork {
  width: 100%;
  padding: 0;
}
@media screen and (min-width:768px) {
  .secondSecWork .inner--secondSecWork {
    padding: 0;
  }
}
.secondSecWork .bg__img {
  margin: 60px 0 30px;
  width: 100%;
  height: 320px;
}
@media screen and (min-width:768px) {
  .secondSecWork .bg__img {
    height: min(37.8125vw, 726px);
    margin: min(10.4166666667vw, 200px) 0 min(4.4270833333vw, 85px);
  }
}
.secondSecWork .bg__img--03 {
  position: relative;
  overflow: hidden;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  transition: -webkit-clip-path 1s ease-out;
  transition: clip-path 1s ease-out;
  transition: clip-path 1s ease-out, -webkit-clip-path 1s ease-out;
  background: url(../../assets/img/work/work02_sp.webp) no-repeat center center/cover;
}
@media screen and (min-width:768px) {
  .secondSecWork .bg__img--03 {
    background: url(../../assets/img/work/work02_pc.webp) no-repeat center center/cover;
  }
}
.secondSecWork .bg__img--03.active {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
  /* 画面いっぱいに広がる */
}

.fv__contactTxt {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  text-align: left;
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin-top: 30px;
}
@media screen and (min-width:768px) {
  .fv__contactTxt {
    font-size: min(1.0416666667vw, 20px);
    line-height: 1.4;
    margin-top: min(1.5625vw, 30px);
  }
}

.contact-form {
  max-width: 1000px;
  width: 100%;
  margin: auto;
}
@media screen and (min-width:768px) {
  .contact-form {
    max-width: min(52.0833333333vw, 1000px);
  }
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0px;
  margin-bottom: 50px;
}
@media screen and (min-width:768px) {
  .form-row {
    flex-direction: row;
    justify-content: space-between;
    gap: min(1.0416666667vw, 20px);
    margin-bottom: min(4.1666666667vw, 80px);
  }
}
.form-row .wpcf7-form-control-wrap {
  width: 100%;
}
@media screen and (min-width:768px) {
  .form-row .wpcf7-form-control-wrap {
    width: min(37.5vw, 720px);
  }
}
.form-row input {
  flex: 1;
  padding: 0 8px;
  width: 100%;
  border: none;
  border-bottom: 1px solid #000000;
  background: transparent;
  outline: none;
}
@media screen and (min-width:768px) {
  .form-row input {
    padding: min(0.4166666667vw, 8px);
  }
}
.form-row textarea {
  flex: 1;
  border: none;
  width: 100%;
  height: 265px;
  outline: none;
  padding: 8px;
}
@media screen and (min-width:768px) {
  .form-row textarea {
    height: min(20vw, 384px);
    padding: min(0.4166666667vw, 8px);
  }
}
.form-row .form-item {
  padding: 0 8px;
}
@media screen and (min-width:768px) {
  .form-row .form-item {
    padding: min(0.4166666667vw, 8px);
    max-height: min(2.4479166667vw, 47px);
  }
}
.form-row .form-item.required {
  position: relative;
}
.form-row .form-item.required::before {
  position: absolute;
  top: 50%;
  left: auto;
  right: 0;
  transform: translate(0%, -50%);
  content: "必須";
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  text-align: left;
  line-height: 2;
  letter-spacing: 0.01em;
  padding: 0 10px;
  background: #fff;
  border: 1px solid #ABABAB;
}
@media screen and (min-width:768px) {
  .form-row .form-item.required::before {
    top: 50%;
    left: 0;
    right: auto;
    transform: translate(-100%, -50%);
    font-size: min(0.7291666667vw, 14px);
    line-height: 2;
    padding: 0 min(0.4166666667vw, 8px);
  }
}
.form-row .form-item,
.form-row input,
.form-row textarea {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  text-align: left;
  line-height: 2.25;
  letter-spacing: 0.01em;
}
@media screen and (min-width:768px) {
  .form-row .form-item,
  .form-row input,
  .form-row textarea {
    font-size: min(0.9375vw, 18px);
    line-height: 2;
  }
}

textarea {
  height: 100px;
  margin-top: 30px;
}
@media screen and (min-width:768px) {
  textarea {
    margin-top: 0;
  }
}

.form-check {
  text-align: center;
  margin: 30px 0 40px;
}
@media screen and (min-width:768px) {
  .form-check {
    margin: min(4.1666666667vw, 80px) 0 min(2.6041666667vw, 50px);
  }
}

.form-buttons {
  text-align: center;
}
.form-buttons .wrap {
  display: inline-block;
  position: relative;
  cursor: pointer;
  max-width: 270px;
  width: 100%;
}
@media screen and (min-width:768px) {
  .form-buttons .wrap {
    max-width: none;
    width: auto;
  }
}
.form-buttons .wrap::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 70px;
  transform: translate(0, -50%);
  background: url(../../assets/img/common/contact.svg) no-repeat center center/contain;
  width: 24px;
  height: 18px;
}
@media screen and (min-width:768px) {
  .form-buttons .wrap::before {
    width: min(1.71875vw, 33px);
    height: min(1.1979166667vw, 23px);
    left: min(5.9895833333vw, 115px);
  }
}
.form-buttons .wrap:hover::before {
  background: url(../../assets/img/common/contact_white.svg) no-repeat center center/contain;
}

.wpcf7-spinner {
  display: none;
}

.submit-button {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  text-align: center;
  line-height: 2.25;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #D1D1B1;
  border: none;
  cursor: pointer;
  margin: auto;
  max-width: 270px;
  width: 100%;
  height: 82px;
}
@media screen and (min-width:768px) {
  .submit-button {
    font-size: min(1.0416666667vw, 20px);
    line-height: 1.45;
    max-width: none;
    width: min(20.7291666667vw, 398px);
    height: min(5.3125vw, 102px);
    padding-left: min(1.5625vw, 30px);
  }
}
.submit-button:hover {
  background: #979778;
  color: #fff;
}

.news-detail__inner {
  margin: auto;
  width: 90%;
  padding-bottom: 25px;
}
@media screen and (min-width:768px) {
  .news-detail__inner {
    width: min(72.9166666667vw, 1400px);
    padding-bottom: 0;
  }
}
.news-detail__date {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  text-align: left;
  line-height: 1.33;
  letter-spacing: 0em;
  font-family: "Poppins", sans-serif;
  margin-bottom: 10px;
}
@media screen and (min-width:768px) {
  .news-detail__date {
    font-size: min(1.1458333333vw, 22px);
    line-height: 1.5;
    margin-bottom: min(0.5208333333vw, 10px);
  }
}
.news-detail__title {
  font-size: 28px;
  font-weight: 500;
  color: #000;
  text-align: left;
  line-height: 1.33;
  letter-spacing: 0em;
  font-family: "Zen Old Mincho", serif;
  margin-bottom: 20px;
}
@media screen and (min-width:768px) {
  .news-detail__title {
    font-size: min(1.875vw, 36px);
    line-height: 1.44;
    margin-bottom: min(2.6041666667vw, 50px);
  }
}
.news-detail__thumb img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1400/828;
  max-height: 824px;
}
@media screen and (min-width:768px) {
  .news-detail__thumb img {
    max-height: min(42.9166666667vw, 824px);
  }
}
.news-detail__content {
  margin: 30px 0;
}
@media screen and (min-width:768px) {
  .news-detail__content {
    margin: min(2.6041666667vw, 50px) 0;
  }
}
.news-detail .pagination {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 80px;
  gap: 20px;
  padding: 0;
}
@media screen and (min-width: 600px) {
  .news-detail .pagination {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: min(5.2083333333vw, 100px);
    padding: 0 min(4.1666666667vw, 80px);
  }
}
.news-detail .pagination .prev,
.news-detail .pagination .next {
  position: relative;
}
.news-detail .pagination .prev a,
.news-detail .pagination .next a {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 10px;
  padding: 0 30px;
}
@media screen and (min-width:768px) {
  .news-detail .pagination .prev a,
  .news-detail .pagination .next a {
    grid-template-columns: min(13.0208333333vw, 250px) 1fr;
    gap: min(1.0416666667vw, 20px);
    padding: 0 min(2.6041666667vw, 50px);
  }
}
.news-detail .pagination .prev a::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  background: url(../../assets/img/common/left-arrow.svg) no-repeat center center/contain;
  width: 16px;
  height: 16px;
}
@media screen and (min-width:768px) {
  .news-detail .pagination .prev a::before {
    width: min(1.1458333333vw, 22px);
    height: min(1.1458333333vw, 22px);
  }
}
.news-detail .pagination .next a::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  background: url(../../assets/img/common/right-arrow.svg) no-repeat center center/contain;
  width: 16px;
  height: 16px;
}
@media screen and (min-width:768px) {
  .news-detail .pagination .next a::before {
    width: min(1.1458333333vw, 22px);
    height: min(1.1458333333vw, 22px);
  }
}
.news-detail .pagination__content {
  display: flex;
  flex-direction: column;
}
.news-detail .pagination__date, .news-detail .pagination__title {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-align: left;
  line-height: 1.7;
  letter-spacing: 0em;
}
@media screen and (min-width:768px) {
  .news-detail .pagination__date, .news-detail .pagination__title {
    font-size: min(0.9375vw, 18px);
    line-height: 1.77;
  }
}
.news-detail .pagination__title {
  flex: 1;
}
.news-detail .pagination .more {
  font-size: 12px;
  font-weight: 500;
  color: #000;
  text-align: left;
  line-height: 1.7;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
@media screen and (min-width:768px) {
  .news-detail .pagination .more {
    font-size: min(0.8333333333vw, 16px);
    line-height: 1.77;
    margin-bottom: min(1.0416666667vw, 20px);
  }
}

h2.section__ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
}
h2.section__ttl .en {
  display: inline-block;
  font-size: 28px;
  font-weight: 500;
  color: #009D5B;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.1em;
  font-family: "Poppins", sans-serif;
}
@media screen and (min-width:768px) {
  h2.section__ttl .en {
    font-size: 38px;
  }
}
h2.section__ttl .jp {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: #000;
  text-align: center;
  line-height: 1.41;
  letter-spacing: 0.05em;
}
@media screen and (min-width:768px) {
  h2.section__ttl .jp {
    font-size: 16px;
    line-height: 1.8;
  }
}

.sideBar {
  display: none;
}
@media screen and (min-width:768px) {
  .sideBar {
    display: block;
    margin: auto 0 min(4.9479166667vw, 95px) 0;
    z-index: 2;
  }
}
.sideBar--flow {
  position: absolute;
}
@media screen and (min-width:768px) {
  .sideBar--flow {
    bottom: max(-25vw, -480px);
    left: 0;
    width: min(13.5416666667vw, 260px);
  }
}

.footerBar {
  margin-bottom: 35px;
}

.snsBtn {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 84px;
}
@media screen and (min-width:768px) {
  .snsBtn {
    justify-content: flex-end;
    flex-direction: column;
    gap: min(3.90625vw, 75px);
  }
}
.snsBtn img {
  width: 34px;
}
@media screen and (min-width:768px) {
  .snsBtn img {
    width: min(2.65625vw, 51px);
  }
}

@media screen and (max-width:767px) {
  .btnBlock {
    text-align: center;
  }
}
.btnBlock .btn {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  text-align: left;
  line-height: 1.06;
  letter-spacing: 0.05em;
  transition: 0.3s;
}
@media screen and (min-width:768px) {
  .btnBlock .btn {
    font-size: min(1.0416666667vw, 20px);
    line-height: 1.4;
  }
}
.btnBlock .btn--more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
  width: 270px;
  height: 82px;
}
@media screen and (min-width:768px) {
  .btnBlock .btn--more {
    width: min(22.3958333333vw, 430px);
    height: min(6.7708333333vw, 130px);
  }
}
.btnBlock .btn--more::before {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translate(0, -50%);
  content: "";
  display: inline-block;
  background: url(../../assets/img/common/btn_arrow_black.svg) no-repeat center center/contain;
  width: 16px;
  height: 6px;
}
@media screen and (min-width:768px) {
  .btnBlock .btn--more::before {
    width: min(1.7708333333vw, 34px);
    height: min(0.46875vw, 9px);
    right: min(1.0416666667vw, 18px);
  }
}
.btnBlock .btn--more:hover {
  background: #000;
  color: #fff;
}
.btnBlock .btn--more:hover::before {
  background: url(../../assets/img/common/btn_arrow_white.svg) no-repeat center center/contain;
}
.btnBlock .btn--work {
  display: inline-block;
  width: auto;
  padding-bottom: 25px;
  margin: 30px auto 30px 30px;
}
@media screen and (min-width:768px) {
  .btnBlock .btn--work {
    width: min(10.4166666667vw, 200px);
    padding-bottom: min(2.7604166667vw, 53px);
    margin: 0;
  }
}
@media screen and (max-width:767px) {
  .btnBlock .btn--work {
    font-size: 14px;
    line-height: 1.21;
  }
}
.btnBlock .btn--work::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 39%;
  height: 1px;
  background: #000;
  transition: 0.3s;
}
.btnBlock .btn--work::before {
  position: absolute;
  top: 0.6em;
  right: -25px;
  transform: translate(0, -50%);
  content: "";
  display: inline-block;
  background: url(../../assets/img/common/btn_arrow_black.svg) no-repeat center center/contain;
  width: 16px;
  height: 5px;
}
@media screen and (min-width:768px) {
  .btnBlock .btn--work::before {
    width: min(1.7708333333vw, 34px);
    height: min(0.46875vw, 9px);
    right: max(-2.6041666667vw, -50px);
  }
}
.btnBlock .btn--work:hover::after {
  width: 100%;
}
.btnBlock .btn--contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 23px;
  background: #EEEEDB;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  text-align: left;
  line-height: 1.56;
  letter-spacing: 0.1em;
  width: 274px;
  height: 100px;
}
@media screen and (min-width:768px) {
  .btnBlock .btn--contact {
    gap: min(1.1979166667vw, 23px);
    font-size: min(0.9375vw, 18px);
    line-height: 1.5;
    width: min(20.8333333333vw, 400px);
    height: min(5.2083333333vw, 100px);
  }
}
.btnBlock .btn--contact::before {
  content: "";
  display: inline-block;
  background: url(../../assets/img/common/contact.svg) no-repeat center center/contain;
  width: 30px;
  height: 23px;
}
@media screen and (min-width:768px) {
  .btnBlock .btn--contact::before {
    width: min(1.5625vw, 30px);
    height: min(1.1979166667vw, 23px);
  }
}
.btnBlock .btn--contact:hover {
  background: #AEAE7D;
}
.btnBlock.center {
  text-align: center;
}
@media screen and (max-width:767px) {
  .btnBlock.left--sp {
    text-align: left;
  }
}

.bg__scheme {
  position: relative;
}
.bg__scheme.none::before {
  display: none;
}
.bg__scheme::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 344px;
  background: url(../../assets/img/common/bg-washi.webp) repeat center center/contain;
  z-index: -1;
}
@media screen and (min-width:768px) {
  .bg__scheme::before {
    height: min(44.7916666667vw, 860px);
  }
}
.bg__scheme--about {
  position: relative;
}
.bg__scheme--about .about_bg01 {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: url(../../assets/img/about/about03_pc.webp) no-repeat center center/cover;
}
@media screen and (min-width:768px) {
  .bg__scheme--about .about_bg01 {
    top: min(46.875vw, 900px);
    right: 0;
    width: min(34.6354166667vw, 665px);
    height: min(27.5vw, 528px);
  }
}
.bg__scheme--about .about_bg02 {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: url(../../assets/img/about/about04_pc.webp) no-repeat center center/cover;
}
@media screen and (min-width:768px) {
  .bg__scheme--about .about_bg02 {
    bottom: min(44.2708333333vw, 850px);
    left: 0;
    width: min(31.9270833333vw, 613px);
    height: min(30.3125vw, 582px);
  }
}
.bg__scheme--about .about_bg05_pc {
  display: block;
  position: absolute;
  bottom: min(3.90625vw, 75px);
  left: 0;
  width: min(38.3854166667vw, 737px);
  height: min(33.4895833333vw, 643px);
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width:767px) {
  .bg__scheme--about .about_bg05_pc {
    display: none;
  }
}
.bg__scheme--about .about_bg05_sp {
  display: block;
  width: 100%;
  margin: 30px auto 0;
  aspect-ratio: 335/270;
}
@media screen and (min-width:768px) {
  .bg__scheme--about .about_bg05_sp {
    display: none;
  }
}

.js-wrap {
  display: inline-block;
  /* レイアウト調整 */
  overflow: hidden;
  /* アニメーションが隠れないように */
}

/* AOSのデフォルト設定 */
[data-aos=fade-up] {
  opacity: 0;
  transform: translateY(20px);
  /* 最初は50px下に配置 */
  transition: opacity 0.8s cubic-bezier(0.32, 0.95, 0.6, 1.3), transform 0.3s cubic-bezier(0.32, 0.95, 0.6, 1.3);
  /* opacity と transform のアニメーション */
}

/* .aos-animate クラスが付与されるとアニメーション開始 */
[data-aos=fade-up] {
  opacity: 1;
}

[data-aos=fade-in] {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.32, 0.95, 0.6, 1.3) 0.5s;
}

[data-aos=fade-up] {
  opacity: 1;
}

.hover-trigger {
  position: relative;
}

/* 初期状態で .hovBlock を隠す */
.hovBlock {
  display: none;
  position: absolute;
  top: 0%;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  transform: translateY(0px);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  z-index: 9;
}
.hovBlock .wrap .ttl {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-align: left;
  line-height: 1.6;
  letter-spacing: 0em;
  margin-bottom: 15px;
}
@media screen and (min-width:768px) {
  .hovBlock .wrap .ttl {
    font-size: min(1.0416666667vw, 20px);
    line-height: 1.6;
    margin-bottom: min(1.0416666667vw, 20px);
  }
}
.hovBlock .wrap .txt {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-align: left;
  line-height: 1.6;
  letter-spacing: 0em;
}
@media screen and (min-width:768px) {
  .hovBlock .wrap .txt {
    font-size: min(1.0416666667vw, 20px);
    line-height: 1.6;
    letter-spacing: 0em;
  }
}

/* スムーズに表示されるアニメーション */
.hovBlock.visible {
  display: inline-block;
  opacity: 1;
  transform: translateY(0);
}

.voiceSec__lists .box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.voiceSec__lists .box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 1;
  opacity: 0;
  transition: 0.3s;
}
.voiceSec__lists .box:hover::before {
  opacity: 0.3;
}
.voiceSec__lists .box:hover .data {
  opacity: 1;
}
.voiceSec__lists .box:hover .catch {
  display: none;
}
.voiceSec__lists .data {
  display: flex;
  flex-direction: column;
  padding: 5%;
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: 2;
}
.voiceSec__lists .data .catch {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  line-height: 1.57;
  letter-spacing: 0em;
}
@media screen and (min-width:768px) {
  .voiceSec__lists .data .catch {
    font-size: min(1.0416666667vw, 20px);
    line-height: 1.6;
  }
}

.slideViewAni {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 999;
}
.slideViewAni .block01 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: white;
  opacity: 1;
  animation: slideAnimation01 1.2s ease-in-out forwards;
  z-index: 999;
}
@keyframes slideAnimation01 {
  0% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.slideViewAni .block02 {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #EEEEDB;
  opacity: 1;
  animation: slideAnimation02 1.2s linear forwards;
  z-index: 1000;
}
@keyframes slideAnimation02 {
  0% {
    transform: translateX(-100%);
  }
  30% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(0);
  }
  70% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

canvas {
  width: 100%;
  height: 100%;
}

.entry-content {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  text-align: left;
  line-height: 1.7;
  letter-spacing: 0em;
  font-family: "Zen Old Mincho", serif;
  /* マーカー種類を明示 */
  /* ネスト時の見た目（任意） */
  /* 項目間の間隔（任意） */
}
@media screen and (min-width:768px) {
  .entry-content {
    font-size: min(1.0416666667vw, 20px);
    line-height: 1.7;
  }
}
.entry-content h1 {
  font-size: 28px;
  font-weight: 600;
  color: #000;
  text-align: left;
  line-height: 1.33;
  letter-spacing: 0em;
  font-family: "Zen Old Mincho", serif;
  margin: 1em 0;
}
@media screen and (min-width:768px) {
  .entry-content h1 {
    font-size: min(1.9791666667vw, 38px);
    line-height: 1.44;
    margin: 1.5em 0;
  }
}
.entry-content h2 {
  font-size: 26px;
  font-weight: 600;
  color: #000;
  text-align: left;
  line-height: 1.33;
  letter-spacing: 0em;
  font-family: "Zen Old Mincho", serif;
  margin: 1em 0;
}
@media screen and (min-width:768px) {
  .entry-content h2 {
    font-size: min(1.875vw, 36px);
    line-height: 1.44;
    margin: 1.5em 0;
  }
}
.entry-content h3 {
  position: relative;
  font-size: 24px;
  font-weight: 600;
  color: #000;
  text-align: left;
  line-height: 1.57;
  letter-spacing: 0em;
  margin: 1em 0;
}
@media screen and (min-width:768px) {
  .entry-content h3 {
    font-size: min(1.4583333333vw, 28px);
    line-height: 1.7;
    margin: 1.5em 0;
  }
}
.entry-content h4,
.entry-content h5 {
  position: relative;
  font-size: 20px;
  font-weight: 600;
  color: #000;
  text-align: left;
  line-height: 1.57;
  letter-spacing: 0em;
  font-family: "Zen Old Mincho", serif;
  margin: 1em 0;
}
@media screen and (min-width:768px) {
  .entry-content h4,
  .entry-content h5 {
    font-size: min(1.25vw, 24px);
    line-height: 1.72;
    margin: 1.5em 0;
  }
}
.entry-content p {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  text-align: left;
  line-height: 1.7;
  letter-spacing: 0em;
  font-family: "Zen Old Mincho", serif;
  margin: 1em 0;
}
@media screen and (min-width:768px) {
  .entry-content p {
    font-size: min(1.0416666667vw, 20px);
    line-height: 1.7;
    margin: 1.5em 0;
  }
}
.entry-content a {
  color: #0075C1;
}
.entry-content ul,
.entry-content ol {
  margin: 1em 0;
  padding-left: 1.2em;
  list-style-position: inside;
}
@media screen and (min-width:768px) {
  .entry-content ul,
  .entry-content ol {
    margin: 1.5em 0;
  }
}
.entry-content ul {
  list-style-type: disc;
}
.entry-content ol {
  list-style-type: decimal;
}
.entry-content ul ul {
  list-style-type: circle;
}
.entry-content ul ul ul {
  list-style-type: square;
}
.entry-content ol ol {
  list-style-type: lower-alpha;
}
.entry-content ol ol ol {
  list-style-type: lower-roman;
}
.entry-content li + li {
  margin-top: 0.3em;
}
.entry-content table th,
.entry-content table td {
  padding: 1em;
}
.entry-content img {
  width: auto;
  height: auto;
  max-width: 100%;
}

@media screen and (min-width:768px) {
  .sp-inlineblock {
    display: inline-block !important;
  }
}
@media screen and (max-width:767px) {
  .sp-inlineblock {
    display: none !important;
  }
}

@media screen and (max-width:767px) {
  .pc-only {
    display: none;
  }
}
@media screen and (min-width:768px) {
  .pc-only {
    display: block;
  }
}

@media screen and (max-width:767px) {
  .sp-inlineblocknone {
    display: inline-block !important;
  }
}
@media screen and (min-width:768px) {
  .sp-inlineblocknone {
    display: none !important;
  }
}

@media screen and (max-width:767px) {
  .sp-only {
    display: block;
  }
}
@media screen and (min-width:768px) {
  .sp-only {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */